summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlrich Müller <ulm@gentoo.org>2011-02-12 15:58:44 +0000
committerUlrich Müller <ulm@gentoo.org>2011-02-12 15:58:44 +0000
commitbc471be4ba16f513ef5e78b745b2b431e70b9886 (patch)
tree03f1e357a9296b34174be6c3d0a97443cfafcd7d /app-editors
parentversion bump and clean up (diff)
downloadgentoo-2-bc471be4ba16f513ef5e78b745b2b431e70b9886.tar.gz
gentoo-2-bc471be4ba16f513ef5e78b745b2b431e70b9886.tar.bz2
gentoo-2-bc471be4ba16f513ef5e78b745b2b431e70b9886.zip
Version bump.
(Portage version: 2.1.9.39/cvs/Linux x86_64)
Diffstat (limited to 'app-editors')
-rw-r--r--app-editors/mg/ChangeLog7
-rw-r--r--app-editors/mg/mg-20110120.ebuild30
2 files changed, 36 insertions, 1 deletions
diff --git a/app-editors/mg/ChangeLog b/app-editors/mg/ChangeLog
index f2e1382c1136..f92f0623fabb 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.25 2011/01/03 12:48:16 ulm Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/mg/ChangeLog,v 1.26 2011/02/12 15:58:44 ulm Exp $
+
+*mg-20110120 (12 Feb 2011)
+
+ 12 Feb 2011; Ulrich Mueller <ulm@gentoo.org> +mg-20110120.ebuild:
+ Version bump.
03 Jan 2011; Ulrich Mueller <ulm@gentoo.org> mg-20110103.ebuild:
Upstream distfile has been replaced. Update Manifest and ebuild accordingly.
diff --git a/app-editors/mg/mg-20110120.ebuild b/app-editors/mg/mg-20110120.ebuild
new file mode 100644
index 000000000000..b5a688ffd4bd
--- /dev/null
+++ b/app-editors/mg/mg-20110120.ebuild
@@ -0,0 +1,30 @@
+# 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.1 2011/02/12 15:58:44 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}" || die
+}
+
+src_install() {
+ einstall || die
+ dodoc README tutorial || die
+}