Portage is a package management system used by Gentoo Linux
# ChangeLog for dev-libs/gnulib
# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/gnulib/ChangeLog,v 1.3 2007/10/28 21:03:33 vapier Exp $
28 Oct 2007; Mike Frysinger
-gnulib-9999-r1.ebuild:
You dont rev-bump live ebuilds as that is the entire point of them.
*gnulib-9999-r1 (27 Oct 2007)
27 Oct 2007; Timothy Redaelli
Now gnulib uses git, make a symlink instead of wrapper since is not necessary.
*gnulib-9999 (08 May 2007)
08 May 2007; Timothy Redaelli
+gnulib-9999.ebuild:
New ebuild, imported from my overlay.
Thanks to Davide Angelocola wrt bug #162295 for original ebuild.
EBUILD gnulib-9999.ebuild 1002 RMD160 6de789232731df031506cb3a2912de81c487b0aa SHA1 4c8e63b20648e6ff07680457d93b3a39c04f0910 SHA256 131b22ac9e77d2e2dbc265d28a6a6910c2d8db41597738e96099872e4056ce0b
MISC ChangeLog 785 RMD160 794fb989e9135c9a08d616a3aa612e2ebffc36cd SHA1 35e154b4a2375ca80fe4b4cea41b8f5a56db67d4 SHA256 d564d874a3b191dda8d156e5e56d6f600d861618ab3232f75489d2ad03bbd1b8
MISC metadata.xml 220 RMD160 308345912146c5e9bd3f1d2ee119e04cede580a3 SHA1 2869d94e798df613f6a03d471ca672fce92af74e SHA256 f887a8f740f065e7b83ebcb94494ab388927dca6b0d57e6f8b1b7acc9822af66
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/gnulib/gnulib-9999.ebuild,v 1.2 2007/10/28 21:03:33 vapier Exp $
EGIT_REPO_URI="git://git.savannah.gnu.org/gnulib.git"
inherit eutils git
DESCRIPTION="Gnulib is a library of common routines intended to be shared at the source level."
HOMEPAGE="http://www.gnu.org/software/gnulib"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS=""
IUSE=""
DEPEND=""
RDEPEND=""
S="${WORKDIR}"/${PN}
src_compile() {
emake -C doc info html || die "emake failed"
}
src_install() {
dodoc README COPYING ChangeLog
dohtml doc/gnulib.html
doinfo doc/gnulib.info
insinto /usr/share/${PN}
doins -r lib
doins -r m4
doins -r modules
# remove CVS dirs
#find "${D}" -name CVS -type d -print0 | xargs -0 rm -r
# install the real script
exeinto /usr/share/${PN}
doexe gnulib-tool
# create and install the wrapper
dosym /usr/share/${PN}/gnulib-tool /usr/bin/gnulib-tool
}