blob: 8e9526a005351141452a73831afe72bd30893859 (
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
30
31
32
33
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/halibut/halibut-0.9.ebuild,v 1.3 2005/01/01 13:12:59 eradicator Exp $
inherit flag-o-matic
DESCRIPTION="Halibut: yet another free document preparation system"
HOMEPAGE="http://www.chiark.greenend.org.uk/~sgtatham/halibut/"
SRC_URI="http://www.chiark.greenend.org.uk/~sgtatham/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~x86 ~ppc"
IUSE=""
DEPEND=""
src_compile() {
replace-flags -O[3-9] -O2
emake \
BUILDDIR="${S}/build" \
VERSION="${PV}" \
|| die "make failed"
emake -C doc || die "make in doc failed"
}
src_install() {
dobin build/halibut
doman doc/halibut.1
dodoc doc/halibut.txt
dohtml doc/*.html
}
|