diff options
author | David Seifert <soap@gentoo.org> | 2023-04-21 10:54:34 +0200 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2023-04-21 10:54:34 +0200 |
commit | 5d5012d3f39cb99a73760869b0c45be4414c8fad (patch) | |
tree | c48f2e0ae63e885d4a439d29be3c41dbcdd7b5ef /x11-wm | |
parent | dev-ruby/ruby-xslt: treeclean (diff) | |
download | gentoo-5d5012d3f39cb99a73760869b0c45be4414c8fad.tar.gz gentoo-5d5012d3f39cb99a73760869b0c45be4414c8fad.tar.bz2 gentoo-5d5012d3f39cb99a73760869b0c45be4414c8fad.zip |
x11-wm/subtle: treeclean
Closes: https://bugs.gentoo.org/802729
Closes: https://bugs.gentoo.org/862414
Closes: https://bugs.gentoo.org/876993
Closes: https://bugs.gentoo.org/880577
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'x11-wm')
-rw-r--r-- | x11-wm/subtle/Manifest | 1 | ||||
-rw-r--r-- | x11-wm/subtle/metadata.xml | 23 | ||||
-rw-r--r-- | x11-wm/subtle/subtle-0.11.3244-r2.ebuild | 83 |
3 files changed, 0 insertions, 107 deletions
diff --git a/x11-wm/subtle/Manifest b/x11-wm/subtle/Manifest deleted file mode 100644 index b7b2d1fa0695..000000000000 --- a/x11-wm/subtle/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST subtle-0.11.3244.tar.gz 190549 BLAKE2B bb4b78165741ef30c1e9e145d4f26c8903d597dfa210688246210bb6f04ffb8b62b9295ffdfd0829f1c36019287ff82677253daf87878562b7ba55a517fb00ce SHA512 3d6edd5cb1b5dcd058caeddf3ead024c7cce39684baca8bac9709683ce3130a5c8433cbe046d28dc7420637dd855a2b6775638097f78a5e701bb85e505e8167c diff --git a/x11-wm/subtle/metadata.xml b/x11-wm/subtle/metadata.xml deleted file mode 100644 index 3b3a566e669a..000000000000 --- a/x11-wm/subtle/metadata.xml +++ /dev/null @@ -1,23 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <!-- maintainer-needed --> - <longdescription lang="en"> - subtle is a manual tiling window manager with a rather uncommon approach - of tiling: Instead of relying on predefined layouts, subtle divides the - screen into a grid with customizeable slots (called gravities). For - better understanding, the default config uses a 3x3 grid and maps each - gravity to one key of the numpad. With those keys, windows can be moved - directly to the desired gravity - the same can be done with tagging - rules in the config. - - Another unique concept is the strict tagging: Unlike other tiling window - managers, subtle doesn't allow weak tagging and always maps windows to - virtual desktops (called views) with matching tags, regardless of the - current active view. - </longdescription> - <use> - <flag name="xrandr">Enable support for the X RandR extension</flag> - <flag name="xtest">Enable support for the XTest extension</flag> - </use> -</pkgmetadata> diff --git a/x11-wm/subtle/subtle-0.11.3244-r2.ebuild b/x11-wm/subtle/subtle-0.11.3244-r2.ebuild deleted file mode 100644 index 92eeb3132b59..000000000000 --- a/x11-wm/subtle/subtle-0.11.3244-r2.ebuild +++ /dev/null @@ -1,83 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -USE_RUBY="ruby27 ruby30 ruby31" - -inherit ruby-ng toolchain-funcs - -DESCRIPTION="A manual tiling window manager" -HOMEPAGE="https://subforge.org/projects/subtle/wiki" -SRC_URI="https://dev.gentoo.org/~radhermit/dist/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="debug doc +xft xinerama xpm +xrandr +xtest" -RESTRICT="!test? ( test )" - -RDEPEND="x11-libs/libX11 - xft? ( x11-libs/libXft ) - xinerama? ( x11-libs/libXinerama ) - xpm? ( x11-libs/libXpm ) - xtest? ( x11-libs/libXtst ) - xrandr? ( x11-libs/libXrandr )" -DEPEND="${RDEPEND}" -BDEPEND="virtual/pkgconfig" - -ruby_add_rdepend "dev-ruby/minitar" -ruby_add_bdepend "dev-ruby/rake doc? ( dev-ruby/rdoc )" - -all_ruby_unpack() { - if [[ ${PV} == "9999" ]]; then - mercurial_src_unpack - else - default - fi -} - -each_ruby_configure() { - local myconf - use debug && myconf+=" debug=yes" || myconf+=" debug=no" - use xft && myconf+=" xft=yes" || myconf+=" xft=no" - use xinerama && myconf+=" xinerama=yes" || myconf+=" xinerama=no" - use xpm && myconf+=" xpm=yes" || myconf+=" xpm=no" - use xtest && myconf+=" xtest=yes" || myconf+=" xtest=no" - use xrandr && myconf+=" xrandr=yes" || myconf+=" xrandr=no" - - ${RUBY} -S rake -v CC="$(tc-getCC)" destdir="${D}" ${myconf} config || die -} - -each_ruby_compile() { - ${RUBY} -S rake -v build || die -} - -all_ruby_compile() { - use doc && { rake rdoc || die ; } -} - -each_ruby_install() { - ${RUBY} -S rake -v install || die -} - -all_ruby_install() { - dodir /etc/X11/Sessions - cat <<-EOF > "${D}/etc/X11/Sessions/${PN}" - #!/bin/sh - exec /usr/bin/subtle - EOF - fperms a+x /etc/X11/Sessions/${PN} - - insinto /usr/share/xsessions - doins data/${PN}.desktop - - dodoc AUTHORS NEWS - - use doc && dodoc -r html -} - -pkg_postinst() { - elog "Note that surserver will currently not work since dev-ruby/datamapper" - elog "is not in the tree." -} |