blob: 5ceea751e8136ce1c8a2dd104980079b28bce852 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
# New ports collection makefile for: mplayer-fonts
# Date created: 15 August 2001
# Whom: Thomas E. Zander
#
# $FreeBSD$
#
PORTNAME= mplayer-fonts
PORTVERSION= 0.50
CATEGORIES= multimedia
MASTER_SITES= http://www.stud.uni-karlsruhe.de/~uedc/mplayer/ \
http://www.rrr.de/~riggs/mplayer/
MAINTAINER= riggs@rrr.de
USE_BZIP2= yes
NO_BUILD= yes
FONTDIRS= cyrillic koi8r-font iso-8859-1/arial-14 \
iso-8859-1/arial-18 iso-8859-1/arial-24 \
iso-8859-1/arial-28 iso-8859-2/arial-14 \
iso-8859-2/arial-18 iso-8859-2/arial-24 \
iso-8859-2/arial-28
do-install:
@${MKDIR} ${PREFIX}/share/mplayer/fonts
@${CHMOD} 0555 ${PREFIX}/share/mplayer/fonts
.for dir in iso-8859-1 iso-8859-2
@${MKDIR} ${PREFIX}/share/mplayer/fonts/${dir}
@${CHMOD} 0555 ${PREFIX}/share/mplayer/fonts/${dir}
.endfor
.for dir in ${FONTDIRS}
@${MKDIR} ${PREFIX}/share/mplayer/fonts/${dir}
@${CHMOD} 0555 ${PREFIX}/share/mplayer/fonts/${dir}
@${INSTALL_DATA} ${WRKDIR}/${dir}/* \
${PREFIX}/share/mplayer/fonts/${dir}
.endfor
.include <bsd.port.mk>
|