diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2011-09-14 19:42:15 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2011-09-14 19:42:15 +0000 |
commit | c95647fb480677b768d622db741aec93c7171a8e (patch) | |
tree | b0307d7ac0d342430813ff690fd911ea009daecb /dev-libs/opensc | |
parent | Fix init script not to look for a configuration file when generating dependen... (diff) | |
download | gentoo-2-c95647fb480677b768d622db741aec93c7171a8e.tar.gz gentoo-2-c95647fb480677b768d622db741aec93c7171a8e.tar.bz2 gentoo-2-c95647fb480677b768d622db741aec93c7171a8e.zip |
Remove stupid static-libs USE flag as the package should _not_ install static libraries at all.
(Portage version: 2.2.0_alpha56/cvs/Linux x86_64)
Diffstat (limited to 'dev-libs/opensc')
-rw-r--r-- | dev-libs/opensc/ChangeLog | 6 | ||||
-rw-r--r-- | dev-libs/opensc/opensc-0.12.2.ebuild | 11 |
2 files changed, 11 insertions, 6 deletions
diff --git a/dev-libs/opensc/ChangeLog b/dev-libs/opensc/ChangeLog index f8def37bfac5..2ed7c1ef8d49 100644 --- a/dev-libs/opensc/ChangeLog +++ b/dev-libs/opensc/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-libs/opensc # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/opensc/ChangeLog,v 1.116 2011/09/13 22:29:44 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/opensc/ChangeLog,v 1.117 2011/09/14 19:42:15 flameeyes Exp $ + + 14 Sep 2011; Diego E. Pettenò <flameeyes@gentoo.org> opensc-0.12.2.ebuild: + Remove stupid static-libs USE flag as the package should _not_ install static + libraries at all. *opensc-0.12.2 (13 Sep 2011) diff --git a/dev-libs/opensc/opensc-0.12.2.ebuild b/dev-libs/opensc/opensc-0.12.2.ebuild index 9e888ae46e33..dd99a6e9edd1 100644 --- a/dev-libs/opensc/opensc-0.12.2.ebuild +++ b/dev-libs/opensc/opensc-0.12.2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/opensc/opensc-0.12.2.ebuild,v 1.1 2011/09/13 22:29:44 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/opensc/opensc-0.12.2.ebuild,v 1.2 2011/09/14 19:42:15 flameeyes Exp $ EAPI="4" @@ -13,7 +13,7 @@ SRC_URI="http://www.opensc-project.org/files/${PN}/${P}.tar.gz" LICENSE="LGPL-2.1" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" -IUSE="doc libtool +pcsc-lite openct readline ssl static-libs zlib" +IUSE="doc libtool +pcsc-lite openct readline ssl zlib" RDEPEND="libtool? ( sys-devel/libtool ) zlib? ( sys-libs/zlib ) @@ -52,21 +52,22 @@ src_configure() { # the native system's dlopen ... so we have to manually # control the behavior to something a bit more sane export ac_cv_header_ltdl_h=$(usex libtool) \ - ac_cv_lib_ltdl_lt_dlopen=$(usex libtool) + ac_cv_lib_ltdl_lt_dlopen=$(usex libtool) econf \ --docdir="/usr/share/doc/${PF}" \ --htmldir="/usr/share/doc/${PF}/html" \ + --disable-static \ $(use_enable doc) \ $(use_enable openct) \ $(use_enable readline) \ - $(use_enable static-libs static) \ $(use_enable zlib) \ ${myconf} } src_install() { emake DESTDIR="${D}" install - use static-libs || find "${D}" -name '*.la' -delete + find "${D}" -name '*.la' -delete + dodoc ChangeLog } |