diff options
author | Martin Holzer <mholzer@gentoo.org> | 2003-10-16 19:04:52 +0000 |
---|---|---|
committer | Martin Holzer <mholzer@gentoo.org> | 2003-10-16 19:04:52 +0000 |
commit | 3b272756f3fdcbfc59d0a2bfe41ae573eab3b490 (patch) | |
tree | c98f8136cb9512ffe0040d27aa2ebd880a112c46 /dev-util/cvsgraph/cvsgraph-1.4.0.ebuild | |
parent | Version bumped. Closes #31203. (diff) | |
download | gentoo-2-3b272756f3fdcbfc59d0a2bfe41ae573eab3b490.tar.gz gentoo-2-3b272756f3fdcbfc59d0a2bfe41ae573eab3b490.tar.bz2 gentoo-2-3b272756f3fdcbfc59d0a2bfe41ae573eab3b490.zip |
Version bumped. Closes #31203.
Diffstat (limited to 'dev-util/cvsgraph/cvsgraph-1.4.0.ebuild')
-rw-r--r-- | dev-util/cvsgraph/cvsgraph-1.4.0.ebuild | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/dev-util/cvsgraph/cvsgraph-1.4.0.ebuild b/dev-util/cvsgraph/cvsgraph-1.4.0.ebuild new file mode 100644 index 000000000000..04df6ec6c77b --- /dev/null +++ b/dev-util/cvsgraph/cvsgraph-1.4.0.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/cvsgraph/cvsgraph-1.4.0.ebuild,v 1.1 2003/10/16 19:04:40 mholzer Exp $ + +HOMEPAGE="http://www.akhphd.au.dk/~bertho/cvsgraph" +KEYWORDS="~x86 ~sparc ~ppc" +SLOT="0" +LICENSE="GPL-2" +DESCRIPTION="CVS/RCS repository grapher" + +SRC_URI="http://www.akhphd.au.dk/~bertho/cvsgraph/release/${P}.tar.gz" +S=${WORKDIR}/${P} + +IUSE="gd png gif jpeg zlib truetype nls" + +DEPEND="media-libs/libgd + zlib? ( sys-libs/zlib ) + gif? ( media-libs/giflib ) + png? ( media-libs/libpng ) + jpeg? ( media-libs/jpeg ) + truetype? ( media-libs/freetype )" + +src_compile() { + local myopts + + myopts="`use_enable nls` `use_enable gif` `use_enable png` `use_enable jpeg` `use_enable truetype`" + + econf ${myopts} + emake || die +} + +src_install () { + dobin ${S}/cvsgraph + insinto /etc + doins ${S}/cvsgraph.conf + doman ${S}/cvsgraph.1 ${S}/cvsgraph.conf.5 +} |