diff options
author | Olivier Crête <tester@gentoo.org> | 2007-01-27 23:04:28 +0000 |
---|---|---|
committer | Olivier Crête <tester@gentoo.org> | 2007-01-27 23:04:28 +0000 |
commit | f2c2fea88858541dd3cfa5b20d50028b9b1be38e (patch) | |
tree | c8de4216e7a5fa01b2dc7af47c8fae996263f0bb /net-www/netscape-flash | |
parent | Ebuild cleanup. (diff) | |
download | gentoo-2-f2c2fea88858541dd3cfa5b20d50028b9b1be38e.tar.gz gentoo-2-f2c2fea88858541dd3cfa5b20d50028b9b1be38e.tar.bz2 gentoo-2-f2c2fea88858541dd3cfa5b20d50028b9b1be38e.zip |
Add warning on installation of debug version
(Portage version: 2.1.1-r2)
Diffstat (limited to 'net-www/netscape-flash')
-rw-r--r-- | net-www/netscape-flash/ChangeLog | 6 | ||||
-rw-r--r-- | net-www/netscape-flash/netscape-flash-9.0.31.0.ebuild | 13 |
2 files changed, 15 insertions, 4 deletions
diff --git a/net-www/netscape-flash/ChangeLog b/net-www/netscape-flash/ChangeLog index eb1f104c9039..c62ca6769396 100644 --- a/net-www/netscape-flash/ChangeLog +++ b/net-www/netscape-flash/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-www/netscape-flash # Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-www/netscape-flash/ChangeLog,v 1.48 2007/01/19 14:58:47 tester Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-www/netscape-flash/ChangeLog,v 1.49 2007/01/27 23:04:28 tester Exp $ + + 27 Jan 2007; Olivier Crête <tester@gentoo.org> + netscape-flash-9.0.31.0.ebuild: + Add warning on installation of debug version 19 Jan 2007; Olivier Crête <tester@gentoo.org> -netscape-flash-9.0.21.78.ebuild, netscape-flash-9.0.31.0.ebuild: diff --git a/net-www/netscape-flash/netscape-flash-9.0.31.0.ebuild b/net-www/netscape-flash/netscape-flash-9.0.31.0.ebuild index 74d6cb08bbe7..2a45b642f17d 100644 --- a/net-www/netscape-flash/netscape-flash-9.0.31.0.ebuild +++ b/net-www/netscape-flash/netscape-flash-9.0.31.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-www/netscape-flash/netscape-flash-9.0.31.0.ebuild,v 1.3 2007/01/19 14:58:47 tester Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-www/netscape-flash/netscape-flash-9.0.31.0.ebuild,v 1.4 2007/01/27 23:04:28 tester Exp $ inherit nsplugins @@ -44,7 +44,7 @@ pkg_setup() { src_unpack() { unpack ${A} - cd ${S} + cd ${S} if use debug; then unpack ./${MY_PD}/plugin/debugger/${MY_P}.tar.gz unpack ./${MY_PD}/standalone/debugger/flashplayer.tar.gz @@ -58,7 +58,7 @@ src_install() { dodoc ${MY_PD}/README use debug || dodoc ${MY_P}/Readme.txt - + cd ${MY_P} exeinto /opt/netscape/plugins doexe libflashplayer.so @@ -68,3 +68,10 @@ src_install() { inst_plugin /opt/netscape/plugins/libflashplayer.so inst_plugin /opt/netscape/plugins/flashplayer.xpt } + +pkg_postinst() { + if use debug ; then + elog "You are installing content debugger version of the package." + elog "This is NOT intended for normal use!" + fi +} |