diff options
author | dougb <dougb@FreeBSD.org> | 2012-10-05 12:21:20 +0800 |
---|---|---|
committer | dougb <dougb@FreeBSD.org> | 2012-10-05 12:21:20 +0800 |
commit | 90d6d58f06c9d68a2b7b49f1eff46b73f77cf1ec (patch) | |
tree | 90a5e14c72f4f99896813eef85e51ed752318666 | |
parent | 7f1e121f1efc16ccdc4df391f643058e31081c24 (diff) | |
download | freebsd-ports-gnome-90d6d58f06c9d68a2b7b49f1eff46b73f77cf1ec.tar.gz freebsd-ports-gnome-90d6d58f06c9d68a2b7b49f1eff46b73f77cf1ec.tar.zst freebsd-ports-gnome-90d6d58f06c9d68a2b7b49f1eff46b73f77cf1ec.zip |
Create MASTER_SITE_MPLAYERHQ and use it for the 2 ports that have these
sites in common. This will allow people who use ports-mgmt/fastest_sites
(or other methods) to selectively eliminate those sites from this list
that are locally unreachable. It also adds more potential sites for both
ports.
I checked all of these sites and they each have the distfiles for both
ports. The omission of ftp[23] is intentional, those sites are not
functional.
-rw-r--r-- | Mk/bsd.sites.mk | 14 | ||||
-rw-r--r-- | multimedia/mplayer-skins/Makefile | 13 | ||||
-rw-r--r-- | multimedia/win32-codecs/Makefile | 13 |
3 files changed, 20 insertions, 20 deletions
diff --git a/Mk/bsd.sites.mk b/Mk/bsd.sites.mk index c2d97d4bd0fc..1d0307a74e3f 100644 --- a/Mk/bsd.sites.mk +++ b/Mk/bsd.sites.mk @@ -809,6 +809,20 @@ MASTER_SITE_MOZILLA_EXTENDED+= \ ${MASTER_SITE_MOZILLA} .endif +.if !defined(IGNORE_MASTER_SITE_MPLAYERHQ) +MASTER_SITE_MPLAYERHQ+= \ + http://www.mplayerhq.hu/MPlayer/%SUBDIR%/ \ + http://www1.mplayerhq.hu/MPlayer/%SUBDIR%/ \ + http://www2.mplayerhq.hu/MPlayer/%SUBDIR%/ \ + http://www3.mplayerhq.hu/MPlayer/%SUBDIR%/ \ + http://www4.mplayerhq.hu/MPlayer/%SUBDIR%/ \ + http://www5.mplayerhq.hu/MPlayer/%SUBDIR%/ \ + ftp://ftp.mplayerhq.hu/MPlayer/%SUBDIR%/ \ + ftp://ftp1.mplayerhq.hu/MPlayer/%SUBDIR%/ \ + ftp://ftp4.mplayerhq.hu/MPlayer/%SUBDIR%/ \ + ftp://ftp5.mplayerhq.hu/MPlayer/%SUBDIR%/ +.endif + .if !defined(IGNORE_MASTER_SITE_MYSQL) MASTER_SITE_MYSQL+= \ ftp://ftp.fi.muni.cz/pub/mysql/Downloads/%SUBDIR%/ \ diff --git a/multimedia/mplayer-skins/Makefile b/multimedia/mplayer-skins/Makefile index bca3bb455bbc..8e5e3b8d6629 100644 --- a/multimedia/mplayer-skins/Makefile +++ b/multimedia/mplayer-skins/Makefile @@ -1,20 +1,13 @@ -# New ports collection makefile for: mplayer gui skins -# Date created: Sat Jan 12 10:59:45 BRST 2002 -# Whom: Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org> +# Created by: Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org> # # $FreeBSD$ -# PORTNAME= mplayer-skins PORTVERSION= 1.1.3 PORTREVISION= 0 CATEGORIES= multimedia -MASTER_SITES= http://www.mplayerhq.hu/MPlayer/skins/ \ - http://www4.mplayerhq.hu/MPlayer/skins/ \ - http://www5.mplayerhq.hu/MPlayer/skins/ \ - ftp://ftp.mplayerhq.hu/MPlayer/skins/ \ - ftp://ftp4.mplayerhq.hu/MPlayer/skins/ \ - ftp://ftp5.mplayerhq.hu/MPlayer/skins/ +MASTER_SITES= ${MASTER_SITE_MPLAYERHQ} +MASTER_SITE_SUBDIR= skins DISTFILES= # filled in later after options DIST_SUBDIR= mplayer-skins diff --git a/multimedia/win32-codecs/Makefile b/multimedia/win32-codecs/Makefile index c43c13af55b1..159a0b1cd53a 100644 --- a/multimedia/win32-codecs/Makefile +++ b/multimedia/win32-codecs/Makefile @@ -1,22 +1,15 @@ -# New ports collection makefile for: avifile -# Date created: 16 September 2000 -# Whom: Holger Lamm +# Created by: Holger Lamm # # $FreeBSD$ -# PORTNAME= win32-codecs DISTVERSION= 20110131 PORTEPOCH= 1 CATEGORIES= multimedia audio -MASTER_SITES= http://www1.mplayerhq.hu/MPlayer/releases/codecs/ \ - http://www2.mplayerhq.hu/MPlayer/releases/codecs/ \ - http://www4.mplayerhq.hu/MPlayer/releases/codecs/ \ +MASTER_SITES= ${MASTER_SITE_MPLAYERHQ} \ http://ftp.lug.udel.edu/MPlayer/releases/codecs/ \ - http://www.mplayerhq.hu/MPlayer/releases/codecs/ \ - ftp://ftp1.mplayerhq.hu/MPlayer/releases/codecs/ \ - ftp://ftp2.mplayerhq.hu/MPlayer/releases/codecs/ \ ftp://ftp.lug.udel.edu/MPlayer/releases/codecs/ +MASTER_SITE_SUBDIR= releases/codecs DISTFILES= all-${DISTVERSION}.tar.bz2 \ ${ADDITIONAL_CODECS_DISTFILES} DIST_SUBDIR= win32 |