blob: d52c964a552ad046e6e456b57214f2886720860f (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-www/browser-config/browser-config-1.1.ebuild,v 1.4 2004/06/25 00:49:48 agriffis Exp $
DESCRIPTION="A lightweight modular configurable http url handler/browser launcher"
HOMEPAGE="http://www.pocketninja.com/"
SRC_URI="http://www.pocketninja.com/code/browser-config/download/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~ppc x86"
IUSE=""
DEPEND=""
src_install() {
into /usr
dobin browser-config
dosym /usr/bin/browser-config /usr/bin/runbrowser
insinto /usr/share/browser-config
doins definitions/*
}
pkg_postinst() {
echo
einfo "Please run browser-config -b <browser> -m <method>"
einfo "If run as root, it will be global, if run as a user it will be for"
einfo " that user only."
echo
einfo "Please see browser-config -h for info on available browsers/methods"
echo
einfo "You may then tell your applications to use either 'runbrowser' or"
einfo " 'browser-config' as a browser."
echo
}
|