blob: 3bb8b776732091c62885bdd31e598a830b2df020 (
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
|
# 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.ebuild,v 1.4 2004/06/24 22:16:33 agriffis Exp $
S="${WORKDIR}/Epplets-${PV}"
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 () {
dodir /usr/bin
dodir /usr/share/enlightenment
EBIN=${D}/usr/bin \
EROOT=${D}/usr/share/enlightenment \
einstall
dodoc ChangeLog
}
|