blob: 4ea83e1f16ab1dc9ad2c575d9cfd8c8ee023b65e (
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-physics/lightspeed/lightspeed-1.2a-r1.ebuild,v 1.12 2011/04/07 18:37:15 bicatali Exp $
EAPI=2
inherit autotools eutils
DEB_PATCH="${PN}_${PV}-7"
DESCRIPTION="OpenGL interactive relativistic simulator"
HOMEPAGE="http://lightspeed.sourceforge.net/"
SRC_URI="
mirror://sourceforge/${PN}/${P}.tar.gz
mirror://sourceforge/${PN}/objects-1.tar.gz
mirror://debian/pool/main/${PN:0:1}/${PN}/${DEB_PATCH}.diff.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="amd64 ppc x86"
IUSE="nls truetype"
LANGS="es"
for i in ${LANGS}; do
IUSE="${IUSE} linguas_${i}"
done
RDEPEND="
media-libs/libpng
media-libs/tiff
virtual/opengl
x11-libs/gtkglext
x11-libs/gtkglarea:2
x11-libs/gtk+:2
truetype? ( media-libs/ftgl )"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
S2="${WORKDIR}/objects"
src_prepare() {
epatch "${WORKDIR}/${DEB_PATCH}.diff"
epatch "${FILESDIR}"/${P}-autoconf.patch
eautoreconf
}
src_configure() {
econf \
--with-gtk=2 \
$(use_enable nls) \
$(use_with truetype ftgl)
}
src_compile() {
emake || die "emake failed"
for i in ${LANGS}; do
use linguas_${i} && emake ${i}.gmo
done
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
newicon src/icon.xpm lightspeed.xpm
make_desktop_entry ${PN} "Light Speed! Relativistic Simulator"
dodoc AUTHORS ChangeLog MATH NEWS README TODO || die
newdoc debian/changelog ChangeLog.Debian || die
cd ${S2}
newdoc README objects-README || die
insinto /usr/share/${PN}
doins *.3ds *.lwo || die
}
pkg_postinst() {
elog
elog "Some 3d models have been placed in /usr/share/${PN}"
elog "You can load them in Light Speed! from the File menu."
elog
}
|