blob: 34bfd5699b036de827a38c0c2d8f54c773530ea9 (
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit flag-o-matic toolchain-funcs
DESCRIPTION="The PHYLogeny Inference Package"
HOMEPAGE="http://evolution.genetics.washington.edu/phylip.html"
SRC_URI="http://evolution.gs.washington.edu/${PN}/download/${P}.zip"
LICENSE="BSD-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
# 'mix' tool collides with dev-lang/elixir, bug #537514
RDEPEND="
x11-libs/libXaw
!dev-lang/elixir"
DEPEND="${RDEPEND}
x11-base/xorg-proto"
BDEPEND="app-arch/unzip"
PATCHES=(
"${FILESDIR}"/${P}-makefile.patch
"${FILESDIR}"/${P}-fno-common.patch
)
src_prepare() {
default
mkdir fonts || die
# clear out old binaries
rm -r exe || die
}
src_configure() {
tc-export CC
append-cflags -Wno-unused-result
}
src_compile() {
emake -C src -f Makefile.unx all put
}
src_install() {
mv exe/font* fonts || die "Font move failed"
mv exe/factor exe/factor-${PN} || die "Renaming factor failed"
dolib.so exe/*so
rm exe/*so || die
dobin exe/*
dodoc "${FILESDIR}"/README.Gentoo
docinto html
dodoc -r phylip.html doc
insinto /usr/share/phylip
doins -r fonts
}
|