summaryrefslogtreecommitdiff
path: root/pcr/bitlbee-purple
diff options
context:
space:
mode:
authorOmar Vega Ramos <ovruni@gnu.org.pe>2016-02-10 13:03:40 -0500
committerOmar Vega Ramos <ovruni@gnu.org.pe>2016-02-10 13:03:40 -0500
commit9e6b0435d589e32ab93291d4a119fff5892c680e (patch)
tree8607f9b140e5ffca03b3514082e74db18d3e14da /pcr/bitlbee-purple
parentcfba75b9832f74234d527132c1def6ae5d20646e (diff)
downloadabslibre-9e6b0435d589e32ab93291d4a119fff5892c680e.tar.gz
abslibre-9e6b0435d589e32ab93291d4a119fff5892c680e.tar.bz2
abslibre-9e6b0435d589e32ab93291d4a119fff5892c680e.zip
bitlbee-libpurple-3.4.1-1.parabola1: updating version
Diffstat (limited to 'pcr/bitlbee-purple')
-rw-r--r--pcr/bitlbee-purple/PKGBUILD56
-rw-r--r--pcr/bitlbee-purple/bitlbee.install22
-rw-r--r--pcr/bitlbee-purple/bitlbee.tmpfiles1
3 files changed, 0 insertions, 79 deletions
diff --git a/pcr/bitlbee-purple/PKGBUILD b/pcr/bitlbee-purple/PKGBUILD
deleted file mode 100644
index 48071b970..000000000
--- a/pcr/bitlbee-purple/PKGBUILD
+++ /dev/null
@@ -1,56 +0,0 @@
-# $Id: PKGBUILD 239800 2015-05-26 17:10:07Z bpiotrowski $
-
-# Contributor (Arch): FUBAR <mrfubar@gmail.com>
-# Contributor (Arch): simo <simo@archlinux.org>
-# Contributor (Arch): Jeff 'codemac' Mickey <jeff@archlinux.org>
-# Contributor (Arch): Daniel J Griffiths <ghost1227@archlinux.us>
-# Contributor (Arch): Gaetan Bisson <bisson@archlinux.org>
-# Maintainer (Arch): Dave Reisner <dreisner@archlinux.org>
-# Maintainer: Márcio Silva <coadde@parabola.nu>
-
-pkgname=bitlbee-libpurple
-_pkgname=bitlbee
-pkgver=3.4
-pkgrel=1.parabola1
-pkgdesc='Brings instant messaging (XMPP, MSN, Yahoo!, AIM, ICQ, Twitter) to IRC, without nonfree Skype support'
-url='http://www.bitlbee.org/'
-license=('GPL')
-arch=('i686' 'x86_64' 'mips64el')
-depends=('gnutls' 'glib2' 'libpurple-minimal')
-makedepends=('asciidoc' 'libotr')
-optdepends=('libotr: for OTR encryption support')
-replaces=("${_pkgname}")
-conflicts=("${_pkgname}")
-source=("http://get.bitlbee.org/src/$_pkgname-$pkgver.tar.gz"
- 'bitlbee.tmpfiles')
-sha1sums=('3b22d9da741903a293fe3c25511448276c75b58a'
- '3695ed2fe22436c4d0fc3ead829f7d1f89bc491c')
-backup=('etc/bitlbee/bitlbee.conf'
- 'etc/bitlbee/motd.txt')
-install=bitlbee.install
-
-build() {
- cd "$_pkgname-$pkgver"
-
- ./configure \
- --prefix=/usr \
- --etcdir=/etc/bitlbee \
- --sbindir=/usr/bin \
- --pidfile=/run/bitlbee/bitlbee.pid \
- --ipcsocket=/run/bitlbee/bitlbee.sock \
- --systemdsystemunitdir=/usr/lib/systemd/system \
- --ssl=gnutls \
- --strip=0 \
- --otr=plugin \
- --skype=0 \
- --purple=1
-
- make
-}
-
-package() {
- make -C "$_pkgname-$pkgver" DESTDIR="$pkgdir" install{,-etc,-dev,-systemd}
-
- install -o65 -g65 -dm770 "$pkgdir/var/lib/bitlbee"
- install -Dm644 "$srcdir/bitlbee.tmpfiles" "$pkgdir/usr/lib/tmpfiles.d/bitlbee.conf"
-}
diff --git a/pcr/bitlbee-purple/bitlbee.install b/pcr/bitlbee-purple/bitlbee.install
deleted file mode 100644
index c8a8f93a1..000000000
--- a/pcr/bitlbee-purple/bitlbee.install
+++ /dev/null
@@ -1,22 +0,0 @@
-post_install() {
- if ! getent group bitlbee &>/dev/null; then
- groupadd -r -g 65 bitlbee >/dev/null
- fi
- if ! getent passwd bitlbee &>/dev/null; then
- useradd -r -u 65 -g bitlbee -d /var/lib/bitlbee -s /bin/false -c bitlbee bitlbee >/dev/null
- fi
- systemd-tmpfiles --create bitlbee.conf
-}
-
-post_upgrade() {
- post_install
-}
-
-post_remove() {
- if getent passwd bitlbee &>/dev/null; then
- userdel bitlbee >/dev/null
- fi
- if getent group bitlbee &>/dev/null; then
- groupdel bitlbee >/dev/null
- fi
-}
diff --git a/pcr/bitlbee-purple/bitlbee.tmpfiles b/pcr/bitlbee-purple/bitlbee.tmpfiles
deleted file mode 100644
index da72a0a79..000000000
--- a/pcr/bitlbee-purple/bitlbee.tmpfiles
+++ /dev/null
@@ -1 +0,0 @@
-d /run/bitlbee 0755 bitlbee bitlbee - -