diff options
author | Raúl Porcel <armin76@gentoo.org> | 2007-09-11 11:13:20 +0000 |
---|---|---|
committer | Raúl Porcel <armin76@gentoo.org> | 2007-09-11 11:13:20 +0000 |
commit | 1920ad6d1dd33fbbc546f12d8e3ea82bae31ffbd (patch) | |
tree | 6a74539bbc05db8cd5bd41e179b795d203b452d3 /net-p2p | |
parent | Port to new gnustep eclasses (diff) | |
download | gentoo-2-1920ad6d1dd33fbbc546f12d8e3ea82bae31ffbd.tar.gz gentoo-2-1920ad6d1dd33fbbc546f12d8e3ea82bae31ffbd.tar.bz2 gentoo-2-1920ad6d1dd33fbbc546f12d8e3ea82bae31ffbd.zip |
Check for svg USE-flag on x11-libs/cairo, bug #190901
(Portage version: 2.1.3.9)
Diffstat (limited to 'net-p2p')
-rw-r--r-- | net-p2p/nicotine+/ChangeLog | 5 | ||||
-rw-r--r-- | net-p2p/nicotine+/nicotine+-1.2.8.ebuild | 9 |
2 files changed, 12 insertions, 2 deletions
diff --git a/net-p2p/nicotine+/ChangeLog b/net-p2p/nicotine+/ChangeLog index 96a6098bd749..1147d802e5ae 100644 --- a/net-p2p/nicotine+/ChangeLog +++ b/net-p2p/nicotine+/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-p2p/nicotine+ # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-p2p/nicotine+/ChangeLog,v 1.21 2007/07/08 21:50:37 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-p2p/nicotine+/ChangeLog,v 1.22 2007/09/11 11:13:20 armin76 Exp $ + + 11 Sep 2007; Raúl Porcel <armin76@gentoo.org> nicotine+-1.2.8.ebuild: + Check for svg USE-flag on x11-libs/cairo, bug #190901 08 Jul 2007; Raúl Porcel <armin76@gentoo.org> -nicotine+-1.2.7.1.ebuild: old diff --git a/net-p2p/nicotine+/nicotine+-1.2.8.ebuild b/net-p2p/nicotine+/nicotine+-1.2.8.ebuild index 13267737a584..b013159c5c78 100644 --- a/net-p2p/nicotine+/nicotine+-1.2.8.ebuild +++ b/net-p2p/nicotine+/nicotine+-1.2.8.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-p2p/nicotine+/nicotine+-1.2.8.ebuild,v 1.5 2007/07/08 20:50:41 josejx Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-p2p/nicotine+/nicotine+-1.2.8.ebuild,v 1.6 2007/09/11 11:13:20 armin76 Exp $ inherit distutils eutils multilib toolchain-funcs @@ -24,6 +24,13 @@ DEPEND="${RDEPEND} dev-util/pkgconfig >=sys-apps/sed-4" +pkg_setup() { + if ! built_with_use x11-libs/cairo svg; then + eerror "x11-libs/cairo must be built with the 'svg' USE flag" + die "Recompile x11-libs/cairo with enabled svg USE flag" + fi +} + src_compile() { distutils_src_compile |