diff options
author | adamw <adamw@FreeBSD.org> | 2013-12-09 10:43:37 +0800 |
---|---|---|
committer | adamw <adamw@FreeBSD.org> | 2013-12-09 10:43:37 +0800 |
commit | 6c9cb47b9d6b395a51db40848adb1ece710564fa (patch) | |
tree | d5319700d81d19bc29543590cd40099e1ebfdf09 /irc/ratbox-respond | |
parent | 2b82ab0cc69d0949237c962adaab70d6b4c3a5be (diff) | |
download | freebsd-ports-gnome-6c9cb47b9d6b395a51db40848adb1ece710564fa.tar.gz freebsd-ports-gnome-6c9cb47b9d6b395a51db40848adb1ece710564fa.tar.zst freebsd-ports-gnome-6c9cb47b9d6b395a51db40848adb1ece710564fa.zip |
- NOPORTDOCS -> PORT_OPTIONS:MDOCS
- Staging
- Use OPTIONS where appropriate
- Rename old-style patch files
Diffstat (limited to 'irc/ratbox-respond')
-rw-r--r-- | irc/ratbox-respond/Makefile | 23 |
1 files changed, 8 insertions, 15 deletions
diff --git a/irc/ratbox-respond/Makefile b/irc/ratbox-respond/Makefile index 03a77c25e0f5..7f59f3ef68bf 100644 --- a/irc/ratbox-respond/Makefile +++ b/irc/ratbox-respond/Makefile @@ -3,6 +3,7 @@ PORTNAME= ratbox-respond PORTVERSION= 1.0 +PORTREVISION= 1 CATEGORIES= irc sysutils MASTER_SITES= http://respond.ratbox.org/download/ EXTRACT_SUFX= .tgz @@ -16,24 +17,16 @@ BUILD_WRKSRC= ${WRKSRC}/${PORTNAME} USE_OPENSSL= yes GNU_CONFIGURE= yes -SUB_FILES= pkg-message - -PORTDOCS= * +PORTDOCS= challenge.txt PORTEXAMPLES= * PLIST_FILES= bin/ratbox-respond bin/makekeypair -NO_STAGE= yes do-install: - ${INSTALL_PROGRAM} ${BUILD_WRKSRC}/${PORTNAME} ${PREFIX}/bin - ${INSTALL_SCRIPT} ${WRKSRC}/makekeypair ${PREFIX}/bin -.if !defined(NOPORTDOCS) - @${MKDIR} ${DOCSDIR} - cd ${WRKSRC} && ${INSTALL_DATA} challenge.txt ${DOCSDIR} -.endif -.if !defined(NOPORTEXAMPLES) - @${MKDIR} ${EXAMPLESDIR}/client-scripts - ${INSTALL_DATA} ${WRKSRC}/client-scripts/* ${EXAMPLESDIR}/client-scripts -.endif - @${CAT} ${PKGMESSAGE} + ${INSTALL_PROGRAM} ${BUILD_WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin + ${INSTALL_SCRIPT} ${WRKSRC}/makekeypair ${STAGEDIR}${PREFIX}/bin + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/challenge.txt ${STAGEDIR}${DOCSDIR} + @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} + ${INSTALL_DATA} ${WRKSRC}/client-scripts/* ${STAGEDIR}${EXAMPLESDIR} .include <bsd.port.mk> |