blob: 54fb311f95a3f92b14403502c2a704b64edb861f (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/net-www/phoenix-bin/phoenix-bin-0.5-r1.ebuild,v 1.3 2003/05/12 22:54:48 george Exp $
IUSE=""
MY_PN=${PN/-bin/}
S=${WORKDIR}/${MY_PN}
DESCRIPTION="The Phoenix Web Browser"
SRC_URI="http://ftp.mozilla.org/pub/${MY_PN}/releases/${PV}/${MY_PN}-${PV}-i686-pc-linux-gnu.tar.gz"
HOMEPAGE="http://www.mozilla.org/projects/phoenix/"
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/phoenix-cvs"
src_install() {
# Plugin path creation
PLUGIN_DIR="/usr/lib/nsbrowser/plugins"
dodir /${PLUGIN_DIR}
dodir /opt
mv ${S} ${D}/opt
# Plugin path setup (rescuing the existent plugins)
src_mv_plugins /opt/${MY_PN}/plugins
# Fixing permissions
chown -R root.root ${D}/opt/${MY_PN}
# Truetype fonts
cd ${D}/opt/${MY_PN}/defaults/pref
einfo "Enabling truetype fonts"
patch < ${FILESDIR}/phoenix-0.4-antialiasing-patch
# Misc stuff
cp ${FILESDIR}/phoenix-opt ${WORKDIR}/phoenix
dobin ${WORKDIR}/phoenix
dosym /opt/libstdc++-libc6.1-1.so.2 /opt/${MY_PN}/libstdc++-libc6.2-2.so.3
}
pkg_preinst() {
# Remove the old plugins dir
pkg_mv_plugins /opt/${MY_PN}/plugins
}
pkg_postinst() {
einfo ""
einfo "Please note!!!"
einfo "phoenix-bin has been moved under /opt/phoenix/,"
einfo "to make it FHS compliant!"
einfo ""
}
|