diff options
Diffstat (limited to 'media-libs/shivavg/shivavg-0.2.1.ebuild')
-rw-r--r-- | media-libs/shivavg/shivavg-0.2.1.ebuild | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/media-libs/shivavg/shivavg-0.2.1.ebuild b/media-libs/shivavg/shivavg-0.2.1.ebuild new file mode 100644 index 000000000000..d36a45d399f8 --- /dev/null +++ b/media-libs/shivavg/shivavg-0.2.1.ebuild @@ -0,0 +1,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 +} |