summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuli Suominen <ssuominen@gentoo.org>2012-06-24 14:23:33 +0000
committerSamuli Suominen <ssuominen@gentoo.org>2012-06-24 14:23:33 +0000
commit81bf3c85eaaa8b3ba8adc3c49a9ceef064155b67 (patch)
tree4d46a54c937ffbde110faae5f6aeedac8ba7f005 /net-misc/corkscrew
parentRestrict tests in 0.8.0 to allow stabilization. Remove 0.9.0. (diff)
downloadgentoo-2-81bf3c85eaaa8b3ba8adc3c49a9ceef064155b67.tar.gz
gentoo-2-81bf3c85eaaa8b3ba8adc3c49a9ceef064155b67.tar.bz2
gentoo-2-81bf3c85eaaa8b3ba8adc3c49a9ceef064155b67.zip
Punt AM_C_PROTOTYPES from configure.in for sys-devel/automake >= 1.12 compability wrt #423193
(Portage version: 2.2.0_alpha111/cvs/Linux x86_64)
Diffstat (limited to 'net-misc/corkscrew')
-rw-r--r--net-misc/corkscrew/ChangeLog6
-rw-r--r--net-misc/corkscrew/corkscrew-2.0.ebuild19
2 files changed, 16 insertions, 9 deletions
diff --git a/net-misc/corkscrew/ChangeLog b/net-misc/corkscrew/ChangeLog
index db283576975d..d3dae583bb4f 100644
--- a/net-misc/corkscrew/ChangeLog
+++ b/net-misc/corkscrew/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for net-misc/corkscrew
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/corkscrew/ChangeLog,v 1.11 2012/03/31 03:00:27 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/corkscrew/ChangeLog,v 1.12 2012/06/24 14:23:33 ssuominen Exp $
+
+ 24 Jun 2012; Samuli Suominen <ssuominen@gentoo.org> corkscrew-2.0.ebuild:
+ Punt AM_C_PROTOTYPES from configure.in for sys-devel/automake >= 1.12
+ compability wrt #423193
31 Mar 2012; Mike Frysinger <vapier@gentoo.org> corkscrew-2.0.ebuild:
Add arm love.
diff --git a/net-misc/corkscrew/corkscrew-2.0.ebuild b/net-misc/corkscrew/corkscrew-2.0.ebuild
index a3f9919f0a3a..b6a1acdc777e 100644
--- a/net-misc/corkscrew/corkscrew-2.0.ebuild
+++ b/net-misc/corkscrew/corkscrew-2.0.ebuild
@@ -1,9 +1,8 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/corkscrew/corkscrew-2.0.ebuild,v 1.12 2012/03/31 03:00:27 vapier Exp $
-
-EAPI="3"
+# $Header: /var/cvsroot/gentoo-x86/net-misc/corkscrew/corkscrew-2.0.ebuild,v 1.13 2012/06/24 14:23:33 ssuominen Exp $
+EAPI=4
inherit autotools
DESCRIPTION="a tool for tunneling SSH through HTTP proxies"
@@ -15,16 +14,20 @@ SLOT="0"
KEYWORDS="amd64 ~arm ~ppc ~sparc x86"
IUSE=""
+DOCS="AUTHORS ChangeLog README TODO"
+
src_prepare() {
# Christoph Mende <angelos@gentoo.org (23 Jun 2010)
# Shipped configure doesn't work with some locales (bug #305771)
# Shipped missing doesn't work with new configure, so we'll force
# regeneration
rm -f install-sh missing mkinstalldirs || die
- eautoreconf
-}
-src_install () {
- emake DESTDIR="${D}" install || die "emake install failed"
- dodoc AUTHORS ChangeLog README TODO || die "dodoc failed"
+ # Samuli Suominen <ssuominen@gentoo.org> (24 Jun 2012)
+ # AC_HEADER_STDC is called separately and #include <string.h> is
+ # without #ifdef in corkscrew.c. Instead of using AC_C_PROTOTYPES,
+ # remove the call entirely as unused wrt bug #423193
+ sed -i -e 's:AM_C_PROTOTYPES:dnl &:' configure.in || die
+
+ eautoreconf
}