[arch-commits] Commit in gpointing-device-settings/repos (6 files)

Balló György bgyorgy at nymeria.archlinux.org
Tue Dec 17 14:10:53 UTC 2013


    Date: Tuesday, December 17, 2013 @ 15:10:52
  Author: bgyorgy
Revision: 102693

archrelease: copy trunk to community-i686, community-x86_64

Added:
  gpointing-device-settings/repos/community-i686/PKGBUILD
    (from rev 102692, gpointing-device-settings/trunk/PKGBUILD)
  gpointing-device-settings/repos/community-i686/fix-build.patch
    (from rev 102692, gpointing-device-settings/trunk/fix-build.patch)
  gpointing-device-settings/repos/community-x86_64/PKGBUILD
    (from rev 102692, gpointing-device-settings/trunk/PKGBUILD)
  gpointing-device-settings/repos/community-x86_64/fix-build.patch
    (from rev 102692, gpointing-device-settings/trunk/fix-build.patch)
Deleted:
  gpointing-device-settings/repos/community-i686/PKGBUILD
  gpointing-device-settings/repos/community-x86_64/PKGBUILD

----------------------------------+
 /PKGBUILD                        |   88 +++++++++++++++++++++++++++++++++++++
 community-i686/PKGBUILD          |   39 ----------------
 community-i686/fix-build.patch   |   26 ++++++++++
 community-x86_64/PKGBUILD        |   39 ----------------
 community-x86_64/fix-build.patch |   26 ++++++++++
 5 files changed, 140 insertions(+), 78 deletions(-)

Deleted: community-i686/PKGBUILD
===================================================================
--- community-i686/PKGBUILD	2013-12-17 14:10:46 UTC (rev 102692)
+++ community-i686/PKGBUILD	2013-12-17 14:10:52 UTC (rev 102693)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin <pupykin.s+arch at gmail.com>
-# Contributor: Thomas Mudrunka <harvie@@email..cz>
-
-pkgname=gpointing-device-settings
-pkgver=1.5.1
-pkgrel=4
-pkgdesc="GUI tool for setting pointing device such as TrackPoint or Touchpad"
-arch=('i686' 'x86_64')
-license=('GPL')
-url="http://live.gnome.org/GPointingDeviceSettings"
-depends=('gtk2' 'gconf')
-makedepends=('gnome-settings-daemon' 'intltool')
-source=("http://keihanna.dl.sourceforge.jp/gsynaptics/45812/${pkgname}-${pkgver}.tar.gz")
-md5sums=('1d1491473df8eabca3c15c997a975d7f')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  # Enable deprecations
-  sed -i -e '/DISABLE_DEPRECATED/d' -e 's/AM_CONFIG_HEADER/AC_CONFIG_HEADERS/' configure.ac
-
-  # Disable GSD plugin (won't build with GSD 3.8)
-  sed -i 's/ gnome-settings-daemon-plugins//' modules/Makefile.am
-
-  autoreconf -fi
-  ./configure  --prefix=/usr --sysconfdir=/etc \
-               --disable-static --disable-schemas-install \
-               --with-gconf-schema-file-dir=/usr/share/gconf/schemas
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR=${pkgdir} install
-
-  # Remove GConf schema (used by GSD plugin)
-  rm -r "${pkgdir}/usr/share/gconf"
-}

Copied: gpointing-device-settings/repos/community-i686/PKGBUILD (from rev 102692, gpointing-device-settings/trunk/PKGBUILD)
===================================================================
--- community-i686/PKGBUILD	                        (rev 0)
+++ community-i686/PKGBUILD	2013-12-17 14:10:52 UTC (rev 102693)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Sergej Pupykin <pupykin.s+arch at gmail.com>
+# Contributor: Thomas Mudrunka <harvie@@email..cz>
+
+pkgname=gpointing-device-settings
+pkgver=1.5.1
+pkgrel=5
+pkgdesc="GUI tool for setting pointing device such as TrackPoint or Touchpad"
+arch=('i686' 'x86_64')
+license=('GPL')
+url="https://wiki.gnome.org/Attic/GPointingDeviceSettings"
+depends=('gtk2' 'gconf')
+makedepends=('gnome-settings-daemon' 'intltool')
+source=("http://sourceforge.jp/frs/redir.php?m=iij&f=/gsynaptics/45812/$pkgname-$pkgver.tar.gz"
+        "fix-build.patch")
+md5sums=('1d1491473df8eabca3c15c997a975d7f'
+         'cc42b7bcd69fb43ae5bfbe6e1d540713')
+
+prepare() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  # Fix build
+  patch -Np1 -i "${srcdir}/fix-build.patch"
+
+  # Disable GSD plugin (won't build with GSD 3.8)
+  sed -i 's/ gnome-settings-daemon-plugins//' modules/Makefile.am
+}
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  autoreconf -fi
+  ./configure  --prefix=/usr --sysconfdir=/etc \
+               --disable-static --disable-schemas-install \
+               --with-gconf-schema-file-dir=/usr/share/gconf/schemas
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR=${pkgdir} install
+
+  # Remove GConf schema (used by GSD plugin)
+  rm -r "${pkgdir}/usr/share/gconf"
+}

