diff options
Diffstat (limited to 'media-sound')
-rw-r--r-- | media-sound/gnome-alsamixer/ChangeLog | 6 | ||||
-rw-r--r-- | media-sound/gnome-alsamixer/files/gnome-alsamixer-0.9.6-gtk24.patch | 15 | ||||
-rw-r--r-- | media-sound/gnome-alsamixer/gnome-alsamixer-0.9.6.ebuild | 7 |
3 files changed, 26 insertions, 2 deletions
diff --git a/media-sound/gnome-alsamixer/ChangeLog b/media-sound/gnome-alsamixer/ChangeLog index 6aecf6c013d7..cb3668f37600 100644 --- a/media-sound/gnome-alsamixer/ChangeLog +++ b/media-sound/gnome-alsamixer/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for media-sound/gnome-alsamixer # Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/gnome-alsamixer/ChangeLog,v 1.5 2004/03/27 03:20:34 eradicator Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/gnome-alsamixer/ChangeLog,v 1.6 2004/04/04 18:38:50 liquidx Exp $ + + 04 Apr 2004; Alastair Tse <liquidx@gentoo.org> gnome-alsamixer-0.9.6.ebuild, + files/gnome-alsamixer-0.9.6-gtk24.patch: + fixed GTK 2.4 support (#45947) 26 Mar 2004; Jeremy Huddleston <eradicator@gentoo.org> gnome-alsamixer-0.9.3.ebuild, gnome-alsamixer-0.9.6.ebuild: diff --git a/media-sound/gnome-alsamixer/files/gnome-alsamixer-0.9.6-gtk24.patch b/media-sound/gnome-alsamixer/files/gnome-alsamixer-0.9.6-gtk24.patch new file mode 100644 index 000000000000..9e5f4eeb16fe --- /dev/null +++ b/media-sound/gnome-alsamixer/files/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~ diff --git a/media-sound/gnome-alsamixer/gnome-alsamixer-0.9.6.ebuild b/media-sound/gnome-alsamixer/gnome-alsamixer-0.9.6.ebuild index 06baef9e5554..6bfcba9a297d 100644 --- a/media-sound/gnome-alsamixer/gnome-alsamixer-0.9.6.ebuild +++ b/media-sound/gnome-alsamixer/gnome-alsamixer-0.9.6.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/gnome-alsamixer/gnome-alsamixer-0.9.6.ebuild,v 1.3 2004/03/27 03:20:34 eradicator Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/gnome-alsamixer/gnome-alsamixer-0.9.6.ebuild,v 1.4 2004/04/04 18:38:50 liquidx Exp $ IUSE="" DESCRIPTION="Gnome 2 based ALSA Mixer" @@ -16,6 +16,11 @@ DEPEND="${RDEPEND} dev-util/pkgconfig dev-util/desktop-file-utils" +src_unpack() { + unpack ${A} + epatch ${FILESDIR}/${P}-gtk24.patch +} + src_install() { make DESTDIR=${D} install || die |