pkgsrc/devel/jenkins/Makefile
ryoon 6cce1e2240 Update to 1.509.1
Changelog:
What's new in 1.509.1 (2013/05/01)

    FilePath.installIfNecessaryFrom routes download over remoting channel (issue 17330)
    Add 'Are you sure' on Reload configuration from disk (issue 15340)
    MavenAbstractArtifactRecord.doRedeploy should require POST (SECURITY-69)
    Hover-over "Build Now" broken for parameterized jobs: "This page expects a form submission" (issue 17110)
    XSS issue, where an internal attacker can cause a remote stylesheet to be loaded and containing scripts executed. (SECURITY-67)
    CVE-2013-1808 stapler-adjunct-zeroclipboard: XSS via copying XSS payload into buffer (SECURITY-71)
    Jenkins.doEval checks ADMINISTER rather than RUN_SCRIPTS; doScript CSRF (SECURITY-63)
    Jenkins is no more WinXP compliant : CreateSymbolicLinkW is not available (issue 17343)
2013-05-09 15:16:55 +00:00

37 lines
786 B
Makefile

# $NetBSD: Makefile,v 1.13 2013/05/09 15:16:55 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
J_VERSION= 1.509.1
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"