blob: b8841ee83c00b24ff9d9f5a28f36e0f65165ba9a (
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
|
# $NetBSD: Makefile,v 1.9 2008/05/26 02:13:23 joerg Exp $
.include "Makefile.common"
PKGNAME= ja-vflib-lib-${VFLIB_VERSION}
PKGREVISION= 2
COMMENT= Japanese Vector font library
CONFIGURE_ARGS+= --without-x
BUILD_TARGET= build-src
INSTALL_TARGET= install-src
USE_TOOLS+= pax
post-build:
.for FILE in vfontcap vfontcap.bdf
cd ${WRKSRC}; \
${MV} ${FILE} ${FILE}.orig; \
${SED} -e "s|/usr/local/share/fonts|${PREFIX}/share/fonts|g" \
${FILE}.orig > ${FILE}; \
${RM} ${FILE}.orig
.endfor
post-install:
${MV} ${PREFIX}/share/VFlib/${VFLIB_VERSION}/VF.h ${PREFIX}/include
${INSTALL_DATA_DIR} ${PREFIX}/share/VFlib/${VFLIB_VERSION}
cd ${WRKSRC} && ${INSTALL_DATA} COPYING COPYING.LIB README.txt.JP_EUC \
${PREFIX}/share/VFlib/${VFLIB_VERSION}
cd ${WRKSRC} && pax -rw jTeX ${PREFIX}/share/VFlib/${VFLIB_VERSION}
${FIND} ${PREFIX}/share/VFlib/${VFLIB_VERSION} -type d -print \
-exec ${CHMOD} ${PKGDIRMODE} {} \;
${FIND} ${PREFIX}/share/VFlib/${VFLIB_VERSION} -type f -print \
-exec ${CHMOD} ${SHAREMODE} {} \;
.include "../../mk/bsd.pkg.mk"
|