diff options
author | asami <asami@FreeBSD.org> | 1997-10-02 05:32:40 +0000 |
---|---|---|
committer | asami <asami@FreeBSD.org> | 1997-10-02 05:32:40 +0000 |
commit | 35bb4902f63f7a108ee0ffde36ede18219c9569e (patch) | |
tree | 3356ffdf58e088bdc24abb950f2ade1eb7038da9 /german/manpages/Makefile | |
parent | e90860580dcb937a4e5448f7bba064992c2196bb (diff) | |
download | FreeBSD-ports-35bb4902f63f7a108ee0ffde36ede18219c9569e.zip FreeBSD-ports-35bb4902f63f7a108ee0ffde36ede18219c9569e.tar.gz |
(1) NO_CHECKSUM is a user variable. Porters should use IGNOREFILES
for files for which the checksum should not be checked.
(2) Use the PLIST variable to point to temporary PLIST in ${WRKSRC}.
Under no circumstances should a port modify a file in the
repository (${PKGDIR}/PLIST in this case).
Diffstat (limited to 'german/manpages/Makefile')
-rw-r--r-- | german/manpages/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/german/manpages/Makefile b/german/manpages/Makefile index ba946aa..7b9839d 100644 --- a/german/manpages/Makefile +++ b/german/manpages/Makefile @@ -3,7 +3,7 @@ # Date created: 29 September 1997 # Whom: wosch # -# $Id: Makefile,v 1.3 1997/09/30 06:51:09 asami Exp $ +# $Id: Makefile,v 1.4 1997/10/01 20:55:20 wosch Exp $ # DISTNAME= de-manpages-1.0 @@ -15,7 +15,8 @@ MAINTAINER= wosch@FreeBSD.org LANG= de_DE.ISO_8859-1 NO_WRKSUBDIR= YES -NO_CHECKSUM= YES +IGNOREFILES= ${DISTFILES} +PLIST= ${WRKSRC}/PLIST mandir= ${PREFIX}/man/${LANG} manpages= manpages-de @@ -35,6 +36,6 @@ do-install: post-install: find ${WRKSRC}/${manpages} -type f -print | \ sed "s%${WRKSRC}/${manpages}%man/${LANG}%" > \ - ${WRKSRC}/PLIST && cp -f ${WRKSRC}/PLIST ${.CURDIR}/pkg/PLIST + ${WRKSRC}/PLIST .include <bsd.port.mk> |