blob: 16330fb670814860d4837814c25784af366030da (
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
|
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
SRC_URI="mirror://debian/pool/main/s/${PN}/${PN}_${PV}.orig.tar.gz -> ${P}.tar.gz"
DESCRIPTION="Shows a movable and resizable spotlight on the screen"
HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage"
LICENSE="GPL-3+"
SLOT="0"
KEYWORDS="~x86 ~amd64"
IUSE=""
COMMON_DEPEND="sys-devel/gettext
x11-libs/gtk+:2"
DEPEND="${COMMON_DEPEND}
dev-util/intltool"
RDEPEND="${COMMON_DEPEND}
dev-libs/atk
media-libs/fontconfig
>=media-libs/libpng-1.2
sci-libs/gsl"
src_install() {
emake DESTDIR="${D}" install
}
|