blob: b6e316d0b01f735407542a978920486fe38ae4ec (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-misc/e-fancylauncher/e-fancylauncher-0.7-r1.ebuild,v 1.6 2005/07/09 15:57:38 swegener Exp $
IUSE=""
DESCRIPTION="E-FancyLauncher epplet"
SRC_URI="http://www.docs.uu.se/~adavid/Epplets/E-FancyLauncher-${PV}.tgz"
HOMEPAGE="http://www.docs.uu.se/~adavid/Epplets"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 sparc"
S=${WORKDIR}/E-FancyLauncher
DEPEND="x11-plugins/epplets"
src_compile() {
make clean
emake
}
src_install () {
sed -e 's/mkdir/mkdir -p/' ${S}/makefile > tmp~
mv tmp~ makefile
dodir /usr/bin
dodir /usr/share/enlightenment/epplet_icons
EBIN=${D}/usr/bin \
EROOT=${D}/usr/share/enlightenment \
einstall ${EBIN} ${EROOT}
dodoc ChangeLog
}
|