diff options
author | Aron Griffis <agriffis@gentoo.org> | 2002-02-20 02:11:25 +0000 |
---|---|---|
committer | Aron Griffis <agriffis@gentoo.org> | 2002-02-20 02:11:25 +0000 |
commit | a4bc631a71f97badb72233f395f7c0cc63153c17 (patch) | |
tree | 219acf6f9189d0ca40918caadb668fd5baa12ea6 /app-admin | |
parent | fix sandbox issue (diff) | |
download | gentoo-2-a4bc631a71f97badb72233f395f7c0cc63153c17.tar.gz gentoo-2-a4bc631a71f97badb72233f395f7c0cc63153c17.tar.bz2 gentoo-2-a4bc631a71f97badb72233f395f7c0cc63153c17.zip |
Updated ebuild for gkrellm from Seemant Kulleen
Diffstat (limited to 'app-admin')
-rw-r--r-- | app-admin/gkrellm/ChangeLog | 24 | ||||
-rw-r--r-- | app-admin/gkrellm/files/digest-gkrellm-1.2.9 | 1 | ||||
-rw-r--r-- | app-admin/gkrellm/gkrellm-1.2.9.ebuild | 39 |
3 files changed, 56 insertions, 8 deletions
diff --git a/app-admin/gkrellm/ChangeLog b/app-admin/gkrellm/ChangeLog index 19d225a6d762..d183f9ffc1e9 100644 --- a/app-admin/gkrellm/ChangeLog +++ b/app-admin/gkrellm/ChangeLog @@ -1,13 +1,21 @@ # ChangeLog for app-admin/gkrellm # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/app-admin/gkrellm/ChangeLog,v 1.1 2002/02/01 21:52:59 gbevin Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-admin/gkrellm/ChangeLog,v 1.2 2002/02/20 02:11:25 agriffis Exp $ + +*gkrellm-1.2.9 (19 Feb 2002) + + 19 Feb 2002; Aron Griffis <agriffis@gentoo.org> gkrellm-1.2.9.ebuild: + + Updated to new version of gkrellm. Fixed up the dependencies to include + gettext. Thanks to Seemant Kulleen for the ebuild. *gkrellm-1.2.5 (1 Feb 2002) - 1 Feb 2002; G.Bevin <gbevin@gentoo.org> ChangeLog : - - Added initial ChangeLog which should be updated whenever the package is - updated in any way. This changelog is targetted to users. This means that the - comments should well explained and written in clean English. The details about - writing correct changelogs are explained in the skel.ChangeLog file which you - can find in the root directory of the portage repository. + 1 Feb 2002; G.Bevin <gbevin@gentoo.org> ChangeLog : + + Added initial ChangeLog which should be updated whenever the package is + updated in any way. This changelog is targetted to users. This means that + the comments should well explained and written in clean English. The + details about writing correct changelogs are explained in the + skel.ChangeLog file which you can find in the root directory of the + portage repository. diff --git a/app-admin/gkrellm/files/digest-gkrellm-1.2.9 b/app-admin/gkrellm/files/digest-gkrellm-1.2.9 new file mode 100644 index 000000000000..cb6509623d01 --- /dev/null +++ b/app-admin/gkrellm/files/digest-gkrellm-1.2.9 @@ -0,0 +1 @@ +MD5 f3c24cdd6f552d172790166375358217 gkrellm-1.2.9.tar.gz 584845 diff --git a/app-admin/gkrellm/gkrellm-1.2.9.ebuild b/app-admin/gkrellm/gkrellm-1.2.9.ebuild new file mode 100644 index 000000000000..f93070f9c303 --- /dev/null +++ b/app-admin/gkrellm/gkrellm-1.2.9.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2000 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Jerry Alexandratos <jerry@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/app-admin/gkrellm/gkrellm-1.2.9.ebuild,v 1.1 2002/02/20 02:11:25 agriffis Exp $ + +S=${WORKDIR}/${P} +DESCRIPTION="Single process stack of various system monitors" +SRC_URI="http://web.wt.net/~billw/${PN}/${P}.tar.gz" + +DEPEND="virtual/glibc + nls? ( sys-devel/gettext ) + >=x11-libs/gtk+-1.2.10-r4 + >=media-libs/imlib-1.9.10-r1" + +RDEPEND="virtual/glibc + >=x11-libs/gtk+-1.2.10-r4 + >=media-libs/imlib-1.9.10-r1" + +src_compile() { + use nls || ln -sf Makefile.top Makefile + emake || die +} + +src_install () { + dodir /usr/{bin,include,share/man} + dodir /usr/share/gkrellm/{themes,plugins} + + make install \ + INSTALLDIR=${D}/usr/bin \ + MANDIR=${D}/usr/share/man/man1 \ + INCLUDEDIR=${D}/usr/include \ + LOCALEDIR=${D}/usr/share/locale + + dodoc COPYRIGHT README Changelog + docinto html + dodoc Changelog-plugins.html Changelog-themes.html Themes.html +} + + |