diff options
author | Chris Houser <chouser@gentoo.org> | 2003-01-15 01:34:59 +0000 |
---|---|---|
committer | Chris Houser <chouser@gentoo.org> | 2003-01-15 01:34:59 +0000 |
commit | 63db097cb135475763bb4976557218ee582eb367 (patch) | |
tree | 2bb542926e654c853e659978f93c1c4696544600 /dev-java | |
parent | new digest (diff) | |
download | gentoo-2-63db097cb135475763bb4976557218ee582eb367.tar.gz gentoo-2-63db097cb135475763bb4976557218ee582eb367.tar.bz2 gentoo-2-63db097cb135475763bb4976557218ee582eb367.zip |
Initial ebuild.
Diffstat (limited to 'dev-java')
-rw-r--r-- | dev-java/fop-bin/ChangeLog | 8 | ||||
-rw-r--r-- | dev-java/fop-bin/files/digest-fop-bin-0.20.4 | 1 | ||||
-rw-r--r-- | dev-java/fop-bin/fop-bin-0.20.4.ebuild | 26 |
3 files changed, 35 insertions, 0 deletions
diff --git a/dev-java/fop-bin/ChangeLog b/dev-java/fop-bin/ChangeLog new file mode 100644 index 000000000000..f6b913b2585a --- /dev/null +++ b/dev-java/fop-bin/ChangeLog @@ -0,0 +1,8 @@ +# ChangeLog for dev-java/fop-bin +# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-java/fop-bin/ChangeLog,v 1.1 2003/01/15 01:34:59 chouser Exp $ + +*fop-bin-0.20.4 (14 Jan 2003) + + 14 Jan 2003; Chouser <chouser@gentoo.org> files/digest-fop-bin-0.20.4, + fop-bin-0.20.4.ebuild : Initial ebuild. diff --git a/dev-java/fop-bin/files/digest-fop-bin-0.20.4 b/dev-java/fop-bin/files/digest-fop-bin-0.20.4 new file mode 100644 index 000000000000..9099c3fcdcc0 --- /dev/null +++ b/dev-java/fop-bin/files/digest-fop-bin-0.20.4 @@ -0,0 +1 @@ +MD5 dbf1af6f05afc6b5395ac22aa88e2c33 fop-0.20.4-bin.tar.gz 5538509 diff --git a/dev-java/fop-bin/fop-bin-0.20.4.ebuild b/dev-java/fop-bin/fop-bin-0.20.4.ebuild new file mode 100644 index 000000000000..4909a28d24a0 --- /dev/null +++ b/dev-java/fop-bin/fop-bin-0.20.4.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-java/fop-bin/fop-bin-0.20.4.ebuild,v 1.1 2003/01/15 01:34:59 chouser Exp $ + +P=${P/-bin/} +PN=${PN/-bin/} +DESCRIPTION="Formatting Objects Processor is a print formatter driven by XSL" +SRC_URI="http://xml.apache.org/dist/fop/${P}-bin.tar.gz" +HOMEPAGE="http://xml.apache.org/fop/" +LICENSE="Apache-1.1" + +SLOT="0" +KEYWORDS="~x86" +DEPEND=">=virtual/jdk-1.4" +IUSE="" + +src_install() { + sed '2itest "$FOP_HOME" || FOP_HOME=/usr/share/fop/' fop.sh > fop + exeinto /usr/bin + doexe fop + + dojar lib/*.jar build/*.jar + dodoc LICENSE README CHANGES ReleaseNotes.html STATUS + dodoc lib/*.txt docs/*.pdf conf/* + dohtml -r docs/html-docs/* +} |