diff options
author | Ulrich Müller <ulm@gentoo.org> | 2011-09-07 14:31:14 +0000 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2011-09-07 14:31:14 +0000 |
commit | c1e8e6af11d1ce75b642b5ea373d4bef1ef3c69c (patch) | |
tree | 7de5a0f8631f41ce2a67058c95d1f93e8c66fda8 /app-editors/mg | |
parent | version bump (diff) | |
download | gentoo-2-c1e8e6af11d1ce75b642b5ea373d4bef1ef3c69c.tar.gz gentoo-2-c1e8e6af11d1ce75b642b5ea373d4bef1ef3c69c.tar.bz2 gentoo-2-c1e8e6af11d1ce75b642b5ea373d4bef1ef3c69c.zip |
Version bump.
(Portage version: 2.1.10.14/cvs/Linux x86_64)
Diffstat (limited to 'app-editors/mg')
-rw-r--r-- | app-editors/mg/ChangeLog | 7 | ||||
-rw-r--r-- | app-editors/mg/mg-20110905.ebuild | 33 |
2 files changed, 39 insertions, 1 deletions
diff --git a/app-editors/mg/ChangeLog b/app-editors/mg/ChangeLog index e1056d8df22f..fc7bf4102623 100644 --- a/app-editors/mg/ChangeLog +++ b/app-editors/mg/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-editors/mg # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/mg/ChangeLog,v 1.31 2011/08/31 18:08:29 ulm Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/mg/ChangeLog,v 1.32 2011/09/07 14:31:14 ulm Exp $ + +*mg-20110905 (07 Sep 2011) + + 07 Sep 2011; Ulrich Mueller <ulm@gentoo.org> +mg-20110905.ebuild: + Version bump. 31 Aug 2011; Ulrich Mueller <ulm@gentoo.org> mg-20110120.ebuild: Depend on ncurses, bug 381023. diff --git a/app-editors/mg/mg-20110905.ebuild b/app-editors/mg/mg-20110905.ebuild new file mode 100644 index 000000000000..35df57c7ad45 --- /dev/null +++ b/app-editors/mg/mg-20110905.ebuild @@ -0,0 +1,33 @@ +# 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-20110905.ebuild,v 1.1 2011/09/07 14:31:14 ulm Exp $ + +EAPI=4 + +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="" + +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}" +} + +src_install() { + einstall + dodoc README tutorial +} |