diff options
author | makc <makc@FreeBSD.org> | 2015-08-25 18:03:08 +0800 |
---|---|---|
committer | makc <makc@FreeBSD.org> | 2015-08-25 18:03:08 +0800 |
commit | 9e5654a5c0aea99f1b9b5daff162b08b49242b7b (patch) | |
tree | 542278ecb4449b3df78960fd5f6cf7d8be50914f /net-im | |
parent | 76858881403322c6f97767f7d23afe1a13ec5546 (diff) | |
download | freebsd-ports-graphics-9e5654a5c0aea99f1b9b5daff162b08b49242b7b.tar.gz freebsd-ports-graphics-9e5654a5c0aea99f1b9b5daff162b08b49242b7b.tar.zst freebsd-ports-graphics-9e5654a5c0aea99f1b9b5daff162b08b49242b7b.zip |
Convert my ports to new options helpers
Diffstat (limited to 'net-im')
-rw-r--r-- | net-im/psimedia/Makefile | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/net-im/psimedia/Makefile b/net-im/psimedia/Makefile index 9c03e7c91b1..fcb6101066e 100644 --- a/net-im/psimedia/Makefile +++ b/net-im/psimedia/Makefile @@ -29,15 +29,13 @@ OPTIONS_SUB= yes DEBUG_CONFIGURE_ON= --debug DEBUG_CONFIGURE_OFF= --release -.include <bsd.port.options.mk> - do-install: ${MKDIR} ${STAGEDIR}${PREFIX}/${PSI_PLUGIN_DIR} ${INSTALL_LIB} ${WRKSRC}/gstprovider/libgstprovider.so \ ${STAGEDIR}${PREFIX}/${PSI_PLUGIN_DIR} -.if ${PORT_OPTIONS:MDEBUG} + +do-install-DEBUG-on: ${INSTALL_DATA} ${WRKSRC}/gstprovider/libgstprovider.so.debug \ ${STAGEDIR}${PREFIX}/${PSI_PLUGIN_DIR} -.endif .include <bsd.port.mk> |