blob: d57e7181bb2082af8552548df0205e5683354727 (
plain)
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
# $NetBSD: Makefile,v 1.3 2004/02/02 14:19:01 xtraeme Exp $
DISTNAME= X430src-4
PKGNAME= XFree86-fonts100dpi-${XF_VER}
PKGREVISION= 1
CATEGORIES= fonts x11
MASTER_SITES= ${MASTER_SITE_XFREE}
EXTRACT_SUFX= .tgz
MAINTAINER= xfree86@blef.org
HOMEPAGE= http://www.xfree86.org/
COMMENT= XFree86 bitmap 100dpi fonts
DEPENDS+= XFree86-fontsEncodings>=4.3.0:../../fonts/XFree86-fontsEncodings
USE_BUILDLINK2= yes
NO_XFREE86_TARGETS= # defined
WRKSRC= ${WRKDIR}/xc/fonts/bdf/100dpi
FILESDIR= ${.CURDIR}/../../fonts/XFree86-fontsEncodings/files
post-extract:
@${SED} \
-e "s|@PREFIX@|${X11ROOT}|g" \
-e "s|@MAKE@|${MAKE_PROGRAM}|g" \
-e "s|@IMAKE@|${IMAKE}|g" \
${FILESDIR}/host.def > ${WRKSRC}/host.def
.for f in encodings encodings/large
@${LN} -sf ${WRKSRC}/host.def ${WRKDIR}/xc/fonts/${f}
.endfor
do-configure:
(cd ${WRKDIR}/xc/fonts/encodings && \
${IMAKE} -DUseInstalled -I${X11ROOT}/lib/X11/config -DTOPDIR=../.. \
-DCURDIR=.; \
${MAKE} Makefiles ; \
${MAKE} includes ; \
${MAKE} depend)
(cd ${WRKSRC} && \
${IMAKE} -DUseInstalled -I${X11ROOT}/lib/X11/config \
-DTOPDIR=../.. -DCURDIR=.; \
${MAKE} Makefiles ; \
${MAKE} includes ; \
${MAKE} depend)
pre-build:
@${MV} ${WRKDIR}/xc/fonts/encodings/large/Makefile \
${WRKDIR}/xc/fonts/encodings/large/Makefile.in
@${SED} -e "s|/usr/X11R6|${X11ROOT}|g" \
< ${WRKDIR}/xc/fonts/encodings/large/Makefile.in > \
${WRKDIR}/xc/fonts/encodings/large/Makefile
(cd ${WRKDIR}/xc/fonts/encodings && \
${MAKE} all)
pre-install:
${MV} ${WRKSRC}/Makefile ${WRKSRC}/Makefile.orig
${SED} -e 's|TOP = ../..|TOP = ../../..|' ${WRKSRC}/Makefile.orig > \
${WRKSRC}/Makefile
.include "../../meta-pkgs/XFree86/Makefile.common"
.include "../../mk/bsd.pkg.mk"
|