summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJames Meyer <james.meyer@operamail.com>2010-10-27 01:06:10 (GMT)
committerJames Meyer <james.meyer@operamail.com>2010-10-27 01:06:10 (GMT)
commit025b74e4ae34e2544f684bd31b9c0ddf7b68d068 (patch)
tree0ad936a928b55b1f84d2b33040ce2b7ee4a5f73c
parenta1ef8b4c5177f702d5806a34c5c197b17090ebbb (diff)
downloadlinhes_pkgbuild-025b74e4ae34e2544f684bd31b9c0ddf7b68d068.zip
linhes_pkgbuild-025b74e4ae34e2544f684bd31b9c0ddf7b68d068.tar.gz
linhes_pkgbuild-025b74e4ae34e2544f684bd31b9c0ddf7b68d068.tar.bz2
glib2: update to 2.6
-rw-r--r--abs/core/glib2/gkeyfile-bool-nocase.patch16
-rw-r--r--abs/extra/libgnome-keyring/PKGBUILD24
2 files changed, 24 insertions, 16 deletions
diff --git a/abs/core/glib2/gkeyfile-bool-nocase.patch b/abs/core/glib2/gkeyfile-bool-nocase.patch
deleted file mode 100644
index 133f135..0000000
--- a/abs/core/glib2/gkeyfile-bool-nocase.patch
+++ /dev/null
@@ -1,16 +0,0 @@
-Index: glib/gkeyfile.c
-===================================================================
---- glib/gkeyfile.c (revision 5714)
-+++ glib/gkeyfile.c (working copy)
-@@ -3639,9 +3639,9 @@
- {
- gchar *value_utf8;
-
-- if (strcmp (value, "true") == 0 || strcmp (value, "1") == 0)
-+ if (g_ascii_strcasecmp (value, "true") == 0 || strcmp (value, "1") == 0)
- return TRUE;
-- else if (strcmp (value, "false") == 0 || strcmp (value, "0") == 0)
-+ else if (g_ascii_strcasecmp (value, "false") == 0 || strcmp (value, "0") == 0)
- return FALSE;
-
- value_utf8 = _g_utf8_make_valid (value);
diff --git a/abs/extra/libgnome-keyring/PKGBUILD b/abs/extra/libgnome-keyring/PKGBUILD
new file mode 100644
index 0000000..58ee490
--- /dev/null
+++ b/abs/extra/libgnome-keyring/PKGBUILD
@@ -0,0 +1,24 @@
+#$Id: PKGBUILD 91799 2010-09-28 06:50:31Z jgc $
+#Maintainer: Jan De Groot <jgc@archlinux.org>
+
+pkgname=libgnome-keyring
+pkgver=2.32.0
+pkgrel=1
+pkgdesc="GNOME keyring client library"
+arch=(i686 x86_64)
+license=('GPL' 'LGPL')
+depends=('dbus-core>=1.2.0' 'libgcrypt>=1.4.6' 'glib2>=2.26.0')
+makedepends=('intltool' 'pkgconfig' 'python2' 'gtk-doc')
+options=('!libtool' '!emptydirs')
+url="http://www.gnome.org"
+source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/2.32/${pkgname}-${pkgver}.tar.bz2)
+sha256sums=('56388c0d81ddfdb57d30e4963c83ecc1c18498aab99395420e0fff69929a0f0c')
+
+build() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ ./configure --prefix=/usr --sysconfdir=/etc \
+ --localstatedir=/var --disable-static \
+ --libexecdir=/usr/lib/gnome-keyring
+ make
+ make -j1 DESTDIR="${pkgdir}" install
+}