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 | 082e1e804d6539a94c06db9096d3e938bb6d8ceb (patch) | |
tree | ec8b2bdf45e0deb2acf702dcd48d340cd8b38cbf /app-text | |
parent | Version bumped. (diff) | |
download | historical-082e1e804d6539a94c06db9096d3e938bb6d8ceb.tar.gz historical-082e1e804d6539a94c06db9096d3e938bb6d8ceb.tar.bz2 historical-082e1e804d6539a94c06db9096d3e938bb6d8ceb.zip |
Version bumped.
Diffstat (limited to 'app-text')
-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 |
3 files changed, 48 insertions, 2 deletions
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 +} |