diff options
author | Mark Guertin <gerk@gentoo.org> | 2002-07-24 22:42:37 +0000 |
---|---|---|
committer | Mark Guertin <gerk@gentoo.org> | 2002-07-24 22:42:37 +0000 |
commit | 2f8f883ee3ec9c1dc901429ce8eaa064257f6966 (patch) | |
tree | 5479110608a163201adf72297b277f1dbbdf69e7 /app-misc | |
parent | installation location fix (diff) | |
download | historical-2f8f883ee3ec9c1dc901429ce8eaa064257f6966.tar.gz historical-2f8f883ee3ec9c1dc901429ce8eaa064257f6966.tar.bz2 historical-2f8f883ee3ec9c1dc901429ce8eaa064257f6966.zip |
added ppc fixups and ppc to keywords
Diffstat (limited to 'app-misc')
-rw-r--r-- | app-misc/xosview/ChangeLog | 8 | ||||
-rw-r--r-- | app-misc/xosview/xosview-1.8.0.ebuild | 9 |
2 files changed, 13 insertions, 4 deletions
diff --git a/app-misc/xosview/ChangeLog b/app-misc/xosview/ChangeLog index 7cd93b7a43bc..e6b2c7751b80 100644 --- a/app-misc/xosview/ChangeLog +++ b/app-misc/xosview/ChangeLog @@ -1,9 +1,15 @@ # ChangeLog for app-misc/xosview # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/app-misc/xosview/ChangeLog,v 1.2 2002/07/12 20:20:50 g2boojum Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/xosview/ChangeLog,v 1.3 2002/07/24 22:42:37 gerk Exp $ *xosview-1.8.0 (12 Jul 2002) + 24 Jul 2002; Mark Guertin <gerk@gentoo.org> : + Added set of ppc diffs (thanks mostly to mdk/ydl patches), but + also had to make workaround for the fact that /proc/stat on PPC + currently seems to have no EOF (?!?). Will submit patches upstream. + Also added ppc to keywords. + 12 Jul 2002; Grant Goodyear <g2boojum@gentoo.org> ChangeLog : new version diff --git a/app-misc/xosview/xosview-1.8.0.ebuild b/app-misc/xosview/xosview-1.8.0.ebuild index c3e0b51fbf76..e773c123d222 100644 --- a/app-misc/xosview/xosview-1.8.0.ebuild +++ b/app-misc/xosview/xosview-1.8.0.ebuild @@ -1,19 +1,22 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/app-misc/xosview/xosview-1.8.0.ebuild,v 1.1 2002/07/12 20:20:50 g2boojum Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/xosview/xosview-1.8.0.ebuild,v 1.2 2002/07/24 22:42:37 gerk Exp $ S=${WORKDIR}/${P} DESCRIPTION="X11 operating system viewer" SRC_URI="http://www.ibiblio.org/pub/Linux/system/status/xstatus/${P}.tar.gz" HOMEPAGE="http://xosview.sourceforge.net" LICENSE="GPL-2 BSD" -KEYWORDS="x86" +KEYWORDS="x86 ppc" SLOT="0" DEPEND="virtual/x11" src_compile() { - + cd ${S} + if [ ${ARCH} = "ppc" ] ; then + patch -p0 < ${FILESDIR}/xosview-1.8.0-ppc.diff || die "patch failed" + fi econf || die emake || die |