mirror of
https://git.freebsd.org/ports.git
synced 2025-05-20 02:53:10 -04:00
be IGNOREd regardless of PACKAGE_BUILDING. Soem have no MASTER_SITES and require manual fetching, others are already marked RESTRICTED. - Trim headers - Convert some pre-fetch errors into IGNORE - Remove needless quoting in java/jdk7-doc IGNORE With hat: portmgr
36 lines
961 B
Makefile
36 lines
961 B
Makefile
# Created by: Ernst de Haan <znerd@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= netcomponents
|
|
PORTVERSION= 1.3.8
|
|
PORTREVISION= 2
|
|
CATEGORIES= java net
|
|
MASTER_SITES= http://www.savarese.org/oro/downloads/
|
|
DISTNAME= NetComponents-${PORTVERSION}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Java library with common network protocol implementations
|
|
|
|
RESTRICTED= May not redistribute except as part of a new software product
|
|
|
|
PLIST_FILES= %%JAVAJARDIR%%/${JARFILE}
|
|
USE_JAVA= yes
|
|
USE_ZIP= yes
|
|
WRKSRC= ${WRKDIR}/NetComponents-1.3.8a
|
|
NO_BUILD= yes
|
|
|
|
JARFILE= NetComponents.jar
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if !exists(${DISTDIR}/${DISTNAME}${EXTRACT_SUFX})
|
|
IGNORE= must be manually fetched from ${MASTER_SITES}. Download\
|
|
${DISTFILES}, place it in ${DISTDIR} and restart this build
|
|
.endif
|
|
|
|
do-install:
|
|
@${ECHO_MSG} -n ">> Installing JAR as ${JAVAJARDIR}/${JARFILE}..."
|
|
@${INSTALL_DATA} ${WRKSRC}/${JARFILE} ${JAVAJARDIR}/
|
|
@${ECHO_MSG} " [ DONE ]"
|
|
|
|
.include <bsd.port.post.mk>
|