summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2018-06-25 23:44:30 +0200
committerAndreas Sturmlechner <asturm@gentoo.org>2018-06-26 08:05:38 +0200
commit93f51e4eda6d4af869cb55345f57ada6c574382d (patch)
tree652c8d604f445769d2b5c118c1f745589252fc46 /dev-util
parentdev-python/pip: Fix PYTHON_REQ_USE (diff)
downloadgentoo-93f51e4eda6d4af869cb55345f57ada6c574382d.tar.gz
gentoo-93f51e4eda6d4af869cb55345f57ada6c574382d.tar.bz2
gentoo-93f51e4eda6d4af869cb55345f57ada6c574382d.zip
profiles: Remove last-rited dev-util/automoc, media-libs/phonon-qt7
Diffstat (limited to 'dev-util')
-rw-r--r--dev-util/automoc/Manifest1
-rw-r--r--dev-util/automoc/automoc-0.9.88-r1.ebuild34
-rw-r--r--dev-util/automoc/files/automoc-0.9.88-objc++.patch48
-rw-r--r--dev-util/automoc/metadata.xml8
4 files changed, 0 insertions, 91 deletions
diff --git a/dev-util/automoc/Manifest b/dev-util/automoc/Manifest
deleted file mode 100644
index 248f11b12795..000000000000
--- a/dev-util/automoc/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST automoc4-0.9.88.tar.bz2 9153 BLAKE2B 4fbe9a5e07a0ef964b0a4fc4efa898cedeb239129de3f9e83b6081ad6c54469019118f613c9d4fff2a22227e62b374be5541898abf047254806fcfcd63e709a4 SHA512 96dfa096a3793f93f6a4acf98c051c871c0285124bff09b12914a17e08a1f26cd63f0bb1c22fdf2c5c29550a1727a087b5de86bfa8a555c562e96052b4a2d820
diff --git a/dev-util/automoc/automoc-0.9.88-r1.ebuild b/dev-util/automoc/automoc-0.9.88-r1.ebuild
deleted file mode 100644
index 60198cf0b581..000000000000
--- a/dev-util/automoc/automoc-0.9.88-r1.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-MY_PN="automoc4"
-MY_P="${MY_PN}-${PV}"
-inherit cmake-utils flag-o-matic
-
-DESCRIPTION="KDE Meta Object Compiler"
-HOMEPAGE="https://www.kde.org"
-SRC_URI="mirror://kde/stable/${MY_PN}/${PV}/${MY_P}.tar.bz2"
-
-LICENSE="BSD-2"
-SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ppc ppc64 sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
-IUSE=""
-
-DEPEND="
- dev-qt/qtcore:4
-"
-RDEPEND="${DEPEND}"
-
-S="${WORKDIR}/${MY_P}"
-
-PATCHES=( "${FILESDIR}/${PN}-0.9.88-objc++.patch" )
-
-src_prepare() {
- cmake-utils_src_prepare
-
- if [[ ${ELIBC} = uclibc ]]; then
- append-flags -pthread
- fi
-}
diff --git a/dev-util/automoc/files/automoc-0.9.88-objc++.patch b/dev-util/automoc/files/automoc-0.9.88-objc++.patch
deleted file mode 100644
index 1f4dacdc06eb..000000000000
--- a/dev-util/automoc/files/automoc-0.9.88-objc++.patch
+++ /dev/null
@@ -1,48 +0,0 @@
-Please refer to
- http://websvn.kde.org/?view=revision&revision=934696
-
-Adds support for objc++ in automoc, so that running moc on .mm-files will work.
-
---- trunk/kdesupport/automoc/Automoc4Config.cmake 2009/03/03 15:40:57 934695
-+++ trunk/kdesupport/automoc/Automoc4Config.cmake 2009/03/03 15:42:18 934696
-@@ -105,9 +105,9 @@
- if(NOT _generated AND NOT _skip)
- get_filename_component(_suffix "${_current_FILE}" EXT)
- # skip every source file that's not C++
-- if(_suffix STREQUAL ".cpp" OR _suffix STREQUAL ".cc" OR _suffix STREQUAL ".cxx" OR _suffix STREQUAL ".C")
-+ if(_suffix STREQUAL ".cpp" OR _suffix STREQUAL ".cc" OR _suffix STREQUAL ".cxx" OR _suffix STREQUAL ".C" OR _suffix STREQUAL ".mm")
- list(APPEND _moc_files ${_abs_current_FILE})
-- endif(_suffix STREQUAL ".cpp" OR _suffix STREQUAL ".cc" OR _suffix STREQUAL ".cxx" OR _suffix STREQUAL ".C")
-+ endif(_suffix STREQUAL ".cpp" OR _suffix STREQUAL ".cc" OR _suffix STREQUAL ".cxx" OR _suffix STREQUAL ".C" OR _suffix STREQUAL ".mm")
- endif(NOT _generated AND NOT _skip)
- endforeach (_current_FILE)
-
-@@ -156,7 +156,7 @@
- if(NOT _generated AND NOT _skip)
- get_filename_component(_suffix "${_current_FILE}" EXT)
- # skip every source file that's not C++
-- if(_suffix STREQUAL ".cpp" OR _suffix STREQUAL ".cc" OR _suffix STREQUAL ".cxx" OR _suffix STREQUAL ".C")
-+ if(_suffix STREQUAL ".cpp" OR _suffix STREQUAL ".cc" OR _suffix STREQUAL ".cxx" OR _suffix STREQUAL ".C" OR _suffix STREQUAL ".mm")
- get_filename_component(_basename "${_current_FILE}" NAME_WE)
- get_filename_component(_abs_path "${_abs_current_FILE}" PATH)
- set(_header "${_abs_path}/${_basename}.h")
-@@ -168,7 +168,7 @@
- list(APPEND _moc_headers ${_pheader})
- endif(EXISTS "${_pheader}")
- list(APPEND _moc_files ${_abs_current_FILE})
-- endif(_suffix STREQUAL ".cpp" OR _suffix STREQUAL ".cc" OR _suffix STREQUAL ".cxx" OR _suffix STREQUAL ".C")
-+ endif(_suffix STREQUAL ".cpp" OR _suffix STREQUAL ".cc" OR _suffix STREQUAL ".cxx" OR _suffix STREQUAL ".C" OR _suffix STREQUAL ".mm")
- endif(NOT _generated AND NOT _skip)
- endforeach (_current_FILE)
-
---- trunk/kdesupport/automoc/kde4automoc.cpp 2009/03/03 15:40:57 934695
-+++ trunk/kdesupport/automoc/kde4automoc.cpp 2009/03/03 15:42:18 934696
-@@ -326,7 +326,7 @@
- foreach (const QString &absFilename, sourceFiles) {
- //qDebug() << absFilename;
- const QFileInfo sourceFileInfo(absFilename);
-- if (absFilename.endsWith(".cpp") || absFilename.endsWith(".cc") ||
-+ if (absFilename.endsWith(".cpp") || absFilename.endsWith(".cc") || absFilename.endsWith(".mm") ||
- absFilename.endsWith(".cxx") || absFilename.endsWith(".C")) {
- //qDebug() << "check .cpp file";
- QFile sourceFile(absFilename);
diff --git a/dev-util/automoc/metadata.xml b/dev-util/automoc/metadata.xml
deleted file mode 100644
index 2fdbf33d963d..000000000000
--- a/dev-util/automoc/metadata.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="project">
- <email>kde@gentoo.org</email>
- <name>Gentoo KDE Project</name>
- </maintainer>
-</pkgmetadata>