diff options
author | Guy Martin <gmsoft@gentoo.org> | 2003-04-08 10:53:19 +0000 |
---|---|---|
committer | Guy Martin <gmsoft@gentoo.org> | 2003-04-08 10:53:19 +0000 |
commit | d9ecf8aedefa16b1388a347311a82f1acf929f01 (patch) | |
tree | abd7205e9af2fc9685b9703a6fc0d0bcd043437d | |
parent | Initial commit. (diff) | |
download | historical-d9ecf8aedefa16b1388a347311a82f1acf929f01.tar.gz historical-d9ecf8aedefa16b1388a347311a82f1acf929f01.tar.bz2 historical-d9ecf8aedefa16b1388a347311a82f1acf929f01.zip |
Replaced every "-arch" keywords by "-*".
-rw-r--r-- | sys-apps/palo/ChangeLog | 5 | ||||
-rw-r--r-- | sys-apps/palo/palo-1.2_pre20030115.ebuild | 9 |
2 files changed, 10 insertions, 4 deletions
diff --git a/sys-apps/palo/ChangeLog b/sys-apps/palo/ChangeLog index 643ab736adf4..e13b3b78f1e3 100644 --- a/sys-apps/palo/ChangeLog +++ b/sys-apps/palo/ChangeLog @@ -1,9 +1,12 @@ # ChangeLog for sys-apps/palo # Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/palo/ChangeLog,v 1.7 2003/03/01 00:15:54 gmsoft Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/palo/ChangeLog,v 1.8 2003/04/08 10:53:19 gmsoft Exp $ *palo-1.2_pre20030115 (05 Feb 2003) + 08 Apr 2003; Guy Martin <gmsoft@gentoo.org> palo-1.2_pre20030115.ebuild : + Replaced every "-arch" keywords by "-*". + 29 Feb 2003; Guy Martin <gmsoft@gentoo.org> palo-1.2_pre20030115.ebuild : scr_install() rewritted and added support for $CFLAGS in scr_compile(). Config file was updated. diff --git a/sys-apps/palo/palo-1.2_pre20030115.ebuild b/sys-apps/palo/palo-1.2_pre20030115.ebuild index 7d42e624ee94..d36f4e2a7504 100644 --- a/sys-apps/palo/palo-1.2_pre20030115.ebuild +++ b/sys-apps/palo/palo-1.2_pre20030115.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/palo/palo-1.2_pre20030115.ebuild,v 1.6 2003/03/01 00:15:54 gmsoft Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/palo/palo-1.2_pre20030115.ebuild,v 1.7 2003/04/08 10:53:19 gmsoft Exp $ DESCRIPTION="PALO : PArisc Linux Loader" HOMEPAGE="http://parisc-linux.org/" @@ -11,7 +11,7 @@ SLOT="0" S=${WORKDIR}/palo #Compile only on hppa stations -KEYWORDS="hppa -x86 -ppc -sparc -alpha -mips" +KEYWORDS="hppa -*" IUSE="" PROVIDE="virtual/bootloader" @@ -21,7 +21,7 @@ DEPEND=">=glibc-2.2.4" 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 + emake MACHINE=parisc iplboot emake || die } @@ -34,4 +34,7 @@ src_install() { insinto /etc doins ${FILESDIR}/palo.conf + + insinto /usr/share/palo + doins iplboot } |