024cdc752e
Submitted by: Conrad Sabatier <conrads(at)cox.net>
44 lines
1.1 KiB
Makefile
44 lines
1.1 KiB
Makefile
# New ports collection makefile for: netbeans
|
|
# Date Created: 2 Jun 2003
|
|
# Whom: olgeni@FreeBSD.org
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= netbeans
|
|
PORTVERSION= 3.6
|
|
CATEGORIES= java devel
|
|
MASTER_SITES= # http://www.netbeans.org/download/release36/promoted/FCS/
|
|
DISTNAME= netbeans-3_6
|
|
|
|
MAINTAINER= olgeni@FreeBSD.org
|
|
COMMENT= A full-featured integrated environment for Java
|
|
|
|
USE_BZIP2= yes
|
|
USE_JAVA= 1.3+
|
|
NO_BUILD= yes
|
|
RESTRICTED= "Restrictive license"
|
|
|
|
WRKSRC= ${WRKDIR}/netbeans
|
|
|
|
DOWNLOAD_URL?= http://www.netbeans.org/download/release36/promoted/FCS/release36-build-tar-bz2.html
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if !exists(${DISTDIR}/${DISTNAME}${EXTRACT_SUFX})
|
|
IGNORE= You must manually fetch the source distribution (${DISTFILES}) from ${DOWNLOAD_URL}, place it in ${DISTDIR} and then run make again
|
|
.endif
|
|
|
|
.if ${OSVERSION} >= 500000
|
|
post-patch:
|
|
@${CAT} ${FILESDIR}/bin_runide.sh.diff | ${PATCH} ${WRKSRC}/bin/runide.sh
|
|
.endif
|
|
|
|
do-install:
|
|
@${MKDIR} ${PREFIX}/netbeans
|
|
@${CP} -r ${WRKSRC}/* ${PREFIX}/netbeans
|
|
@${CHOWN} -R ${SHAREOWN}:${SHAREGRP} ${PREFIX}/netbeans
|
|
@${LN} -sf ${PREFIX}/netbeans/bin/runide.sh ${PREFIX}/bin/netbeans
|
|
|
|
.include <bsd.port.post.mk>
|