diff options
author | Brooks Davis <brooks@FreeBSD.org> | 2009-01-09 23:53:48 +0000 |
---|---|---|
committer | Brooks Davis <brooks@FreeBSD.org> | 2009-01-09 23:53:48 +0000 |
commit | e063b78abfb38e5d662ba4e47e9fcf38f86e3655 (patch) | |
tree | 216c5a4393c37caebbf7dd44eabe075dea4140f0 | |
parent | This plugin provides a project Blog, but unlike TracBlogPlugin and (diff) |
This plugin simplifies the process of distributing and deploying
themes and styles.
WWW: http://trac-hacks.org/wiki/ThemeEnginePlugin
Notes
Notes:
svn path=/head/; revision=225623
-rw-r--r-- | www/Makefile | 1 | ||||
-rw-r--r-- | www/trac-themeengine/Makefile | 34 | ||||
-rw-r--r-- | www/trac-themeengine/distinfo | 3 | ||||
-rw-r--r-- | www/trac-themeengine/pkg-descr | 4 |
4 files changed, 42 insertions, 0 deletions
diff --git a/www/Makefile b/www/Makefile index 307ee99f5e6e..c26d9dca6d23 100644 --- a/www/Makefile +++ b/www/Makefile @@ -1433,6 +1433,7 @@ SUBDIR += trac-simpleticket SUBDIR += trac-spam-filter SUBDIR += trac-tags + SUBDIR += trac-themeengine SUBDIR += trac-ticketdelete SUBDIR += trac-tocmacro SUBDIR += trac-tweakui diff --git a/www/trac-themeengine/Makefile b/www/trac-themeengine/Makefile new file mode 100644 index 000000000000..cca352449c8c --- /dev/null +++ b/www/trac-themeengine/Makefile @@ -0,0 +1,34 @@ +# New ports collection makefile for: trac-themeengine +# Date created: January 9, 2009 +# Whom: Brooks Davis <brooks@freebsd.org> +# +# $FreeBSD$ +# + +PORTNAME= ${PYDISTUTILS_PKGNAME:S;^Trac;;:L} +PORTVERSION= 2.0 +CATEGORIES= www devel python +MASTER_SITES= ${MASTER_SITE_LOCAL} +MASTER_SITE_SUBDIR= brooks +PKGNAMEPREFIX= trac- +DISTNAME= ${PORTNAME}plugin-${PORTVERSION} + +MAINTAINER= brooks@freebsd.org +COMMENT= Plugin to simplify distributing and deploying themes and styles + +RUN_DEPENDS+= tracd:${PORTSDIR}/www/trac +BUILD_DEPENDS+= easy_install:${PORTSDIR}/devel/py-setuptools + +USE_PYTHON= 2.3+ +NO_BUILD= yes +USE_PYDISTUTILS=yes +PYDISTUTILS_PKGNAME= TracThemeEngine +WRKSRC= ${WRKDIR}/${PORTNAME}plugin +PYDISTUTILS_NOEGGINFO= yes + +PLIST_FILES= %%PYTHON_SITELIBDIR%%/${PYDISTUTILS_PKGNAME}-${PORTVERSION}-py${PYTHON_VER}.egg + +do-build: + @${DO_NADA} + +.include <bsd.port.mk> diff --git a/www/trac-themeengine/distinfo b/www/trac-themeengine/distinfo new file mode 100644 index 000000000000..06e1fba90682 --- /dev/null +++ b/www/trac-themeengine/distinfo @@ -0,0 +1,3 @@ +MD5 (themeengineplugin-2.0.tar.gz) = 47d0034083b5911a3a8cbebdb33dad58 +SHA256 (themeengineplugin-2.0.tar.gz) = f28a7a2ca4031f1d8337ebf9408b4b567225fe1c94252825b38755877fbeaf94 +SIZE (themeengineplugin-2.0.tar.gz) = 144882 diff --git a/www/trac-themeengine/pkg-descr b/www/trac-themeengine/pkg-descr new file mode 100644 index 000000000000..ff85496d9bcb --- /dev/null +++ b/www/trac-themeengine/pkg-descr @@ -0,0 +1,4 @@ +This plugin simplifies the process of distributing and deploying +themes and styles. + +WWW: http://trac-hacks.org/wiki/ThemeEnginePlugin |