# Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: EAPI=7 inherit eutils multilib-minimal DESCRIPTION="LibRCC is Russian Encoding Conversion Library" SRC_URI="http://darksoft.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_prepare() { # epatch "${FILESDIR}"/rcc-debug.patch || die # We are doing this because of ugly automake-wrapper which forces usage of # automake version refered in Makefile.in's. And librcc-0.2.8 is prepared with # 1.9 while 1.10 is standard now. # cd ${P} rm -f `find . -name Makefile.in` rm -f configure rm -f aclocal.m4 multilib_copy_sources } multilib_src_compile() { ./autogen.sh || die econf || die make || die make -C examples || die } multilib_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* }