diff options
author | Masatomo Nakano <nakano@gentoo.org> | 2004-03-05 17:30:55 +0000 |
---|---|---|
committer | Masatomo Nakano <nakano@gentoo.org> | 2004-03-05 17:30:55 +0000 |
commit | 7ee0494f08e158cea2c8255dbf7774cdc7219a5e (patch) | |
tree | 59113a500592d86817cd9597649f2208d70ed744 /app-i18n | |
parent | Marked as stable. (Manifest recommit) (diff) | |
download | gentoo-2-7ee0494f08e158cea2c8255dbf7774cdc7219a5e.tar.gz gentoo-2-7ee0494f08e158cea2c8255dbf7774cdc7219a5e.tar.bz2 gentoo-2-7ee0494f08e158cea2c8255dbf7774cdc7219a5e.zip |
Marked as stable.
Diffstat (limited to 'app-i18n')
-rw-r--r-- | app-i18n/nkf/ChangeLog | 8 | ||||
-rw-r--r-- | app-i18n/nkf/files/digest-nkf-2.0.3 | 1 | ||||
-rw-r--r-- | app-i18n/nkf/files/nkf-1.92-msg00025.patch | 38 | ||||
-rw-r--r-- | app-i18n/nkf/nkf-2.0.3.ebuild | 43 | ||||
-rw-r--r-- | app-i18n/nkf/nkf-2.0.4.ebuild | 4 |
5 files changed, 8 insertions, 86 deletions
diff --git a/app-i18n/nkf/ChangeLog b/app-i18n/nkf/ChangeLog index f4dcbb59603d..49b5aefccec5 100644 --- a/app-i18n/nkf/ChangeLog +++ b/app-i18n/nkf/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-i18n/nkf -# Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-i18n/nkf/ChangeLog,v 1.13 2004/01/05 15:52:54 matsuu Exp $ +# Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-i18n/nkf/ChangeLog,v 1.14 2004/03/05 17:28:57 nakano Exp $ + + 05 Mar 2004; Masatomo Nakano <nakano@gentoo.org> nkf-2.0.3.ebuild, + nkf-2.0.4.ebuild, files/nkf-1.92-msg00025.patch: + Marked as stable. *nkf-2.0.4 (04 Jan 2004) diff --git a/app-i18n/nkf/files/digest-nkf-2.0.3 b/app-i18n/nkf/files/digest-nkf-2.0.3 deleted file mode 100644 index 29690e9a0ebd..000000000000 --- a/app-i18n/nkf/files/digest-nkf-2.0.3 +++ /dev/null @@ -1 +0,0 @@ -MD5 b940ea1d67cb506a57fca9dbe83760c3 nkf203.tar 491520 diff --git a/app-i18n/nkf/files/nkf-1.92-msg00025.patch b/app-i18n/nkf/files/nkf-1.92-msg00025.patch deleted file mode 100644 index b0e2d5c558de..000000000000 --- a/app-i18n/nkf/files/nkf-1.92-msg00025.patch +++ /dev/null @@ -1,38 +0,0 @@ -You can get a original copy of this patch from: -http://search.namazu.org/ml/namazu-users-ja/msg00025.html - -*** nkf-1.92.orig/nkf.c Sat Mar 4 13:56:23 2000 ---- nkf-1.92.ss2/nkf.c Sat Mar 4 14:07:31 2000 -*************** -*** 1067,1072 **** ---- 1067,1081 ---- - SEND; - } - } -+ } -+ else if ( c1 == 'N' || c1 == 'n' ){ -+ /* SS2 */ -+ c1 = (*i_getc)(f); /* skip SS2 */ -+ if ( SPACE<=c1 && c1 < 0xe0 ) { -+ c2 = X0201; -+ SEND; -+ } -+ - } else { - /* lonely ESC */ - (*oconv)(0, ESC); - -*** nkf-1.92.orig/nkf.c Sat Mar 4 13:56:23 2000 ---- nkf-1.92.zenspc/nkf.c Sat Mar 4 14:08:43 2000 -*************** -*** 1669,1674 **** ---- 1669,1675 ---- - /* JISX0208 Kigou */ - if (0x21==c1) { - if (alpha_f&0x2) { -+ c2 = 0; - c1 = ' '; - } else if (alpha_f&0x4) { - (*o_zconv)(0,' '); - - diff --git a/app-i18n/nkf/nkf-2.0.3.ebuild b/app-i18n/nkf/nkf-2.0.3.ebuild deleted file mode 100644 index fb9b7798afc9..000000000000 --- a/app-i18n/nkf/nkf-2.0.3.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 1999-2004 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-i18n/nkf/nkf-2.0.3.ebuild,v 1.2 2004/01/04 16:56:11 nakano Exp $ - -use perl && inherit perl-module - -MY_P="${PN}${PV//./}" -DESCRIPTION="Network Kanji code conversion Filter with UTF-8/16 support" -SRC_URI="http://www.ie.u-ryukyu.ac.jp/~kono/nkf/dist/${MY_P}.tar" -HOMEPAGE="http://sourceforge.jp/projects/nkf/" -DEPEND="virtual/glibc - $DEPEND" -KEYWORDS="~x86 ~ppc ~sparc ~alpha" -IUSE="perl cjk" -LICENSE="public-domain" -SLOT="0" -S=${WORKDIR}/${MY_P} - -src_compile() { - emake CC=gcc CFLAGS="${CFLAGS}" nkf || die - if [ `use perl` ]; then - cd ${S}/NKF.mod - perl-module_src_compile - perl-module_src_test - fi -} - -src_install () { - into /usr - dobin nkf - doman nkf.1 - if [ `use cjk` ]; then - dodir /usr/share/man/ja/man1 - insinto /usr/share/man/ja/man1 - ./nkf -e nkf.1j > nkf.1 - doins nkf.1 - fi - dodoc INSTALL* nkf.doc - if [ `use perl` ]; then - cd ${S}/NKF.mod - perl-module_src_install - fi -} diff --git a/app-i18n/nkf/nkf-2.0.4.ebuild b/app-i18n/nkf/nkf-2.0.4.ebuild index d7712ee1672b..a45bbeea420c 100644 --- a/app-i18n/nkf/nkf-2.0.4.ebuild +++ b/app-i18n/nkf/nkf-2.0.4.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-i18n/nkf/nkf-2.0.4.ebuild,v 1.2 2004/01/05 15:52:54 matsuu Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-i18n/nkf/nkf-2.0.4.ebuild,v 1.3 2004/03/05 17:28:58 nakano Exp $ use perl && inherit perl-module @@ -10,7 +10,7 @@ SRC_URI="http://www01.tcp-ip.or.jp/~furukawa/nkf_utf8/${MY_P}.tar.gz" HOMEPAGE="http://sourceforge.jp/projects/nkf/" DEPEND="virtual/glibc $DEPEND" -KEYWORDS="~x86 ~ppc ~sparc ~alpha ~amd64" +KEYWORDS="x86 ppc sparc alpha amd64" IUSE="perl cjk" LICENSE="as-is" SLOT="0" |