Gentoo Archives: gentoo-commits

From: Martin Mokrejs <mmokrejs@×××××××××××××××.cz>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/sci:master commit in: sci-libs/lemon/
Date: Fri, 02 Mar 2012 19:06:11
Message-Id: 1330714931.dc801c2ec106833af400bb411e1ddf39455e9beb.mmokrejs@gentoo
1 commit: dc801c2ec106833af400bb411e1ddf39455e9beb
2 Author: Martin Mokrejs <mmokrejs <AT> fold <DOT> natur <DOT> cuni <DOT> cz>
3 AuthorDate: Fri Mar 2 19:02:11 2012 +0000
4 Commit: Martin Mokrejs <mmokrejs <AT> fold <DOT> natur <DOT> cuni <DOT> cz>
5 CommitDate: Fri Mar 2 19:02:11 2012 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=dc801c2e
7
8 sci-libs/lemon: new package, required by sci-biology/cufflinks
9
10 (Portage version: 2.1.10.49/git/Linux x86_64, unsigned Manifest commit)
11
12 ---
13 sci-libs/lemon/ChangeLog | 10 ++++++++++
14 sci-libs/lemon/lemon-1.2.3.ebuild | 29 +++++++++++++++++++++++++++++
15 sci-libs/lemon/metadata.xml | 9 +++++++++
16 3 files changed, 48 insertions(+), 0 deletions(-)
17
18 diff --git a/sci-libs/lemon/ChangeLog b/sci-libs/lemon/ChangeLog
19 new file mode 100644
20 index 0000000..df12509
21 --- /dev/null
22 +++ b/sci-libs/lemon/ChangeLog
23 @@ -0,0 +1,10 @@
24 +# ChangeLog for sci-libs/lemon
25 +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
26 +# $Header: $
27 +
28 +*lemon-1.2.3 (02 Mar 2012)
29 +
30 + 02 Mar 2012; Martin Mokrejs <mmokrejs@×××××××××××××××.cz>
31 + +lemon-1.2.3.ebuild, +metadata.xml:
32 + initial and working ebuild
33 +
34
35 diff --git a/sci-libs/lemon/lemon-1.2.3.ebuild b/sci-libs/lemon/lemon-1.2.3.ebuild
36 new file mode 100644
37 index 0000000..60fe4d7
38 --- /dev/null
39 +++ b/sci-libs/lemon/lemon-1.2.3.ebuild
40 @@ -0,0 +1,29 @@
41 +# Copyright 1999-2012 Gentoo Foundation
42 +# Distributed under the terms of the GNU General Public License v2
43 +# $Header: $
44 +
45 +EAPI=4
46 +
47 +DESCRIPTION="A C++ template STATIC library providing efficient implementations of common data structures and algorithms with combinatorial optimization tasks of graphs and networks."
48 +HOMEPAGE="https://lemon.cs.elte.hu/trac/lemon/"
49 +SRC_URI="http://lemon.cs.elte.hu/pub/sources/lemon-"${PV}".tar.gz"
50 +
51 +LICENSE="Boost-1.0"
52 +SLOT="0"
53 +KEYWORDS="~amd64 ~x86"
54 +IUSE="doc test"
55 +
56 +DEPEND="sci-mathematics/glpk
57 + dev-lang/python
58 + doc? ( app-text/ghostscript-gpl )
59 + test? ( dev-util/valgrind )"
60 +RDEPEND="${DEPEND}"
61 +
62 +src_prepare(){
63 + if use test; then
64 + MYOPTS="--enable-valgrind"
65 + else
66 + MYOPTS=""
67 + fi
68 + econf ${MYOPTS} || die
69 +}
70
71 diff --git a/sci-libs/lemon/metadata.xml b/sci-libs/lemon/metadata.xml
72 new file mode 100644
73 index 0000000..07b5255
74 --- /dev/null
75 +++ b/sci-libs/lemon/metadata.xml
76 @@ -0,0 +1,9 @@
77 +<?xml version="1.0" encoding="UTF-8"?>
78 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
79 +<pkgmetadata>
80 + <herd>sci-biology</herd>
81 + <maintainer>
82 + <email>mmokrejs@×××××××××××××××.cz</email>
83 + <name>Martin Mokrejs</name>
84 + </maintainer>
85 +</pkgmetadata>