blob: 8dcd3109a6b203d0f7cf95246aedab7d80e5d2f3 (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-sci/setimgr/setimgr-0.04e.ebuild,v 1.2 2003/07/02 12:33:39 aliz Exp $
DESCRIPTION="A SETI@home management program"
HOMEPAGE="http://www.arkady.demon.co.uk/seti/"
SRC_URI="http://www.arkady.demon.co.uk/seti/${P}.tar.gz"
LICENSE="as-is"
SLOT="0"
KEYWORDS="x86"
IUSE=""
DEPEND=""
RDEPEND=">=setiathome-3.08"
src_compile() {
emake || die
# mv simple_setup.sh setimgr-simple_setup.sh
}
src_install() {
dodoc README
newbin simple_setup.sh setimgr-simple_setup.sh
dobin setimgr
}
|