Gentoo Archives: gentoo-commits

From: Jeroen Roovers <jer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-boot/palo/
Date: Wed, 15 Feb 2017 08:02:53
Message-Id: 1487145758.32ac85adf155318234f9dcd4e250a9e0d7a27d41.jer@gentoo
1 commit: 32ac85adf155318234f9dcd4e250a9e0d7a27d41
2 Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
3 AuthorDate: Wed Feb 15 08:00:49 2017 +0000
4 Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
5 CommitDate: Wed Feb 15 08:02:38 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=32ac85ad
7
8 sys-boot/palo: Version bump.
9
10 Package-Manager: Portage-2.3.3, Repoman-2.3.1
11
12 sys-boot/palo/Manifest | 1 +
13 sys-boot/palo/palo-1.97.ebuild | 43 ++++++++++++++++++++++++++++++++++++++++++
14 2 files changed, 44 insertions(+)
15
16 diff --git a/sys-boot/palo/Manifest b/sys-boot/palo/Manifest
17 index f88dd22e2a..8400b29f1d 100644
18 --- a/sys-boot/palo/Manifest
19 +++ b/sys-boot/palo/Manifest
20 @@ -1,2 +1,3 @@
21 DIST palo_1.95.tar.xz 102884 SHA256 c168df0255e83f06cf5ae4fd5266f9ee51ba3e9412a9c1bf3131ecff52cec9e8 SHA512 91960a7bbf5a4985809a082d4e75ee25670f6030e701bc106807de4f89c3617e47cf39ef857684b62dcaf906571f6f095b3caa371793754495567f4a14cc8a9d WHIRLPOOL cdf119aa0892fecce4c4dae73053dd9f3c9745a17276012b1d6fb649e3e55eea561dec8f40feb52fb6477f5b289a61844d39c0d8d0ab2ba2a2501c1323b28305
22 DIST palo_1.96.tar.xz 102480 SHA256 c5ea19dc90834266cf6cbd576c007899ef6628b843ab16c57ed98eecb6e72cf8 SHA512 d287cae0995f4c1f519fac5a83a5f71645b1382c6fbf5117ab416240adda5227bb58eb33ad384b84dfb2622af76948b48f1ccf83fa408e9d2d1c4fe7fbed299f WHIRLPOOL de57336608c2aa0d9b487e0d6cfac05ba608a6c24ed4c0acf59d7027b667cc161616ac3520afc974fa2c8496d93d2025e2dfa353118a941a356cde5a28bb62bc
23 +DIST palo_1.97.tar.xz 82780 SHA256 cafa629d7a5df124108f4500354d9c84e29565fe6c0ac33162906a30deec6355 SHA512 5e87858a3c91f32174c4debd2aee2ea8185d18fb1d20e6288b1d78b45b0f033fce4c0dadec249fc4e4189e9b7a3a8823e97742e822cfe1512c5edbc9a3d33545 WHIRLPOOL b118b63906e851db50182f6ec4d15ce699393a3cbc738442eb9c593f92dc1968b4ff59ca59e4b83273677d9dc49082e891e5df4fcb7f2a2cf5f2c8e2f00c45ad
24
25 diff --git a/sys-boot/palo/palo-1.97.ebuild b/sys-boot/palo/palo-1.97.ebuild
26 new file mode 100644
27 index 0000000000..d0d7b6f5f9
28 --- /dev/null
29 +++ b/sys-boot/palo/palo-1.97.ebuild
30 @@ -0,0 +1,43 @@
31 +# Copyright 1999-2017 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +# $Id$
34 +
35 +EAPI=6
36 +inherit eutils flag-o-matic toolchain-funcs
37 +
38 +DESCRIPTION="PALO : PArisc Linux Loader"
39 +HOMEPAGE="http://parisc-linux.org/ https://parisc.wiki.kernel.org/"
40 +SRC_URI="mirror://debian/pool/main/p/${PN}/${P/-/_}.tar.xz"
41 +
42 +LICENSE="GPL-2"
43 +SLOT="0"
44 +KEYWORDS="-* ~hppa"
45 +
46 +PATCHES=(
47 + "${FILESDIR}"/${PN}-1.96-toolchain.patch
48 +)
49 +
50 +src_compile() {
51 + local target
52 + for target in '-C palo' '-C ipl' 'iplboot'; do
53 + emake AR=$(tc-getAR) CC=$(tc-getCC) LD=$(tc-getLD) ${target}
54 + done
55 +}
56 +
57 +src_install() {
58 + into /
59 + dosbin palo/palo
60 +
61 + doman palo.8
62 + dodoc TODO debian/changelog README.html
63 +
64 + insinto /etc
65 + doins "${FILESDIR}"/palo.conf
66 +
67 + insinto /usr/share/palo
68 + doins iplboot
69 +
70 + insinto /etc/kernel/postinst.d/
71 + insopts -m 0744
72 + doins "${FILESDIR}"/99palo
73 +}