diff options
author | 2004-06-28 01:47:00 +0000 | |
---|---|---|
committer | 2004-06-28 01:47:00 +0000 | |
commit | 9e78daf6e8b1742865fafbd1cb05bfb177f8b47e (patch) | |
tree | 444d0ade33ef31723d311572d4806956466be82d /sys-apps/xmbmon | |
parent | Stable on mips (diff) | |
download | historical-9e78daf6e8b1742865fafbd1cb05bfb177f8b47e.tar.gz historical-9e78daf6e8b1742865fafbd1cb05bfb177f8b47e.tar.bz2 historical-9e78daf6e8b1742865fafbd1cb05bfb177f8b47e.zip |
QA - fix use invocation
Diffstat (limited to 'sys-apps/xmbmon')
-rw-r--r-- | sys-apps/xmbmon/ChangeLog | 5 | ||||
-rw-r--r-- | sys-apps/xmbmon/xmbmon-2.0.3.ebuild | 6 |
2 files changed, 7 insertions, 4 deletions
diff --git a/sys-apps/xmbmon/ChangeLog b/sys-apps/xmbmon/ChangeLog index e6338cd66f65..70f29b77b56d 100644 --- a/sys-apps/xmbmon/ChangeLog +++ b/sys-apps/xmbmon/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sys-apps/xmbmon # Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/xmbmon/ChangeLog,v 1.5 2004/06/24 22:33:18 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/xmbmon/ChangeLog,v 1.6 2004/06/28 01:47:00 agriffis Exp $ + + 27 Jun 2004; Aron Griffis <agriffis@gentoo.org> xmbmon-2.0.3.ebuild: + QA - fix use invocation 01 Apr 2004; Jason Eric Huebel <jhuebel@gentoo.org> xmbmon-2.0.3.ebuild: added DEFS=" -DLINUX" to emake lines and included gnuconfig_update diff --git a/sys-apps/xmbmon/xmbmon-2.0.3.ebuild b/sys-apps/xmbmon/xmbmon-2.0.3.ebuild index 16428dc8f43e..8537b719f05a 100644 --- a/sys-apps/xmbmon/xmbmon-2.0.3.ebuild +++ b/sys-apps/xmbmon/xmbmon-2.0.3.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/sys-apps/xmbmon/xmbmon-2.0.3.ebuild,v 1.5 2004/06/24 22:33:18 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/xmbmon/xmbmon-2.0.3.ebuild,v 1.6 2004/06/28 01:47:00 agriffis Exp $ inherit gnuconfig @@ -24,7 +24,7 @@ src_compile() { econf || die "Configure failed" emake DEFS="$DEFS -DLINUX" CFLAGS="$CFLAGS \$(INCLUDES) \$(DEFS)" mbmon || die "Make mbmon failed" - if [ `use X` ] ; then + if use X ; then emake DEFS="$DEFS -DLINUX" CFLAGSX="$CFLAGS \$(INCLUDES) \$(DEFS)" xmbmon || die "Make xmbmon failed" fi } @@ -34,7 +34,7 @@ src_install() { fperms 4555 /usr/sbin/mbmon fowners root:wheel /usr/sbin/mbmon - if [ `use X` ] ; then + if use X ; then dosbin xmbmon fperms 4555 /usr/sbin/xmbmon fowners root:wheel /usr/sbin/xmbmon |