* This release contains security fix. See http://www.cloudbees.com/jenkins-advisory/jenkins-security-advisory-2012-01-10.cb Changelog: * Viewing large console logs with timestamper plugin cause Jenkins to crash (issue 9349) * Maven3 parallel build fails with java.util.ConcurrentModificationException in Jenkins (issue 11256) * Jenkins PID changes after restart (issue 11742) * Running Jenkins with the bundeled Winstone is succeptible to the hash table attack http://www.ocert.org/advisories/ocert-2011-003.html (SECURITY-22)
39 lines
820 B
Makefile
39 lines
820 B
Makefile
# $NetBSD: Makefile,v 1.3 2012/01/19 14:39:21 ryoon Exp $
|
|
#
|
|
|
|
DISTNAME= jenkins
|
|
PKGNAME= jenkins-${J_VERSION}
|
|
CATEGORIES= devel
|
|
MASTER_SITES= http://mirrors.jenkins-ci.org/war-stable/${J_VERSION}/
|
|
EXTRACT_SUFX= .war
|
|
|
|
MAINTAINER= ryoon@NetBSD.org
|
|
HOMEPAGE= http://jenkins-ci.org/
|
|
COMMENT= Open source continuous integration server (LTS release)
|
|
LICENSE= mit
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
J_VERSION= 1.424.2
|
|
|
|
DIST_SUBDIR= ${PKGNAME_NOREV}
|
|
|
|
WRKSRC= ${WRKDIR}
|
|
USE_LANGUAGES= # none
|
|
|
|
USE_JAVA= run
|
|
USE_JAVA2= 6
|
|
|
|
USE_TOOLS+= unzip
|
|
|
|
NO_CONFIGURE= yes
|
|
NO_BUILD= yes
|
|
|
|
INSTALLATION_DIRS= share/jenkins
|
|
|
|
do-install:
|
|
${UNZIP_CMD} -d ${DESTDIR}${PREFIX}/share/jenkins ${WRKSRC}/jenkins.war
|
|
${INSTALL_DATA} ${WRKSRC}/jenkins.war ${DESTDIR}${PREFIX}/share/jenkins
|
|
|
|
.include "../../mk/java-vm.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|