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.
gentoo-overlay/sci-chemistry/ksdssp/ksdssp-040728.ebuild

45 lines
859 B

# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=4
inherit toolchain-funcs
DESCRIPTION="ksdssp is an open source implementation of dssp"
HOMEPAGE="http://www.cgl.ucsf.edu/Overview/software.html"
SRC_URI="mirror://gentoo/${P}.shar"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
LICENSE="BSD"
IUSE=""
RDEPEND="sci-libs/libpdb++"
DEPEND="
${RDEPEND}
app-arch/sharutils"
S="${WORKDIR}"/${PN}
src_unpack() {
"${EPREFIX}"/usr/bin/unshar "${DISTDIR}"/${A}
}
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}
}