You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
916 B
47 lines
916 B
# Copyright 1999-2012 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=4
|
|
|
|
inherit toolchain-funcs
|
|
|
|
DESCRIPTION="An open source implementation of sci-chemistry/dssp"
|
|
HOMEPAGE="http://www.cgl.ucsf.edu/Overview/software.html"
|
|
SRC_URI="mirror://gentoo/${P}.shar"
|
|
|
|
SLOT="0"
|
|
LICENSE="BSD"
|
|
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
|
|
IUSE=""
|
|
|
|
RDEPEND="sci-libs/libpdb++"
|
|
DEPEND="${RDEPEND}
|
|
app-arch/sharutils"
|
|
|
|
S="${WORKDIR}"/${PN}
|
|
|
|
src_unpack() {
|
|
"${EPREFIX}/usr/bin/unshar" "${DISTDIR}"/${A} || die
|
|
}
|
|
|
|
src_compile() {
|
|
emake \
|
|
CXX="$(tc-getCXX)" \
|
|
PDBINCDIR="${EPREFIX}/usr/include/libpdb++" \
|
|
BINDIR="${EPREFIX}/usr/bin" \
|
|
.TARGET="${PN}.csh" \
|
|
.CURDIR="${S}" \
|
|
CC="$(tc-getCXX)" \
|
|
LINKER="$(tc-getCXX)" \
|
|
OPT="${CXXFLAGS}" \
|
|
LFLAGS="${LDFLAGS}" \
|
|
${PN} ${PN}.csh
|
|
}
|
|
|
|
src_install() {
|
|
dobin ${PN}{,.csh}
|
|
dodoc README
|
|
dohtml ${PN}.html
|
|
doman ${PN}.1
|
|
}
|