diff options
author | Mamoru Komachi <usata@gentoo.org> | 2003-12-23 11:23:35 +0000 |
---|---|---|
committer | Mamoru Komachi <usata@gentoo.org> | 2003-12-23 11:23:35 +0000 |
commit | 5444736fce417743a9ecab425377cdede056783a (patch) | |
tree | 0325a6492fa65808b82abedcbebd440043a170af /app-i18n/kon2/kon2-0.3.9b-r1.ebuild | |
parent | Sanitize PV (diff) | |
download | historical-5444736fce417743a9ecab425377cdede056783a.tar.gz historical-5444736fce417743a9ecab425377cdede056783a.tar.bz2 historical-5444736fce417743a9ecab425377cdede056783a.zip |
Fixed man path (/usr/share/man1 to /usr/share/man/ja/man1), corrected DEPEND and unpacked ${FILESDIR}/${P}-gentoo.patch.gz
Diffstat (limited to 'app-i18n/kon2/kon2-0.3.9b-r1.ebuild')
-rw-r--r-- | app-i18n/kon2/kon2-0.3.9b-r1.ebuild | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/app-i18n/kon2/kon2-0.3.9b-r1.ebuild b/app-i18n/kon2/kon2-0.3.9b-r1.ebuild index 0d199d313f55..49d5a5c62152 100644 --- a/app-i18n/kon2/kon2-0.3.9b-r1.ebuild +++ b/app-i18n/kon2/kon2-0.3.9b-r1.ebuild @@ -1,44 +1,44 @@ # Copyright 1999-2003 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-r1.ebuild,v 1.2 2003/06/14 14:54:48 aliz Exp $ - -inherit eutils +# $Header: /var/cvsroot/gentoo-x86/app-i18n/kon2/kon2-0.3.9b-r1.ebuild,v 1.3 2003/12/23 11:23:26 usata Exp $ DESCRIPTION="KON Kanji ON Linux console" SRC_URI="ftp://ftp.linet.gr.jp/pub/KON/${P}.tar.gz" HOMEPAGE="" + LICENSE="as-is" -SLOT=0 +SLOT="0" KEYWORDS="x86" DEPEND="virtual/glibc" -RDEPEND=">=konfont-0.1" +RDEPEND="${DEPEND} + >=app-i18n/konfont-0.1" S=${WORKDIR}/${P} - src_unpack(){ unpack ${A} cd ${S} - epatch ${FILESDIR}/${P}-gentoo.patch.gz + epatch ${FILESDIR}/${P}-gentoo.patch epatch ${FILESDIR}/${P}-exec.patch epatch ${FILESDIR}/${P}-bufover-fix.patch epatch ${FILESDIR}/${P}-racecondition-fix3.patch } src_compile(){ - make config || die; - make depend || die; - make || die; + 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; + make LIBDIR=${D}/etc \ + MANDIR=${D}/usr/share/man/ja/man1 \ + BINDIR=${D}/usr/bin install || die - if [ ! -e /usr/share/terminfo/k/kon ]; + if [ ! -e /usr/share/terminfo/k/kon ] then dodir /usr/share/terminfo - cd ${S} tic terminfo.kon -o${D}/usr/share/terminfo fi } |