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 /astro/orsa/files/patch-configure.in | |
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
Notes
Notes:
svn path=/head/; revision=323748
Diffstat (limited to 'astro/orsa/files/patch-configure.in')
-rw-r--r-- | astro/orsa/files/patch-configure.in | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/astro/orsa/files/patch-configure.in b/astro/orsa/files/patch-configure.in deleted file mode 100644 index 393c79a42e4f..000000000000 --- a/astro/orsa/files/patch-configure.in +++ /dev/null @@ -1,46 +0,0 @@ ---- configure.in.orig 2005-01-12 06:27:38.000000000 +0900 -+++ configure.in 2009-04-02 14:21:59.000000000 +0900 -@@ -27,6 +27,7 @@ - AC_PROG_INSTALL - AC_PROG_MAKE_SET - AC_PROG_AWK -+PKG_PROG_PKG_CONFIG - - dnl select the language for the test programs - AC_LANG(C++) -@@ -35,10 +36,24 @@ - AM_PATH_GSL([1.5]) - - dnl checks for the cln library --AC_PATH_CLN([1.1.6], ac_cv_have_cln=yes, ac_cv_have_cln=no) -+PKG_CHECK_MODULES(CLN, cln >= 1.1.6, ac_cv_have_cln=yes, ac_cv_have_cln=no) -+ -+if test "x$ac_cv_have_cln" = "xyes"; then -+ CLN_CPPFLAGS=`pkg-config --cflags cln` -+ CLN_LIBS=`pkg-config --libs cln` -+ AC_SUBST(CLN_CPPFLAGS) -+ AC_SUBST(CLN_LIBS) -+fi - - dnl checks for the ginac library --AM_PATH_GINAC([1.2.0], ac_cv_have_ginac=yes, ac_cv_have_ginac=no) -+PKG_CHECK_MODULES(GiNaC, ginac >= 1.2.0, ac_cv_have_ginac=yes, ac_cv_have_ginac=no) -+ -+if test "x$ac_cv_have_ginac" = "xyes"; then -+ GINACLIB_CPPFLAGS=`pkg-config --cflags ginac` -+ GINACLIB_LIBS=`pkg-config --libs ginac` -+ AC_SUBST(GINACLIB_CPPFLAGS) -+ AC_SUBST(GINACLIB_LIBS) -+fi - - dnl QT libs - AC_PATH_QT -@@ -133,7 +148,7 @@ - - dnl some compiler options - if test "$GXX" = "yes"; then -- CXXFLAGS="-g -Wall -W -pipe -ftemplate-depth-64 -O3 -fno-exceptions -funroll-loops -fstrict-aliasing -fno-gcse $GSL_CFLAGS $CLN_CPPFLAGS $GINACLIB_CPPFLAGS" -+ CXXFLAGS="$CXXFLAGS -Wall -W -pipe -ftemplate-depth-64 -fno-exceptions $GSL_CFLAGS $CLN_CPPFLAGS $GINACLIB_CPPFLAGS" - fi - - AC_CONFIG_FILES([Makefile]) |