add trac-themeengine

git-svn-id: https://svn.disconnected-by-peer.at/svn/linamh/trunk/linamh@164 6952d904-891a-0410-993b-d76249ca496b
This commit is contained in:
geos_one 2007-08-18 13:20:41 +00:00
parent 84f474579a
commit cc276179a3
3 changed files with 46 additions and 0 deletions

View File

@ -0,0 +1,7 @@
EBUILD trac-themeengine-1.0.ebuild 1152 RMD160 a523f74e56befb655cc9355c9bbae6b14b9eaa11 SHA1 56817a116eecc30347a16701a908a95ae2fd63d7 SHA256 59999434f19eb2438631e5b959953bf389e4700067b09d50e996c4f64021cd96
MD5 fccc1b90330de928bf6859eb34183870 trac-themeengine-1.0.ebuild 1152
RMD160 a523f74e56befb655cc9355c9bbae6b14b9eaa11 trac-themeengine-1.0.ebuild 1152
SHA256 59999434f19eb2438631e5b959953bf389e4700067b09d50e996c4f64021cd96 trac-themeengine-1.0.ebuild 1152
MD5 d41d8cd98f00b204e9800998ecf8427e files/digest-trac-themeengine-1.0 0
RMD160 9c1185a5c5e9fc54612808977ee8f548b2258d31 files/digest-trac-themeengine-1.0 0
SHA256 e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 files/digest-trac-themeengine-1.0 0

View File

@ -0,0 +1,39 @@
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/www-apps/trac-webadmin/trac-webadmin-0.1.2.ebuild,v 1.4 2007/02/13 20:39:33 corsair Exp $
inherit distutils subversion
ESVN_REPO_URI="http://trac-hacks.org/svn/themeengineplugin/0.10"
DESCRIPTION="A Trac plugin that simplifies the process of distributing and deploying themes and styles."
HOMEPAGE="http://trac-hacks.org/wiki/ThemeEnginePlugin"
# SRC_URI="mirror://gentoo/${P}.tar.bz2"
LICENSE="trac"
KEYWORDS="~amd64 ~ppc64 ~x86"
IUSE=""
SLOT="0"
DEPEND=">=www-apps/trac-0.10
>=dev-python/setuptools-0.6_rc1"
# from marienz's setuptools.eclass:
src_install() {
"${python}" setup.py install --root=${D} --no-compile \
--single-version-externally-managed "$@" || die "install failed"
}
src_test() {
"${python}" setup.py test || die "tests failed"
}
pkg_postinst() {
elog "To enable the Modular styles manager plugin in your Trac environments, you have to add:"
elog " [components]"
elog " themeengine.* = enabled"
elog
elog " [theme]"
elog " theme = <Name>"
elog "to your trac.ini files."
}