mirror of
https://github.com/pentoo/pentoo-overlay
synced 2025-12-22 16:23:57 +01:00
42 lines
1.2 KiB
Bash
42 lines
1.2 KiB
Bash
# Copyright 1999-2013 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: $
|
|
|
|
EAPI="4"
|
|
|
|
inherit eutils multilib
|
|
|
|
DESCRIPTION="A standalone graphical utility that displays Java source codes of .class file"
|
|
HOMEPAGE="http://java.decompiler.free.fr/?q=jdgui"
|
|
SRC_URI="http://jd.benow.ca/jd-gui/downloads/jd-gui-${PV}.linux.i686.tar.gz"
|
|
LICENSE="Unknown"
|
|
SLOT="0"
|
|
KEYWORDS="x86 amd64"
|
|
IUSE=""
|
|
RESTRICT="strip"
|
|
|
|
S=${WORKDIR}
|
|
|
|
#pkg_nofetch() {
|
|
# einfo "Please download ${P}.linux.i686.tar.gz"
|
|
# einfo "from ${HOMEPAGE} and place it in ${DISTDIR}"
|
|
#}
|
|
|
|
src_prepare() {
|
|
#remove gnome related stuff (nautilus)
|
|
rm -rf contrib
|
|
}
|
|
|
|
src_install() {
|
|
exeinto "/usr/bin"
|
|
doexe "${WORKDIR}/jd-gui"
|
|
dodoc readme.txt
|
|
}
|
|
|
|
pkg_postinst() {
|
|
einfo "JD-GUI is free for non-commercial use."
|
|
einfo "This means that JD-GUI shall not be included or embedded into commercial software products. "
|
|
einfo "Nevertheless, JD-GUI may be freely used for personal needs in a commercial or non-commercial environments."
|
|
ewarn "JD-GUI creates a jd-gui.cfg file in the current working directory."
|
|
ewarn "Make sure you run it in a directory you can remove afterwards"
|
|
}
|