diff options
author | agc <agc> | 2017-01-19 18:52:01 +0000 |
---|---|---|
committer | agc <agc> | 2017-01-19 18:52:01 +0000 |
commit | 14d9c09508862d6ba099781fd595c87d12811358 (patch) | |
tree | 1de84c1d1fb65505067c398baecb67d6f321c6e6 /emulators | |
parent | 47fe2d457dc9acd50edb1e81266f2913aae9bae8 (diff) | |
download | pkgsrc-14d9c09508862d6ba099781fd595c87d12811358.tar.gz |
Convert all occurrences (353 by my count) of
MASTER_SITES= site1 \
site2
style continuation lines to be simple repeated
MASTER_SITES+= site1
MASTER_SITES+= site2
lines. As previewed on tech-pkg. With thanks to rillig for fixing pkglint
accordingly.
Diffstat (limited to 'emulators')
-rw-r--r-- | emulators/cygwin_esound/Makefile | 8 | ||||
-rw-r--r-- | emulators/snes9x/Makefile | 6 | ||||
-rw-r--r-- | emulators/wine-devel/Makefile | 6 | ||||
-rw-r--r-- | emulators/wine/Makefile | 6 |
4 files changed, 13 insertions, 13 deletions
diff --git a/emulators/cygwin_esound/Makefile b/emulators/cygwin_esound/Makefile index 01403fbfcaf..c98bf21f8eb 100644 --- a/emulators/cygwin_esound/Makefile +++ b/emulators/cygwin_esound/Makefile @@ -1,13 +1,13 @@ -# $NetBSD: Makefile,v 1.9 2012/10/03 12:55:11 asau Exp $ +# $NetBSD: Makefile,v 1.10 2017/01/19 18:52:08 agc Exp $ # DISTNAME= esound-0.2.35-1 PKGNAME= ${DISTNAME:S/-/!/:S/-/./g:S/!/-/:S/^/cygwin_/} PKGREVISION= 1 CATEGORIES= emulators -MASTER_SITES= ${MASTER_SITE_CYGWIN:=release/esound/} \ - ${MASTER_SITE_CYGWIN:=release/esound/libesound0/} \ - ${MASTER_SITE_CYGWIN:=release/audiofile/libaudiofile0/} +MASTER_SITES= ${MASTER_SITE_CYGWIN:=release/esound/} +MASTER_SITES+= ${MASTER_SITE_CYGWIN:=release/esound/libesound0/} +MASTER_SITES+= ${MASTER_SITE_CYGWIN:=release/audiofile/libaudiofile0/} EXTRACT_SUFX= .tar.bz2 DISTFILES= ${DISTNAME}${EXTRACT_SUFX} \ libesound0-0.2.35-1.tar.bz2 \ diff --git a/emulators/snes9x/Makefile b/emulators/snes9x/Makefile index e79fc4a5ab9..1a607e93178 100644 --- a/emulators/snes9x/Makefile +++ b/emulators/snes9x/Makefile @@ -1,11 +1,11 @@ -# $NetBSD: Makefile,v 1.53 2015/03/31 15:27:06 joerg Exp $ +# $NetBSD: Makefile,v 1.54 2017/01/19 18:52:08 agc Exp $ SNESVER= 1.43 DISTNAME= snes9x-${SNESVER}-src PKGNAME= snes9x-${SNESVER} CATEGORIES= emulators -MASTER_SITES= http://www.lysator.liu.se/snes9x/${SNESVER}/ \ - http://files.ipherswipsite.com/snes9x/ +MASTER_SITES= http://www.lysator.liu.se/snes9x/${SNESVER}/ +MASTER_SITES+= http://files.ipherswipsite.com/snes9x/ MAINTAINER= pkgsrc-users@NetBSD.org HOMEPAGE= http://www.snes9x.com/ diff --git a/emulators/wine-devel/Makefile b/emulators/wine-devel/Makefile index f4fb00ad9ff..739db8dd2d4 100644 --- a/emulators/wine-devel/Makefile +++ b/emulators/wine-devel/Makefile @@ -1,10 +1,10 @@ -# $NetBSD: Makefile,v 1.63 2016/11/01 20:04:55 maya Exp $ +# $NetBSD: Makefile,v 1.64 2017/01/19 18:52:08 agc Exp $ DISTNAME= wine-1.9.18 PKGREVISION= 4 CATEGORIES= emulators -MASTER_SITES= http://ibiblio.org/pub/linux/system/emulators/wine/ \ - ${MASTER_SITE_SOURCEFORGE:=wine/} +MASTER_SITES= http://ibiblio.org/pub/linux/system/emulators/wine/ +MASTER_SITES+= ${MASTER_SITE_SOURCEFORGE:=wine/} EXTRACT_SUFX= .tar.bz2 MAINTAINER= adam@NetBSD.org diff --git a/emulators/wine/Makefile b/emulators/wine/Makefile index ae258b77e0e..e6d280e48be 100644 --- a/emulators/wine/Makefile +++ b/emulators/wine/Makefile @@ -1,10 +1,10 @@ -# $NetBSD: Makefile,v 1.194 2016/09/19 13:04:21 wiz Exp $ +# $NetBSD: Makefile,v 1.195 2017/01/19 18:52:08 agc Exp $ DISTNAME= wine-1.6.2 PKGREVISION= 12 CATEGORIES= emulators -MASTER_SITES= http://ibiblio.org/pub/linux/system/emulators/wine/ \ - ${MASTER_SITE_SOURCEFORGE:=wine/} +MASTER_SITES= http://ibiblio.org/pub/linux/system/emulators/wine/ +MASTER_SITES+= ${MASTER_SITE_SOURCEFORGE:=wine/} EXTRACT_SUFX= .tar.bz2 MAINTAINER= adam@NetBSD.org |