blob: 7ca196e430cdc672bfc154d209bbfac68c1b39d3 (
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
34
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-biology/stride/stride-20011129.ebuild,v 1.6 2007/09/20 14:35:18 coldwind Exp $
inherit eutils toolchain-funcs
DESCRIPTION="A program for protein secondary structure assignment from atomic coordinates."
LICENSE="as-is"
HOMEPAGE="http://www.embl-heidelberg.de/argos/stride/stride_info.html"
SRC_URI="ftp://ftp.ebi.ac.uk/pub/software/unix/${PN}/src/${PN}.tar.gz
mirror://gentoo/${PN}-20060723-update.patch.bz2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE=""
S="${WORKDIR}"
src_unpack() {
unpack ${A}
cd "${S}"
# this patch updates the source to the most recent
# version which was kindly provided by the author
epatch "${DISTDIR}/${PN}-20060723-update.patch.bz2"
# fix makefile
sed -e "/^CC/s:gcc -g:$(tc-getCC) ${CFLAGS}:" -i Makefile || \
die "Failed to fix Makefile"
}
src_install() {
dobin ${PN} || die "Failed to install stride binary"
}
|