summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKacper Kowalik <xarthisius@gentoo.org>2012-01-13 18:46:25 +0000
committerKacper Kowalik <xarthisius@gentoo.org>2012-01-13 18:46:25 +0000
commit93b693f2074d8cea5db926b9e62374254d25a406 (patch)
treea1da89c9d782fb003c5566c2988a7faf6fa560d9 /sys-devel/icecream
parentVersion bump. (diff)
downloadgentoo-2-93b693f2074d8cea5db926b9e62374254d25a406.tar.gz
gentoo-2-93b693f2074d8cea5db926b9e62374254d25a406.tar.bz2
gentoo-2-93b693f2074d8cea5db926b9e62374254d25a406.zip
Fix autoreconf with >=automake-1.11.2 wrt bug #397715 by Jason Mours <jason.mours@verizon.net>
(Portage version: 2.2.0_alpha84/cvs/Linux x86_64)
Diffstat (limited to 'sys-devel/icecream')
-rw-r--r--sys-devel/icecream/ChangeLog9
-rw-r--r--sys-devel/icecream/files/0.9.7-automake-1.11.2.patch16
-rw-r--r--sys-devel/icecream/icecream-0.9.7.ebuild11
3 files changed, 29 insertions, 7 deletions
diff --git a/sys-devel/icecream/ChangeLog b/sys-devel/icecream/ChangeLog
index b417a7082585..032aac6a238c 100644
--- a/sys-devel/icecream/ChangeLog
+++ b/sys-devel/icecream/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for sys-devel/icecream
-# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/icecream/ChangeLog,v 1.40 2011/09/25 13:28:17 scarabeus Exp $
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/icecream/ChangeLog,v 1.41 2012/01/13 18:46:25 xarthisius Exp $
+
+ 13 Jan 2012; Kacper Kowalik <xarthisius@gentoo.org>
+ +files/0.9.7-automake-1.11.2.patch, icecream-0.9.7.ebuild:
+ Fix autoreconf with >=automake-1.11.2 wrt bug #397715 by Jason Mours
+ <jason.mours@verizon.net>
*icecream-0.9.7 (25 Sep 2011)
diff --git a/sys-devel/icecream/files/0.9.7-automake-1.11.2.patch b/sys-devel/icecream/files/0.9.7-automake-1.11.2.patch
new file mode 100644
index 000000000000..6536f555e7de
--- /dev/null
+++ b/sys-devel/icecream/files/0.9.7-automake-1.11.2.patch
@@ -0,0 +1,16 @@
+Fix autoreconf with >=automake-1.11.2
+
+https://bugs.gentoo.org/397715
+
+Patch written by Kacper Kowalik <xarthisius@gentoo.org>
+--- client/Makefile.am
++++ client/Makefile.am
+@@ -1,7 +1,7 @@
+ INCLUDES = -I$(srcdir)/../services
+
+ bin_PROGRAMS = icecc
+-pkglib_SCRIPTS = icecc-create-env
++pkgdata_SCRIPTS = icecc-create-env
+ icecc_SOURCES = main.cpp arg.cpp cpp.cpp local.cpp remote.cpp util.cpp md5.c safeguard.cpp
+ icecc_LDADD = ../services/libicecc.la $(LIBRSYNC)
+ noinst_HEADERS = client.h md5.h util.h
diff --git a/sys-devel/icecream/icecream-0.9.7.ebuild b/sys-devel/icecream/icecream-0.9.7.ebuild
index f7d49a0ea09f..e2ccafffc2f8 100644
--- a/sys-devel/icecream/icecream-0.9.7.ebuild
+++ b/sys-devel/icecream/icecream-0.9.7.ebuild
@@ -1,12 +1,12 @@
-# Copyright 1999-2011 Gentoo Foundation
+# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/icecream/icecream-0.9.7.ebuild,v 1.1 2011/09/25 13:28:17 scarabeus Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/icecream/icecream-0.9.7.ebuild,v 1.2 2012/01/13 18:46:25 xarthisius Exp $
EAPI=4
-inherit base autotools
+inherit autotools base
-MY_P="icecc-${PV}"
+MY_P=icecc-${PV}
DESCRIPTION="icecc is a program for distributed compiling of C(++) code across several machines; based on distcc"
HOMEPAGE="http://en.opensuse.org/Icecream"
@@ -17,11 +17,12 @@ SLOT="0"
KEYWORDS="~amd64 ~arm ~hppa ~ppc ~sparc ~x86"
IUSE=""
-S="${WORKDIR}/${MY_P}"
+S=${WORKDIR}/${MY_P}
PATCHES=(
"${FILESDIR}/0.9.6-symlinks.patch"
"${FILESDIR}/0.9.6-crosscompile.patch"
+ "${FILESDIR}/0.9.7-automake-1.11.2.patch"
"${FILESDIR}/${PN}-conf.d-verbosity.patch"
"${FILESDIR}/${PN}-gentoo-multilib.patch"
)