diff options
author | Rene Ladan <rene@FreeBSD.org> | 2013-07-26 19:19:20 +0000 |
---|---|---|
committer | Rene Ladan <rene@FreeBSD.org> | 2013-07-26 19:19:20 +0000 |
commit | 66fee909266a1dedf3dfc1f03bb0841380d78805 (patch) | |
tree | 4c98d494bc4532b5dd5b19f4e47bcb3babf104c2 /comms/qtel/files/patch-create_config.sh | |
parent | Remove support for Qt3/kde in preparation for full Qt3/kde3 removal (diff) |
KDE3 and QT3 expired on 2013-07-01, remove these ports.
Unfortunately, this also affects some ports using QT3 as a GUI toolkit.
Changes to infrastructure files:
- bsd.kde.mk : obsolete, remove
- bsd.qt.mk : note that a CONFLICTS_BUILD line can probably go after a while
- CHANGES : document the removals from bsd.port.mk
- KNOBS : remove KDE and QT (KDE4 and QT4 should be used instead)
- MOVED : add the removed ports
PR: ports/180745
Submitted by: rene
Approved by: portmgr (bapt)
Exp-run by: bapt
Diffstat (limited to 'comms/qtel/files/patch-create_config.sh')
-rw-r--r-- | comms/qtel/files/patch-create_config.sh | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/comms/qtel/files/patch-create_config.sh b/comms/qtel/files/patch-create_config.sh deleted file mode 100644 index d26188963d96..000000000000 --- a/comms/qtel/files/patch-create_config.sh +++ /dev/null @@ -1,31 +0,0 @@ ---- create_config.sh.orig 2009-04-19 14:10:53.000000000 -0700 -+++ create_config.sh 2012-06-24 10:20:20.000000000 -0700 -@@ -121,12 +121,15 @@ - # Checking for tcl development library - info "--- Checking for TCL development library..." - tclConfig=$(ls /usr/lib/tclConfig.sh /usr/lib/tcl8.*/tclConfig.sh \ -- /usr/lib64/tclConfig.sh /usr/lib64/tcl8.*/tclConfig.sh \ -+ /usr/lib64/tclConfig.sh /usr/lib64/tcl8.*/tclConfig.sh /usr/local/lib/tcl8.*/tclConfig.sh \ - 2>/dev/null | head -1) - if [ -n "$tclConfig" -a -r "$tclConfig" ]; then - . $tclConfig - info "${TCL_VERSION}\n" -- output "TCL_LIBS=-ltcl${TCL_VERSION}" -+ TCL_SVER=`echo ${TCL_VERSION} | tr -d .` -+ output "TCL_LIBPATH=-L/usr/local/lib" -+ output "TCL_LIBS=-ltcl${TCL_SVER}" -+ output "TCL_INCPATH=-I/usr/local/include/tcl${TCL_VERSION}" - else - info "no (required)\n" - exit_error -@@ -137,8 +140,8 @@ - if which pkg-config > /dev/null 2>&1; then - if pkg-config speex; then - ver=$(pkg-config speex --modversion) -- ver_major=$(echo $ver | sed -r 's/^([0-9]+)\..*$/\1/') -- ver_minor=$(echo $ver | sed -r 's/^([0-9]+)\.([0-9]+).*$/\2/') -+ ver_major=$(echo $ver | sed -E 's/^([0-9]+)\..*$/\1/') -+ ver_minor=$(echo $ver | sed -E 's/^([0-9]+)\.([0-9]+).*$/\2/') - info "$ver\n" - output "SPEEX_LIBPATH=$(pkg-config speex --libs-only-L)" - output "SPEEX_LIBS=$(pkg-config speex --libs-only-l)" |