summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Faulhammer <fauli@gentoo.org>2009-12-01 12:19:30 +0000
committerChristian Faulhammer <fauli@gentoo.org>2009-12-01 12:19:30 +0000
commit8c4faab825a3f2ffca806e880bd1e22d131140bd (patch)
tree716ef14b3bc1e8e3de28f8cedfbe55fbdda1ee79 /app-editors/jasspa-microemacs
parentclean up (diff)
downloadgentoo-2-8c4faab825a3f2ffca806e880bd1e22d131140bd.tar.gz
gentoo-2-8c4faab825a3f2ffca806e880bd1e22d131140bd.tar.bz2
gentoo-2-8c4faab825a3f2ffca806e880bd1e22d131140bd.zip
clean up
(Portage version: 2.1.6.13/cvs/Linux i686)
Diffstat (limited to 'app-editors/jasspa-microemacs')
-rw-r--r--app-editors/jasspa-microemacs/ChangeLog6
-rw-r--r--app-editors/jasspa-microemacs/jasspa-microemacs-20060909-r1.ebuild75
2 files changed, 5 insertions, 76 deletions
diff --git a/app-editors/jasspa-microemacs/ChangeLog b/app-editors/jasspa-microemacs/ChangeLog
index d4b94304ba79..1c070258cac4 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-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/jasspa-microemacs/ChangeLog,v 1.39 2009/12/01 10:33:34 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/jasspa-microemacs/ChangeLog,v 1.40 2009/12/01 12:19:30 fauli Exp $
+
+ 01 Dec 2009; Christian Faulhammer <fauli@gentoo.org>
+ -jasspa-microemacs-20060909-r1.ebuild:
+ clean up
01 Dec 2009; Markus Meier <maekke@gentoo.org>
jasspa-microemacs-20091011.ebuild:
diff --git a/app-editors/jasspa-microemacs/jasspa-microemacs-20060909-r1.ebuild b/app-editors/jasspa-microemacs/jasspa-microemacs-20060909-r1.ebuild
deleted file mode 100644
index a78e2aa42afc..000000000000
--- a/app-editors/jasspa-microemacs/jasspa-microemacs-20060909-r1.ebuild
+++ /dev/null
@@ -1,75 +0,0 @@
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/jasspa-microemacs/jasspa-microemacs-20060909-r1.ebuild,v 1.8 2007/12/06 23:38:51 ulm Exp $
-
-inherit eutils toolchain-funcs
-
-DESCRIPTION="Jasspa Microemacs"
-HOMEPAGE="http://www.jasspa.com/"
-SRC_URI="http://www.jasspa.com/release_${PV}/jasspa-mesrc-${PV}-2.tar.gz
- !nanoemacs? (
- http://www.jasspa.com/release_${PV}/jasspa-memacros-${PV}-2.tar.gz
- http://www.jasspa.com/release_${PV}/jasspa-mehtml-${PV}.tar.gz
- http://www.jasspa.com/release_${PV}/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}-2.tar.gz
- if ! use nanoemacs; then
- mkdir "${WORKDIR}/jasspa"
- cd "${WORKDIR}/jasspa"
- # everything except jasspa-mesrc
- unpack ${A/jasspa-mesrc-${PV}-2.tar.gz/}
- fi
- cd "${S}"
- epatch "${FILESDIR}/20050505-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"
-}