You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/www-client/dwb/dwb-2014.03.07-r1.ebuild

51 lines
1.0 KiB

# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/www-client/dwb/dwb-2014.03.07-r1.ebuild,v 1.1 2014/12/06 06:04:30 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="https://www.bitbucket.org/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
dev-libs/json-c
net-libs/gnutls
!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}"/${P}-makefile.patch
}
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
}