diff options
author | Mamoru Komachi <usata@gentoo.org> | 2004-05-01 10:58:36 +0000 |
---|---|---|
committer | Mamoru Komachi <usata@gentoo.org> | 2004-05-01 10:58:36 +0000 |
commit | cacfef4593e42d1095855c4c3da90514f80dbc0d (patch) | |
tree | b81807c7ea5a842b32f1bb8d8f2ebfd8bcc828ec /app-i18n/canfep/canfep-1.0.ebuild | |
parent | fung-calc requires kde. (Manifest recommit) (diff) | |
download | gentoo-2-cacfef4593e42d1095855c4c3da90514f80dbc0d.tar.gz gentoo-2-cacfef4593e42d1095855c4c3da90514f80dbc0d.tar.bz2 gentoo-2-cacfef4593e42d1095855c4c3da90514f80dbc0d.zip |
Initial import.
Diffstat (limited to 'app-i18n/canfep/canfep-1.0.ebuild')
-rw-r--r-- | app-i18n/canfep/canfep-1.0.ebuild | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/app-i18n/canfep/canfep-1.0.ebuild b/app-i18n/canfep/canfep-1.0.ebuild new file mode 100644 index 000000000000..17b62e33a5b8 --- /dev/null +++ b/app-i18n/canfep/canfep-1.0.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-i18n/canfep/canfep-1.0.ebuild,v 1.1 2004/05/01 10:58:36 usata Exp $ + +inherit eutils + +IUSE="unicode" + +DESCRIPTION="Canna Japanese kana-kanji frontend processor on console" +HOMEPAGE="http://www.geocities.co.jp/SiliconValley-Bay/7584/canfep/" +SRC_URI="http://www.geocities.co.jp/SiliconValley-Bay/7584/canfep/${P}.tar.gz + unicode? ( http://hp.vector.co.jp/authors/VA020411/patches/canfep_utf8.diff )" + +LICENSE="as-is" +SLOT="0" +KEYWORDS="~x86 -alpha ~sparc ~ppc" + +DEPEND="app-i18n/canna + sys-libs/ncurses" +RDEPEND="app-i18n/canna" + +src_unpack() { + + unpack ${P}.tar.gz + cd ${S} + epatch ${DISTDIR}/canfep_utf8.diff +} + +src_compile() { + + make CXX="${CXX}" LIBS="-lcanna -lncurses" CFLAGS="${CFLAGS}" \ + || die "make failed" +} + +src_install() { + + dobin canfep + + dodoc 00changes 00readme +} |