diff options
author | Marinus Schraal <foser@gentoo.org> | 2002-11-07 16:36:47 +0000 |
---|---|---|
committer | Marinus Schraal <foser@gentoo.org> | 2002-11-07 16:36:47 +0000 |
commit | 8ce3344b631625dc21970e86ee0b437fc35efeea (patch) | |
tree | c6c2c08320c1d4aa4b5bc869813ed675811f6ee0 /net-misc | |
parent | fix two lintool warnings. (diff) | |
download | historical-8ce3344b631625dc21970e86ee0b437fc35efeea.tar.gz historical-8ce3344b631625dc21970e86ee0b437fc35efeea.tar.bz2 historical-8ce3344b631625dc21970e86ee0b437fc35efeea.zip |
sandbox fix
Diffstat (limited to 'net-misc')
-rw-r--r-- | net-misc/gupsc/ChangeLog | 6 | ||||
-rw-r--r-- | net-misc/gupsc/gupsc-0.3.1-r1.ebuild | 15 |
2 files changed, 13 insertions, 8 deletions
diff --git a/net-misc/gupsc/ChangeLog b/net-misc/gupsc/ChangeLog index 9fe003127180..7c1ddc359db8 100644 --- a/net-misc/gupsc/ChangeLog +++ b/net-misc/gupsc/ChangeLog @@ -1,9 +1,13 @@ # ChangeLog for net-misc/gupsc # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/net-misc/gupsc/ChangeLog,v 1.2 2002/07/07 07:39:09 phoenix Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/gupsc/ChangeLog,v 1.3 2002/11/07 16:36:47 foser Exp $ *gupsc-0.3.1-r1 (1 Feb 2002) + 07 Nov 2002; foser <foser@gentoo.org> gupsc-0.3.1-r1.ebuild : + Disabled nls to fix sandbox issue (bug #9970) + Did some ebuild cleanups (ident, emake) + 1 Feb 2002; phoen][x <phoenix@gentoo.org> gupsc-0.3.1-r1.ebuild : Added KEYWORDS, LICENSE, SLOT. diff --git a/net-misc/gupsc/gupsc-0.3.1-r1.ebuild b/net-misc/gupsc/gupsc-0.3.1-r1.ebuild index 8042d8898e6a..cbdbb15dcd91 100644 --- a/net-misc/gupsc/gupsc-0.3.1-r1.ebuild +++ b/net-misc/gupsc/gupsc-0.3.1-r1.ebuild @@ -1,7 +1,8 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/gupsc/gupsc-0.3.1-r1.ebuild,v 1.7 2002/10/04 06:11:53 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/gupsc/gupsc-0.3.1-r1.ebuild,v 1.8 2002/11/07 16:36:47 foser Exp $ +IUSE="" S=${WORKDIR}/${P} DESCRIPTION="A Gnome client for the Network UPS Tools (nut)" SRC_URI="http://www.stud.ifi.uio.no/~hennikul/gupsc/download/${P}.tar.bz2" @@ -12,16 +13,16 @@ SLOT="0" DEPEND=">=gnome-base/gnome-libs-1.4.1.2-r1" +src_compile() { + # nls sandboxes + econf --disable-nls || die -src_compile() { - ./configure --host=${CHOST} --prefix=/usr || die - emake || die + emake || die } src_install() { - make DESTDIR=${D} install || die - - dodoc AUTHORS COPYING ChangeLog NEWS README TODO + make DESTDIR=${D} install || die + dodoc AUTHORS COPYING ChangeLog NEWS README TODO } |