diff options
author | Tomas Chvatal <scarabeus@gentoo.org> | 2011-06-02 10:49:08 +0000 |
---|---|---|
committer | Tomas Chvatal <scarabeus@gentoo.org> | 2011-06-02 10:49:08 +0000 |
commit | 6670776ada988497d008b01b7a6a9e750ddade88 (patch) | |
tree | 7f90bc6e28f8031da710132758efaae162d5744b /sci-libs | |
parent | Add patch for php syntax highlighting, bug 244334 (diff) | |
download | gentoo-2-6670776ada988497d008b01b7a6a9e750ddade88.tar.gz gentoo-2-6670776ada988497d008b01b7a6a9e750ddade88.tar.bz2 gentoo-2-6670776ada988497d008b01b7a6a9e750ddade88.zip |
Version bump to latest. Drop older.
(Portage version: 2.2.0_alpha37/cvs/Linux x86_64)
Diffstat (limited to 'sci-libs')
-rw-r--r-- | sci-libs/libdap/ChangeLog | 8 | ||||
-rw-r--r-- | sci-libs/libdap/libdap-3.11.1.ebuild (renamed from sci-libs/libdap/libdap-3.10.0.ebuild) | 19 |
2 files changed, 18 insertions, 9 deletions
diff --git a/sci-libs/libdap/ChangeLog b/sci-libs/libdap/ChangeLog index d0161d419a8d..e66c1bfb8c5a 100644 --- a/sci-libs/libdap/ChangeLog +++ b/sci-libs/libdap/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for sci-libs/libdap # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/libdap/ChangeLog,v 1.9 2011/03/02 20:55:44 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-libs/libdap/ChangeLog,v 1.10 2011/06/02 10:49:08 scarabeus Exp $ + +*libdap-3.11.1 (02 Jun 2011) + + 02 Jun 2011; Tomáš Chvátal <scarabeus@gentoo.org> -libdap-3.10.0.ebuild, + +libdap-3.11.1.ebuild: + Version bump to latest. Drop older. 02 Mar 2011; Justin Lecher <jlec@gentoo.org> libdap-3.10.0.ebuild: Correct Slots for gtk 3 introduction to tree diff --git a/sci-libs/libdap/libdap-3.10.0.ebuild b/sci-libs/libdap/libdap-3.11.1.ebuild index e79180aae6cd..fcb0571bbdff 100644 --- a/sci-libs/libdap/libdap-3.10.0.ebuild +++ b/sci-libs/libdap/libdap-3.11.1.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/libdap/libdap-3.10.0.ebuild,v 1.3 2011/03/02 20:55:44 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-libs/libdap/libdap-3.11.1.ebuild,v 1.1 2011/06/02 10:49:08 scarabeus Exp $ -EAPI="3" +EAPI=4 inherit base @@ -13,7 +13,7 @@ SRC_URI="http://www.opendap.org/pub/source/${P}.tar.gz" LICENSE="|| ( LGPL-2.1 URI )" SLOT="0" KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" -IUSE="doc static-libs" +IUSE="doc" RDEPEND=" dev-util/cppunit @@ -25,7 +25,9 @@ RDEPEND=" DEPEND="${RDEPEND} doc? ( app-doc/doxygen )" -PATCHES=( "${FILESDIR}/${PV}-fix_tests.patch" ) +PATCHES=( "${FILESDIR}/3.10.0-fix_tests.patch" ) + +DOCS=( README NEWS README.dodsrc ) RESTRICT="test" # needs http connection @@ -33,7 +35,7 @@ RESTRICT="test" src_configure() { econf \ - $(use_enable static-libs static) + --disable-static } src_compile() { @@ -49,7 +51,8 @@ src_test() { } src_install() { - base_src_install - dodoc README NEWS README.dodsrc || die - use doc && { dohtml docs/html/* || die ; } + default + use doc && dohtml docs/html/* + + find "${ED}" -name '*.la' -exec rm -f {} + } |