blob: 2917800d84935125ad07f23215b0849254eb472f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Copyright 2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author Scott Garner <mrfab@arn.net> Maintainer Spider <spider@gentoo.org>
# $Header: /var/cvsroot/gentoo-x86/x11-misc/xautolock/xautolock-2.1.ebuild,v 1.2 2002/04/27 23:34:21 bangert Exp $
DESCRIPTION="An automatic X screen-locker/screen-saver."
SRC_URI="http://www.ibiblio.org/pub/Linux/X11/screensavers/${P}.tgz"
HOMEPAGE="http://www.ibiblio.org/pub/Linux/X11/screensavers/"
DEPEND="virtual/x11"
src_compile() {
xmkmf || die
emake || die
}
src_install () {
into /usr
dobin xautolock || die
newman xautolock.man xautolock.1
dodoc Changelog Readme Todo
}
|