summaryrefslogtreecommitdiff
blob: 35a3a0fb30ccd519b3ba99cc00015b4cf4737396 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# Copyright 1999-2004 Gentoo Foundation
# 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.4 2004/06/25 02:26:16 agriffis 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"

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} || die "econf failed"
	emake || die
}

src_install () {
	dobin ${S}/cvsgraph
	insinto /etc
	doins ${S}/cvsgraph.conf
	doman ${S}/cvsgraph.1 ${S}/cvsgraph.conf.5
}