blob: f463dedcbc646706b5ad381d2f924f9cbee7a2ec (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header:
inherit eutils
DESCRIPTION="LibRCC is Russian Encoding Conversion Library"
SRC_URI="http://dside.dyndns.org/files/rusxmms/librcc-${PV}.tar.bz2"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 amd64"
DEPEND="app-i18n/librcd
dev-libs/libxml2
sys-libs/db
app-i18n/enca
app-text/aspell
app-dicts/libtranslate"
src_unpack() {
unpack ${P}.tar.bz2
# cd "${S}"
# epatch "${FILESDIR}"/rcc-debug.patch || die
}
src_compile() {
./autogen.sh || die
econf || die
make || die
make -C examples || die
}
src_install() {
into /usr
mkdir -p ${D}/usr/lib
mkdir -p ${D}/usr/include
mkdir -p ${D}/usr/lib/rcc/engines
mkdir -p ${D}/etc
make install DESTDIR=${D} INSTALLTOP=${D}/usr || die
rm -f ${D}/usr/lib/rcc/engines/*.a
rm -f ${D}/usr/lib/rcc/engines/*.la
install -m 644 examples/rcc.xml ${D}/etc
make -C examples install DESTDIR=${D} INSTALLTOP=${D}/usr || die
rm -f ${D}/usr/bin/example*
}
|