From owner-cvs-ports@FreeBSD.ORG Sat Nov 27 19:50:13 2010 Return-Path: Delivered-To: cvs-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 218CF1065674 for ; Sat, 27 Nov 2010 19:50:13 +0000 (UTC) (envelope-from makc@freebsd.org) Received: from mail.issp.ac.ru (mail.issp.ac.ru [77.236.34.3]) by mx1.freebsd.org (Postfix) with ESMTP id 8E55E8FC0C for ; Sat, 27 Nov 2010 19:50:12 +0000 (UTC) Received: from [62.63.85.82] [62.63.85.82:52289] (HELO/EHLO luna.dio.ru, authenticated with PLAIN) by mail.issp.ac.ru with ESMTP/inet id oARJnPpV068950 (using TLSv1/SSLv3, with cipher DHE-RSA-AES256-SHA (256 bits), verified NO) Sat, 27 Nov 2010 22:49:26 +0300 (MSK) From: Max Brazhnikov To: Dirk Meyer Date: Sat, 27 Nov 2010 22:48:26 +0300 User-Agent: KMail/1.13.5 (FreeBSD/8.1-STABLE; KDE/4.5.3; amd64; ; ) References: <201011271226.oARCQu56024184@repoman.freebsd.org> <201011271656.20697.makc@freebsd.org> In-Reply-To: MIME-Version: 1.0 Content-Type: Text/Plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Message-Id: <201011272248.27084.makc@freebsd.org> X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-3.0 (mail.issp.ac.ru [77.236.34.3]); Sat, 27 Nov 2010 22:49:26 +0300 (MSK) Cc: cvs-ports@freebsd.org Subject: Re: cvs commit: ports/net-im/licq-qt-gui Makefile pkg-descr pkg-plist ports/net-im/licq-qt-gui/files patch-CMakeLists.txt patch-configure X-BeenThere: cvs-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 27 Nov 2010 19:50:13 -0000 On Sat, 27 Nov 2010 15:42:26 +0100, Dirk Meyer wrote: > Max Brazhnikov schrieb:, > > Pelase dont send HTML emails. Sorry, it wasn't intentional. Below is my previous mail. .if defined(WITH_KDE) KDE_SUFFIX= -kde -USE_KDELIBS_VER=3 -CONFIGURE_ARGS+=--with-kde -CONFIGURE_ENV+= KDEDIR="${LOCALBASE}" +USE_KDELIBS_VER=4 I think you want 'USE_KDE4= kdelibs automoc4' here. Since USE_KDE4 does not imply Qt4, you need to add the following two lines for any KDE4 port [1]: USE_QT_VER= 4 QT_COMPONENTS= qmake_build moc_build rcc_build uic_build -USE_QT_VER= 3 -PLIST_SUB+= GUI_NAME=qt +USE_QT_VER= 4 +QT_COMPONENTS= qmake_build moc_build rcc_build uic_build xml gui linguist linguist component is usually used for creating l10n files and then it should be build only dependency: linguist_build Max [1] http://www.freebsd.org/doc/en_US.ISO8859-1/books/porters-handbook/using- kde.html