Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 259018
Collapse All | Expand All

(-)file_not_specified_in_diff (-8 / +13 lines)
Line  Link Here
0
-- net-libs/gnutls/gnutls-2.7.4.ebuild
0
++ net-libs/gnutls/gnutls-2.7.5.ebuild
Lines 3-9 Link Here
3
# $Header: /var/cvsroot/gentoo-x86/net-libs/gnutls/gnutls-2.7.4.ebuild,v 1.1 2009/01/10 22:45:35 dragonheart Exp $
3
# $Header: /var/cvsroot/gentoo-x86/net-libs/gnutls/gnutls-2.7.4.ebuild,v 1.1 2009/01/10 22:45:35 dragonheart Exp $
4
4
5
EAPI="2"
5
EAPI="2"
6
inherit eutils libtool autotools
6
7
inherit autotools libtool
7
8
8
DESCRIPTION="A TLS 1.0 and SSL 3.0 implementation for the GNU project"
9
DESCRIPTION="A TLS 1.0 and SSL 3.0 implementation for the GNU project"
9
HOMEPAGE="http://www.gnutls.org/"
10
HOMEPAGE="http://www.gnutls.org/"
Lines 47-59 Link Here
47
src_unpack() {
48
src_unpack() {
48
	unpack ${A}
49
	unpack ${A}
49
	cd "${S}"
50
	cd "${S}"
50
	for dir in gl/m4 m4 lib/gl/m4 lib/m4 libextra/gl/m4 libextra/m4 ; do
51
	local dir
52
	for dir in m4 lib/m4 libextra/m4 ; do
51
		rm -f ${dir}/lt* ${dir}/libtool.m4
53
		rm -f ${dir}/lt* ${dir}/libtool.m4
52
	done
54
	done
53
	find . -name ltmain.sh -exec rm {} \;
55
	find . -name ltmain.sh -exec rm {} \;
56
	for dir in . lib libextra ; do
57
		pushd ${dir} > /dev/null
58
		eautoreconf
59
		popd > /dev/null
60
	done
54
61
55
	# the below patch is in 2.7.* as per
56
	# https://savannah.gnu.org/support/?106542
57
	elibtoolize # for sane .so versioning on FreeBSD
62
	elibtoolize # for sane .so versioning on FreeBSD
58
}
63
}
59
64
Lines 61-71 Link Here
61
	local myconf
66
	local myconf
62
	use bindist && myconf="--without-lzo" || myconf="$(use_with lzo)"
67
	use bindist && myconf="--without-lzo" || myconf="$(use_with lzo)"
63
	econf  \
68
	econf  \
64
		$(use_with zlib) \
65
		$(use_enable nls) \
66
		$(use_enable guile) \
67
		$(use_enable cxx) \
69
		$(use_enable cxx) \
68
		$(use_enable doc gtk-doc) \
70
		$(use_enable doc gtk-doc) \
71
		$(use_enable guile) \
72
		$(use_enable nls) \
73
		$(use_with zlib) \
69
		${myconf}
74
		${myconf}
70
}
75
}
71
76

Return to bug 259018