From owner-svn-ports-head@freebsd.org Sun Sep 2 19:19:14 2018 Return-Path: Delivered-To: svn-ports-head@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 4A578FF7729; Sun, 2 Sep 2018 19:19:14 +0000 (UTC) (envelope-from swills@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 EEE10840BF; Sun, 2 Sep 2018 19:19:13 +0000 (UTC) (envelope-from swills@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 CBF781D6A3; Sun, 2 Sep 2018 19:19:13 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w82JJDhD073168; Sun, 2 Sep 2018 19:19:13 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w82JJDJ0073165; Sun, 2 Sep 2018 19:19:13 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201809021919.w82JJDJ0073165@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Sun, 2 Sep 2018 19:19:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r478813 - in head/audio/zita-resampler: . files X-SVN-Group: ports-head X-SVN-Commit-Author: swills X-SVN-Commit-Paths: in head/audio/zita-resampler: . files X-SVN-Commit-Revision: 478813 X-SVN-Commit-Repository: ports 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.27 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, 02 Sep 2018 19:19:14 -0000 Author: swills Date: Sun Sep 2 19:19:12 2018 New Revision: 478813 URL: https://svnweb.freebsd.org/changeset/ports/478813 Log: audio/zita-resampler: use updated patch This removes the ldconfig and fixes building as a user PR: 231026 [1] PR: 231075 [2] Submitted by: Goran Mekić (maintainer) [1] Reported by: yuri [1] Reported by: jbeich [2] Modified: head/audio/zita-resampler/Makefile (contents, props changed) head/audio/zita-resampler/files/patch-Makefile (contents, props changed) head/audio/zita-resampler/pkg-plist (contents, props changed) Modified: head/audio/zita-resampler/Makefile ============================================================================== --- head/audio/zita-resampler/Makefile Sun Sep 2 18:59:10 2018 (r478812) +++ head/audio/zita-resampler/Makefile Sun Sep 2 19:19:12 2018 (r478813) @@ -3,6 +3,7 @@ PORTNAME= zita-resampler PORTVERSION= 1.6.2 +PORTREVISION= 1 CATEGORIES= audio MASTER_SITES= http://kokkinizita.linuxaudio.org/linuxaudio/downloads/ Modified: head/audio/zita-resampler/files/patch-Makefile ============================================================================== --- head/audio/zita-resampler/files/patch-Makefile Sun Sep 2 18:59:10 2018 (r478812) +++ head/audio/zita-resampler/files/patch-Makefile Sun Sep 2 19:19:12 2018 (r478813) @@ -38,14 +38,17 @@ $(ZITA-RESAMPLER_MIN): $(ZITA-RESAMPLER_O) $(CXX) -shared $(LDFLAGS) -Wl,-soname,$(ZITA-RESAMPLER_MAJ) -o $(ZITA-RESAMPLER_MIN) $(ZITA-RESAMPLER_O) $(ZITA-RESAMPLER_DEP) -@@ -56,8 +56,8 @@ $(ZITA-RESAMPLER_O): $(ZITA-RESAMPLER_H) +@@ -56,9 +56,10 @@ $(ZITA-RESAMPLER_O): $(ZITA-RESAMPLER_H) install: $(ZITA-RESAMPLER_MIN) install -d $(DESTDIR)$(INCDIR)/zita-resampler install -d $(DESTDIR)$(LIBDIR) - install -m 644 $(ZITA-RESAMPLER_H) $(DESTDIR)$(INCDIR)/zita-resampler - install -m 755 $(ZITA-RESAMPLER_MIN) $(DESTDIR)$(LIBDIR) +- ldconfig + ${BSD_INSTALL_DATA} -m 644 $(ZITA-RESAMPLER_H) $(DESTDIR)$(INCDIR)/zita-resampler + ${BSD_INSTALL_LIB} -m 755 $(ZITA-RESAMPLER_MIN) $(DESTDIR)$(LIBDIR) - ldconfig ++ # ldconfig ++ ln -sf $(ZITA-RESAMPLER_MIN) $(DESTDIR)$(LIBDIR)/$(ZITA-RESAMPLER_MAJ) ln -sf $(ZITA-RESAMPLER_MIN) $(DESTDIR)$(LIBDIR)/$(ZITA-RESAMPLER_SO) + uninstall: Modified: head/audio/zita-resampler/pkg-plist ============================================================================== --- head/audio/zita-resampler/pkg-plist Sun Sep 2 18:59:10 2018 (r478812) +++ head/audio/zita-resampler/pkg-plist Sun Sep 2 19:19:12 2018 (r478813) @@ -3,4 +3,5 @@ include/zita-resampler/resampler-table.h include/zita-resampler/resampler.h include/zita-resampler/vresampler.h lib/libzita-resampler.so +lib/libzita-resampler.so.1 lib/libzita-resampler.so.1.6.2