Copied: gpointing-device-settings/repos/community-i686/fix-build.patch (from rev 102692, gpointing-device-settings/trunk/fix-build.patch)
===================================================================
--- community-i686/fix-build.patch	                        (rev 0)
+++ community-i686/fix-build.patch	2013-12-17 14:10:52 UTC (rev 102693)
@@ -0,0 +1,26 @@
+diff -Naur gpointing-device-settings-1.5.1.orig/configure.ac gpointing-device-settings-1.5.1/configure.ac
+--- gpointing-device-settings-1.5.1.orig/configure.ac	2010-02-05 00:38:20.000000000 +0100
++++ gpointing-device-settings-1.5.1/configure.ac	2013-12-17 15:00:08.394574115 +0100
+@@ -3,10 +3,9 @@
+ 
+ AC_INIT(gpointing-device-settings, 1.5.1,
+         [http://bugzilla.gnome.org/enter_bug.cgi?product=GPointingDeviceSettings])
+-AM_INIT_AUTOMAKE([1.9 tar-pax])
+-AM_INIT_AUTOMAKE([foreign])
++AM_INIT_AUTOMAKE([1.9 tar-pax foreign])
+ m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])])
+-AM_CONFIG_HEADER(config.h)
++AC_CONFIG_HEADERS(config.h)
+ AC_CONFIG_MACRO_DIR([m4])
+ 
+ AM_PROG_LIBTOOL
+@@ -146,9 +145,6 @@
+ 
+ GPDS_CFLAGS="$XINPUT_CFLAGS $GTK_CFLAGS"
+ GPDS_CFLAGS="$GPDS_CFLAGS $GCONF2_CFLAGS"
+-GPDS_CFLAGS="$GPDS_CFLAGS -DGTK_DISABLE_DEPRECATED"
+-GPDS_CFLAGS="$GPDS_CFLAGS -DGDK_DISABLE_DEPRECATED"
+-GPDS_CFLAGS="$GPDS_CFLAGS -DG_DISABLE_DEPRECATED"
+ GPDS_CFLAGS="$GPDS_CFLAGS -DGPDS_MODULEDIR=\\\"\"\$(gpds_moduledir)\"\\\""
+ GPDS_CFLAGS="$GPDS_CFLAGS -DGPDS_DATADIR=\\\"\"\$(gpds_datadir)\"\\\""
+ GPDS_CFLAGS="$GPDS_CFLAGS -DGPDS_UIDIR=\\\"\"\$(gpds_uidir)\"\\\""

Deleted: community-x86_64/PKGBUILD
===================================================================
--- community-x86_64/PKGBUILD	2013-12-17 14:10:46 UTC (rev 102692)
+++ community-x86_64/PKGBUILD	2013-12-17 14:10:52 UTC (rev 102693)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin <pupykin.s+arch at gmail.com>
-# Contributor: Thomas Mudrunka <harvie@@email..cz>
-
-pkgname=gpointing-device-settings
-pkgver=1.5.1
-pkgrel=4
-pkgdesc="GUI tool for setting pointing device such as TrackPoint or Touchpad"
-arch=('i686' 'x86_64')
-license=('GPL')
-url="http://live.gnome.org/GPointingDeviceSettings"
-depends=('gtk2' 'gconf')
-makedepends=('gnome-settings-daemon' 'intltool')
-source=("http://keihanna.dl.sourceforge.jp/gsynaptics/45812/${pkgname}-${pkgver}.tar.gz")
-md5sums=('1d1491473df8eabca3c15c997a975d7f')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  # Enable deprecations
-  sed -i -e '/DISABLE_DEPRECATED/d' -e 's/AM_CONFIG_HEADER/AC_CONFIG_HEADERS/' configure.ac
-
-  # Disable GSD plugin (won't build with GSD 3.8)
-  sed -i 's/ gnome-settings-daemon-plugins//' modules/Makefile.am
-
-  autoreconf -fi
-  ./configure  --prefix=/usr --sysconfdir=/etc \
-               --disable-static --disable-schemas-install \
-               --with-gconf-schema-file-dir=/usr/share/gconf/schemas
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR=${pkgdir} install
-
-  # Remove GConf schema (used by GSD plugin)
-  rm -r "${pkgdir}/usr/share/gconf"
-}

