diff options
author | Jerry Alexandratos <jerrya@gentoo.org> | 2001-11-27 07:43:13 +0000 |
---|---|---|
committer | Jerry Alexandratos <jerrya@gentoo.org> | 2001-11-27 07:43:13 +0000 |
commit | 9afeeaa56b59ed6a4d9c250f012c8cc93f5e4b1a (patch) | |
tree | 50c41d877aabfd9dcab99571f25ca607193f2fff /app-admin | |
parent | oops, small doc typo (diff) | |
download | gentoo-2-9afeeaa56b59ed6a4d9c250f012c8cc93f5e4b1a.tar.gz gentoo-2-9afeeaa56b59ed6a4d9c250f012c8cc93f5e4b1a.tar.bz2 gentoo-2-9afeeaa56b59ed6a4d9c250f012c8cc93f5e4b1a.zip |
Slew of updates. Updated to the latest versions of the affected
programs, cleaned up the ebuilds to conform to the new standards, and
removed the older/stale versions...
Diffstat (limited to 'app-admin')
-rw-r--r-- | app-admin/gkrellm/files/digest-gkrellm-1.2.2-r1 | 1 | ||||
-rw-r--r-- | app-admin/gkrellm/gkrellm-1.2.2-r1.ebuild | 43 | ||||
-rw-r--r-- | app-admin/gkrellm/gkrellm-1.2.4.ebuild | 33 |
3 files changed, 18 insertions, 59 deletions
diff --git a/app-admin/gkrellm/files/digest-gkrellm-1.2.2-r1 b/app-admin/gkrellm/files/digest-gkrellm-1.2.2-r1 deleted file mode 100644 index 233f51e5c723..000000000000 --- a/app-admin/gkrellm/files/digest-gkrellm-1.2.2-r1 +++ /dev/null @@ -1 +0,0 @@ -MD5 5eb9f0d8c861f4a5b40c0cded3e53ecc gkrellm-1.2.2.tar.gz 499712 diff --git a/app-admin/gkrellm/gkrellm-1.2.2-r1.ebuild b/app-admin/gkrellm/gkrellm-1.2.2-r1.ebuild deleted file mode 100644 index 7bb02cc6d165..000000000000 --- a/app-admin/gkrellm/gkrellm-1.2.2-r1.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# 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.2-r1.ebuild,v 1.1 2001/10/06 13:20:34 azarah 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 - >=x11-libs/gtk+-1.2.10-r4 - >=media-libs/imlib-1.9.10-r1" - -src_compile() { - - emake PREFIX=/usr prefix=/usr || die - -} - -src_install () { - - cd src - exeinto /usr/bin - doexe gkrellm - - insinto /usr/include/gkrellm - for i in gkrellm.h gkrellm_private_proto.h gkrellm_public_proto.h - do - doins $i - done - - dodir /usr/share/gkrellm/{themes,plugins} - - cd ${S} - - dodoc COPYRIGHT README Changelog - docinto html - dodoc Changelog-plugins.html Changelog-themes.html Themes.html -} - - diff --git a/app-admin/gkrellm/gkrellm-1.2.4.ebuild b/app-admin/gkrellm/gkrellm-1.2.4.ebuild index 3de232b5885f..a3f1074bf27f 100644 --- a/app-admin/gkrellm/gkrellm-1.2.4.ebuild +++ b/app-admin/gkrellm/gkrellm-1.2.4.ebuild @@ -1,11 +1,14 @@ # 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.4.ebuild,v 1.1 2001/11/26 20:35:20 azarah Exp $ +# /space/gentoo/cvsroot/gentoo-x86/app-admin/gkrellm/gkrellm-1.2.2-r1.ebuild,v 1.1 2001/10/06 13:20:34 azarah Exp + + S=${WORKDIR}/${P} DESCRIPTION="Single process stack of various system monitors" -SRC_URI="http://web.wt.net/~billw/${PN}/${P}.tar.gz" +SRC_URI="http://web.wt.net/~billw/gkrellm/${P}.tar.gz" +HOMEPAGE="http://www.gkrellm.net/" DEPEND="virtual/glibc >=x11-libs/gtk+-1.2.10-r4 @@ -13,26 +16,26 @@ DEPEND="virtual/glibc src_compile() { + emake PREFIX=/usr prefix=/usr || die +} - use nls && ./enable_nls +src_install() { + cd ${S}/src - emake || die + exeinto /usr/bin + doexe gkrellm -} + insinto /usr/include/gkrellm + for i in gkrellm.h gkrellm_private_proto.h gkrellm_public_proto.h + do + doins $i + done -src_install () { + dodir /usr/share/gkrellm/{themes,plugins} - dodir /usr/{bin,include,share/man} - - make install \ - INSTALLDIR=${D}/usr/bin \ - MANDIR=${D}/usr/share/man/man1 \ - INCLUDEDIR=${D}/usr/include \ - LOCALEDIR=/usr/share/locale + cd ${S} dodoc COPYRIGHT README Changelog docinto html dodoc Changelog-plugins.html Changelog-themes.html Themes.html } - - |