blob: dfdda7f2ce9132a2018af1e5e765adbf525a21b0 (
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
|
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit toolchain-funcs
DESCRIPTION="An automatic X screen-locker/screen-saver"
HOMEPAGE="http://www.ibiblio.org/pub/Linux/X11/screensavers/"
DEB_REV_MAJ="$(ver_cut 4)"
DEB_REV_MIN="$(ver_cut 6)"
DEB_REVISION="${DEB_REV_MAJ/p}.${DEB_REV_MIN/p}"
SRC_URI="
http://www.ibiblio.org/pub/Linux/X11/screensavers/${P/_p*/}.tgz
mirror://debian/pool/main/x/${PN}/${PN}_${PV/_p*/}-${DEB_REVISION}.debian.tar.xz
"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~sparc ~x86"
RDEPEND="
x11-libs/libXScrnSaver
"
DEPEND="
${RDEPEND}
app-text/rman
x11-base/xorg-proto
x11-misc/imake
"
S=${WORKDIR}/${P/_p*}
src_prepare() {
eapply "${WORKDIR}"/debian/patches/*.patch
default
}
src_configure() {
xmkmf || die
}
src_compile() {
emake \
CC="$(tc-getCC)" \
CDEBUGFLAGS="${CFLAGS}" \
EXTRA_LDOPTIONS="${LDFLAGS}"
}
src_install () {
dobin xautolock
newman xautolock.man xautolock.1
dodoc Changelog Readme Todo
}
|