vapier      14/11/04 04:14:13

  Modified:             ChangeLog
  Added:                ppl-1.1.ebuild
  Log:
  Version bump #446698 by Jeremy Murphy.
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
D2E96200)

Revision  Changes    Path
1.69                 dev-libs/ppl/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/ppl/ChangeLog?rev=1.69&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/ppl/ChangeLog?rev=1.69&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/ppl/ChangeLog?r1=1.68&r2=1.69

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/ppl/ChangeLog,v
retrieving revision 1.68
retrieving revision 1.69
diff -u -r1.68 -r1.69
--- ChangeLog   4 Nov 2014 03:24:24 -0000       1.68
+++ ChangeLog   4 Nov 2014 04:14:13 -0000       1.69
@@ -1,6 +1,11 @@
 # ChangeLog for dev-libs/ppl
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/ppl/ChangeLog,v 1.68 2014/11/04 
03:24:24 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/ppl/ChangeLog,v 1.69 2014/11/04 
04:14:13 vapier Exp $
+
+*ppl-1.1 (04 Nov 2014)
+
+  04 Nov 2014; Mike Frysinger <[email protected]> +ppl-1.1.ebuild:
+  Version bump #446698 by Jeremy Murphy.
 
   04 Nov 2014; Mike Frysinger <[email protected]> ppl-0.12.1-r1.ebuild:
   Add arm64 love.



1.1                  dev-libs/ppl/ppl-1.1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/ppl/ppl-1.1.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/ppl/ppl-1.1.ebuild?rev=1.1&content-type=text/plain

Index: ppl-1.1.ebuild
===================================================================
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/ppl/ppl-1.1.ebuild,v 1.1 2014/11/04 
04:14:13 vapier Exp $

EAPI="5"

DESCRIPTION="The Parma Polyhedra Library provides numerical abstractions for 
analysis of complex systems"
HOMEPAGE="http://bugseng.com/products/ppl";
SRC_URI="http://bugseng.com/products/ppl/download/ftp/releases/${PV}/${P}.tar.xz";

LICENSE="GPL-3"
SLOT="0/4.13" # SONAMEs
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~sparc-solaris"
IUSE="+cxx doc lpsol pch static-libs test"

RDEPEND=">=dev-libs/gmp-4.1.3[cxx]
        lpsol? ( <=sci-mathematics/glpk-4.48 )
        !<dev-libs/cloog-ppl-0.15.10"
DEPEND="${RDEPEND}
        app-arch/xz-utils
        sys-devel/m4"

pkg_setup() {
        if use test ; then
                ewarn "The PPL testsuite will be run."
                ewarn "Note that this can take several hours to complete on a 
fast machine."
        fi
}

src_configure() {
        local interfaces=( c )
        use cxx && interfaces+=( cxx )
        econf \
                --docdir="${EPREFIX}"/usr/share/doc/${PF} \
                --disable-debugging \
                --disable-optimization \
                $(use_enable doc documentation) \
                $(use_enable lpsol ppl_lpsol) \
                $(use_enable pch) \
                $(use_enable static-libs static) \
                --enable-interfaces="${interfaces[*]}" \
                $(use test && echo --enable-check=quick)
}

src_test() {
        # default src_test runs with -j1, overriding it here saves about
        # 30 minutes and is recommended by upstream
        emake check
}

src_install() {
        default
        use static-libs || find "${ED}"/usr -name 'libppl*.la' -delete

        pushd "${ED}/usr/share/doc/${PF}" >/dev/null || die
        rm gpl* fdl* || die
        if ! use doc; then
                rm -r *-html/ *.ps.gz *.pdf || die
        fi
}




Reply via email to