* [gentoo-commits] proj/betagarden:master commit in: dev-vcs/rapidsvn/, dev-vcs/rapidsvn/files/
@ 2012-01-31 14:35 Justin Lecher
0 siblings, 0 replies; 3+ messages in thread
From: Justin Lecher @ 2012-01-31 14:35 UTC (permalink / raw
To: gentoo-commits
commit: c2fa892edce45091244ccd9b6d51800831a605a5
Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Tue Jan 31 14:35:00 2012 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Tue Jan 31 14:35:00 2012 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/betagarden.git;a=commit;h=c2fa892e
Add live ebuild
(Portage version: 2.2.0_alpha84/git/Linux x86_64, signed Manifest commit with key 70EB7916)
---
dev-vcs/rapidsvn/ChangeLog | 10 ++
dev-vcs/rapidsvn/files/rapidsvn-svncpp_link.patch | 12 +++
dev-vcs/rapidsvn/metadata.xml | 7 ++
dev-vcs/rapidsvn/rapidsvn-9999.ebuild | 104 +++++++++++++++++++++
4 files changed, 133 insertions(+), 0 deletions(-)
diff --git a/dev-vcs/rapidsvn/ChangeLog b/dev-vcs/rapidsvn/ChangeLog
new file mode 100644
index 0000000..207b1b2
--- /dev/null
+++ b/dev-vcs/rapidsvn/ChangeLog
@@ -0,0 +1,10 @@
+# ChangeLog for dev-vcs/rapidsvn
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# $Header: $
+
+*rapidsvn-9999 (31 Jan 2012)
+
+ 31 Jan 2012; Justin Lecher <jlec@gentoo.org> +rapidsvn-9999.ebuild,
+ +files/rapidsvn-svncpp_link.patch, +metadata.xml:
+ Add live ebuild
+
diff --git a/dev-vcs/rapidsvn/files/rapidsvn-svncpp_link.patch b/dev-vcs/rapidsvn/files/rapidsvn-svncpp_link.patch
new file mode 100644
index 0000000..4df855f
--- /dev/null
+++ b/dev-vcs/rapidsvn/files/rapidsvn-svncpp_link.patch
@@ -0,0 +1,12 @@
+Index: src/svncpp/Makefile.am
+===================================================================
+--- src/svncpp/Makefile.am (revision 7100)
++++ src/svncpp/Makefile.am (working copy)
+@@ -27,3 +27,7 @@
+ url.cpp \
+ wc.cpp
+
++libsvncpp_la_LIBADD= $(SVN_LIBS) \
++ $(NEON_LIBS) \
++ $(APR_LIBS) \
++ -lstdc++
diff --git a/dev-vcs/rapidsvn/metadata.xml b/dev-vcs/rapidsvn/metadata.xml
new file mode 100644
index 0000000..cc3fe24
--- /dev/null
+++ b/dev-vcs/rapidsvn/metadata.xml
@@ -0,0 +1,7 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer>
+ <email>maintainer-wanted@gentoo.org</email>
+ </maintainer>
+</pkgmetadata>
diff --git a/dev-vcs/rapidsvn/rapidsvn-9999.ebuild b/dev-vcs/rapidsvn/rapidsvn-9999.ebuild
new file mode 100644
index 0000000..904d7f8
--- /dev/null
+++ b/dev-vcs/rapidsvn/rapidsvn-9999.ebuild
@@ -0,0 +1,104 @@
+# Copyright 1999-2012 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/dev-vcs/rapidsvn/rapidsvn-0.12.0.ebuild,v 1.4 2011/12/04 16:41:54 hwoarang Exp $
+
+EAPI=4
+
+WANT_AUTOCONF="2.5"
+WX_GTK_VER=2.8
+
+AUTOTOOLS_AUTORECONF=true
+
+inherit autotools-utils confutils fdo-mime flag-o-matic libtool subversion versionator wxwidgets
+
+MY_PV=$(get_version_component_range 1-2)
+MY_REL="1"
+
+DESCRIPTION="Cross-platform GUI front-end for the Subversion revision system."
+HOMEPAGE="http://rapidsvn.tigris.org/"
+#SRC_URI="http://www.rapidsvn.org/download/release/${MY_PV}/${P}-${MY_REL}.tar.gz"
+SRC_URI=""
+ESVN_USER="guest"
+ESVN_PASSWORD=""
+ESVN_OPTIONS="--no-auth-cache"
+ESVN_REPO_URI="http://rapidsvn.tigris.org/svn/rapidsvn/trunk"
+
+LICENSE="GPL-2 LGPL-2.1 FDL-1.2"
+SLOT="0"
+KEYWORDS=""
+IUSE="doc"
+
+COMMON_DEP="
+ dev-libs/apr
+ dev-libs/apr-util
+ || (
+ >=dev-vcs/subversion-1.7.0[webdav-neon]
+ >=dev-vcs/subversion-1.7.0[webdav-serf] )
+ x11-libs/wxGTK:2.8[X]"
+DEPEND="${COMMON_DEP}
+ doc? (
+ dev-libs/libxslt
+ app-text/docbook-sgml-utils
+ app-doc/doxygen
+ app-text/docbook-xsl-stylesheets )"
+RDEPEND="${COMMON_DEP}"
+
+S="${WORKDIR}/${P}-${MY_REL}"
+
+PATCHES=( "${FILESDIR}/${PN}-svncpp_link.patch" )
+DOCS=( HACKING.txt TRANSLATIONS )
+
+pkg_setup() {
+ wxwidgets_pkg_setup
+}
+
+src_prepare() {
+ subversion_src_prepare
+ autotools-utils_src_prepare
+}
+
+src_configure() {
+ local myeconfargs=( --with-wx-config=${WX_CONFIG} )
+ local apr_suffix="-1"
+
+ if use doc; then
+ myeconfargs+=( --with-manpage=yes )
+ else
+ myeconfargs+=(
+ --without-xsltproc
+ --with-manpage=no
+ --without-doxygen
+ --without-dot )
+ fi
+
+ append-flags $( "${EPREFIX}"/usr/bin/apr-1-config --cppflags )
+
+ myeconfargs+=(
+ --with-svn-lib="${EPREFIX}"/usr/$(get_libdir)
+ --with-svn-include="${EPREFIX}"/usr/include
+ --with-apr-config="${EPREFIX}/usr/bin/apr-1-config"
+ --with-apu-config="${EPREFIX}/usr/bin/apu-1-config"
+ )
+ autotools-utils_src_configure
+}
+
+src_install() {
+ autotools-utils_src_install
+
+ doicon src/res/rapidsvn.ico
+ make_desktop_entry rapidsvn "RapidSVN ${PV}" \
+ "${EPREFIX}/usr/share/pixmaps/rapidsvn.ico" \
+ "RevisionControl;Development"
+
+ if use doc ; then
+ dohtml "${S}"/doc/svncpp/html/*
+ fi
+}
+
+pkg_postinst() {
+ fdo-mime_desktop_database_update
+}
+
+pkg_postrm() {
+ fdo-mime_desktop_database_update
+}
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [gentoo-commits] proj/betagarden:master commit in: dev-vcs/rapidsvn/, dev-vcs/rapidsvn/files/
@ 2012-02-17 7:44 Justin Lecher
0 siblings, 0 replies; 3+ messages in thread
From: Justin Lecher @ 2012-02-17 7:44 UTC (permalink / raw
To: gentoo-commits
commit: 7e98e97e37a611170be87f45861caa525ad7d8b1
Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Wed Feb 8 13:21:51 2012 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Wed Feb 8 13:21:51 2012 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/betagarden.git;a=commit;h=7e98e97e
Adopt patch again
(Portage version: 2.2.0_alpha85/git/Linux x86_64, signed Manifest commit with key 70EB7916)
---
dev-vcs/rapidsvn/ChangeLog | 4 ++++
dev-vcs/rapidsvn/files/rapidsvn-svncpp_link.patch | 13 +++++++------
2 files changed, 11 insertions(+), 6 deletions(-)
diff --git a/dev-vcs/rapidsvn/ChangeLog b/dev-vcs/rapidsvn/ChangeLog
index 88e8b1c..5bc95e1 100644
--- a/dev-vcs/rapidsvn/ChangeLog
+++ b/dev-vcs/rapidsvn/ChangeLog
@@ -2,6 +2,10 @@
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
# $Header: $
+ 08 Feb 2012; Justin Lecher <jlec@gentoo.org>
+ files/rapidsvn-svncpp_link.patch:
+ Adopt patch again
+
07 Feb 2012; Justin Lecher <jlec@gentoo.org> rapidsvn-9999.ebuild:
Remove forced webdav dependency in subversion, reported by Denis Scherbakov
diff --git a/dev-vcs/rapidsvn/files/rapidsvn-svncpp_link.patch b/dev-vcs/rapidsvn/files/rapidsvn-svncpp_link.patch
index 4df855f..98479f9 100644
--- a/dev-vcs/rapidsvn/files/rapidsvn-svncpp_link.patch
+++ b/dev-vcs/rapidsvn/files/rapidsvn-svncpp_link.patch
@@ -1,12 +1,13 @@
-Index: src/svncpp/Makefile.am
+Index: libsvncpp/Makefile.am
===================================================================
---- src/svncpp/Makefile.am (revision 7100)
-+++ src/svncpp/Makefile.am (working copy)
-@@ -27,3 +27,7 @@
- url.cpp \
- wc.cpp
+--- libsvncpp/Makefile.am (revision 8244)
++++ libsvncpp/Makefile.am (working copy)
+@@ -60,3 +60,8 @@
+ src/url.cpp \
+ src/wc.cpp
+libsvncpp_la_LIBADD= $(SVN_LIBS) \
+ $(NEON_LIBS) \
+ $(APR_LIBS) \
+ -lstdc++
++
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [gentoo-commits] proj/betagarden:master commit in: dev-vcs/rapidsvn/, dev-vcs/rapidsvn/files/
@ 2012-02-18 14:09 Justin Lecher
0 siblings, 0 replies; 3+ messages in thread
From: Justin Lecher @ 2012-02-18 14:09 UTC (permalink / raw
To: gentoo-commits
commit: 4c9b1b266e260d83cba6d1c9454165d2429f7489
Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Sat Feb 18 14:06:59 2012 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Sat Feb 18 14:06:59 2012 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/betagarden.git;a=commit;h=4c9b1b26
Fix for current HEAD
(Portage version: 2.2.0_alpha86/git/Linux x86_64, signed Manifest commit with key 70EB7916)
---
dev-vcs/rapidsvn/ChangeLog | 4 ++++
dev-vcs/rapidsvn/files/rapidsvn-svncpp_link.patch | 4 ++--
2 files changed, 6 insertions(+), 2 deletions(-)
diff --git a/dev-vcs/rapidsvn/ChangeLog b/dev-vcs/rapidsvn/ChangeLog
index 4bb7717..b6f66b3 100644
--- a/dev-vcs/rapidsvn/ChangeLog
+++ b/dev-vcs/rapidsvn/ChangeLog
@@ -2,6 +2,10 @@
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
# $Header: $
+ 18 Feb 2012; Justin Lecher <jlec@gentoo.org>
+ files/rapidsvn-svncpp_link.patch:
+ Fix for current HEAD
+
01 Feb 2012; Justin Lecher <jlec@gentoo.org> rapidsvn-9999.ebuild:
Add support for static-libs
diff --git a/dev-vcs/rapidsvn/files/rapidsvn-svncpp_link.patch b/dev-vcs/rapidsvn/files/rapidsvn-svncpp_link.patch
index 4df855f..da85858 100644
--- a/dev-vcs/rapidsvn/files/rapidsvn-svncpp_link.patch
+++ b/dev-vcs/rapidsvn/files/rapidsvn-svncpp_link.patch
@@ -1,7 +1,7 @@
Index: src/svncpp/Makefile.am
===================================================================
---- src/svncpp/Makefile.am (revision 7100)
-+++ src/svncpp/Makefile.am (working copy)
+--- libsvncpp/Makefile.am
++++ libsvncpp/Makefile.am
@@ -27,3 +27,7 @@
url.cpp \
wc.cpp
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2012-02-18 14:10 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-01-31 14:35 [gentoo-commits] proj/betagarden:master commit in: dev-vcs/rapidsvn/, dev-vcs/rapidsvn/files/ Justin Lecher
-- strict thread matches above, loose matches on Subject: below --
2012-02-17 7:44 Justin Lecher
2012-02-18 14:09 Justin Lecher
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox