30b55df38e
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.
38 lines
1 KiB
Makefile
38 lines
1 KiB
Makefile
# $NetBSD: Makefile,v 1.10 2017/01/19 18:52:09 agc Exp $
|
|
|
|
DISTNAME= mplayer-fonts-20030714
|
|
PKGREVISION= 1
|
|
CATEGORIES= fonts
|
|
MASTER_SITES= ftp://ftp1.mplayerhq.hu/MPlayer/releases/fonts/
|
|
MASTER_SITES+= http://www1.mplayerhq.hu/MPlayer/releases/fonts/
|
|
MASTER_SITES+= http://www2.mplayerhq.hu/MPlayer/releases/fonts/
|
|
DISTFILES= font-arial-iso-8859-1.tar.bz2 \
|
|
font-arial-iso-8859-2.tar.bz2 \
|
|
font-arial-iso-8859-7.tar.bz2 \
|
|
font-arial-cp1250.tar.bz2
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://www.mplayerhq.hu/
|
|
COMMENT= Fonts for mplayer and gmplayer
|
|
|
|
CONFLICTS= mplayer-share<1.0rc7nb2
|
|
|
|
DIST_SUBDIR= ${DISTNAME}
|
|
|
|
NO_BUILD= YES
|
|
NO_CONFIGURE= YES
|
|
|
|
USE_TOOLS+= pax
|
|
|
|
INSTALLATION_DIRS= share/mplayer/fonts
|
|
|
|
do-install:
|
|
for D in font-arial-cp1250 font-arial-iso-8859-1 \
|
|
font-arial-iso-8859-2 font-arial-iso-8859-7; do \
|
|
(cd ${WRKDIR}/$$D && \
|
|
pax -rwpppm * ${DESTDIR}${PREFIX}/share/mplayer/fonts); \
|
|
done
|
|
${LN} -s ${PREFIX}/share/mplayer/fonts/font-arial-18-iso-8859-1 \
|
|
${DESTDIR}${PREFIX}/share/mplayer/font
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|