diff options
author | Martin Holzer <mholzer@gentoo.org> | 2003-08-18 17:37:22 +0000 |
---|---|---|
committer | Martin Holzer <mholzer@gentoo.org> | 2003-08-18 17:37:22 +0000 |
commit | 0bc928d93697baecac9c9f42ec1c50d05878c441 (patch) | |
tree | 88ad2b89d2f3077df0f31b097ca5994080f43339 /app-text/htmldoc | |
parent | Version bumped. (diff) | |
download | gentoo-2-0bc928d93697baecac9c9f42ec1c50d05878c441.tar.gz gentoo-2-0bc928d93697baecac9c9f42ec1c50d05878c441.tar.bz2 gentoo-2-0bc928d93697baecac9c9f42ec1c50d05878c441.zip |
Version bumped.
Diffstat (limited to 'app-text/htmldoc')
-rw-r--r-- | app-text/htmldoc/ChangeLog | 7 | ||||
-rw-r--r-- | app-text/htmldoc/Manifest | 4 | ||||
-rw-r--r-- | app-text/htmldoc/files/digest-htmldoc-1.8.23 | 1 | ||||
-rw-r--r-- | app-text/htmldoc/htmldoc-1.8.23.ebuild | 45 |
4 files changed, 54 insertions, 3 deletions
diff --git a/app-text/htmldoc/ChangeLog b/app-text/htmldoc/ChangeLog index 995e12f61e4c..a2b9b6cb4236 100644 --- a/app-text/htmldoc/ChangeLog +++ b/app-text/htmldoc/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-text/htmldoc # Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/htmldoc/ChangeLog,v 1.8 2003/07/08 21:04:57 mholzer Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/htmldoc/ChangeLog,v 1.9 2003/08/18 17:37:10 mholzer Exp $ + +*htmldoc-1.8.23 (18 Aug 2003) + + 18 Aug 2003; Martin Holzer <mholzer@gentoo.org> htmldoc-1.8.23.ebuild: + Version bumped. *htmldoc-1.8.20-r1 (08 Jul 2003) diff --git a/app-text/htmldoc/Manifest b/app-text/htmldoc/Manifest index 8131af1d3bc2..68dc60165ddd 100644 --- a/app-text/htmldoc/Manifest +++ b/app-text/htmldoc/Manifest @@ -1,8 +1,8 @@ -MD5 391dab33d8459237751e2ebdf5248414 ChangeLog 1290 +MD5 70788477af9def08622461dffd9f6e81 ChangeLog 1413 MD5 abe826fd46eac9003d74a37944e0f57c htmldoc-1.8.19.ebuild 831 MD5 d4222d88c149b729bbc21869e719bba1 htmldoc-1.8.20-r1.ebuild 1378 MD5 2901732d26ec1bbfe24d3b1573fe4838 htmldoc-1.8.20.ebuild 1149 -MD5 ff5720903c750aa7f2a9798bf5c799fe htmldoc-1.8.23.ebuild 1229 +MD5 35efa6df9f6e7a5e64f6f4366b268d32 htmldoc-1.8.23.ebuild 1186 MD5 86ae7168499a7aed0980b69d04839ea7 files/digest-htmldoc-1.8.19 75 MD5 4fd3b7ec1b30af0be9c2fd4695062c0c files/digest-htmldoc-1.8.20 77 MD5 4fd3b7ec1b30af0be9c2fd4695062c0c files/digest-htmldoc-1.8.20-r1 77 diff --git a/app-text/htmldoc/files/digest-htmldoc-1.8.23 b/app-text/htmldoc/files/digest-htmldoc-1.8.23 new file mode 100644 index 000000000000..4b2e4b0e11c9 --- /dev/null +++ b/app-text/htmldoc/files/digest-htmldoc-1.8.23 @@ -0,0 +1 @@ +MD5 f867be6e4bdebf84ca6d58b16e4b839c htmldoc-1.8.23-source.tar.bz2 2329977 diff --git a/app-text/htmldoc/htmldoc-1.8.23.ebuild b/app-text/htmldoc/htmldoc-1.8.23.ebuild new file mode 100644 index 000000000000..15beee1727e7 --- /dev/null +++ b/app-text/htmldoc/htmldoc-1.8.23.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/htmldoc/htmldoc-1.8.23.ebuild,v 1.1 2003/08/18 17:37:10 mholzer Exp $ + +DESCRIPTION="Convert HTML pages into a PDF document" +SRC_URI="ftp://ftp.easysw.com/pub/${PN}/${PV}/${P}-source.tar.bz2" +HOMEPAGE="http://www.easysw.com/htmldoc/" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~x86 ~sparc ~ppc" + +DEPEND="virtual/x11" +RDEPEND=">=dev-libs/openssl-0.9.6e + >=x11-libs/fltk-1.0.11" + +src_unpack() { + unpack ${A} + cd ${S} + sed -i "s@^#define DOCUMENTATION \"\$prefix/share/doc/htmldoc\"@#define DOCUMENTATION \"\$prefix/share/doc/${PF}/html\"@" \ + configure +} + +src_compile() { + econf \ + --with-x \ + --with-gui \ + --with-openssl-libs=/usr/lib \ + --with-openssl-includes=/usr/include/openssl + + # Add missing -lfltk_images to LIBS + sed -i 's/-lfltk /-lfltk -lfltk_images /g' \ + Makedefs || die "failed to detect -lfltk" + + make || die +} + +src_install() { + einstall + + # Minor cleanups + mv ${D}/usr/share/doc/htmldoc ${D}/usr/share/doc/${PF} + dodir /usr/share/doc/${P}/html + mv ${D}/usr/share/doc/${P}/*.html ${D}/usr/share/doc/${PF}/html +} |