commit:     6fbb5f0e32f5eab40f8cf30a73c5002139b3c347
Author:     Sebastian Pipping <sping <AT> gentoo <DOT> org>
AuthorDate: Wed Apr 17 21:57:51 2019 +0000
Commit:     Sebastian Pipping <sping <AT> gentoo <DOT> org>
CommitDate: Wed Apr 17 21:58:29 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6fbb5f0e

dev-vcs/svn2git: Fix compilation

Closes: https://bugs.gentoo.org/682802
Signed-off-by: Sebastian Pipping <sping <AT> gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.12

 dev-vcs/svn2git/files/svn2git-1.0.13-src-pro.patch | 23 ++++++++++
 dev-vcs/svn2git/svn2git-1.0.13-r1.ebuild           | 51 ++++++++++++++++++++++
 2 files changed, 74 insertions(+)

diff --git a/dev-vcs/svn2git/files/svn2git-1.0.13-src-pro.patch 
b/dev-vcs/svn2git/files/svn2git-1.0.13-src-pro.patch
new file mode 100644
index 00000000000..74ee4306b3c
--- /dev/null
+++ b/dev-vcs/svn2git/files/svn2git-1.0.13-src-pro.patch
@@ -0,0 +1,23 @@
+From 59a038796e6bb55b11b6d82f7d5aae42399da38a Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Bj=C3=B6rn=20Kautler?= <bjo...@kautler.net>
+Date: Fri, 12 Apr 2019 01:39:51 +0200
+Subject: [PATCH] Fix evaluation of emptyness of SVN_LIBDIR that sometimes
+ always gives false, sometime always true, but never what is intended
+
+---
+ src/src.pro | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/src/src.pro b/src/src.pro
+index 426d304..cfbd865 100644
+--- a/src/src.pro
++++ b/src/src.pro
+@@ -28,7 +28,7 @@ DEPENDPATH += .
+ QT = core
+ 
+ INCLUDEPATH += . $$SVN_INCLUDE $$APR_INCLUDE
+-!isEmpty($$SVN_LIBDIR): LIBS += -L$$SVN_LIBDIR
++!isEmpty(SVN_LIBDIR): LIBS += -L$$SVN_LIBDIR
+ LIBS += -lsvn_fs-1 -lsvn_repos-1 -lapr-1 -lsvn_subr-1
+ 
+ # Input

diff --git a/dev-vcs/svn2git/svn2git-1.0.13-r1.ebuild 
b/dev-vcs/svn2git/svn2git-1.0.13-r1.ebuild
new file mode 100644
index 00000000000..dc22eca75dd
--- /dev/null
+++ b/dev-vcs/svn2git/svn2git-1.0.13-r1.ebuild
@@ -0,0 +1,51 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+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}"/${P}-src-pro.patch
+)
+
+src_configure() {
+       local qmake_args=(
+               APR_INCLUDE=/usr/include/apr-1
+               PREFIX=/usr
+               SVN_INCLUDE=/usr/include/subversion-1
+               VERSION=${PV}
+       )
+       eqmake5 "${qmake_args[@]}" 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'
+}

Reply via email to