diff options
author | kwm <kwm@FreeBSD.org> | 2014-12-16 16:58:40 +0800 |
---|---|---|
committer | kwm <kwm@FreeBSD.org> | 2014-12-16 16:58:40 +0800 |
commit | 81e5506b8551cac32f58bc0a36d65ee9985b01f1 (patch) | |
tree | 25172243bef9d4c8a1664a03c109489b50cf2900 /audio/jack/files | |
parent | cf235160982614d11df4958da1e5069cc81fd81c (diff) | |
download | freebsd-ports-gnome-81e5506b8551cac32f58bc0a36d65ee9985b01f1.tar.gz freebsd-ports-gnome-81e5506b8551cac32f58bc0a36d65ee9985b01f1.tar.zst freebsd-ports-gnome-81e5506b8551cac32f58bc0a36d65ee9985b01f1.zip |
Allow jack to be upgraded when already installed. [1]
Move doxygen depend and docs out of DOCS option. [2]
PR: 195533 [1], 195573 [2]
Submitted by: Mikhail T. <mi@ALDAN.algebra.com> [1], amdmi3@ [2]
Diffstat (limited to 'audio/jack/files')
-rw-r--r-- | audio/jack/files/patch-configure | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/audio/jack/files/patch-configure b/audio/jack/files/patch-configure new file mode 100644 index 000000000000..7f5b5d20e68a --- /dev/null +++ b/audio/jack/files/patch-configure @@ -0,0 +1,51 @@ +--- configure 2014-01-22 15:23:47.000000000 -0500 ++++ configure 2014-11-30 13:05:39.000000000 -0500 +@@ -2608,48 +2608,4 @@ + + +- +- +- +-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking existing, conflicting JACK installs" >&5 +-$as_echo_n "checking existing, conflicting JACK installs... " >&6; } +-not_overwriting=0 +-installs= +-for dir in /usr/lib /usr/local/lib /opt/lib ; do +- if test -d $dir ; then +- if test $(find $dir/ -name 'libjack.so.*' 2>/dev/null | wc -l) -gt 0 ; then +- if echo $prefix/lib | grep -vs $dir >/dev/null 2>&1 ; then +- not_overwriting=$(expr $not_overwriting + 1) +- fi +- installs="$installs $dir" +- fi +- fi +-done +- +-if test $not_overwriting -gt 0 ; then +- echo +- echo +- echo "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!" +- echo "You appear to have at least one existing installation of JACK." +- echo +- echo "Complete or partial JACK installs exist in:$installs" +- echo +- echo "Installing this version will leave at least one of these" +- echo "existing installations installed and this will probably break" +- echo "JACK on your machine. " +- echo +- echo "Before building, you should first remove the existing JACK" +- echo "installation(s). " +- echo +- echo "Alternatively use ./configure --prefix=... to force overwriting" +- echo "the existing install." +- echo +- echo "WARNING: ON ANY DEBIAN-DERIVED DISTRIBUTION (Debian, Ubuntu etc)" +- echo "CHANGING THE INSTALLATION PREFIX WILL NOT PRODUCE A WORKING JACK" +- echo "INSTALL. Please contact the distribution packager for JACK and" +- echo "ask them to fix their packaging." +- echo "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!" +- exit 1 +-fi +- + ac_aux_dir= + for ac_dir in config "$srcdir"/config; do |