summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Palimaka <kensington@gentoo.org>2014-03-22 18:50:58 +0000
committerMichael Palimaka <kensington@gentoo.org>2014-03-22 18:50:58 +0000
commitdba5c679e8c123ab15a443020963d510847386bc (patch)
treec4d75519661467372dc96d2eeae77fca57829b63
parentRemove old. (diff)
downloadgentoo-2-dba5c679e8c123ab15a443020963d510847386bc.tar.gz
gentoo-2-dba5c679e8c123ab15a443020963d510847386bc.tar.bz2
gentoo-2-dba5c679e8c123ab15a443020963d510847386bc.zip
Remove old.
(Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 0x06B1F38DCA45A1EC!)
-rw-r--r--dev-libs/gecode/ChangeLog7
-rw-r--r--dev-libs/gecode/gecode-3.6.0.ebuild52
2 files changed, 5 insertions, 54 deletions
diff --git a/dev-libs/gecode/ChangeLog b/dev-libs/gecode/ChangeLog
index e757bb0e6aaf..50d9fbd62b01 100644
--- a/dev-libs/gecode/ChangeLog
+++ b/dev-libs/gecode/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for dev-libs/gecode
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/gecode/ChangeLog,v 1.5 2013/03/02 19:59:26 hwoarang Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/gecode/ChangeLog,v 1.6 2014/03/22 18:50:58 kensington Exp $
+
+ 22 Mar 2014; Michael Palimaka <kensington@gentoo.org> -gecode-3.6.0.ebuild:
+ Remove old.
02 Mar 2013; Markos Chandras <hwoarang@gentoo.org> gecode-3.6.0.ebuild,
gecode-3.7.3.ebuild:
diff --git a/dev-libs/gecode/gecode-3.6.0.ebuild b/dev-libs/gecode/gecode-3.6.0.ebuild
deleted file mode 100644
index 4fe8adac261f..000000000000
--- a/dev-libs/gecode/gecode-3.6.0.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/gecode/gecode-3.6.0.ebuild,v 1.3 2013/03/02 19:59:26 hwoarang Exp $
-
-EAPI="4"
-
-DESCRIPTION="Gecode is an environment for developing constraint-based systems and applications"
-SRC_URI="http://www.gecode.org/download/${P}.tar.gz"
-HOMEPAGE="http://www.gecode.org/"
-
-SLOT="0"
-LICENSE="MIT"
-KEYWORDS="~amd64 ~x86"
-IUSE="doc examples gist"
-
-DEPEND="gist? (
- dev-qt/qtcore:4
- dev-qt/qtgui:4
- media-libs/freetype
- media-libs/libpng
- >=dev-libs/glib-2
-)"
-RDEPEND="${DEPEND}"
-
-src_configure() {
- econf \
- --disable-examples \
- $(use_enable gist qt) \
- $(use_enable gist)
-}
-
-src_compile() {
- default
- use doc && emake doc
-}
-
-src_install() {
- default
-
- if use doc; then
- dohtml -r doc/html/
- einfo "HTML documentation has been installed into " \
- "/usr/share/doc/${PF}/html"
- fi
-
- if use examples; then
- docinto examples
- doins examples/*.cpp
- einfo "Example C++ programs have been installed into " \
- "/usr/share/doc/${PF}/examples"
- fi
-}