diff options
author | Sebastien Fabbro <bicatali@gentoo.org> | 2008-12-03 12:13:54 +0000 |
---|---|---|
committer | Sebastien Fabbro <bicatali@gentoo.org> | 2008-12-03 12:13:54 +0000 |
commit | 2663127267af468072854faf634ff0f0d132730e (patch) | |
tree | 50035bac7ee1b6b58f5039077d422451e10928ab /sci-visualization | |
parent | Block app-text/lv, bug 246966. (diff) | |
download | gentoo-2-2663127267af468072854faf634ff0f0d132730e.tar.gz gentoo-2-2663127267af468072854faf634ff0f0d132730e.tar.bz2 gentoo-2-2663127267af468072854faf634ff0f0d132730e.zip |
Added --enable-library-bloat, necessary for as-needed
(Portage version: 2.2_rc16/cvs/Linux 2.6.25-gentoo-r7 x86_64)
Diffstat (limited to 'sci-visualization')
-rw-r--r-- | sci-visualization/gwyddion/ChangeLog | 5 | ||||
-rw-r--r-- | sci-visualization/gwyddion/gwyddion-2.10.ebuild | 10 |
2 files changed, 9 insertions, 6 deletions
diff --git a/sci-visualization/gwyddion/ChangeLog b/sci-visualization/gwyddion/ChangeLog index 0f6e7a1f5ea2..df6893a8fccd 100644 --- a/sci-visualization/gwyddion/ChangeLog +++ b/sci-visualization/gwyddion/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sci-visualization/gwyddion # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-visualization/gwyddion/ChangeLog,v 1.13 2008/08/04 13:49:50 markusle Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-visualization/gwyddion/ChangeLog,v 1.14 2008/12/03 12:13:54 bicatali Exp $ + + 03 Dec 2008; Sébastien Fabbro <bicatali@gentoo.org> gwyddion-2.10.ebuild: + Added --enable-library-bloat, necessary for as-needed *gwyddion-2.10 (04 Aug 2008) diff --git a/sci-visualization/gwyddion/gwyddion-2.10.ebuild b/sci-visualization/gwyddion/gwyddion-2.10.ebuild index 9dedde068d44..bf56ca48258c 100644 --- a/sci-visualization/gwyddion/gwyddion-2.10.ebuild +++ b/sci-visualization/gwyddion/gwyddion-2.10.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-visualization/gwyddion/gwyddion-2.10.ebuild,v 1.1 2008/08/04 13:49:50 markusle Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-visualization/gwyddion/gwyddion-2.10.ebuild,v 1.2 2008/12/03 12:13:54 bicatali Exp $ DESCRIPTION="A software framework for SPM data analysis" HOMEPAGE="http://gwyddion.net/" @@ -30,14 +30,14 @@ src_compile() { $(use_enable perl) \ $(use_enable ruby) \ $(use_enable nls) \ - $(use_with fftw fftw3 ) \ - $(use_with tiff ) \ + $(use_with fftw fftw3) \ + $(use_with tiff) \ --disable-desktop-file-update \ - || die "econf failed." + --enable-library-bloat emake || die "emake failed." } src_install() { - make DESTDIR="${D}" install || die "make install failed." + emake DESTDIR="${D}" install || die "emake install failed" dodoc AUTHORS ChangeLog NEWS README THANKS TODO } |