diff options
author | Sergei Kolobov <sergei@FreeBSD.org> | 2003-10-23 14:06:52 +0000 |
---|---|---|
committer | Sergei Kolobov <sergei@FreeBSD.org> | 2003-10-23 14:06:52 +0000 |
commit | fce81d08eab237d7b1c3bac7b08867d51ae48ee1 (patch) | |
tree | c5ef1aae30a90c41abe639a25251298d9247ec95 /net/unison/Makefile | |
parent | - Update to 3.05 (diff) |
- 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 f7234653615e..aa30480290db 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> |