blob: 35216146a4440d1d3f870626755d5137cb3f4426 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/www-client/uzbl/uzbl-2011.02.15.ebuild,v 1.5 2011/10/24 06:43:25 tetromino Exp $
EAPI="4"
inherit base
IUSE=""
if [[ ${PV} == *9999* ]]; then
inherit git
EGIT_REPO_URI=${EGIT_REPO_URI:-"git://github.com/Dieterbe/uzbl.git"}
KEYWORDS=""
SRC_URI=""
IUSE="experimental"
use experimental &&
EGIT_BRANCH="experimental" &&
EGIT_COMMIT="experimental"
else
KEYWORDS="~amd64 ~x86"
SRC_URI="http://github.com/Dieterbe/${PN}/tarball/${PV} -> ${P}.tar.gz"
fi
DESCRIPTION="Web interface tools which adhere to the unix philosophy."
HOMEPAGE="http://www.uzbl.org"
LICENSE="LGPL-2.1 MPL-1.1"
SLOT="0"
IUSE+=" +browser helpers +tabbed vim-syntax"
REQUIRED_USE="tabbed? ( browser )"
COMMON_DEPEND="
dev-libs/glib:2
>=dev-libs/icu-4.0.1
>=net-libs/libsoup-2.24:2.4
>=net-libs/webkit-gtk-1.1.15:2
>=x11-libs/gtk+-2.14:2
"
DEPEND="
>=dev-util/pkgconfig-0.19
${COMMON_DEPEND}
"
RDEPEND="
${COMMON_DEPEND}
x11-misc/xdg-utils
browser? (
x11-misc/xclip
)
helpers? (
dev-python/pygtk
dev-python/pygobject:2
gnome-extra/zenity
net-misc/socat
x11-libs/pango
x11-misc/dmenu
x11-misc/xclip
)
tabbed? (
dev-python/pygtk
)
vim-syntax? ( || ( app-editors/vim app-editors/gvim ) )
"
# TODO document what requires the above helpers
pkg_setup() {
if ! use helpers; then
elog "uzbl's extra scripts use various optional applications:"
elog
elog " dev-python/pygtk"
elog " dev-python/pygobject:2"
elog " gnome-extra/zenity"
elog " net-misc/socat"
elog " x11-libs/pango"
elog " x11-misc/dmenu"
elog " x11-misc/xclip"
elog
elog "Make sure you emerge the ones you need manually."
elog "You may also activate the *helpers* USE flag to"
elog "install all of them automatically."
else
einfo "You have enabled the *helpers* USE flag that installs"
einfo "various optional applications used by uzbl's extra scripts."
fi
ewarn
ewarn "This version introduces some backwards-incompatible changes."
ewarn "Please read http://www.uzbl.org/news.php?id=32 for more details."
ewarn
}
src_unpack() {
if [[ ${PV} == *9999* ]]; then
git_src_unpack
else
unpack ${A}
mv Dieterbe-uzbl-* "${S}"
fi
}
src_prepare() {
if [[ ${PV} == *9999* ]]; then
git_src_prepare
fi
# remove -ggdb
sed -i "s/-ggdb //g" Makefile ||
die "-ggdb removal sed failed"
}
src_install() {
local targets="install-uzbl-core"
use browser && targets="${targets} install-uzbl-browser"
use browser && use tabbed && targets="${targets} install-uzbl-tabbed"
emake DESTDIR="${D}" PREFIX="/usr" DOCDIR="${D}/usr/share/doc/${PF}" ${targets} ||
die "Installation failed"
if use vim-syntax; then
insinto /usr/share/vim/vimfiles/ftdetect
doins "${S}"/extras/vim/ftdetect/uzbl.vim || die "vim-syntax doins failed"
insinto /usr/share/vim/vimfiles/syntax
doins "${S}"/extras/vim/syntax/uzbl.vim || die "vim-syntax doins failed"
fi
}
|