blob: 5761c024e58f2fd7e41adab682bbceb5a53cc72e (
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.15 2002/03/13 17:37:06 fredb Exp $
DISTNAME= fnlib-0.5
PKGREVISION= 1
CATEGORIES= x11 graphics
MASTER_SITES= ftp://ftp.enlightenment.org/pub/e/enlightenment/libs/
MAINTAINER= root@garbled.net
COMMENT= color font rendering library for X11R6
USE_BUILDLINK_ONLY= YES
USE_X11BASE= # defined
GNU_CONFIGURE= # defined
USE_LIBTOOL= # defined
LTCONFIG_OVERRIDE= ${WRKSRC}/ltconfig
# Remove -I$(includedir) from the INCLUDES passed to the compiler as this
# defeats buildlink.
#
post-patch:
cd ${WRKSRC}; \
files=`${FIND} . -name "Makefile.in" -print`; \
for file in $${files}; do \
${MV} -f $${file} $${file}.fixme; \
${SED} -e "/^INCLUDES.*=.*/s|[ ]*-I\$$(includedir)||" \
$${file}.fixme > $${file}; \
${RM} $${file}.fixme; \
done
post-install:
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/fnlib
${INSTALL_DATA} ${WRKSRC}/doc/fontinfo.README ${PREFIX}/share/doc/fnlib
.include "../../graphics/imlib/buildlink.mk"
.include "../../mk/x11.buildlink.mk"
.include "../../mk/bsd.pkg.mk"
|