blob: fd2b32b791c268d5d49ece2ba19b2164389bc3b7 (
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
|
# $NetBSD: Makefile,v 1.5 1999/11/05 21:44:13 soren Exp $
#
DISTNAME= t1lib-0.9.2
CATEGORIES= textproc devel graphics
MASTER_SITES= ${MASTER_SITE_SUNSITE:=libs/graphics/}
MAINTAINER= packages@netbsd.org
HOMEPAGE= http://www.neuroinformatik.ruhr-uni-bochum.de/ini/PEOPLE/rmz/t1lib.html
GNU_CONFIGURE= yes
USE_GMAKE= yes
USE_LIBTOOL= yes
USE_X11BASE= yes
WRKSRC= ${WRKDIR}/T1-0.9.2
MESSAGE_FILE= ${WRKDIR}/MESSAGE
ALL_TARGET= without_doc
post-build:
${SED} -e 's|@@PREFIX@@|${PREFIX}|g' < ${PKGDIR}/MESSAGE > ${WRKDIR}/MESSAGE
post-install:
${MKDIR} ${PREFIX}/share/t1lib
cd ${WRKSRC}; \
${PAX} -r -w Fonts ${PREFIX}/share/t1lib; \
${CHMOD} go+r ${PREFIX}/share/t1lib/Fonts/enc/IsoLatin2.enc; \
${PAX} -r -w -s "/doc/t1lib/" doc ${PREFIX}/share/doc
${MKDIR} ${PREFIX}/share/examples/t1lib
cd ${WRKSRC}/examples; \
${PAX} -r -w FontDataBase README.t1example1 t1example1.c t1lib.config \
${PREFIX}/share/examples/t1lib
${SED} -e 's|@@X11BASE@@|${X11BASE}|g' -e 's|@@LOCALBASE@@|${LOCALBASE}|g' \
-e 's|@@PREFIX@@|${PREFIX}|g' < ${FILESDIR}/t1lib.config.netbsd \
> ${PREFIX}/share/examples/t1lib/t1lib.config.netbsd
if [ ! -f ${PREFIX}/share/t1lib/t1lib.config ]; then \
${CP} ${PREFIX}/share/examples/t1lib/t1lib.config.netbsd \
${PREFIX}/share/t1lib/t1lib.config; \
fi
if [ ! -f ${PREFIX}/share/t1lib/FontDataBase ]; then \
${CP} ${PREFIX}/share/examples/t1lib/FontDataBase ${PREFIX}/share/t1lib; \
fi
.include "../../mk/bsd.pkg.mk"
|