diff options
author | Ulrich Müller <ulm@gentoo.org> | 2011-01-03 08:07:04 +0000 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2011-01-03 08:07:04 +0000 |
commit | 27efb0606484923c6dd16073745fff00aa2a411a (patch) | |
tree | 7e72188439e4e20811a054a75b00e86ebc03f580 /app-editors/mg | |
parent | version bump (diff) | |
download | gentoo-2-27efb0606484923c6dd16073745fff00aa2a411a.tar.gz gentoo-2-27efb0606484923c6dd16073745fff00aa2a411a.tar.bz2 gentoo-2-27efb0606484923c6dd16073745fff00aa2a411a.zip |
Version bump.
(Portage version: 2.1.9.27/cvs/Linux x86_64)
Diffstat (limited to 'app-editors/mg')
-rw-r--r-- | app-editors/mg/ChangeLog | 9 | ||||
-rw-r--r-- | app-editors/mg/mg-20110103.ebuild | 31 |
2 files changed, 38 insertions, 2 deletions
diff --git a/app-editors/mg/ChangeLog b/app-editors/mg/ChangeLog index 89b6847fbb96..36d787ce1eaf 100644 --- a/app-editors/mg/ChangeLog +++ b/app-editors/mg/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-editors/mg -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/mg/ChangeLog,v 1.23 2010/10/16 13:58:54 ranger Exp $ +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-editors/mg/ChangeLog,v 1.24 2011/01/03 08:07:04 ulm Exp $ + +*mg-20110103 (03 Jan 2011) + + 03 Jan 2011; Ulrich Mueller <ulm@gentoo.org> +mg-20110103.ebuild: + Version bump. 16 Oct 2010; Brent Baude <ranger@gentoo.org> mg-20090107.ebuild: stable ppc, bug 265307 diff --git a/app-editors/mg/mg-20110103.ebuild b/app-editors/mg/mg-20110103.ebuild new file mode 100644 index 000000000000..7b5841a64778 --- /dev/null +++ b/app-editors/mg/mg-20110103.ebuild @@ -0,0 +1,31 @@ +# 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-20110103.ebuild,v 1.1 2011/01/03 08:07:04 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="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~x86-macos" +IUSE="" + +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} -lncurses" \ + || die +} + +src_install() { + einstall || die + dodoc README tutorial || die +} |