diff options
Diffstat (limited to 'app-text/htmldoc')
-rw-r--r-- | app-text/htmldoc/ChangeLog | 10 | ||||
-rw-r--r-- | app-text/htmldoc/files/digest-htmldoc-1.8.20 | 1 | ||||
-rw-r--r-- | app-text/htmldoc/htmldoc-1.8.20.ebuild | 50 |
3 files changed, 59 insertions, 2 deletions
diff --git a/app-text/htmldoc/ChangeLog b/app-text/htmldoc/ChangeLog index e55674f33daa..7808ea8fbb47 100644 --- a/app-text/htmldoc/ChangeLog +++ b/app-text/htmldoc/ChangeLog @@ -1,8 +1,14 @@ # ChangeLog for app-text/htmldoc # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/app-text/htmldoc/ChangeLog,v 1.2 2002/08/02 17:42:49 phoenix Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/htmldoc/ChangeLog,v 1.3 2002/08/06 15:46:22 raker Exp $ -*htmldoc-1.8.19 (1 June 2002) +*htmldoc-1.8.20 (06 Aug 2002) + + 06 Aug 2002; Nick Hadaway <raker@gentoo.org> + htmldoc-1.8.20.ebuild, files/digest-htmldoc-1.8.20, files/fonts.diff : + Version bump. + +*htmldoc-1.8.19 (01 Jun 2002) 2 Aug 2002; phoen][x <phoenix@gentoo.org> htmldoc-1.8.19.ebuild : Added LICENSE, KEYWORDS, SLOT. diff --git a/app-text/htmldoc/files/digest-htmldoc-1.8.20 b/app-text/htmldoc/files/digest-htmldoc-1.8.20 new file mode 100644 index 000000000000..d37a79e5a0b2 --- /dev/null +++ b/app-text/htmldoc/files/digest-htmldoc-1.8.20 @@ -0,0 +1 @@ +MD5 6cca08007f686b3bff07882f01162c47 htmldoc-1.8.20-1-source.tar.bz2 2314154 diff --git a/app-text/htmldoc/htmldoc-1.8.20.ebuild b/app-text/htmldoc/htmldoc-1.8.20.ebuild new file mode 100644 index 000000000000..c4c6f6d0dc99 --- /dev/null +++ b/app-text/htmldoc/htmldoc-1.8.20.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# $Header: /var/cvsroot/gentoo-x86/app-text/htmldoc/htmldoc-1.8.20.ebuild,v 1.1 2002/08/06 15:46:22 raker Exp $ + +S=${WORKDIR}/${P} +DESCRIPTION="Convert HTML pages into a PDF document" +SRC_URI="ftp://ftp.easysw.com/pub/htmldoc/1.8.20/${P}-1-source.tar.bz2" +HOMEPAGE="http://www.easysw.com/htmldoc" +KEYWORDS="x86" +SLOT="0" +LICENSE="GPL-2" +DEPEND="virtual/x11" +RDEPEND=">=dev-libs/openssl-0.9.6e + >=x11-libs/fltk-1.0.11" + +src_unpack() { + + unpack ${A} + cd ${S} + patch -p1 < ${FILESDIR}/fonts.diff || die "patch failed" + +} + +src_compile() { + econf \ + --with-x \ + --with-gui \ + --with-openssl-libs=/usr/lib \ + --with-openssl-includes=/usr/include/openssl || die + + # Add missing -lfltk_images to LIBS + # + mv Makedefs Makedefs.orig + cat ${S}/Makedefs.orig | sed -e 's/-lfltk /-lfltk -lfltk_images /g' \ + > Makedefs || die "failed to detect -lfltk" + + make || die +} + + +src_install() { + + einstall || die + + # Minor cleanups + mv ${D}/usr/share/doc/htmldoc ${D}/usr/share/doc/${P} + dodir /usr/share/doc/${P}/html + mv ${D}/usr/share/doc/${P}/*.html ${D}/usr/share/doc/${P}/html + +} |