* [gentoo-commits] proj/sci:master commit in: sci-libs/coinor-flopcpp/
@ 2013-05-26 18:34 Sebastien Fabbro
0 siblings, 0 replies; 3+ messages in thread
From: Sebastien Fabbro @ 2013-05-26 18:34 UTC (permalink / raw
To: gentoo-commits
commit: 9f648dc97a4908f61e7f4bfcf3fc72d315a1b4bf
Author: Sébastien Fabbro <bicatali <AT> gentoo <DOT> org>
AuthorDate: Sun May 26 18:31:50 2013 +0000
Commit: Sebastien Fabbro <bicatali <AT> gentoo <DOT> org>
CommitDate: Sun May 26 18:31:50 2013 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=9f648dc9
sci-libs/coinor-flopcpp: Initial import
Package-Manager: portage-2.2.01.21938-prefix
RepoMan-Options: --force
---
sci-libs/coinor-flopcpp/ChangeLog | 9 +++
.../coinor-flopcpp/coinor-flopcpp-1.1.2.ebuild | 67 ++++++++++++++++++++
sci-libs/coinor-flopcpp/metadata.xml | 14 ++++
3 files changed, 90 insertions(+), 0 deletions(-)
diff --git a/sci-libs/coinor-flopcpp/ChangeLog b/sci-libs/coinor-flopcpp/ChangeLog
new file mode 100644
index 0000000..912a4b5
--- /dev/null
+++ b/sci-libs/coinor-flopcpp/ChangeLog
@@ -0,0 +1,9 @@
+# ChangeLog for sci-libs/coinor-flopcpp
+# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
+# $Header: $
+
+*coinor-flopcpp-1.1.2 (26 May 2013)
+
+ 26 May 2013; Sébastien Fabbro <bicatali@gentoo.org>
+ +coinor-flopcpp-1.1.2.ebuild, +metadata.xml:
+ sci-libs/coinor-flopcpp: Initial import
diff --git a/sci-libs/coinor-flopcpp/coinor-flopcpp-1.1.2.ebuild b/sci-libs/coinor-flopcpp/coinor-flopcpp-1.1.2.ebuild
new file mode 100644
index 0000000..b388816
--- /dev/null
+++ b/sci-libs/coinor-flopcpp/coinor-flopcpp-1.1.2.ebuild
@@ -0,0 +1,67 @@
+# Copyright 1999-2013 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=5
+
+inherit autotools-utils multilib
+
+MYPN=FlopC++
+
+DESCRIPTION="COIN-OR algebraic modelling language for linear optimization"
+HOMEPAGE="https://projects.coin-or.org/FlopC++/"
+SRC_URI="http://www.coin-or.org/download/source/${MYPN}/${MYPN}-${PV}.tgz"
+
+LICENSE="EPL-1.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="doc examples static-libs"
+
+RDEPEND="
+ sci-libs/coinor-cgl
+ sci-libs/coinor-clp
+ sci-libs/coinor-osi"
+DEPEND="${RDEPEND}
+ virtual/pkgconfig
+ doc? ( app-doc/doxygen[dot] )"
+
+S="${WORKDIR}/${MYPN}-${PV}/FlopCpp"
+
+src_prepare() {
+ # as-needed fix
+ # hack to avoid eautoreconf (coinor has its own weird autotools)
+ sed -i \
+ -e 's:\(libFlopCpp_la_LIBADD.*=.*\)$:\1 @FLOPCPP_LIBS@:' \
+ src/Makefile.in || die
+}
+
+src_configure() {
+ local myeconfargs=(
+ $(use_with doc dot)
+ )
+ PKG_CONFIG_PATH+="${ED}"/usr/$(get_libdir)/pkgconfig \
+ autotools-utils_src_configure
+}
+
+src_compile() {
+ autotools-utils_src_compile
+ if use doc; then
+ cd "${WORKDIR}/${MYPN}-${PV}/doxydoc" || die
+ doxygen doxygen.conf || die
+ fi
+}
+
+src_test() {
+ pushd "${AUTOTOOLS_BUILD_DIR}" > /dev/null || die
+ emake test
+ popd > /dev/null || die
+}
+
+src_install() {
+ use doc && HTML_DOC=("${WORKDIR}/${MYPN}-${PV}/doxydoc/html/")
+ autotools-utils_src_install
+ if use examples; then
+ insinto /usr/share/doc/${PF}
+ doins -r examples
+ fi
+}
diff --git a/sci-libs/coinor-flopcpp/metadata.xml b/sci-libs/coinor-flopcpp/metadata.xml
new file mode 100644
index 0000000..fd88f40
--- /dev/null
+++ b/sci-libs/coinor-flopcpp/metadata.xml
@@ -0,0 +1,14 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+<herd>sci</herd>
+<longdescription lang="en">
+ The COIN-OR Formulation of Linear Optimization Problems in C++
+ (FLOPC++) is a linear optimization modelling language that can be
+ specified in a declarative style, similar to algebraic modelling
+ languages such as GAMS and AMPL, within a C++ program. As a result
+ the traditional strengths of algebraic modelling languages are
+ preserved, while embedding linear optimization models in software
+ applications is facilitated.
+</longdescription>
+</pkgmetadata>
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sci-libs/coinor-flopcpp/
@ 2013-07-17 23:42 Sebastien Fabbro
0 siblings, 0 replies; 3+ messages in thread
From: Sebastien Fabbro @ 2013-07-17 23:42 UTC (permalink / raw
To: gentoo-commits
commit: b9215c6f711db28f8940881ff9746f3b8d35e9e7
Author: Sébastien Fabbro <bicatali <AT> gentoo <DOT> org>
AuthorDate: Wed Jul 17 19:13:14 2013 +0000
Commit: Sebastien Fabbro <bicatali <AT> gentoo <DOT> org>
CommitDate: Wed Jul 17 19:13:14 2013 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=b9215c6f
sci-libs/coinor-flopcpp: Version bump
Package-Manager: portage-2.2.01.22124-prefix
RepoMan-Options: --force
---
sci-libs/coinor-flopcpp/ChangeLog | 6 ++++++
.../{coinor-flopcpp-1.1.2.ebuild => coinor-flopcpp-1.1.3.ebuild} | 0
2 files changed, 6 insertions(+)
diff --git a/sci-libs/coinor-flopcpp/ChangeLog b/sci-libs/coinor-flopcpp/ChangeLog
index 912a4b5..b81deaa 100644
--- a/sci-libs/coinor-flopcpp/ChangeLog
+++ b/sci-libs/coinor-flopcpp/ChangeLog
@@ -2,6 +2,12 @@
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
# $Header: $
+*coinor-flopcpp-1.1.3 (17 Jul 2013)
+
+ 17 Jul 2013; Sébastien Fabbro <bicatali@gentoo.org>
+ +coinor-flopcpp-1.1.3.ebuild, -coinor-flopcpp-1.1.2.ebuild:
+ sci-libs/coinor-flopcpp: Version bump
+
*coinor-flopcpp-1.1.2 (26 May 2013)
26 May 2013; Sébastien Fabbro <bicatali@gentoo.org>
diff --git a/sci-libs/coinor-flopcpp/coinor-flopcpp-1.1.2.ebuild b/sci-libs/coinor-flopcpp/coinor-flopcpp-1.1.3.ebuild
similarity index 100%
rename from sci-libs/coinor-flopcpp/coinor-flopcpp-1.1.2.ebuild
rename to sci-libs/coinor-flopcpp/coinor-flopcpp-1.1.3.ebuild
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sci-libs/coinor-flopcpp/
@ 2013-12-08 5:00 Sebastien Fabbro
0 siblings, 0 replies; 3+ messages in thread
From: Sebastien Fabbro @ 2013-12-08 5:00 UTC (permalink / raw
To: gentoo-commits
commit: 4e9fcc8ce705d99ee25b4137f755964b3cda8637
Author: Sébastien Fabbro <bicatali <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 7 16:22:53 2013 +0000
Commit: Sebastien Fabbro <bicatali <AT> gentoo <DOT> org>
CommitDate: Sat Dec 7 16:22:53 2013 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=4e9fcc8c
sci-libs/coinor-flopcpp: Version bump
Package-Manager: portage-2.2.7-prefix
---
sci-libs/coinor-flopcpp/ChangeLog | 6 ++++++
.../{coinor-flopcpp-1.1.3.ebuild => coinor-flopcpp-1.1.6.ebuild} | 0
2 files changed, 6 insertions(+)
diff --git a/sci-libs/coinor-flopcpp/ChangeLog b/sci-libs/coinor-flopcpp/ChangeLog
index b81deaa..0d6bf0c 100644
--- a/sci-libs/coinor-flopcpp/ChangeLog
+++ b/sci-libs/coinor-flopcpp/ChangeLog
@@ -2,6 +2,12 @@
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
# $Header: $
+*coinor-flopcpp-1.1.6 (07 Dec 2013)
+
+ 07 Dec 2013; Sébastien Fabbro <bicatali@gentoo.org>
+ +coinor-flopcpp-1.1.6.ebuild, -coinor-flopcpp-1.1.3.ebuild:
+ sci-libs/coinor-flopcpp: Version bump
+
*coinor-flopcpp-1.1.3 (17 Jul 2013)
17 Jul 2013; Sébastien Fabbro <bicatali@gentoo.org>
diff --git a/sci-libs/coinor-flopcpp/coinor-flopcpp-1.1.3.ebuild b/sci-libs/coinor-flopcpp/coinor-flopcpp-1.1.6.ebuild
similarity index 100%
rename from sci-libs/coinor-flopcpp/coinor-flopcpp-1.1.3.ebuild
rename to sci-libs/coinor-flopcpp/coinor-flopcpp-1.1.6.ebuild
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2013-12-08 5:00 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-07-17 23:42 [gentoo-commits] proj/sci:master commit in: sci-libs/coinor-flopcpp/ Sebastien Fabbro
-- strict thread matches above, loose matches on Subject: below --
2013-12-08 5:00 Sebastien Fabbro
2013-05-26 18:34 Sebastien Fabbro
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox