diff options
author | Guy Martin <gmsoft@gentoo.org> | 2005-05-23 18:57:51 +0000 |
---|---|---|
committer | Guy Martin <gmsoft@gentoo.org> | 2005-05-23 18:57:51 +0000 |
commit | 21faf267f880a9cea152e21a1eddbbe01ed48101 (patch) | |
tree | 43468979561695518b40b4bdff34ac5fd827339f /sys-boot/palo | |
parent | Version bump to pick up fixes in eclass; see bug #91770 (diff) | |
download | gentoo-2-21faf267f880a9cea152e21a1eddbbe01ed48101.tar.gz gentoo-2-21faf267f880a9cea152e21a1eddbbe01ed48101.tar.bz2 gentoo-2-21faf267f880a9cea152e21a1eddbbe01ed48101.zip |
Version bump.
(Portage version: 2.0.51.19)
Diffstat (limited to 'sys-boot/palo')
-rw-r--r-- | sys-boot/palo/ChangeLog | 9 | ||||
-rw-r--r-- | sys-boot/palo/Manifest | 2 | ||||
-rw-r--r-- | sys-boot/palo/files/digest-palo-1.8_pre20050523 | 1 | ||||
-rw-r--r-- | sys-boot/palo/palo-1.8_pre20050523.ebuild | 44 |
4 files changed, 54 insertions, 2 deletions
diff --git a/sys-boot/palo/ChangeLog b/sys-boot/palo/ChangeLog index aa3cbafb9e02..257b7049aabd 100644 --- a/sys-boot/palo/ChangeLog +++ b/sys-boot/palo/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sys-boot/palo -# Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-boot/palo/ChangeLog,v 1.10 2004/07/29 08:18:50 gmsoft Exp $ +# Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sys-boot/palo/ChangeLog,v 1.11 2005/05/23 18:57:51 gmsoft Exp $ + +*palo-1.8_pre20050523 (23 May 2005) + + 23 May 2005; Guy Martin <gmsoft@gentoo.org> +palo-1.8_pre20050523.ebuild: + Version bump. 29 Jul 2004; Guy Martin <gmsoft@gentoo.org> palo-1.5_pre20040515.ebuild: Marking stable since it really is. diff --git a/sys-boot/palo/Manifest b/sys-boot/palo/Manifest index 7db62c137a97..e763f0e22b06 100644 --- a/sys-boot/palo/Manifest +++ b/sys-boot/palo/Manifest @@ -3,8 +3,10 @@ MD5 9eb3e7bb4ebac420842bd3e90dbf8726 metadata.xml 218 MD5 215a7af50439001abaae3f11694675bc palo-1.2_pre20030630.ebuild 933 MD5 bdf378eec83dab3345d0bb28756985c1 palo-1.3_pre20040303.ebuild 934 MD5 88ad675808b43e5bd5c8f0325adba7bd palo-1.5_pre20040515.ebuild 1011 +MD5 88ad675808b43e5bd5c8f0325adba7bd palo-1.8_pre20050523.ebuild 1011 MD5 7ee737710bef1fd5dd94d975eaf30721 files/digest-palo-1.2_pre20030630 71 MD5 976dc147179cc0e2e54c219e32084c2c files/digest-palo-1.3_pre20040303 71 MD5 552150e078605c297602afb8d8d4c9fe files/digest-palo-1.5_pre20040515 72 MD5 e54ad3d44d639d402e7bacda8826dd58 files/palo-remove-HOME-TERM.patch 3605 MD5 0df188cd6b8a1188ebd0fc4440753187 files/palo.conf 207 +MD5 250c702ef4ccd048d09ad0a611350295 files/digest-palo-1.8_pre20050523 72 diff --git a/sys-boot/palo/files/digest-palo-1.8_pre20050523 b/sys-boot/palo/files/digest-palo-1.8_pre20050523 new file mode 100644 index 000000000000..2d61f6442114 --- /dev/null +++ b/sys-boot/palo/files/digest-palo-1.8_pre20050523 @@ -0,0 +1 @@ +MD5 ad3ad58281410f365aca9894052b326f palo-1.8-CVS20050523.tar.gz 101390 diff --git a/sys-boot/palo/palo-1.8_pre20050523.ebuild b/sys-boot/palo/palo-1.8_pre20050523.ebuild new file mode 100644 index 000000000000..ef2f720ea693 --- /dev/null +++ b/sys-boot/palo/palo-1.8_pre20050523.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-boot/palo/palo-1.8_pre20050523.ebuild,v 1.1 2005/05/23 18:57:51 gmsoft Exp $ + +inherit eutils + +MY_V=${PV/_pre/-CVS} +DESCRIPTION="PALO : PArisc Linux Loader" +HOMEPAGE="http://parisc-linux.org/" +SRC_URI="http://ftp.parisc-linux.org/cvs/palo-${MY_V}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="-* ~hppa" +IUSE="" + +DEPEND="virtual/libc" +PROVIDE="virtual/bootloader" + +S=${WORKDIR}/palo + +src_unpack() { + unpack ${A} + epatch ${FILESDIR}/${PN}-remove-HOME-TERM.patch +} + +src_compile() { + emake -C palo CFLAGS="${CFLAGS} -I../include -I../lib" || die + emake -C ipl CFLAGS="${CFLAGS} -I. -I../lib -I../include -fwritable-strings -mdisable-fpregs -Wall" || die + emake MACHINE=parisc iplboot +} + +src_install() { + dosbin palo/palo || die + doman palo.8 + dohtml README.html + dodoc README palo.conf + + insinto /etc + doins ${FILESDIR}/palo.conf + + insinto /usr/share/palo + doins iplboot +} |