Gentoo Archives: gentoo-commits

From: "Kacper Kowalik (xarthisius)" <xarthisius@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-devel/icecream/files: 0.9.7-automake.patch 0.9.7-automake-1.11.2.patch
Date: Thu, 23 Aug 2012 10:42:20
Message-Id: 20120823104209.A9DB52044A@flycatcher.gentoo.org
1 xarthisius 12/08/23 10:42:09
2
3 Added: 0.9.7-automake.patch
4 Removed: 0.9.7-automake-1.11.2.patch
5 Log:
6 Backport patch fixing build issues with recent automake, drop my patch that caused bug #399259 by Vu Tran Kien <vutrankien.vn@×××××.com>
7
8 (Portage version: 2.2.0_alpha121/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.1 sys-devel/icecream/files/0.9.7-automake.patch
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/icecream/files/0.9.7-automake.patch?rev=1.1&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/icecream/files/0.9.7-automake.patch?rev=1.1&content-type=text/plain
15
16 Index: 0.9.7-automake.patch
17 ===================================================================
18 Backport upstream patch to fix automake-1.12 issues
19
20 https://bugs.gentoo.org/show_bug.cgi?id=397715
21 https://bugs.gentoo.org/show_bug.cgi?id=399259
22 --- client/Makefile.am
23 +++ client/Makefile.am
24 @@ -1,10 +1,11 @@
25 INCLUDES = -I$(srcdir)/../services
26
27 bin_PROGRAMS = icecc
28 -pkglib_SCRIPTS = icecc-create-env
29 +pkglibexec_SCRIPTS = icecc-create-env
30 icecc_SOURCES = main.cpp arg.cpp cpp.cpp local.cpp remote.cpp util.cpp md5.c safeguard.cpp
31 icecc_LDADD = ../services/libicecc.la $(LIBRSYNC)
32 noinst_HEADERS = client.h md5.h util.h
33 +AM_CPPFLAGS = -DPLIBDIR=\"$(pkglibexecdir)\"
34
35 EXTRA_DIST = icecc-create-env
36
37 --- configure.in
38 +++ configure.in
39 @@ -246,10 +246,6 @@
40 KDE_EXPAND_MAKEVAR(mybindir, bindir)
41 AC_DEFINE_UNQUOTED(BINDIR, "$mybindir", [Where to look for icecc])
42
43 -myopkglibdir='${libdir}/'"$PACKAGE"
44 -KDE_EXPAND_MAKEVAR(mypkglibdir, myopkglibdir)
45 -AC_DEFINE_UNQUOTED(PLIBDIR, "$mypkglibdir", [Where to look for icecc-create-env])
46 -
47 myorundir='${localstatedir}/run'
48 KDE_EXPAND_MAKEVAR(myrundir, myorundir)
49 AC_DEFINE_UNQUOTED(RUNDIR, "$myrundir", [Where to place pid files])