diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2004-07-23 21:25:26 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2004-07-23 21:25:26 +0000 |
commit | b19bf91a56d98b7967ee81630fcba74413b9c787 (patch) | |
tree | 47e4fba7d65a1c37fa34b0a8a54b12dd1cb66a96 /media-sound | |
parent | Stable on sparc, mips (Manifest recommit) (diff) | |
download | gentoo-2-b19bf91a56d98b7967ee81630fcba74413b9c787.tar.gz gentoo-2-b19bf91a56d98b7967ee81630fcba74413b9c787.tar.bz2 gentoo-2-b19bf91a56d98b7967ee81630fcba74413b9c787.zip |
add nls check in the configure -- no nls now = no .mofiles being installed
Diffstat (limited to 'media-sound')
-rw-r--r-- | media-sound/aumix/ChangeLog | 5 | ||||
-rw-r--r-- | media-sound/aumix/aumix-2.8-r2.ebuild | 6 |
2 files changed, 8 insertions, 3 deletions
diff --git a/media-sound/aumix/ChangeLog b/media-sound/aumix/ChangeLog index 9cf09deca2f2..dedba446ff30 100644 --- a/media-sound/aumix/ChangeLog +++ b/media-sound/aumix/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for media-sound/aumix # Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/aumix/ChangeLog,v 1.33 2004/07/22 09:05:45 eradicator Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/aumix/ChangeLog,v 1.34 2004/07/23 21:25:26 seemant Exp $ + + 23 Jul 2004; Seemant Kulleen <seemant@gentoo.org> aumix-2.8-r2.ebuild: + add nls check in the configure -- no nls now = no .mofiles being installed 22 Jul 2004; Jeremy Huddleston <eradicator@gentoo.org> +files/aumix-2.8-close-dialogs.patch, +files/aumix-2.8-save_load.patch: diff --git a/media-sound/aumix/aumix-2.8-r2.ebuild b/media-sound/aumix/aumix-2.8-r2.ebuild index 8ddcb2aba170..fbafec8d903c 100644 --- a/media-sound/aumix/aumix-2.8-r2.ebuild +++ b/media-sound/aumix/aumix-2.8-r2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/aumix/aumix-2.8-r2.ebuild,v 1.2 2004/07/22 09:05:45 eradicator Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/aumix/aumix-2.8-r2.ebuild,v 1.3 2004/07/23 21:25:26 seemant Exp $ IUSE="gtk gtk2 gpm nls" @@ -49,7 +49,9 @@ src_compile() { myconf="${myconf} --without-gpm" fi - econf ${myconf} || die + econf \ + `use_enable nls` \ + ${myconf} || die emake || die "make failed" } |