public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] proj/sci:master commit in: sci-libs/lemon/
@ 2012-03-02 19:05 Martin Mokrejs
  0 siblings, 0 replies; 3+ messages in thread
From: Martin Mokrejs @ 2012-03-02 19:05 UTC (permalink / raw
  To: gentoo-commits

commit:     dc801c2ec106833af400bb411e1ddf39455e9beb
Author:     Martin Mokrejs <mmokrejs <AT> fold <DOT> natur <DOT> cuni <DOT> cz>
AuthorDate: Fri Mar  2 19:02:11 2012 +0000
Commit:     Martin Mokrejs <mmokrejs <AT> fold <DOT> natur <DOT> cuni <DOT> cz>
CommitDate: Fri Mar  2 19:02:11 2012 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=dc801c2e

sci-libs/lemon: new package, required by sci-biology/cufflinks

(Portage version: 2.1.10.49/git/Linux x86_64, unsigned Manifest commit)

---
 sci-libs/lemon/ChangeLog          |   10 ++++++++++
 sci-libs/lemon/lemon-1.2.3.ebuild |   29 +++++++++++++++++++++++++++++
 sci-libs/lemon/metadata.xml       |    9 +++++++++
 3 files changed, 48 insertions(+), 0 deletions(-)

diff --git a/sci-libs/lemon/ChangeLog b/sci-libs/lemon/ChangeLog
new file mode 100644
index 0000000..df12509
--- /dev/null
+++ b/sci-libs/lemon/ChangeLog
@@ -0,0 +1,10 @@
+# ChangeLog for sci-libs/lemon
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# $Header: $
+
+*lemon-1.2.3 (02 Mar 2012)
+
+  02 Mar 2012; Martin Mokrejs <mmokrejs@fold.natur.cuni.cz>
+  +lemon-1.2.3.ebuild, +metadata.xml:
+  initial and working ebuild
+

diff --git a/sci-libs/lemon/lemon-1.2.3.ebuild b/sci-libs/lemon/lemon-1.2.3.ebuild
new file mode 100644
index 0000000..60fe4d7
--- /dev/null
+++ b/sci-libs/lemon/lemon-1.2.3.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2012 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=4
+
+DESCRIPTION="A C++ template STATIC library providing efficient implementations of common data structures and algorithms with combinatorial optimization tasks of graphs and networks."
+HOMEPAGE="https://lemon.cs.elte.hu/trac/lemon/"
+SRC_URI="http://lemon.cs.elte.hu/pub/sources/lemon-"${PV}".tar.gz"
+
+LICENSE="Boost-1.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="doc test"
+
+DEPEND="sci-mathematics/glpk
+		dev-lang/python
+		doc? ( app-text/ghostscript-gpl )
+		test? ( dev-util/valgrind )"
+RDEPEND="${DEPEND}"
+
+src_prepare(){
+	if use test; then
+		MYOPTS="--enable-valgrind"
+	else
+		MYOPTS=""
+	fi
+	econf ${MYOPTS} || die
+}

diff --git a/sci-libs/lemon/metadata.xml b/sci-libs/lemon/metadata.xml
new file mode 100644
index 0000000..07b5255
--- /dev/null
+++ b/sci-libs/lemon/metadata.xml
@@ -0,0 +1,9 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<herd>sci-biology</herd>
+	<maintainer>
+		<email>mmokrejs@fold.natur.cuni.cz</email>
+		<name>Martin Mokrejs</name>
+	</maintainer>
+</pkgmetadata>



^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [gentoo-commits] proj/sci:master commit in: sci-libs/lemon/
@ 2012-03-03 19:43 Martin Mokrejs
  0 siblings, 0 replies; 3+ messages in thread
From: Martin Mokrejs @ 2012-03-03 19:43 UTC (permalink / raw
  To: gentoo-commits

commit:     e42adf4f93a55c96c9ba0f31e43458d47ae16126
Author:     Martin Mokrejs <mmokrejs <AT> fold <DOT> natur <DOT> cuni <DOT> cz>
AuthorDate: Sat Mar  3 19:42:54 2012 +0000
Commit:     Martin Mokrejs <mmokrejs <AT> fold <DOT> natur <DOT> cuni <DOT> cz>
CommitDate: Sat Mar  3 19:42:54 2012 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=e42adf4f

sci-libs/lemon: added a note how to eventually create a shared library

(Portage version: 2.1.10.49/git/Linux x86_64, unsigned Manifest commit)

---
 sci-libs/lemon/ChangeLog          |    3 +++
 sci-libs/lemon/lemon-1.2.3.ebuild |    7 +++++--
 2 files changed, 8 insertions(+), 2 deletions(-)

diff --git a/sci-libs/lemon/ChangeLog b/sci-libs/lemon/ChangeLog
index df12509..2604c10 100644
--- a/sci-libs/lemon/ChangeLog
+++ b/sci-libs/lemon/ChangeLog
@@ -2,6 +2,9 @@
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+  03 Mar 2012; Martin Mokrejs <mmokrejs@fold.natur.cuni.cz> lemon-1.2.3.ebuild:
+  added a note how to eventually create a shared library
+
 *lemon-1.2.3 (02 Mar 2012)
 
   02 Mar 2012; Martin Mokrejs <mmokrejs@fold.natur.cuni.cz>

diff --git a/sci-libs/lemon/lemon-1.2.3.ebuild b/sci-libs/lemon/lemon-1.2.3.ebuild
index 60fe4d7..01f1970 100644
--- a/sci-libs/lemon/lemon-1.2.3.ebuild
+++ b/sci-libs/lemon/lemon-1.2.3.ebuild
@@ -14,8 +14,8 @@ KEYWORDS="~amd64 ~x86"
 IUSE="doc test"
 
 DEPEND="sci-mathematics/glpk
-		dev-lang/python
-		doc? ( app-text/ghostscript-gpl )
+		doc? ( app-text/ghostscript-gpl
+				dev-lang/python )
 		test? ( dev-util/valgrind )"
 RDEPEND="${DEPEND}"
 
@@ -27,3 +27,6 @@ src_prepare(){
 	fi
 	econf ${MYOPTS} || die
 }
+
+# a dynamic library can be built using
+# cmake -DBUILD_SHARED_LIBS=TRUE ..



^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [gentoo-commits] proj/sci:master commit in: sci-libs/lemon/
@ 2012-03-08 20:34 Martin Mokrejs
  0 siblings, 0 replies; 3+ messages in thread
From: Martin Mokrejs @ 2012-03-08 20:34 UTC (permalink / raw
  To: gentoo-commits

commit:     5cafb83b5e8ca310b9cce6b9791eb695a6ec9af2
Author:     Martin Mokrejs <mmokrejs <AT> fold <DOT> natur <DOT> cuni <DOT> cz>
AuthorDate: Wed Mar  7 15:52:04 2012 +0000
Commit:     Martin Mokrejs <mmokrejs <AT> fold <DOT> natur <DOT> cuni <DOT> cz>
CommitDate: Wed Mar  7 15:52:04 2012 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=5cafb83b

sci-libs/lemon: shortened DESCR line

(Portage version: 2.1.10.49/git/Linux x86_64, unsigned Manifest commit)

---
 sci-libs/lemon/ChangeLog          |    3 +++
 sci-libs/lemon/lemon-1.2.3.ebuild |    2 +-
 2 files changed, 4 insertions(+), 1 deletions(-)

diff --git a/sci-libs/lemon/ChangeLog b/sci-libs/lemon/ChangeLog
index 2604c10..0920281 100644
--- a/sci-libs/lemon/ChangeLog
+++ b/sci-libs/lemon/ChangeLog
@@ -2,6 +2,9 @@
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+  07 Mar 2012; Martin Mokrejs <mmokrejs@fold.natur.cuni.cz> lemon-1.2.3.ebuild:
+  shortened DESCR line
+
   03 Mar 2012; Martin Mokrejs <mmokrejs@fold.natur.cuni.cz> lemon-1.2.3.ebuild:
   added a note how to eventually create a shared library
 

diff --git a/sci-libs/lemon/lemon-1.2.3.ebuild b/sci-libs/lemon/lemon-1.2.3.ebuild
index 01f1970..96a27f4 100644
--- a/sci-libs/lemon/lemon-1.2.3.ebuild
+++ b/sci-libs/lemon/lemon-1.2.3.ebuild
@@ -4,7 +4,7 @@
 
 EAPI=4
 
-DESCRIPTION="A C++ template STATIC library providing efficient implementations of common data structures and algorithms with combinatorial optimization tasks of graphs and networks."
+DESCRIPTION="A C++ template STATIC library of efficient implementations of common data structures and algorithms."
 HOMEPAGE="https://lemon.cs.elte.hu/trac/lemon/"
 SRC_URI="http://lemon.cs.elte.hu/pub/sources/lemon-"${PV}".tar.gz"
 



^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2012-03-08 20:34 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-03-08 20:34 [gentoo-commits] proj/sci:master commit in: sci-libs/lemon/ Martin Mokrejs
  -- strict thread matches above, loose matches on Subject: below --
2012-03-03 19:43 Martin Mokrejs
2012-03-02 19:05 Martin Mokrejs

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox