blob: e946192a8c1f9c42fa12d0b881f89f67256c63d0 (
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
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-misc/gcam/gcam-2010.07.27-r1.ebuild,v 1.4 2014/01/06 13:44:33 jlec Exp $
EAPI=5
inherit autotools eutils
DESCRIPTION="GNU Computer Aided Manufacturing"
HOMEPAGE="http://gcam.js.cx"
SRC_URI="http://gcam.js.cx/files/${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE=""
RDEPEND="
dev-libs/expat
dev-libs/glib:2
>=media-libs/libpng-1.5:0
virtual/opengl
virtual/glu
x11-libs/gdk-pixbuf
x11-libs/gtk+:2
x11-libs/gtkglext
"
DEPEND="${RDEPEND}
virtual/pkgconfig"
PATCHES=(
"${FILESDIR}/${P}-cflags.patch"
"${FILESDIR}/${P}-libpng15.patch"
)
src_prepare() {
epatch ${PATCHES[@]}
eautoreconf
}
src_configure() {
econf --enable-static=no
}
src_install() {
default
prune_libtool_files
}
|