diff options
author | Michał Górny <mgorny@gentoo.org> | 2019-11-06 11:11:19 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2019-11-06 11:11:19 +0100 |
commit | a5ce995a07f340bffe8e5e0cff565076173b3586 (patch) | |
tree | 06a00ad7572c23919f737268dcad2d00d1b10471 /dev-vcs | |
parent | dev-util/reswrap: Bump to EAPI 5 (diff) | |
download | gentoo-a5ce995a07f340bffe8e5e0cff565076173b3586.tar.gz gentoo-a5ce995a07f340bffe8e5e0cff565076173b3586.tar.bz2 gentoo-a5ce995a07f340bffe8e5e0cff565076173b3586.zip |
dev-vcs/cvsgraph: Bump to EAPI 7
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-vcs')
-rw-r--r-- | dev-vcs/cvsgraph/cvsgraph-1.7.0.ebuild | 17 |
1 files changed, 7 insertions, 10 deletions
diff --git a/dev-vcs/cvsgraph/cvsgraph-1.7.0.ebuild b/dev-vcs/cvsgraph/cvsgraph-1.7.0.ebuild index ada216280c8b..b844f9cff8ea 100644 --- a/dev-vcs/cvsgraph/cvsgraph-1.7.0.ebuild +++ b/dev-vcs/cvsgraph/cvsgraph-1.7.0.ebuild @@ -1,15 +1,15 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=0 +EAPI=7 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" +LICENSE="GPL-2+" SLOT="0" -KEYWORDS="-alpha amd64 -ia64 ppc sparc x86" +KEYWORDS="amd64 ppc sparc x86" IUSE="gif jpeg nls png truetype zlib" DEPEND="media-libs/gd @@ -20,16 +20,13 @@ DEPEND="media-libs/gd truetype? ( media-libs/freetype )" RDEPEND="${DEPEND}" -src_compile() { +src_configure() { econf \ $(use_enable nls) \ $(use_enable gif) \ $(use_enable png) \ $(use_enable jpeg) \ - $(use_enable truetype) \ - || die "econf failed" - - emake || die "emake failed" + $(use_enable truetype) } src_install () { @@ -38,5 +35,5 @@ src_install () { doins cvsgraph.conf doman cvsgraph.1 cvsgraph.conf.5 dodoc ChangeLog README AUTHORS contrib/*.php - docinto automatic_documentation ; dodoc contrib/automatic_documentation/* + dodoc -r contrib/automatic_documentation } |