blob: d179b2f8037eeeee80a818ad4b13bc2ca2346f5b (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
inherit eutils autotools
DESCRIPTION="Universal Data Array Visualization"
HOMEPAGE="http://udav.sourceforge.net/"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
SRC_URI="mirror://sourceforge/${PN}/${P}.tgz"
DEPEND="sci-libs/mathgl x11-libs/fltk"
#### Remove the following line when moving this ebuild to the main tree!
RESTRICT=mirror
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${PN}-fltk.patch
eautoreconf
}
src_compile() {
econf || die "econf failed"
emake || die "emake failed"
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
dodoc README AUTHORS || die "dodoc failed"
}
|