diff options
author | asami <asami@FreeBSD.org> | 1995-02-06 05:28:26 +0000 |
---|---|---|
committer | asami <asami@FreeBSD.org> | 1995-02-06 05:28:26 +0000 |
commit | f92615a347a55f234491f9df3f7f1132aef965ab (patch) | |
tree | 9cddf384bbf8ae7cf539afa2c49084fa4ebe3420 /japanese/nkf/Makefile | |
parent | 433ed897cf3631c701fb82da9c6524a947e5475e (diff) | |
download | FreeBSD-ports-f92615a347a55f234491f9df3f7f1132aef965ab.zip FreeBSD-ports-f92615a347a55f234491f9df3f7f1132aef965ab.tar.gz |
nkf-1.4, Network Kanji code conversion Filter
Diffstat (limited to 'japanese/nkf/Makefile')
-rw-r--r-- | japanese/nkf/Makefile | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/japanese/nkf/Makefile b/japanese/nkf/Makefile new file mode 100644 index 0000000..441e62b --- /dev/null +++ b/japanese/nkf/Makefile @@ -0,0 +1,31 @@ +# New ports collection makefile for: nkf +# Version required: 1.4 + patches +# Date created: 5 February 1995 +# Whom: asami +# +# $Id: Makefile,v 1.4 1994/11/25 18:20:48 asami Exp $ +# + +DISTNAME= nkf-1.4 +MASTER_SITES= ftp://utsun.s.u-tokyo.ac.jp/fj/nkf/ +DISTFILES= nkf-1.4.tar.gz nkf-patches.tar.gz nkf-speedup-patch.gz +EXTRACT_ONLY= nkf-1.4.tar.gz +WRKSRC= ${WRKDIR}/nkf + +pre-patch: ${PATCH_COOKIE} + @echo "===> Applying unofficial patches for ${DISTNAME}" + @(mkdir ${WRKDIR}/patches) + @(tar -C ${WRKDIR}/patches -xzf ${DISTDIR}/nkf-patches.tar.gz) + @(cd ${WRKSRC}; \ + for i in 1 2 3; do \ + patch -s nkf.c < ${WRKDIR}/patches/patch$$i; \ + done; \ + for i in 4 5; do \ + patch -s < ${WRKDIR}/patches/patch$$i; \ + done; \ + zcat ${DISTDIR}/nkf-speedup-patch.gz | patch -s; \ + ) + @echo "===> Installing custom Makefile for ${DISTNAME}" + @(cp ${FILESDIR}/Makefile ${WRKSRC}) + +.include <bsd.port.mk> |