diff options
author | amdmi3 <amdmi3@FreeBSD.org> | 2016-01-10 08:07:35 +0800 |
---|---|---|
committer | amdmi3 <amdmi3@FreeBSD.org> | 2016-01-10 08:07:35 +0800 |
commit | 44709df584b14a074276299a3a9ee4467caad6fd (patch) | |
tree | 840e79d65337ee86ab0989d44f45fb6140e551d1 /games | |
parent | 848162614b09c7a8dfa031de2cd85eea2efb5b52 (diff) | |
download | freebsd-ports-gnome-44709df584b14a074276299a3a9ee4467caad6fd.tar.gz freebsd-ports-gnome-44709df584b14a074276299a3a9ee4467caad6fd.tar.zst freebsd-ports-gnome-44709df584b14a074276299a3a9ee4467caad6fd.zip |
- Drop unneeded PLIST_DIRS
- Switch to options helpers
Approved by: portmgr blanket
Diffstat (limited to 'games')
-rw-r--r-- | games/phalanx/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/games/phalanx/Makefile b/games/phalanx/Makefile index 14d532272c27..f09b24ddd699 100644 --- a/games/phalanx/Makefile +++ b/games/phalanx/Makefile @@ -31,7 +31,6 @@ PLIST_FILES= bin/phalanx \ %%DATADIR%%/eco.phalanx \ %%DATADIR%%/pbook.phalanx \ %%DATADIR%%/sbook.phalanx -PLIST_DIRS= %%DATADIR%% OPTIONS_DEFINE= DOCS @@ -39,6 +38,8 @@ do-install: ${INSTALL_PROGRAM} ${WRKSRC}/phalanx ${STAGEDIR}${PREFIX}/bin @${MKDIR} ${STAGEDIR}${DATADIR} ${INSTALL_DATA} ${WRKSRC}/*.phalanx ${STAGEDIR}${DATADIR} + +do-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} cd ${WRKSRC}/${file}; ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR} |