diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2017-12-31 16:34:20 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2018-01-02 13:43:39 +0100 |
commit | 8c3af46979e794419b2ee425434e0a4a736e7852 (patch) | |
tree | e2d134f40258509a38a47a304a85555b72925fac /x11-misc | |
parent | sys-apps/mawk: add support for -W sandbox mode (diff) | |
download | gentoo-8c3af46979e794419b2ee425434e0a4a736e7852.tar.gz gentoo-8c3af46979e794419b2ee425434e0a4a736e7852.tar.bz2 gentoo-8c3af46979e794419b2ee425434e0a4a736e7852.zip |
profiles: Remove last-rited qt4/qt3support-rdeps
Closes: https://bugs.gentoo.org/247588
Closes: https://bugs.gentoo.org/634390
Closes: https://bugs.gentoo.org/637098
Closes: https://bugs.gentoo.org/638688
Closes: https://bugs.gentoo.org/639242
Closes: https://bugs.gentoo.org/639254
Diffstat (limited to 'x11-misc')
-rw-r--r-- | x11-misc/qtnotifydaemon/Manifest | 1 | ||||
-rw-r--r-- | x11-misc/qtnotifydaemon/files/qtnotifydaemon-1.0.14-build.patch | 32 | ||||
-rw-r--r-- | x11-misc/qtnotifydaemon/metadata.xml | 7 | ||||
-rw-r--r-- | x11-misc/qtnotifydaemon/qtnotifydaemon-1.0.14.ebuild | 35 |
4 files changed, 0 insertions, 75 deletions
diff --git a/x11-misc/qtnotifydaemon/Manifest b/x11-misc/qtnotifydaemon/Manifest deleted file mode 100644 index 94f4c1d2acaf..000000000000 --- a/x11-misc/qtnotifydaemon/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST qtnotifydaemon_1.0.14.orig.tar.gz 1136779 BLAKE2B fa3c3455bcbfc01397ec7db371337df2e8ca0a7b00077cbd1279fbedfa544e4fd8bdec3284ee11735e9c55618ff834f0b65f193df6db734bb9c0debaefdf7351 SHA512 409f911be7d0e55f8a9f23db67ad6eefac1d215c598f54bab35bd704feee3a68ae21a3c416bd8848aacbdd82ca751ea1170c566d5615d4ac8a30adb87d487b8f diff --git a/x11-misc/qtnotifydaemon/files/qtnotifydaemon-1.0.14-build.patch b/x11-misc/qtnotifydaemon/files/qtnotifydaemon-1.0.14-build.patch deleted file mode 100644 index 0aebc851c727..000000000000 --- a/x11-misc/qtnotifydaemon/files/qtnotifydaemon-1.0.14-build.patch +++ /dev/null @@ -1,32 +0,0 @@ -Fixes build with GCC 4.7, as well as the gold linker. - ---- main.cpp -+++ main.cpp -@@ -22,6 +22,7 @@ - #include <signal.h> - #include <sys/stat.h> - #include <pwd.h> -+#include <unistd.h> - #include "dbus.h" - #include "notifywidget.h" - #include "notifyarea.h" ---- notifyarea.cpp -+++ notifyarea.cpp -@@ -22,6 +22,7 @@ - #include <QSystemTrayIcon> //alex - #include <QDesktopWidget> - #include <fstream> -+#include <unistd.h> - #include "notifyarea.h" - #include "notifywidget.h" - #include "dbus.h" ---- qtnotifydaemon.pro -+++ qtnotifydaemon.pro -@@ -13,6 +13,7 @@ - INCLUDEPATH += . - QT += dbus - RESOURCES += images.qrc -+LIBS += -lX11 - - # Input - SOURCES += main.cpp notifywidget.cpp dbus.cpp notifyarea.cpp message.cpp diff --git a/x11-misc/qtnotifydaemon/metadata.xml b/x11-misc/qtnotifydaemon/metadata.xml deleted file mode 100644 index 4d5a0437a84e..000000000000 --- a/x11-misc/qtnotifydaemon/metadata.xml +++ /dev/null @@ -1,7 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <upstream> - <remote-id type="sourceforge">qtnotifydaemon</remote-id> - </upstream> -</pkgmetadata> diff --git a/x11-misc/qtnotifydaemon/qtnotifydaemon-1.0.14.ebuild b/x11-misc/qtnotifydaemon/qtnotifydaemon-1.0.14.ebuild deleted file mode 100644 index a210a436ee83..000000000000 --- a/x11-misc/qtnotifydaemon/qtnotifydaemon-1.0.14.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=4 -inherit qt4-r2 - -DESCRIPTION="A flexible and configurable notification daemon" -HOMEPAGE="https://sourceforge.net/projects/qtnotifydaemon/" -SRC_URI="mirror://sourceforge/${PN}/${PN}_${PV}.orig.tar.gz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="" - -RDEPEND="x11-libs/libX11 - dev-qt/qtdbus:4 - dev-qt/qtgui:4 - dev-qt/qt3support:4 - !x11-misc/notification-daemon - !x11-misc/notify-osd" -DEPEND="${RDEPEND}" - -S=${WORKDIR} - -PATCHES=( "${FILESDIR}/${P}-build.patch" ) - -src_install() { - dobin ${PN} - - insinto /usr/share/dbus-1/services - doins org.freedesktop.Notifications.service - - doman debian/${PN}.1 -} |