diff options
author | Aron Griffis <agriffis@gentoo.org> | 2004-06-02 02:21:14 +0000 |
---|---|---|
committer | Aron Griffis <agriffis@gentoo.org> | 2004-06-02 02:21:14 +0000 |
commit | ab408b94711b3733437d096d60d6b2e22f339166 (patch) | |
tree | b391334c09e7f7523f299edce299edbd687d7d8f /app-misc/mplinuxman | |
parent | initial commit - ebuild from Alexandru Toma via bug #52685 (Manifest recommit) (diff) | |
download | gentoo-2-ab408b94711b3733437d096d60d6b2e22f339166.tar.gz gentoo-2-ab408b94711b3733437d096d60d6b2e22f339166.tar.bz2 gentoo-2-ab408b94711b3733437d096d60d6b2e22f339166.zip |
Fix use invocation
Diffstat (limited to 'app-misc/mplinuxman')
-rw-r--r-- | app-misc/mplinuxman/ChangeLog | 5 | ||||
-rw-r--r-- | app-misc/mplinuxman/mplinuxman-1.4.ebuild | 6 |
2 files changed, 7 insertions, 4 deletions
diff --git a/app-misc/mplinuxman/ChangeLog b/app-misc/mplinuxman/ChangeLog index f4b3485cf334..662b0042398e 100644 --- a/app-misc/mplinuxman/ChangeLog +++ b/app-misc/mplinuxman/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-misc/mplinuxman # Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/mplinuxman/ChangeLog,v 1.2 2004/03/24 17:43:43 eradicator Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/mplinuxman/ChangeLog,v 1.3 2004/06/02 02:16:39 agriffis Exp $ + + 01 Jun 2004; Aron Griffis <agriffis@gentoo.org> mplinuxman-1.4.ebuild: + Fix use invocation 24 Mar 2004; Jeremy Huddleston <eradicator@gentoo.org> mplinuxman-1.4.ebuild: diff --git a/app-misc/mplinuxman/mplinuxman-1.4.ebuild b/app-misc/mplinuxman/mplinuxman-1.4.ebuild index a3370eedbfe1..10f11a9ca725 100644 --- a/app-misc/mplinuxman/mplinuxman-1.4.ebuild +++ b/app-misc/mplinuxman/mplinuxman-1.4.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/app-misc/mplinuxman/mplinuxman-1.4.ebuild,v 1.2 2004/03/24 17:43:43 eradicator Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/mplinuxman/mplinuxman-1.4.ebuild,v 1.3 2004/06/02 02:16:39 agriffis Exp $ DESCRIPTION="A gtk2 frontend and drivers for mpman f50/55/60 mp3 players." HOMEPAGE="http://mplinuxman.sourceforge.net" @@ -20,7 +20,7 @@ src_unpack() { unpack ${A} && cd ${S} || die "unpack failed" sed -i -e "s,^CFLAGS = ,CFLAGS = ${CFLAGS} ," makefile sed -i -e "s,export LOCALE_DIR=/usr/local/share/locale,export LOCALE_DIR=${D}/usr/share/locale," makefile - if [ ! `use nls` ] ; then + if ! use nls ; then sed -i -e "s,-D NLS=1,," makefile fi } @@ -31,7 +31,7 @@ src_compile() { src_install() { dobin mplinuxman || die "dobin failed" - if [ `use nls` ] ; then + if use nls ; then dodir /usr/share/locale/es/LC_MESSAGES dodir /usr/share/locale/fr/LC_MESSAGES dodir /usr/share/locale/ja/LC_MESSAGES |