blob: a329b0acc9593f8d11b26077f4d4dece26cefd1a (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/away/away-0.9.5.ebuild,v 1.4 2004/06/24 22:02:18 agriffis Exp $
DESCRIPTION="Terminal locking program with few additional features"
HOMEPAGE="http://unbeatenpath.net/software/away/"
SRC_URI="http://unbeatenpath.net/software/away/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 sparc"
DEPEND="virtual/glibc"
RDEPEND=">=sys-libs/pam-0.75"
IUSE=""
src_unpack () {
unpack ${A}
sed -i "s:-O2:${CFLAGS}:" ${S}/Makefile
}
src_compile() {
emake || die
}
src_install() {
into /usr
dobin away
insinto /etc/pam.d ; newins data/away.pam away
doman doc/*
dodoc BUGS AUTHORS COPYING NEWS README TODO data/awayrc
}
|