summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFabio Erculiani <lxnay@gentoo.org>2013-12-18 04:56:29 +0000
committerFabio Erculiani <lxnay@gentoo.org>2013-12-18 04:56:29 +0000
commita1fc4cc171803f423f624c642bfb7ce84e79f69b (patch)
tree887f90edc9349cae5cd829593b3372dbd5de1b82 /app-admin/packagekit-qt4
parentdrop old 0.6.x packagekit (diff)
downloadgentoo-2-a1fc4cc171803f423f624c642bfb7ce84e79f69b.tar.gz
gentoo-2-a1fc4cc171803f423f624c642bfb7ce84e79f69b.tar.bz2
gentoo-2-a1fc4cc171803f423f624c642bfb7ce84e79f69b.zip
drop old 0.6.x packagekit
(Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key ADC916E5)
Diffstat (limited to 'app-admin/packagekit-qt4')
-rw-r--r--app-admin/packagekit-qt4/ChangeLog6
-rw-r--r--app-admin/packagekit-qt4/packagekit-qt4-0.6.22.ebuild74
2 files changed, 5 insertions, 75 deletions
diff --git a/app-admin/packagekit-qt4/ChangeLog b/app-admin/packagekit-qt4/ChangeLog
index ab83d0416822..9a375e9d6872 100644
--- a/app-admin/packagekit-qt4/ChangeLog
+++ b/app-admin/packagekit-qt4/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for app-admin/packagekit-qt4
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/packagekit-qt4/ChangeLog,v 1.19 2013/03/02 19:07:09 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-admin/packagekit-qt4/ChangeLog,v 1.20 2013/12/18 04:56:29 lxnay Exp $
+
+ 18 Dec 2013; Fabio Erculiani <lxnay@gentoo.org>
+ -packagekit-qt4-0.6.22.ebuild:
+ drop old 0.6.x packagekit
02 Mar 2013; Markos Chandras <hwoarang@gentoo.org>
packagekit-qt4-0.6.22.ebuild:
diff --git a/app-admin/packagekit-qt4/packagekit-qt4-0.6.22.ebuild b/app-admin/packagekit-qt4/packagekit-qt4-0.6.22.ebuild
deleted file mode 100644
index bed66f276842..000000000000
--- a/app-admin/packagekit-qt4/packagekit-qt4-0.6.22.ebuild
+++ /dev/null
@@ -1,74 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/packagekit-qt4/packagekit-qt4-0.6.22.ebuild,v 1.3 2013/03/02 19:07:09 hwoarang Exp $
-
-EAPI="3"
-
-inherit eutils base
-
-MY_PN="PackageKit"
-MY_P=${MY_PN}-${PV}
-
-DESCRIPTION="Qt4 PackageKit backend library"
-HOMEPAGE="http://www.packagekit.org/"
-SRC_URI="http://www.packagekit.org/releases/${MY_P}.tar.xz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~x86"
-IUSE=""
-
-RDEPEND=">=dev-qt/qtcore-4.4.0:4
- >=dev-qt/qtdbus-4.4.0:4
- >=dev-qt/qtsql-4.4.0:4
- ~app-admin/packagekit-base-${PV}"
-DEPEND="${RDEPEND}
- dev-libs/libxslt
- virtual/pkgconfig"
-
-S="${WORKDIR}/${MY_P}"
-
-src_configure() {
- econf \
- --enable-introspection=no \
- --localstatedir=/var \
- --disable-dependency-tracking \
- --enable-option-checking \
- --enable-libtool-lock \
- --disable-strict \
- --disable-local \
- --disable-gtk-doc \
- --disable-command-not-found \
- --disable-debuginfo-install \
- --disable-gstreamer-plugin \
- --disable-service-packs \
- --disable-man-pages \
- --disable-cron \
- --disable-gtk-module \
- --disable-networkmanager \
- --disable-browser-plugin \
- --disable-pm-utils \
- --disable-device-rebind \
- --disable-tests \
- --enable-qt
-}
-
-src_compile() {
- for qtdir in packagekit-qt packagekit-qt2; do
- cd "${S}"/lib/${qtdir} || die
- # fix buildsystem, let the build system regenerate the damn .moc files
- if [[ "${qtdir}" = "packagekit-qt" ]]; then
- rm src/*.moc || die
- else
- rm *.moc || die
- fi
- emake || die "emake install failed"
- done
-}
-
-src_install() {
- for qtdir in packagekit-qt packagekit-qt2; do
- cd "${S}"/lib/${qtdir} || die
- emake DESTDIR="${D}" install || die "emake install failed"
- done
-}