blob: 90a53ac2c79bc9467e28329f41ca1d7939196c44 (
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
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=4
inherit eutils 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=""
RDEPEND=""
src_prepare() {
sed -i \
-e "/CPPFLAGS=/s:-.*::" \
-e "s:ar -:$(tc-getAR) -:" \
-e "s:g++ -:$(tc-getCXX) -:g" \
Makefile || die "sed failed in Makefile"
epatch "${FILESDIR}"/${PV}-gcc46.patch
}
src_compile() {
emake ${PN}
}
src_install() {
# manual install because Makefile doesn't respect DESTDIR
dobin ${PN}
doman doc/${PN}.1
}
|