32 lines
789 B
Bash
32 lines
789 B
Bash
|
# Copyright 1999-2010 Gentoo Foundation
|
||
|
# Distributed under the terms of the GNU General Public License v2
|
||
|
# $Header: /var/cvsroot/gentoo-x86/www-apps/trac-git/trac-git-8215.ebuild,v 1.2 2010/07/05 11:00:44 hollow Exp $
|
||
|
|
||
|
EAPI="2"
|
||
|
PYTHON_DEPEND="2"
|
||
|
SUPPORT_PYTHON_ABIS="1"
|
||
|
RESTRICT_PYTHON_ABIS="3.*"
|
||
|
|
||
|
inherit distutils git
|
||
|
|
||
|
EGIT_REPO_URI="git://github.com/dr4Ke/TracGitosisPlugin.git"
|
||
|
DESCRIPTION="partial gitosis administration for Trac"
|
||
|
HOMEPAGE="http://trac-hacks.org/wiki/TracGitosisPlugin"
|
||
|
|
||
|
LICENSE="GPL-2"
|
||
|
SLOT="0"
|
||
|
KEYWORDS="~amd64 ~x86"
|
||
|
IUSE=""
|
||
|
|
||
|
DEPEND="dev-python/setuptools
|
||
|
app-arch/unzip"
|
||
|
RDEPEND=">=www-apps/trac-0.12
|
||
|
|| ( dev-vcs/gitosis dev-vcs/gitosis-gentoo )"
|
||
|
|
||
|
S="${WORKDIR}/gitosisplugin/0.11"
|
||
|
|
||
|
src_install() {
|
||
|
distutils_src_install
|
||
|
rm -f "${D}"/usr/{README,COPYING}
|
||
|
}
|