summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2009-10-07 19:58:09 +0000
committerMike Frysinger <vapier@gentoo.org>2009-10-07 19:58:09 +0000
commit0584ce2be5faedd9b575e20a0fef725795a245bc (patch)
tree54cf5c2c881d383d265ad4a86d57b69723c6d1f6 /app-portage
parentold (diff)
downloadgentoo-2-0584ce2be5faedd9b575e20a0fef725795a245bc.tar.gz
gentoo-2-0584ce2be5faedd9b575e20a0fef725795a245bc.tar.bz2
gentoo-2-0584ce2be5faedd9b575e20a0fef725795a245bc.zip
Bump to push out accumulated changes in the tree.
(Portage version: 2.2_rc42/cvs/Linux x86_64, RepoMan options: --force)
Diffstat (limited to 'app-portage')
-rw-r--r--app-portage/eclass-manpages/ChangeLog10
-rw-r--r--app-portage/eclass-manpages/eclass-manpages-20091007.ebuild28
2 files changed, 36 insertions, 2 deletions
diff --git a/app-portage/eclass-manpages/ChangeLog b/app-portage/eclass-manpages/ChangeLog
index b5f85c0cdc3e..80be567c5fdd 100644
--- a/app-portage/eclass-manpages/ChangeLog
+++ b/app-portage/eclass-manpages/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for app-portage/eclass-manpages
-# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-portage/eclass-manpages/ChangeLog,v 1.15 2008/08/30 03:59:33 vapier Exp $
+# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-portage/eclass-manpages/ChangeLog,v 1.16 2009/10/07 19:58:09 vapier Exp $
+
+*eclass-manpages-20091007 (07 Oct 2009)
+
+ 07 Oct 2009; Mike Frysinger <vapier@gentoo.org>
+ +eclass-manpages-20091007.ebuild:
+ Bump to push out accumulated changes in the tree.
30 Aug 2008; Mike Frysinger <vapier@gentoo.org>
eclass-manpages-20080531.ebuild:
diff --git a/app-portage/eclass-manpages/eclass-manpages-20091007.ebuild b/app-portage/eclass-manpages/eclass-manpages-20091007.ebuild
new file mode 100644
index 000000000000..cbcce7bc9f28
--- /dev/null
+++ b/app-portage/eclass-manpages/eclass-manpages-20091007.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2009 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/app-portage/eclass-manpages/eclass-manpages-20091007.ebuild,v 1.1 2009/10/07 19:58:09 vapier Exp $
+
+DESCRIPTION="collection of Gentoo eclass manpages"
+HOMEPAGE="http://www.gentoo.org/"
+SRC_URI=""
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="alpha amd64 arm hppa ia64 m68k mips ppc ppc64 s390 sh sparc ~sparc-fbsd x86 ~x86-fbsd"
+IUSE=""
+
+DEPEND=""
+RDEPEND="!app-portage/portage-manpages"
+
+S=${WORKDIR}
+
+src_compile() {
+ local e
+ for e in "${ECLASSDIR}"/*.eclass ; do
+ awk -f "${FILESDIR}"/eclass-to-manpage.awk ${e} > ${e##*/}.5 || rm -f ${e##*/}.5
+ done
+}
+
+src_install() {
+ doman *.5 || die
+}