diff options
author | Vitaly Kushneriuk <vitaly@gentoo.org> | 2002-02-03 11:40:24 +0000 |
---|---|---|
committer | Vitaly Kushneriuk <vitaly@gentoo.org> | 2002-02-03 11:40:24 +0000 |
commit | 89629851c4c11dfb5983b3be433a65a45754daa8 (patch) | |
tree | baaedf0aa43e16ea95eedd764358dbbc1adb2662 /app-admin | |
parent | update to the current version of qpkg. (diff) | |
download | gentoo-2-89629851c4c11dfb5983b3be433a65a45754daa8.tar.gz gentoo-2-89629851c4c11dfb5983b3be433a65a45754daa8.tar.bz2 gentoo-2-89629851c4c11dfb5983b3be433a65a45754daa8.zip |
in response to #460 qpkg updated to most recent version.
Diffstat (limited to 'app-admin')
-rw-r--r-- | app-admin/gentoolkit/ChangeLog | 8 | ||||
-rw-r--r-- | app-admin/gentoolkit/files/digest-gentoolkit-0.1.2 | 0 | ||||
-rw-r--r-- | app-admin/gentoolkit/gentoolkit-0.1.2.ebuild | 53 |
3 files changed, 60 insertions, 1 deletions
diff --git a/app-admin/gentoolkit/ChangeLog b/app-admin/gentoolkit/ChangeLog index 3cae2f58226f..0ceb62e7d4ba 100644 --- a/app-admin/gentoolkit/ChangeLog +++ b/app-admin/gentoolkit/ChangeLog @@ -1,7 +1,13 @@ # 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.2 2002/02/03 04:47:38 aeoo Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-admin/gentoolkit/ChangeLog,v 1.3 2002/02/03 11:40:24 vitaly Exp $ +*gentoolkit-0.1.1 (3 Feb 2002) + + 3 Feb 2002; Vitaly Kushneriuk <vitaly@gentoo.org>: + + Updated qpkg to the latest version. + *gentoolkit-0.1.1 (2 Feb 2002) 2 Feb 2002; Leo Lipelis <aeoo@gentoo.org> ChangeLog : diff --git a/app-admin/gentoolkit/files/digest-gentoolkit-0.1.2 b/app-admin/gentoolkit/files/digest-gentoolkit-0.1.2 new file mode 100644 index 000000000000..e69de29bb2d1 --- /dev/null +++ b/app-admin/gentoolkit/files/digest-gentoolkit-0.1.2 diff --git a/app-admin/gentoolkit/gentoolkit-0.1.2.ebuild b/app-admin/gentoolkit/gentoolkit-0.1.2.ebuild new file mode 100644 index 000000000000..23c7f469dc30 --- /dev/null +++ b/app-admin/gentoolkit/gentoolkit-0.1.2.ebuild @@ -0,0 +1,53 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Maintainer: Karl Trygve Kalleberg <karltk@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/app-admin/gentoolkit/gentoolkit-0.1.2.ebuild,v 1.1 2002/02/03 11:40:24 vitaly Exp $ + +S=${WORKDIR}/${P} +DESCRIPTION="Collection of unofficial administration scripts for Gentoo" +SRC_URI="" +HOMEPAGE="http://" + +DEPEND="" +RDEPEND=">=dev-lang/python-2.0 + >=sys-devel/perl-5.6" + +src_install () { + dodir /usr/share/gentoolkit + + insinto /usr/share/gentoolkit + doins ${FILESDIR}/coverage/histogram.awk + + dosbin ${FILESDIR}/coverage/total-coverage + dosbin ${FILESDIR}/coverage/author-coverage + + dosbin ${FILESDIR}/lintool/lintool + + dosbin ${FILESDIR}/scripts/etc-update + dosbin ${FILESDIR}/scripts/pkg-clean + dosbin ${FILESDIR}/scripts/qpkg + dosbin ${FILESDIR}/scripts/mkebuild + dosbin ${FILESDIR}/scripts/emerge-webrsync + dosbin ${FILESDIR}/scripts/epm + + dodoc ${FILESDIR}/lintool/checklist-for-ebuilds + +} + + +pkg_postinst() { + #notify user about new diff/sdiff mode for etc-update being the default + if [ -f /usr/sbin/etc-update ] + then + echo + echo "!! Warning: etc-update no longer defaults to using" + echo "!! vim diff mode!" + echo "!!" + echo "!! Vim diff mode is still available with a quick" + echo "!! configuration change. If you want to use vim" + echo "!! diff, just edit the top of the script as" + echo "!! appropriate." + echo + fi +} + |