Copied: gpointing-device-settings/repos/community-x86_64/PKGBUILD (from rev 102692, gpointing-device-settings/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD	                        (rev 0)
+++ community-x86_64/PKGBUILD	2013-12-17 14:10:52 UTC (rev 102693)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Sergej Pupykin <pupykin.s+arch at gmail.com>
+# Contributor: Thomas Mudrunka <harvie@@email..cz>
+
+pkgname=gpointing-device-settings
+pkgver=1.5.1
+pkgrel=5
+pkgdesc="GUI tool for setting pointing device such as TrackPoint or Touchpad"
+arch=('i686' 'x86_64')
+license=('GPL')
+url="https://wiki.gnome.org/Attic/GPointingDeviceSettings"
+depends=('gtk2' 'gconf')
+makedepends=('gnome-settings-daemon' 'intltool')
+source=("http://sourceforge.jp/frs/redir.php?m=iij&f=/gsynaptics/45812/$pkgname-$pkgver.tar.gz"
+        "fix-build.patch")
+md5sums=('1d1491473df8eabca3c15c997a975d7f'
+         'cc42b7bcd69fb43ae5bfbe6e1d540713')
+
+prepare() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  # Fix build
+  patch -Np1 -i "${srcdir}/fix-build.patch"
+
+  # Disable GSD plugin (won't build with GSD 3.8)
+  sed -i 's/ gnome-settings-daemon-plugins//' modules/Makefile.am
+}
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  autoreconf -fi
+  ./configure  --prefix=/usr --sysconfdir=/etc \
+               --disable-static --disable-schemas-install \
+               --with-gconf-schema-file-dir=/usr/share/gconf/schemas
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR=${pkgdir} install
+
+  # Remove GConf schema (used by GSD plugin)
+  rm -r "${pkgdir}/usr/share/gconf"
+}

Copied: gpointing-device-settings/repos/community-x86_64/fix-build.patch (from rev 102692, gpointing-device-settings/trunk/fix-build.patch)
===================================================================
--- community-x86_64/fix-build.patch	                        (rev 0)
+++ community-x86_64/fix-build.patch	2013-12-17 14:10:52 UTC (rev 102693)
@@ -0,0 +1,26 @@
+diff -Naur gpointing-device-settings-1.5.1.orig/configure.ac gpointing-device-settings-1.5.1/configure.ac
+--- gpointing-device-settings-1.5.1.orig/configure.ac	2010-02-05 00:38:20.000000000 +0100
++++ gpointing-device-settings-1.5.1/configure.ac	2013-12-17 15:00:08.394574115 +0100
+@@ -3,10 +3,9 @@
+ 
+ AC_INIT(gpointing-device-settings, 1.5.1,
+         [http://bugzilla.gnome.org/enter_bug.cgi?product=GPointingDeviceSettings])
+-AM_INIT_AUTOMAKE([1.9 tar-pax])
+-AM_INIT_AUTOMAKE([foreign])
++AM_INIT_AUTOMAKE([1.9 tar-pax foreign])
+ m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])])
+-AM_CONFIG_HEADER(config.h)
++AC_CONFIG_HEADERS(config.h)
+ AC_CONFIG_MACRO_DIR([m4])
+ 
+ AM_PROG_LIBTOOL
+@@ -146,9 +145,6 @@
+ 
+ GPDS_CFLAGS="$XINPUT_CFLAGS $GTK_CFLAGS"
+ GPDS_CFLAGS="$GPDS_CFLAGS $GCONF2_CFLAGS"
+-GPDS_CFLAGS="$GPDS_CFLAGS -DGTK_DISABLE_DEPRECATED"
+-GPDS_CFLAGS="$GPDS_CFLAGS -DGDK_DISABLE_DEPRECATED"
+-GPDS_CFLAGS="$GPDS_CFLAGS -DG_DISABLE_DEPRECATED"
+ GPDS_CFLAGS="$GPDS_CFLAGS -DGPDS_MODULEDIR=\\\"\"\$(gpds_moduledir)\"\\\""
+ GPDS_CFLAGS="$GPDS_CFLAGS -DGPDS_DATADIR=\\\"\"\$(gpds_datadir)\"\\\""
+ GPDS_CFLAGS="$GPDS_CFLAGS -DGPDS_UIDIR=\\\"\"\$(gpds_uidir)\"\\\""




More information about the arch-commits mailing list