summaryrefslogtreecommitdiff
blob: 3e0ccd702c278fcd46005712453e90aeacb1ac71 (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
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=7

MY_P=${P/-/_}

DESCRIPTION="App for placing icons in a menu which auto-hides"
HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage"
SRC_URI="mirror://gentoo/${MY_P}.tar.gz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc x86"

RDEPEND="
	dev-lang/perl
	dev-perl/Gtk2
	x11-libs/gtk+:2"

src_compile() { :; }

src_install() {
	dobin iconbox{,conf}

	einstalldocs
	doman *.1
}