blob: 7d47e32c505062e8ce6e66818508f1fed606ab34 (
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
|
# 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.3 2002/07/08 21:31:08 aliz 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/"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"
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
}
|