Portage is a package management system used by Gentoo Linux
# ChangeLog for dev-util/cvsgraph
# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/cvsgraph/ChangeLog,v 1.22 2008/05/06 20:12:55 ramereth Exp $
06 May 2008; Lance Albertson
-cvsgraph-1.5.2.ebuild, -cvsgraph-1.6.0.ebuild:
ebuild cleanup
06 Sep 2007; Steve Dibb
cvsgraph-1.6.1.ebuild:
amd64 stable
06 Apr 2007; Tobias Scherbaum
cvsgraph-1.6.1.ebuild:
ppc stable
04 Apr 2007; Gustavo Zacarias
Stable on sparc
21 Mar 2007; Raúl Porcel
x86 stable
24 Sep 2006; Michael Hanselmann
Stable on ppc.
05 Sep 2006; Gustavo Zacarias
Stable on sparc
*cvsgraph-1.6.1 (05 Sep 2006)
05 Sep 2006; Lance Albertson
+cvsgraph-1.6.1.ebuild:
* Version bump
* 1.6.0 stable on x86
*cvsgraph-1.6.0 (09 Apr 2006)
09 Apr 2006; Lance Albertson
* Version bump
* Added automatic_documentation in docs
16 Oct 2005; Jason Wever
Stable on SPARC.
12 Oct 2005; Michael Hanselmann
Stable on ppc.
29 Sep 2005; Lance Albertson
cvsgraph-1.5.1.ebuild, cvsgraph-1.5.2.ebuild:
* Stable on x86
* Update metadata.xml
27 Sep 2005; Luis Medinas
Added ~amd64 keywords. Closes bug #107288.
*cvsgraph-1.5.2 (15 Jun 2005)
15 Jun 2005; Aaron Walker
-cvsgraph-1.4.0.ebuild, -cvsgraph-1.4.1.ebuild, +cvsgraph-1.5.2.ebuild:
Version bump; tidy old ebuilds.
*cvsgraph-1.5.1 (25 Apr 2005)
25 Apr 2005; Aaron Walker
+cvsgraph-1.5.1.ebuild:
Version bump; added metadata.xml for cvs-utils herd.
*cvsgraph-1.4.1 (10 Sep 2004)
10 Sep 2004; Rob Holland
version bump, closes #59430. also installs sample wrapper scripts now
05 Aug 2004; Aron Griffis
Explicitly disable on 64-bit arches because there are assumptions in the app
that pointer==integer
25 Apr 2004; Aron Griffis
cvsgraph-1.4.0.ebuild:
Add die following econf for bug 48950
12 Mar 2004; Michael Sterrett
cvsgraph-1.4.0.ebuild:
Don't assign default to S; header fix
*cvsgraph-1.4.0 (17 Oct 2003)
17 Oct 2003; Martin Holzer
Version bumped. Closes #31203.
*cvsgraph-1.3.0 (10 Jul 2003)
10 Jul 2003; robh
Initial version. Based on the ebuild from #16501 by axxackall@yahoo.com, but
hacked about by me.
DIST cvsgraph-1.6.1.tar.gz 114337 RMD160 b4fa44c6d41a28d8e2e8d1f505dc117d0f59d286 SHA1 ca5011537e22d6399eeb4d44c9ba0830e0f240a6 SHA256 05cdbed36bb2dd37aa382fc7f4410caac20dcf9176a50e922551cdc965dbc60b
EBUILD cvsgraph-1.6.1.ebuild 1079 RMD160 0a794277c9e0191eee1fdd62d975f7b3be3d8d80 SHA1 09f08578e6e7e3c8ffa10eaa822f1fc7f7198c99 SHA256 7975301691ff0cedb0cbb2cd7669c52dc4bc22c5aa172f234e6f152db14f490c
MISC ChangeLog 3095 RMD160 21c23b3caa9fe1748b6199282564dce9e87b6f80 SHA1 385dc11a151f1ed93aae1205f3f15e60ad5e9e7e SHA256 3005617d53234811d687dbef03ae5dcf39ac60a595c5c19f0385b05ca1787c0b
MISC metadata.xml 587 RMD160 b7ee7730f1c8fbb624d74b7dfa7f5c3df9012e6b SHA1 1bfe3dce335da0bedb8733d4da1a49a113609001 SHA256 b21af0e5b1f777016a5f328cc9a3c773e205e6d9f082097ee7933aae18aabfcc
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/cvsgraph/cvsgraph-1.6.1.ebuild,v 1.5 2007/09/06 18:52:08 beandog Exp $
DESCRIPTION="CVS/RCS repository grapher"
HOMEPAGE="http://www.akhphd.au.dk/~bertho/cvsgraph"
SRC_URI="http://www.akhphd.au.dk/~bertho/cvsgraph/release/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="-alpha amd64 -ia64 ppc sparc x86"
IUSE="gif jpeg nls png truetype zlib"
DEPEND="media-libs/gd
zlib? ( sys-libs/zlib )
gif? ( media-libs/giflib )
png? ( media-libs/libpng )
jpeg? ( media-libs/jpeg )
truetype? ( media-libs/freetype )"
src_compile() {
econf \
$(use_enable nls) \
$(use_enable gif) \
$(use_enable png) \
$(use_enable jpeg) \
$(use_enable truetype) \
|| die "econf failed"
emake || die "emake failed"
}
src_install () {
dobin cvsgraph
insinto /etc
doins cvsgraph.conf
doman cvsgraph.1 cvsgraph.conf.5
dodoc ChangeLog README contrib/*.php3
docinto automatic_documentation ; dodoc contrib/automatic_documentation/*
}
CvsGraph is a utility to make a graphical representation of all
revisions and branches of a file in a CVS/RCS repository. It has been
inspired by the 'graph' option in WinCVS, but I could not find a
stand-alone version of this graph code. So, it was time to write one.