blob: 0ac967cdb8cedbb600e2694e0fd6dac720eb277b (
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-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/yasuc/yasuc-0.4.1.ebuild,v 1.2 2006/12/18 17:25:08 hd_brummy Exp $
RESTRICT="strip"
IUSE=""
DESCRIPTION="Uptime Client for www.uptime-project.net"
SRC_URI="x86? ( http://www.i-glyphix.net/files/${P}_x86_linux.tar.bz2 )
amd64? ( http://www.i-glyphix.net/files/${P}_x86-64_linux.tar.bz2 )"
HOMEPAGE="http://www.uptime-project.net"
LICENSE="as-is"
KEYWORDS="~x86 ~amd64 -*"
SLOT="0"
S="${WORKDIR}/dist/${P}"
src_install() {
dobin ${PN}
insinto /etc
insopts -m0600
doins ${PN}.conf
dodoc README
}
pkg_postinst() {
einfo "Don't forget to edit /etc/yasuc.conf"
einfo "and add a cronjob (e.g. \"crontab -e\")"
}
|