Author: coolo Date: Fri Nov 30 15:01:53 2007 New Revision: 42559
URL: http://svn.opensuse.org/viewcvs/yast?rev=42559&view=rev Log: remove automake support now that the spec file should be fixed - autodocs may be problematic, I don't know
Removed: branches/tmp/coolo/qt4-port/acinclude.m4 branches/tmp/coolo/qt4-port/configure.in.in branches/tmp/coolo/qt4-port/doc/Makefile.am branches/tmp/coolo/qt4-port/doc/autodocs/Makefile.am branches/tmp/coolo/qt4-port/fonts/Makefile.am branches/tmp/coolo/qt4-port/src/Makefile.am branches/tmp/coolo/qt4-port/src/pkg/Makefile.am branches/tmp/coolo/qt4-port/src/pkg/icons/Makefile.am branches/tmp/coolo/qt4-port/testsuite/Makefile.am Modified: branches/tmp/coolo/qt4-port/Makefile.cvs branches/tmp/coolo/qt4-port/src/CMakeLists.txt
Modified: branches/tmp/coolo/qt4-port/Makefile.cvs URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/coolo/qt4-port/Makefile.cv... ============================================================================== --- branches/tmp/coolo/qt4-port/Makefile.cvs (original) +++ branches/tmp/coolo/qt4-port/Makefile.cvs Fri Nov 30 15:01:53 2007 @@ -6,18 +6,15 @@
PREFIX = /usr
-configure: all - ./configure --prefix=$(PREFIX) --libdir=$(PREFIX)/$(LIB) - -all: - y2tool y2autoconf - y2tool y2automake - autoreconf --force --install +configure: + mkdir build ;\ + cd build ;\ + cmake -DCMAKE_INSTALL_PREFIX=$(PREFIX) -DLIB=$(LIB) ..
install: configure - make - make install + cd build; \ + make && make install
-reconf: all - ./config.status --recheck - ./config.status +reconf: + cd build ;\ + cmake rebuild_cache
Modified: branches/tmp/coolo/qt4-port/src/CMakeLists.txt URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/coolo/qt4-port/src/CMakeLi... ============================================================================== --- branches/tmp/coolo/qt4-port/src/CMakeLists.txt (original) +++ branches/tmp/coolo/qt4-port/src/CMakeLists.txt Fri Nov 30 15:01:53 2007 @@ -2,7 +2,6 @@
ADD_DEFINITIONS( -DY2LOG=\"QT4\" ${QT_DEFINITIONS} -#-DQT3_SUPPORT -DQT_LOCALEDIR=\"${CMAKE_INSTALL_PREFIX}/share/qt4/translations\" -DICONDIR=\"${Y2QT_ICONDIR}\" -DLOCALEDIR=\"${Y2QT_LOCALEDIR}\"
yast-commit@lists.opensuse.org