blob: 6ac7d764f452bd31e0bd248ba96855c391d9a622 (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
inherit autotools eutils
DESCRIPTION="An HTML preprocessor using ML syntax"
HOMEPAGE="http://www.linguistik.uni-erlangen.de/~msbethke/software.html"
SRC_URI="http://www.linguistik.uni-erlangen.de/~msbethke/binaries/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~ppc x86"
IUSE=""
S=${WORKDIR}/${PN}-${PV/b/}
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}/${P}-cflags.patch"
epatch "${FILESDIR}/${P}-nostrip.patch"
epatch "${FILESDIR}/${P}-parmake.patch"
epatch "${FILESDIR}"/${P}-glibc-2.10.patch
eautoreconf
}
src_install() {
dodir /usr/share/hsc
emake BINDIR="${D}/usr/bin" DATADIR="${D}/usr/share/hsc" \
prefix="${D}/usr" docdir="${D}/usr/share/doc/${PF}" \
datadir="${D}/usr/share/hsc" install || die "make install failed"
}
|