diff options
author | Tim Harder <radhermit@gentoo.org> | 2013-01-02 20:55:55 +0000 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2013-01-02 20:55:55 +0000 |
commit | 9b5a69b1c1a71f39421ffce5e4c1e421acc36650 (patch) | |
tree | 9f6fd2e86705f410dd297805e038e1bdc8189ff5 /www-client | |
parent | Restrict python3.3 due to failures (again). (diff) | |
download | gentoo-2-9b5a69b1c1a71f39421ffce5e4c1e421acc36650.tar.gz gentoo-2-9b5a69b1c1a71f39421ffce5e4c1e421acc36650.tar.bz2 gentoo-2-9b5a69b1c1a71f39421ffce5e4c1e421acc36650.zip |
Version bump (bug #449346).
(Portage version: 2.2.0_alpha149/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
Diffstat (limited to 'www-client')
-rw-r--r-- | www-client/dwb/ChangeLog | 9 | ||||
-rw-r--r-- | www-client/dwb/dwb-2012.12.03.ebuild | 49 |
2 files changed, 56 insertions, 2 deletions
diff --git a/www-client/dwb/ChangeLog b/www-client/dwb/ChangeLog index 71e385599aae..afd60a3fdddb 100644 --- a/www-client/dwb/ChangeLog +++ b/www-client/dwb/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for www-client/dwb -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/www-client/dwb/ChangeLog,v 1.12 2012/12/14 23:21:14 radhermit Exp $ +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/www-client/dwb/ChangeLog,v 1.13 2013/01/02 20:55:55 radhermit Exp $ + +*dwb-2012.12.03 (02 Jan 2013) + + 02 Jan 2013; Tim Harder <radhermit@gentoo.org> +dwb-2012.12.03.ebuild: + Version bump (bug #449346). 14 Dec 2012; Tim Harder <radhermit@gentoo.org> dwb-9999.ebuild: Fix install location. diff --git a/www-client/dwb/dwb-2012.12.03.ebuild b/www-client/dwb/dwb-2012.12.03.ebuild new file mode 100644 index 000000000000..f3aa9d13a8ce --- /dev/null +++ b/www-client/dwb/dwb-2012.12.03.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/www-client/dwb/dwb-2012.12.03.ebuild,v 1.1 2013/01/02 20:55:55 radhermit Exp $ + +EAPI=5 + +inherit toolchain-funcs eutils + +DESCRIPTION="Dynamic web browser based on WebKit and GTK+" +HOMEPAGE="http://portix.bitbucket.org/dwb/" +SRC_URI="mirror://bitbucket/portix/dwb/downloads/${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="examples gtk3" + +RDEPEND=">=net-libs/libsoup-2.32:2.4 + !gtk3? ( + >=net-libs/webkit-gtk-1.8.0:2 + x11-libs/gtk+:2 + ) + gtk3? ( + >=net-libs/webkit-gtk-1.8.0:3 + x11-libs/gtk+:3 + )" +DEPEND="${RDEPEND} + virtual/pkgconfig" + +src_prepare() { + epatch "${FILESDIR}"/${PN}-2012.10.28-verbose-build.patch + sed -i "/^CFLAGS += -\(pipe\|g\|O2\)/d" config.mk || die +} + +src_compile() { + local myconf + use gtk3 && myconf+=" GTK=3" + + emake CC="$(tc-getCC)" ${myconf} +} + +src_install() { + default + + if use examples ; then + dodoc -r examples + docompress -x /usr/share/doc/${PF}/examples + fi +} |