46 lines
1.3 KiB
Bash
46 lines
1.3 KiB
Bash
# Copyright 1999-2014 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Id$
|
|
|
|
EAPI=3
|
|
inherit toolchain-funcs multilib
|
|
|
|
DESCRIPTION="A minimalist, no frills window manager for X"
|
|
SRC_URI="http://www.6809.org.uk/evilwm/${P}.tar.gz"
|
|
HOMEPAGE="http://evilwm.sourceforge.net"
|
|
|
|
LICENSE="MIT 9wm"
|
|
SLOT="0"
|
|
KEYWORDS="alpha amd64 ppc sparc x86 ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~sparc64-solaris"
|
|
IUSE=""
|
|
|
|
RDEPEND="x11-libs/libXext
|
|
x11-libs/libXrandr"
|
|
|
|
DEPEND="${RDEPEND}
|
|
x11-proto/xextproto
|
|
x11-proto/xproto"
|
|
|
|
src_prepare() {
|
|
sed -i 's/^#define DEF_FONT.*/#define DEF_FONT "fixed"/' evilwm.h \
|
|
|| die "sed font failed"
|
|
sed -i -e '/^CFLAGS/s/ -Os/ /' \
|
|
-e 's/install -s /install /' Makefile || die "sed opt failed"
|
|
}
|
|
|
|
src_compile() {
|
|
emake CC="$(tc-getCC)" prefix="\$(DESTDIR)/${EPREFIX}/usr" XROOT="${EPREFIX}/usr" LDPATH="-L${EPREFIX}/usr/$(get_libdir)" || die
|
|
}
|
|
|
|
src_install () {
|
|
make DESTDIR="${D}" prefix="\$(DESTDIR)/${EPREFIX}/usr" install || die "make install failed"
|
|
|
|
dodoc ChangeLog README TODO || die "dodoc failed"
|
|
|
|
echo -e "#!${EPREFIX}/bin/sh\nexec \"${EPREFIX}/usr/bin/${PN}\"" > "${T}/${PN}"
|
|
exeinto /etc/X11/Sessions
|
|
doexe "${T}/${PN}" || die "/etc/X11/Sessions failed"
|
|
|
|
insinto /usr/share/xsessions
|
|
doins "${FILESDIR}/${PN}.desktop" || die "${PN}.desktop failed."
|
|
}
|