Date: Thu, 11 Oct 2018 14:33:19 +0000 (UTC) From: Tobias Kortkamp <tobik@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r481831 - in head/multimedia/libdca: . files Message-ID: <201810111433.w9BEXJQD021921@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: tobik Date: Thu Oct 11 14:33:19 2018 New Revision: 481831 URL: https://svnweb.freebsd.org/changeset/ports/481831 Log: multimedia/libdca: Fix bad absolute symlinks PR: 224230 Reported by: wosch Added: head/multimedia/libdca/files/ head/multimedia/libdca/files/patch-src_Makefile.in (contents, props changed) Modified: head/multimedia/libdca/Makefile Modified: head/multimedia/libdca/Makefile ============================================================================== --- head/multimedia/libdca/Makefile Thu Oct 11 14:12:51 2018 (r481830) +++ head/multimedia/libdca/Makefile Thu Oct 11 14:33:19 2018 (r481831) @@ -3,6 +3,7 @@ PORTNAME= libdca PORTVERSION= 0.0.6 +PORTREVISION= 1 CATEGORIES= multimedia MASTER_SITES= http://download.videolan.org/pub/videolan/${PORTNAME}/${PORTVERSION}/ Added: head/multimedia/libdca/files/patch-src_Makefile.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/libdca/files/patch-src_Makefile.in Thu Oct 11 14:33:19 2018 (r481831) @@ -0,0 +1,11 @@ +--- src/Makefile.in.orig 2018-10-11 14:20:58 UTC ++++ src/Makefile.in +@@ -776,7 +776,7 @@ install-data-hook: + for a in dcadec extract_dca; do \ + oldname=`echo "$$a" | sed -e 's/ca/ts/' | sed '$(transform)'` ; \ + name=`echo "$$a" | sed '$(transform)'` ; \ +- ln -sf "$(man1dir)/$${name}.1" "$(DESTDIR)$(man1dir)/$${oldname}.1" ; \ ++ install -l rs "$(DESTDIR)$(man1dir)/$${name}.1" "$(DESTDIR)$(man1dir)/$${oldname}.1" ; \ + done + + uninstall-hook:
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201810111433.w9BEXJQD021921>