blob: 1870db1405a5dc03307a78ef91a0a65e6cb62ec3 (
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
39
40
41
42
43
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmblob/wmblob-1.0.1.ebuild,v 1.10 2007/01/13 09:19:51 beandog Exp $
inherit eutils
IUSE=""
DESCRIPTION="wmblob shows some blobs moving around"
SRC_URI="http://dockapps.org/download.php/id/440/${P}.tar.bz2"
HOMEPAGE="http://dockapps.org/file.php/id/155"
DEPEND=">=x11-libs/pango-1.4.0
>=x11-libs/gtk+-2.4.1
>=dev-util/pkgconfig-0.15.0
x11-libs/libXpm"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~amd64 ppc ~sparc x86"
src_unpack() {
unpack ${A}
cd ${S}
# We patch the ./configure script to make it honour Gentoo CFLAGS and the
# X11 location
epatch ${FILESDIR}/${PN}-configure-fixes.patch
}
src_compile() {
econf --with-x --prefix=/usr GENTOO_CFLAGS="${CFLAGS}" \
|| die "configuration failed"
emake || die "Compilation failed"
}
src_install() {
einstall || die "Installation failed"
dodoc README AUTHORS ChangeLog doc/how_it_works
insinto /usr/share/applications
doins ${FILESDIR}/${PN}.desktop
}
|