1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-21 00:25:50 +00:00

- Fix symlink pointing to non-existing manpage

- Bump PORTREVISION

PR:		ports/186540
Submitted by:	Tsurutani Naoki <turutani@scphys.kyoto-u.ac.jp>
Approved by:	thierry (mentor), Dan Nelson <dnelson@allantgroup.com> (maintainer)
MFH:		2014Q1
This commit is contained in:
Thomas Zander 2014-03-02 11:29:25 +00:00
parent e06d29ed1c
commit 16e0edc8e1
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=346756
2 changed files with 15 additions and 1 deletions

View File

@ -3,7 +3,7 @@
PORTNAME= sox
PORTVERSION= 14.4.1
PORTREVISION= 2
PORTREVISION= 3
CATEGORIES= audio
MASTER_SITES= SF

View File

@ -0,0 +1,14 @@
Work around a ports bug wrt symlinking manpages in different
categories, by copying the manpage instead.
--- Makefile.am.orig 2013-01-30 11:40:06.000000000 +0900
+++ Makefile.am 2014-02-08 01:46:11.000000000 +0900
@@ -118,7 +118,7 @@
install-data-hook:
cd $(DESTDIR)$(mandir)/man1 && $(RM) play.1 && $(LN_S) sox.1 play.1
cd $(DESTDIR)$(mandir)/man1 && $(RM) rec.1 && $(LN_S) sox.1 rec.1
- cd $(DESTDIR)$(mandir)/man7 && $(RM) soxeffect.7 && $(LN_S) ../man1/sox.1 soxeffect.7
+ cd $(DESTDIR)$(mandir)/man7 && $(RM) soxeffect.7 && cp ../man1/sox.1 soxeffect.7
uninstall-hook:
$(RM) $(DESTDIR)$(mandir)/man1/play.1