summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlrich Müller <ulm@gentoo.org>2012-06-15 12:27:06 +0000
committerUlrich Müller <ulm@gentoo.org>2012-06-15 12:27:06 +0000
commit99bf7c7fa9f8c2d880933532720eb20340078401 (patch)
tree46cf03af573b1986d9cc280b8313dfc40ab15864 /app-editors/qemacs
parentVersion bump. (diff)
downloadgentoo-2-99bf7c7fa9f8c2d880933532720eb20340078401.tar.gz
gentoo-2-99bf7c7fa9f8c2d880933532720eb20340078401.tar.bz2
gentoo-2-99bf7c7fa9f8c2d880933532720eb20340078401.zip
Remove old.
(Portage version: 2.1.10.65/cvs/Linux x86_64)
Diffstat (limited to 'app-editors/qemacs')
-rw-r--r--app-editors/qemacs/ChangeLog6
-rw-r--r--app-editors/qemacs/qemacs-0.4.0_pre20090420.ebuild74
2 files changed, 5 insertions, 75 deletions
diff --git a/app-editors/qemacs/ChangeLog b/app-editors/qemacs/ChangeLog
index d985eb428d22..92f06a585d66 100644
--- a/app-editors/qemacs/ChangeLog
+++ b/app-editors/qemacs/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for app-editors/qemacs
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/qemacs/ChangeLog,v 1.58 2012/06/15 10:03:00 johu Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/qemacs/ChangeLog,v 1.59 2012/06/15 12:27:06 ulm Exp $
+
+ 15 Jun 2012; Ulrich Müller <ulm@gentoo.org>
+ -qemacs-0.4.0_pre20090420.ebuild:
+ Remove old.
15 Jun 2012; Johannes Huber <johu@gentoo.org>
qemacs-0.4.0_pre20090420-r1.ebuild:
diff --git a/app-editors/qemacs/qemacs-0.4.0_pre20090420.ebuild b/app-editors/qemacs/qemacs-0.4.0_pre20090420.ebuild
deleted file mode 100644
index 808211be31cb..000000000000
--- a/app-editors/qemacs/qemacs-0.4.0_pre20090420.ebuild
+++ /dev/null
@@ -1,74 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/qemacs/qemacs-0.4.0_pre20090420.ebuild,v 1.8 2012/05/06 20:46:45 ssuominen Exp $
-
-EAPI=2
-
-inherit eutils flag-o-matic toolchain-funcs
-
-DESCRIPTION="QEmacs is a very small but powerful UNIX editor"
-HOMEPAGE="http://savannah.nongnu.org/projects/qemacs"
-SRC_URI="mirror://gentoo/${P}.tar.bz2"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="amd64 ~ppc x86"
-IUSE="X png unicode xv"
-RESTRICT="strip test"
-
-RDEPEND="!app-editors/qe
- X? ( x11-libs/libX11
- x11-libs/libXext
- xv? ( x11-libs/libXv ) )
- png? ( >=media-libs/libpng-1.2 )"
-
-DEPEND="${RDEPEND}
- <app-text/texi2html-5"
-
-S="${WORKDIR}/${PN}"
-
-src_prepare() {
- # Removes forced march setting and align-functions on x86, as they
- # would override user's CFLAGS..
- epatch "${FILESDIR}/${PN}-0.4.0_pre20080605-Makefile.patch"
- # Make backup files optional
- epatch "${FILESDIR}/${PN}-0.4.0_pre20080605-make_backup.patch"
-
- use unicode && epatch "${FILESDIR}/${PN}-0.3.2_pre20070226-tty_utf8.patch"
-
- # Change the manpage to reference a /real/ file instead of just an
- # approximation. Purely cosmetic!
- sed -i "s,^/usr/share/doc/qe,&-${PVR}," qe.1 || die
-}
-
-src_configure() {
- # when using any other CFLAGS than -O0, qemacs will segfault on startup,
- # see bug 92011
- replace-flags -O? -O0
- econf --cc="$(tc-getCC)" \
- $(use_enable X x11) \
- $(use_enable png) \
- $(use_enable xv)
-}
-
-src_compile() {
- # Does not support parallel building
- emake -j1 || die
-}
-
-src_install() {
- emake install DESTDIR="${D}" || die
- dodoc Changelog README TODO config.eg || die
- dohtml *.html || die
-
- # Fix man page location
- mv "${D}"/usr/{,share/}man || die
-
- # Install headers so users can build their own plugins.
- insinto /usr/include/qe
- doins cfb.h config.h cutils.h display.h fbfrender.h libfbf.h qe.h \
- qeconfig.h qestyles.h qfribidi.h || die
- cd libqhtml
- insinto /usr/include/qe/libqhtml
- doins css.h cssid.h htmlent.h || die
-}