From owner-svn-ports-all@freebsd.org Tue Jul 31 06:38:01 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5BB5E104FE40; Tue, 31 Jul 2018 06:38:01 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 0F0277C2DF; Tue, 31 Jul 2018 06:38:01 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id E0DDE100E7; Tue, 31 Jul 2018 06:38:00 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w6V6c0iJ084447; Tue, 31 Jul 2018 06:38:00 GMT (envelope-from ehaupt@FreeBSD.org) Received: (from ehaupt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w6V6c0ON084446; Tue, 31 Jul 2018 06:38:00 GMT (envelope-from ehaupt@FreeBSD.org) Message-Id: <201807310638.w6V6c0ON084446@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ehaupt set sender to ehaupt@FreeBSD.org using -f From: Emanuel Haupt Date: Tue, 31 Jul 2018 06:38:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r475971 - head/audio/xmms-gbsplay X-SVN-Group: ports-head X-SVN-Commit-Author: ehaupt X-SVN-Commit-Paths: head/audio/xmms-gbsplay X-SVN-Commit-Revision: 475971 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 31 Jul 2018 06:38:01 -0000 Author: ehaupt Date: Tue Jul 31 06:38:00 2018 New Revision: 475971 URL: https://svnweb.freebsd.org/changeset/ports/475971 Log: - Remove gcc dependency - Pacify portlint PR: 230223 Submitted by: tobik Modified: head/audio/xmms-gbsplay/Makefile Modified: head/audio/xmms-gbsplay/Makefile ============================================================================== --- head/audio/xmms-gbsplay/Makefile Tue Jul 31 06:33:03 2018 (r475970) +++ head/audio/xmms-gbsplay/Makefile Tue Jul 31 06:38:00 2018 (r475971) @@ -3,7 +3,7 @@ PORTNAME= gbsplay PORTVERSION= 0.0.8 -PORTREVISION= 13 +PORTREVISION= 14 CATEGORIES= audio MASTER_SITES= LOCAL/ehaupt PKGNAMEPREFIX= xmms- @@ -16,10 +16,9 @@ LICENSE= GPLv2 BUILD_DEPENDS= xmms:multimedia/xmms RUN_DEPENDS= xmms:multimedia/xmms +USES= gmake USE_GNOME= glib12 -USE_GCC= any HAS_CONFIGURE= yes -USES= gmake USE_CSTD= gnu89 OPTIONS_DEFINE= NLS @@ -36,7 +35,8 @@ post-extract: post-patch: @${REINPLACE_CMD} -e \ - 's|`which xmms-config`||; \ + 's|char argc|int argc|; \ + s|`which xmms-config`||; \ s|\(xmms-config\)|${LOCALBASE}/bin/\1|g; \ s|`which glib-config`||; \ s|glib-config|${GLIB_CONFIG}|g; \