diff options
author | Mamoru Komachi <usata@gentoo.org> | 2004-05-18 22:44:03 +0000 |
---|---|---|
committer | Mamoru Komachi <usata@gentoo.org> | 2004-05-18 22:44:03 +0000 |
commit | 7db040dbaa62953b407d74cd1c7e8949fd349f7e (patch) | |
tree | 1a7c4923282e4068e97d60c0298192722088d338 /app-i18n/canuum/canuum-3.7_p2.ebuild | |
parent | Initial import. Required by app-i18n/canuum (Manifest recommit) (diff) | |
download | gentoo-2-7db040dbaa62953b407d74cd1c7e8949fd349f7e.tar.gz gentoo-2-7db040dbaa62953b407d74cd1c7e8949fd349f7e.tar.bz2 gentoo-2-7db040dbaa62953b407d74cd1c7e8949fd349f7e.zip |
Initial import.
Diffstat (limited to 'app-i18n/canuum/canuum-3.7_p2.ebuild')
-rw-r--r-- | app-i18n/canuum/canuum-3.7_p2.ebuild | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/app-i18n/canuum/canuum-3.7_p2.ebuild b/app-i18n/canuum/canuum-3.7_p2.ebuild new file mode 100644 index 000000000000..ee0375e7edbf --- /dev/null +++ b/app-i18n/canuum/canuum-3.7_p2.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-i18n/canuum/canuum-3.7_p2.ebuild,v 1.1 2004/05/18 22:44:03 usata Exp $ + +IUSE="" + +MY_P="Canna${PV//[._]/}" +S="${WORKDIR}/${MY_P}/${PN}" + +DESCRIPTION="Canna input method engine client for console" +HOMEPAGE="http://canna.sourceforge.jp/" +SRC_URI="mirror://sourceforge.jp/canna/9558/${MY_P}.tar.bz2" + +KEYWORDS="~x86" +LICENSE="GPL-2" +SLOT="0" + +DEPEND="virtual/glibc + app-i18n/canna + dev-libs/libspt" + +src_compile() { + xmkmf -a || die "xmkmf canuum failed" + sed -i -e 's|$(CANNASRC)|/usr/lib|g' \ + -e 's|\(cannaPrefix = \).*|\1/usr|g' \ + -e '/^cannaManDir/s|man|share/man|' \ + Makefile || die "sed failed" + emake || die "emake failed" +} + +src_install () { + make DESTDIR=${D} install || die "install failed" + make DESTDIR=${D} install.man || die "install man failed" + + dodoc COPYRIGHT README* +} |