blob: 16ee8818f5851c97259cb0a10f3ab4c6aa7b30d1 (
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
34
35
36
37
38
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-wm/aewm++/aewm++-1.0.24.ebuild,v 1.9 2006/02/03 14:59:45 nelchael Exp $
inherit eutils
DESCRIPTION="A window manager with more modern features than aewm but with the same look and feel."
HOMEPAGE="http://sapphire.sourceforge.net/"
SRC_URI="mirror://sourceforge/sapphire/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc x86"
IUSE=""
RDEPEND="|| ( (
x11-libs/libX11
x11-libs/libXext )
virtual/x11 )"
DEPEND="${RDEPEND}
|| ( (
x11-proto/xproto
x11-proto/xextproto )
virtual/x11 )"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/gcc-3.4.patch
}
src_compile() {
make CFLAGS="${CXXFLAGS}" || die
}
src_install() {
make DESTDIR=${D} install || die
dodoc ChangeLog README LICENSE
}
|