blob: b8ef416039657a76fde8c1ee9e07ae5cc5be9b1f (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
inherit eutils autotools fdo-mime
DESCRIPTION="Universal Data Array Visualization"
HOMEPAGE="http://udav.sourceforge.net/"
LICENSE="GPL-2"
SLOT="0"
IUSE=""
KEYWORDS="~ppc ~x86"
SRC_URI="mirror://sourceforge/${PN}/${P}.tgz"
DEPEND="sci-libs/mathgl
x11-libs/fltk"
RDEPEND="${DEPEND}"
#### 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_install() {
emake DESTDIR="${D}" install || die "emake install failed"
rm -rf "${D}"usr/share/doc/udav/pics/.svn
dodoc README AUTHORS || die "dodoc failed"
make_desktop_entry ${PN}
insinto /usr/share/icons/hicolor/48x48/apps
doins xpm/${PN}.xpm
dosym /usr/share/icons/hicolor/48x48/apps/${PN}.xpm /usr/share/pixmaps/${PN}.xpm
}
pkg_postinst() {
fdo-mime_desktop_database_update
}
pkg_postrm() {
fdo-mime_desktop_database_update
}
|