blob: 13714407ce7775be0c13ffd2f59eaec6590b45eb (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/www-client/luakit/luakit-2010.08.13.ebuild,v 1.2 2010/08/14 18:26:54 wired Exp $
EAPI=3
IUSE=""
if [[ ${PV} == *9999* ]]; then
inherit git
EGIT_REPO_URI=${EGIT_REPO_URI:-"git://github.com/mason-larobina/luakit.git"}
EGIT_BRANCH="develop"
EGIT_COMMIT="develop"
KEYWORDS=""
SRC_URI=""
else
inherit base
KEYWORDS="~amd64 ~x86"
SRC_URI="http://github.com/mason-larobina/${PN}/tarball/${PV} -> ${P}.tar.gz"
fi
DESCRIPTION="fast, small, webkit-gtk based micro-browser extensible by lua"
HOMEPAGE="http://www.luakit.org"
LICENSE="GPL-3"
SLOT="0"
RDEPEND="
>=dev-lang/lua-5.1
dev-libs/glib:2
dev-libs/libxdg-basedir
net-libs/libsoup
net-libs/webkit-gtk
x11-libs/gtk+:2
"
DEPEND="
dev-util/gperf
${RDEPEND}
"
src_prepare() {
if [[ ${PV} == *9999* ]]; then
git_src_prepare
else
cd "${WORKDIR}"/mason-larobina-luakit-*
S=$(pwd)
fi
}
src_compile() {
emake PREFIX="/usr"
}
src_install() {
emake PREFIX="/usr" DESTDIR="${D}" DOCDIR="${D}/usr/share/doc/${PF}" install ||
die "Installation failed"
}
|