diff options
author | itetcu <itetcu@FreeBSD.org> | 2006-05-14 01:37:21 +0800 |
---|---|---|
committer | itetcu <itetcu@FreeBSD.org> | 2006-05-14 01:37:21 +0800 |
commit | c156bbc8d0537ba5cb4eaa9635e53bbb1bd07825 (patch) | |
tree | ada244e914f574de4134904724eff7d69bf6d611 /japanese/plan | |
parent | dbb18d0f73501c580acf16af66222c98ddb41526 (diff) | |
download | freebsd-ports-gnome-c156bbc8d0537ba5cb4eaa9635e53bbb1bd07825.tar.gz freebsd-ports-gnome-c156bbc8d0537ba5cb4eaa9635e53bbb1bd07825.tar.zst freebsd-ports-gnome-c156bbc8d0537ba5cb4eaa9635e53bbb1bd07825.zip |
- Update to 1.9 (master port updated in previous PR)
- Convert spaces -> tabs
- Respect NOPORTDOCS
- Pass maintainership to submiter
PR: ports/97156
Submitted by: Shaun Amott <shaun@inerd.com>
Approved by: lawrance
Diffstat (limited to 'japanese/plan')
-rw-r--r-- | japanese/plan/Makefile | 22 |
1 files changed, 14 insertions, 8 deletions
diff --git a/japanese/plan/Makefile b/japanese/plan/Makefile index bcdc01ccbcff..feeb65cecac8 100644 --- a/japanese/plan/Makefile +++ b/japanese/plan/Makefile @@ -6,26 +6,32 @@ # $FreeBSD$ # -PORTNAME= plan -PORTVERSION= 1.8.4 +PORTNAME= plan +PORTVERSION= 1.9 CATEGORIES= japanese -MAINTAINER= ports@FreeBSD.org +MAINTAINER= shaun@inerd.com MAKE_ENV+= JAPANESE=yes MASTERDIR= ${.CURDIR}/../../deskutils/plan PLIST= ${WRKDIR}/PLIST -EXTRA_PATCHES= ${.CURDIR}/files/patch-* +EXTRA_PATCHES= ${.CURDIR}/files/patch-* post-build: - ${ECHO_CMD} share/doc/plan/plan_calEUC.ps > ${WRKDIR}/PLIST +.if !defined(NOPORTDOCS) + ${ECHO_CMD} ${DOCSDIR:S|${PREFIX}/||}/plan_calEUC.ps > ${WRKDIR}/PLIST +.endif ${CAT} ${MASTERDIR}/pkg-plist >> ${WRKDIR}/PLIST post-install: - @${MKDIR} ${PREFIX}/share/netplan.dir - ${CHMOD} 1777 ${PREFIX}/share/netplan.dir - ${INSTALL_DATA} ${.CURDIR}/files/plan_calEUC.ps ${PREFIX}/share/doc/plan + @${MKDIR} ${DATADIR}/netplan.dir + ${CHMOD} 1777 ${DATADIR}/netplan.dir + +.if !defined(NOPORTDOCS) + @${MKDIR} ${DOCSDIR} + ${INSTALL_DATA} ${.CURDIR}/files/plan_calEUC.ps ${DOCSDIR} +.endif .include "${MASTERDIR}/Makefile" |