diff options
author | Ben Kohler <bkohler@gentoo.org> | 2023-10-12 10:11:38 -0500 |
---|---|---|
committer | Ben Kohler <bkohler@gentoo.org> | 2023-10-12 10:11:38 -0500 |
commit | 1a33fad333fdad387e10a3ce133c3a4f66c078ad (patch) | |
tree | 4393d03c1c49c008325170bb95e55591e2b2aed6 /x11-wm | |
parent | x11-wm/blackbox: stabilize 0.77-r1 (diff) | |
download | gentoo-1a33fad333fdad387e10a3ce133c3a4f66c078ad.tar.gz gentoo-1a33fad333fdad387e10a3ce133c3a4f66c078ad.tar.bz2 gentoo-1a33fad333fdad387e10a3ce133c3a4f66c078ad.zip |
x11-wm/blackbox: drop 0.77
Signed-off-by: Ben Kohler <bkohler@gentoo.org>
Diffstat (limited to 'x11-wm')
-rw-r--r-- | x11-wm/blackbox/blackbox-0.77.ebuild | 60 |
1 files changed, 0 insertions, 60 deletions
diff --git a/x11-wm/blackbox/blackbox-0.77.ebuild b/x11-wm/blackbox/blackbox-0.77.ebuild deleted file mode 100644 index 32b54c5b3e31..000000000000 --- a/x11-wm/blackbox/blackbox-0.77.ebuild +++ /dev/null @@ -1,60 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit autotools - -DESCRIPTION="A small, fast, full-featured window manager for X" -HOMEPAGE="https://github.com/bbidulock/blackboxwm" -SRC_URI="https://github.com/bbidulock/blackboxwm/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~m68k ppc ppc64 ~riscv sparc x86" -IUSE="debug nls static-libs truetype" - -RDEPEND="x11-libs/libXft - x11-libs/libXt - x11-libs/libX11 - nls? ( >=sys-devel/gettext-0.20 ) - truetype? ( media-libs/freetype )" -DEPEND="${RDEPEND} - x11-base/xorg-proto" -BDEPEND=">=sys-devel/autoconf-2.71 - virtual/pkgconfig" - -S="${WORKDIR}"/blackboxwm-${PV} - -PATCHES=( - "${FILESDIR}"/${PN}-0.77-gcc12-time.patch -) - -src_prepare() { - sed -e '/AC_DISABLE_SHARED/d' -i configure.ac || die - default - eautoreconf -} - -src_configure() { - econf \ - --sysconfdir=/etc/X11/${PN} \ - $(use_enable debug) \ - $(use_enable nls) \ - $(use_enable truetype xft) -} - -src_install() { - dodir /etc/X11/Sessions - echo "/usr/bin/blackbox" > "${D}/etc/X11/Sessions/${PN}" - fperms a+x /etc/X11/Sessions/${PN} - - insinto /usr/share/xsessions - doins "${FILESDIR}/${PN}.desktop" - - emake DESTDIR="${D}" install - dodoc AUTHORS ChangeLog* COMPLIANCE README* TODO - - find "${D}" -name '*.la' -delete || die - use static-libs || rm "${D}"/usr/$(get_libdir)/libbt.a || die -} |