blob: d93fa9051af2b5c539a97733eeb775c9ac7769d6 (
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
34
35
36
37
38
39
40
41
42
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
inherit toolchain-funcs
DESCRIPTION="rtf/html/text conversion utility"
HOMEPAGE="http://docfrac.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.src.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND=""
RDEPEND=""
src_unpack() {
unpack ${A}
cd "${S}"
sed -i \
-e "/CPPFLAGS=/s:-.*::" \
-e "s:ar -:$(tc-getAR) -:" \
-e "s:g++ -:$(tc-getCXX) -:g" Makefile \
|| die "sed failed in Makefile"
}
src_compile() {
make docfrac || die "emake failed"
}
src_test() {
make testhtml testtxt test || die "some tests failed"
}
src_install() {
# manual install because Makefile doesn't respect DESTDIR
dobin docfrac
doman doc/docfrac.1
}
|