Bug 161568 - [PATCH] audio/libsamplerate: samplerate.h has comma at end of enumerator list
Summary: [PATCH] audio/libsamplerate: samplerate.h has comma at end of enumerator list
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: freebsd-multimedia (Nobody)
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2011-10-14 03:20 UTC by takefu
Modified: 2013-11-23 22:50 UTC (History)
1 user (show)

See Also:


Attachments
libsamplerate.patch (1.38 KB, patch)
2011-10-14 03:20 UTC, takefu
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description takefu 2011-10-14 03:20:06 UTC
  Fix samplerate.h has comma at end of enumerator list
  Add test script
  Add MASTER_SITE_LOCAL
Comment 1 Edwin Groothuis freebsd_committer freebsd_triage 2011-10-14 03:20:17 UTC
Responsible Changed
From-To: freebsd-ports-bugs->freebsd-multimedia

Over to maintainer (via the GNATS Auto Assign Tool)
Comment 2 Koop Mast freebsd_committer freebsd_triage 2013-11-23 22:44:04 UTC
State Changed
From-To: open->closed

Committed the patch, thanks
Comment 3 dfilter service freebsd_committer freebsd_triage 2013-11-23 22:44:07 UTC
Author: kwm
Date: Sat Nov 23 22:44:00 2013
New Revision: 334696
URL: http://svnweb.freebsd.org/changeset/ports/334696

Log:
  Remove ',' at the end of the last entry of emumerator list.
  While here Stageify port, update LIB_DEPEND syntax and depend on package
  name instead of looking for a file.
  
  PR:		ports/161568
  Submitted by:	Takefu <takefu@airport.fm>

Added:
  head/audio/libsamplerate/files/
  head/audio/libsamplerate/files/patch-src_samplerate.h   (contents, props changed)
Modified:
  head/audio/libsamplerate/Makefile

Modified: head/audio/libsamplerate/Makefile
==============================================================================
--- head/audio/libsamplerate/Makefile	Sat Nov 23 21:25:56 2013	(r334695)
+++ head/audio/libsamplerate/Makefile	Sat Nov 23 22:44:00 2013	(r334696)
@@ -3,7 +3,7 @@
 
 PORTNAME=	libsamplerate
 PORTVERSION=	0.1.8
-PORTREVISION=	3
+PORTREVISION=	4
 CATEGORIES=	audio
 MASTER_SITES=	http://www.mega-nerd.com/SRC/
 
@@ -14,7 +14,6 @@ LICENSE=	GPLv2
 LICENSE_FILE=	${WRKSRC}/COPYING
 
 USES=	pathfix pkgconfig
-NO_STAGE=	yes
 USE_AUTOTOOLS=	libtool
 USE_LDCONFIG=	yes
 
@@ -38,9 +37,9 @@ CONFIGURE_ARGS+=	--disable-fftw
 .endif
 
 .if ${PORT_OPTIONS:MEXAMPLES}
-LIB_DEPENDS+=	sndfile.1:${PORTSDIR}/audio/libsndfile
+LIB_DEPENDS+=	libsndfile.so:${PORTSDIR}/audio/libsndfile
 .elif defined(MAINTAINER_MODE) || defined(PACKAGE_BUILDING)
-BUILD_DEPENDS +=	${LOCALBASE}/lib/libsndfile.so:${PORTSDIR}/audio/libsndfile
+BUILD_DEPENDS +=	libsndfile>=0:${PORTSDIR}/audio/libsndfile
 .else
 CONFIGURE_ARGS+=	--disable-sndfile
 .endif
@@ -59,4 +58,7 @@ check regression-test test: build
 	check
 .endif
 
+post-install:
+	@${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libsamplerate.so.1
+
 .include <bsd.port.mk>

Added: head/audio/libsamplerate/files/patch-src_samplerate.h
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/audio/libsamplerate/files/patch-src_samplerate.h	Sat Nov 23 22:44:00 2013	(r334696)
@@ -0,0 +1,11 @@
+--- src/samplerate.h.orig	2013-11-23 23:36:11.000000000 +0100
++++ src/samplerate.h	2013-11-23 23:36:25.000000000 +0100
+@@ -174,7 +174,7 @@
+ 	SRC_SINC_MEDIUM_QUALITY		= 1,
+ 	SRC_SINC_FASTEST			= 2,
+ 	SRC_ZERO_ORDER_HOLD			= 3,
+-	SRC_LINEAR					= 4,
++	SRC_LINEAR					= 4
+ } ;
+ 
+ /*
_______________________________________________
svn-ports-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-ports-all
To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"