diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2005-12-12 05:40:49 +0000 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2005-12-12 05:40:49 +0000 |
commit | 90443ae3263300f6f2b367ec4dc280224c6a421e (patch) | |
tree | a156f944f8134b72aafc7e3dddc00195d9799d35 /media-gfx/springgraph/springgraph-88.ebuild | |
parent | Add modular X dependencies. (diff) | |
download | historical-90443ae3263300f6f2b367ec4dc280224c6a421e.tar.gz historical-90443ae3263300f6f2b367ec4dc280224c6a421e.tar.bz2 historical-90443ae3263300f6f2b367ec4dc280224c6a421e.zip |
Version bump.
Package-Manager: portage-2.0.53
Diffstat (limited to 'media-gfx/springgraph/springgraph-88.ebuild')
-rw-r--r-- | media-gfx/springgraph/springgraph-88.ebuild | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/media-gfx/springgraph/springgraph-88.ebuild b/media-gfx/springgraph/springgraph-88.ebuild new file mode 100644 index 000000000000..1f77f6cf97c5 --- /dev/null +++ b/media-gfx/springgraph/springgraph-88.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/springgraph/springgraph-88.ebuild,v 1.1 2005/12/12 05:40:49 robbat2 Exp $ + +inherit eutils + +DESCRIPTION="Generate spring graphs from graphviz input files" +HOMEPAGE="http://www.chaosreigns.com/code/springgraph" +MY_PV="0.${PV}" +MY_P="${PN}_${MY_PV}" +SRC_FILE="${MY_P}.orig.tar.gz" +SRC_DEBIAN_PATCH="${PN}_0.82-5.diff.gz" +SRC_URI="http://www.chaosreigns.com/code/springgraph/dl/${PN}.pl.${PV} + mirror://debian/pool/main/${PN:0:1}/${PN}/${SRC_DEBIAN_PATCH}" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~sparc ~x86" +IUSE="" +DEPEND="" +RDEPEND="dev-perl/GD" +S="${WORKDIR}/${PN}-${MY_PV}" + +src_unpack() { + mkdir -p ${S} + cp ${DISTDIR}/${PN}.pl.${PV} ${S}/${PN} + EPATCH_OPTS="-p1 -d ${S}" epatch ${DISTDIR}/${SRC_DEBIAN_PATCH} +} + +src_compile() { + # nothing to do + : +} + +src_install() { + into /usr + dobin ${PN} + doman debian/${PN}.1 +} |