Bug 25688

Summary: Fix for brokeness in fetching flash_plugin.tar.gz from macromedia.com since makefile.
Product: Ports & Packages Reporter: pat <pat>
Component: Individual Port(s)Assignee: freebsd-ports (Nobody) <ports>
Status: Closed FIXED    
Severity: Affects Only Me    
Priority: Normal    
Version: Latest   
Hardware: Any   
OS: Any   
Attachments:
Description Flags
file.diff none

Description pat 2001-03-11 08:50:01 UTC
Fixed the Master sites line so that it would fix the link to fetch the tarball. When the macromedia link was broken, it would fetch a older tarball from freebsd.org which breaks it. I discovered this happend when i saw that kris updated the Makefile to version 1.6, sorry kris :/

How-To-Repeat: 
N/A
Comment 1 FUJISHIMA Satsuki freebsd_committer freebsd_triage 2001-03-12 18:40:41 UTC
How about this one? I believe to use DIST_SUBDIR in this port is good
thing to avoid fetching old distfile which has the same name.

I believe version 1.5 is simple enough though.

-- 
FUJISHIMA Satsuki

Index: Makefile
===================================================================
RCS file: /home/ncvs/ports/www/linux-flashplugin/Makefile,v
retrieving revision 1.6
diff -u -u -2 -r1.6 Makefile
--- Makefile	2001/03/11 06:35:10	1.6
+++ Makefile	2001/03/12 18:37:16
@@ -9,7 +9,8 @@
 PORTVERSION=	5.0r47
 CATEGORIES=	www graphics linux
-MASTER_SITES=	http://download.macromedia.com/pub/shockwave/flash/english/linux/
+MASTER_SITES=	http://download.macromedia.com/pub/shockwave/flash/english/linux/${PORTVERSION}/
 PKGNAMEPREFIX=	linux-
 DISTNAME=	flash_linux
+DIST_SUBDIR=	${PORTVERSION}
 
 MAINTAINER=	pat@databits.net
Index: distinfo
===================================================================
RCS file: /home/ncvs/ports/www/linux-flashplugin/distinfo,v
retrieving revision 1.3
diff -u -u -2 -r1.3 distinfo
--- distinfo	2001/03/11 06:35:10	1.3
+++ distinfo	2001/03/12 18:37:30
@@ -1 +1 @@
-MD5 (flash_linux.tar.gz) = 28e526dc63ad1eb7395cca8fe1678f2e
+MD5 (5.0r47/flash_linux.tar.gz) = 28e526dc63ad1eb7395cca8fe1678f2e


At 11 Mar 2001 08:43:59 -0000,
pat@hex.databits.net wrote:
> Fixed the Master sites line so that it would fix the link to fetch the tarball. When the macromedia link was broken, it would fetch a older tarball from freebsd.org which breaks it. I discovered this happend when i saw that kris updated the Makefile to version 1.6, sorry kris :/
Comment 2 Maxim Sobolev freebsd_committer freebsd_triage 2001-03-13 16:35:55 UTC
State Changed
From-To: open->closed

Similar fix has been committed. 

Thank you for submission anyway!