summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlrich Müller <ulm@gentoo.org>2010-05-23 19:35:26 +0000
committerUlrich Müller <ulm@gentoo.org>2010-05-23 19:35:26 +0000
commitadaf547f4db69f7e6f715724fbb938c9e4a7c52c (patch)
tree851733a24c4b0af791fa610a19a23b51ab311332 /app-editors
parentstable amd64, bug 310867 (diff)
downloadgentoo-2-adaf547f4db69f7e6f715724fbb938c9e4a7c52c.tar.gz
gentoo-2-adaf547f4db69f7e6f715724fbb938c9e4a7c52c.tar.bz2
gentoo-2-adaf547f4db69f7e6f715724fbb938c9e4a7c52c.zip
Remove old.
(Portage version: 2.1.8.3/cvs/Linux x86_64)
Diffstat (limited to 'app-editors')
-rw-r--r--app-editors/jasspa-microemacs/ChangeLog6
-rw-r--r--app-editors/jasspa-microemacs/jasspa-microemacs-20091011.ebuild75
2 files changed, 5 insertions, 76 deletions
diff --git a/app-editors/jasspa-microemacs/ChangeLog b/app-editors/jasspa-microemacs/ChangeLog
index f6e9e745433f..bffe77a62fb1 100644
--- a/app-editors/jasspa-microemacs/ChangeLog
+++ b/app-editors/jasspa-microemacs/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for app-editors/jasspa-microemacs
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/jasspa-microemacs/ChangeLog,v 1.45 2010/05/23 18:19:02 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/jasspa-microemacs/ChangeLog,v 1.46 2010/05/23 19:35:26 ulm Exp $
+
+ 23 May 2010; Ulrich Mueller <ulm@gentoo.org>
+ -jasspa-microemacs-20091011.ebuild:
+ Remove old.
23 May 2010; Pacho Ramos <pacho@gentoo.org>
jasspa-microemacs-20091011-r1.ebuild:
diff --git a/app-editors/jasspa-microemacs/jasspa-microemacs-20091011.ebuild b/app-editors/jasspa-microemacs/jasspa-microemacs-20091011.ebuild
deleted file mode 100644
index 5d21e5cbc98a..000000000000
--- a/app-editors/jasspa-microemacs/jasspa-microemacs-20091011.ebuild
+++ /dev/null
@@ -1,75 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/jasspa-microemacs/jasspa-microemacs-20091011.ebuild,v 1.4 2009/12/01 10:33:34 maekke Exp $
-
-inherit eutils toolchain-funcs
-
-DESCRIPTION="Jasspa Microemacs"
-HOMEPAGE="http://www.jasspa.com/"
-SRC_URI="http://www.jasspa.com/release_20090909/jasspa-mesrc-${PV}.tar.gz
- !nanoemacs? (
- http://www.jasspa.com/release_20090909/jasspa-memacros-${PV}.tar.gz
- http://www.jasspa.com/release_20090909/jasspa-mehtml-${PV}.tar.gz
- http://www.jasspa.com/release_20060909/meicons-extra.tar.gz )"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ppc x86"
-IUSE="nanoemacs X xpm"
-
-RDEPEND="sys-libs/ncurses
- X? ( x11-libs/libX11
- xpm? ( x11-libs/libXpm ) )
- nanoemacs? ( !app-editors/ne )"
-
-DEPEND="${RDEPEND}
- X? ( x11-libs/libXt
- x11-proto/xproto )"
-
-S="${WORKDIR}/me${PV:2}/src"
-
-src_unpack() {
- unpack jasspa-mesrc-${PV}.tar.gz
- if ! use nanoemacs; then
- mkdir "${WORKDIR}/jasspa"
- cd "${WORKDIR}/jasspa"
- # everything except jasspa-mesrc
- unpack ${A/jasspa-mesrc-${PV}.tar.gz/}
- fi
- cd "${S}"
- epatch "${FILESDIR}/${PV}-ncurses.patch"
-
- # allow for some variables to be passed to make
- sed -i '/make/s/\$OPTIONS/& CC="$CC" COPTIMISE="$CFLAGS" STRIP=true/' \
- build || die "sed failed"
-}
-
-src_compile() {
- local loadpath="~/.jasspa:/usr/share/jasspa/site:/usr/share/jasspa"
- local me="" type=c
- use nanoemacs && me="-ne"
- use X && type=cw
- use xpm || export XPM_INCLUDE=. # prevent Xpm autodetection
-
- CC="$(tc-getCC)" ./build ${me} -t ${type} -p "${loadpath}" \
- || die "build failed"
-}
-
-src_install() {
- local me=me type=c
- use nanoemacs && me=ne
- use X && type=cw
- newbin ${me}${type} ${me} || die "newbin failed"
-
- if ! use nanoemacs; then
- keepdir /usr/share/jasspa/site
- insinto /usr/share
- doins -r "${WORKDIR}/jasspa"
- if use X; then
- insinto /usr/share/applications
- doins "${FILESDIR}/${PN}.desktop"
- fi
- fi
-
- dodoc ../faq.txt ../readme.txt ../change.log || die "dodoc failed"
-}