diff options
author | Thomas Zander <riggs@FreeBSD.org> | 2014-03-02 11:29:25 +0000 |
---|---|---|
committer | Thomas Zander <riggs@FreeBSD.org> | 2014-03-02 11:29:25 +0000 |
commit | 16e0edc8e198e961dd9ff8f28faeb9ecf35cf204 (patch) | |
tree | 8a5894f8a2e7973440e3cbd65278545577278e1e /audio/sox | |
parent | e06d29ed1cd5ad3a9339d37c0763f215806180e1 (diff) |
Notes
Diffstat (limited to 'audio/sox')
-rw-r--r-- | audio/sox/Makefile | 2 | ||||
-rw-r--r-- | audio/sox/files/patch-Makefile.am | 14 |
2 files changed, 15 insertions, 1 deletions
diff --git a/audio/sox/Makefile b/audio/sox/Makefile index a60bd406dbcb..f60e734af6b4 100644 --- a/audio/sox/Makefile +++ b/audio/sox/Makefile @@ -3,7 +3,7 @@ PORTNAME= sox PORTVERSION= 14.4.1 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= audio MASTER_SITES= SF diff --git a/audio/sox/files/patch-Makefile.am b/audio/sox/files/patch-Makefile.am new file mode 100644 index 000000000000..3f216d7a777b --- /dev/null +++ b/audio/sox/files/patch-Makefile.am @@ -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 |