blob: 8d39ac76df54194b80a958a541e3397564add1c9 (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-www/mozilla-firebird-bin/mozilla-firebird-bin-0.6.1.ebuild,v 1.6 2003/09/06 02:05:10 msterret Exp $
inherit nsplugins eutils
IUSE="gnome"
MY_PN=${PN/-bin/}
S=${WORKDIR}/MozillaFirebird
DESCRIPTION="The Mozilla Firebird Web Browser"
SRC_URI="http://ftp.mozilla.org/pub/firebird/releases/${PV}/MozillaFirebird-${PV}-i686-pc-linux-gnu.tar.gz"
HOMEPAGE="http://www.mozilla.org/projects/firebird"
RESTRICT="nostrip"
KEYWORDS="~x86 -ppc -sparc -alpha"
SLOT="0"
LICENSE="MPL-1.1 NPL-1.1"
DEPEND="virtual/glibc"
RDEPEND=">=sys-libs/lib-compat-1.0-r2
=x11-libs/gtk+-1.2*
virtual/x11
!net-www/mozilla-firebird
!net-www/mozilla-firebird-cvs"
src_install() {
# Plugin path creation
PLUGIN_DIR="/usr/lib/nsbrowser/plugins"
dodir /${PLUGIN_DIR}
dodir /opt
mv ${S} ${D}/opt/MozillaFirebird
# Plugin path setup (rescuing the existent plugins)
src_mv_plugins /opt/MozillaFirebird/plugins
# Fixing permissions
chown -R root.root ${D}/opt/MozillaFirebird
# Truetype fonts
cd ${D}/opt/MozillaFirebird/defaults/pref
einfo "Enabling truetype fonts. Filesdir is ${FILESDIR}"
epatch ${FILESDIR}/firebird-0.6-antialiasing-patch
# Misc stuff
dobin ${FILESDIR}/MozillaFirebird
# Install icon and .desktop for menu entry
if [ "`use gnome`" ]
then
insinto /usr/share/pixmaps
doins ${FILESDIR}/icon/mozilla-icon.png
insinto /usr/share/gnome/apps/Internet
doins ${FILESDIR}/icon/mozillafirebird.desktop
fi
}
pkg_preinst() {
# Remove the old plugins dir
pkg_mv_plugins /opt/MozillaFirebird/plugins
}
pkg_postinst() {
einfo "Previous versions were built with GCC 2.96, but are now built"
einfo "with GCC 3. Java and other plugins will now work."
}
|