summaryrefslogtreecommitdiff
blob: de6c776f098a7a8fb5e7458cf5d99a922726e0ad (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.1 2004/02/06 22:56:45 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
}