diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2014-07-02 13:40:36 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2014-07-02 13:40:36 +0000 |
commit | 45dc11f3689eeeded7c6558dc80198cd9bfc3cc5 (patch) | |
tree | 0e04c626dda07ddf266872c05aa34fc7d0baca9d /print | |
parent | 879c163c379c7ac6f08765e2860d8a2852ae5259 (diff) | |
download | ports-45dc11f3689eeeded7c6558dc80198cd9bfc3cc5.tar.gz ports-45dc11f3689eeeded7c6558dc80198cd9bfc3cc5.zip |
Notes
Diffstat (limited to 'print')
-rw-r--r-- | print/passivetex/Makefile | 23 |
1 files changed, 6 insertions, 17 deletions
diff --git a/print/passivetex/Makefile b/print/passivetex/Makefile index 06763bcc0ac6..f0d1d2fad6b6 100644 --- a/print/passivetex/Makefile +++ b/print/passivetex/Makefile @@ -41,25 +41,14 @@ CLASS_FILES= dummyels.sty fotex.xmt fotex.sty \ mlnames.sty ucharacters.sty unicode.sty \ dummyels.sty nomulticol.sty -NO_STAGE= yes - OPTIONS_DEFINE= DOCS EXAMPLES -.include <bsd.port.options.mk> - do-install: - @${MKDIR} -m 555 ${PREFIX}/${CLASSDIR} - cd ${WRKSRC} && ${INSTALL_DATA} ${CLASS_FILES} ${PREFIX}/${CLASSDIR} -.if ${PORT_OPTIONS:MEXAMPLES} - @${MKDIR} ${EXAMPLESDIR} - cd ${WRKSRC}/test && ${INSTALL_DATA} ${PORTEXAMPLES} ${EXAMPLESDIR} -.endif -.if ${PORT_OPTIONS:MDOCS} - @${MKDIR} ${DOCSDIR} - cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${DOCSDIR} -.endif - -post-install: - @${CAT} ${PKGMESSAGE} + @${MKDIR} ${STAGEDIR}${PREFIX}/${CLASSDIR} + cd ${WRKSRC} && ${INSTALL_DATA} ${CLASS_FILES} ${STAGEDIR}${PREFIX}/${CLASSDIR} + @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} + cd ${WRKSRC}/test && ${INSTALL_DATA} ${PORTEXAMPLES} ${STAGEDIR}${EXAMPLESDIR} + @${MKDIR} ${STAGEDIR}${DOCSDIR} + cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR} .include <bsd.port.mk> |