diff options
author | MIHIRA Sanpei Yoshiro <sanpei@FreeBSD.org> | 2000-07-22 13:51:22 +0000 |
---|---|---|
committer | MIHIRA Sanpei Yoshiro <sanpei@FreeBSD.org> | 2000-07-22 13:51:22 +0000 |
commit | ac5187ba6efd90d77f7ef1f0f00d89092589f08d (patch) | |
tree | 76dd87f60054c9b478ffc2334f53a4cdd1e16114 /textproc/cdif/Makefile | |
parent | Don't set PKGNAMEPREFX, it's done by ../Makefile.inc (diff) |
Initial import of cdif-1.15
word context diff tool.
Diffstat (limited to 'textproc/cdif/Makefile')
-rw-r--r-- | textproc/cdif/Makefile | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/textproc/cdif/Makefile b/textproc/cdif/Makefile new file mode 100644 index 000000000000..992b149fe112 --- /dev/null +++ b/textproc/cdif/Makefile @@ -0,0 +1,34 @@ +# New ports collection makefile for: cdif +# Date created: July 22, 2000 +# Whom: Yoshiro MIHIRA <sanpei@sanpei.org> +# +# $NetBSD: Makefile,v 1.2 2000/03/16 14:08:38 wiz Exp $ +# $FreeBSD$ +# + +PORTNAME= cdif +PORTVERSION= 1.15 +CATEGORIES= textproc +MASTER_SITES= ftp://ftp.iij.ad.jp/pub/IIJ/dist/utashiro/perl/ +EXTRACT_SUFX= # empty + +MAINTAINER= sanpei@FreeBSD.org + +USE_PERL5= yes + +NO_WRKSUBDIR= yes +NO_BUILD= yes + +do-extract: + ${MKDIR} ${WRKSRC} + ${CP} ${DISTDIR}/${DISTNAME} ${WRKSRC}/${DISTNAME}.dist + +# assumes perl is in ${LOCALBASE}/bin/perl +do-patch: + ${SED} -e '1s@/usr/local/bin/perl@${LOCALBASE}/bin/perl@' \ + < ${WRKSRC}/${DISTNAME}.dist > ${WRKSRC}/${DISTNAME} + +do-install: + ${INSTALL_SCRIPT} ${WRKSRC}/${DISTNAME} ${PREFIX}/bin/cdif + +.include <bsd.port.mk> |