diff options
author | will <will@FreeBSD.org> | 2001-09-17 14:27:56 +0800 |
---|---|---|
committer | will <will@FreeBSD.org> | 2001-09-17 14:27:56 +0800 |
commit | 0430b373da10be95374a599b7e2c43825161f5a2 (patch) | |
tree | a49688a0ff09b7b010ae855500ec089aa7408ef9 /textproc/diffutils/Makefile | |
parent | 298e41cb4687b541ad68607cbc400d79eb2e2426 (diff) | |
download | freebsd-ports-gnome-0430b373da10be95374a599b7e2c43825161f5a2.tar.gz freebsd-ports-gnome-0430b373da10be95374a599b7e2c43825161f5a2.tar.zst freebsd-ports-gnome-0430b373da10be95374a599b7e2c43825161f5a2.zip |
Add diffutils 2.7, the GNU diff utilities.
PR: 30362
Submitted by: Garrett Rooney <rooneg@electricjellyfish.net>
Diffstat (limited to 'textproc/diffutils/Makefile')
-rw-r--r-- | textproc/diffutils/Makefile | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/textproc/diffutils/Makefile b/textproc/diffutils/Makefile new file mode 100644 index 000000000000..feb830ec0999 --- /dev/null +++ b/textproc/diffutils/Makefile @@ -0,0 +1,37 @@ +# New ports collection makefile for: diffutils +# Date created: 5 September 2001 +# Whom: Garrett Rooney <rooneg@electricjellyfish.net> +# +# $FreeBSD$ +# + +PORTNAME= diffutils +PORTVERSION= 2.7 +CATEGORIES= textproc +MASTER_SITES= ${MASTER_SITE_GNU} +MASTER_SITE_SUBDIR= diffutils + +MAINTAINER= rooneg@electricjellyfish.net + +GNU_CONFIGURE= yes +CONFIGURE_ARGS= --program-prefix=g + +INSTALL_INFO?= install-info + +post-extract: remove-info-files + +remove-info-files: + @${RM} -f ${WRKSRC}/${PORTNAME:S/utils//}.info* + +post-patch: patch-makeinfo + +patch-makeinfo: + @${PERL} -pi.fbsd -e 's|makeinfo|makeinfo --no-split|g' \ + ${WRKSRC}/Makefile.in + +post-install: install-info + +install-info: + @${INSTALL_INFO} ${PREFIX}/info/${PORTNAME:S/utils//}.info ${PREFIX}/info/dir + +.include <bsd.port.mk> |