diff options
author | Chema Alonso Josa <nimiux@gentoo.org> | 2017-08-24 22:49:18 +0200 |
---|---|---|
committer | Chema Alonso Josa <nimiux@gentoo.org> | 2017-08-24 22:49:45 +0200 |
commit | b892648b42ecb5610a7b8a9c3e86007d46e5dfb3 (patch) | |
tree | 68009f0b83b99f7516b495db39dbdd50b2d58814 /x11-wm/stumpwm | |
parent | x11-misc/dunst: Fix dependencies (bug #628840). (diff) | |
download | gentoo-b892648b42ecb5610a7b8a9c3e86007d46e5dfb3.tar.gz gentoo-b892648b42ecb5610a7b8a9c3e86007d46e5dfb3.tar.bz2 gentoo-b892648b42ecb5610a7b8a9c3e86007d46e5dfb3.zip |
x11-wm/stumpwm: Drops live ebuild
Package-Manager: Portage-2.3.6, Repoman-2.3.1
Diffstat (limited to 'x11-wm/stumpwm')
-rw-r--r-- | x11-wm/stumpwm/stumpwm-9999.ebuild | 53 |
1 files changed, 0 insertions, 53 deletions
diff --git a/x11-wm/stumpwm/stumpwm-9999.ebuild b/x11-wm/stumpwm/stumpwm-9999.ebuild deleted file mode 100644 index cc03cd16e748..000000000000 --- a/x11-wm/stumpwm/stumpwm-9999.ebuild +++ /dev/null @@ -1,53 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -inherit autotools common-lisp-3 git-2 xdg-utils - -DESCRIPTION="Stumpwm is a Window Manager written entirely in Common Lisp." -HOMEPAGE="https://stumpwm.github.io/" -EGIT_REPO_URI="https://github.com/${PN}/${PN}" - -LICENSE="GPL-2" -SLOT="0" -IUSE="doc clisp emacs +sbcl" - -DEPEND="dev-lisp/common-lisp-controller - virtual/commonlisp - dev-lisp/cl-ppcre - doc? ( virtual/texi2dvi )" - -RDEPEND="${DEPEND} - emacs? ( app-emacs/slime ) - !clisp? ( !sbcl? ( !amd64? ( dev-lisp/cmucl ) ) ) - clisp? ( >=dev-lisp/clisp-2.38-r2[X,-new-clx] ) - sbcl? ( >=dev-lisp/sbcl-1.1.15 dev-lisp/clx )" - -do_doc() { - local pdffile="${PN}.pdf" - - dodoc AUTHORS NEWS README.md - texi2pdf -o "${pdffile}" "${PN}.texi.in" && dodoc "${pdffile}" || die -} - -src_prepare() { - # Fix ASDF dir - sed -i -e "/^STUMPWM_ASDF_DIR/s|\`pwd\`|${CLPKGDIR}|" configure.ac || die - eautoreconf -} - -src_configure() { - xdg_environment_reset -} - -src_compile() { - emake -j1 -} - -src_install() { - common-lisp-install-sources *.lisp - common-lisp-install-asdf - dobin "${PN}" - use doc && do_doc -} |