diff options
author | Andrey Utkin <andrey_utkin@gentoo.org> | 2020-12-01 13:45:33 +0000 |
---|---|---|
committer | Andrey Utkin <andrey_utkin@gentoo.org> | 2020-12-01 13:48:19 +0000 |
commit | f47143995e6272d766ff41e752a10f1344a0c84e (patch) | |
tree | 79f48083be33e104ff02051b780707ad165b5288 /x11-wm/herbstluftwm/herbstluftwm-0.7.2-r1.ebuild | |
parent | x11-wm/herbstluftwm: add myself as co-maintainer (diff) | |
download | gentoo-f47143995e6272d766ff41e752a10f1344a0c84e.tar.gz gentoo-f47143995e6272d766ff41e752a10f1344a0c84e.tar.bz2 gentoo-f47143995e6272d766ff41e752a10f1344a0c84e.zip |
x11-wm/herbstluftwm: remove old 0.7.2-r1, 0.8.2
Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Andrey Utkin <andrey_utkin@gentoo.org>
Diffstat (limited to 'x11-wm/herbstluftwm/herbstluftwm-0.7.2-r1.ebuild')
-rw-r--r-- | x11-wm/herbstluftwm/herbstluftwm-0.7.2-r1.ebuild | 72 |
1 files changed, 0 insertions, 72 deletions
diff --git a/x11-wm/herbstluftwm/herbstluftwm-0.7.2-r1.ebuild b/x11-wm/herbstluftwm/herbstluftwm-0.7.2-r1.ebuild deleted file mode 100644 index 74f4e1a1a6dc..000000000000 --- a/x11-wm/herbstluftwm/herbstluftwm-0.7.2-r1.ebuild +++ /dev/null @@ -1,72 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -inherit toolchain-funcs bash-completion-r1 - -if [[ ${PV} == 9999* ]] ; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/herbstluftwm/herbstluftwm" - BDEPEND="app-text/asciidoc" -else - SRC_URI="https://herbstluftwm.org/tarballs/${P}.tar.gz" - KEYWORDS="amd64 x86" - BDEPEND="" -fi - -DESCRIPTION="A manual tiling window manager for X" -HOMEPAGE="https://herbstluftwm.org/" - -LICENSE="BSD-2" -SLOT="0" -IUSE="examples xinerama zsh-completion" - -DEPEND=" - >=dev-libs/glib-2.24:2 - x11-libs/libX11 - x11-libs/libXext - xinerama? ( x11-libs/libXinerama ) -" -RDEPEND=" - ${DEPEND} - app-shells/bash - zsh-completion? ( app-shells/zsh ) -" -BDEPEND+=" - virtual/pkgconfig -" - -src_compile() { - tc-export CC CXX LD PKG_CONFIG - - emake LDXX="$(tc-getCXX)" COLOR=0 VERBOSE= \ - $(use xinerama || echo XINERAMAFLAGS= XINERAMALIBS= ) -} - -src_install() { - dobin herbstluftwm herbstclient - dodoc BUGS MIGRATION NEWS README.md - - doman doc/{herbstluftwm,herbstclient}.1 - - exeinto /etc/xdg/herbstluftwm - doexe share/{autostart,panel.sh,restartpanels.sh} - - insinto /usr/share/xsessions - doins share/herbstluftwm.desktop - - newbashcomp share/herbstclient-completion herbstclient - - if use zsh-completion ; then - insinto /usr/share/zsh/site-functions - doins share/_herbstclient - fi - - if use examples ; then - exeinto /usr/share/doc/${PF}/examples - doexe scripts/*.sh - docinto examples - dodoc scripts/README - docompress -x /usr/share/doc/${PF}/examples - fi -} |