blob: 7eeb865a5b8f0bb2b2a84f8739a0c171b3b36c48 (
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
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# 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.2 2004/04/11 14:46:14 pyrania 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"
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 ; doins data/away.pam
doman doc/*
dodoc BUGS AUTHORS COPYING NEWS README TODO data/awayrc
}
|