diff options
author | Stuart Bouyer <stubear@gentoo.org> | 2002-08-12 15:08:17 +0000 |
---|---|---|
committer | Stuart Bouyer <stubear@gentoo.org> | 2002-08-12 15:08:17 +0000 |
commit | 9f62dd5f382d7ea33ed553c412f6f233647f10b1 (patch) | |
tree | 5614b8894060c5649652923e04cd06fe31d4a95e /app-i18n/kon2 | |
parent | added kon2 and konfont for testing (diff) | |
download | historical-9f62dd5f382d7ea33ed553c412f6f233647f10b1.tar.gz historical-9f62dd5f382d7ea33ed553c412f6f233647f10b1.tar.bz2 historical-9f62dd5f382d7ea33ed553c412f6f233647f10b1.zip |
initial ebuild
Diffstat (limited to 'app-i18n/kon2')
-rw-r--r-- | app-i18n/kon2/ChangeLog | 11 | ||||
-rw-r--r-- | app-i18n/kon2/files/digest-kon2-0.3.9b | 1 | ||||
-rw-r--r-- | app-i18n/kon2/files/kon2-0.3.9b-gentoo.patch.gz | bin | 0 -> 316 bytes | |||
-rw-r--r-- | app-i18n/kon2/kon2-0.3.9b.ebuild | 40 |
4 files changed, 52 insertions, 0 deletions
diff --git a/app-i18n/kon2/ChangeLog b/app-i18n/kon2/ChangeLog new file mode 100644 index 000000000000..13d99042cb01 --- /dev/null +++ b/app-i18n/kon2/ChangeLog @@ -0,0 +1,11 @@ +# ChangeLog for app-i18n/kon2 +# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-i18n/kon2/ChangeLog,v 1.1 2002/08/12 15:07:52 stubear Exp $ + +*kon2-0.3.9b (12 Aug 2002) + + 12 Aug 2002; Stuart Bouyer <stubear@gentoo.org> kon2-0.3.9b.ebuild, + ChangeLog, digest-kon2-0.3.9b, kon2-0.3.9b-gentoo.patch.gz : + + Initial ebuild added to portage tree. Ebuild and patch submitted by + Atzm Watanabe <sitosito@p.chan.ne.jp>. diff --git a/app-i18n/kon2/files/digest-kon2-0.3.9b b/app-i18n/kon2/files/digest-kon2-0.3.9b new file mode 100644 index 000000000000..28a53cb89d1b --- /dev/null +++ b/app-i18n/kon2/files/digest-kon2-0.3.9b @@ -0,0 +1 @@ +MD5 f9f4da5d95f0010972a85d73a3b3addb kon2-0.3.9b.tar.gz 86458 diff --git a/app-i18n/kon2/files/kon2-0.3.9b-gentoo.patch.gz b/app-i18n/kon2/files/kon2-0.3.9b-gentoo.patch.gz Binary files differnew file mode 100644 index 000000000000..bdd8d71bb814 --- /dev/null +++ b/app-i18n/kon2/files/kon2-0.3.9b-gentoo.patch.gz diff --git a/app-i18n/kon2/kon2-0.3.9b.ebuild b/app-i18n/kon2/kon2-0.3.9b.ebuild new file mode 100644 index 000000000000..f5a63fdc2b31 --- /dev/null +++ b/app-i18n/kon2/kon2-0.3.9b.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-i18n/kon2/kon2-0.3.9b.ebuild,v 1.1 2002/08/12 15:07:52 stubear Exp $ + +DESCRIPTION="KON Kanji ON Linux console" +SRC_URI="http://www.rarf.riken.go.jp/archives/Linux/kondara/Kondara-2.0/errata/SOURCES/kon2-0.3.9b.tar.gz" +HOMEPAGE="" +LICENSE="as-is" +SLOT=0 +KEYWORDS="x86" + +DEPEND="virtual/glibc" +RDEPEND=">=konfont-0.1" + +S=${WORKDIR}/${P} + + +src_unpack(){ + unpack ${P}.tar.gz + cd ${S} + zcat ${FILESDIR}/kon2-0.3.9b-gentoo.patch.gz | patch -p1 +} + +src_compile(){ + make config || die; + make depend || die; + make || die; +} + +src_install(){ + make LIBDIR=${D}/etc MANDIR=${D}/usr/man/man1 BINDIR=${D}/usr/bin install || die; + + if [ ! -e /usr/share/terminfo/k/kon ]; + then + dodir /usr/share/terminfo + cd ${S} + tic terminfo.kon -o${D}/usr/share/terminfo + fi +} + |