summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarsten Lohrke <carlo@gentoo.org>2005-05-10 14:59:48 +0000
committerCarsten Lohrke <carlo@gentoo.org>2005-05-10 14:59:48 +0000
commitba6474c7414a98984120d6c921903fa072b39cd9 (patch)
tree17fab3f93371bee8879d15a99c50660cdb24270b /x11-libs/qt
parentInitial add, closes bug #91808. Thanks to sbriglie (diff)
downloadgentoo-2-ba6474c7414a98984120d6c921903fa072b39cd9.tar.gz
gentoo-2-ba6474c7414a98984120d6c921903fa072b39cd9.tar.bz2
gentoo-2-ba6474c7414a98984120d6c921903fa072b39cd9.zip
removed Qt 2 ebuilds
(Portage version: 2.0.51.19)
Diffstat (limited to 'x11-libs/qt')
-rw-r--r--x11-libs/qt/ChangeLog6
-rw-r--r--x11-libs/qt/files/digest-qt-2.3.2-r11
-rw-r--r--x11-libs/qt/files/digest-qt-2.3.2-r21
-rw-r--r--x11-libs/qt/qt-2.3.2-r1.ebuild93
-rw-r--r--x11-libs/qt/qt-2.3.2-r2.ebuild111
5 files changed, 5 insertions, 207 deletions
diff --git a/x11-libs/qt/ChangeLog b/x11-libs/qt/ChangeLog
index 9410c161e857..5862c515e358 100644
--- a/x11-libs/qt/ChangeLog
+++ b/x11-libs/qt/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for x11-libs/qt
# Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt/ChangeLog,v 1.211 2005/05/01 07:56:11 gmsoft Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt/ChangeLog,v 1.212 2005/05/10 14:59:48 carlo Exp $
+
+ 10 May 2005; Carsten Lohrke <carlo@gentoo.org> -qt-2.3.2-r1.ebuild,
+ -qt-2.3.2-r2.ebuild:
+ we don't support qt-2 anymore, #79720
01 May 2005; Guy Martin <gmsoft@gentoo.org> qt-3.3.4-r3.ebuild:
Stable on hppa.
diff --git a/x11-libs/qt/files/digest-qt-2.3.2-r1 b/x11-libs/qt/files/digest-qt-2.3.2-r1
deleted file mode 100644
index a0f2871d4ee3..000000000000
--- a/x11-libs/qt/files/digest-qt-2.3.2-r1
+++ /dev/null
@@ -1 +0,0 @@
-MD5 8b74c7bd9ff0c4752a009f2e5a6482e4 qt-x11-2.3.2.tar.gz 8978412
diff --git a/x11-libs/qt/files/digest-qt-2.3.2-r2 b/x11-libs/qt/files/digest-qt-2.3.2-r2
deleted file mode 100644
index a0f2871d4ee3..000000000000
--- a/x11-libs/qt/files/digest-qt-2.3.2-r2
+++ /dev/null
@@ -1 +0,0 @@
-MD5 8b74c7bd9ff0c4752a009f2e5a6482e4 qt-x11-2.3.2.tar.gz 8978412
diff --git a/x11-libs/qt/qt-2.3.2-r1.ebuild b/x11-libs/qt/qt-2.3.2-r1.ebuild
deleted file mode 100644
index 1ebcce14f63e..000000000000
--- a/x11-libs/qt/qt-2.3.2-r1.ebuild
+++ /dev/null
@@ -1,93 +0,0 @@
-# Copyright 1999-2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt/qt-2.3.2-r1.ebuild,v 1.31 2005/01/08 10:36:27 eradicator Exp $
-
-DESCRIPTION="QT ${PV}, an X11 widget set and general library used by KDE et al"
-HOMEPAGE="http://www.trolltech.com/"
-SRC_URI="ftp://ftp.trolltech.com/pub/qt/source/qt-x11-${PV}.tar.gz"
-
-LICENSE="|| ( QPL-1.0 GPL-2 )"
-SLOT="2"
-KEYWORDS="x86 ppc sparc hppa alpha amd64 ia64"
-IUSE="gif opengl nas debug"
-
-RDEPEND="virtual/x11
- media-libs/libpng
- media-libs/lcms
- >=media-libs/libmng-1.0.0
- >=media-libs/freetype-2
- gif? ( media-libs/giflib
- media-libs/libungif )
- nas? ( >=media-libs/nas-1.4.1 )
- opengl? ( virtual/opengl virtual/glu )"
-DEPEND="${RDEPEND}
- sys-devel/gcc"
-
-QTBASE=/usr/qt/2
-export QTDIR=${S}
-
-src_unpack() {
- unpack ${A}
-
- cd ${S}
- chmod +w configure
- cp configure configure.orig
- sed -e "s:read acceptance:acceptance=yes:" configure.orig > configure
-
- cd ${S}/configs
- cp linux-g++-shared linux-g++-shared.orig
- sed -e "s/SYSCONF_CXXFLAGS /SYSCONF_CXXFLAGS = ${CXXFLAGS} \#/" \
- -e "s/SYSCONF_CFLAGS /SYSCONF_CFLAGS = ${CFLAGS} \#/" \
- linux-g++-shared.orig > linux-g++-shared || die
-}
-
-src_compile() {
- export LDFLAGS="$LDFLAGS -ldl"
- local myconf
-
- use opengl || myconf="$myconf -no-opengl"
- use nas \
- && myconf="${myconf} -system-nas-sound" \
- || myconf="${myconf} -no-nas-sound"
-
- use gif && myconf="${myconf} -gif"
-
- use debug \
- && myconf="${myconf} -debug" \
- || myconf="${myconf} -release"
-
- ./configure \
- -sm -thread -system-zlib -system-jpeg ${myconf} \
- -system-libmng -system-libpng -gif -platform linux-g++ \
- -ldl -lpthread -no-g++-exceptions -no-xft || die
-
- make symlinks src-moc sub-src sub-tools || die
-}
-
-src_install() {
- # binaries
- into $QTBASE
- dobin bin/*
-
- # libraries
- dolib lib/libqt.so.${PV} lib/libqt-mt.so.${PV} lib/libqutil.so.1.0.0
- cd ${D}$QTBASE/lib
- for x in libqt.so libqt-mt.so
- do
- ln -s $x.2.3.2 $x.2.3
- ln -s $x.2.3 $x.2
- ln -s $x.2 $x
- done
- ln -s libqutil.so.1.0.0 libqutil.so.1.0
- ln -s libqutil.so.1.0 libqutil.so.1
- ln -s libqutil.so.1 libqutil.so
-
- # includes
- cd ${S}
- dodir ${QTBASE}/include
- cp include/* ${D}/${QTBASE}/include/
-
- # misc
- insinto /etc/env.d
- doins ${FILESDIR}/{50qt2,45qtdir2}
-}
diff --git a/x11-libs/qt/qt-2.3.2-r2.ebuild b/x11-libs/qt/qt-2.3.2-r2.ebuild
deleted file mode 100644
index 98538bc6cac2..000000000000
--- a/x11-libs/qt/qt-2.3.2-r2.ebuild
+++ /dev/null
@@ -1,111 +0,0 @@
-# Copyright 1999-2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt/qt-2.3.2-r2.ebuild,v 1.3 2005/01/18 05:11:08 eradicator Exp $
-
-inherit eutils
-
-DESCRIPTION="QT ${PV}, an X11 widget set and general library used by KDE et al"
-HOMEPAGE="http://www.trolltech.com/"
-SRC_URI="ftp://ftp.trolltech.com/pub/qt/source/qt-x11-${PV}.tar.gz"
-
-LICENSE="|| ( QPL-1.0 GPL-2 )"
-SLOT="2"
-#KEYWORDS="x86 ppc sparc hppa alpha amd64 ia64"
-# -r2 is just the same as -r1 with multilib fixes
-KEYWORDS="amd64 ~hppa ~sparc"
-IUSE="gif opengl nas debug"
-
-RDEPEND="virtual/x11
- media-libs/libpng
- media-libs/lcms
- >=media-libs/libmng-1.0.0
- >=media-libs/freetype-2
- gif? ( media-libs/giflib
- media-libs/libungif )
- nas? ( >=media-libs/nas-1.4.1 )
- opengl? ( virtual/opengl virtual/glu )"
-DEPEND="${RDEPEND}
- sys-devel/gcc"
-
-QTBASE=/usr/qt/2
-export QTDIR=${S}
-
-src_unpack() {
- unpack ${A}
-
- cd ${S}
- chmod +w configure
- cp configure configure.orig
- sed -e "s:read acceptance:acceptance=yes:" configure.orig > configure
-
- cd ${S}/configs
- cp linux-g++-shared linux-g++-shared.orig
- sed -e "s/SYSCONF_CXXFLAGS /SYSCONF_CXXFLAGS = ${CXXFLAGS} \#/" \
- -e "s/SYSCONF_CFLAGS /SYSCONF_CFLAGS = ${CFLAGS} \#/" \
- linux-g++-shared.orig > linux-g++-shared || die
-}
-
-src_compile() {
- export LDFLAGS="$LDFLAGS -ldl"
- local myconf
-
- use opengl || myconf="$myconf -no-opengl"
- use nas \
- && myconf="${myconf} -system-nas-sound" \
- || myconf="${myconf} -no-nas-sound"
-
- use gif && myconf="${myconf} -gif"
-
- use debug \
- && myconf="${myconf} -debug" \
- || myconf="${myconf} -release"
-
- ./configure \
- -sm -thread -system-zlib -system-jpeg ${myconf} \
- -system-libmng -system-libpng -gif -platform linux-g++ \
- -ldl -lpthread -no-g++-exceptions -no-xft || die
-
- make symlinks src-moc sub-src sub-tools || die
-}
-
-src_install() {
- # binaries
- into $QTBASE
- dobin bin/*
-
- # libraries
- dolib.so lib/libqt.so.${PV} lib/libqt-mt.so.${PV} lib/libqutil.so.1.0.0
- cd ${D}$QTBASE/$(get_libdir)
- for x in libqt.so libqt-mt.so
- do
- ln -s $x.2.3.2 $x.2.3
- ln -s $x.2.3 $x.2
- ln -s $x.2 $x
- done
- ln -s libqutil.so.1.0.0 libqutil.so.1.0
- ln -s libqutil.so.1.0 libqutil.so.1
- ln -s libqutil.so.1 libqutil.so
-
- Past this point just needs to be done once
- is_final_abi || return 0
-
- # includes
- cd ${S}
- dodir ${QTBASE}/include
- cp include/* ${D}/${QTBASE}/include/
-
- # misc
- insinto /etc/env.d
- doins ${FILESDIR}/{50qt2,45qtdir2}
-
- # List all the multilib libdirs
- local libdirs
- for libdir in $(get_all_libdirs); do
- libdirs="${libdirs}:${QTBASE}/${libdir}"
- done
- dosed "s~^LDPATH=.*$~LDPATH=${libdirs:1}~" /etc/env.d/50qt2
-
- if [ "${SYMLINK_LIB}" = "yes" ]; then
- dosym $(get_abi_LIBDIR ${DEFAULT_ABI}) ${QTBASE}/lib
- fi
-}