diff options
author | agc <agc@pkgsrc.org> | 2017-01-19 18:52:01 +0000 |
---|---|---|
committer | agc <agc@pkgsrc.org> | 2017-01-19 18:52:01 +0000 |
commit | a16b650423ebac0d6db54146c732a10b971237a4 (patch) | |
tree | 61b24a35333bd0bb01124d6015191764d7bafa22 /print/cnprint | |
parent | 48e28cf6cad6bf88a5da716ad8af07695b962574 (diff) | |
download | pkgsrc-a16b650423ebac0d6db54146c732a10b971237a4.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 'print/cnprint')
-rw-r--r-- | print/cnprint/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/print/cnprint/Makefile b/print/cnprint/Makefile index 3d8e6dfa365..a56a4f95e62 100644 --- a/print/cnprint/Makefile +++ b/print/cnprint/Makefile @@ -1,13 +1,13 @@ -# $NetBSD: Makefile,v 1.16 2014/12/21 12:47:48 mef Exp $ +# $NetBSD: Makefile,v 1.17 2017/01/19 18:52:22 agc Exp $ DISTNAME= # PKGNAME= cnprint-3.30b PKGREVISION= 1 CATEGORIES= print -MASTER_SITES= http://www.ywpw.com/cai/software/cnp/ \ - http://www.ywpw.com/cai/software/cnp/fonts/ \ - http://www.ywpw.com/cai/software/cnp/metrics/ \ - ftp://ftp.csc.cuhk.edu.hk/pub/chinese/ifcss/software/fonts/misc/ +MASTER_SITES= http://www.ywpw.com/cai/software/cnp/ +MASTER_SITES+= http://www.ywpw.com/cai/software/cnp/fonts/ +MASTER_SITES+= http://www.ywpw.com/cai/software/cnp/metrics/ +MASTER_SITES+= ftp://ftp.csc.cuhk.edu.hk/pub/chinese/ifcss/software/fonts/misc/ EXTRACT_SUFX= #empty DISTFILES+= cnprint330b.c \ cnprint330b.readme \ |