aboutsummaryrefslogtreecommitdiffstats
path: root/graphics/netpbm/Makefile
blob: 53c411ce23be3ec83859f378d2daf87f59a862e4 (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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
# New ports collection makefile for:    netpbm
# Date created:     ?
# Whom:         jmz (original)
#
# $FreeBSD$
#

PORTNAME=   netpbm
PORTVERSION=    10.35.81
CATEGORIES= graphics
MASTER_SITES=   SF/netpbm/super_stable/${PORTVERSION}
EXTRACT_SUFX=   .tgz

MAINTAINER= dinoex@FreeBSD.org
COMMENT=    A toolkit for conversion of images between different formats

LIB_DEPENDS=    tiff.4:${PORTSDIR}/graphics/tiff \
        jpeg.11:${PORTSDIR}/graphics/jpeg \
        png.6:${PORTSDIR}/graphics/png \
        jbig.1:${PORTSDIR}/graphics/jbigkit \
        jasper.4:${PORTSDIR}/graphics/jasper \
        xml2.5:${PORTSDIR}/textproc/libxml2

MAKE_JOBS_UNSAFE=   yes

USE_PERL5=  yes
USE_GMAKE=  yes
CFLAGS+=    -DPNG_DEPSTRUCT= -Iutil
MAKE_ENV=   LN="${LN}" RANLIB="${RANLIB}"
MAKEFILE=   GNUmakefile
MAKEFILE2=  Makefile
INSTALL_TARGET= install.bin install.lib install.data install-dev
USE_LDCONFIG=   yes

MAN1=       netpbm.1

.if defined(WITH_X11)
USE_XORG=   x11
MAKE_ENV+=  WITH_X11="${WITH_X11}"
PLIST_SUB+= X11=''
.else
PLIST_SUB+= X11='@comment '
.endif

pre-configure:
    @${REINPLACE_CMD} -e 's|%%PREFIX%%|${PREFIX}|g' \
         -e 's|%%LOCALBASE%%|${LOCALBASE}|g' \
         ${WRKSRC}/pm_config.in.h
    @${REINPLACE_CMD} -e 's|<shhopt.h>|<pm_shhopt.h>|g' ${WRKSRC}/lib/pm.h
    @${REINPLACE_CMD} -e 's| jpeg2000||g' \
        ${WRKSRC}/converter/other/Makefile
    @${CP} ${PATCHDIR}/Makefile.config.FreeBSD ${WRKSRC}/Makefile.config
    @${LN} -sf ${WRKSRC}/lib/util/shhopt.h ${WRKSRC}/lib/util/pm_shhopt.h
    @${LN} -sf ${WRKSRC}/lib/util/nstring.h ${WRKSRC}/lib/util/pm_nstring.h
    cd ${WRKSRC} && buildtools/stamp-date > ${WRKSRC}/lib/compile.h

# This snippet is all it takes to make the port as of 10.35.80 MAKE_JOBS_SAFE:
pre-build:
    @(cd ${BUILD_WRKSRC}/lib/util; if ! ${SETENV} ${MAKE_ENV} ${GMAKE} ${MAKE_FLAGS} ${MAKEFILE2} ${_MAKE_JOBS} ${MAKE_ARGS} ${ALL_TARGET}; then \
    if [ x != x${BUILD_FAIL_MESSAGE} ] ; then \
        ${ECHO_MSG} "===> Compilation failed unexpectedly."; \
        (${ECHO_CMD} ${BUILD_FAIL_MESSAGE}) | ${FMT} 75 79 ; \
        fi; \
    ${FALSE}; \
    fi)

post-install:
    @${ECHO_MSG} "===>  Installing man pages..."
    @${REINPLACE_CMD} -e 's|doc/USERDOC|${DOCSDIR}/USERDOC|g' \
        ${WRKSRC}/doc/netpbm.1
    ${INSTALL_MAN} ${WRKSRC}/doc/netpbm.1 ${MANPREFIX}/man/man1
.if !defined(NOPORTDOCS)
    @${MKDIR} ${DOCSDIR}
    ${INSTALL_DATA} ${WRKSRC}/doc/USERDOC ${DOCSDIR}/
.endif

.include <bsd.port.mk>