summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger (asterix) <m.mairkeimberger@gmail.com>2016-06-19 19:37:06 +0200
committerPatrice Clement <monsieurp@gentoo.org>2016-06-23 15:25:49 +0000
commitbc071eae9869c5ddd7e27060afc01fd1602451a1 (patch)
treeb1d235b55339adb45407d50d81de1b487fe877c6
parentapp-admin/grubconfig: reversion update, eapi bump, minor fixes (diff)
downloadgentoo-bc071eae9869c5ddd7e27060afc01fd1602451a1.tar.gz
gentoo-bc071eae9869c5ddd7e27060afc01fd1602451a1.tar.bz2
gentoo-bc071eae9869c5ddd7e27060afc01fd1602451a1.zip
app-admin/grubconfig: add updated version
Closes: https://github.com/gentoo/gentoo/pull/1699 Signed-off-by: Patrice Clement <monsieurp@gentoo.org>
-rw-r--r--app-admin/grubconfig/grubconfig-1.28-r2.ebuild28
1 files changed, 28 insertions, 0 deletions
diff --git a/app-admin/grubconfig/grubconfig-1.28-r2.ebuild b/app-admin/grubconfig/grubconfig-1.28-r2.ebuild
new file mode 100644
index 000000000000..09a5a1049573
--- /dev/null
+++ b/app-admin/grubconfig/grubconfig-1.28-r2.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+DESCRIPTION="Simple Tool to configure Grub-Bootloader"
+HOMEPAGE="https://web.archive.org/web/20100410042718/http://www.tux.org/pub/people/kent-robotti/looplinux"
+SRC_URI="http://www.tux.org/pub/people/kent-robotti/looplinux/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="-* amd64 x86"
+IUSE=""
+
+RDEPEND=">=dev-util/dialog-0.7"
+
+src_prepare() {
+ sed -i \
+ -e "s:/usr/lib/grub:/$(get_libdir)/grub:g" \
+ grubconfig || die
+ eapply_user
+}
+
+src_install() {
+ dosbin grubconfig
+ dodoc README
+}