Received: by mail.netbsd.org (Postfix, from userid 605) id B440A84DA6; Tue, 29 Oct 2019 17:45:25 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 3B2DF84D9C for ; Tue, 29 Oct 2019 17:45:25 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id EaURnPccMqv1 for ; Tue, 29 Oct 2019 17:45:24 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id A971E84D5D for ; Tue, 29 Oct 2019 17:45:24 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id A35EAFA8E; Tue, 29 Oct 2019 17:45:24 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_157237112425980" MIME-Version: 1.0 Date: Tue, 29 Oct 2019 17:45:24 +0000 From: "Kamil Rytarowski" Subject: CVS commit: pkgsrc/x11/qt5-qscintilla To: pkgsrc-changes@NetBSD.org Reply-To: kamil@netbsd.org X-Mailer: log_accum Message-Id: <20191029174524.A35EAFA8E@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_157237112425980 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: kamil Date: Tue Oct 29 17:45:24 UTC 2019 Modified Files: pkgsrc/x11/qt5-qscintilla: Makefile Added Files: pkgsrc/x11/qt5-qscintilla: Makefile.common Log Message: qt5-qscintilla: Split Makefile into Makefile and Makefile.common Makefile.common will be used by the python bindings. To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 pkgsrc/x11/qt5-qscintilla/Makefile cvs rdiff -u -r0 -r1.1 pkgsrc/x11/qt5-qscintilla/Makefile.common Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_157237112425980 Content-Disposition: inline Content-Length: 2036 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/x11/qt5-qscintilla/Makefile diff -u pkgsrc/x11/qt5-qscintilla/Makefile:1.1 pkgsrc/x11/qt5-qscintilla/Makefile:1.2 --- pkgsrc/x11/qt5-qscintilla/Makefile:1.1 Sat Oct 26 13:19:17 2019 +++ pkgsrc/x11/qt5-qscintilla/Makefile Tue Oct 29 17:45:24 2019 @@ -1,15 +1,9 @@ -# $NetBSD: Makefile,v 1.1 2019/10/26 13:19:17 kamil Exp $ -# +# $NetBSD: Makefile,v 1.2 2019/10/29 17:45:24 kamil Exp $ -DISTNAME= QScintilla_gpl-2.11.2 -PKGNAME= qt5-${DISTNAME:tl:S/_gpl-/-/} -CATEGORIES= x11 -MASTER_SITES= https://www.riverbankcomputing.com/static/Downloads/QScintilla/${PKGVERSION_NOREV}/ +.include "../../x11/qt5-qscintilla/Makefile.common" -MAINTAINER= pkgsrc-users@NetBSD.org -HOMEPAGE= http://www.riverbankcomputing.co.uk/software/qscintilla/intro +PKGNAME= qt5-${DISTNAME:tl:S/_gpl-/-/} COMMENT= Scintilla C++ editor class for Qt5 -LICENSE= gnu-gpl-v3 WRKSRC= ${WRKDIR}/${DISTNAME}/Qt4Qt5 @@ -23,5 +17,4 @@ INSTALL_ENV+= INSTALL_ROOT=${DESTDIR} do-configure: (cd ${WRKSRC} && ${QTDIR}/bin/qmake -o Makefile qscintilla.pro) -.include "../../x11/qt5-qtbase/buildlink3.mk" .include "../../mk/bsd.pkg.mk" Added files: Index: pkgsrc/x11/qt5-qscintilla/Makefile.common diff -u /dev/null pkgsrc/x11/qt5-qscintilla/Makefile.common:1.1 --- /dev/null Tue Oct 29 17:45:24 2019 +++ pkgsrc/x11/qt5-qscintilla/Makefile.common Tue Oct 29 17:45:24 2019 @@ -0,0 +1,20 @@ +# $NetBSD: Makefile.common,v 1.1 2019/10/29 17:45:24 kamil Exp $ +# +# used by x11/qt5-qscintilla/Makefile +# used by x11/py-qt5-qscintilla/Makefile + +DISTNAME= QScintilla_gpl-2.11.2 +CATEGORIES= x11 +MASTER_SITES= https://www.riverbankcomputing.com/static/Downloads/QScintilla/${PKGVERSION_NOREV}/ + +MAINTAINER= pkgsrc-users@NetBSD.org +HOMEPAGE= http://www.riverbankcomputing.co.uk/software/qscintilla/intro +LICENSE= gnu-gpl-v3 + +USE_LANGUAGES= c++ +USE_LIBTOOL= yes + +DISTINFO_FILE= ${.CURDIR}/../../x11/qt5-qscintilla/distinfo +#PATCHDIR= ${.CURDIR}/../../x11/qt5-qscintilla/patches + +.include "../../x11/qt5-qtbase/buildlink3.mk" --_----------=_157237112425980--