diff options
author | Vanilla I. Shu <vanilla@FreeBSD.org> | 2014-06-18 13:29:45 +0000 |
---|---|---|
committer | Vanilla I. Shu <vanilla@FreeBSD.org> | 2014-06-18 13:29:45 +0000 |
commit | eb5ec9cb29a38b071e28c31986d771e34ba73964 (patch) | |
tree | 9e1e6e9ad1f1bbcbb84c2381d1f75d9974279195 | |
parent | 72037316461f367ce21cb9a0b7670fbdb49b0b9f (diff) | |
download | ports-eb5ec9cb29a38b071e28c31986d771e34ba73964.tar.gz ports-eb5ec9cb29a38b071e28c31986d771e34ba73964.zip |
Stagify.
Approved by: portmgr@
Notes
Notes:
svn path=/head/; revision=358274
-rw-r--r-- | math/gnubc/Makefile | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/math/gnubc/Makefile b/math/gnubc/Makefile index f1bfcce18ec2..d40c4e49bc94 100644 --- a/math/gnubc/Makefile +++ b/math/gnubc/Makefile @@ -14,23 +14,22 @@ COMMENT= The GNU bc/dc calculator GNU_CONFIGURE= yes CONFIGURE_ARGS+= --with-libedit -MAN1= bc.1 \ - dc.1 INFO= bc \ dc PLIST_FILES= bin/bc \ - bin/dc + bin/dc \ + man/man1/bc.1.gz \ + man/man1/dc.1.gz PORTEXAMPLES= ckbook.b \ pi.b \ primes.b \ twins.b -NO_STAGE= yes post-install: .if !defined(NOPORTEXAMPLES) - ${MKDIR} ${EXAMPLESDIR} + ${MKDIR} ${STAGEDIR}${EXAMPLESDIR} .for f in ${PORTEXAMPLES} - ${INSTALL_DATA} ${WRKSRC}/Examples/${f} ${EXAMPLESDIR} + ${INSTALL_DATA} ${WRKSRC}/Examples/${f} ${STAGEDIR}${EXAMPLESDIR} .endfor .endif |