diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2002-12-16 10:56:05 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2002-12-16 10:56:05 +0000 |
commit | e9531e9cfbb692c5765b1f0d3bce26c5ddcd5580 (patch) | |
tree | a7bfa8811def236ef9c0f735485d739f53635526 /net-www/netscape-flash | |
parent | version bump (diff) | |
download | historical-e9531e9cfbb692c5765b1f0d3bce26c5ddcd5580.tar.gz historical-e9531e9cfbb692c5765b1f0d3bce26c5ddcd5580.tar.bz2 historical-e9531e9cfbb692c5765b1f0d3bce26c5ddcd5580.zip |
added optional standalone player
Diffstat (limited to 'net-www/netscape-flash')
-rw-r--r-- | net-www/netscape-flash/ChangeLog | 5 | ||||
-rw-r--r-- | net-www/netscape-flash/files/digest-netscape-flash-6.0.69 | 1 | ||||
-rw-r--r-- | net-www/netscape-flash/netscape-flash-6.0.69.ebuild | 19 |
3 files changed, 19 insertions, 6 deletions
diff --git a/net-www/netscape-flash/ChangeLog b/net-www/netscape-flash/ChangeLog index ef9c6fc90bb2..14f66f3412c7 100644 --- a/net-www/netscape-flash/ChangeLog +++ b/net-www/netscape-flash/ChangeLog @@ -1,6 +1,6 @@ # ChangeLog for net-www/netscape-flash # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/net-www/netscape-flash/ChangeLog,v 1.11 2002/12/16 10:48:25 seemant Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-www/netscape-flash/ChangeLog,v 1.12 2002/12/16 10:56:05 seemant Exp $ *netscape-flash-6.0.69 (16 Dec 2002) @@ -9,7 +9,8 @@ Version bump, and removed all the other versions. Many thanks to: warren@togami.com (Warren Togami) for providing mirrors and properly - versioned tarballs :) (see bug #11757) + versioned tarballs :) (see bug #11757) Also added the optional standalone + GTK (1.2) flash player, with the "gtk" use flag enabled. *netscape-flash-6.0b-r1 (21 Nov 2002) diff --git a/net-www/netscape-flash/files/digest-netscape-flash-6.0.69 b/net-www/netscape-flash/files/digest-netscape-flash-6.0.69 index 9ed0cfaf5089..1ddb862da791 100644 --- a/net-www/netscape-flash/files/digest-netscape-flash-6.0.69 +++ b/net-www/netscape-flash/files/digest-netscape-flash-6.0.69 @@ -1 +1,2 @@ MD5 3c94ccbc2d4535ab78ad2c3eb1cd1777 netscape-flash-6.0.69.tar.gz 706066 +MD5 9bf9ef915513a4ec4c7a7de179ea4a37 gflashplayer-6.0.69.tar.gz 700843 diff --git a/net-www/netscape-flash/netscape-flash-6.0.69.ebuild b/net-www/netscape-flash/netscape-flash-6.0.69.ebuild index 0ff1ce8057f9..73e7e734a522 100644 --- a/net-www/netscape-flash/netscape-flash-6.0.69.ebuild +++ b/net-www/netscape-flash/netscape-flash-6.0.69.ebuild @@ -1,21 +1,22 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-www/netscape-flash/netscape-flash-6.0.69.ebuild,v 1.1 2002/12/16 10:48:25 seemant Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-www/netscape-flash/netscape-flash-6.0.69.ebuild,v 1.2 2002/12/16 10:56:05 seemant Exp $ inherit nsplugins -IUSE="" +IUSE="gtk" S=${WORKDIR}/install_flash_player_6_linux DESCRIPTION="Macromedia Shockwave Flash Player" -SRC_URI="mirror://macromedia/${P}.tar.gz" +SRC_URI="mirror://macromedia/${P}.tar.gz + gtk? mirror://macromedia/gflashplayer-${PV}.tar.gz" HOMEPAGE="http://www.macromedia.com/" SLOT="0" KEYWORDS="x86 -ppc -sparc" LICENSE="Macromedia" -DEPEND="virtual/glibc" +DEPEND="gtk? ( =x11-libs/gtk+-1.2* )" src_install() { exeinto /opt/netscape/plugins @@ -29,4 +30,14 @@ src_install() { dodoc readme.txt dohtml ReadMe.htm + + # Optionally install the standalone GTK flash player + if use gtk + then + cd ${S}_sa + docinto gflashplayer + dodoc readme.txt + dohtml ReadMe.htm + dobin gflashplayer flashplayer-installer + fi } |