aboutsummaryrefslogtreecommitdiffstats
path: root/graphics/libwmf/Makefile
blob: 6eee70dce7106572614e74fbbf4965322fdcc811 (plain) (blame)
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
45
46
47
48
49
50
51
52
53
54
55
56
# Created by: Chris Piazza <cpiazza@FreeBSD.org>
# $FreeBSD$

PORTNAME=   libwmf
PORTVERSION=    0.2.8.4
PORTREVISION=   13
CATEGORIES= graphics
MASTER_SITES=   SF/wvware/${PORTNAME}/${PORTVERSION}

MAINTAINER= ports@FreeBSD.org
COMMENT=    Tools and library for converting Microsoft WMF (windows metafile)

LICENSE=    GPLv2 # or later
LICENSE_FILE=   ${WRKSRC}/COPYING

LIB_DEPENDS=    libpng.so:${PORTSDIR}/graphics/png \
        libfreetype.so:${PORTSDIR}/print/freetype2

CONFLICTS?= libwmf-nox11-[0-9]*

GNU_CONFIGURE=  yes
CONFIGURE_ARGS= --with-sys-gd=no \
        --with-png=${LOCALBASE} --with-jpeg=${LOCALBASE} \
        --with-gsfontdir=${LOCALBASE}/share/ghostscript/fonts
INSTALL_TARGET= install-strip
USES=       jpeg libtool
USE_GNOME=  libxml2
USE_LDCONFIG=   yes

PORTDOCS=   *

OPTIONS_DEFINE= X11 DOCS
OPTIONS_DEFAULT=X11
OPTIONS_SUB=    yes

X11_USE=    XORG=x11
X11_CONFIGURE_OFF=--with-x=no

.include <bsd.port.options.mk>

post-patch:
    @${REINPLACE_CMD} -e 's|src include fonts doc|src include fonts|g' \
        ${WRKSRC}/Makefile.in
    @${REINPLACE_CMD} -e \
        's|@LIBWMF_GDK_PIXBUF_TRUE@|#|g ; \
         s|@LIBWMF_GDK_PIXBUF_FALSE@||g ; \
         s|: install-loaderLTLIBRARIES|:|g' ${WRKSRC}/src/Makefile.in

post-install:
.if ${PORT_OPTIONS:MDOCS}
    @${MKDIR} ${STAGEDIR}${DOCSDIR}
    @${TAR} -C ${WRKSRC}/doc --exclude '*Makefile*' -cf - . | \
        ${TAR} -C ${STAGEDIR}${DOCSDIR} --unlink -xf -
.endif

.include <bsd.port.mk>