summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Elio Pettenò <flameeyes@gentoo.org>2010-07-27 10:02:30 +0000
committerDiego Elio Pettenò <flameeyes@gentoo.org>2010-07-27 10:02:30 +0000
commit7ea2fa6121eb2de1591c56b2c0f174d4c5074779 (patch)
tree064506804cb16cc4619d2e49de3816c60c9a1bfb /net-libs/librpcsecgss
parentDisable building of static library and remove .la file. (diff)
downloadgentoo-2-7ea2fa6121eb2de1591c56b2c0f174d4c5074779.tar.gz
gentoo-2-7ea2fa6121eb2de1591c56b2c0f174d4c5074779.tar.bz2
gentoo-2-7ea2fa6121eb2de1591c56b2c0f174d4c5074779.zip
Cleanup old versions; add new version without static or .la libraries.
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'net-libs/librpcsecgss')
-rw-r--r--net-libs/librpcsecgss/ChangeLog11
-rw-r--r--net-libs/librpcsecgss/librpcsecgss-0.18.ebuild21
-rw-r--r--net-libs/librpcsecgss/librpcsecgss-0.19-r1.ebuild (renamed from net-libs/librpcsecgss/librpcsecgss-0.17.ebuild)13
3 files changed, 20 insertions, 25 deletions
diff --git a/net-libs/librpcsecgss/ChangeLog b/net-libs/librpcsecgss/ChangeLog
index 2b0878aaa38c..00ba78652975 100644
--- a/net-libs/librpcsecgss/ChangeLog
+++ b/net-libs/librpcsecgss/ChangeLog
@@ -1,6 +1,13 @@
# ChangeLog for net-libs/librpcsecgss
-# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/librpcsecgss/ChangeLog,v 1.22 2009/08/13 04:48:28 vapier Exp $
+# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-libs/librpcsecgss/ChangeLog,v 1.23 2010/07/27 10:02:30 flameeyes Exp $
+
+*librpcsecgss-0.19-r1 (27 Jul 2010)
+
+ 27 Jul 2010; Diego E. Pettenò <flameeyes@gentoo.org>
+ -librpcsecgss-0.17.ebuild, -librpcsecgss-0.18.ebuild,
+ +librpcsecgss-0.19-r1.ebuild:
+ Cleanup old versions; add new version without static or .la libraries.
*librpcsecgss-0.19 (13 Aug 2009)
diff --git a/net-libs/librpcsecgss/librpcsecgss-0.18.ebuild b/net-libs/librpcsecgss/librpcsecgss-0.18.ebuild
deleted file mode 100644
index 2c47d41fc96e..000000000000
--- a/net-libs/librpcsecgss/librpcsecgss-0.18.ebuild
+++ /dev/null
@@ -1,21 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/librpcsecgss/librpcsecgss-0.18.ebuild,v 1.1 2008/04/20 10:43:15 vapier Exp $
-
-DESCRIPTION="implementation of rpcsec_gss (RFC 2203) for secure rpc communication"
-HOMEPAGE="http://www.citi.umich.edu/projects/nfsv4/linux/"
-SRC_URI="http://www.citi.umich.edu/projects/nfsv4/linux/${PN}/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
-IUSE=""
-
-RDEPEND="net-libs/libgssglue"
-DEPEND="${RDEPEND}
- dev-util/pkgconfig"
-
-src_install() {
- emake install DESTDIR="${D}" || die
- dodoc AUTHORS ChangeLog NEWS README
-}
diff --git a/net-libs/librpcsecgss/librpcsecgss-0.17.ebuild b/net-libs/librpcsecgss/librpcsecgss-0.19-r1.ebuild
index 171729ee35af..f8a3b8547633 100644
--- a/net-libs/librpcsecgss/librpcsecgss-0.17.ebuild
+++ b/net-libs/librpcsecgss/librpcsecgss-0.19-r1.ebuild
@@ -1,6 +1,8 @@
-# Copyright 1999-2007 Gentoo Foundation
+# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/librpcsecgss/librpcsecgss-0.17.ebuild,v 1.1 2007/12/29 09:52:14 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/librpcsecgss/librpcsecgss-0.19-r1.ebuild,v 1.1 2010/07/27 10:02:30 flameeyes Exp $
+
+EAPI=2
DESCRIPTION="implementation of rpcsec_gss (RFC 2203) for secure rpc communication"
HOMEPAGE="http://www.citi.umich.edu/projects/nfsv4/linux/"
@@ -15,7 +17,14 @@ RDEPEND="net-libs/libgssglue"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
+src_configure() {
+ # No need to install static libraries, as it uses non-static dependencies
+ econf --disable-static
+}
+
src_install() {
emake install DESTDIR="${D}" || die
+ find "${D}" -name '*.la' -delete || die
+
dodoc AUTHORS ChangeLog NEWS README
}