diff options
author | David Holm <dholm@gentoo.org> | 2004-03-31 20:24:52 +0000 |
---|---|---|
committer | David Holm <dholm@gentoo.org> | 2004-03-31 20:24:52 +0000 |
commit | 730ebfbe0f39051d203e0ec70e08ec1049f9dd85 (patch) | |
tree | 44cac7d800920a102065d0ac17ab45200c54ddf7 /net-misc | |
parent | Stable on x86 and alpha (Manifest recommit) (diff) | |
download | gentoo-2-730ebfbe0f39051d203e0ec70e08ec1049f9dd85.tar.gz gentoo-2-730ebfbe0f39051d203e0ec70e08ec1049f9dd85.tar.bz2 gentoo-2-730ebfbe0f39051d203e0ec70e08ec1049f9dd85.zip |
Added to ~ppc (patch included)
Diffstat (limited to 'net-misc')
-rw-r--r-- | net-misc/howl/ChangeLog | 6 | ||||
-rw-r--r-- | net-misc/howl/files/0.9.2-ppc.patch | 11 | ||||
-rw-r--r-- | net-misc/howl/howl-0.9.2.ebuild | 9 |
3 files changed, 23 insertions, 3 deletions
diff --git a/net-misc/howl/ChangeLog b/net-misc/howl/ChangeLog index ae91d7d3d764..11ef433c88ad 100644 --- a/net-misc/howl/ChangeLog +++ b/net-misc/howl/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-misc/howl # Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/howl/ChangeLog,v 1.3 2004/02/01 16:22:51 lisa Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/howl/ChangeLog,v 1.4 2004/03/31 20:24:52 dholm Exp $ + + 31 Mar 2004; David Holm <dholm@gentoo.org> howl-0.9.2.ebuild, + files/0.9.2-ppc.patch: + Added to ~ppc (patch included). *howl-0.9.2 (01 Feb 2004) diff --git a/net-misc/howl/files/0.9.2-ppc.patch b/net-misc/howl/files/0.9.2-ppc.patch new file mode 100644 index 000000000000..a65a847e407d --- /dev/null +++ b/net-misc/howl/files/0.9.2-ppc.patch @@ -0,0 +1,11 @@ +--- include/salt/vtypes.h.orig 2004-03-31 22:14:38.000000000 +0200 ++++ include/salt/vtypes.h 2004-03-31 22:15:24.000000000 +0200 +@@ -121,7 +121,7 @@ + + # if defined(i386) + # define SW_ENDIAN 1 +-# elif defined(__sparc__) ++# elif defined(__sparc__) || defined(__powerpc__) + # define SW_ENDIAN 0 + # else + # error "CPU unknown" diff --git a/net-misc/howl/howl-0.9.2.ebuild b/net-misc/howl/howl-0.9.2.ebuild index a690a0e9061a..9e4a07c584d5 100644 --- a/net-misc/howl/howl-0.9.2.ebuild +++ b/net-misc/howl/howl-0.9.2.ebuild @@ -1,13 +1,13 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/howl/howl-0.9.2.ebuild,v 1.1 2004/02/01 16:22:51 lisa Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/howl/howl-0.9.2.ebuild,v 1.2 2004/03/31 20:24:52 dholm Exp $ DESCRIPTION="Howl is a cross-platform implementation of the Zeroconf networking standard. Zeroconf brings a new ease of use to IP networking." HOMEPAGE="http://www.porchdogsoft.com/products/howl/" SRC_URI="http://www.porchdogsoft.com/download/${P}.tar.gz" LICENSE="BSD" SLOT="0" -KEYWORDS="~x86" # Should work on ~sparc but I haven't tested yet. New platform suppot can be added via: include/salt/vtypes.h +KEYWORDS="~x86 ~ppc" # Should work on ~sparc but I haven't tested yet. New platform suppot can be added via: include/salt/vtypes.h IUSE="" DEPEND="sys-libs/glibc" # sys-devel/automake - needed if we remove the html docs from /usr/share RDEPEND="sys-libs/glibc" @@ -22,6 +22,11 @@ src_compile() { #aclocal || die "aclocal failed" #automake || die "automake failed" + case "${ARCH}" in + ppc) + epatch ${FILESDIR}/${PV}-ppc.patch + ;; + esac econf || die "econf failed" emake || die "emake failed" } |