blob: 12f0078108066852035489ef28535fb517cc916c (
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
|
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
inherit 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}.tar.gz"
SLOT="0"
LICENSE="freedist"
IUSE=""
KEYWORDS="amd64 ppc x86 ~amd64-linux ~x86-linux ~ppc-macos"
RDEPEND="x11-libs/libXaw"
DEPEND="${RDEPEND}
x11-base/xorg-proto"
S="${WORKDIR}/${P}/src"
src_prepare() {
sed \
-e "s/CFLAGS = -O3 -fomit-frame-pointer/CFLAGS = ${CFLAGS}/" \
-e "s/CC = cc/CC = $(tc-getCC)/" \
-e "s/DC = cc/DC = $(tc-getCC)/" \
-e "/ -o /s:\(\$(CC)\):\1 ${LDFLAGS}:g" \
-i Makefile || die "Patching Makefile failed."
mkdir ../fonts || die
}
src_compile() {
emake -j1 all put
}
src_install() {
cd "${WORKDIR}/${P}" || die
mv exe/font* fonts || die "Font move failed."
mv exe/factor exe/factor-${PN} || die "Renaming factor failed."
dobin exe/*
dodoc "${FILESDIR}"/README.Gentoo
dohtml -r phylip.html doc
insinto /usr/share/${PN}/
doins -r fonts
}
|