blob: 7a3896722e42e1edcb3cc8c8b7a689ab9e7453eb (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-wm/ratpoison/ratpoison-1.1.1.ebuild,v 1.4 2002/12/25 01:04:13 seemant Exp $
DESCRIPTION="Ratpoison is an extremely light-weight and barebones wm modelled after screen."
HOMEPAGE="http://ratpoison.sourceforge.net"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"
DEPEND="virtual/x11"
src_compile() {
econf
emake CFLAGS="${CFLAGS} -I/usr/X11R6/include" || die "Failed to compile"
}
src_install() {
einstall
# handle docs/misc
dodoc INSTALL TODO README NEWS AUTHORS ChangeLog
docinto example
dodoc doc/ipaq.ratpoisonrc contrib/{genrpbindings,ratpoison.el,split.sh}
rm -Rf ${D}/usr/share/{doc/ratpoison,ratpoison}
insinto /etc
doins ${FILESDIR}/ratpoisonrc ratpoisonrc
}
|