Gentoo Archives: gentoo-commits

From: "Justin Lecher (jlec)" <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-chemistry/dssp: ChangeLog dssp-2.2.1-r1.ebuild dssp-2.2.1.ebuild
Date: Wed, 25 Jun 2014 11:36:25
Message-Id: 20140625113622.1B34F2004E@flycatcher.gentoo.org
1 jlec 14/06/25 11:36:21
2
3 Modified: ChangeLog
4 Added: dssp-2.2.1-r1.ebuild
5 Removed: dssp-2.2.1.ebuild
6 Log:
7 sci-chemistry/dssp: Fix evil typo
8
9 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key B9D4F231BD1558AB!)
10
11 Revision Changes Path
12 1.13 sci-chemistry/dssp/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/dssp/ChangeLog?rev=1.13&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/dssp/ChangeLog?rev=1.13&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/dssp/ChangeLog?r1=1.12&r2=1.13
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/sci-chemistry/dssp/ChangeLog,v
21 retrieving revision 1.12
22 retrieving revision 1.13
23 diff -u -r1.12 -r1.13
24 --- ChangeLog 14 May 2014 09:28:33 -0000 1.12
25 +++ ChangeLog 25 Jun 2014 11:36:21 -0000 1.13
26 @@ -1,6 +1,12 @@
27 # ChangeLog for sci-chemistry/dssp
28 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/dssp/ChangeLog,v 1.12 2014/05/14 09:28:33 jlec Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/dssp/ChangeLog,v 1.13 2014/06/25 11:36:21 jlec Exp $
31 +
32 +*dssp-2.2.1-r1 (25 Jun 2014)
33 +
34 + 25 Jun 2014; Justin Lecher <jlec@g.o> -dssp-2.2.1.ebuild,
35 + +dssp-2.2.1-r1.ebuild:
36 + Fix evil typo
37
38 *dssp-2.2.1 (14 May 2014)
39
40
41
42
43 1.1 sci-chemistry/dssp/dssp-2.2.1-r1.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/dssp/dssp-2.2.1-r1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/dssp/dssp-2.2.1-r1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: dssp-2.2.1-r1.ebuild
49 ===================================================================
50 # Copyright 1999-2014 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/sci-chemistry/dssp/dssp-2.2.1-r1.ebuild,v 1.1 2014/06/25 11:36:21 jlec Exp $
53
54 EAPI=5
55
56 inherit eutils multilib toolchain-funcs
57
58 DESCRIPTION="The protein secondary structure standard"
59 HOMEPAGE="http://swift.cmbi.ru.nl/gv/dssp/"
60 SRC_URI="ftp://ftp.cmbi.ru.nl/pub/molbio/software/dssp-2/${P}.tgz"
61
62 LICENSE="Boost-1.0"
63 SLOT="0"
64 KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
65 IUSE=""
66
67 RDEPEND="dev-libs/boost:="
68 DEPEND="${RDEPEND}"
69
70 src_prepare() {
71 tc-export CXX
72
73 cat >> make.config <<- EOF
74 BOOST_LIB_SUFFIX = -mt
75 BOOST_LIB_DIR = "${EPREFIX}/usr/$(get_libdir)"
76 BOOST_INC_DIR = "${EPREFIX}/usr/include"
77 EOF
78
79 epatch \
80 "${FILESDIR}"/${PN}-2.1.0-gentoo.patch
81 }
82
83 src_install() {
84 dobin mkdssp
85 dosym mkdssp /usr/bin/dssp
86 doman doc/mkdssp.1
87 dodoc README.txt changelog
88
89 cat >> "${T}"/30-${PN} <<- EOF
90 DSSP="${EPREFIX}"/usr/bin/${PN}
91 EOF
92 doenvd "${T}"/30-${PN}
93 }