diff options
author | miwi <miwi@FreeBSD.org> | 2009-05-02 05:41:06 +0800 |
---|---|---|
committer | miwi <miwi@FreeBSD.org> | 2009-05-02 05:41:06 +0800 |
commit | 4021406d368d18ad763b402a16284bec9767159f (patch) | |
tree | b6e25069876701fd35627118a62586f985653343 /www | |
parent | 308462344eb1629c8491879e3f4a50818b258882 (diff) | |
download | freebsd-ports-gnome-4021406d368d18ad763b402a16284bec9767159f.tar.gz freebsd-ports-gnome-4021406d368d18ad763b402a16284bec9767159f.tar.zst freebsd-ports-gnome-4021406d368d18ad763b402a16284bec9767159f.zip |
JSPWiki is a feature-rich and extensible WikiWiki engine built
around the standard J2EE components (Java,servlets,JSP).
It's features include:WikiMarkup/Structured Text,File attachments,
Templates support,Data storage,Security,Easy plugin interface for
writing your own additions,UTF-8 support,JavaServerPages-based,
Easy-ish installation, Page locking to prevent editing conflicts,
Support for Multiple Wikis,etc.
WWW: http://www.jspwiki.org/
PR: ports/134078
Submitted by: wenheping at gmail.com
Diffstat (limited to 'www')
-rw-r--r-- | www/Makefile | 1 | ||||
-rw-r--r-- | www/jspwiki/Makefile | 46 | ||||
-rw-r--r-- | www/jspwiki/distinfo | 3 | ||||
-rw-r--r-- | www/jspwiki/pkg-descr | 10 | ||||
-rw-r--r-- | www/jspwiki/pkg-message | 9 |
5 files changed, 69 insertions, 0 deletions
diff --git a/www/Makefile b/www/Makefile index d20d8f31b1d4..0b238f8bcf56 100644 --- a/www/Makefile +++ b/www/Makefile @@ -308,6 +308,7 @@ SUBDIR += jetty SUBDIR += joomla SUBDIR += joomla15 + SUBDIR += jspwiki SUBDIR += jtoolkit SUBDIR += junkbuster SUBDIR += kannel diff --git a/www/jspwiki/Makefile b/www/jspwiki/Makefile new file mode 100644 index 000000000000..d13e4806fcd8 --- /dev/null +++ b/www/jspwiki/Makefile @@ -0,0 +1,46 @@ +# New ports collection makefile for: jspwiki +# Date created: 29 April, 2009 +# Whom: wenheping@gmail.com +# +# $FreeBSD$ +# + +PORTNAME= jspwiki +PORTVERSION= 2.8.2 +CATEGORIES= www java +MASTER_SITES= http://www.ecyrd.com/~jalkanen/JSPWiki/${PORTVERSION}/ +DISTNAME= JSPWiki-${PORTVERSION}-bin + +MAINTAINER= wenheping@gmail.com +COMMENT= A feature-rich and extensible Wiki engine built around J2EE + +RUN_DEPENDS= ${TOMCATDIR}:${PORTSDIR}/www/tomcat55 + +USE_ZIP= yes +USE_JAVA= 1.5+ + +NO_BUILD= yes +TOMCATVER= tomcat5.5 +TOMCATDIR= ${PREFIX}/${TOMCATVER} +TOMCATOWN= www +TOMCATGRP= www +WEBAPPDIR= ${TOMCATDIR}/webapps +PORTDOCS= LICENSE README ReleaseNotes +PLIST_FILES= ${TOMCATVER}/webapps/JSPWiki.war +WRKSRC= ${WRKDIR}/JSPWiki + +do-install: + cd ${WRKSRC} && \ + ${INSTALL} -g ${TOMCATGRP} -o ${TOMCATOWN} -m 444 JSPWiki.war ${WEBAPPDIR}; + +.if !defined(NOPORTDOCS) + ${MKDIR} ${DOCSDIR} +.for i in ${PORTDOCS} + ${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR} +.endfor +.endif + +post-install: + @${CAT} ${PKGMESSAGE} + +.include <bsd.port.mk> diff --git a/www/jspwiki/distinfo b/www/jspwiki/distinfo new file mode 100644 index 000000000000..225a06c9ecb9 --- /dev/null +++ b/www/jspwiki/distinfo @@ -0,0 +1,3 @@ +MD5 (JSPWiki-2.8.2-bin.zip) = df6150ead30c3f914815f5ab51ae9262 +SHA256 (JSPWiki-2.8.2-bin.zip) = 7acd36c6bbd3bc0db8e416ec8532cf308ee7fcd3fbdc1206e9e5af1f625ec84f +SIZE (JSPWiki-2.8.2-bin.zip) = 7986857 diff --git a/www/jspwiki/pkg-descr b/www/jspwiki/pkg-descr new file mode 100644 index 000000000000..d13657158567 --- /dev/null +++ b/www/jspwiki/pkg-descr @@ -0,0 +1,10 @@ +JSPWiki is a feature-rich and extensible WikiWiki engine built +around the standard J2EE components (Java,servlets,JSP). + +It's features include:WikiMarkup/Structured Text,File attachments, +Templates support,Data storage,Security,Easy plugin interface for +writing your own additions,UTF-8 support,JavaServerPages-based, +Easy-ish installation, Page locking to prevent editing conflicts, +Support for Multiple Wikis,etc. + +WWW: http://www.jspwiki.org/ diff --git a/www/jspwiki/pkg-message b/www/jspwiki/pkg-message new file mode 100644 index 000000000000..25457f583b59 --- /dev/null +++ b/www/jspwiki/pkg-message @@ -0,0 +1,9 @@ +========================================================================== +Now you should start your Tomcat server and browse with: + + http://your-server:8180/JSPWiki/ + +to do some configuration. + +Enjoy it ! +========================================================================== |