diff options
author | Ulrich Müller <ulm@gentoo.org> | 2012-05-29 20:52:32 +0000 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2012-05-29 20:52:32 +0000 |
commit | 6367ccf3eaf7f5aabc7d9e6d64d89fe6afc911f3 (patch) | |
tree | 54ba32797e0ef8d4ae4a412dbab2eb7e8767501b /app-editors | |
parent | Remove manpage compression from build-system (bug 418175, thanks Jason Donenf... (diff) | |
download | gentoo-2-6367ccf3eaf7f5aabc7d9e6d64d89fe6afc911f3.tar.gz gentoo-2-6367ccf3eaf7f5aabc7d9e6d64d89fe6afc911f3.tar.bz2 gentoo-2-6367ccf3eaf7f5aabc7d9e6d64d89fe6afc911f3.zip |
Remove old.
(Portage version: 2.1.10.63/cvs/Linux x86_64)
Diffstat (limited to 'app-editors')
-rw-r--r-- | app-editors/jasspa-microemacs/ChangeLog | 6 | ||||
-rw-r--r-- | app-editors/jasspa-microemacs/jasspa-microemacs-20091011-r1.ebuild | 82 |
2 files changed, 5 insertions, 83 deletions
diff --git a/app-editors/jasspa-microemacs/ChangeLog b/app-editors/jasspa-microemacs/ChangeLog index 9c58eaa3558f..3c3b5a37fa83 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-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/jasspa-microemacs/ChangeLog,v 1.52 2012/05/29 19:15:08 ranger Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/jasspa-microemacs/ChangeLog,v 1.53 2012/05/29 20:52:32 ulm Exp $ + + 29 May 2012; Ulrich Müller <ulm@gentoo.org> + -jasspa-microemacs-20091011-r1.ebuild: + Remove old. 29 May 2012; Brent Baude <ranger@gentoo.org> jasspa-microemacs-20091011-r2.ebuild: diff --git a/app-editors/jasspa-microemacs/jasspa-microemacs-20091011-r1.ebuild b/app-editors/jasspa-microemacs/jasspa-microemacs-20091011-r1.ebuild deleted file mode 100644 index 76b973669ce6..000000000000 --- a/app-editors/jasspa-microemacs/jasspa-microemacs-20091011-r1.ebuild +++ /dev/null @@ -1,82 +0,0 @@ -# Copyright 1999-2011 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-r1.ebuild,v 1.6 2011/08/18 21:26:25 ulm Exp $ - -EAPI=3 - -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 ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris ~x86-solaris" -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 -} - -src_prepare() { - epatch "${FILESDIR}/${PV}-ncurses.patch" - epatch "${FILESDIR}/${PV}-linux3.patch" - - # allow for some variables to be passed to make - sed -i '/make/s/\$OPTIONS/& CC="$CC" COPTIMISE="$CFLAGS" LDFLAGS="$LDFLAGS" STRIP=true/' \ - build || die "sed failed" -} - -src_compile() { - local pkgdatadir="${EPREFIX}/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 "~/.jasspa:${pkgdatadir}/site:${pkgdatadir}" \ - || 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" -} |