| 1 |
# Copyright 1999-2012 Gentoo Foundation
|
| 2 |
# Distributed under the terms of the GNU General Public License v2
|
| 3 |
# $Header: /var/cvsroot/gentoo-x86/x11-wm/oroborus/oroborus-2.0.20.ebuild,v 1.5 2012/03/18 15:54:59 armin76 Exp $
|
| 4 |
|
| 5 |
EAPI=4
|
| 6 |
|
| 7 |
DESCRIPTION="Small and fast window manager."
|
| 8 |
HOMEPAGE="http://www.oroborus.org"
|
| 9 |
SRC_URI="mirror://debian/pool/main/o/${PN}/${PN}_${PV}.tar.gz"
|
| 10 |
|
| 11 |
LICENSE="GPL-2"
|
| 12 |
SLOT="0"
|
| 13 |
KEYWORDS="amd64 ppc x86"
|
| 14 |
IUSE="gnome"
|
| 15 |
|
| 16 |
RDEPEND="x11-libs/libXpm
|
| 17 |
x11-libs/libXext
|
| 18 |
x11-libs/libSM
|
| 19 |
x11-libs/libICE
|
| 20 |
x11-libs/libX11"
|
| 21 |
DEPEND="${RDEPEND}
|
| 22 |
x11-proto/xproto
|
| 23 |
x11-proto/xextproto"
|
| 24 |
|
| 25 |
src_configure() {
|
| 26 |
econf --disable-dependency-tracking
|
| 27 |
}
|
| 28 |
|
| 29 |
src_install () {
|
| 30 |
emake DESTDIR="${D}" install
|
| 31 |
|
| 32 |
if use gnome; then
|
| 33 |
insinto /usr/share/gnome/wm-properties
|
| 34 |
doins "${FILESDIR}"/${PN}.desktop
|
| 35 |
fi
|
| 36 |
|
| 37 |
dodoc AUTHORS ChangeLog example.${PN}rc README TODO
|
| 38 |
}
|