42 lines
904 B
Bash
42 lines
904 B
Bash
# Copyright 1999-2013 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/media-libs/wxsvg/wxsvg-1.1.13.ebuild,v 1.3 2013/04/07 09:59:42 ago Exp $
|
|
|
|
EAPI=5
|
|
WX_GTK_VER=2.8
|
|
|
|
inherit eutils wxwidgets
|
|
|
|
DESCRIPTION="C++ library to create, manipulate and render SVG files"
|
|
HOMEPAGE="http://wxsvg.sourceforge.net/"
|
|
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
|
|
|
|
LICENSE="wxWinLL-3"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 x86"
|
|
IUSE="static-libs"
|
|
|
|
RDEPEND=">=dev-libs/expat-2
|
|
>=dev-libs/glib-2.28
|
|
dev-libs/libxml2
|
|
media-libs/fontconfig
|
|
>=media-libs/freetype-2
|
|
x11-libs/cairo
|
|
x11-libs/pango
|
|
x11-libs/wxGTK:2.8[X]
|
|
virtual/ffmpeg"
|
|
DEPEND="${RDEPEND}
|
|
virtual/pkgconfig"
|
|
|
|
DOCS=( AUTHORS ChangeLog TODO )
|
|
|
|
src_configure() {
|
|
econf \
|
|
$(use_enable static-libs static) \
|
|
--with-wx-config=${WX_CONFIG}
|
|
}
|
|
|
|
src_install() {
|
|
default
|
|
prune_libtool_files
|
|
}
|