summaryrefslogtreecommitdiff
path: root/extra/dbus-qt3/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'extra/dbus-qt3/PKGBUILD')
-rw-r--r--extra/dbus-qt3/PKGBUILD32
1 files changed, 0 insertions, 32 deletions
diff --git a/extra/dbus-qt3/PKGBUILD b/extra/dbus-qt3/PKGBUILD
deleted file mode 100644
index 91d0893a8..000000000
--- a/extra/dbus-qt3/PKGBUILD
+++ /dev/null
@@ -1,32 +0,0 @@
-# $Id: PKGBUILD 49853 2009-08-16 18:53:06Z jgc $
-# Maintainer: Jan de Groot <jgc@archlinux.org>
-
-pkgname=dbus-qt3
-pkgver=0.62
-pkgrel=4
-pkgdesc="QT3 bindings for DBUS"
-arch=(i686 x86_64 'mips64el')
-license=('GPL')
-url="http://www.freedesktop.org/software/dbus"
-depends=('qt3' 'dbus-core>=1.2.14')
-makedepends=('pkgconfig')
-options=('!libtool')
-source=(ftp://ftp.archlinux.org/other/dbus/dbus-qt3_0.62.git.20060814.orig.tar.gz
- dbus-qt3-compile-fix-thoenig-01.patch
- dbus-qt3-do-not-close-shared-connection-thoenig-01.patch)
-md5sums=('bdc61add46f64238fdc68a15e5f7269c'
- '6c7a45865568340ee601d31e184653c1'
- '9252c03a00d751201e53839d6a8ef78f')
-
-build() {
- . /etc/profile.d/qt3.sh
- cd "${srcdir}/${pkgname}-${pkgver}/qt3"
- patch -Np1 -i "${srcdir}/dbus-qt3-compile-fix-thoenig-01.patch" || return 1
- patch -Np1 -i "${srcdir}/dbus-qt3-do-not-close-shared-connection-thoenig-01.patch" || return 1
- cd ..
- ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var || return 1
- sed -e "s|DBUS_QT3_LIBS =|DBUS_QT3_LIBS = -L${QTDIR}/lib -lqt-mt|" \
- -i Makefile qt3/Makefile || return 1
- make || return 1
- make DESTDIR="${pkgdir}" install || return 1
-}