diff options
author | sergei <sergei@FreeBSD.org> | 2003-10-23 14:06:52 +0000 |
---|---|---|
committer | sergei <sergei@FreeBSD.org> | 2003-10-23 14:06:52 +0000 |
commit | 5f204046662eb6df6cb409592f33cb423df064c7 (patch) | |
tree | 159d961b1fa4e1aa75b6d0c5035e4809d84bff19 /net/unison/Makefile | |
parent | 954e3f2db27730eb7cab4ed5dc9b42349c31aad1 (diff) | |
download | FreeBSD-ports-5f204046662eb6df6cb409592f33cb423df064c7.zip FreeBSD-ports-5f204046662eb6df6cb409592f33cb423df064c7.tar.gz |
- Install documentation (both included text files and the manual available
separately)
- Minor tweaks (use STRIP_CMD, do not redefine WRKSRC anymore)
- Bump PORTREVISION as hint for users to upgrade to this version
in order to take advantage of availability of the documentation
PR: 52811
Submitted by: sergei
Approved by: maintainer, krion
Diffstat (limited to 'net/unison/Makefile')
-rw-r--r-- | net/unison/Makefile | 23 |
1 files changed, 17 insertions, 6 deletions
diff --git a/net/unison/Makefile b/net/unison/Makefile index f723465..aa30480 100644 --- a/net/unison/Makefile +++ b/net/unison/Makefile @@ -7,22 +7,33 @@ PORTNAME= unison PORTVERSION= 2.9.20 +PORTREVISION= 1 CATEGORIES= net -MASTER_SITES= http://www.cis.upenn.edu/~bcpierce/unison/download/beta-test/unison-${PORTVERSION}/ -DISTNAME= src -DIST_SUBDIR= unison-${PORTVERSION} +MASTER_SITES= http://www.cis.upenn.edu/~bcpierce/unison/download/beta-test/${DIST_SUBDIR}/ +DISTFILES= ${EXTRACT_ONLY} ${EXTRA_DOCS} +DIST_SUBDIR= ${PORTNAME}-${PORTVERSION} +EXTRACT_ONLY= src.tar.gz MAINTAINER= daniel+unison@pelleg.org COMMENT= A user-level file synchronization tool BUILD_DEPENDS= ocamlc:${PORTSDIR}/lang/ocaml -WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} - USE_GMAKE= yes MAKE_ARGS= UISTYLE=text CFLAGS="" +.if !defined(NOPORTDOCS) +DOCS= BUGS.txt NEWS README +EXTRA_DOCS= unison-manual.dvi unison-manual.html \ + unison-manual.pdf unison-manual.ps +.endif + post-install: - ${STRIP_CMD} ${PREFIX}/bin/unison + @${STRIP_CMD} ${PREFIX}/bin/unison +.if !defined(NOPORTDOCS) + @${MKDIR} ${DOCSDIR} + cd ${WRKSRC} && ${INSTALL_DATA} ${DOCS} ${DOCSDIR} + cd ${DISTDIR}/${DIST_SUBDIR} && ${INSTALL_DATA} ${EXTRA_DOCS} ${DOCSDIR} +.endif .include <bsd.port.mk> |