diff options
author | Peter Johanson <latexer@gentoo.org> | 2005-04-02 02:01:07 +0000 |
---|---|---|
committer | Peter Johanson <latexer@gentoo.org> | 2005-04-02 02:01:07 +0000 |
commit | 44f19fdcdcf000dc1701722c2840e0b81fd1df4a (patch) | |
tree | fa9891b56d675fa3c13b874bd60e6cd21aaaca36 /dev-dotnet/gecko-sharp | |
parent | Added ~sparc keyword. (diff) | |
download | gentoo-2-44f19fdcdcf000dc1701722c2840e0b81fd1df4a.tar.gz gentoo-2-44f19fdcdcf000dc1701722c2840e0b81fd1df4a.tar.bz2 gentoo-2-44f19fdcdcf000dc1701722c2840e0b81fd1df4a.zip |
Bump. New release that compiles against the gtk-sharp-2.0 items, and is parallel installable along side the version that builds against the gtk-sharp-1.0 items.
(Portage version: 2.0.51.19)
Diffstat (limited to 'dev-dotnet/gecko-sharp')
-rw-r--r-- | dev-dotnet/gecko-sharp/ChangeLog | 9 | ||||
-rw-r--r-- | dev-dotnet/gecko-sharp/Manifest | 4 | ||||
-rw-r--r-- | dev-dotnet/gecko-sharp/files/digest-gecko-sharp-0.7 | 1 | ||||
-rw-r--r-- | dev-dotnet/gecko-sharp/gecko-sharp-0.7.ebuild | 35 |
4 files changed, 47 insertions, 2 deletions
diff --git a/dev-dotnet/gecko-sharp/ChangeLog b/dev-dotnet/gecko-sharp/ChangeLog index dbb3b3d08058..be7139b2e2fa 100644 --- a/dev-dotnet/gecko-sharp/ChangeLog +++ b/dev-dotnet/gecko-sharp/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for dev-dotnet/gecko-sharp # Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/gecko-sharp/ChangeLog,v 1.25 2005/03/23 16:15:58 seemant Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/gecko-sharp/ChangeLog,v 1.26 2005/04/02 02:01:07 latexer Exp $ + +*gecko-sharp-0.7 (02 Apr 2005) + + 02 Apr 2005; Peter Johanson <latexer@gentoo.org> +gecko-sharp-0.7.ebuild: + Bump. New release that compiles against the gtk-sharp-2.0 items, and is + parallel installable along side the version that builds against the + gtk-sharp-1.0 items. 23 Mar 2005; Seemant Kulleen <seemant@gentoo.org> gecko-sharp-0.5-r2.ebuild, gecko-sharp-0.6.ebuild: diff --git a/dev-dotnet/gecko-sharp/Manifest b/dev-dotnet/gecko-sharp/Manifest index dd77e9b6639a..c8190518a36c 100644 --- a/dev-dotnet/gecko-sharp/Manifest +++ b/dev-dotnet/gecko-sharp/Manifest @@ -1,6 +1,8 @@ -MD5 0714bf6fb4dbd7da4c46a88116c98a0c ChangeLog 3222 MD5 b066a0a800c3aa974941a7c76abc2c57 gecko-sharp-0.5-r2.ebuild 747 MD5 e1b667e6d6a3f98404f216eed7d2e000 gecko-sharp-0.6.ebuild 753 +MD5 e4104a3ddd1b0b93fee4b3e9c47a79f1 gecko-sharp-0.7.ebuild 993 +MD5 0714bf6fb4dbd7da4c46a88116c98a0c ChangeLog 3222 MD5 76b314cc7b7b79b298dd4889dff8c9cd metadata.xml 159 MD5 41db66016dd18480802fc0e658a04746 files/digest-gecko-sharp-0.5-r2 67 MD5 9aa313387703e02ad1bcddcde0729a66 files/digest-gecko-sharp-0.6 67 +MD5 a38f4e44ece71af1b0528ace678cb4d5 files/digest-gecko-sharp-0.7 67 diff --git a/dev-dotnet/gecko-sharp/files/digest-gecko-sharp-0.7 b/dev-dotnet/gecko-sharp/files/digest-gecko-sharp-0.7 new file mode 100644 index 000000000000..8cff19974a18 --- /dev/null +++ b/dev-dotnet/gecko-sharp/files/digest-gecko-sharp-0.7 @@ -0,0 +1 @@ +MD5 316ccf9f11a23248ec3d97cb7bd61cc1 gecko-sharp-0.7.tar.gz 104473 diff --git a/dev-dotnet/gecko-sharp/gecko-sharp-0.7.ebuild b/dev-dotnet/gecko-sharp/gecko-sharp-0.7.ebuild new file mode 100644 index 000000000000..0c645acfd2ea --- /dev/null +++ b/dev-dotnet/gecko-sharp/gecko-sharp-0.7.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/gecko-sharp/gecko-sharp-0.7.ebuild,v 1.1 2005/04/02 02:01:07 latexer Exp $ + +inherit mono + +DESCRIPTION="A Gtk# Mozilla binding" +HOMEPAGE="http://www.go-mono.com/" +SRC_URI="http://www.go-mono.com/archive/1.1.5/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="2" +KEYWORDS="~x86 ~ppc" +IUSE="" + +DEPEND=">=dev-lang/mono-1.0 + =dev-dotnet/gtk-sharp-1.9* + www-client/mozilla" + +S="${WORKDIR}/${PN}-2.0-${PV}" + +src_compile() { + econf || die "./configure failed!" + emake -j1 || die "Make failed. You may need to unmerge gecko-sharp and re-emerge it if you are upgrading from an earlier version." +} + +src_install() { + make DESTDIR=${D} install || die + + mv ${D}/usr/bin/webshot ${D}/usr/bin/webshot-2.0 + sed -i -e "s:nailer:nailer-2.0:" ${D}/usr/bin/webshot-2.0 + + mv ${D}/usr/lib/gecko-sharp/WebThumbnailer.exe \ + ${D}/usr/lib/gecko-sharp/WebThumbnailer-2.0.exe +} |