From owner-svn-ports-all@freebsd.org Sun Feb 7 12:55:09 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E5052AA1A82; Sun, 7 Feb 2016 12:55:09 +0000 (UTC) (envelope-from marino@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 mx1.freebsd.org (Postfix) with ESMTPS id 97A7D898; Sun, 7 Feb 2016 12:55:09 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u17Ct8fg063606; Sun, 7 Feb 2016 12:55:08 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u17Ct8GC063604; Sun, 7 Feb 2016 12:55:08 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201602071255.u17Ct8GC063604@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Sun, 7 Feb 2016 12:55:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r408391 - head/audio/cmp3/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.20 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: Sun, 07 Feb 2016 12:55:10 -0000 Author: marino Date: Sun Feb 7 12:55:08 2016 New Revision: 408391 URL: https://svnweb.freebsd.org/changeset/ports/408391 Log: audio/cmp3: respect LDFLAGS, bring in dports patch for DF. Added: head/audio/cmp3/files/patch-cmp3.h (contents, props changed) Modified: head/audio/cmp3/files/patch-Makefile.in Modified: head/audio/cmp3/files/patch-Makefile.in ============================================================================== --- head/audio/cmp3/files/patch-Makefile.in Sun Feb 7 12:52:19 2016 (r408390) +++ head/audio/cmp3/files/patch-Makefile.in Sun Feb 7 12:55:08 2016 (r408391) @@ -1,5 +1,5 @@ ---- Makefile.in.orig 2001-07-29 07:43:49.000000000 +0200 -+++ Makefile.in 2014-05-08 00:46:44.189113048 +0200 +--- Makefile.in.orig 2001-07-29 05:43:49 UTC ++++ Makefile.in @@ -5,19 +5,19 @@ # initial_directory is now set in the config file mpg123_location := "mpg123" @@ -23,7 +23,7 @@ ## Define this for bufferring or add other parameters to mpg123 and ogg123 mpg123_params := -b 320 -@@ -35,14 +35,14 @@ +@@ -35,14 +35,14 @@ ogg123_params := -d oss VERSION="2.0pre6" WKGDIR=cmp3-kenrevs @@ -41,7 +41,16 @@ CC= @CC@ OBJS= cmp3common.o cmp3fileio.o cmp3manager.o cmp3curses.o \ cmp3llist.o cmp3main.o cmp3listfiles.o cmp3playlist.o cmp3volume.o \ -@@ -103,7 +103,7 @@ +@@ -83,7 +83,7 @@ shmdump: cmp3shmdump.c + $(CC) $(CFLAGS) cmp3shmdump.c -o cmp3shmdump + + cmp3: lib $(OBJS) +- $(CC) $(CFLAGS) $(OBJS) nevlib/libnev.a $(LIBS) -o cmp3 ++ $(CC) $(CFLAGS) $(OBJS) nevlib/libnev.a $(LDFLAGS) $(LIBS) -o cmp3 + + lib: + @$(MAKE) -C nevlib lib +@@ -103,7 +103,7 @@ tar: distclean install: rnmp3 cmp3 install -c -s cmp3 $(install_directory)/cmp3 install -c -s rnmp3 $(install_directory)/rnmp3 Added: head/audio/cmp3/files/patch-cmp3.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/cmp3/files/patch-cmp3.h Sun Feb 7 12:55:08 2016 (r408391) @@ -0,0 +1,11 @@ +--- cmp3.h.orig 2001-07-01 06:38:08.000000000 +0200 ++++ cmp3.h +@@ -1,7 +1,7 @@ + #ifndef _CMP3_H + #define _CMP3_H + +-#if defined(__FreeBSD__) ++#if defined(__FreeBSD__) || defined(__DragonFly__) + #include + #include + #else