diff options
Diffstat (limited to 'x11-terms/evilvte/evilvte-0.4.5_pre2.ebuild')
-rw-r--r-- | x11-terms/evilvte/evilvte-0.4.5_pre2.ebuild | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/x11-terms/evilvte/evilvte-0.4.5_pre2.ebuild b/x11-terms/evilvte/evilvte-0.4.5_pre2.ebuild new file mode 100644 index 000000000000..c5b0d2e814ac --- /dev/null +++ b/x11-terms/evilvte/evilvte-0.4.5_pre2.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-terms/evilvte/evilvte-0.4.5_pre2.ebuild,v 1.1 2009/04/28 15:42:56 ssuominen Exp $ + +EAPI=2 +inherit toolchain-funcs versionator + +MY_P=${PN}-$(replace_version_separator 3 '~') +DESCRIPTION="VTE based, super lightweight terminal emulator" +HOMEPAGE="http://www.calno.com/evilvte" +SRC_URI="http://www.calno.com/${PN}/${MY_P}.tar.gz" + +LICENSE="|| ( BSD GPL-2 LGPL-2.1 )" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +# It seems libXtst is only used at build time, no NEEDED entry +RDEPEND="x11-libs/vte + >=x11-libs/gtk+-2:2" +DEPEND="${RDEPEND} + x11-libs/libXtst + dev-util/pkgconfig" + +S=${WORKDIR}/${MY_P} + +src_prepare() { + if [[ -f /etc/${PN}/config.h ]]; then + cp /etc/${PN}/config.h src/ || die "copying config.h failed" + fi +} + +src_configure() { + ./configure --prefix=/usr || die "./configure failed" +} + +src_compile() { + emake CC="$(tc-getCC)" OPTFLAGS="${CFLAGS}" || die "emake failed" +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed" + dodoc Changelog + insinto /etc/${PN} + doins src/config.h || die "doins failed" +} + +pkg_postinst() { + elog "Edit /etc/${PN}/config.h and re-emerge for custom configuration." +} |