diff options
author | George Shapovalov <george@gentoo.org> | 2003-05-13 04:46:30 +0000 |
---|---|---|
committer | George Shapovalov <george@gentoo.org> | 2003-05-13 04:46:30 +0000 |
commit | ad183675148c8d3ec3808c4ad39e0f5dbdad6be3 (patch) | |
tree | 0d7ef0319898114c58ad99c5bdf84684e2fe2f8f /net-www | |
parent | changed local to absolute symlink in src_mv_plugins as the former breaks with... (diff) | |
download | historical-ad183675148c8d3ec3808c4ad39e0f5dbdad6be3.tar.gz historical-ad183675148c8d3ec3808c4ad39e0f5dbdad6be3.tar.bz2 historical-ad183675148c8d3ec3808c4ad39e0f5dbdad6be3.zip |
fixed plugin registration
Diffstat (limited to 'net-www')
-rw-r--r-- | net-www/phoenix-bin/ChangeLog | 8 | ||||
-rw-r--r-- | net-www/phoenix-bin/phoenix-bin-0.5-r1.ebuild | 21 |
2 files changed, 19 insertions, 10 deletions
diff --git a/net-www/phoenix-bin/ChangeLog b/net-www/phoenix-bin/ChangeLog index 4f1620f61088..443a43bc92bf 100644 --- a/net-www/phoenix-bin/ChangeLog +++ b/net-www/phoenix-bin/ChangeLog @@ -1,13 +1,17 @@ # ChangeLog for net-www/phoenix-bin # Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-www/phoenix-bin/ChangeLog,v 1.23 2003/05/12 22:54:48 george Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-www/phoenix-bin/ChangeLog,v 1.24 2003/05/13 04:46:30 george Exp $ - 11 May 2003; George Shapovalov <george@gentoo.org> phoenix-bin-0.5-r1.ebuild : + 12 May 2003; George Shapovalov <george@gentoo.org> phoenix-bin-0.5-r1.ebuild : added announcement of move to pkg_postinst per killian's request + corrected DEPEND to use =x11-libs/gtk+-1.2* strictly (it's already compiled! What was the deal?) see #20809, thanks to Stuart Still <stustill@hotmail.com> for spotting this + fixed nsplugins.eclass to create absolute symlink instead of local to plugins dir, + added missing inherit nsplugins (#20762) + *phoenix-bin-0.5-r1 (09 May 2003) 09 May 2003; George Shapovalov <george@gentoo.org> phoenix-bin-0.5-r1.ebuild, files/{phoenix-opt,digest-phoenix-bin-0.5-r1} : diff --git a/net-www/phoenix-bin/phoenix-bin-0.5-r1.ebuild b/net-www/phoenix-bin/phoenix-bin-0.5-r1.ebuild index 54fb311f95a3..aa5a14022c3c 100644 --- a/net-www/phoenix-bin/phoenix-bin-0.5-r1.ebuild +++ b/net-www/phoenix-bin/phoenix-bin-0.5-r1.ebuild @@ -1,6 +1,8 @@ # 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 $ +# $Header: /var/cvsroot/gentoo-x86/net-www/phoenix-bin/phoenix-bin-0.5-r1.ebuild,v 1.4 2003/05/13 04:46:30 george Exp $ + +inherit nsplugins IUSE="" @@ -17,9 +19,10 @@ 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" + ( gtk2? >=x11-libs/gtk+-2.0.8 : + =x11-libs/gtk+-1.2* ) + virtual/x11 + !net-www/phoenix-cvs" src_install() { # Plugin path creation @@ -47,10 +50,12 @@ src_install() { 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 -} +#just symlink to the /usr/lib/nsbrowser/plugins, as that one +#has libnullplugin.so and bunch of other stuff +#pkg_preinst() { +# # Remove the old plugins dir +# pkg_mv_plugins /opt/${MY_PN}/plugins +#} pkg_postinst() { einfo "" |