blob: 25381e5e6d13619effe6ba33bfa4e911f71d99c4 (
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-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/xtrlock/xtrlock-2.0.ebuild,v 1.6 2002/10/17 00:27:13 vapier Exp $
MY_P=${PN}_${PV}-6
S=${WORKDIR}/${P}
DESCRIPTION="A simplistic screen locking program for X"
SRC_URI="ftp://ftp.debian.org/debian/dists/stable/main/source/x11/${MY_P}.tar.gz"
HOMEPAGE="ftp://ftp.debian.org/debian/dists/stable/main/source/x11/"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86"
DEPEND="virtual/x11"
RDEPEND="${DEPEND}"
src_compile() {
xmkmf || die
cp Makefile Makefile.orig
make CFLAGS="${CFLAGS} -DSHADOW_PWD" xtrlock || die
}
src_install() {
dobin xtrlock
chmod u+s ${D}/usr/bin/xtrlock
mv xtrlock.man xtrlock.1
doman xtrlock.1
}
|