summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKeri Harris <keri@gentoo.org>2009-02-28 19:32:56 +0000
committerKeri Harris <keri@gentoo.org>2009-02-28 19:32:56 +0000
commit3f66cb5f648a0e01d811dfd6b73239ee2126b9b5 (patch)
treefb7157a9c59ed9f77e7b61c7fcc35c0d6e07eb6d /dev-lang
parentBump to 0.6. Really closes #247892 now. (diff)
downloadgentoo-2-3f66cb5f648a0e01d811dfd6b73239ee2126b9b5.tar.gz
gentoo-2-3f66cb5f648a0e01d811dfd6b73239ee2126b9b5.tar.bz2
gentoo-2-3f66cb5f648a0e01d811dfd6b73239ee2126b9b5.zip
Remove old -5.7 development versions
(Portage version: 2.1.6.7/cvs/Linux x86_64)
Diffstat (limited to 'dev-lang')
-rw-r--r--dev-lang/swi-prolog/ChangeLog7
-rw-r--r--dev-lang/swi-prolog/swi-prolog-5.7.1.ebuild130
-rw-r--r--dev-lang/swi-prolog/swi-prolog-5.7.2.ebuild130
-rw-r--r--dev-lang/swi-prolog/swi-prolog-5.7.3.ebuild130
-rw-r--r--dev-lang/swi-prolog/swi-prolog-5.7.4.ebuild130
-rw-r--r--dev-lang/swi-prolog/swi-prolog-5.7.5.ebuild130
6 files changed, 6 insertions, 651 deletions
diff --git a/dev-lang/swi-prolog/ChangeLog b/dev-lang/swi-prolog/ChangeLog
index a8ca46241728..7a3cf11c6ce1 100644
--- a/dev-lang/swi-prolog/ChangeLog
+++ b/dev-lang/swi-prolog/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for dev-lang/swi-prolog
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/swi-prolog/ChangeLog,v 1.168 2009/02/28 19:27:39 keri Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/swi-prolog/ChangeLog,v 1.169 2009/02/28 19:32:56 keri Exp $
+
+ 28 Feb 2009; <keri@gentoo.org> -swi-prolog-5.7.1.ebuild,
+ -swi-prolog-5.7.2.ebuild, -swi-prolog-5.7.3.ebuild,
+ -swi-prolog-5.7.4.ebuild, -swi-prolog-5.7.5.ebuild:
+ Remove old -5.7 development versions
*swi-prolog-5.7.7 (28 Feb 2009)
diff --git a/dev-lang/swi-prolog/swi-prolog-5.7.1.ebuild b/dev-lang/swi-prolog/swi-prolog-5.7.1.ebuild
deleted file mode 100644
index 67e87765e08e..000000000000
--- a/dev-lang/swi-prolog/swi-prolog-5.7.1.ebuild
+++ /dev/null
@@ -1,130 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/swi-prolog/swi-prolog-5.7.1.ebuild,v 1.2 2008/10/11 08:01:37 keri Exp $
-
-inherit eutils flag-o-matic java-pkg-opt-2
-
-PATCHSET_VER="0"
-
-DESCRIPTION="free, small, and standard compliant Prolog compiler"
-HOMEPAGE="http://www.swi-prolog.org/"
-SRC_URI="http://gollem.science.uva.nl/cgi-bin/nph-download/SWI-Prolog/BETA/pl-${PV}.tar.gz
- mirror://gentoo/${P}-gentoo-patchset-${PATCHSET_VER}.tar.gz"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86"
-IUSE="berkdb debug doc gmp hardened java minimal odbc readline ssl static test zlib X"
-
-DEPEND="!media-libs/ploticus
- sys-libs/ncurses
- zlib? ( sys-libs/zlib )
- odbc? ( dev-db/unixODBC )
- berkdb? ( sys-libs/db )
- readline? ( sys-libs/readline )
- gmp? ( dev-libs/gmp )
- ssl? ( dev-libs/openssl )
- java? ( >=virtual/jdk-1.4
- test? ( =dev-java/junit-3.8* ) )
- X? (
- media-libs/jpeg
- x11-libs/libX11
- x11-libs/libXft
- x11-libs/libXpm
- x11-libs/libXt
- x11-libs/libICE
- x11-libs/libSM
- x11-proto/xproto )"
-
-S="${WORKDIR}/pl-${PV}"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
-
- EPATCH_FORCE=yes
- EPATCH_SUFFIX=patch
- epatch "${WORKDIR}"/${PV}
-}
-
-src_compile() {
- einfo "Building SWI-Prolog compiler"
-
- append-flags -fno-strict-aliasing
- use hardened && append-flags -fno-unit-at-a-time
- use debug && append-flags -DO_DEBUG
-
- local jpltestconf
- if use java && use test ; then
- jpltestconf="--with-junit=$(java-config --classpath junit)"
- fi
-
- cd "${S}"/src
- econf \
- --libdir=/usr/$(get_libdir) \
- ${jpltestconf} \
- $(use_enable gmp) \
- $(use_enable readline) \
- $(use_enable !static shared) \
- --enable-custom-flags COFLAGS="${CFLAGS}" \
- || die "econf failed"
- emake || die "emake failed"
-
- if ! use minimal ; then
- einfo "Building SWI-Prolog additional packages"
-
- cd "${S}/packages"
- econf \
- --libdir=/usr/$(get_libdir) \
- $(use_enable !static shared) \
- --without-C-sicstus \
- --with-chr \
- --with-clib \
- --with-clpqr \
- --with-cpp \
- --with-cppproxy \
- $(use_with berkdb db) \
- --with-http \
- --without-jasmine \
- $(use_with java jpl) \
- --with-nlp \
- $(use_with odbc) \
- --with-pldoc \
- --with-plunit \
- --with-semweb \
- --with-sgml \
- --with-sgml/RDF \
- $(use_with ssl) \
- --with-table \
- $(use_with X xpce) \
- $(use_with zlib) \
- COFLAGS='"${CFLAGS}"' \
- || die "packages econf failed"
-
- emake || die "packages emake failed"
- fi
-}
-
-src_install() {
- emake -C src DESTDIR="${D}" install || die "install src failed"
-
- if ! use minimal ; then
- emake -C packages DESTDIR="${D}" install || die "install packages failed"
- if use doc ; then
- emake -C packages DESTDIR="${D}" html-install || die "html-install failed"
- emake -C packages/cppproxy DESTDIR="${D}" install-examples || die "install-examples failed"
- fi
- fi
-
- dodoc ChangeLog INSTALL PORTING README VERSION
-}
-
-src_test() {
- cd "${S}/src"
- emake check || die "make check failed. See above for details."
-
- if ! use minimal ; then
- cd "${S}/packages"
- emake check || die "make check failed. See above for details."
- fi
-}
diff --git a/dev-lang/swi-prolog/swi-prolog-5.7.2.ebuild b/dev-lang/swi-prolog/swi-prolog-5.7.2.ebuild
deleted file mode 100644
index 13096584c889..000000000000
--- a/dev-lang/swi-prolog/swi-prolog-5.7.2.ebuild
+++ /dev/null
@@ -1,130 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/swi-prolog/swi-prolog-5.7.2.ebuild,v 1.2 2008/11/28 23:48:01 keri Exp $
-
-inherit eutils flag-o-matic java-pkg-opt-2
-
-PATCHSET_VER="1"
-
-DESCRIPTION="free, small, and standard compliant Prolog compiler"
-HOMEPAGE="http://www.swi-prolog.org/"
-SRC_URI="http://gollem.science.uva.nl/cgi-bin/nph-download/SWI-Prolog/BETA/pl-${PV}.tar.gz
- mirror://gentoo/${P}-gentoo-patchset-${PATCHSET_VER}.tar.gz"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86"
-IUSE="berkdb debug doc gmp hardened java minimal odbc readline ssl static test zlib X"
-
-DEPEND="!media-libs/ploticus
- sys-libs/ncurses
- zlib? ( sys-libs/zlib )
- odbc? ( dev-db/unixODBC )
- berkdb? ( sys-libs/db )
- readline? ( sys-libs/readline )
- gmp? ( dev-libs/gmp )
- ssl? ( dev-libs/openssl )
- java? ( >=virtual/jdk-1.4
- test? ( =dev-java/junit-3.8* ) )
- X? (
- media-libs/jpeg
- x11-libs/libX11
- x11-libs/libXft
- x11-libs/libXpm
- x11-libs/libXt
- x11-libs/libICE
- x11-libs/libSM
- x11-proto/xproto )"
-
-S="${WORKDIR}/pl-${PV}"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
-
- EPATCH_FORCE=yes
- EPATCH_SUFFIX=patch
- epatch "${WORKDIR}"/${PV}
-}
-
-src_compile() {
- einfo "Building SWI-Prolog compiler"
-
- append-flags -fno-strict-aliasing
- use hardened && append-flags -fno-unit-at-a-time
- use debug && append-flags -DO_DEBUG
-
- cd "${S}"/src
- econf \
- --libdir=/usr/$(get_libdir) \
- $(use_enable gmp) \
- $(use_enable readline) \
- $(use_enable !static shared) \
- --enable-custom-flags COFLAGS="${CFLAGS}" \
- || die "econf failed"
- emake || die "emake failed"
-
- if ! use minimal ; then
- einfo "Building SWI-Prolog additional packages"
-
- local jpltestconf
- if use java && use test ; then
- jpltestconf="--with-junit=$(java-config --classpath junit)"
- fi
-
- cd "${S}/packages"
- econf \
- --libdir=/usr/$(get_libdir) \
- $(use_enable !static shared) \
- --without-C-sicstus \
- --with-chr \
- --with-clib \
- --with-clpqr \
- --with-cpp \
- --with-cppproxy \
- $(use_with berkdb db) \
- --with-http \
- --without-jasmine \
- $(use_with java jpl) \
- ${jpltestconf} \
- --with-nlp \
- $(use_with odbc) \
- --with-pldoc \
- --with-plunit \
- --with-semweb \
- --with-sgml \
- --with-sgml/RDF \
- $(use_with ssl) \
- --with-table \
- $(use_with X xpce) \
- $(use_with zlib) \
- COFLAGS='"${CFLAGS}"' \
- || die "packages econf failed"
-
- emake || die "packages emake failed"
- fi
-}
-
-src_install() {
- emake -C src DESTDIR="${D}" install || die "install src failed"
-
- if ! use minimal ; then
- emake -C packages DESTDIR="${D}" install || die "install packages failed"
- if use doc ; then
- emake -C packages DESTDIR="${D}" html-install || die "html-install failed"
- emake -C packages/cppproxy DESTDIR="${D}" install-examples || die "install-examples failed"
- fi
- fi
-
- dodoc ChangeLog INSTALL PORTING README VERSION
-}
-
-src_test() {
- cd "${S}/src"
- emake check || die "make check failed. See above for details."
-
- if ! use minimal ; then
- cd "${S}/packages"
- emake check || die "make check failed. See above for details."
- fi
-}
diff --git a/dev-lang/swi-prolog/swi-prolog-5.7.3.ebuild b/dev-lang/swi-prolog/swi-prolog-5.7.3.ebuild
deleted file mode 100644
index 798c19ed852d..000000000000
--- a/dev-lang/swi-prolog/swi-prolog-5.7.3.ebuild
+++ /dev/null
@@ -1,130 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/swi-prolog/swi-prolog-5.7.3.ebuild,v 1.1 2008/12/03 06:27:03 keri Exp $
-
-inherit eutils flag-o-matic java-pkg-opt-2
-
-PATCHSET_VER="0"
-
-DESCRIPTION="free, small, and standard compliant Prolog compiler"
-HOMEPAGE="http://www.swi-prolog.org/"
-SRC_URI="http://gollem.science.uva.nl/cgi-bin/nph-download/SWI-Prolog/BETA/pl-${PV}.tar.gz
- mirror://gentoo/${P}-gentoo-patchset-${PATCHSET_VER}.tar.gz"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86"
-IUSE="berkdb debug doc gmp hardened java minimal odbc readline ssl static test zlib X"
-
-DEPEND="!media-libs/ploticus
- sys-libs/ncurses
- zlib? ( sys-libs/zlib )
- odbc? ( dev-db/unixODBC )
- berkdb? ( sys-libs/db )
- readline? ( sys-libs/readline )
- gmp? ( dev-libs/gmp )
- ssl? ( dev-libs/openssl )
- java? ( >=virtual/jdk-1.4
- test? ( =dev-java/junit-3.8* ) )
- X? (
- media-libs/jpeg
- x11-libs/libX11
- x11-libs/libXft
- x11-libs/libXpm
- x11-libs/libXt
- x11-libs/libICE
- x11-libs/libSM
- x11-proto/xproto )"
-
-S="${WORKDIR}/pl-${PV}"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
-
- EPATCH_FORCE=yes
- EPATCH_SUFFIX=patch
- epatch "${WORKDIR}"/${PV}
-}
-
-src_compile() {
- einfo "Building SWI-Prolog compiler"
-
- append-flags -fno-strict-aliasing
- use hardened && append-flags -fno-unit-at-a-time
- use debug && append-flags -DO_DEBUG
-
- cd "${S}"/src
- econf \
- --libdir=/usr/$(get_libdir) \
- $(use_enable gmp) \
- $(use_enable readline) \
- $(use_enable !static shared) \
- --enable-custom-flags COFLAGS="${CFLAGS}" \
- || die "econf failed"
- emake || die "emake failed"
-
- if ! use minimal ; then
- einfo "Building SWI-Prolog additional packages"
-
- local jpltestconf
- if use java && use test ; then
- jpltestconf="--with-junit=$(java-config --classpath junit)"
- fi
-
- cd "${S}/packages"
- econf \
- --libdir=/usr/$(get_libdir) \
- $(use_enable !static shared) \
- --without-C-sicstus \
- --with-chr \
- --with-clib \
- --with-clpqr \
- --with-cpp \
- --with-cppproxy \
- $(use_with berkdb db) \
- --with-http \
- --without-jasmine \
- $(use_with java jpl) \
- ${jpltestconf} \
- --with-nlp \
- $(use_with odbc) \
- --with-pldoc \
- --with-plunit \
- --with-semweb \
- --with-sgml \
- --with-sgml/RDF \
- $(use_with ssl) \
- --with-table \
- $(use_with X xpce) \
- $(use_with zlib) \
- COFLAGS='"${CFLAGS}"' \
- || die "packages econf failed"
-
- emake || die "packages emake failed"
- fi
-}
-
-src_install() {
- emake -C src DESTDIR="${D}" install || die "install src failed"
-
- if ! use minimal ; then
- emake -C packages DESTDIR="${D}" install || die "install packages failed"
- if use doc ; then
- emake -C packages DESTDIR="${D}" html-install || die "html-install failed"
- emake -C packages/cppproxy DESTDIR="${D}" install-examples || die "install-examples failed"
- fi
- fi
-
- dodoc ChangeLog INSTALL PORTING README VERSION
-}
-
-src_test() {
- cd "${S}/src"
- emake check || die "make check failed. See above for details."
-
- if ! use minimal ; then
- cd "${S}/packages"
- emake check || die "make check failed. See above for details."
- fi
-}
diff --git a/dev-lang/swi-prolog/swi-prolog-5.7.4.ebuild b/dev-lang/swi-prolog/swi-prolog-5.7.4.ebuild
deleted file mode 100644
index fd3ba80a4321..000000000000
--- a/dev-lang/swi-prolog/swi-prolog-5.7.4.ebuild
+++ /dev/null
@@ -1,130 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/swi-prolog/swi-prolog-5.7.4.ebuild,v 1.1 2009/01/08 18:58:37 keri Exp $
-
-inherit eutils flag-o-matic java-pkg-opt-2
-
-PATCHSET_VER="0"
-
-DESCRIPTION="free, small, and standard compliant Prolog compiler"
-HOMEPAGE="http://www.swi-prolog.org/"
-SRC_URI="http://gollem.science.uva.nl/cgi-bin/nph-download/SWI-Prolog/BETA/pl-${PV}.tar.gz
- mirror://gentoo/${P}-gentoo-patchset-${PATCHSET_VER}.tar.gz"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86"
-IUSE="berkdb debug doc gmp hardened java minimal odbc readline ssl static test zlib X"
-
-DEPEND="!media-libs/ploticus
- sys-libs/ncurses
- zlib? ( sys-libs/zlib )
- odbc? ( dev-db/unixODBC )
- berkdb? ( sys-libs/db )
- readline? ( sys-libs/readline )
- gmp? ( dev-libs/gmp )
- ssl? ( dev-libs/openssl )
- java? ( >=virtual/jdk-1.4
- test? ( =dev-java/junit-3.8* ) )
- X? (
- media-libs/jpeg
- x11-libs/libX11
- x11-libs/libXft
- x11-libs/libXpm
- x11-libs/libXt
- x11-libs/libICE
- x11-libs/libSM
- x11-proto/xproto )"
-
-S="${WORKDIR}/pl-${PV}"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
-
- EPATCH_FORCE=yes
- EPATCH_SUFFIX=patch
- epatch "${WORKDIR}"/${PV}
-}
-
-src_compile() {
- einfo "Building SWI-Prolog compiler"
-
- append-flags -fno-strict-aliasing
- use hardened && append-flags -fno-unit-at-a-time
- use debug && append-flags -DO_DEBUG
-
- cd "${S}"/src
- econf \
- --libdir=/usr/$(get_libdir) \
- $(use_enable gmp) \
- $(use_enable readline) \
- $(use_enable !static shared) \
- --enable-custom-flags COFLAGS="${CFLAGS}" \
- || die "econf failed"
- emake || die "emake failed"
-
- if ! use minimal ; then
- einfo "Building SWI-Prolog additional packages"
-
- local jpltestconf
- if use java && use test ; then
- jpltestconf="--with-junit=$(java-config --classpath junit)"
- fi
-
- cd "${S}/packages"
- econf \
- --libdir=/usr/$(get_libdir) \
- $(use_enable !static shared) \
- --without-C-sicstus \
- --with-chr \
- --with-clib \
- --with-clpqr \
- --with-cpp \
- --with-cppproxy \
- $(use_with berkdb db) \
- --with-http \
- --without-jasmine \
- $(use_with java jpl) \
- ${jpltestconf} \
- --with-nlp \
- $(use_with odbc) \
- --with-pldoc \
- --with-plunit \
- --with-semweb \
- --with-sgml \
- --with-sgml/RDF \
- $(use_with ssl) \
- --with-table \
- $(use_with X xpce) \
- $(use_with zlib) \
- COFLAGS='"${CFLAGS}"' \
- || die "packages econf failed"
-
- emake || die "packages emake failed"
- fi
-}
-
-src_install() {
- emake -C src DESTDIR="${D}" install || die "install src failed"
-
- if ! use minimal ; then
- emake -C packages DESTDIR="${D}" install || die "install packages failed"
- if use doc ; then
- emake -C packages DESTDIR="${D}" html-install || die "html-install failed"
- emake -C packages/cppproxy DESTDIR="${D}" install-examples || die "install-examples failed"
- fi
- fi
-
- dodoc ChangeLog INSTALL PORTING README VERSION
-}
-
-src_test() {
- cd "${S}/src"
- emake check || die "make check failed. See above for details."
-
- if ! use minimal ; then
- cd "${S}/packages"
- emake check || die "make check failed. See above for details."
- fi
-}
diff --git a/dev-lang/swi-prolog/swi-prolog-5.7.5.ebuild b/dev-lang/swi-prolog/swi-prolog-5.7.5.ebuild
deleted file mode 100644
index 0502b4fe27f1..000000000000
--- a/dev-lang/swi-prolog/swi-prolog-5.7.5.ebuild
+++ /dev/null
@@ -1,130 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/swi-prolog/swi-prolog-5.7.5.ebuild,v 1.1 2009/01/24 07:43:29 keri Exp $
-
-inherit eutils flag-o-matic java-pkg-opt-2
-
-PATCHSET_VER="0"
-
-DESCRIPTION="free, small, and standard compliant Prolog compiler"
-HOMEPAGE="http://www.swi-prolog.org/"
-SRC_URI="http://gollem.science.uva.nl/cgi-bin/nph-download/SWI-Prolog/BETA/pl-${PV}.tar.gz
- mirror://gentoo/${P}-gentoo-patchset-${PATCHSET_VER}.tar.gz"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86"
-IUSE="berkdb debug doc gmp hardened java minimal odbc readline ssl static test zlib X"
-
-DEPEND="!media-libs/ploticus
- sys-libs/ncurses
- zlib? ( sys-libs/zlib )
- odbc? ( dev-db/unixODBC )
- berkdb? ( sys-libs/db )
- readline? ( sys-libs/readline )
- gmp? ( dev-libs/gmp )
- ssl? ( dev-libs/openssl )
- java? ( >=virtual/jdk-1.4
- test? ( =dev-java/junit-3.8* ) )
- X? (
- media-libs/jpeg
- x11-libs/libX11
- x11-libs/libXft
- x11-libs/libXpm
- x11-libs/libXt
- x11-libs/libICE
- x11-libs/libSM
- x11-proto/xproto )"
-
-S="${WORKDIR}/pl-${PV}"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
-
- EPATCH_FORCE=yes
- EPATCH_SUFFIX=patch
- epatch "${WORKDIR}"/${PV}
-}
-
-src_compile() {
- einfo "Building SWI-Prolog compiler"
-
- append-flags -fno-strict-aliasing
- use hardened && append-flags -fno-unit-at-a-time
- use debug && append-flags -DO_DEBUG
-
- cd "${S}"/src
- econf \
- --libdir=/usr/$(get_libdir) \
- $(use_enable gmp) \
- $(use_enable readline) \
- $(use_enable !static shared) \
- --enable-custom-flags COFLAGS="${CFLAGS}" \
- || die "econf failed"
- emake || die "emake failed"
-
- if ! use minimal ; then
- einfo "Building SWI-Prolog additional packages"
-
- local jpltestconf
- if use java && use test ; then
- jpltestconf="--with-junit=$(java-config --classpath junit)"
- fi
-
- cd "${S}/packages"
- econf \
- --libdir=/usr/$(get_libdir) \
- $(use_enable !static shared) \
- --without-C-sicstus \
- --with-chr \
- --with-clib \
- --with-clpqr \
- --with-cpp \
- --with-cppproxy \
- $(use_with berkdb db) \
- --with-http \
- --without-jasmine \
- $(use_with java jpl) \
- ${jpltestconf} \
- --with-nlp \
- $(use_with odbc) \
- --with-pldoc \
- --with-plunit \
- --with-semweb \
- --with-sgml \
- --with-sgml/RDF \
- $(use_with ssl) \
- --with-table \
- $(use_with X xpce) \
- $(use_with zlib) \
- COFLAGS='"${CFLAGS}"' \
- || die "packages econf failed"
-
- emake || die "packages emake failed"
- fi
-}
-
-src_install() {
- emake -C src DESTDIR="${D}" install || die "install src failed"
-
- if ! use minimal ; then
- emake -C packages DESTDIR="${D}" install || die "install packages failed"
- if use doc ; then
- emake -C packages DESTDIR="${D}" html-install || die "html-install failed"
- emake -C packages/cppproxy DESTDIR="${D}" install-examples || die "install-examples failed"
- fi
- fi
-
- dodoc ChangeLog INSTALL PORTING README VERSION
-}
-
-src_test() {
- cd "${S}/src"
- emake check || die "make check failed. See above for details."
-
- if ! use minimal ; then
- cd "${S}/packages"
- emake check || die "make check failed. See above for details."
- fi
-}