summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeroen Roovers <jer@gentoo.org>2011-11-27 22:49:28 +0000
committerJeroen Roovers <jer@gentoo.org>2011-11-27 22:49:28 +0000
commit32999926507e56ad134887389bebad5854bdc409 (patch)
tree059a894b96cbe04c1444db36297c51ef10ae6f14
parentlive ebuild now depends on frozen-flask. (diff)
downloadgentoo-2-32999926507e56ad134887389bebad5854bdc409.tar.gz
gentoo-2-32999926507e56ad134887389bebad5854bdc409.tar.bz2
gentoo-2-32999926507e56ad134887389bebad5854bdc409.zip
Inherit eutils properly. Do not use autotools-utils.eclass (bug # 392109).
(Portage version: 2.2.0_alpha78/cvs/Linux x86_64)
-rw-r--r--net-libs/libgsasl/ChangeLog5
-rw-r--r--net-libs/libgsasl/libgsasl-1.6.1.ebuild10
2 files changed, 9 insertions, 6 deletions
diff --git a/net-libs/libgsasl/ChangeLog b/net-libs/libgsasl/ChangeLog
index f731692a5068..764db0a23d92 100644
--- a/net-libs/libgsasl/ChangeLog
+++ b/net-libs/libgsasl/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for net-libs/libgsasl
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/libgsasl/ChangeLog,v 1.68 2011/11/27 03:23:45 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/libgsasl/ChangeLog,v 1.69 2011/11/27 22:49:28 jer Exp $
+
+ 27 Nov 2011; Jeroen Roovers <jer@gentoo.org> libgsasl-1.6.1.ebuild:
+ Inherit eutils properly. Do not use autotools-utils.eclass (bug # 392109).
27 Nov 2011; Tim Harder <radhermit@gentoo.org> libgsasl-1.6.1.ebuild:
Build in the source tree.
diff --git a/net-libs/libgsasl/libgsasl-1.6.1.ebuild b/net-libs/libgsasl/libgsasl-1.6.1.ebuild
index 09c3462cfbc8..c4d3a13c2842 100644
--- a/net-libs/libgsasl/libgsasl-1.6.1.ebuild
+++ b/net-libs/libgsasl/libgsasl-1.6.1.ebuild
@@ -1,10 +1,10 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/libgsasl/libgsasl-1.6.1.ebuild,v 1.10 2011/11/27 03:23:45 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/libgsasl/libgsasl-1.6.1.ebuild,v 1.11 2011/11/27 22:49:28 jer Exp $
EAPI="3"
-inherit autotools-utils
+inherit autotools eutils
DESCRIPTION="The GNU SASL library"
HOMEPAGE="http://www.gnu.org/software/gsasl/"
@@ -25,8 +25,6 @@ DEPEND="
RDEPEND="${DEPEND}
!net-misc/gsasl"
-AUTOTOOLS_IN_SOURCE_BUILD="1"
-
src_prepare() {
epatch "${FILESDIR}/${PN}-gss-extra.patch"
eautoreconf
@@ -45,6 +43,8 @@ src_configure() {
src_install() {
emake DESTDIR="${D}" install || die "installation failed"
- use static-libs || remove_libtool_files
+ if ! use static-libs; then
+ rm -f "${D}"/usr/lib*/lib*.la
+ fi
dodoc AUTHORS ChangeLog NEWS README THANKS
}