| 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-plugins/wmlife/wmlife-1.0.0.ebuild,v 1.3 2011/03/28 15:04:30 nirbheek Exp $
|
| 4 |
|
| 5 |
EAPI="1"
|
| 6 |
|
| 7 |
inherit eutils
|
| 8 |
|
| 9 |
DESCRIPTION="dockapp running Conway's Game of Life (and program launcher)."
|
| 10 |
HOMEPAGE="http://www.swanson.ukfsn.org/#wmlife"
|
| 11 |
SRC_URI="http://www.swanson.ukfsn.org/${PN}/${P}.tar.gz"
|
| 12 |
|
| 13 |
LICENSE="GPL-2"
|
| 14 |
SLOT="0"
|
| 15 |
KEYWORDS="~amd64 ~x86"
|
| 16 |
IUSE=""
|
| 17 |
|
| 18 |
RDEPEND="x11-libs/gtk+:2
|
| 19 |
>=gnome-base/gnome-panel-2
|
| 20 |
>=gnome-base/libgnomeui-2
|
| 21 |
x11-libs/libX11
|
| 22 |
x11-libs/libXext
|
| 23 |
x11-libs/libSM
|
| 24 |
x11-libs/libICE
|
| 25 |
x11-libs/libXt"
|
| 26 |
DEPEND="${RDEPEND}
|
| 27 |
virtual/pkgconfig"
|
| 28 |
|
| 29 |
src_unpack() {
|
| 30 |
unpack ${A}
|
| 31 |
cd "${S}"
|
| 32 |
epatch "${FILESDIR}"/${P}-stringh.patch
|
| 33 |
}
|
| 34 |
|
| 35 |
src_compile() {
|
| 36 |
econf --enable-session
|
| 37 |
emake || die "emake failed."
|
| 38 |
}
|
| 39 |
|
| 40 |
src_install() {
|
| 41 |
emake DESTDIR="${D}" install || die "emake install failed."
|
| 42 |
dodoc AUTHORS ChangeLog NEWS README
|
| 43 |
}
|