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.
36 lines
763 B
36 lines
763 B
# Copyright 1999-2015 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Id$
|
|
|
|
EAPI=5
|
|
|
|
inherit toolchain-funcs
|
|
|
|
DESCRIPTION="Multiple sequence alignment"
|
|
HOMEPAGE="http://bibiserv.techfak.uni-bielefeld.de/dialign"
|
|
SRC_URI="http://bibiserv.techfak.uni-bielefeld.de/applications/dialign/resources/downloads/dialign-2.2.1-src.tar.gz"
|
|
|
|
SLOT="0"
|
|
LICENSE="LGPL-2.1"
|
|
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
|
|
IUSE=""
|
|
|
|
S="${WORKDIR}"/dialign_package
|
|
|
|
src_compile() {
|
|
emake -C src \
|
|
CC="$(tc-getCC)" \
|
|
CFLAGS="${CFLAGS} -I. -DCONS -c"
|
|
}
|
|
|
|
src_install() {
|
|
dobin src/${PN}-2
|
|
insinto /usr/share/${PN}
|
|
doins dialign2_dir/*
|
|
|
|
cat >> "${T}"/80${PN} <<- EOF
|
|
DIALIGN2_DIR="${EPREFIX}/usr/share/${PN}"
|
|
EOF
|
|
doenvd "${T}"/80${PN}
|
|
}
|