# 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 DESCRIPTION="This is a plugin for Trac (0.9, 0.10 or 0.11 (beta)) which enables Perforce to be used instead of Subversion for the VersioningSystemBackend." HOMEPAGE="http://trac-hacks.org/wiki/PerforcePlugin" SRC_URI="http://trac-hacks.org/changeset/latest/perforceplugin/branches/trac-0.10?old_path=/&filename=perforceplugin/branches/trac-0.10&format=zip" LICENSE="trac" KEYWORDS="~amd64 ~ppc64 ~x86" IUSE="" SLOT="0" DEPEND=">=www-apps/trac-0.10 >=dev-python/setuptools-0.6_rc1 >=dev-python/pyprotocols-0.9.3 >=dev-python/pyperforce-0.4 " src_install() { cd perforceplugin/branches/trac-0.10 "${python}" setup.py install --root=${D} --no-compile \ --single-version-externally-managed "$@" || die "install failed" } src_compile() { cd perforceplugin/branches/trac-0.10 "${python}" setup.py bdist_egg } src_test() { "${python}" setup.py test || die "tests failed" } src_unpack() { unzip ${DISTDIR}/${A} } pkg_postinst() { elog "To enable the trac-perforce plugin in your Trac environments, you have to add:" elog " [components]" elog " p4trac.* = enabled" elog "to your trac.ini files." elog elog "Alternatively, check out the trac-webadmin package." }