Received: by mail.netbsd.org (Postfix, from userid 605) id 537AE84D82; Wed, 24 Feb 2021 18:52:48 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 8BF5C84D7A for ; Wed, 24 Feb 2021 18:52:47 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id IuNRtj0GjKRC for ; Wed, 24 Feb 2021 18:52:47 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id DD90284D17 for ; Wed, 24 Feb 2021 18:52:46 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id D6D26FA95; Wed, 24 Feb 2021 18:52:46 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_161419276632200" MIME-Version: 1.0 Date: Wed, 24 Feb 2021 18:52:46 +0000 From: "Hauke Fath" Subject: CVS commit: pkgsrc/x11/x2go-client To: pkgsrc-changes@NetBSD.org Reply-To: hauke@netbsd.org X-Mailer: log_accum Message-Id: <20210224185246.D6D26FA95@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_161419276632200 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: hauke Date: Wed Feb 24 18:52:46 UTC 2021 Modified Files: pkgsrc/x11/x2go-client: Makefile Log Message: Do not build on macosx and linuxen, for now. Some of the patching may break one or the other, and upstream needs to review the Linux == Unix assumption which triggered the patching. Plus, upstream supplies binary packages for both. To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 pkgsrc/x11/x2go-client/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_161419276632200 Content-Disposition: inline Content-Length: 1012 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/x11/x2go-client/Makefile diff -u pkgsrc/x11/x2go-client/Makefile:1.1 pkgsrc/x11/x2go-client/Makefile:1.2 --- pkgsrc/x11/x2go-client/Makefile:1.1 Wed Feb 24 18:39:30 2021 +++ pkgsrc/x11/x2go-client/Makefile Wed Feb 24 18:52:46 2021 @@ -1,7 +1,8 @@ -# $NetBSD: Makefile,v 1.1 2021/02/24 18:39:30 hauke Exp $ +# $NetBSD: Makefile,v 1.2 2021/02/24 18:52:46 hauke Exp $ DISTNAME= x2goclient-${PKGVER} PKGVER= 4.1.2.2 +PKGREVISION= 1 CATEGORIES= x11 net MASTER_SITES= http://code.x2go.org/releases/source/x2goclient/ @@ -11,6 +12,8 @@ COMMENT= Qt client for the X2Go remote d LICENSE= gnu-gpl-v2 +NOT_FOR_PLATFORM+= Linux-*-* Darwin-*-* + USE_TOOLS+= pkg-config gmake USE_LIBTOOL= yes @@ -61,7 +64,6 @@ pre-configure: ${LN} -sf ${QTDIR}/bin/lrelease ${BUILDLINK_DIR}/bin/lrelease-qt4 post-install: - #@${MKDIR} ${DESTDIR}${PREFIX}/${DOCDIR} ${INSTALL_DATA} ${WRKSRC}/HOWTO.GPGCARD ${DESTDIR}${PREFIX}/${DOCDIR} .include "../../x11/qt4-tools/buildlink3.mk" --_----------=_161419276632200--