58 lines
2.3 KiB
Bash
58 lines
2.3 KiB
Bash
|
# Copyright 1999-2008 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/downloadsplugin/0.11/"
|
||
|
DESCRIPTION="This plugin provides downloads section which may contain releases or other files."
|
||
|
HOMEPAGE="http://trac-hacks.org/wiki/DownloadsPlugin"
|
||
|
# SRC_URI="mirror://gentoo/${P}.tar.bz2"
|
||
|
|
||
|
LICENSE="trac"
|
||
|
KEYWORDS="~amd64 ~ppc64 ~x86"
|
||
|
IUSE=""
|
||
|
|
||
|
SLOT="0"
|
||
|
|
||
|
DEPEND="=www-apps/trac-0.11*
|
||
|
>=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 GitPlugin plugin in your Trac environments, you have to add:"
|
||
|
elog " [components]"
|
||
|
elog " tracdownloads.api.DownloadsApi = enabled"
|
||
|
elog " tracdownloads.core.DownloadsCore = enabled"
|
||
|
elog " tracdownloads.init.DownloadsInit = enabled"
|
||
|
elog " tracdownloads.timeline.DownloadsTimeline = enabled"
|
||
|
elog " tracdownloads.wiki.DownloadsWiki = enabled"
|
||
|
elog " tracdownloads.admin.DownloadsWebAdmin = enabled # Branch 0.10 and 0.11."
|
||
|
elog " tracdownloads.webadmin.DownloadsWebAdmin = enabled # Branch 0.12 only."
|
||
|
elog " tracdownloads.consoleadmin.DownloadsConsoleAdmin = enabled # Branch 0.12 only."
|
||
|
elog " tracdownloads.core.DownloadsDownloads = enabled # Branch 0.12 only."
|
||
|
elog " tracdownloads.tags.DownloadsTags = enabled # With TagsPlugin installed."
|
||
|
elog " [downloads]"
|
||
|
elog " title = Downloads"
|
||
|
elog " path = /var/lib/trac/downloads"
|
||
|
elog " ext = zip gz bz2 rar # For 0.10 and 0.11 branch."
|
||
|
elog " ext = zip,gz,bz2,rar # For 0.12 branch."
|
||
|
elog " visible_fields = id file description size time count author tags component version \"
|
||
|
elog " architecture platform type # For 0.10 and 0.11 branch."
|
||
|
elog " visible_fields = id,file,description,size,time,count,author,tags,component,version, \"
|
||
|
elog " architecture,platform,type # For 0.12 branch."
|
||
|
elog " unique_filename = False"
|
||
|
elog " consoleadmin_user = anonymous # Branch 0.12 only."
|
||
|
elog ""
|
||
|
elog "to your trac.ini files."
|
||
|
}
|