blob: 9128cf22ca4fc10848760975ecb5ec0f0783befd (
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-misc/xlockmore/xlockmore-5.25.ebuild,v 1.5 2008/05/12 18:31:14 corsair Exp $
inherit flag-o-matic pam
DESCRIPTION="Just another screensaver application for X"
HOMEPAGE="http://www.tux.org/~bagleyd/xlockmore.html"
SRC_URI="http://ftp.tux.org/pub/tux/bagleyd/${PN}/${P}/${P}.tar.bz2"
LICENSE="BSD GPL-2"
SLOT="0"
KEYWORDS="amd64 hppa ~ppc ppc64 ~sparc ~x86"
IUSE="crypt debug nas esd motif opengl truetype gtk pam xlockrc unicode"
RDEPEND="opengl? ( media-libs/mesa )
x11-libs/libX11
x11-libs/libXmu
x11-libs/libXext
x11-libs/libXt
x11-libs/libXpm
media-libs/freetype
pam? ( virtual/pam )
nas? ( media-libs/nas )
esd? ( media-sound/esound )
motif? ( x11-libs/openmotif )
gtk? ( >=x11-libs/gtk+-2 )"
DEPEND="${RDEPEND}
dev-util/pkgconfig
x11-proto/xineramaproto"
src_compile() {
econf --enable-appdefaultdir=/usr/share/X11/app-defaults \
--enable-vtlock --without-ftgl --without-gltt \
$(use_enable crypt) \
$(use_with opengl) \
$(use_with opengl mesa) \
$(use_enable xlockrc) \
$(use_enable unicode use-mb) \
$(use_enable pam) \
$(use_with truetype ttf) \
$(use_with gtk gtk2) \
$(use_with motif) \
$(use_with esd esound) \
$(use_with nas) \
$(use_with debug editres)
# suid-with-lazy-bindings problem
append-flags $(bindnow-flags)
emake || die "emake failed."
}
src_install() {
einstall xapploaddir="${D}/usr/share/X11/app-defaults" \
mandir="${D}/usr/share/man/man1" || die "einstall failed."
pamd_mimic_system xlock auth
use pam && fperms 755 /usr/bin/xlock
dohtml docs/*.html
rm docs/*.html
dodoc README docs/*
}
|