blob: 2ee76fc16b2cdb2b840681f7f64187aeb2961af9 (
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
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/yodl/yodl-3.02.1.ebuild,v 1.1 2013/09/07 20:40:26 radhermit Exp $
EAPI=5
inherit toolchain-funcs
DESCRIPTION="Your Own Document Language: a pre-document language and tools to process it"
HOMEPAGE="http://yodl.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P/-/_}.orig.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc"
DEPEND="dev-util/icmake"
src_prepare() {
sed -e "/DOC.* =/s/yodl\(-doc\)\?/${PF}/" \
-e "/COMPILER =/s/gcc/$(tc-getCC)/" \
-i INSTALL.im || die
sed -e "s/ar ru/$(tc-getAR) ru/" \
-e "s/ranlib/$(tc-getRANLIB)/" \
-i icmake/stdcompile || die
}
src_compile() {
./build programs || die
./build man || die
use doc && { ./build manual || die ; }
./build macros || die
}
src_install() {
./build install programs "${ED}" || die
./build install man "${ED}" || die
./build install macros "${ED}" || die
./build install docs "${ED}" || die
use doc && { ./build install manual "${ED}" || die ; }
}
|