blob: 6d1825269412f48a4f052713364474db8a2ffa3d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-wm/scrotwm/scrotwm-0.9.34.ebuild,v 1.1 2011/10/15 09:00:04 xmw Exp $
EAPI=3
inherit eutils multilib toolchain-funcs
DESCRIPTION="Small dynamic tiling window manager for X11"
HOMEPAGE="http://www.scrotwm.org"
SRC_URI="http://opensource.conformal.com/snapshots/${PN}/${P}.tgz"
LICENSE="ISC"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND="x11-misc/dmenu"
DEPEND="${DEPEND}
x11-libs/libX11
x11-libs/libXrandr
x11-libs/libXtst"
S=${WORKDIR}/${P}/linux
src_prepare() {
epatch "${FILESDIR}"/${P}-makefile.patch
tc-export CC
}
src_install() {
emake PREFIX="${D}"usr LIBDIR="${D}usr/$(get_libdir)" install || die
}
|