diff options
author | Nicolas Reynolds <fauno@kiwwwi.com.ar> | 2012-02-19 00:31:40 -0300 |
---|---|---|
committer | Nicolas Reynolds <fauno@kiwwwi.com.ar> | 2012-02-19 00:31:40 -0300 |
commit | b7be3e931b811decb9a8686a60e52fe723bbaf81 (patch) | |
tree | 2e7da21de151c50ecdfa97a9d4ef5db5de62db51 /extra/gconfmm | |
parent | 78397621fc97288066a5d73989811ab0fe641bd6 (diff) | |
parent | 1098e9db0acc5bb5c45af5778492faf3b4c99dd6 (diff) |
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts:
community-testing/ipvsadm/PKGBUILD
community/arch/PKGBUILD
community/chntpw/PKGBUILD
community/dnstracer/PKGBUILD
community/dvtm/PKGBUILD
community/gnash/PKGBUILD
community/ngspice/PKGBUILD
community/siege/PKGBUILD
extra/enscript/PKGBUILD
extra/gconfmm/PKGBUILD
extra/gftp/PKGBUILD
extra/libart-lgpl/PKGBUILD
extra/libcaca/PKGBUILD
extra/libdv/PKGBUILD
extra/libgnomemm/PKGBUILD
extra/libidl2/PKGBUILD
extra/libvisual/PKGBUILD
extra/libxdamage/PKGBUILD
extra/libxrender/PKGBUILD
extra/openslp/PKGBUILD
extra/snarf/PKGBUILD
multilib/wine/PKGBUILD
testing/mesa/PKGBUILD
testing/xf86-video-glint/PKGBUILD
Diffstat (limited to 'extra/gconfmm')
-rw-r--r-- | extra/gconfmm/PKGBUILD | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/extra/gconfmm/PKGBUILD b/extra/gconfmm/PKGBUILD index 9e9238284..dda9f2b48 100644 --- a/extra/gconfmm/PKGBUILD +++ b/extra/gconfmm/PKGBUILD @@ -1,38 +1,38 @@ -#$Id: PKGBUILD 81933 2010-06-07 10:58:32Z jgc $ +#$Id: PKGBUILD 150479 2012-02-18 03:02:14Z allan $ # Maintainer: Jan de Groot <jgc@archlinux.org> # Contributor: Kritoke <typeolinux@yahoo.com> pkgbase=gconfmm pkgname=('gconfmm' 'gconfmm-docs') -pkgver=2.28.2 +pkgver=2.28.3 pkgrel=1 -arch=(i686 x86_64 'mips64el') +arch=('i686' 'x86_64' 'mips64el') +url="http://gtkmm.sourceforge.net/" license=('LGPL') -makedepends=('pkgconfig' 'gtkmm>=2.20.3' 'glibmm-docs' 'gconf>=2.28.1' 'glibmm>=2.24.2') +makedepends=('pkgconfig' 'gtkmm' 'glibmm-docs' 'gconf' 'glibmm') options=('!libtool') -url="http://gtkmm.sourceforge.net/" -source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/2.28/${pkgname}-${pkgver}.tar.bz2) -sha256sums=('3e9575208ed1f43f0d0f42e62169a4e14d367a69829b3a531b943655f9db2ab9') +source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/2.28/${pkgname}-${pkgver}.tar.xz) +sha256sums=('d7bd2d29c1a87b85329547fb29a0eca52d944e60699982152775002e24c09228') build() { cd "${srcdir}/${pkgbase}-${pkgver}" ./configure --prefix=/usr --sysconfdir=/etc \ - --localstatedir=/var || return 1 - make || return 1 + --localstatedir=/var + make } package_gconfmm() { pkgdesc="C++ bindings for GConf" - depends=('gconf>=2.28.1' 'glibmm>=2.24.2') + depends=('gconf>' 'glibmm') cd "${srcdir}/${pkgbase}-${pkgver}" - sed -i -e 's/^doc_subdirs/#doc_subdirs/' Makefile || return 1 - make DESTDIR="${pkgdir}" install || return 1 + sed -i -e 's/^doc_subdirs/#doc_subdirs/' Makefile + make DESTDIR="${pkgdir}" install } package_gconfmm-docs() { pkgdesc="Developer documentation for gconfmm" cd "${srcdir}/${pkgbase}-${pkgver}/docs" - make DESTDIR="${pkgdir}" install || return 1 + make DESTDIR="${pkgdir}" install } |