diff options
author | Ryan Hill <dirtyepic@gentoo.org> | 2009-05-09 05:21:19 +0000 |
---|---|---|
committer | Ryan Hill <dirtyepic@gentoo.org> | 2009-05-09 05:21:19 +0000 |
commit | 20e94687379d0937730435e2183c2211eebb70c5 (patch) | |
tree | 3dec242083f1687d29a3d7d6507809a76fda2a34 /dev-libs/ppl | |
parent | New patch with new rev bump to allow compilation with >=subversion-1.6, bug 2... (diff) | |
download | gentoo-2-20e94687379d0937730435e2183c2211eebb70c5.tar.gz gentoo-2-20e94687379d0937730435e2183c2211eebb70c5.tar.bz2 gentoo-2-20e94687379d0937730435e2183c2211eebb70c5.zip |
Remove old.
(Portage version: 2.2_rc33/cvs/Linux x86_64)
Diffstat (limited to 'dev-libs/ppl')
-rw-r--r-- | dev-libs/ppl/ChangeLog | 5 | ||||
-rw-r--r-- | dev-libs/ppl/ppl-0.10-r1.ebuild | 54 |
2 files changed, 4 insertions, 55 deletions
diff --git a/dev-libs/ppl/ChangeLog b/dev-libs/ppl/ChangeLog index 8ffdf653597f..df5d1bcbdfec 100644 --- a/dev-libs/ppl/ChangeLog +++ b/dev-libs/ppl/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-libs/ppl # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/ppl/ChangeLog,v 1.9 2009/04/18 23:24:39 dirtyepic Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/ppl/ChangeLog,v 1.10 2009/05/09 05:21:19 dirtyepic Exp $ + + 09 May 2009; Ryan Hill <dirtyepic@gentoo.org> -ppl-0.10-r1.ebuild: + Remove old. *ppl-0.10.2 (18 Apr 2009) diff --git a/dev-libs/ppl/ppl-0.10-r1.ebuild b/dev-libs/ppl/ppl-0.10-r1.ebuild deleted file mode 100644 index a532594cf00b..000000000000 --- a/dev-libs/ppl/ppl-0.10-r1.ebuild +++ /dev/null @@ -1,54 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/ppl/ppl-0.10-r1.ebuild,v 1.4 2009/03/22 23:08:25 dirtyepic Exp $ - -EAPI=2 - -DESCRIPTION="The Parma Polyhedra Library provides numerical abstractions for analysis of complex systems" -HOMEPAGE="http://www.cs.unipr.it/ppl/" -SRC_URI="http://www.cs.unipr.it/ppl/Download/ftp/releases/${PV}/${P}.tar.bz2 - ftp://ftp.cs.unipr.it/pub/ppl/releases/${PV}/${P}.tar.bz2" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~mips ~x86" -IUSE="doc prolog" - -RDEPEND="prolog? ( dev-lang/swi-prolog[gmp] ) - >=dev-libs/gmp-4.1.3[-nocxx]" -DEPEND="${RDEPEND} - sys-devel/m4" - -src_configure() { - - use prolog && want_prolog="swi_prolog" - - econf \ - --docdir=/usr/share/doc/${PF} \ - --disable-debugging \ - --disable-optimization \ - --enable-interfaces="c cxx ${want_prolog}" \ - || die -} - -src_install() { - - emake DESTDIR="${D}" install || die "emake install failed" - - if use doc; then - cd "${D}"/usr/share/doc/${PF} - mkdir ppl ppl-watchdog - # the library docs get installed into ${DOCDIR}/ppl/ - # move them to the right place - mv * ppl-watchdog - mv ../ppl . - # TODO - prepalldocs is banned - # replace it with whatever takes its place when it becomes available - # prepalldocs - else - rm -rf "${D}"/usr/share/doc/${PN} - rm -rf "${D}"/usr/share/doc/${PF} - fi - - dodoc NEWS README README.configure STANDARDS TODO -} |