diff options
author | Ryan Phillips <rphillips@gentoo.org> | 2002-06-01 08:20:58 +0000 |
---|---|---|
committer | Ryan Phillips <rphillips@gentoo.org> | 2002-06-01 08:20:58 +0000 |
commit | 2b4d0352ad19a7f953394cf28c33e8ca06057488 (patch) | |
tree | f0cba2f050f8bc744a22f15ceec1f2737fe617b3 /app-text/htmldoc | |
parent | New version. fixes #3098 (diff) | |
download | gentoo-2-2b4d0352ad19a7f953394cf28c33e8ca06057488.tar.gz gentoo-2-2b4d0352ad19a7f953394cf28c33e8ca06057488.tar.bz2 gentoo-2-2b4d0352ad19a7f953394cf28c33e8ca06057488.zip |
New package. Fixes #3275
Diffstat (limited to 'app-text/htmldoc')
-rw-r--r-- | app-text/htmldoc/ChangeLog | 13 | ||||
-rw-r--r-- | app-text/htmldoc/files/digest-htmldoc-1.8.19 | 1 | ||||
-rw-r--r-- | app-text/htmldoc/htmldoc-1.8.19.ebuild | 37 |
3 files changed, 51 insertions, 0 deletions
diff --git a/app-text/htmldoc/ChangeLog b/app-text/htmldoc/ChangeLog new file mode 100644 index 000000000000..63d79bdc4a7d --- /dev/null +++ b/app-text/htmldoc/ChangeLog @@ -0,0 +1,13 @@ +# 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.1 2002/06/01 08:20:58 rphillips Exp $ + +*htmldoc-1.8.19 (1 June 2002) + + 1 June 2002; Ryan Phillips <rphillips@gentoo.org> ChangeLog : + + Added initial ChangeLog which should be updated whenever the package is + updated in any way. This changelog is targetted to users. This means that the + comments should well explained and written in clean English. The details about + writing correct changelogs are explained in the skel.ChangeLog file which you + can find in the root directory of the portage repository. diff --git a/app-text/htmldoc/files/digest-htmldoc-1.8.19 b/app-text/htmldoc/files/digest-htmldoc-1.8.19 new file mode 100644 index 000000000000..9eed52118832 --- /dev/null +++ b/app-text/htmldoc/files/digest-htmldoc-1.8.19 @@ -0,0 +1 @@ +MD5 18c8283b1eda245fda22e87f7bba448f htmldoc-1.8.19-source.tar.bz2 1740140 diff --git a/app-text/htmldoc/htmldoc-1.8.19.ebuild b/app-text/htmldoc/htmldoc-1.8.19.ebuild new file mode 100644 index 000000000000..2bae5e597e8b --- /dev/null +++ b/app-text/htmldoc/htmldoc-1.8.19.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author: Enrico Morelli <emorelli@gentoo.it> +# $Header: /var/cvsroot/gentoo-x86/app-text/htmldoc/htmldoc-1.8.19.ebuild,v 1.1 2002/06/01 08:20:58 rphillips Exp $ + +S=${WORKDIR}/${P} +DESCRIPTION="Convert HTML pages into a PDF document" +SRC_URI="ftp://ftp.funet.fi/pub/mirrors/ftp.easysw.com/pub/htmldoc/1.8.19/${P}-source.tar.bz2" +HOMEPAGE="http://www.easysw.com/htmldoc" +DEPEND="virtual/x11" +RDEPEND=">=x11-libs/fltk-1.0.11" + +src_unpack() { + + unpack ${A} ; cd ${S} + +} + + +src_compile() { + ./configure \ + --with-x \ + --with-gui || die + + make || die +} + + +src_install() { + into /usr + doman doc/*.1 + dobin htmldoc/htmldoc + insinto /usr/share/htmldoc/afm + doins afm/* + insinto /usr/share/htmldoc/data + doins data/* +} |