# Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/app-i18n/jmcce/jmcce-1.4_rc2.ebuild,v 1.11 2005/05/18 05:03:27 mr_bones_ Exp $ inherit toolchain-funcs eutils MY_P=${P/_rc/RC} S=${WORKDIR}/${MY_P} DESCRIPTION="A Chinese Console supporting BIG5, GB and Japanese input." HOMEPAGE="http://jmcce.slat.org" SRC_URI="http://zope.slat.org/Project/Jmcce/DOWNLOAD/${MY_P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="x86" IUSE="" RDEPEND=">=media-libs/svgalib-1.4.3 >=sys-libs/ncurses-4.2" DEPEND="${RDEPEND} sys-devel/automake sys-devel/autoconf" src_unpack() { unpack ${A} cd ${S} if [ `gcc-version` = "3.3" ] ; then epatch ${FILESDIR}/${P}-gcc3-gentoo.diff fi epatch ${FILESDIR}/${P}-gcc3.4.patch epatch ${FILESDIR}/${P}-kernel.patch } src_compile() { export WANT_AUTOMAKE=1.4 export WANT_AUTOCONF=2.5 sed -i "s:automake:automake-1.4:g" genconf.sh || die "sed" ./genconf.sh || die "genconf.sh failed" econf --sysconfdir=/etc/jmcce || die "econf failed" emake -j1 || die "make failed" } src_install() { dodir /etc/jmcce make DESTDIR=${D} install || die "install failed" mv ${D}/usr/share/doc/{${MY_P},${PF}} doman doc/jmcce.1 }