diff options
author | Dmitry Marakasov <amdmi3@FreeBSD.org> | 2015-05-10 17:34:44 +0000 |
---|---|---|
committer | Dmitry Marakasov <amdmi3@FreeBSD.org> | 2015-05-10 17:34:44 +0000 |
commit | 6918d8cc73bf7859769e23789104f2772cab0d28 (patch) | |
tree | b660898955ed4f2e53f435c44130289691251cf8 /net | |
parent | d62ce729ab5a3a6aff2f1f221428bc887975ddb2 (diff) | |
download | freebsd-ports-6918d8cc73bf7859769e23789104f2772cab0d28.zip |
- Add LICENSE
- Strip library
Diffstat (limited to 'net')
-rw-r--r-- | net/appkonference/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/net/appkonference/Makefile b/net/appkonference/Makefile index d7470b1c6bfa..41ebeb9dd6f2 100644 --- a/net/appkonference/Makefile +++ b/net/appkonference/Makefile @@ -3,7 +3,7 @@ PORTNAME= appkonference PORTVERSION= 2.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net MASTER_SITES= SF @@ -13,6 +13,9 @@ COMMENT= High-performance Asterisk voice/video conferencing plugin BUILD_DEPENDS= asterisk:${PORTSDIR}/net/asterisk RUN_DEPENDS= asterisk:${PORTSDIR}/net/asterisk +LICENSE= GPLv2 +LICENSE_FILE= ${WRKSRC}/LICENSE + USE_CSTD= gnu89 USES= compiler:features gmake WRKSRC= ${WRKDIR}/${PORTNAME}/konference @@ -29,4 +32,7 @@ post-patch: @${REINPLACE_CMD} -e 's|-fsingle-precision-constant||' ${WRKSRC}/Makefile .endif +post-install: + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/asterisk/modules/app_konference.so + .include <bsd.port.post.mk> |