blob: cfd9973fa440f4dc96f87bee962a3a5eca6400e1 (
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-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=0
inherit eutils multilib
DESCRIPTION="A system tray dockapp for window managers supporting docking"
HOMEPAGE="http://freshmeat.net/projects/peksystray"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha ~amd64 ppc x86"
IUSE=""
RDEPEND="x11-libs/libX11
x11-libs/libXt"
DEPEND="${RDEPEND}"
src_compile() {
econf --x-libraries=/usr/$(get_libdir) || die
emake || die
}
src_install() {
dobin src/peksystray
dodoc AUTHORS NEWS README THANKS TODO
}
|