summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'x11-terms/evilvte/evilvte-0.4.4_pre6.ebuild')
-rw-r--r--x11-terms/evilvte/evilvte-0.4.4_pre6.ebuild47
1 files changed, 0 insertions, 47 deletions
diff --git a/x11-terms/evilvte/evilvte-0.4.4_pre6.ebuild b/x11-terms/evilvte/evilvte-0.4.4_pre6.ebuild
deleted file mode 100644
index 6e8930b42b0f..000000000000
--- a/x11-terms/evilvte/evilvte-0.4.4_pre6.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-terms/evilvte/evilvte-0.4.4_pre6.ebuild,v 1.2 2008/11/27 06:14:45 ssuominen Exp $
-
-MY_P=${P/_/\~}
-
-inherit toolchain-funcs
-
-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"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND="x11-libs/vte
- >=x11-libs/gtk+-2"
-DEPEND="${RDEPEND}
- dev-util/pkgconfig"
-
-S=${WORKDIR}/${MY_P}
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- if [[ -f /etc/${PN}/config.h ]]; then
- cp /etc/${PN}/config.h src/ || die "copying config.h failed."
- fi
-}
-
-src_compile() {
- ./configure --prefix=/usr || die "./configure failed."
- emake LDFLAGS="${LDFLAGS}" OPTFLAGS="${CFLAGS}" CC="$(tc-getCC)" || 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."
-}