summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDror Levin <spatz@gentoo.org>2010-02-09 21:05:10 +0000
committerDror Levin <spatz@gentoo.org>2010-02-09 21:05:10 +0000
commit5ed2daaae1bc9d99cf162fbd13493e94987bb8a9 (patch)
tree5b3a736e2e6e2c85ca25984cfd88cc6a25b44c7b /x11-libs
parentRemove old. (diff)
downloadgentoo-2-5ed2daaae1bc9d99cf162fbd13493e94987bb8a9.tar.gz
gentoo-2-5ed2daaae1bc9d99cf162fbd13493e94987bb8a9.tar.bz2
gentoo-2-5ed2daaae1bc9d99cf162fbd13493e94987bb8a9.zip
Remove old.
(Portage version: 2.2_rc62/cvs/Linux x86_64)
Diffstat (limited to 'x11-libs')
-rw-r--r--x11-libs/qt-declarative/ChangeLog7
-rw-r--r--x11-libs/qt-declarative/qt-declarative-4.6.0.ebuild67
2 files changed, 5 insertions, 69 deletions
diff --git a/x11-libs/qt-declarative/ChangeLog b/x11-libs/qt-declarative/ChangeLog
index e687de9f2767..5398d04a8693 100644
--- a/x11-libs/qt-declarative/ChangeLog
+++ b/x11-libs/qt-declarative/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for x11-libs/qt-declarative
-# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-declarative/ChangeLog,v 1.1 2009/12/26 20:49:17 ayoy Exp $
+# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-declarative/ChangeLog,v 1.2 2010/02/09 21:05:10 spatz Exp $
+
+ 09 Feb 2010; Dror Levin <spatz@gentoo.org> -qt-declarative-4.6.0.ebuild:
+ Remove old.
*qt-declarative-4.6.0 (26 Dec 2009)
diff --git a/x11-libs/qt-declarative/qt-declarative-4.6.0.ebuild b/x11-libs/qt-declarative/qt-declarative-4.6.0.ebuild
deleted file mode 100644
index c98ccc0292b4..000000000000
--- a/x11-libs/qt-declarative/qt-declarative-4.6.0.ebuild
+++ /dev/null
@@ -1,67 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-declarative/qt-declarative-4.6.0.ebuild,v 1.1 2009/12/26 20:49:17 ayoy Exp $
-
-EAPI="2"
-
-inherit qt4-r2
-
-MY_P="qt-${PV}${PN#qt}"
-
-DESCRIPTION="The Declarative module for the Qt toolkit"
-HOMEPAGE="http://qt.nokia.com"
-SRC_URI="http://get.qt.nokia.com/qml/${MY_P}.tar.gz"
-
-LICENSE="|| ( LGPL-2.1 GPL-3 )"
-SLOT="4"
-KEYWORDS="~amd64 ~x86"
-IUSE="debug demos examples"
-
-DEPEND="~x11-libs/qt-core-${PV}
- ~x11-libs/qt-gui-${PV}
- ~x11-libs/qt-script-${PV}
- ~x11-libs/qt-sql-${PV}
- ~x11-libs/qt-webkit-${PV}
- ~x11-libs/qt-xmlpatterns-${PV}"
-RDEPEND="${DEPEND}"
-
-S="${WORKDIR}/${MY_P}"
-
-src_prepare() {
- # help qmlviewer and qmldebugger find the freshly compiled Declarative module
- echo "LIBS += -L\"${S}/src/declarative/.obj\"" \
- >> "${S}/tools/qmlviewer/qmlviewer.pro" \
- || die "fixing LDFLAGS failed"
-}
-
-src_configure() {
- eqmake4 src/declarative/declarative.pro -o src/declarative/Makefile
-
- # running "eqmake4 tools/qmlviewer/qmlviewer.pro"
- # fails with some relative paths not being found
- # so we have to cd
- cd "${S}/tools/qmlviewer"
- eqmake4
-}
-
-src_compile() {
- emake -C src/declarative || die "compiling declarative module failed"
- emake -C tools/qmlviewer || die "compiling qmlviewer failed"
-}
-
-src_install() {
- emake INSTALL_ROOT="${D}" -C src/declarative install \
- || die "installing declarative module failed"
-
- emake INSTALL_ROOT="${D}" -C tools/qmlviewer install \
- || die "installing qmlviewer failed"
-
- dodoc README.html || die "dodoc failed"
-
- for feature in demos examples; do
- if use ${feature}; then
- insinto "/usr/share/${PN}/${feature}"
- doins -r "${feature}/declarative" || die "installing ${feature} failed"
- fi
- done
-}