blob: cf2f041dd780a0479f481f3173da50a68f581632 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-misc/xscreensaver-app/xscreensaver-app-2.3.ebuild,v 1.6 2005/11/01 10:46:49 nelchael Exp $
IUSE=""
MY_PN=${PN/-a/.A}
MY_PN=${MY_PN/xs/XS}
MY_PN=${MY_PN/s/S}
S="${WORKDIR}/${MY_PN}-${PV}"
DESCRIPTION="XScreenSaver dockapp for the Window Maker window manager."
SRC_URI=" http://www.asleep.net/download/${MY_PN}-${PV}.tar.gz"
HOMEPAGE="http://xscreensaverapp.sourceforge.net/"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 ~amd64"
DEPEND="virtual/x11
x11-libs/libdockapp"
RDEPEND="x11-misc/xscreensaver"
src_compile() {
econf || die "Configuration failed"
emake || die "Make Failed"
}
src_install () {
einstall || die "Install failed"
dodoc README NEWS ChangeLog TODO AUTHORS
}
|