diff options
Diffstat (limited to 'abs/extra')
-rw-r--r-- | abs/extra/libgda/PKGBUILD | 6 | ||||
-rw-r--r-- | abs/extra/libproxy/PKGBUILD | 30 | ||||
-rw-r--r-- | abs/extra/libproxy/__changelog | 2 |
3 files changed, 19 insertions, 19 deletions
diff --git a/abs/extra/libgda/PKGBUILD b/abs/extra/libgda/PKGBUILD index 0b46cb6..72c9404 100644 --- a/abs/extra/libgda/PKGBUILD +++ b/abs/extra/libgda/PKGBUILD @@ -4,11 +4,11 @@ pkgname=libgda pkgver=4.2.1 -pkgrel=1 +pkgrel=2 pkgdesc="data abstraction layer; with mysql, pgsql, xml, sqlite providers" -arch=(i686 x86_64) +arch=('i686' 'x86_64') license=('GPL') -depends=('glib2>=2.26.0' 'libxslt' 'db>=5.1.19' 'ncurses>=5.7' 'libsoup>=2.32.0' 'libmysqlclient>=5.1.51' 'postgresql-libs>=9.0.1') +depends=('glib2>=2.26.0' 'libxslt' 'db>=5.1.19' 'ncurses>=5.7' 'libsoup>=2.32.0' 'libmysqlclient>=5.1.59' 'postgresql-libs>=9.0.1') makedepends=('intltool') options=('!libtool') url="http://www.gnome-db.org" diff --git a/abs/extra/libproxy/PKGBUILD b/abs/extra/libproxy/PKGBUILD index 2f2010e..3312aba 100644 --- a/abs/extra/libproxy/PKGBUILD +++ b/abs/extra/libproxy/PKGBUILD @@ -2,41 +2,39 @@ # Maintainer: Jan de Groot <jgc@archlinux.org> pkgname=libproxy -pkgver=0.4.6 -pkgrel=2 +pkgver=0.4.7 +pkgrel=1 pkgdesc="A library that provides automatic proxy configuration management" -arch=(i686 x86_64) +arch=('i686' 'x86_64') license=('LGPL') depends=('gcc-libs') -optdepends=('gconf: GNOME configuration module' - 'kdelibs: KDE configuration module' - 'networkmanager: NetworkManager configuration module' - 'libwebkit: WPAD/PAC parsing via WebKit JavaScript engine' - 'xulrunner: WPAD/PAC parsing via Mozilla JavaScript engine' +optdepends=('kdelibs3: KDE configuration module' 'perl: Perl bindings' 'python2: Python bindings') -makedepends=('xulrunner' 'gconf' 'cmake' 'networkmanager' 'libwebkit' 'automoc4' 'python2' 'kdelibs' 'perl') +makedepends=('cmake' 'automoc4' 'python2' 'kdelibs3' 'perl') url="http://libproxy.googlecode.com" source=(http://libproxy.googlecode.com/files/${pkgname}-${pkgver}.tar.gz) options=('!libtool') -md5sums=('199c6b120baf1f7258a55f38d5ec74f5') +md5sums=('509e03a488a61cd62bfbaf3ab6a2a7a5') build() { - cd "${srcdir}/${pkgname}-${pkgver}" + cd "${srcdir}" mkdir build cd build - cmake -DCMAKE_INSTALL_PREFIX=/usr \ + cmake ../${pkgname}-${pkgver} \ + -DCMAKE_INSTALL_PREFIX=/usr \ -DLIBEXEC_INSTALL_DIR=/usr/lib/libproxy \ -DCMAKE_SKIP_RPATH=ON \ -DPERL_VENDORINSTALL=yes \ - -DCMAKE_BUILD_TYPE=None \ + -DCMAKE_BUILD_TYPE=Release \ + -DWITH_WEBKIT=OFF \ -DCMAKE_CXX_FLAGS="${CXXFLAGS}" \ - -DCMAKE_C_FLAGS="${CFLAGS}" \ - .. + -DCMAKE_C_FLAGS="${CFLAGS}" make } package() { - cd "${srcdir}/${pkgname}-${pkgver}/build" + cd "${srcdir}/build" make DESTDIR="${pkgdir}" install } + diff --git a/abs/extra/libproxy/__changelog b/abs/extra/libproxy/__changelog new file mode 100644 index 0000000..b61a183 --- /dev/null +++ b/abs/extra/libproxy/__changelog @@ -0,0 +1,2 @@ +- remove 'networkmanager' and as makedep and optdep. MH +- change 'kdelibs' dep and optdep to 'kdelibs3' MH |