diff options
| author | Andreas Sturmlechner <asturm@gentoo.org> | 2018-01-13 03:49:49 +0100 |
|---|---|---|
| committer | Sebastian Pipping <sping@gentoo.org> | 2018-01-14 20:14:18 +0100 |
| commit | 67cdc514c03e846d11bfd26c3252a835aa57e267 (patch) | |
| tree | d28b421b43efce9a7df350c65ac8e125e2cd3ee6 /dev-vcs/svn2git/svn2git-1.0.11-r1.ebuild | |
| parent | 245e296b2cf5918d52b52e33af1822d424732ebe (diff) | |
| download | gentoo-67cdc514c03e846d11bfd26c3252a835aa57e267.tar.gz gentoo-67cdc514c03e846d11bfd26c3252a835aa57e267.tar.bz2 gentoo-67cdc514c03e846d11bfd26c3252a835aa57e267.zip | |
dev-vcs/svn2git: Switch to Qt5
Closes: https://github.com/gentoo/gentoo/pull/6844
Package-Manager: Portage-2.3.19, Repoman-2.3.6
Diffstat (limited to 'dev-vcs/svn2git/svn2git-1.0.11-r1.ebuild')
| -rw-r--r-- | dev-vcs/svn2git/svn2git-1.0.11-r1.ebuild | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/dev-vcs/svn2git/svn2git-1.0.11-r1.ebuild b/dev-vcs/svn2git/svn2git-1.0.11-r1.ebuild new file mode 100644 index 000000000000..0fd35c4b742f --- /dev/null +++ b/dev-vcs/svn2git/svn2git-1.0.11-r1.ebuild @@ -0,0 +1,53 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit desktop qmake-utils +[[ "${PV}" == "9999" ]] && inherit git-r3 + +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" +else + SRC_URI="https://github.com/svn-all-fast-export/svn2git/archive/${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64 ~x86" +fi + +LICENSE="GPL-3" +SLOT="0" +IUSE="" +# KEYWORDS way up + +DEPEND=" + dev-qt/qtcore:5 + dev-vcs/subversion" +RDEPEND="${DEPEND} + dev-vcs/git" + +DOCS=( README.md ) + +PATCHES=( "${FILESDIR}"/${PN}-1.0.2.1-include-path.patch ) + +src_prepare() { + # Note: patching order matters + default + + if [[ "${PV}" != "9999" ]]; then + eapply "${FILESDIR}"/${PN}-1.0.10-version.patch + export SVN_ALL_FAST_EXPORT_VERSION=${PVR} # for src_compile + fi +} + +src_configure() { + eqmake5 fast-export2.pro +} + +src_install() { + einstalldocs + 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' +} |
