blob: 74946abc7984e7d3636a62f05d9cbbf7979d99c0 (
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
30
31
32
33
34
35
36
37
38
39
40
41
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-misc/xtrlock/xtrlock-2.0-r1.ebuild,v 1.9 2007/07/21 12:11:23 omp Exp $
inherit eutils flag-o-matic
MY_P=${P/-/_}-6
DESCRIPTION="A simplistic screen locking program for X"
SRC_URI="mirror://debian/dists/potato/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 ppc ~amd64"
IUSE=""
RDEPEND="x11-libs/libX11
x11-misc/imake"
DEPEND="${RDEPEND}
x11-proto/xproto"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}/${P}-overflow.patch"
epatch "${FILESDIR}/${P}-gcc34.patch"
}
src_compile() {
xmkmf || die "xmkmf failed"
cp Makefile Makefile.orig
make CFLAGS="${CFLAGS} -DSHADOW_PWD" xtrlock || die "make failed"
}
src_install() {
dobin xtrlock
chmod u+s "${D}/usr/bin/xtrlock"
mv xtrlock.man xtrlock.1
doman xtrlock.1
}
|