diff options
Diffstat (limited to 'dev-vcs/svn2git/svn2git-1.0.5.ebuild')
-rw-r--r-- | dev-vcs/svn2git/svn2git-1.0.5.ebuild | 47 |
1 files changed, 0 insertions, 47 deletions
diff --git a/dev-vcs/svn2git/svn2git-1.0.5.ebuild b/dev-vcs/svn2git/svn2git-1.0.5.ebuild deleted file mode 100644 index bd17728959e9..000000000000 --- a/dev-vcs/svn2git/svn2git-1.0.5.ebuild +++ /dev/null @@ -1,47 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI="2" - -inherit eutils qt4-r2 -[ "$PV" == "9999" ] && inherit git - -DESCRIPTION="Tool for one-time conversion from svn to git" -HOMEPAGE="https://github.com/svn-all-fast-export/svn2git" -if [ "$PV" == "9999" ]; then - EGIT_REPO_URI="https://github.com/svn-all-fast-export/svn2git.git" - KEYWORDS="" -else - SRC_URI="https://www.hartwork.org/public/${P}.tar.gz" - KEYWORDS="~amd64 ~x86" -fi - -LICENSE="GPL-3" -SLOT="0" -IUSE="" -# KEYWORDS way up - -DEPEND="dev-vcs/subversion - dev-qt/qtcore:4" -RDEPEND="${DEPEND} - dev-vcs/git" - -S=${WORKDIR}/${PN}-${PN} - -src_prepare() { - # Note: patching order matters - epatch "${FILESDIR}"/${PN}-1.0.2.1-include-path.patch - if [[ "$PV" != "9999" ]]; then - epatch "${FILESDIR}"/${P}-version.patch - fi - - qt4-r2_src_prepare -} - -src_install() { - insinto /usr/share/${PN}/samples - doins samples/*.rules || die 'doins failed' - dobin svn-all-fast-export || die 'dobin failed' - dosym svn-all-fast-export /usr/bin/svn2git || die 'dosym failed' -} |