diff options
author | mva <mva@FreeBSD.org> | 2014-01-17 04:18:15 +0800 |
---|---|---|
committer | mva <mva@FreeBSD.org> | 2014-01-17 04:18:15 +0800 |
commit | e2d64d883fd058c7a0fdaa7d9a4565cbee64c6d8 (patch) | |
tree | 26c659c52ef41d284e642ea2256af59c6ac7458a /editors/hte | |
parent | ed46c48a094f3b8e5f9c432dffe26fa06ad7cb5e (diff) | |
download | freebsd-ports-gnome-e2d64d883fd058c7a0fdaa7d9a4565cbee64c6d8.tar.gz freebsd-ports-gnome-e2d64d883fd058c7a0fdaa7d9a4565cbee64c6d8.tar.zst freebsd-ports-gnome-e2d64d883fd058c7a0fdaa7d9a4565cbee64c6d8.zip |
- Enable stagedir support
- minor non-functional OPTIONS cleanup
Diffstat (limited to 'editors/hte')
-rw-r--r-- | editors/hte/Makefile | 35 |
1 files changed, 11 insertions, 24 deletions
diff --git a/editors/hte/Makefile b/editors/hte/Makefile index b9cba6319a7d..1206e6eb23fd 100644 --- a/editors/hte/Makefile +++ b/editors/hte/Makefile @@ -26,27 +26,15 @@ X11_DESC= X11 textmode support NOT_FOR_ARCHS= ia64 NOT_FOR_ARCHS_REASON= does not build on ia64 -NO_STAGE= yes -.include <bsd.port.options.mk> +LZO2_LIB_DEPENDS= liblzo2.so:${PORTSDIR}/archivers/lzo2 +LZO2_CONFIGURE_OFF= --with-included-lzo +X11_USE= XORG=x11 +X11_CPPFLAGS= -I${LOCALBASE}/include +X11_LDFLAGS= -L${LOCALBASE}/lib +X11_CONFIGURE_ENABLE= x11-textmode -.if ${PORT_OPTIONS:MLZO2} -LIB_DEPENDS+= lzo2:${PORTSDIR}/archivers/lzo2 -.else -CONFIGURE_ARGS= --with-included-lzo -.endif - -.if ${PORT_OPTIONS:MX11} -USE_XORG= x11 -CPPFLAGS+= -I${LOCALBASE}/include -LDFLAGS+= -L${LOCALBASE}/lib -.else -CONFIGURE_ARGS+=--disable-x11-textmode -.endif - -.if ${PORT_OPTIONS:MDOCS} PORTDOCS= README INFO= ht -.endif post-patch: @${REINPLACE_CMD} -e 's|^CXXFLAGS=.*$$|CXXFLAGS="$$CXXFLAGS"|g ; \ @@ -55,11 +43,10 @@ post-patch: ${WRKSRC}/configure do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/ht ${PREFIX}/bin -.if ${PORT_OPTIONS:MDOCS} - @${MKDIR} ${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/doc/hthelp.info ${PREFIX}/${INFO_PATH}/ht.info -.endif + ${INSTALL_PROGRAM} ${WRKSRC}/ht ${STAGEDIR}${PREFIX}/bin + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/doc/hthelp.info \ + ${STAGEDIR}${PREFIX}/${INFO_PATH}/ht.info .include <bsd.port.mk> |