diff options
author | Stuart Bouyer <stubear@gentoo.org> | 2002-07-31 17:43:52 +0000 |
---|---|---|
committer | Stuart Bouyer <stubear@gentoo.org> | 2002-07-31 17:43:52 +0000 |
commit | ccbc5427df05d3a9cf70283f92fb0ec2b75a8528 (patch) | |
tree | 9afd232f42ae2449d87138a89aa2d835e198fdbe /app-i18n/xcin/xcin-2.5.2.3.ebuild | |
parent | Added SLOT, LICENSE, KEYWORDS (diff) | |
download | gentoo-2-ccbc5427df05d3a9cf70283f92fb0ec2b75a8528.tar.gz gentoo-2-ccbc5427df05d3a9cf70283f92fb0ec2b75a8528.tar.bz2 gentoo-2-ccbc5427df05d3a9cf70283f92fb0ec2b75a8528.zip |
initial ebuild of xcin
Diffstat (limited to 'app-i18n/xcin/xcin-2.5.2.3.ebuild')
-rw-r--r-- | app-i18n/xcin/xcin-2.5.2.3.ebuild | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/app-i18n/xcin/xcin-2.5.2.3.ebuild b/app-i18n/xcin/xcin-2.5.2.3.ebuild new file mode 100644 index 000000000000..52fd011f735f --- /dev/null +++ b/app-i18n/xcin/xcin-2.5.2.3.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-i18n/xcin/xcin-2.5.2.3.ebuild,v 1.1 2002/07/31 17:43:52 stubear Exp $ + +DESCRIPTION="Chinese X Input Method" +HOMEPAGE="http://xcin.linux.org.tw/" +SRC_URI="ftp://xcin.linux.org.tw/pub/xcin/xcin/${P}.tar.gz" +LICENSE="XCIN" +SLOT="0" +KEYWORDS="x86" +DEPEND="nls? ( sys-devel/gettext )" +RDEPEND="${DEPEND}" + +S=${WORKDIR}/${PN} + +src_unpack () { + unpack ${A} + cd ${S}/po + patch -p0 < ${FILESDIR}/xcin-gentoo.patch || die +} + +src_compile() { + ./configure \ + --host=${CHOST} \ + --prefix=/usr \ + --infodir=/usr/share/info \ + --disable-bimsphone \ + --with-xcin-rcdir=/etc \ + --mandir=/usr/share/man || die "./configure failed" + make || die +} + +src_install () { + make \ + prefix=${D}/usr \ + xcin_rcp=${D}/etc \ + mandir=${D}/usr/share/man \ + infodir=${D}/usr/share/info \ + install || die + # Again, verify the Makefiles! We don't want anything falling + # outside of ${D}. +} |