# Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 inherit autotools eutils DESCRIPTION="A drop down, quake-like terminal emulator" HOMEPAGE="http://code.google.com/p/stjerm-terminal-emulator/" SRC_URI="http://stjerm-terminal-emulator.googlecode.com/files/${P}.tar.bz2" LICENSE="GPL-2" KEYWORDS="amd64 x86" SLOT="0" IUSE="" DEPEND=">=x11-libs/vte-0.16 dev-util/pkgconfig >=x11-libs/gtk+-2.10" src_unpack() { unpack ${A} ; cd ${S} eaclocal || die "aclocal failed" eautoheader || die "autoheader failed" eautoconf || die "autoconf faild" eautomake || die "automake failed" } src_compile() { econf --prefix=/usr/ || die "configure faild" emake || die "make failed" } src_install() { make DESTDIR="${D}" install || die "make install failed" }