diff options
author | Michael Weber <xmw@gentoo.org> | 2010-08-24 16:08:55 +0000 |
---|---|---|
committer | Michael Weber <xmw@gentoo.org> | 2010-08-24 16:08:55 +0000 |
commit | 173e14577d59fc4492c493f6888cf8fd310e1cdc (patch) | |
tree | 1d23ac7a505fe67db480677b732bfddc2be0851d /www-client/jumanji | |
parent | Revision bump which should improve shutdown behavior by patching a SIGTERM is... (diff) | |
download | gentoo-2-173e14577d59fc4492c493f6888cf8fd310e1cdc.tar.gz gentoo-2-173e14577d59fc4492c493f6888cf8fd310e1cdc.tar.bz2 gentoo-2-173e14577d59fc4492c493f6888cf8fd310e1cdc.zip |
Initial commit for jumanji.
(Portage version: 2.1.8.3/cvs/Linux x86_64)
Diffstat (limited to 'www-client/jumanji')
-rw-r--r-- | www-client/jumanji/ChangeLog | 10 | ||||
-rw-r--r-- | www-client/jumanji/jumanji-9999.ebuild | 40 | ||||
-rw-r--r-- | www-client/jumanji/metadata.xml | 9 |
3 files changed, 59 insertions, 0 deletions
diff --git a/www-client/jumanji/ChangeLog b/www-client/jumanji/ChangeLog new file mode 100644 index 000000000000..7e269ddcbbb1 --- /dev/null +++ b/www-client/jumanji/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for www-client/jumanji +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/www-client/jumanji/ChangeLog,v 1.1 2010/08/24 16:08:55 xmw Exp $ + +*jumanji-9999 (24 Aug 2010) + + 24 Aug 2010; Michael Weber (xmw) <xmw@gentoo.org> +jumanji-9999.ebuild, + +metadata.xml: + Initial commit for jumanji. Fixes bug #328107. + diff --git a/www-client/jumanji/jumanji-9999.ebuild b/www-client/jumanji/jumanji-9999.ebuild new file mode 100644 index 000000000000..623ec3111a3e --- /dev/null +++ b/www-client/jumanji/jumanji-9999.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/www-client/jumanji/jumanji-9999.ebuild,v 1.1 2010/08/24 16:08:55 xmw Exp $ + +EAPI=2 + +inherit flag-o-matic git toolchain-funcs + +DESCRIPTION="webkit based browser" +HOMEPAGE="http://pwmt.org/jumanji/" +SRC_URI="" +EGIT_REPO_URI="git://pwmt.org/jumanji.git" + +LICENSE="ZLIB" +SLOT="0" +KEYWORDS="" +IUSE="" + +RDEPEND=">=dev-libs/glib-2.22.4:2 + >=net-libs/libsoup-2.30.2:2.4 + >=net-libs/webkit-gtk-1.2.1 + >=x11-libs/gtk+-2.18.6:2" +DEPEND="${RDEPEND} + dev-util/pkgconfig" + +src_prepare() { + git_src_prepare + # respect CFLAGS + sed -i -e '/${CC}/s:${CFLAGS}:\0 ${INCS}:' Makefile || die +} + +src_compile() { + tc-export CC + append-cflags -std=c99 + emake CFLAGS="${CFLAGS}" DFLAGS="" SFLAGS="" all || die +} + +src_install() { + emake DESTDIR="${D}" install || die +} diff --git a/www-client/jumanji/metadata.xml b/www-client/jumanji/metadata.xml new file mode 100644 index 000000000000..80dffe809356 --- /dev/null +++ b/www-client/jumanji/metadata.xml @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>no-herd</herd> +<maintainer> +<email>xmw@gentoo.org</email> +<name>Michael Weber (xmw)</name> +</maintainer> +</pkgmetadata> |