blob: 1ddf3e80252370384f7ddb0fa06f98683d5abef0 (
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
47
|
# Copyright 1999-2004 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.8 2004/11/13 13:35:14 usata Exp $
inherit gcc 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
}
src_compile() {
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
}
|