diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
commit | 415856bdd4f48ab4f2732996f0bae58595092bbe (patch) | |
tree | ede2018b591f6dfb477fe9341ba17b9bc000fab9 /extra/gnome-alsamixer |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'extra/gnome-alsamixer')
-rw-r--r-- | extra/gnome-alsamixer/PKGBUILD | 24 | ||||
-rw-r--r-- | extra/gnome-alsamixer/gnome-alsamixer-0.9.6-gtk24.patch | 15 |
2 files changed, 39 insertions, 0 deletions
diff --git a/extra/gnome-alsamixer/PKGBUILD b/extra/gnome-alsamixer/PKGBUILD new file mode 100644 index 000000000..277ddcbde --- /dev/null +++ b/extra/gnome-alsamixer/PKGBUILD @@ -0,0 +1,24 @@ +# $Id: PKGBUILD 49919 2009-08-16 21:30:55Z jgc $ +# Maintainer: damir <damir@archlinux.org> +# Contributor: Ben <ben@benmazer.net> + +pkgname=gnome-alsamixer +pkgver=0.9.6 +pkgrel=3 +pkgdesc="Gnome ALSA mixer" +arch=('i686' 'x86_64') +url="http://www.paw.za.org" +license=('GPL') +depends=('libgnomeui>=2.24.1') +source=(ftp://ftp.archlinux.org/other/gnome-alsamixer/${pkgname}-${pkgver}.tar.gz + gnome-alsamixer-0.9.6-gtk24.patch) +md5sums=('387623cfeb079d78325eed2d6bc94251' + '82b95a0df43429da5098b4da883f6bd0') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + patch -Np1 -i "${srcdir}/gnome-alsamixer-0.9.6-gtk24.patch" || return 1 + ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var || return 1 + make || return 1 + make DESTDIR="${pkgdir}" install || return 1 +} diff --git a/extra/gnome-alsamixer/gnome-alsamixer-0.9.6-gtk24.patch b/extra/gnome-alsamixer/gnome-alsamixer-0.9.6-gtk24.patch new file mode 100644 index 000000000..9e5f4eeb1 --- /dev/null +++ b/extra/gnome-alsamixer/gnome-alsamixer-0.9.6-gtk24.patch @@ -0,0 +1,15 @@ +diff -ur gnome-alsamixer-0.9.6/src/Makefile.in gnome-alsamixer-0.9.6.new/src/Makefile.in +--- gnome-alsamixer-0.9.6/src/Makefile.in 2003-09-09 12:44:25.000000000 +0100 ++++ gnome-alsamixer-0.9.6.new/src/Makefile.in 2004-04-04 18:51:36.000000000 +0100 +@@ -86,10 +86,6 @@ + -DPACKAGE_DATA_DIR=\""$(datadir)/gnome-alsamixer"\" \ + -DPIXMAP_ICONDIR=\""$(datadir)/pixmaps/gnome-alsamixer"\" \ + -DPACKAGE_LOCALE_DIR=\""$(prefix)/$(DATADIRNAME)/locale"\" \ +- -DG_DISABLE_DEPRECATED \ +- -DGDK_DISABLE_DEPRECATED \ +- -DGTK_DISABLE_DEPRECATED \ +- -DGNOME_DISABLE_DEPRECATED \ + @PACKAGE_CFLAGS@ + + +Only in gnome-alsamixer-0.9.6.new/src: Makefile.in~ |