From owner-svn-ports-all@FreeBSD.ORG Mon Jan 13 17:13:12 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D53EEEFE; Mon, 13 Jan 2014 17:13:12 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A70FD1322; Mon, 13 Jan 2014 17:13:12 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0DHDCrw075448; Mon, 13 Jan 2014 17:13:12 GMT (envelope-from marino@svn.freebsd.org) Received: (from marino@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0DHDCL7075445; Mon, 13 Jan 2014 17:13:12 GMT (envelope-from marino@svn.freebsd.org) Message-Id: <201401131713.s0DHDCL7075445@svn.freebsd.org> From: John Marino Date: Mon, 13 Jan 2014 17:13:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r339610 - in head/audio/xmms-mp3cue: . files X-SVN-Group: ports-head 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.17 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: Mon, 13 Jan 2014 17:13:12 -0000 Author: marino Date: Mon Jan 13 17:13:11 2014 New Revision: 339610 URL: http://svnweb.freebsd.org/changeset/ports/339610 Log: audio/xmms-mp3cue: Unbreak and support stage This port had two major c++ issues. The first was missing header and using instead of . The second was the default setting of CC to "g++" which fails on F10+. Unbreak and stagify under the "Just fix it" blanket. Added: head/audio/xmms-mp3cue/files/patch-ID3tag.C (contents, props changed) head/audio/xmms-mp3cue/files/patch-Makefile.in (contents, props changed) Modified: head/audio/xmms-mp3cue/Makefile Modified: head/audio/xmms-mp3cue/Makefile ============================================================================== --- head/audio/xmms-mp3cue/Makefile Mon Jan 13 17:03:04 2014 (r339609) +++ head/audio/xmms-mp3cue/Makefile Mon Jan 13 17:13:11 2014 (r339610) @@ -15,12 +15,12 @@ LIB_DEPENDS= libxmms.so:${PORTSDIR}/mult GNU_CONFIGURE= yes USES= gmake -NO_STAGE= yes PLIST_SUB= PORTDOCS=${DISTNAME} CFLAGS_amd64= -fPIC CFLAGS_ia64= -fPIC +MAKE_ARGS+= CC="${CXX}" post-patch: @${REINPLACE_CMD} -e 's|malloc.h|stdlib.h|' ${WRKSRC}/*.c Added: head/audio/xmms-mp3cue/files/patch-ID3tag.C ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/xmms-mp3cue/files/patch-ID3tag.C Mon Jan 13 17:13:11 2014 (r339610) @@ -0,0 +1,12 @@ +--- ID3tag.C.orig 2003-10-22 08:23:00.000000000 +0000 ++++ ID3tag.C +@@ -27,7 +27,8 @@ Pune 411001 + INDIA + */ + +-#include ++#include ++#include + #include + using namespace std; + Added: head/audio/xmms-mp3cue/files/patch-Makefile.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/xmms-mp3cue/files/patch-Makefile.in Mon Jan 13 17:13:11 2014 (r339610) @@ -0,0 +1,15 @@ +--- Makefile.in.orig 2003-10-22 08:23:00.000000000 +0000 ++++ Makefile.in +@@ -33,9 +33,9 @@ distclean: clean + rm -rf config.* Makefile tmp *.tar.gz + + install: mp3cue +- $(mkinstalldirs) $(INSTALLPATH) $(PREFIX)/share/doc/$(PACKAGE)-$(VERSION) +- $(INSTALL) -s $(TARGET) $(INSTALLPATH) +- $(INSTALL) $(DOCS) $(PREFIX)/share/doc/$(PACKAGE)-$(VERSION) ++ $(mkinstalldirs) $(DESTDIR)$(INSTALLPATH) $(DESTDIR)$(PREFIX)/share/doc/$(PACKAGE)-$(VERSION) ++ $(INSTALL) -s $(TARGET) $(DESTDIR)$(INSTALLPATH) ++ $(INSTALL) $(DOCS) $(DESTDIR)$(PREFIX)/share/doc/$(PACKAGE)-$(VERSION) + + mp3cue: $(OBJS) + $(CC) -o $(TARGET) $(OBJS) $(LDFLAGS)