blob: 3b5bdcd11259d824a8efa931db5a338ce468dfdb (
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-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=3
inherit eutils
DESCRIPTION="A GUI for GNU Arch"
HOMEPAGE="http://www.nongnu.org/archway/"
SRC_URI="https://savannah.nongnu.org/download/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE=""
#"ArchWay requires gtk-2.4 and gtk2-perl." -$HOMEPAGE
#DEPEND=">=dev-util/tla-1.1
# >=dev-lang/perl-5.8.0
# >=dev-perl/Gtk2-1.040
# >=dev-perl/glib-perl-1.040
# >=x11-libs/gtk+-2.4.0"
DEPEND=""
RDEPEND="x11-libs/gtk+:2
>=dev-perl/Gtk2-1.040"
src_install() {
emake DESTDIR="${D}" prefix=/usr install || die
}
|