diff options
author | Christian Faulhammer <fauli@gentoo.org> | 2012-01-13 02:00:55 +0000 |
---|---|---|
committer | Christian Faulhammer <fauli@gentoo.org> | 2012-01-13 02:00:55 +0000 |
commit | 0a1cdb4e5671d972adc15731a394fc87296b2125 (patch) | |
tree | 2171850593af61ec40b4329424614ecff8c1e575 /app-editors | |
parent | Version bumps (diff) | |
download | gentoo-2-0a1cdb4e5671d972adc15731a394fc87296b2125.tar.gz gentoo-2-0a1cdb4e5671d972adc15731a394fc87296b2125.tar.bz2 gentoo-2-0a1cdb4e5671d972adc15731a394fc87296b2125.zip |
clean up
(Portage version: 2.1.10.41/cvs/Linux i686)
Diffstat (limited to 'app-editors')
-rw-r--r-- | app-editors/mg/ChangeLog | 5 | ||||
-rw-r--r-- | app-editors/mg/mg-20110120.ebuild | 39 |
2 files changed, 4 insertions, 40 deletions
diff --git a/app-editors/mg/ChangeLog b/app-editors/mg/ChangeLog index 7e1f64aaecce..16f1a84514d4 100644 --- a/app-editors/mg/ChangeLog +++ b/app-editors/mg/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-editors/mg # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/mg/ChangeLog,v 1.42 2012/01/06 15:18:08 ranger Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/mg/ChangeLog,v 1.43 2012/01/13 02:00:54 fauli Exp $ + + 13 Jan 2012; Christian Faulhammer <fauli@gentoo.org> -mg-20110120.ebuild: + clean up 06 Jan 2012; Brent Baude <ranger@gentoo.org> mg-20110905.ebuild: Marking mg-20110905 ppc for bug 386689 diff --git a/app-editors/mg/mg-20110120.ebuild b/app-editors/mg/mg-20110120.ebuild deleted file mode 100644 index 457a066ab257..000000000000 --- a/app-editors/mg/mg-20110120.ebuild +++ /dev/null @@ -1,39 +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/mg/mg-20110120.ebuild,v 1.7 2011/09/25 17:49:10 ulm Exp $ - -EAPI=3 - -inherit toolchain-funcs - -DESCRIPTION="Micro GNU/emacs, a port from the BSDs" -HOMEPAGE="http://homepage.boetes.org/software/mg/" -SRC_URI="http://homepage.boetes.org/software/mg/${P}.tar.gz" - -LICENSE="public-domain BSD" -SLOT="0" -KEYWORDS="alpha amd64 ppc sparc x86 ~amd64-linux ~x86-linux ~x86-macos" -IUSE="livecd" - -DEPEND="sys-libs/ncurses" -RDEPEND="${DEPEND}" - -src_configure() { - # econf won't work, as this script does not accept any parameters - ./configure || die "configure failed" -} - -src_compile() { - emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" || die -} - -src_install() { - einstall || die - dodoc README tutorial || die -} - -pkg_postinst() { - if use livecd; then - [[ -e ${EROOT}/usr/bin/emacs ]] || ln -s mg "${EROOT}"/usr/bin/emacs - fi -} |