diff options
author | Brandon Low <lostlogic@gentoo.org> | 2002-09-04 17:21:59 +0000 |
---|---|---|
committer | Brandon Low <lostlogic@gentoo.org> | 2002-09-04 17:21:59 +0000 |
commit | 5fe8c3bfc8f9a794dd4622a5419620fe8ed9c8e5 (patch) | |
tree | 9d7c993803d1226ff393772e0467aa4c28d59d77 /app-admin | |
parent | resolves bug #7443, gcc3.2 fixes (diff) | |
download | historical-5fe8c3bfc8f9a794dd4622a5419620fe8ed9c8e5.tar.gz historical-5fe8c3bfc8f9a794dd4622a5419620fe8ed9c8e5.tar.bz2 historical-5fe8c3bfc8f9a794dd4622a5419620fe8ed9c8e5.zip |
drop etc-update as it is now in portage
Diffstat (limited to 'app-admin')
-rw-r--r-- | app-admin/gentoolkit/ChangeLog | 8 | ||||
-rw-r--r-- | app-admin/gentoolkit/files/digest-gentoolkit-0.1.17 | 0 | ||||
-rw-r--r-- | app-admin/gentoolkit/gentoolkit-0.1.17.ebuild | 71 |
3 files changed, 78 insertions, 1 deletions
diff --git a/app-admin/gentoolkit/ChangeLog b/app-admin/gentoolkit/ChangeLog index 1201e7043ad9..80cfb4f6ec9c 100644 --- a/app-admin/gentoolkit/ChangeLog +++ b/app-admin/gentoolkit/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for app-admin/gentoolkit # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/app-admin/gentoolkit/ChangeLog,v 1.37 2002/09/03 02:46:41 lostlogic Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-admin/gentoolkit/ChangeLog,v 1.38 2002/09/04 17:21:58 lostlogic Exp $ + +*gentoolkit-0.1.17 (03 Sep 2002) + + 03 Sep 2002; Brandon Low <lostlogic@gentoo.org> gentoolkit-0.1.17.ebuild: + + Move etc-update to portage. *gentoolkit-0.1.16 (28 Jul 2002) diff --git a/app-admin/gentoolkit/files/digest-gentoolkit-0.1.17 b/app-admin/gentoolkit/files/digest-gentoolkit-0.1.17 new file mode 100644 index 000000000000..e69de29bb2d1 --- /dev/null +++ b/app-admin/gentoolkit/files/digest-gentoolkit-0.1.17 diff --git a/app-admin/gentoolkit/gentoolkit-0.1.17.ebuild b/app-admin/gentoolkit/gentoolkit-0.1.17.ebuild new file mode 100644 index 000000000000..b21c5dc826c0 --- /dev/null +++ b/app-admin/gentoolkit/gentoolkit-0.1.17.ebuild @@ -0,0 +1,71 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# $Header: /var/cvsroot/gentoo-x86/app-admin/gentoolkit/gentoolkit-0.1.17.ebuild,v 1.1 2002/09/04 17:21:59 lostlogic Exp $ + +S=${WORKDIR}/${P} +DESCRIPTION="Collection of unofficial administration scripts for Gentoo" +SRC_URI="" +HOMEPAGE="http://www.gentoo.org/~karltk/projects/gentoolkit/" +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="x86 ppc sparc sparc64" + +DEPEND=">=dev-lang/python-2.0 + >=dev-util/dialog-0.7 + >=sys-devel/perl-5.6 + >=sys-apps/grep-2.5-r1" + +src_install () { + dodir /usr/share/gentoolkit + + insinto /usr/share/gentoolkit + doins ${FILESDIR}/portage-statistics/histogram.awk + + dobin ${FILESDIR}/gentool/gentool-bump-revision + dobin ${FILESDIR}/gentool/gentool-total-coverage + dobin ${FILESDIR}/gentool/gentool-author-coverage + dobin ${FILESDIR}/gentool/gentool-package-count + docinto gentool + dodoc ${FILESDIR}/gentool/ChangeLog + + dobin ${FILESDIR}/scripts/qpkg + doman ${FILESDIR}/scripts/qpkg.1 + fowners root:wheel /usr/bin/qpkg + fperms 0750 /usr/bin/qpkg + + dobin ${FILESDIR}/scripts/dep-clean + doman ${FILESDIR}/scripts/dep-clean.1 + fowners root:wheel /usr/bin/dep-clean + fperms 0750 /usr/bin/dep-clean + + dobin ${FILESDIR}/scripts/pkg-size +# 2002-08-06: karltk +# This utility currently does more harm than good. I'm not including it +# until it has been fixed properly. See #5777 in particular. +# dobin ${FILESDIR}/scripts/useflag +# doman ${FILESDIR}/scripts/useflag.1 + + dosbin ${FILESDIR}/scripts/pkg-clean + dosbin ${FILESDIR}/scripts/mkebuild + dosbin ${FILESDIR}/scripts/emerge-webrsync + dosbin ${FILESDIR}/scripts/epm + + dobin ${FILESDIR}/lintool/lintool + doman ${FILESDIR}/lintool/lintool.1 + docinto lintool + dodoc ${FILESDIR}/lintool/{checklist-for-ebuilds,ChangeLog} + +# Included in portage as of 03 Sep 2002 +# dosbin ${FILESDIR}/etc-update/etc-update +# doman ${FILESDIR}/etc-update/etc-update.1 +# docinto etc-update +# dodoc ${FILESDIR}/etc-update/ChangeLog +# insinto /etc +# doins ${FILESDIR}/etc-update/etc-update.conf + +} + +pkg_postinst() { + ewarn "The 'useflag' utility has been removed, pending an overhaul. It has proven to be too brittle to be used safely." + ewarn "The 'etc-update' utility has been moved to portage." +} |