blob: a4b32f4755f97432c736e6f9fc6e1ff9d596e26b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# Copyright 1999-2004 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.19.ebuild,v 1.10 2004/03/12 08:24:24 mr_bones_ Exp $
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"
KEYWORDS="x86 sparc"
SLOT="0"
LICENSE="GPL-2"
DEPEND="virtual/x11"
RDEPEND=">=x11-libs/fltk-1.0.11"
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/*
}
|