summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeroen Roovers <jer@gentoo.org>2014-01-23 14:21:28 +0000
committerJeroen Roovers <jer@gentoo.org>2014-01-23 14:21:28 +0000
commita733d5311a14045c6a9adb4aa03aa75427609107 (patch)
tree146d9b81b087052726bf00de7ec7b87820113aa2 /sys-boot
parentFix patching 1.92. (diff)
downloadgentoo-2-a733d5311a14045c6a9adb4aa03aa75427609107.tar.gz
gentoo-2-a733d5311a14045c6a9adb4aa03aa75427609107.tar.bz2
gentoo-2-a733d5311a14045c6a9adb4aa03aa75427609107.zip
Old.
(Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key A792A613)
Diffstat (limited to 'sys-boot')
-rw-r--r--sys-boot/palo/ChangeLog6
-rw-r--r--sys-boot/palo/files/palo-9999-open.patch11
-rw-r--r--sys-boot/palo/palo-1.91.ebuild50
3 files changed, 5 insertions, 62 deletions
diff --git a/sys-boot/palo/ChangeLog b/sys-boot/palo/ChangeLog
index afbef360e996..262b542baeb5 100644
--- a/sys-boot/palo/ChangeLog
+++ b/sys-boot/palo/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for sys-boot/palo
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-boot/palo/ChangeLog,v 1.44 2014/01/23 14:20:25 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-boot/palo/ChangeLog,v 1.45 2014/01/23 14:21:28 jer Exp $
+
+ 23 Jan 2014; Jeroen Roovers <jer@gentoo.org> -palo-1.91.ebuild,
+ -files/palo-9999-open.patch:
+ Old.
23 Jan 2014; Jeroen Roovers <jer@gentoo.org> palo-1.92.ebuild,
+files/palo-1.92-toolchain.patch:
diff --git a/sys-boot/palo/files/palo-9999-open.patch b/sys-boot/palo/files/palo-9999-open.patch
deleted file mode 100644
index 26449e0d01aa..000000000000
--- a/sys-boot/palo/files/palo-9999-open.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- a/palo/palo.c
-+++ b/palo/palo.c
-@@ -479,7 +479,7 @@
- error(14, "bootloader");
-
- sprintf(badblockfilename, "/tmp/paloblk-%d", getpid());
-- if ((fd = open(badblockfilename, O_RDWR | O_CREAT | O_TRUNC)) < 0) {
-+ if ((fd = open(badblockfilename, O_RDWR | O_CREAT | O_TRUNC, S_IRUSR | S_IWUSR)) < 0) {
- perror(badblockfilename);
- exit(1);
- }
diff --git a/sys-boot/palo/palo-1.91.ebuild b/sys-boot/palo/palo-1.91.ebuild
deleted file mode 100644
index 150c50c21ebf..000000000000
--- a/sys-boot/palo/palo-1.91.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-boot/palo/palo-1.91.ebuild,v 1.2 2013/10/18 15:41:38 jer Exp $
-
-EAPI=5
-
-inherit eutils flag-o-matic toolchain-funcs
-
-DESCRIPTION="PALO : PArisc Linux Loader"
-HOMEPAGE="http://parisc-linux.org/"
-SRC_URI="http://dev.gentoo.org/~jer/${P/-/_}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="-* hppa"
-IUSE=""
-
-src_prepare() {
- epatch \
- "${FILESDIR}"/${PN}-1.18-include.patch \
- "${FILESDIR}"/${PN}-9999-open.patch \
- "${FILESDIR}"/${PN}-9999-toolchain.patch
- sed -i lib/common.h -e '/^#define PALOVERSION/{s|".*"|"'${PV}'"|g}' || die
- sed -i palo/Makefile -e '/^LDFLAGS=/d' || die
-}
-
-src_compile() {
- local target
- for target in '-C palo' '-C ipl' 'MACHINE=parisc iplboot'; do
- emake AR=$(tc-getAR) CC=$(tc-getCC) LD=$(tc-getLD) ${target}
- done
-}
-
-src_install() {
- into /
- dosbin palo/palo
-
- doman palo.8
- dohtml README.html
- dodoc palo.conf
-
- insinto /etc
- doins "${FILESDIR}"/palo.conf
-
- insinto /usr/share/palo
- doins iplboot
-
- insinto /etc/kernel/postinst.d/
- INSOPTIONS="-m 0744" doins "${FILESDIR}"/99palo
-}