summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIonen Wolkens <ionen@gentoo.org>2021-08-03 11:25:35 -0400
committerIonen Wolkens <ionen@gentoo.org>2021-08-03 12:22:20 -0400
commit59583f91232d19c648e13b7bb2a9ef20531f6247 (patch)
tree2b0b43f2b79e4adde2de18c9f0c316d078fcb76c
parentkde-plasma/layer-shell-qt: Fix DEPEND (diff)
downloadgentoo-59583f91232d19c648e13b7bb2a9ef20531f6247.tar.gz
gentoo-59583f91232d19c648e13b7bb2a9ef20531f6247.tar.bz2
gentoo-59583f91232d19c648e13b7bb2a9ef20531f6247.zip
games-util/linux-wbfs-manager: drop broken/unmaintained live ebuild
Current svn URI no longer valid, and there is little point in a live ebuild due to inactive upstream. Closes: https://bugs.gentoo.org/784179 Signed-off-by: Ionen Wolkens <ionen@gentoo.org>
-rw-r--r--games-util/linux-wbfs-manager/linux-wbfs-manager-9999.ebuild51
1 files changed, 0 insertions, 51 deletions
diff --git a/games-util/linux-wbfs-manager/linux-wbfs-manager-9999.ebuild b/games-util/linux-wbfs-manager/linux-wbfs-manager-9999.ebuild
deleted file mode 100644
index c94ba9084a1f..000000000000
--- a/games-util/linux-wbfs-manager/linux-wbfs-manager-9999.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit toolchain-funcs
-
-if [[ "${PV}" == "9999" ]]; then
- ESVN_REPO_URI="https://linux-wbfs-manager.googlecode.com/svn/trunk/"
- inherit subversion
- SRC_URI=""
-else
- SRC_URI="https://linux-wbfs-manager.googlecode.com/files/${P}.tar.gz"
- KEYWORDS="~amd64 ~x86"
-fi;
-
-DESCRIPTION="WBFS manager for Linux using GTK+"
-HOMEPAGE="https://code.google.com/p/linux-wbfs-manager/"
-
-LICENSE="GPL-2"
-SLOT="0"
-IUSE=""
-
-RDEPEND="dev-libs/glib:2
- gnome-base/libglade:2.0"
-DEPEND="${RDEPEND}
- virtual/pkgconfig
-"
-
-if [[ ${PV} == "9999" ]] ; then
- S=${WORKDIR}/${ECVS_MODULE}
-else
- S=${WORKDIR}/${PN}
-fi
-
-src_unpack() {
- if [[ ${PV} == "9999" ]]; then
- subversion_src_unpack
- else
- default
- fi
-}
-
-src_compile() {
- emake CC="$(tc-getCC)"
-}
-
-src_install() {
- dobin wbfs_gtk
- dodoc README
-}