[Lunar-commits] <moonbase> qt4: version bump to 4.3.4. move it to kde4/base dir.
Florin Braescu
florin at lunar-linux.org
Mon Feb 25 13:49:30 CET 2008
commit 63e5ccac304351ec274b175cd5b5aefb6d138c48
Author: Florin Braescu <florin at lunar-linux.org>
Date: Mon Feb 25 14:49:30 2008 +0200
qt4: version bump to 4.3.4. move it to kde4/base dir.
Bugfixes release.
---
kde4/base/qt4/BUILD | 42 ++++++++++++++++++++++++++++++++++++++++++
kde4/base/qt4/CONFIGURE | 2 ++
kde4/base/qt4/DEPENDS | 19 +++++++++++++++++++
kde4/base/qt4/DETAILS | 28 ++++++++++++++++++++++++++++
kde4/base/qt4/POST_INSTALL | 2 ++
libs/libffi/DETAILS | 2 +-
libs/qt4/BUILD | 42 ------------------------------------------
libs/qt4/CONFIGURE | 2 --
libs/qt4/DEPENDS | 19 -------------------
libs/qt4/DETAILS | 28 ----------------------------
libs/qt4/POST_INSTALL | 2 --
11 files changed, 94 insertions(+), 94 deletions(-)
diff --git a/kde4/base/qt4/BUILD b/kde4/base/qt4/BUILD
new file mode 100644
index 0000000..386ed41
--- /dev/null
+++ b/kde4/base/qt4/BUILD
@@ -0,0 +1,42 @@
+(
+
+ export QTDIR=$SOURCE_DIRECTORY
+ export PATH=$QTDIR/bin:$PATH
+ export LD_LIBRARY_PATH=$QTDIR/lib
+
+ sedit "s/-O2/$CXXFLAGS/" mkspecs/linux-g++/qmake.conf &&
+
+ case $QT3_SUPPORT in
+ y|Y) OPTS="$OPTS -qt3support" ;;
+ n|N) OPTS="$OPTS -no-qt3support" ;;
+ esac &&
+
+ echo "yes" | ./configure \
+ -prefix ${MODULE_PREFIX} \
+ -release \
+ -fast \
+ -shared \
+ -qt-gif \
+ -system-libpng \
+ -system-libjpeg \
+ -system-libmng \
+ -system-zlib \
+ -no-exceptions \
+ -nomake examples \
+ -nomake demos \
+ $OPTS &&
+
+ default_make &&
+
+ if ! grep -q "${MODULE_PREFIX}/lib" /etc/ld.so.conf; then
+ echo "${MODULE_PREFIX}/lib" >> /etc/ld.so.conf
+ fi &&
+
+ echo "export QTDIR=\"${MODULE_PREFIX}\"" >> $SOURCE_DIRECTORY/qt4.rc &&
+ echo export PATH=\"'${QTDIR}'/bin:'${PATH}'\" >> $SOURCE_DIRECTORY/qt4.rc &&
+ echo export PKG_CONFIG_PATH=\"'${QTDIR}'/lib/pkgconfig:'${PKG_CONFIG_PATH}'\" \
+ >> $SOURCE_DIRECTORY/qt4.rc &&
+
+ install -m644 $SOURCE_DIRECTORY/qt4.rc /etc/profile.d/
+
+) > $C_FIFO 2>&1
diff --git a/kde4/base/qt4/CONFIGURE b/kde4/base/qt4/CONFIGURE
new file mode 100644
index 0000000..8246341
--- /dev/null
+++ b/kde4/base/qt4/CONFIGURE
@@ -0,0 +1,2 @@
+mquery QT3_SUPPORT "Compile Qt3 support library?" y
+
diff --git a/kde4/base/qt4/DEPENDS b/kde4/base/qt4/DEPENDS
new file mode 100644
index 0000000..d3a3cec
--- /dev/null
+++ b/kde4/base/qt4/DEPENDS
@@ -0,0 +1,19 @@
+depends libungif
+depends libmng
+depends %X
+
+optional_depends "mysql" \
+ "-plugin-sql-mysql -I/usr/include/mysql -L/usr/lib/mysql" \
+ "-no-sql-mysql" \
+ "for mysql database support"
+
+optional_depends "sqlite" \
+ "-plugin-sql-sqlite -I/usr/include -L/usr/lib" \
+ "-no-sql-sqlite" \
+ "for sqlite database support"
+
+optional_depends "postgresql" \
+ "-plugin-sql-psql -I/usr/include/postgresql/server \
+ -L/usr/lib/postgresql" \
+ "-no-sql-psql" \
+ "for postgresql database support"
diff --git a/kde4/base/qt4/DETAILS b/kde4/base/qt4/DETAILS
new file mode 100644
index 0000000..54b7f59
--- /dev/null
+++ b/kde4/base/qt4/DETAILS
@@ -0,0 +1,28 @@
+ MODULE=qt4
+ VERSION=4.3.4
+ SOURCE=qt-x11-opensource-src-${VERSION}.tar.gz
+SOURCE_DIRECTORY=$BUILD_DIRECTORY/qt-x11-opensource-src-${VERSION}
+ SOURCE_URL[0]=ftp://ftp.trolltech.com/qt/source
+ SOURCE_URL[1]=http://gd.tuwien.ac.at/hci/qt/source
+ SOURCE_VFY=sha1:639f6469d5aa07c51c2aa6795f8e3de3aab8cd25
+ MODULE_PREFIX=${QT4_PREFIX:-/opt/lunar/qt/4}
+ WEB_SITE=http://www.trolltech.com/qt
+ ENTERED=20020420
+ UPDATED=20080225
+ GARBAGE=off
+ FTP_PASSIVE=on
+ MAINTAINER=florin at lunar-linux.org
+ SHORT="A C++ toolkit for application development"
+
+cat << EOF
+Qt is a C++ toolkit for application development. It lets application
+developers target all major operating systems with a single application
+source code.
+
+Qt provides a platform-independent API to all central platform
+functionality: GUI, database access, networking, file handling, etc. The
+Qt library encapsulates the different APIs of different operating systems,
+providing the application programmer with a single, common API for all
+operating systems. The native C APIs are encapsulated in a set of
+well-designed, fully object-oriented C++ classes.
+EOF
diff --git a/kde4/base/qt4/POST_INSTALL b/kde4/base/qt4/POST_INSTALL
new file mode 100644
index 0000000..5d890f0
--- /dev/null
+++ b/kde4/base/qt4/POST_INSTALL
@@ -0,0 +1,2 @@
+if module_installed sip; then lin sip; fi
+if module_installed PyQt; then lin PyQt; fi
diff --git a/libs/libffi/DETAILS b/libs/libffi/DETAILS
index 41b5a25..249578a 100644
--- a/libs/libffi/DETAILS
+++ b/libs/libffi/DETAILS
@@ -6,7 +6,7 @@
WEB_SITE=http://sourceware.org/libffi
ENTERED=20080225
UPDATED=20080225
- SHORT=""
+ SHORT="A portable, high level programming interface"
cat << EOF
The libffi library provides a portable, high level programming interface
diff --git a/libs/qt4/BUILD b/libs/qt4/BUILD
deleted file mode 100644
index 386ed41..0000000
--- a/libs/qt4/BUILD
+++ /dev/null
@@ -1,42 +0,0 @@
-(
-
- export QTDIR=$SOURCE_DIRECTORY
- export PATH=$QTDIR/bin:$PATH
- export LD_LIBRARY_PATH=$QTDIR/lib
-
- sedit "s/-O2/$CXXFLAGS/" mkspecs/linux-g++/qmake.conf &&
-
- case $QT3_SUPPORT in
- y|Y) OPTS="$OPTS -qt3support" ;;
- n|N) OPTS="$OPTS -no-qt3support" ;;
- esac &&
-
- echo "yes" | ./configure \
- -prefix ${MODULE_PREFIX} \
- -release \
- -fast \
- -shared \
- -qt-gif \
- -system-libpng \
- -system-libjpeg \
- -system-libmng \
- -system-zlib \
- -no-exceptions \
- -nomake examples \
- -nomake demos \
- $OPTS &&
-
- default_make &&
-
- if ! grep -q "${MODULE_PREFIX}/lib" /etc/ld.so.conf; then
- echo "${MODULE_PREFIX}/lib" >> /etc/ld.so.conf
- fi &&
-
- echo "export QTDIR=\"${MODULE_PREFIX}\"" >> $SOURCE_DIRECTORY/qt4.rc &&
- echo export PATH=\"'${QTDIR}'/bin:'${PATH}'\" >> $SOURCE_DIRECTORY/qt4.rc &&
- echo export PKG_CONFIG_PATH=\"'${QTDIR}'/lib/pkgconfig:'${PKG_CONFIG_PATH}'\" \
- >> $SOURCE_DIRECTORY/qt4.rc &&
-
- install -m644 $SOURCE_DIRECTORY/qt4.rc /etc/profile.d/
-
-) > $C_FIFO 2>&1
diff --git a/libs/qt4/CONFIGURE b/libs/qt4/CONFIGURE
deleted file mode 100644
index 8246341..0000000
--- a/libs/qt4/CONFIGURE
+++ /dev/null
@@ -1,2 +0,0 @@
-mquery QT3_SUPPORT "Compile Qt3 support library?" y
-
diff --git a/libs/qt4/DEPENDS b/libs/qt4/DEPENDS
deleted file mode 100644
index d3a3cec..0000000
--- a/libs/qt4/DEPENDS
+++ /dev/null
@@ -1,19 +0,0 @@
-depends libungif
-depends libmng
-depends %X
-
-optional_depends "mysql" \
- "-plugin-sql-mysql -I/usr/include/mysql -L/usr/lib/mysql" \
- "-no-sql-mysql" \
- "for mysql database support"
-
-optional_depends "sqlite" \
- "-plugin-sql-sqlite -I/usr/include -L/usr/lib" \
- "-no-sql-sqlite" \
- "for sqlite database support"
-
-optional_depends "postgresql" \
- "-plugin-sql-psql -I/usr/include/postgresql/server \
- -L/usr/lib/postgresql" \
- "-no-sql-psql" \
- "for postgresql database support"
diff --git a/libs/qt4/DETAILS b/libs/qt4/DETAILS
deleted file mode 100644
index 3cab13d..0000000
--- a/libs/qt4/DETAILS
+++ /dev/null
@@ -1,28 +0,0 @@
- MODULE=qt4
- VERSION=4.3.3
- SOURCE=qt-x11-opensource-src-${VERSION}.tar.gz
-SOURCE_DIRECTORY=$BUILD_DIRECTORY/qt-x11-opensource-src-${VERSION}
- SOURCE_URL[0]=ftp://ftp.trolltech.com/qt/source/
- SOURCE_URL[1]=http://gd.tuwien.ac.at/hci/qt/source/
- SOURCE_VFY=sha1:77d00e2438efa793f6c16c54b64c8ba440ee3228
- MODULE_PREFIX=${QT4_PREFIX:-/opt/lunar/qt/4}
- WEB_SITE=http://www.trolltech.com/qt
- ENTERED=20020420
- UPDATED=20071213
- GARBAGE=off
- FTP_PASSIVE=on
- MAINTAINER=florin at lunar-linux.org
- SHORT="A C++ toolkit for application development"
-
-cat << EOF
-Qt is a C++ toolkit for application development. It lets application
-developers target all major operating systems with a single application
-source code.
-
-Qt provides a platform-independent API to all central platform
-functionality: GUI, database access, networking, file handling, etc. The
-Qt library encapsulates the different APIs of different operating systems,
-providing the application programmer with a single, common API for all
-operating systems. The native C APIs are encapsulated in a set of
-well-designed, fully object-oriented C++ classes.
-EOF
diff --git a/libs/qt4/POST_INSTALL b/libs/qt4/POST_INSTALL
deleted file mode 100644
index 5d890f0..0000000
--- a/libs/qt4/POST_INSTALL
+++ /dev/null
@@ -1,2 +0,0 @@
-if module_installed sip; then lin sip; fi
-if module_installed PyQt; then lin PyQt; fi
More information about the Lunar-commits
mailing list