blob: d36a45d399f87e4125f88145b1e534d87b173745 (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=3
MY_PN="ShivaVG"
MY_P="${MY_PN}-${PV}"
inherit base autotools
DESCRIPTION="open-source implementation of the Khronos' OpenVG specification"
HOMEPAGE="http://shivavg.sourceforge.net"
SRC_URI="mirror://sourceforge/${PN}/${MY_P}.zip"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~arm ~amd64 ~x86"
IUSE=""
RDEPEND="virtual/glu
media-libs/freeglut
virtual/opengl"
DEPEND="${RDEPEND}"
S="${WORKDIR}/${MY_P}"
src_prepare() {
base_src_prepare
sed -i -e 's:LDFLAGS="$LDFLAGS :LIBS=":g' \
configure.in
eautoreconf
}
|