Gentoo Archives: gentoo-commits

From: Justin Lecher <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/sci:master commit in: sci-chemistry/jligand/
Date: Sat, 26 Feb 2011 12:53:35
Message-Id: 8f68a68a8780a55b58e8622c2df174adaab30a21.jlec@gentoo
1 commit: 8f68a68a8780a55b58e8622c2df174adaab30a21
2 Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
3 AuthorDate: Sat Feb 26 11:46:50 2011 +0000
4 Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
5 CommitDate: Sat Feb 26 11:46:50 2011 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=8f68a68a
7
8 Version Bump
9
10 (Portage version: 2.2.0_alpha25/git/Linux x86_64, signed Manifest commit with key 70EB7916)
11
12 ---
13 sci-chemistry/jligand/ChangeLog | 7 ++++-
14 sci-chemistry/jligand/jligand-1.0.7.ebuild | 37 ++++++++++++++++++++++++++++
15 2 files changed, 43 insertions(+), 1 deletions(-)
16
17 diff --git a/sci-chemistry/jligand/ChangeLog b/sci-chemistry/jligand/ChangeLog
18 index f327c12..4c553a1 100644
19 --- a/sci-chemistry/jligand/ChangeLog
20 +++ b/sci-chemistry/jligand/ChangeLog
21 @@ -1,7 +1,12 @@
22 # ChangeLog for sci-chemistry/jligand
23 -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
24 +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
25 # $Header: $
26
27 +*jligand-1.0.7 (26 Feb 2011)
28 +
29 + 26 Feb 2011; Justin Lecher <jlec@g.o> +jligand-1.0.7.ebuild:
30 + Version Bump
31 +
32 10 Jul 2010; Andreas K. Huettel (dilfridge) <mail@×××××××××.de>
33 jligand-0.1.ebuild:
34 Silence repoman.
35
36 diff --git a/sci-chemistry/jligand/jligand-1.0.7.ebuild b/sci-chemistry/jligand/jligand-1.0.7.ebuild
37 new file mode 100644
38 index 0000000..378f006
39 --- /dev/null
40 +++ b/sci-chemistry/jligand/jligand-1.0.7.ebuild
41 @@ -0,0 +1,37 @@
42 +# Copyright 1999-2011 Gentoo Foundation
43 +# Distributed under the terms of the GNU General Public License v2
44 +# $Header: $
45 +
46 +EAPI="4"
47 +
48 +inherit java-pkg-2 java-ant-2 multilib
49 +
50 +MY_PN="JLigand"
51 +
52 +DESCRIPTION="a Java interface which allows links descriptions to be created"
53 +HOMEPAGE="http://www.ysbl.york.ac.uk/~pyoung/JLigand/JLigand.html"
54 +SRC_URI="http://www.ysbl.york.ac.uk/mxstat/${MY_PN}/${MY_PN}.${PV}.tar.gz"
55 +
56 +LICENSE="ccp4"
57 +SLOT="0"
58 +KEYWORDS=""
59 +IUSE=""
60 +
61 +RDEPEND="
62 + >=virtual/jre-1.5
63 + >=sci-chemistry/refmac-5.6.77
64 + >=sci-libs/monomer-db-5.16"
65 +DEPEND=">=virtual/jdk-1.5"
66 +
67 +S="${WORKDIR}"/${MY_PN}.${PV}
68 +
69 +src_compile() {
70 + sed 's:makefile::g' -i Makefile || die
71 + emake
72 +}
73 +
74 +src_install() {
75 + java-pkg_dojar ${PN}.jar
76 + java-pkg_dolauncher ${PN} \
77 + --jar ${PN}.jar
78 +}