# Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=5 inherit autotools eutils DESCRIPTION="A drop down, quake-like terminal emulator" HOMEPAGE="https://github.com/stjerm/stjerm" SRC_URI="https://github.com/stjerm/stjerm/archive/v${PV}.zip" LICENSE="GPL-2" KEYWORDS="amd64 x86" SLOT="0" IUSE="" DEPEND="x11-libs/vte:0 virtual/pkgconfig >x11-libs/gtk+-2.6:2[xinerama]" src_unpack() { unpack ${A} ; cd ${S} eaclocal || die "aclocal failed" eautoheader || die "autoheader failed" eautoconf || die "autoconf faild" eautomake || die "automake failed" } src_compile() { emake || die "make failed" } src_install() { make DESTDIR="${D}" install || die "make install failed" }