diff options
author | eik <eik@FreeBSD.org> | 2004-07-03 04:01:15 +0800 |
---|---|---|
committer | eik <eik@FreeBSD.org> | 2004-07-03 04:01:15 +0800 |
commit | 9ba8479162db8f7055e22488db1cfd583696d6c2 (patch) | |
tree | 3285d8a8d03e6ea426ddd7ae34686f9d3d4975e9 /security/digest | |
parent | 74ca93b7cc11060d3d6af875bd16b6a47991d14d (diff) | |
download | freebsd-ports-gnome-9ba8479162db8f7055e22488db1cfd583696d6c2.tar.gz freebsd-ports-gnome-9ba8479162db8f7055e22488db1cfd583696d6c2.tar.zst freebsd-ports-gnome-9ba8479162db8f7055e22488db1cfd583696d6c2.zip |
Adjusted makefile for rdigest slave port.
Forgotten by: me
Noticed by: kris
Diffstat (limited to 'security/digest')
-rw-r--r-- | security/digest/Makefile | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/security/digest/Makefile b/security/digest/Makefile index 6a4ebaab3069..2f8db42f2b3f 100644 --- a/security/digest/Makefile +++ b/security/digest/Makefile @@ -6,38 +6,38 @@ # $FreeBSD$ # -PORTNAME= digest -PORTVERSION= ${VERSION} -CATEGORIES= security sysutils +PORTNAME?= digest +PORTVERSION?= ${VERSION} +CATEGORIES?= security sysutils MASTER_SITES= # DISTFILES= -MAINTAINER= eik@FreeBSD.org -COMMENT= Message digest wrapper utility +MAINTAINER?= eik@FreeBSD.org +COMMENT?= Message digest wrapper utility -CONFLICTS= nss-[0-9]* emboss-[0-9]* +CONFLICTS?= nss-[0-9]* emboss-[0-9]* GNU_CONFIGURE= yes NO_WRKSUBDIR= yes -MAN1= digest.1 +MAN1?= ${PORTNAME}.1 -PLIST_FILES= bin/digest +PLIST_FILES?= bin/${PORTNAME} CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL} .include <bsd.port.pre.mk> VERSION!= ${AWK} -F "'" '/^PACKAGE_VERSION=/ {print $$2}' \ - ${FILESDIR}/configure + ${FILESDIR}/configure post-extract: @${CP} -Rp ${FILESDIR}/* ${WRKSRC} - @${CHMOD} +x ${WRKSRC}/configure + @${CHMOD} +x ${CONFIGURE_WRKSRC}/${CONFIGURE_SCRIPT} test: build - @${ECHO} "No news is good news" - @cd ${WRKSRC} && ${SETENV} DIGESTDIR=${WRKSRC} ${SH} ./regress.sh - @${ECHO} "All tests completed" + @${ECHO_MSG} "No news is good news" + @cd ${WRKSRC} && ${SETENV} DIGESTDIR=${WRKSRC} DIGESTCMD=${PORTNAME} ${SH} ./regress.sh + @${ECHO_MSG} "All tests completed" .include <bsd.port.post.mk> |