blob: fd8875461d1e7086933afa88e9a87d343e255a88 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/gentoolkit/gentoolkit-0.1.19.ebuild,v 1.2 2003/03/11 21:11:43 seemant Exp $
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 alpha mips hppa arm"
DEPEND=">=dev-lang/python-2.0
>=dev-util/dialog-0.7
>=dev-lang/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}
dobin ${FILESDIR}/scripts/echangelog
dobin ${FILESDIR}/scripts/ekeyword
}
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."
einfo ""
einfo "emerge-webrsync -v displays the wget status"
einfo "since epm is now it's own package please emerge it yourself sys-apps/epm"
einfo ""
einfo "if you are upgrading from gentoolkit-0.1.17-r7 or earlier and"
einfo "you're using mkebuild, please remove ~/.mkebuild to update your settings"
einfo ""
einfo "dep-clean has been re-incarnated at the request of dragon. The new version"
einfo "is much faster and better than the old one, and is included herein"
}
|