summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFabian Groffen <grobian@gentoo.org>2012-09-29 15:06:47 +0000
committerFabian Groffen <grobian@gentoo.org>2012-09-29 15:06:47 +0000
commit9c68665a8e3bf3fa37f96958b0a2da6b39c509ab (patch)
treea2842c0c1dbc02f7231133d6ffe318d9722209cc /dev-vcs
parentSpecify LICENSE more precisely: "as-is" is really "man-pages", GPL is the "or... (diff)
downloadgentoo-2-9c68665a8e3bf3fa37f96958b0a2da6b39c509ab.tar.gz
gentoo-2-9c68665a8e3bf3fa37f96958b0a2da6b39c509ab.tar.bz2
gentoo-2-9c68665a8e3bf3fa37f96958b0a2da6b39c509ab.zip
Fix (sys)confdir location for Prefix, bug #435434
(Portage version: 2.2.01.21143-prefix/cvs/Darwin i386)
Diffstat (limited to 'dev-vcs')
-rw-r--r--dev-vcs/colorsvn/ChangeLog8
-rw-r--r--dev-vcs/colorsvn/colorsvn-0.3.2-r2.ebuild9
2 files changed, 12 insertions, 5 deletions
diff --git a/dev-vcs/colorsvn/ChangeLog b/dev-vcs/colorsvn/ChangeLog
index c53e5b73d9e8..08316104f395 100644
--- a/dev-vcs/colorsvn/ChangeLog
+++ b/dev-vcs/colorsvn/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for dev-vcs/colorsvn
-# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-vcs/colorsvn/ChangeLog,v 1.7 2010/12/29 16:20:06 hwoarang Exp $
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-vcs/colorsvn/ChangeLog,v 1.8 2012/09/29 15:06:47 grobian Exp $
+
+ 29 Sep 2012; Fabian Groffen <grobian@gentoo.org> colorsvn-0.3.2-r2.ebuild:
+ Fix (sys)confdir location for Prefix, bug #435434
29 Dec 2010; Markos Chandras <hwoarang@gentoo.org> colorsvn-0.3.2-r2.ebuild:
Stable on amd64 wrt bug #335134
@@ -46,4 +49,3 @@
10 Mar 2009; Christian Ruppert (idl0r) <idl0r@gentoo.org> +metadata.xml,
+colorsvn-0.3.2.ebuild:
New ebuild for bug 250750 thanks to Henning Schild
-
diff --git a/dev-vcs/colorsvn/colorsvn-0.3.2-r2.ebuild b/dev-vcs/colorsvn/colorsvn-0.3.2-r2.ebuild
index 56ebe2eab415..38cf15ad9790 100644
--- a/dev-vcs/colorsvn/colorsvn-0.3.2-r2.ebuild
+++ b/dev-vcs/colorsvn/colorsvn-0.3.2-r2.ebuild
@@ -1,6 +1,6 @@
-# Copyright 1999-2010 Gentoo Foundation
+# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-vcs/colorsvn/colorsvn-0.3.2-r2.ebuild,v 1.3 2010/12/29 16:20:06 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-vcs/colorsvn/colorsvn-0.3.2-r2.ebuild,v 1.4 2012/09/29 15:06:47 grobian Exp $
EAPI="3"
@@ -22,6 +22,11 @@ DEPEND="${RDEPEND}"
src_prepare() {
# rxvt-unicode isn't listed by default :)
sed -i -e 's:rxvt:rxvt rxvt-unicode:' colorsvnrc-original || die
+ # Fix confdir location for Prefix, #435434
+ sed -i \
+ -e '/^confdir/d' \
+ -e 's/$(confdir)/$(sysconfdir)/g' \
+ Makefile.in || die
epatch "${FILESDIR}/0001-Don-t-colorize-svn-mkdir-bug-321451.-Use-IPC-open2-i.patch"
}