diff options
author | Jeroen Roovers <jer@gentoo.org> | 2017-09-12 19:07:04 +0200 |
---|---|---|
committer | Jeroen Roovers <jer@gentoo.org> | 2017-09-12 19:08:15 +0200 |
commit | c8ef217752acf209155f127b26085ea0f512604f (patch) | |
tree | 6cc8572cc15e4fc6473e6367f0ce31bbf145d86e /sys-boot/palo | |
parent | sys-kernel/genkernel-next: Drop old (diff) | |
download | gentoo-c8ef217752acf209155f127b26085ea0f512604f.tar.gz gentoo-c8ef217752acf209155f127b26085ea0f512604f.tar.bz2 gentoo-c8ef217752acf209155f127b26085ea0f512604f.zip |
sys-boot/palo: Version bump.
Package-Manager: Portage-2.3.8, Repoman-2.3.3
Diffstat (limited to 'sys-boot/palo')
-rw-r--r-- | sys-boot/palo/Manifest | 1 | ||||
-rw-r--r-- | sys-boot/palo/palo-1.99.ebuild | 42 |
2 files changed, 43 insertions, 0 deletions
diff --git a/sys-boot/palo/Manifest b/sys-boot/palo/Manifest index 229ae33ffacc..34d232ff8888 100644 --- a/sys-boot/palo/Manifest +++ b/sys-boot/palo/Manifest @@ -1,2 +1,3 @@ DIST palo-1.98.tar.gz 123062 SHA256 a7ed989abca3bad68d106ca55689cea1f1bd162af288460d9ff8264e34df88a9 SHA512 685b1bbd371f0acaae2c621cdd7d2b530557c539118b570a3ee2fbc48d6f34373d553c1bc9542f254f32e6d53afd087693be2981225e062c25efd6ee95ada6c8 WHIRLPOOL 617cb57fa8b2ec76c519425eaca0faafc5c81414838fc241748f08f5e937bdaed8a88a000c735c8c2fd673fda5f818583286fe8c88cce953c60607754db81702 +DIST palo-1.99.tar.gz 123906 SHA256 6880524b44689d90d9faf9da111ea15f1da210d9d7325591085f39c6a7650483 SHA512 b859144a5b145aa47d44926b69172818f1fdd577958649d72a99be26dd68d4e2f366acfaec406c8d09ac751ffcdd380b70606e4f3f66e42328d387fcd9022b73 WHIRLPOOL e1768dda1f964044b80a870a37fbf872070a4d864bed10b0c29cc20d9e9d6bb3f030d623b55f766167e4af74af1c3809e63db5e7ecbac4f761f15fd250faedba DIST palo_1.97.tar.xz 82780 SHA256 cafa629d7a5df124108f4500354d9c84e29565fe6c0ac33162906a30deec6355 SHA512 5e87858a3c91f32174c4debd2aee2ea8185d18fb1d20e6288b1d78b45b0f033fce4c0dadec249fc4e4189e9b7a3a8823e97742e822cfe1512c5edbc9a3d33545 WHIRLPOOL b118b63906e851db50182f6ec4d15ce699393a3cbc738442eb9c593f92dc1968b4ff59ca59e4b83273677d9dc49082e891e5df4fcb7f2a2cf5f2c8e2f00c45ad diff --git a/sys-boot/palo/palo-1.99.ebuild b/sys-boot/palo/palo-1.99.ebuild new file mode 100644 index 000000000000..570db77c2c32 --- /dev/null +++ b/sys-boot/palo/palo-1.99.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +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://git.kernel.org/pub/scm/linux/kernel/git/deller/${PN}.git/snapshot/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="-* ~hppa" + +PATCHES=( + "${FILESDIR}"/${PN}-1.96-toolchain.patch +) + +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 + dodoc TODO debian/changelog README.html + + insinto /etc + doins "${FILESDIR}"/palo.conf + + insinto /usr/share/palo + doins iplboot + + insinto /etc/kernel/postinst.d/ + insopts -m 0744 + doins "${FILESDIR}"/99palo +} |