From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 297D013888F for ; Sat, 24 Oct 2015 11:22:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 94744E07E2; Sat, 24 Oct 2015 11:22:17 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 41997E07E2 for ; Sat, 24 Oct 2015 11:22:17 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E339E340AA1 for ; Sat, 24 Oct 2015 11:22:15 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 71A991772 for ; Sat, 24 Oct 2015 11:22:13 +0000 (UTC) From: "Pacho Ramos" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Pacho Ramos" Message-ID: <1445685724.91f7caa31a3e0ff4cdbafbdeb7e4e0fe6d605496.pacho@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/wxsvg/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/wxsvg/wxsvg-1.5.4-r1.ebuild X-VCS-Directories: media-libs/wxsvg/ X-VCS-Committer: pacho X-VCS-Committer-Name: Pacho Ramos X-VCS-Revision: 91f7caa31a3e0ff4cdbafbdeb7e4e0fe6d605496 X-VCS-Branch: master Date: Sat, 24 Oct 2015 11:22:13 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 13fcf473-fe5e-4df4-a3df-0ccd48dc177a X-Archives-Hash: 5fb0fe70444e5680f366261699b52104 commit: 91f7caa31a3e0ff4cdbafbdeb7e4e0fe6d605496 Author: Pacho Ramos gentoo org> AuthorDate: Sat Oct 24 11:21:52 2015 +0000 Commit: Pacho Ramos gentoo org> CommitDate: Sat Oct 24 11:22:04 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=91f7caa3 media-libs/wxsvg: Support wxGTK:3.0 Package-Manager: portage-2.2.23 media-libs/wxsvg/wxsvg-1.5.4-r1.ebuild | 42 ++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) diff --git a/media-libs/wxsvg/wxsvg-1.5.4-r1.ebuild b/media-libs/wxsvg/wxsvg-1.5.4-r1.ebuild new file mode 100644 index 0000000..2e90d36 --- /dev/null +++ b/media-libs/wxsvg/wxsvg-1.5.4-r1.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +WX_GTK_VER=3.0 +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/3" # based on SONAME of libwxsvg.so +KEYWORDS="~amd64 ~x86" +IUSE="static-libs" + +RDEPEND=">=dev-libs/expat-2:= + >=dev-libs/glib-2.28:2= + dev-libs/libxml2:= + media-libs/fontconfig:= + media-libs/freetype:2= + x11-libs/cairo:= + x11-libs/pango:= + x11-libs/wxGTK:${WX_GTK_VER}=[X] + virtual/ffmpeg" +DEPEND="${RDEPEND} + virtual/pkgconfig" + +DOCS=( AUTHORS ChangeLog TODO ) + +src_configure() { + need-wxwidgets base-unicode + econf \ + $(use_enable static-libs static) \ + --with-wx-config=${WX_CONFIG} +} + +src_install() { + default + prune_libtool_files +}