diff options
author | asami <asami@FreeBSD.org> | 1998-12-01 11:06:49 +0800 |
---|---|---|
committer | asami <asami@FreeBSD.org> | 1998-12-01 11:06:49 +0800 |
commit | c7a8a8ec7d045d5d6d4ee8f456963383f487af12 (patch) | |
tree | f75c559bb5a68ac07921a23a309ad2d01841ac7a /japanese/plan | |
parent | 18fdad96609d20643801ba5c91e8ad8838e01c45 (diff) | |
download | freebsd-ports-gnome-c7a8a8ec7d045d5d6d4ee8f456963383f487af12.tar.gz freebsd-ports-gnome-c7a8a8ec7d045d5d6d4ee8f456963383f487af12.tar.zst freebsd-ports-gnome-c7a8a8ec7d045d5d6d4ee8f456963383f487af12.zip |
Use MASTERDIR where appropriate. Also, add FILE_DEPENDS to denote
that the port otherwise uses files from another port. (Note: support
for FILE_DEPENDS is not in bsd.port.mk yet, so it's a no-op for now.)
Diffstat (limited to 'japanese/plan')
-rw-r--r-- | japanese/plan/Makefile | 18 |
1 files changed, 7 insertions, 11 deletions
diff --git a/japanese/plan/Makefile b/japanese/plan/Makefile index 29052be48cb5..c642c9217c04 100644 --- a/japanese/plan/Makefile +++ b/japanese/plan/Makefile @@ -3,7 +3,7 @@ # Date created: Sat Jan 31, 1998 # Whom: David O'Brien (obrien@cs.ucdavis.edu) # -# $Id: Makefile,v 1.2 1998/04/17 18:08:35 obrien Exp $ +# $Id: Makefile,v 1.3 1998/08/08 00:20:20 asami Exp $ # #BROKEN= "need JIS libraries in print.c that I do not have" @@ -11,20 +11,16 @@ BROKEN= "doesn't build properly from version 1.7.1" MAKE_ENV+= JAPANESE=yes -.include "${.CURDIR}/../../deskutils/plan/Makefile" +MASTERDIR= ${.CURDIR}/../../deskutils/plan + +.include "${MASTERDIR}/Makefile" PKGNAME= ja-${DISTNAME} MAINTAINER= obrien@FreeBSD.org -FILESDIR= ${.CURDIR}/../../deskutils/plan/files -PATCHDIR= ${.CURDIR}/../../deskutils/plan/patches -PKGDIR= ${.CURDIR}/../../deskutils/plan/pkg +PLIST= ${WRKDIR}/PLIST pre-install: - ${ECHO} "share/doc/plan/plan_calSJ.ps" > ${PKGDIR}/PLIST - ${CAT} ${.CURDIR}/../../deskutils/plan/pkg/PLIST \ - >> ${PKGDIR}/PLIST - ${CP} ${.CURDIR}/../../deskutils/plan/pkg/DESCR \ - ${.CURDIR}/../../deskutils/plan/pkg/COMMENT \ - ${PKGDIR}/PLIST + ${ECHO} "share/doc/plan/plan_calSJ.ps" > ${PLIST} + ${CAT} ${PKGDIR}/PLIST >> ${PLIST} |