Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.netbsd.org", Issuer "Postmaster NetBSD.org" (verified OK)) by mollari.NetBSD.org (Postfix) with ESMTPS id 27D257A170 for ; Fri, 21 Oct 2016 01:47:03 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id CCE6685EAF; Fri, 21 Oct 2016 01:47:02 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 5C6F485E7E for ; Fri, 21 Oct 2016 01:47:02 +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 wVz8qIy2f4IF for ; Fri, 21 Oct 2016 01:47:02 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id B7C7C84C86 for ; Fri, 21 Oct 2016 01:47:01 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id B5478FBD2; Fri, 21 Oct 2016 01:47:01 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_147701442181440" MIME-Version: 1.0 Date: Fri, 21 Oct 2016 01:47:01 +0000 From: "Kamil Rytarowski" Subject: CVS commit: pkgsrc/sysutils/tkdesk To: pkgsrc-changes@NetBSD.org Reply-To: kamil@netbsd.org X-Mailer: log_accum Message-Id: <20161021014701.B5478FBD2@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk This is a multi-part message in MIME format. --_----------=_147701442181440 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: kamil Date: Fri Oct 21 01:47:01 UTC 2016 Modified Files: pkgsrc/sysutils/tkdesk: Makefile Log Message: Fix linking with ITCL bundled into TCL. Bump PKGREVISION. To generate a diff of this commit: cvs rdiff -u -r1.26 -r1.27 pkgsrc/sysutils/tkdesk/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_147701442181440 Content-Disposition: inline Content-Length: 1037 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/sysutils/tkdesk/Makefile diff -u pkgsrc/sysutils/tkdesk/Makefile:1.26 pkgsrc/sysutils/tkdesk/Makefile:1.27 --- pkgsrc/sysutils/tkdesk/Makefile:1.26 Sat Feb 22 07:53:47 2014 +++ pkgsrc/sysutils/tkdesk/Makefile Fri Oct 21 01:47:01 2016 @@ -1,8 +1,9 @@ -# $NetBSD: Makefile,v 1.26 2014/02/22 07:53:47 obache Exp $ +# $NetBSD: Makefile,v 1.27 2016/10/21 01:47:01 kamil Exp $ # DISTNAME= tkdesk-2.0 PKGNAME= ${DISTNAME}p2 +PKGREVISION= 1 CATEGORIES= sysutils MASTER_SITES= http://tkdesk.sourceforge.net/dist/ @@ -19,9 +20,9 @@ USE_TOOLS+= pax GNU_CONFIGURE= YES CONFIGURE_ARGS+=--with-tcl=${BUILDLINK_PREFIX.tcl}/lib \ --with-tk=${BUILDLINK_PREFIX.tk}/lib \ - --with-itcl=${BUILDLINK_PREFIX.tcl}/lib/itcl4.0.0 \ + --with-itcl=${BUILDLINK_PREFIX.tcl}/lib/itcl${ITCL_VERSION} \ --with-blt=${BUILDLINK_PREFIX.blt}/lib -MAKE_ENV+= LIB_RUNTIME_DIR=${BUILDLINK_PREFIX.tcl}/lib/itcl4.0.0 +MAKE_ENV+= LIB_RUNTIME_DIR=${BUILDLINK_PREFIX.tcl}/lib/itcl${ITCL_VERSION} CFLAGS+= -DUSE_INTERP_RESULT --_----------=_147701442181440--