mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-25 09:34:11 +00:00
21a283f3be
UNIQUENAME was never unique, it was only used by USE_LDCONFIG and now, we won't have conflicts there. Use PKGBASE instead of LATEST_LINK in PKGLATESTFILE, the *only* consumer is pkg-devel, and it works just fine without LATEST_LINK as pkg-devel has the correct PKGNAME anyway. Now that UNIQUENAME is gone, OPTIONSFILE is too. (it's been called OPTIONS_FILE now.) Reviewed by: antoine, bapt Exp-run by: antoine Sponsored by: Absolight Differential Revision: https://reviews.freebsd.org/D3336
40 lines
1.0 KiB
Makefile
40 lines
1.0 KiB
Makefile
# Created by: Mikhail T. <michael@fun-box.ru>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= netty
|
|
PORTVERSION= 3.9.2
|
|
DISTVERSIONSUFFIX= .Final-dist
|
|
CATEGORIES= java devel
|
|
MASTER_SITES= http://dl.bintray.com/netty/downloads/
|
|
|
|
MAINTAINER= m.tsatsenko@gmail.com
|
|
COMMENT= Java NIO client server framework
|
|
|
|
LICENSE= APACHE20
|
|
|
|
USE_JAVA= yes
|
|
USES= cpe tar:bzip2
|
|
CPE_VENDOR= netty_project
|
|
JAVA_VERSION= 1.6+
|
|
NO_BUILD= yes
|
|
DATADIR= ${PREFIX}/share/${PKGBASE}
|
|
DOCSDIR= ${PREFIX}/share/doc/${PKGBASE}
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}.Final
|
|
|
|
PLIST_FILES= %%JAVAJARDIR%%/netty-${PORTVERSION}.jar \
|
|
%%JAVAJARDIR%%/netty.jar
|
|
|
|
PORTDATA= *
|
|
PORTDOCS= *
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
do-install:
|
|
@${MKDIR} ${STAGEDIR}${JAVAJARDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/jar/netty-${PORTVERSION}.Final.jar ${STAGEDIR}${JAVAJARDIR}/netty-${PORTVERSION}.jar
|
|
cd ${WRKSRC} && ${COPYTREE_SHARE} src ${STAGEDIR}${DATADIR}
|
|
cd ${WRKSRC}/doc && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR}
|
|
${LN} -nfs netty-${PORTVERSION}.jar ${STAGEDIR}${JAVAJARDIR}/netty.jar
|
|
|
|
.include <bsd.port.mk>
|