blob: c31819e00ea0a27f419cff41da35f5c846ccd57a (
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-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmdrawer/wmdrawer-0.10.5-r2.ebuild,v 1.4 2006/01/24 23:09:29 nelchael Exp $
inherit eutils
IUSE="gtk"
DESCRIPTION="wmDrawer is a dock application (dockapp) which provides a drawer (retractable button bar) to launch applications"
SRC_URI="http://people.easter-eggs.org/~valos/wmdrawer/${P}.tar.gz"
HOMEPAGE="http://people.easter-eggs.org/~valos/wmdrawer/"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="amd64 ppc ~sparc x86"
DEPEND="gtk? ( >=x11-libs/gtk+-2 )
!gtk? ( >=media-libs/gdk-pixbuf-0.22.0 )
>=sys-apps/sed-4"
src_unpack ()
{
unpack ${A}
cd ${S}
if use gtk ; then
epatch ${FILESDIR}/${P}-gtk+-2.patch
fi
# Honour Gentoo CFLAGS
sed -i -e "s|-O3|${CFLAGS}|" Makefile
}
src_compile()
{
emake || die "make failed!"
}
src_install()
{
dobin wmdrawer
dodoc README TODO AUTHORS ChangeLog wmdrawerrc.example
gzip -cd doc/wmdrawer.1x.gz > wmdrawer.1
doman wmdrawer.1
}
|