summaryrefslogtreecommitdiffstats
path: root/app-i18n/librcc/librcc-0.2.6.ebuild
blob: bc6f0e0896f10c5a97d6812ac3fc2a48e564f3be (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
# 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
	app-i18n/libguess 
	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*
}