aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Palimaka <kensington@gentoo.org>2016-01-16 23:17:49 +1100
committerMichael Palimaka <kensington@gentoo.org>2016-01-16 23:17:49 +1100
commit97d4ff8ee5b597cec6f1c2733309c9b0d1b2eb0f (patch)
tree69a25347f02f0e16072f383b5f4f1f65b2985d5f /x11-themes
parentx11-wm/kwin-standalone: remove dead package (diff)
downloadqt-97d4ff8ee5b597cec6f1c2733309c9b0d1b2eb0f.tar.gz
qt-97d4ff8ee5b597cec6f1c2733309c9b0d1b2eb0f.tar.bz2
qt-97d4ff8ee5b597cec6f1c2733309c9b0d1b2eb0f.zip
x11-themes/xcurtheme: remove unfetchable package
Diffstat (limited to 'x11-themes')
-rw-r--r--x11-themes/xcurtheme/metadata.xml11
-rw-r--r--x11-themes/xcurtheme/xcurtheme-9999.ebuild57
2 files changed, 0 insertions, 68 deletions
diff --git a/x11-themes/xcurtheme/metadata.xml b/x11-themes/xcurtheme/metadata.xml
deleted file mode 100644
index 2219f17a..00000000
--- a/x11-themes/xcurtheme/metadata.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <herd>qt</herd>
- <use>
- <flag name="tools">
- Install the cursorFX converter (lcft)
- </flag>
- </use>
-</pkgmetadata>
-
diff --git a/x11-themes/xcurtheme/xcurtheme-9999.ebuild b/x11-themes/xcurtheme/xcurtheme-9999.ebuild
deleted file mode 100644
index a8557af7..00000000
--- a/x11-themes/xcurtheme/xcurtheme-9999.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit qt4-r2 git-2
-
-DESCRIPTION="Qt utility to change Xcrusor themes without restarting X Server."
-HOMEPAGE="http://gitorious.org/qt-xcurtheme"
-EGIT_REPO_URI="git://gitorious.org/qt-xcurtheme/mainline"
-
-LICENSE="GPL-2 WTFPL-2"
-SLOT="0"
-KEYWORDS=""
-IUSE="tools"
-
-DEPEND="
- dev-qt/qtgui:4
- x11-libs/libXcursor
- x11-libs/libXfixes
-"
-RDEPEND="${DEPEND}"
-
-src_prepare() {
- sed -i "/QMAKE_LFLAGS_RELEASE/d" xct.pro ||
- die "xct.pro sed failed";
- sed -i "/QMAKE_LFLAGS_RELEASE/d" tools/cursorFXconvert/lcft.pro ||
- die "lcft.pro sed failed";
-}
-
-src_configure() {
- qt4-r2_src_configure
- if use tools; then
- pushd tools/cursorFXconvert/ > /dev/null || die
- eqmake4
- popd > /dev/null || die
- fi
-}
-
-src_compile() {
- qt4-r2_src_compile
- if use tools; then
- pushd tools/cursorFXconvert/ > /dev/null || die
- emake
- popd > /dev/null || die
- fi
-}
-
-src_install() {
- dobin "${PN}"
- if use tools; then
- pushd tools/cursorFXconvert/ > /dev/null || die
- dobin lcft
- popd > /dev/null || die
- fi
-}