summaryrefslogtreecommitdiff
path: root/x11/qt3-libs/Makefile.common
blob: e65f815aa70dea4283d51cee813f8d73bdb6b906 (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
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
# $NetBSD: Makefile.common,v 1.58 2005/12/05 20:51:19 rillig Exp $
#
DISTNAME=		qt-x11-free-${QTVERSION}
CATEGORIES=		x11
MASTER_SITES=		ftp://ftp.trolltech.com/qt/source/ \
			ftp://ftp.bero.org/pub/qt/source/
EXTRACT_SUFX=		.tar.bz2

.include "../../x11/qt3/Makefile.common"

DISTINFO_FILE=		${.CURDIR}/../../x11/qt3-libs/distinfo
FILESDIR=		${.CURDIR}/../../x11/qt3-libs/files
PATCHDIR=		${.CURDIR}/../../x11/qt3-libs/patches

HAS_CONFIGURE=		yes
USE_TOOLS+=		gmake
USE_LANGUAGES=		c c++
USE_LIBTOOL=		yes

QTPREFIX=		${PREFIX}/qt3

CONFIGURE_ARGS+=	-prefix ${QTPREFIX}
CONFIGURE_ARGS+=	-shared -sm -thread -no-stl \
			-system-zlib -system-libpng \
			-system-libmng -system-libjpeg \
			${CFLAGS:M-I*} ${LDFLAGS:M-L*} ${LDFLAGS:M-Wl*:S/-Wl,//}
CONFIGURE_ARGS+=	-qt-gif	# qt3 does not write compressed GIFs
CONFIGURE_ARGS.SunOS+=	-no-xrender
OPSYSVARS+=		CONFIGURE_ARGS

CONFIGURE_ARGS+=	< ${FILESDIR}/license-acceptance

LIBQT?=			-lqt-mt

MAKE_ENV+=		QTPREFIX=${QTPREFIX:Q}
MAKE_ENV+=              QTDIR=${WRKSRC:Q}

# avoid creating a .qt directory in the users home
# directory
SCRIPTS_ENV+=		HOME="${WRKDIR}"

.include "../../mk/compiler.mk"

.if !empty(CC_VERSION:Mgcc*)
CONFIGURE_ARGS+=	-no-g++-exceptions
.endif

.if ${OPSYS} == "SunOS"
CONFIGURE_SCRIPT=	${SH} ./configure
.  if !empty(CC_VERSION:Mgcc*)
CONFIGURE_ARGS+=	-platform solaris-g++
.  else
CONFIGURE_ARGS+=	-platform solaris-cc
.  endif
SYS_LIBS=		-lresolv -lsocket -lnsl -lrt
.elif ${OPSYS} == "Interix"
CONFIGURE_ARGS+=	-platform interix-g++
CFLAGS+=		-I/usr/local/include/bind
LDFLAGS+=		-L/usr/local/lib/bind -lbind
BUILDLINK_PASSTHRU_DIRS+=/usr/local/include/bind /usr/local/lib/bind
SYS_LIBS=		-lbind -ldb -ldl
.elif ${OPSYS} == "DragonFly"
CONFIGURE_ARGS+=	-platform freebsd-g++
.elif ${OPSYS} == "Darwin"
QMAKE_RANLIB=		${RANLIB}
.  if exists(/usr/lib/libresolv.dylib)
LDFLAGS+=		-lresolv
.  endif
.endif

QMAKE_RANLIB?=		${TRUE}

.if !exists(${X11BASE}/lib/libXinerama.so)
CONFIGURE_ARGS+=	-no-xinerama
.endif

PKG_OPTIONS_VAR=	PKG_OPTIONS.qt3
PKG_SUPPORTED_OPTIONS=	cups debug

.include "../../mk/bsd.options.mk"

.if !empty(PKG_OPTIONS:Mcups)
.  include "../../print/cups/buildlink3.mk"
CONFIGURE_ARGS+=	-cups
.else
CONFIGURE_ARGS+=	-no-cups
.endif

.if !empty(PKG_OPTIONS:Mdebug)
CC+=			-ggdb
CXX+=			-ggdb
CONFIGURE_ARGS+=	--debug
INSTALL_UNSTRIPPED=	yes
.endif


#
# Reverse the change to how templates are handled made between 3.0.4
# and 3.0.5 for older toolchains. Removing inline for newer toolchains
# produces smaller code. Removing inline for older toolchains prod-
# uces buggy code.
#

.if !empty(CC_VERSION:Mgcc-2.8*)
CXXFLAGS+=		-DQ_INLINE_TEMPLATES=inline
.endif

.include "../../mk/x11.buildlink3.mk"

pre-configure:
	${SED} \
		-e 's:@LOCALBASE@:${LOCALBASE}:g' \
		-e 's:@X11BASE@:${X11BASE}:g' \
		-e 's:@X11PREFIX@:${X11PREFIX}:g' \
		-e 's:@LIBTOOL@:${LIBTOOL}:g' \
		-e 's:@CC@:${CC}:g' \
		-e 's:@CXX@:${CXX}:g' \
		-e 's:@LDFLAGS@:${LDFLAGS}:g' \
		-e 's:@CFLAGS@:${CFLAGS}:g' \
		-e 's:@CXXFLAGS@:${CXXFLAGS}:g' \
		-e 's:@SYS_LIBS@:${SYS_LIBS}:g' \
		-e 's:@LEX@:${LEX}:g' \
		-e 's:@YACC@:${TOOLS_CMDLINE_YACC}:g' \
		-e 's:@AR@:${AR}:g' \
		-e 's:@MKDIR@:${MKDIR}:g' \
		-e 's:@LIBQT@:${LIBQT}:g' \
		-e 's:@PTHREAD_LDFLAGS@:${PTHREAD_LDFLAGS}:g' \
		-e 's:@PTHREAD_LIBS@:${PTHREAD_LIBS}:g' \
		-e 's:@COMPILER_RPATH_FLAG@:${COMPILER_RPATH_FLAG}:g' \
		-e 's:@QMAKE_RANLIB@:${QMAKE_RANLIB}:g' \
		${FILESDIR}/qmake.conf > ${WRKSRC}/qmake.conf
	for dir in ${WRKSRC}/mkspecs/*; do \
		${CP} ${WRKSRC}/qmake.conf $${dir}; \
		${RM} -f $${dir}/*.orig; \
	done