diff options
author | Jeroen Roovers <jer@gentoo.org> | 2015-09-27 08:11:45 +0200 |
---|---|---|
committer | Jeroen Roovers <jer@gentoo.org> | 2015-09-27 08:11:45 +0200 |
commit | a4e36398fda3a0889172eb544590a4ce466a7ab0 (patch) | |
tree | bd39dcbb086234a8e2cacc38820101cae5c9fc24 | |
parent | sys-devel/kgcc64: Version bump. (diff) | |
download | gentoo-a4e36398fda3a0889172eb544590a4ce466a7ab0.tar.gz gentoo-a4e36398fda3a0889172eb544590a4ce466a7ab0.tar.bz2 gentoo-a4e36398fda3a0889172eb544590a4ce466a7ab0.zip |
sys-boot/palo: Old.
Package-Manager: portage-2.2.20.1
-rw-r--r-- | sys-boot/palo/Manifest | 1 | ||||
-rw-r--r-- | sys-boot/palo/files/palo-1.92-toolchain.patch | 20 | ||||
-rw-r--r-- | sys-boot/palo/palo-1.92.ebuild | 47 |
3 files changed, 0 insertions, 68 deletions
diff --git a/sys-boot/palo/Manifest b/sys-boot/palo/Manifest index 0e4ce3f8a6be..d133cd9cb493 100644 --- a/sys-boot/palo/Manifest +++ b/sys-boot/palo/Manifest @@ -1,2 +1 @@ -DIST palo_1.92.tar.gz 122554 SHA256 9782578cae5a990c5037e8a9feb43d3d6802412918b97c27a04c1b9113de3c4f SHA512 a0b01b12bf80c6727a9a5eff1189e7515d3f21e8fe68712d0cb944e06f6d0f91272e5457b97ed596f06fd51505c7f62f654d1d3081c79443023cbbd0cb98e58c WHIRLPOOL 46b498b48a35ff2557bf91182b2daa30211f0de37f3c986794de83c58b3b633ebca21c19542c16f8b9d229a5f81d1419189b72adde8d7b783fa053c605e73c14 DIST palo_1.95.tar.xz 102884 SHA256 c168df0255e83f06cf5ae4fd5266f9ee51ba3e9412a9c1bf3131ecff52cec9e8 SHA512 91960a7bbf5a4985809a082d4e75ee25670f6030e701bc106807de4f89c3617e47cf39ef857684b62dcaf906571f6f095b3caa371793754495567f4a14cc8a9d WHIRLPOOL cdf119aa0892fecce4c4dae73053dd9f3c9745a17276012b1d6fb649e3e55eea561dec8f40feb52fb6477f5b289a61844d39c0d8d0ab2ba2a2501c1323b28305 diff --git a/sys-boot/palo/files/palo-1.92-toolchain.patch b/sys-boot/palo/files/palo-1.92-toolchain.patch deleted file mode 100644 index b72947b63699..000000000000 --- a/sys-boot/palo/files/palo-1.92-toolchain.patch +++ /dev/null @@ -1,20 +0,0 @@ ---- a/palo/Makefile -+++ b/palo/Makefile -@@ -14,7 +14,7 @@ - ifeq ($(strip ${OS}),HP-UX) - CFLAGS=-g -O -I../include -I../lib -I$(PA)/include - else --CFLAGS=-g -O -I../include -I../lib -+CFLAGS+= -O -I../include -I../lib - endif - - # LDFLAGS=-Wl,-Bstatic -@@ -34,7 +34,7 @@ - $(CC) $(CFLAGS) $(LDFLAGS) -o palo palo.a build.o - - palo.a: $(OFILES) -- ar rv palo.a $? -+ $(AR) rv palo.a $? - - mkbootable: $(OFILES2) - $(CC) $(CFLAGS) $(LDFLAGS) -o mkbootable $(OFILES2) diff --git a/sys-boot/palo/palo-1.92.ebuild b/sys-boot/palo/palo-1.92.ebuild deleted file mode 100644 index 6ee80b6caaa8..000000000000 --- a/sys-boot/palo/palo-1.92.ebuild +++ /dev/null @@ -1,47 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -inherit eutils flag-o-matic toolchain-funcs - -DESCRIPTION="PALO : PArisc Linux Loader" -HOMEPAGE="http://parisc-linux.org/ https://parisc.wiki.kernel.org/" -SRC_URI="https://dev.gentoo.org/~jer/${P/-/_}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="-* hppa" -IUSE="" - -src_prepare() { - epatch \ - "${FILESDIR}"/${PN}-1.92-toolchain.patch - sed -i palo/Makefile -e '/^LDFLAGS=/d' || die -} - -src_compile() { - local target - for target in '-C palo' '-C ipl' '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 Changes TODO debian/changelog - - insinto /etc - doins "${FILESDIR}"/palo.conf - - insinto /usr/share/palo - doins iplboot - - insinto /etc/kernel/postinst.d/ - INSOPTIONS="-m 0744" doins "${FILESDIR}"/99palo -} |