diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2002-04-25 01:00:13 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2002-04-25 01:00:13 +0000 |
commit | 1d2517cf47c4dae0239cb071b5ec6c5f91670d71 (patch) | |
tree | ceb0bbfa4e5180ef10d06f7ded21f30fac560e32 /net-analyzer/netleds_applet | |
parent | slotify (diff) | |
download | gentoo-2-1d2517cf47c4dae0239cb071b5ec6c5f91670d71.tar.gz gentoo-2-1d2517cf47c4dae0239cb071b5ec6c5f91670d71.tar.bz2 gentoo-2-1d2517cf47c4dae0239cb071b5ec6c5f91670d71.zip |
fixed sandbox violation
Diffstat (limited to 'net-analyzer/netleds_applet')
-rw-r--r-- | net-analyzer/netleds_applet/ChangeLog | 8 | ||||
-rw-r--r-- | net-analyzer/netleds_applet/files/digest-netleds_applet-0.9.1-r2 | 1 | ||||
-rw-r--r-- | net-analyzer/netleds_applet/netleds_applet-0.9.1-r2.ebuild | 30 |
3 files changed, 38 insertions, 1 deletions
diff --git a/net-analyzer/netleds_applet/ChangeLog b/net-analyzer/netleds_applet/ChangeLog index e8a39725be90..7b951290053b 100644 --- a/net-analyzer/netleds_applet/ChangeLog +++ b/net-analyzer/netleds_applet/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for net-analyzer/netleds_applet # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/netleds_applet/ChangeLog,v 1.1 2002/02/01 21:53:31 gbevin Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/netleds_applet/ChangeLog,v 1.2 2002/04/25 01:00:13 seemant Exp $ + +*netleds_applet-0.9.1-r2 (24 Apr 2002) + + 24 Apr 2002; Seemant Kulleen <seemant@gentoo.org> netleds_applet-0.9.1-r2.ebuild files/digest-netleds_applet-0.9.1-r2 : + + fixed sandbox violation error for a config file going into /etc/CORBA/servers. *netleds_applet-0.9.1-r1 (1 Feb 2002) diff --git a/net-analyzer/netleds_applet/files/digest-netleds_applet-0.9.1-r2 b/net-analyzer/netleds_applet/files/digest-netleds_applet-0.9.1-r2 new file mode 100644 index 000000000000..e91820ced7ad --- /dev/null +++ b/net-analyzer/netleds_applet/files/digest-netleds_applet-0.9.1-r2 @@ -0,0 +1 @@ +MD5 9f1a91184215bd918a01e94c7d0c56e8 netleds_applet-0.9.1.tar.gz 138968 diff --git a/net-analyzer/netleds_applet/netleds_applet-0.9.1-r2.ebuild b/net-analyzer/netleds_applet/netleds_applet-0.9.1-r2.ebuild new file mode 100644 index 000000000000..27f47ea28245 --- /dev/null +++ b/net-analyzer/netleds_applet/netleds_applet-0.9.1-r2.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2000 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Achim Gottinger <achim@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/netleds_applet/netleds_applet-0.9.1-r2.ebuild,v 1.1 2002/04/25 01:00:13 seemant Exp $ + + +S=${WORKDIR}/${P} +DESCRIPTION="Gnome applet that displays leds from network load" +SRC_URI="http://netleds.port5.com/${P}.tar.gz" +HOMEPAGE="http://netleds.port5.com/" + +DEPEND=">=gnome-base/gnome-core-1.4.0.4-r1 + >=gnome-base/libgtop-1.0.12-r1" + +src_compile() { + ./configure \ + --host=${CHOST} \ + --prefix=/usr \ + --enable-shared || die + + emake || die +} + +src_install() { + make \ + prefix=${D}/usr \ + gnorbadir=${D}/etc/CORBA/servers || install + + dodoc AUTHORS COPYING ChangeLog NEWS README TODO +} |