diff options
author | max <max@FreeBSD.org> | 2000-02-23 05:05:51 +0000 |
---|---|---|
committer | max <max@FreeBSD.org> | 2000-02-23 05:05:51 +0000 |
commit | 3ba4acdaed5b92e5e22e1099841d617b5a6468b9 (patch) | |
tree | 657b3ef5bcf9bcf98a067746953eff4f8499ffcf | |
parent | 6737aeb38ef480cd8cca1dbf8efa65bb2cf549d4 (diff) | |
download | FreeBSD-ports-3ba4acdaed5b92e5e22e1099841d617b5a6468b9.zip FreeBSD-ports-3ba4acdaed5b92e5e22e1099841d617b5a6468b9.tar.gz |
Upgrade to 1.72.
Reminded by: KATO Tsuguru <tkato@prontomail.ne.jp>
in
PR: 16110
-rw-r--r-- | japanese/nkf/Makefile | 21 | ||||
-rw-r--r-- | japanese/nkf/distinfo | 2 | ||||
-rw-r--r-- | japanese/nkf/files/patch-aa | 21 |
3 files changed, 35 insertions, 9 deletions
diff --git a/japanese/nkf/Makefile b/japanese/nkf/Makefile index 431e88e..272c7cc 100644 --- a/japanese/nkf/Makefile +++ b/japanese/nkf/Makefile @@ -1,22 +1,27 @@ # New ports collection makefile for: nkf -# Version required: 1.6 +# Version required: 1.71 # Date created: 5 February 1995 # Whom: asami # # $FreeBSD$ # -DISTNAME= nkf-1.62 -PKGNAME= ja-nkf-1.62 +DISTNAME= nkf171 +PKGNAME= ja-nkf-1.71 CATEGORIES= japanese -MASTER_SITES= http://www.sfc.wide.ad.jp/~max/FreeBSD/ports/distfiles/ +MASTER_SITES= ftp://ftp.ie.u-ryukyu.ac.jp/pub/software/kono/ \ + ftp://ftp.win.ne.jp/pub/misc/ \ + ftp://ftp.eos.hokudai.ac.jp/pub/tools/code-conv/nkf/ +EXTRACT_SUFX= .shar MAINTAINER= max@FreeBSD.org -MAN1= nkf.1 +EXTRACT_CMD= ${SH} +EXTRACT_BEFORE_ARGS= # Empty +EXTRACT_AFTER_ARGS= > /dev/null -post-extract: - @${ECHO} "===> Installing custom Makefile for ${DISTNAME}" - @(${CP} ${FILESDIR}/Makefile ${WRKSRC}) +NO_WRKSUBDIR= yes +MAN1= nkf.1 ../ja/man1/nkf.1 +ALL_TARGET= nkf .include <bsd.port.mk> diff --git a/japanese/nkf/distinfo b/japanese/nkf/distinfo index c9c1efa..54fcc6d 100644 --- a/japanese/nkf/distinfo +++ b/japanese/nkf/distinfo @@ -1 +1 @@ -MD5 (nkf-1.62.tar.gz) = dc718ce2be8da8f592b68fc024ab3ec1 +MD5 (nkf171.shar) = 15c8a80760f5da0416c89cce1690c870 diff --git a/japanese/nkf/files/patch-aa b/japanese/nkf/files/patch-aa new file mode 100644 index 0000000..26bf135 --- /dev/null +++ b/japanese/nkf/files/patch-aa @@ -0,0 +1,21 @@ +--- Makefile.orig Mon Nov 16 19:21:40 1998 ++++ Makefile Wed Feb 23 13:37:09 2000 +@@ -1,11 +1,17 @@ ++PREFIX?= /usr/local + CC = cc +-CFLAGS = -O ++CFLAGS?= -O + SHAR = shar -T + # SHAR = shar + PERL = perl5 + + nkf : nkf.c + $(CC) $(CFLAGS) -o nkf nkf.c ++ ++install: ++ /usr/bin/install -o root -g wheel -m 755 -c -s nkf ${PREFIX}/bin ++ /usr/bin/install -o root -g wheel -m 644 -c nkf.1 ${PREFIX}/man/man1/nkf.1 ++ /usr/bin/install -o root -g wheel -m 644 -c nkf.1j ${PREFIX}/man/ja/man1/nkf.1 + + clean: + rm -fr nkf.o nkf nkf.in nkf.out nkf17 *~ |