mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-20 00:21:35 +00:00
- USe DISTVERSIONPREFIX instead of DISTNAME
- Add missing OPTIONS_DEFINE=DOCS - Use USES=makeinfo instead of hard-coded BUILD_DEPENDS - Convert to options helper - Convert to options target helper - While I'm here, fix indent Approved by: portmgr (blanket)
This commit is contained in:
parent
7469c192e9
commit
6d882b5bf5
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=428757
@ -3,10 +3,10 @@
|
||||
|
||||
PORTNAME= twelf
|
||||
PORTVERSION= 1.7.1
|
||||
DISTVERSIONPREFIX= src-
|
||||
CATEGORIES= lang math
|
||||
MASTER_SITES= http://twelf.plparty.org/releases/ \
|
||||
http://www-2.cs.cmu.edu/~twelf/dist/ http://www.cs.cmu.edu/~twelf/dist/
|
||||
DISTNAME= ${PORTNAME}-src-${PORTVERSION}
|
||||
http://www-2.cs.cmu.edu/~twelf/dist/ http://www.cs.cmu.edu/~twelf/dist/
|
||||
|
||||
MAINTAINER= beyert@cs.ucr.edu
|
||||
COMMENT= Meta-logical framework for deductive systems
|
||||
@ -18,43 +18,36 @@ RUN_DEPENDS= mlton:lang/mlton
|
||||
BUILD_DEPENDS= mlton:lang/mlton \
|
||||
texi2html:textproc/texi2html
|
||||
|
||||
USES= gmake
|
||||
OPTIONS_DEFINE= DOCS
|
||||
|
||||
USES= gmake
|
||||
ALL_TARGET= mlton
|
||||
PLIST_FILES= bin/${PORTNAME}-server
|
||||
PORTDATA= emacs examples examples-clp examples-delphin tex vim README
|
||||
PORTDOCS= dvi html info pdf ps
|
||||
WRKSRC= ${WRKDIR}/twelf
|
||||
INFO= twelf
|
||||
|
||||
.include <bsd.port.options.mk>
|
||||
DOCS_USE= TEX=dvipsk:build,tex:build
|
||||
DOCS_USES= makeinfo
|
||||
|
||||
.if ${PORT_OPTIONS:MDOCS}
|
||||
USE_TEX= tex:build dvipsk:build
|
||||
BUILD_DEPENDS+= ${LOCALBASE}/bin/makeinfo:print/texinfo
|
||||
.endif
|
||||
|
||||
post-patch:
|
||||
.if ${PORT_OPTIONS:MDOCS}
|
||||
post-patch-DOCS-on:
|
||||
@${REINPLACE_CMD} 's|-number|-number-sections|g' \
|
||||
${WRKSRC}/doc/guide/Makefile
|
||||
@${REINPLACE_CMD} 's|twelf_\*.html|twelf/\*.html|g' \
|
||||
${WRKSRC}/doc/guide/Makefile
|
||||
.endif
|
||||
|
||||
post-build:
|
||||
.if ${PORT_OPTIONS:MDOCS}
|
||||
post-build-DOCS-on:
|
||||
cd ${WRKSRC}/doc/guide && ${MAKE} all ${INSTALL_TARGET}
|
||||
.endif
|
||||
|
||||
do-install:
|
||||
${INSTALL_PROGRAM} ${WRKSRC}/bin/${PORTNAME}-server \
|
||||
${STAGEDIR}${PREFIX}/bin
|
||||
${MKDIR} ${STAGEDIR}${DATADIR}
|
||||
cd ${WRKSRC} && ${COPYTREE_SHARE} "${PORTDATA}" ${STAGEDIR}${DATADIR}
|
||||
.if ${PORT_OPTIONS:MDOCS}
|
||||
|
||||
do-install-DOCS-on:
|
||||
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
||||
cd ${WRKSRC}/doc && ${COPYTREE_SHARE} "${PORTDOCS}" ${STAGEDIR}${DOCSDIR}
|
||||
.endif
|
||||
|
||||
WRKSRC= ${WRKDIR}/twelf
|
||||
INFO= twelf
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
Loading…
Reference in New Issue
Block a user