diff options
Diffstat (limited to 'x11-plugins/gkrelltop/gkrelltop-2.2.6.ebuild')
-rw-r--r-- | x11-plugins/gkrelltop/gkrelltop-2.2.6.ebuild | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/x11-plugins/gkrelltop/gkrelltop-2.2.6.ebuild b/x11-plugins/gkrelltop/gkrelltop-2.2.6.ebuild deleted file mode 100644 index 466afcf09783..000000000000 --- a/x11-plugins/gkrelltop/gkrelltop-2.2.6.ebuild +++ /dev/null @@ -1,29 +0,0 @@ -# Copyright 1999-2007 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/gkrelltop/gkrelltop-2.2.6.ebuild,v 1.2 2007/03/12 17:40:26 lack Exp $ - -inherit gkrellm-plugin - -DESCRIPTION="a GKrellM2 plugin which displays the top three processes" -SRC_URI="http://psychology.rutgers.edu/~zaimi/html/${PN}/${PN}_2.2-6.tar.gz" -HOMEPAGE="http://psychology.rutgers.edu/~zaimi/software.html" - -SLOT="0" -LICENSE="GPL-2" -KEYWORDS="~x86 ~sparc ~alpha ~ppc ~amd64" - -IUSE="" - -PLUGIN_SO=gkrelltop2.so - -src_compile() { - # Unfortunately, the supplied Makefile won't work properly on - # non-x86, so we have to do this the hard way. - CONFIG="-DLINUX -DGKRELLM2 -fPIC `pkg-config gtk+-2.0 --cflags`" - LIBS="`pkg-config gtk+-2.0 --libs` -shared" - OBJS="top_three2.o gkrelltop2.o" - gcc -c $CONFIG $CFLAGS top_three.c -o top_three2.o || die - gcc -c $CONFIG $CFLAGS gkrelltop.c -o gkrelltop2.o || die - gcc $LIBS $CONFIG $CFLAGS -o gkrelltop2.so $OBJS || die -} - |