blob: 5d3197d75ee5bce2ed80c7ff8591ec4de1c0b2cf (
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
43
44
45
46
47
48
49
50
51
52
53
54
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI="4"
inherit eutils toolchain-funcs
DESCRIPTION="Tools to process files written in Your Own Document Language (Yodl)"
HOMEPAGE="http://yodl.sourceforge.net/"
SRC_URI="mirror://sourceforge/project/${PN}/${PN}/${PV}/${PN}_${PV}.orig.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc"
DEPEND="
dev-util/icmake
dev-texlive/texlive-latex"
RDEPEND=""
src_prepare() {
epatch "${FILESDIR}"/${P}-ldflags.patch
sed 's|^#define COPT .\+$|#define COPT "'"${CXXFLAGS}"'"|' -i build \
|| die 'sed failed (file missing)'
sed \
-e "s:GENTOOLDFLAGS:${LDFLAGS}:g" \
-e "s:/usr:${EPREFIX}/usr:g" \
-e "s:/share/doc/yodl:/share/doc/${PF}:g" \
-e "s:/share/doc/yodl-doc:/share/doc/${PN}:g" \
-e "/COMPILER/s:\"gcc\":\"$(tc-getCC)\":g" \
-i INSTALL.im || die
}
src_compile() {
addpredict /var/cache/fonts # TODO proper fix
./build programs || die './build programs'
./build man || die './build man'
if use doc; then
./build manual || die './build manual'
./build macros || die './build macros'
fi
}
src_install() {
./build install programs "${D}" || die './build install programs'
./build install man "${D}" || die './build install man'
if use doc; then
./build install manual "${D}" || die './build install manual'
./build install macros "${D}" || die './build install macros'
./build install docs "${D}" || die './build install docs'
fi
}
|