blob: 23effae8257bcb6b143c2bdb70c4cc310796d034 (
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
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/opencsg/opencsg-1.3.2.ebuild,v 1.1 2012/08/02 02:06:34 mattm Exp $
EAPI="2"
inherit qt4-r2
DESCRIPTION="The Constructive Solid Geometry rendering library"
HOMEPAGE="http://www.opencsg.org/"
SRC_URI="http://www.opencsg.org/OpenCSG-${PV}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS=""
IUSE=""
CDEPEND="media-libs/glew x11-libs/qt-core"
DEPEND="${CDEPEND} sys-devel/gcc"
RDEPEND="${CDEPEND}"
S="${WORKDIR}/OpenCSG-${PV}"
src_unpack() {
unpack ${A}
/bin/rm -Rf "${S}"/glew
}
src_prepare() {
# We actually want to install somthing
cat << EOF >> src/src.pro
include.path=/usr/include
include.files=../include/*
target.path=/usr/lib
INSTALLS += target include
EOF
}
src_configure() {
eqmake4 "${S}"/src/src.pro
}
|