blob: 9ea62a8c3be6da81e9d81c1551a0d3c28afe5aa7 (
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-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
DESCRIPTION="Jad - The fast JAva Decompiler"
HOMEPAGE="http://www.kpdus.com/jad.html"
SRC_URI="http://www.kpdus.com/jad/linux/jadls158.zip"
KEYWORDS="amd64 x86"
SLOT="0"
LICENSE="freedist"
IUSE=""
DEPEND="app-arch/unzip"
RDEPEND=""
S=${WORKDIR}
RESTRICT="strip"
QA_PREBUILT="*"
src_install() {
into /opt
dobin jad || die "dobin failed"
dodoc Readme.txt || die "dodoc failed"
}
|