Opened 15 years ago
Closed 15 years ago
#23691 closed update (fixed)
mkvtoolnix-3.2.0 maintainer update
Reported by: | ruud@… | Owned by: | ryandesign (Ryan Carsten Schmidt) |
---|---|---|---|
Priority: | Normal | Milestone: | |
Component: | ports | Version: | |
Keywords: | haspatch maintainer | Cc: | |
Port: | mkvtoolnix |
Description (last modified by ryandesign (Ryan Carsten Schmidt))
Updated Portfile from 3.0.0 to 3.2.0
Since 3.0.0 these dependencies have been bumped:
- Boost-1.34.0
- wxWidgets-2.8.0
Attachments (2)
Change History (9)
Changed 15 years ago by ruud@…
Attachment: | Portfile-3.2.0.diff added |
---|
comment:1 Changed 15 years ago by ruud@…
comment:2 Changed 15 years ago by ruud@…
Should have tested this before submitting :/. The makefile is broken.
comment:3 follow-ups: 4 6 Changed 15 years ago by ruud@…
This is the offending line (configure):
MANPAGES_TRANSLATED="`for lang in $MANPAGES_TRANSLATIONS; do \ echo -n '$(subst doc/man, doc/man/'$lang', $(MANPAGES)) '; done`"
Somehow the '-n' isn't processed but pasted in verbatim. Any suggestion how to fix this?
Changed 15 years ago by ruud@…
Attachment: | Portfile-mkvtoolnix-3.2.0.diff added |
---|
comment:4 Changed 15 years ago by ruud@…
Replying to ruud@…: The new patch fixes the problem (suggested by the developer). Not sure if it is the best solution though.
comment:5 Changed 15 years ago by jmroot (Joshua Root)
Keywords: | haspatch maintainer added |
---|---|
Version: | 1.8.2 |
comment:6 Changed 15 years ago by ryandesign (Ryan Carsten Schmidt)
Owner: | changed from macports-tickets@… to ryandesign@… |
---|---|
Status: | new → assigned |
Replying to ruud@…:
Somehow the '-n' isn't processed but pasted in verbatim. Any suggestion how to fix this?
This behavior changed ("broke") in Mac OS X 10.5 in order to be POSIX compliant. It is explained in Apple's developer documentation here. An easy fix is to change "echo" to "/bin/echo", or to ensure that you're running "bash" not "sh".
comment:7 Changed 15 years ago by ryandesign (Ryan Carsten Schmidt)
Description: | modified (diff) |
---|---|
Resolution: | → fixed |
Status: | assigned → closed |
Updated in r63998.
This patch closes/supersedes #23392