blob: a59f3a85458d09f45c7a7373d49b1e877e66b86b (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-wm/ratpoison/ratpoison-1.3.0_beta3.ebuild,v 1.1 2003/10/14 23:24:20 weeve Exp $
DESCRIPTION="Ratpoison is an extremely light-weight and barebones wm modelled after screen"
HOMEPAGE="http://ratpoison.sourceforge.net/"
LICENSE="GPL-2"
PV=`echo ${PV} | sed 's/_/-/'`
P="${PN}-${PV}"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
SLOT="0"
KEYWORDS="~x86 ~sparc ~ppc"
IUSE=""
S=${WORKDIR}/${P}
src_compile() {
econf
emake CFLAGS="${CFLAGS} -I/usr/X11R6/include" || die
}
src_install() {
einstall
dodoc INSTALL TODO README NEWS AUTHORS ChangeLog
docinto example
dodoc contrib/{genrpbindings,ratpoison.el,split.sh} doc/{ipaq.ratpoisonrc,sample.ratpoisonrc}
rm -rf $D/usr/share/{doc/ratpoison,ratpoison}
}
|