blob: d48ac11f6b867727637096f03a76f88d3b7cd70b (
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
|
# $NetBSD: Makefile,v 1.23 2006/01/05 10:08:58 ghen Exp $
#
.include "./Makefile.common"
PKGNAME= ${DISTNAME:S/lyx-/lyx-qt-/}
PKGREVISION= 2
COMMENT+= (QT version)
CONFLICTS+= lyx-xforms-[0-9]*
CONFIGURE_ARGS+= --with-extra-prefix=${BUILDLINK_PREFIX.qt3-libs} \
--with-qt-dir=${QTDIR:Q} \
--with-qt-includes=${BUILDLINK_PREFIX.qt3-libs}/qt3/include \
--with-qt-libraries=${BUILDLINK_PREFIX.qt3-libs}/qt3/lib \
--with-frontend=qt
.include "../../x11/qt3-tools/buildlink3.mk"
# XXX Please verify whether qt3-tools is really needed at run-time.
# If it is, then remove this comment. If it is not, then remove
# this comment and the line below, and bump PKGREVISION.
BUILDLINK_DEPMETHOD.qt3-tools= full
.include "../../mk/bsd.pkg.mk"
|