Authentication-Results: name.execsw.org; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=PIMihyJJ; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=El6R8xBm Received: by mail.netbsd.org (Postfix, from userid 605) id 54F6D84E85; Fri, 12 Apr 2024 19:42:07 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1712950927; bh=a35/1zEzUXkn39pPedfrQoUsVhLNR6UjpXCYgR0mtis=; h=Date:From:Subject:To:Reply-To:List-Id:List-Unsubscribe; b=PIMihyJJopIOzOJAOAO5WSHaanSZE90U3dXr58sUm/lAuZZclJgwdi8Bd3+5B3vv+ KhQefelPXsjnzlcAMAmwYzdnN/PVN2Nf4KW3Kg6IixnehyH6vg1fhjjgseeCqg4cLc 3T0FHqtX5/2FNq6Ng0OAxgYuFqVX14Zd362L0peI= Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 4815284D7A for ; Fri, 12 Apr 2024 19:42:06 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Authentication-Results: mail.netbsd.org (amavisd-new); dkim=pass (1024-bit key) header.d=netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id V19mNagMrMkv for ; Fri, 12 Apr 2024 19:42:05 +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 8355984CC8 for ; Fri, 12 Apr 2024 19:42:05 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1712950925; bh=a35/1zEzUXkn39pPedfrQoUsVhLNR6UjpXCYgR0mtis=; h=Date:From:Subject:To:Reply-To; b=El6R8xBmyRd4+Z289bCI7VNk2pBht/YsX5spfG8n5NLiFRYSu4hSHJPICVVxLJ+ct uHb7J6MDv3KhHvx3rFVcMz52PxM7J9z6IazrLb25MEEPXmiA5WxqpVccEybgJ3a9EL PR6TqhbeRS8FCxt/cGTCWGzp8MoNxQ1tI1JwBnRg= Received: by cvs.NetBSD.org (Postfix, from userid 500) id 7FE6EFA2C; Fri, 12 Apr 2024 19:42:05 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_171295092521930" MIME-Version: 1.0 Date: Fri, 12 Apr 2024 19:42:05 +0000 From: "Taylor R Campbell" Subject: CVS commit: pkgsrc/multimedia/gmplayer To: pkgsrc-changes@NetBSD.org Reply-To: riastradh@netbsd.org X-Mailer: log_accum Message-Id: <20240412194205.7FE6EFA2C@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_171295092521930 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: riastradh Date: Fri Apr 12 19:42:05 UTC 2024 Modified Files: pkgsrc/multimedia/gmplayer: Makefile Log Message: multimedia/gmplayer: Make this cross-compile. Skip the broken X11 detection in configure by passing `--enable-x11'. Since this is a gtk2+ front end to mplayer, we require X11 anyway. To generate a diff of this commit: cvs rdiff -u -r1.167 -r1.168 pkgsrc/multimedia/gmplayer/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_171295092521930 Content-Disposition: inline Content-Length: 879 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/multimedia/gmplayer/Makefile diff -u pkgsrc/multimedia/gmplayer/Makefile:1.167 pkgsrc/multimedia/gmplayer/Makefile:1.168 --- pkgsrc/multimedia/gmplayer/Makefile:1.167 Fri Apr 12 19:32:56 2024 +++ pkgsrc/multimedia/gmplayer/Makefile Fri Apr 12 19:42:05 2024 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.167 2024/04/12 19:32:56 riastradh Exp $ +# $NetBSD: Makefile,v 1.168 2024/04/12 19:42:05 riastradh Exp $ # # NOTE: if you are updating both mplayer and gmplayer, you must ensure # that *both* distinfo files contain the correct, up-to-date files and @@ -104,7 +104,7 @@ DISTINFO_FILE= ${.CURDIR}/distinfo DIST_SUBDIR= mplayer USE_TOOLS+= pax pkg-config -CONFIGURE_ARGS+= --enable-gui --disable-mencoder \ +CONFIGURE_ARGS+= --enable-gui --enable-x11 --disable-mencoder \ --confdir=${PREFIX}/share/mplayer CONFIGURE_ARGS+= --enable-xvmc --_----------=_171295092521930--