From owner-svn-ports-head@FreeBSD.ORG Sun Dec 1 12:57:01 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 322B2D06; Sun, 1 Dec 2013 12:57:01 +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 1E0FA1349; Sun, 1 Dec 2013 12:57:01 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rB1Cv0f6036925; Sun, 1 Dec 2013 12:57:00 GMT (envelope-from wg@svn.freebsd.org) Received: (from wg@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id rB1Cv0mv036924; Sun, 1 Dec 2013 12:57:00 GMT (envelope-from wg@svn.freebsd.org) Message-Id: <201312011257.rB1Cv0mv036924@svn.freebsd.org> From: William Grzybowski Date: Sun, 1 Dec 2013 12:57:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r335381 - head/audio/xmms-timidity X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.16 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 Dec 2013 12:57:01 -0000 Author: wg Date: Sun Dec 1 12:57:00 2013 New Revision: 335381 URL: http://svnweb.freebsd.org/changeset/ports/335381 Log: audio/xmms-timidity: swtich from CFLAGS to CXXFLAGS - Swtich from CFLAGS to CXXFLAGS [1] - Use new format for lib depends PR: ports/184072 [1] Submitted by: maintainer Modified: head/audio/xmms-timidity/Makefile Modified: head/audio/xmms-timidity/Makefile ============================================================================== --- head/audio/xmms-timidity/Makefile Sun Dec 1 12:53:46 2013 (r335380) +++ head/audio/xmms-timidity/Makefile Sun Dec 1 12:57:00 2013 (r335381) @@ -10,7 +10,7 @@ MASTER_SITES= http://www.shikadi.net/uti MAINTAINER= beyert@cs.ucr.edu COMMENT= XMMS input plugin to play midi files (via timidity) -LIB_DEPENDS= xmms.4:${PORTSDIR}/multimedia/xmms +LIB_DEPENDS= libxmms.so:${PORTSDIR}/multimedia/xmms RUN_DEPENDS= timidity:${PORTSDIR}/audio/timidity USE_LDCONFIG= ${PREFIX}/lib/xmms/Input @@ -18,12 +18,12 @@ NO_STAGE= yes USE_BZIP2= yes USE_GNOME= gtk12 -CFLAGS+= -I${LOCALBASE}/include `glib-config --cflags` -g -fPIC +CXXFLAGS+= -I${LOCALBASE}/include `glib-config --cflags` -g -fPIC FILES= xmms-timidity.cpp PLIST_FILES= lib/xmms/Input/libxmms-timidity.so do-build: - (cd ${WRKSRC} && ${CXX} ${CFLAGS} -c ${FILES} -o xmms-timidity.o) + (cd ${WRKSRC} && ${CXX} ${CXXFLAGS} -c ${FILES} -o xmms-timidity.o) .include