blob: 1a8590d1b35fefbf05ed4b734502b4733e7c0ece (
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
|
# $NetBSD: Makefile,v 1.3 2009/09/09 19:57:06 drochner Exp $
#
.include "../../print/poppler/Makefile.common"
PKGNAME= poppler-includes-${POPPLER_VERS}
COMMENT= Poppler Xpdf includes (unsupported)
MAINTAINER= dillo@NetBSD.org
CONFLICTS+= poppler-0.5.1 poppler-0.5.1nb1 poppler-0.5.1nb2
NO_BUILD= yes
PKG_DESTDIR_SUPPORT= user-destdir
INCDIR=${DESTDIR}${PREFIX}/include
.include "../../mk/bsd.prefs.mk"
do-install:
${INSTALL_DATA_DIR} ${INCDIR}
for subdir in poppler goo splash; \
do \
mf=${WRKSRC}/"$$subdir"/Makefile.am; \
d=`sed -n -f ${FILESDIR}/dir.sed "$$mf"`; \
${INSTALL_DATA_DIR} ${INCDIR}/"$$d"; \
sed -n -f ${FILESDIR}/extract.sed "$$mf" \
| { while read f; \
do \
${INSTALL_DATA} ${WRKSRC}/"$$subdir/$$f" ${INCDIR}/"$$d"; \
done }; \
done
${INSTALL_DATA} ${WRKSRC}/poppler/SplashOutputDev.h ${INCDIR}/poppler
.include "../../mk/bsd.pkg.mk"
|