aboutsummaryrefslogtreecommitdiffstats
path: root/devel/kdesdk3/Makefile
blob: 6c8afea465f5944d5acf43ec22e651205c4fa112 (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
# New ports collection makefile for:    KDE SDK
# Date created:             2 March 2001
# Whom:                 Dmitry Sivachenko <demon@FreeBSD.org>
#
# $FreeBSD$
#

PORTNAME=   kdesdk
PORTVERSION=    ${KDE_VERSION}
CATEGORIES= devel kde
MASTER_SITES=   ${MASTER_SITE_KDE}
MASTER_SITE_SUBDIR= stable/${PORTVERSION:S/.0//}/src
DIST_SUBDIR=    KDE

MAINTAINER= kde@FreeBSD.org
COMMENT=    KDE Software Development Kit

RUN_DEPENDS=    bash:${PORTSDIR}/shells/bash
LIB_DEPENDS=    svn_client-1.0:${PORTSDIR}/devel/subversion

CONFLICTS=  umbrello-[0-9]* kcachegrind-[0-9]*

USE_KDEBASE_VER=3
PREFIX=     ${KDE_PREFIX}

USE_PERL5=  yes
USE_BZIP2=  yes
USE_GMAKE=  yes
USE_BDB=    yes
USE_AUTOTOOLS=  libtool:15

USE_LDCONFIG=   yes

CONFIGURE_ARGS+=--mandir=${MANPREFIX}/man \
        --with-db-include-dir=${BDB_INCLUDE_DIR} \
        --with-db-lib-dir=${BDB_LIB_DIR} --with-db-name=${BDB_LIB_NAME} \
        --with-apr-config=${LOCALBASE}/bin/apr-1-config \
        --with-apu-config=${LOCALBASE}/bin/apu-1-config \
        --with-svn-include=${LOCALBASE}/include \
        --with-svn-lib=${LOCALBASE}/lib

MAN1=       cervisia.1 cvsblame.1 cvscheck.1 cvsversion.1 includemocs.1 kde-build.1 kdesvn-build.1 noncvslist.1

.include "${.CURDIR}/../../x11/kde3/Makefile.kde"
.include <bsd.port.pre.mk>

pre-everything::
.if !defined(WITH_OPTIONAL_DEPENDS)
    @${ECHO_MSG}
    @${ECHO_MSG} "You may define WITH_OPTIONAL_DEPENDS (make WITH_OPTIONAL_DEPENDS=YES)"
    @${ECHO_MSG} "to automatically build the suggested programs to complement kdesdk3."
    @${ECHO_MSG}
.endif

# callgrind is optional. It depends on valgrind, which is i386 only.
.if defined(WITH_OPTIONAL_DEPENDS) && ${ARCH} == "i386"
RUN_DEPENDS+=   callgrind:${PORTSDIR}/devel/callgrind
.endif

post-patch:
# Breakage might be caused by security/heimdal's broken fnmatch.h
    @${REINPLACE_CMD} -e 's|<\(fnmatch.h\)>|"/usr/include/\1"|' \
        ${WRKSRC}/cervisia/stringmatcher.cpp

.include <bsd.port.post.mk>