blob: e7455186386b2b4cfe6f80b161a4c11c6525f4ab (
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
|
# $NetBSD: Makefile.common,v 1.69 2014/08/25 21:11:30 wiz Exp $
#
# used by print/poppler/Makefile
# used by print/poppler-cpp/Makefile
# used by print/poppler-glib/Makefile
# used by print/poppler-includes/Makefile
# used by print/poppler-qt4/Makefile
# used by print/poppler-qt5/Makefile
# used by print/poppler-utils/Makefile
POPPLER_VERS= 0.26.4
DISTNAME= poppler-${POPPLER_VERS}
CATEGORIES= print
MASTER_SITES= http://poppler.freedesktop.org/
EXTRACT_SUFX= .tar.xz
HOMEPAGE= http://poppler.freedesktop.org/
LICENSE= gnu-gpl-v2
DISTINFO_FILE= ${.CURDIR}/../../print/poppler/distinfo
PATCHDIR= ${.CURDIR}/../../print/poppler/patches
USE_TOOLS+= pkg-config
USE_LIBTOOL= yes
USE_LANGUAGES= c c++
# Don't accidentally find libtiff
CONFIGURE_ARGS+= --disable-libtiff
.include "../../mk/compiler.mk"
.if !empty(PKGSRC_COMPILER:Mclang)
BUILDLINK_TRANSFORM+= rm:-fno-check-new
.endif
|