blob: 92fef4302fc85212f894bb55b0d77c8f17bf8ca7 (
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
|
# Copyright 2001 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author Damon Conway <damon@3jane.net>
# $Header: /var/cvsroot/gentoo-x86/net-www/skipstone/skipstone-0.7.9.ebuild,v 1.1 2002/02/23 09:29:45 tod Exp $
S=${WORKDIR}/${P}
DESCRIPTION="GTK+ based web browser based on the Mozilla engine"
SRC_URI="http://www.muhri.net/skipstone/${P}.tar.gz"
HOMEPAGE="http://www.muhri.net/skipstone/"
DEPEND="nls? ( sys-devel/gettext )
>=net-www/mozilla-0.9.6"
src_compile() {
local myconf
if [ "`use nls`" ] ; then
myconf="enable_nls=1"
fi
cd ${S}/src
emake $myconf PREFIX="/usr" || die
}
src_install () {
make PREFIX=${D}/usr install || die
dodoc AUTHORS COPYING README README.copying
}
|