diff options
author | Keri Harris <keri@gentoo.org> | 2014-01-06 16:19:18 +0000 |
---|---|---|
committer | Keri Harris <keri@gentoo.org> | 2014-01-06 16:19:18 +0000 |
commit | 88233526b24960e20df47269c83ef41923ba8cdc (patch) | |
tree | 1d9d08611b3e2e711da6d87d7b16b077049bbe08 /dev-lang/yap | |
parent | enable explicit install of libiberty w/newer versions #497268 (diff) | |
download | gentoo-2-88233526b24960e20df47269c83ef41923ba8cdc.tar.gz gentoo-2-88233526b24960e20df47269c83ef41923ba8cdc.tar.bz2 gentoo-2-88233526b24960e20df47269c83ef41923ba8cdc.zip |
Remove old development versions
(Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key A138F5ED)
Diffstat (limited to 'dev-lang/yap')
-rw-r--r-- | dev-lang/yap/ChangeLog | 7 | ||||
-rw-r--r-- | dev-lang/yap/yap-6.3.0.ebuild | 103 | ||||
-rw-r--r-- | dev-lang/yap/yap-6.3.1.ebuild | 107 |
3 files changed, 5 insertions, 212 deletions
diff --git a/dev-lang/yap/ChangeLog b/dev-lang/yap/ChangeLog index 7b5db9f84b38..949fb8539d52 100644 --- a/dev-lang/yap/ChangeLog +++ b/dev-lang/yap/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-lang/yap -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/yap/ChangeLog,v 1.81 2013/11/11 20:50:55 keri Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/yap/ChangeLog,v 1.82 2014/01/06 16:19:18 keri Exp $ + + 06 Jan 2014; <keri@gentoo.org> -yap-6.3.0.ebuild, -yap-6.3.1.ebuild: + Remove old development versions 11 Nov 2013; <keri@gentoo.org> yap-6.3.3.ebuild: Include upstream MPI reg cache fix diff --git a/dev-lang/yap/yap-6.3.0.ebuild b/dev-lang/yap/yap-6.3.0.ebuild deleted file mode 100644 index 87808c8320ef..000000000000 --- a/dev-lang/yap/yap-6.3.0.ebuild +++ /dev/null @@ -1,103 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/yap/yap-6.3.0.ebuild,v 1.4 2012/06/06 03:17:38 zmedico Exp $ - -EAPI=2 - -inherit eutils flag-o-matic java-pkg-opt-2 multilib - -PATCHSET_VER="1" - -DESCRIPTION="YAP is a high-performance Prolog compiler." -HOMEPAGE="http://www.dcc.fc.up.pt/~vsc/Yap/" -SRC_URI="http://www.dcc.fc.up.pt/~vsc/Yap/${P}.tar.gz - mirror://gentoo/${P}-gentoo-patchset-${PATCHSET_VER}.tar.gz" - -LICENSE="Artistic LGPL-2" -SLOT="0" -KEYWORDS="~amd64 ~ppc ~x86" -IUSE="debug doc examples gmp java mpi mysql odbc readline static threads" - -RDEPEND="sys-libs/zlib - gmp? ( dev-libs/gmp ) - java? ( >=virtual/jdk-1.4 ) - mpi? ( virtual/mpi ) - mysql? ( virtual/mysql ) - odbc? ( dev-db/unixODBC ) - readline? ( sys-libs/readline sys-libs/ncurses )" - -DEPEND="${RDEPEND} - doc? ( app-text/texi2html )" - -src_prepare() { - cd "${WORKDIR}" - EPATCH_FORCE=yes - EPATCH_SUFFIX=patch - epatch "${WORKDIR}"/${PV} - rm -rf "${S}"/yap || die "failed to remove yap xcode project" -} - -src_configure() { - append-flags -fno-strict-aliasing - - local myddas_conf - if use mysql || use odbc; then - myddas_conf="--enable-myddas" - else - myddas_conf="--disable-myddas" - fi - - econf \ - --libdir=/usr/$(get_libdir) \ - $(use_enable !static dynamic-loading) \ - $(use_enable threads) \ - $(use_enable threads pthread-locking) \ - $(use_enable debug debug-yap) \ - $(use_enable debug low-level-tracer) \ - $(use_with gmp) \ - $(use_with readline) \ - $(use_with mpi) \ - $(use_with mpi mpe) \ - $(use_with java) \ - ${myddas_conf} -} - -src_compile() { - emake || die "emake failed" - - if use doc ; then - emake html || die "emake html failed" - fi -} - -src_install() { - emake DESTDIR="${D}" install || die "make install failed." - - dodoc changes*.html README || die - - if use doc ; then - dodoc yap.html || die - fi - - if use examples ; then - insinto /usr/share/doc/${PF}/examples/chr - doins packages/chr/Examples/* || die - insinto /usr/share/doc/${PF}/examples/clib - doins packages/clib/demo/* || die - insinto /usr/share/doc/${PF}/examples/http - doins -r packages/http/examples/* || die - insinto /usr/share/doc/${PF}/examples/plunit - doins packages/plunit/examples/* || die - if use java ; then - insinto /usr/share/doc/${PF}/examples/jpl/prolog - doins packages/jpl/examples/prolog/* || die - insinto /usr/share/doc/${PF}/examples/jpl/java - doins packages/jpl/examples/java/README || die - doins -r packages/jpl/examples/java/*/*.{java,pl} || die - fi - if use mpi ; then - insinto /usr/share/doc/${PF}/examples/mpi - doins library/mpi/examples/*.pl || die - fi - fi -} diff --git a/dev-lang/yap/yap-6.3.1.ebuild b/dev-lang/yap/yap-6.3.1.ebuild deleted file mode 100644 index 41ee475f13b8..000000000000 --- a/dev-lang/yap/yap-6.3.1.ebuild +++ /dev/null @@ -1,107 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/yap/yap-6.3.1.ebuild,v 1.1 2012/06/23 07:05:14 keri Exp $ - -EAPI=2 - -inherit eutils flag-o-matic java-pkg-opt-2 multilib - -PATCHSET_VER="0" - -DESCRIPTION="YAP is a high-performance Prolog compiler." -HOMEPAGE="http://www.dcc.fc.up.pt/~vsc/Yap/" -SRC_URI="http://www.dcc.fc.up.pt/~vsc/Yap/${P}.tar.gz - mirror://gentoo/${P}-gentoo-patchset-${PATCHSET_VER}.tar.gz" - -LICENSE="Artistic LGPL-2" -SLOT="0" -KEYWORDS="~amd64 ~ppc ~x86" -IUSE="R debug doc examples gmp java mpi mysql odbc readline static threads" - -RDEPEND="sys-libs/zlib - gmp? ( dev-libs/gmp ) - java? ( >=virtual/jdk-1.4 ) - mpi? ( virtual/mpi ) - mysql? ( virtual/mysql ) - odbc? ( dev-db/unixODBC ) - readline? ( sys-libs/readline sys-libs/ncurses ) - R? ( dev-lang/R )" - -DEPEND="${RDEPEND} - doc? ( app-text/texi2html )" - -S="${WORKDIR}"/${PN}-6.3 - -src_prepare() { - cd "${WORKDIR}" - EPATCH_FORCE=yes - EPATCH_SUFFIX=patch - epatch "${WORKDIR}"/${PV} - rm -rf "${S}"/yap || die "failed to remove yap xcode project" -} - -src_configure() { - append-flags -fno-strict-aliasing - - local myddas_conf - if use mysql || use odbc; then - myddas_conf="--enable-myddas" - else - myddas_conf="--disable-myddas" - fi - - econf \ - --libdir=/usr/$(get_libdir) \ - $(use_enable !static dynamic-loading) \ - $(use_enable threads) \ - $(use_enable threads pthread-locking) \ - $(use_enable debug debug-yap) \ - $(use_enable debug low-level-tracer) \ - $(use_with gmp) \ - $(use_with readline) \ - $(use_with mpi) \ - $(use_with mpi mpe) \ - $(use_with java) \ - $(use_with R) \ - ${myddas_conf} -} - -src_compile() { - emake || die "emake failed" - - if use doc ; then - emake html || die "emake html failed" - fi -} - -src_install() { - emake DESTDIR="${D}" install || die "make install failed." - - dodoc changes*.html README || die - - if use doc ; then - dodoc yap.html || die - fi - - if use examples ; then - insinto /usr/share/doc/${PF}/examples/chr - doins packages/chr/Examples/* || die - insinto /usr/share/doc/${PF}/examples/clib - doins packages/clib/demo/* || die - insinto /usr/share/doc/${PF}/examples/http - doins -r packages/http/examples/* || die - insinto /usr/share/doc/${PF}/examples/plunit - doins packages/plunit/examples/* || die - if use java ; then - insinto /usr/share/doc/${PF}/examples/jpl/prolog - doins packages/jpl/examples/prolog/* || die - insinto /usr/share/doc/${PF}/examples/jpl/java - doins packages/jpl/examples/java/README || die - doins -r packages/jpl/examples/java/*/*.{java,pl} || die - fi - if use mpi ; then - insinto /usr/share/doc/${PF}/examples/mpi - doins library/mpi/examples/*.pl || die - fi - fi -} |