diff options
author | Thomas Matthijs <axxo@gentoo.org> | 2004-10-02 16:38:03 +0000 |
---|---|---|
committer | Thomas Matthijs <axxo@gentoo.org> | 2004-10-02 16:38:03 +0000 |
commit | d483dde4c6f5670fc18651d71828862825f4f0bc (patch) | |
tree | 308b077bc5fa319e1d9357e463a9aa76968cc2a5 /app-editors | |
parent | Keyword ~alpha, bug 65839. (diff) | |
download | historical-d483dde4c6f5670fc18651d71828862825f4f0bc.tar.gz historical-d483dde4c6f5670fc18651d71828862825f4f0bc.tar.bz2 historical-d483dde4c6f5670fc18651d71828862825f4f0bc.zip |
Create even more docs
Diffstat (limited to 'app-editors')
-rw-r--r-- | app-editors/jedit/ChangeLog | 5 | ||||
-rw-r--r-- | app-editors/jedit/Manifest | 12 | ||||
-rw-r--r-- | app-editors/jedit/jedit-4.2.ebuild | 20 |
3 files changed, 26 insertions, 11 deletions
diff --git a/app-editors/jedit/ChangeLog b/app-editors/jedit/ChangeLog index cce21f08d761..1d746817827b 100644 --- a/app-editors/jedit/ChangeLog +++ b/app-editors/jedit/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-editors/jedit # Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/jedit/ChangeLog,v 1.40 2004/08/30 17:42:18 axxo Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/jedit/ChangeLog,v 1.41 2004/10/02 16:38:03 axxo Exp $ + + 02 Oct 2004; Thomas Matthijs <axxo@gentoo.org> jedit-4.2.ebuild: + Create even more docs 30 Aug 2004; Thomas Matthijs <axxo@gentoo.org> +files/jedit-4.1-jikes-fix.patch, diff --git a/app-editors/jedit/Manifest b/app-editors/jedit/Manifest index c457b9a3c1a9..563e8166122a 100644 --- a/app-editors/jedit/Manifest +++ b/app-editors/jedit/Manifest @@ -2,18 +2,18 @@ Hash: SHA1 MD5 5390252d25b069e2a5821aa1f711a5d4 jedit-4.1-r1.ebuild 2267 -MD5 889a02068dbfdd2fe97fd4a2c825b46c jedit-4.2.ebuild 1767 +MD5 a2a6b319f4bc80d967017318dd1e988e jedit-4.2.ebuild 2111 MD5 fd6cc31cfb221879341ae3e8e0b244cc jedit-4.1.ebuild 1862 -MD5 315332a9f3c6ca83f064843e1c01a91e ChangeLog 6078 +MD5 2ec34bb2faf8db310f9f28eea8d450af ChangeLog 6170 MD5 0c1bc759b6cafc454c336cb35fd05550 metadata.xml 257 MD5 c8305f25e0689d0224f1c0f565a92709 files/jedit-4.1-jikes-fix.patch 492 MD5 c29174550ae9f95fc60afd5cbf079f0c files/digest-jedit-4.1 66 MD5 46c44ce1da70402f205102ea5e9ec8b1 files/digest-jedit-4.2 66 MD5 c29174550ae9f95fc60afd5cbf079f0c files/digest-jedit-4.1-r1 66 -----BEGIN PGP SIGNATURE----- -Version: GnuPG v1.2.5 (GNU/Linux) +Version: GnuPG v1.2.6 (GNU/Linux) -iD8DBQFBM2dE/rLF9B432nYRAr5gAJ9W6iBTDFuzRy+Lf9twopzqcuRI1QCfXYxn -3AyqpBw3dMhb/SIWa6SCCB4= -=Pi1/ +iD8DBQFBXtmL/rLF9B432nYRAiTBAJ0dlEr5fp0OY6Xed7yUP2ZjUYc8bACgigyp +hpvF759pu7J0QkRVa9Yrk7Q= +=3592 -----END PGP SIGNATURE----- diff --git a/app-editors/jedit/jedit-4.2.ebuild b/app-editors/jedit/jedit-4.2.ebuild index 05e05738dc56..43a26e3216f4 100644 --- a/app-editors/jedit/jedit-4.2.ebuild +++ b/app-editors/jedit/jedit-4.2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/jedit/jedit-4.2.ebuild,v 1.1 2004/08/30 17:08:13 axxo Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/jedit/jedit-4.2.ebuild,v 1.2 2004/10/02 16:38:03 axxo Exp $ inherit java-utils @@ -17,13 +17,25 @@ IUSE="jikes doc" RDEPEND=">=virtual/jdk-1.3" DEPEND="${RDEPEND} + doc? ( + =app-text/docbook-xml-dtd-4.3* + =app-text/docbook-xsl-stylesheets-1.65.1* + ) >=dev-java/ant-1.5.4 jikes? ( >=dev-java/jikes-1.17 )" S="${WORKDIR}/jEdit" +src_unpack() { + unpack ${A} + cd ${S} + if use doc; then + echo "docbook.dtd.catalog=/usr/share/sgml/docbook/xml-dtd-4.3/docbook.cat" > build.properties + echo "docbook.xsl=/usr/share/sgml/docbook/xsl-stylesheets-1.65.1" >> build.properties + fi +} src_compile() { - local antflags="" + local antflags="dist" if use jikes ; then einfo "Please ignore the following compiler warnings." @@ -31,9 +43,9 @@ src_compile() { antflags="${antflags} -Dbuild.compiler=jikes" fi - use doc && antflags="${antflags} javadoc" + use doc && antflags="${antflags} javadoc docs-html" - ant dist ${antflags} || die "compile problem" + ant ${antflags} || die "compile problem" } src_install () { |