diff options
author | Patrick Lauer <patrick@gentoo.org> | 2010-02-21 14:34:17 +0000 |
---|---|---|
committer | Patrick Lauer <patrick@gentoo.org> | 2010-02-21 14:34:17 +0000 |
commit | ca57cd144f7361380bda1eda1d0b7d4a47c6f8d5 (patch) | |
tree | c60c9c2528d4af13a93e67eb472f516b45b88a51 /dev-dotnet/gluezilla | |
parent | Don't install idle${SLOT} and idlelib module with USE="-tk" (bug #237788). (diff) | |
download | gentoo-2-ca57cd144f7361380bda1eda1d0b7d4a47c6f8d5.tar.gz gentoo-2-ca57cd144f7361380bda1eda1d0b7d4a47c6f8d5.tar.bz2 gentoo-2-ca57cd144f7361380bda1eda1d0b7d4a47c6f8d5.zip |
Bump, includes xulrunner detection fix by Priit Laes
(Portage version: 2.2_rc63/cvs/Linux x86_64)
Diffstat (limited to 'dev-dotnet/gluezilla')
-rw-r--r-- | dev-dotnet/gluezilla/ChangeLog | 10 | ||||
-rw-r--r-- | dev-dotnet/gluezilla/files/gluezilla-2.6-fix-xulrunner-detection.patch | 25 | ||||
-rw-r--r-- | dev-dotnet/gluezilla/gluezilla-2.6.ebuild | 24 |
3 files changed, 57 insertions, 2 deletions
diff --git a/dev-dotnet/gluezilla/ChangeLog b/dev-dotnet/gluezilla/ChangeLog index 16de012fe31d..f1d337df455e 100644 --- a/dev-dotnet/gluezilla/ChangeLog +++ b/dev-dotnet/gluezilla/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-dotnet/gluezilla -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/gluezilla/ChangeLog,v 1.14 2009/09/27 16:59:28 nixnut Exp $ +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/gluezilla/ChangeLog,v 1.15 2010/02/21 14:34:16 patrick Exp $ + +*gluezilla-2.6 (21 Feb 2010) + + 21 Feb 2010; Patrick Lauer <patrick@gentoo.org> +gluezilla-2.6.ebuild, + +files/gluezilla-2.6-fix-xulrunner-detection.patch: + Bump, includes xulrunner detection fix by Priit Laes 27 Sep 2009; nixnut <nixnut@gentoo.org> gluezilla-2.4.2.ebuild: ppc stable #284306 diff --git a/dev-dotnet/gluezilla/files/gluezilla-2.6-fix-xulrunner-detection.patch b/dev-dotnet/gluezilla/files/gluezilla-2.6-fix-xulrunner-detection.patch new file mode 100644 index 000000000000..dacf32e60526 --- /dev/null +++ b/dev-dotnet/gluezilla/files/gluezilla-2.6-fix-xulrunner-detection.patch @@ -0,0 +1,25 @@ +From 42f469358dbc6143e05f5b8ebb96e316d662a786 Mon Sep 17 00:00:00 2001 +From: Priit Laes <plaes@plaes.org> +Date: Sun, 21 Feb 2010 15:45:38 +0200 +Subject: [PATCH] Fix xulrunner detection. + +--- + configure.ac | 2 +- + 1 files changed, 1 insertions(+), 1 deletions(-) + +diff --git a/configure.ac b/configure.ac +index aa694b1..b122c5d 100644 +--- a/configure.ac ++++ b/configure.ac +@@ -88,7 +88,7 @@ if test "x${local}" == xno ; then + if test "x${oldxul}" != xyes ; then + + AC_MSG_CHECKING(Mozilla XPCOM > 1.8) +- mozilla_xpcom_pcs="libxul-embedding-unstable" ++ mozilla_xpcom_pcs="libxul-embedding-unstable libxul-embedding" + for pc in $mozilla_xpcom_pcs; do + if $PKG_CONFIG --exists $pc; then + AC_MSG_RESULT($pc) +-- +1.7.0 + diff --git a/dev-dotnet/gluezilla/gluezilla-2.6.ebuild b/dev-dotnet/gluezilla/gluezilla-2.6.ebuild new file mode 100644 index 000000000000..2cfe910f6616 --- /dev/null +++ b/dev-dotnet/gluezilla/gluezilla-2.6.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/gluezilla/gluezilla-2.6.ebuild,v 1.1 2010/02/21 14:34:16 patrick Exp $ + +EAPI=2 + +inherit go-mono mono autotools + +DESCRIPTION="A simple library to embed Gecko (xulrunner) in the Mono Winforms WebControl" +HOMEPAGE="http://mono-project.com/Gluezilla" + +LICENSE="LGPL-2 MPL-1.1" +KEYWORDS="~amd64 ~ppc ~x86" +SLOT="0" +IUSE="" + +RDEPEND="net-libs/xulrunner:1.9 + x11-libs/gtk+:2" +DEPEND="${RDEPEND}" + +src_prepare() { + epatch "${FILESDIR}/${P}-fix-xulrunner-detection.patch" || die "Failed to patch" + eautoreconf +} |