blob: 062a535900cf8532b8058b95412c16e065454a79 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-biology/phylip/phylip-3.62.ebuild,v 1.1 2004/12/23 21:37:02 ribosome Exp $
inherit gcc
DESCRIPTION="PHYLIP - The PHYLogeny Inference Package"
HOMEPAGE="http://evolution.genetics.washington.edu/${PN}.html"
SRC_URI="ftp://evolution.genetics.washington.edu/pub/${PN}/${P}.tar.gz"
LICENSE="freedist"
SLOT="0"
KEYWORDS="x86 ~ppc ~ppc-macos"
IUSE=""
DEPEND="virtual/libc
virtual/x11"
S=${WORKDIR}/${P}/src
src_compile() {
sed -i -e "s/CFLAGS =/CFLAGS = ${CFLAGS}/" Makefile
sed -i -e "s/CC = cc/CC = $(gcc-getCC)/" Makefile
sed -i -e "s/DC = cc/DC = $(gcc-getCC)/" Makefile
mkdir ../fonts
emake -j1 all put || die
mv ../exe/font* ../fonts
}
src_install()
{
cd ${WORKDIR}/${P}
dobin exe/*
dohtml phylip.html
insinto /usr/share/doc/${PF}/html/doc
doins doc/*
insinto /usr/share/${PN}/fonts
doins fonts/*
}
|