summaryrefslogtreecommitdiff
blob: 678887de925e99da35400a7e0f59e9a3fe04f7a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=7

inherit toolchain-funcs

DESCRIPTION="Protein secondary structure assignment from atomic coordinates"
HOMEPAGE="http://webclu.bio.wzw.tum.de/stride/"
SRC_URI="
	ftp://ftp.ebi.ac.uk/pub/software/unix/${PN}/src/${PN}.tar.gz -> ${P}.tar.gz
	https://dev.gentoo.org/~jlec/distfiles/${PN}-20060723-update.patch.bz2"

LICENSE="STRIDE"
SLOT="0"
KEYWORDS="amd64 ppc x86 ~amd64-linux ~x86-linux ~x86-macos"
RESTRICT="mirror bindist"

S="${WORKDIR}"
PATCHES=(
	# this patch updates the source to the most recent
	# version which was kindly provided by the author
	"${S}"/${PN}-20060723-update.patch
	"${FILESDIR}"/${PN}-20011129-fix-buildsystem.patch
)

src_configure() {
	tc-export CC
}

src_install() {
	dobin ${PN}
}