diff options
Diffstat (limited to 'dev-util/amtterm/amtterm-1.3-r1.ebuild')
-rw-r--r-- | dev-util/amtterm/amtterm-1.3-r1.ebuild | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/dev-util/amtterm/amtterm-1.3-r1.ebuild b/dev-util/amtterm/amtterm-1.3-r1.ebuild new file mode 100644 index 000000000000..2ab3ff64d88c --- /dev/null +++ b/dev-util/amtterm/amtterm-1.3-r1.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +inherit eutils + +DESCRIPTION="A nice tool to manage amt-enabled machines" +HOMEPAGE="https://www.kraxel.org/blog/linux/amtterm/" +SRC_URI="https://www.kraxel.org/releases/${PN}/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~amd64-linux" +IUSE="gtk" + +DEPEND="gtk? ( + x11-libs/gtk+:2 + x11-libs/vte:0 )" +RDEPEND="${DEPEND} + dev-perl/SOAP-Lite" + +src_prepare() { + sed -i -e 's|\(INSTALL_BINARY := \$(INSTALL)\) \$(STRIP)|\1|' mk/Variables.mk || die +} + +src_configure() { + echo "LIB := $(get_libdir)" > Make.config || die + + # enable gamt + echo "HAVE_GTK := $(usex gtk)" >> Make.config || die + echo "HAVE_VTE := $(usex gtk)" >> Make.config || die +} + +src_compile() { + prefix="/usr" emake || die +} + +src_install() { + prefix="/usr" emake DESTDIR=${ED} install || die + + if ! use gtk; then + rm -rf "${D}"/usr/share/applications || die + rm -rf "${D}"/usr/share/man/man1/gamt* || die + fi +} |