diff options
author | Lisa M. Seelye <lisa@gentoo.org> | 2004-07-10 19:02:33 +0000 |
---|---|---|
committer | Lisa M. Seelye <lisa@gentoo.org> | 2004-07-10 19:02:33 +0000 |
commit | 3dc6b9f16241ee8c5adfee5a9edb585004442162 (patch) | |
tree | 0e8db849a4b222bdc7ac8a1701ab222f0c534c69 /net-misc/howl/howl-0.9.5.ebuild | |
parent | Version bump closes bug #55769. (Manifest recommit) (diff) | |
download | gentoo-2-3dc6b9f16241ee8c5adfee5a9edb585004442162.tar.gz gentoo-2-3dc6b9f16241ee8c5adfee5a9edb585004442162.tar.bz2 gentoo-2-3dc6b9f16241ee8c5adfee5a9edb585004442162.zip |
version bump for bug #54427
Diffstat (limited to 'net-misc/howl/howl-0.9.5.ebuild')
-rw-r--r-- | net-misc/howl/howl-0.9.5.ebuild | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/net-misc/howl/howl-0.9.5.ebuild b/net-misc/howl/howl-0.9.5.ebuild new file mode 100644 index 000000000000..25d3f9d07b9b --- /dev/null +++ b/net-misc/howl/howl-0.9.5.ebuild @@ -0,0 +1,55 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/howl/howl-0.9.5.ebuild,v 1.1 2004/07/10 19:02:33 lisa Exp $ + +IUSE="" + +inherit eutils + +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" +# -amd64: Even after patching like ppc for correct ENDIANNESS, we have various size problems... hopefully a later version will solve this... +KEYWORDS="~x86 ~ppc ~sparc -amd64" +DEPEND="sys-libs/glibc" # sys-devel/automake - needed if we remove the html docs from /usr/share +RDEPEND="sys-libs/glibc" + +src_compile() { + # If we wanted to remove the html docs in /usr/share/howl.... + #einfo "Removing html docs from build process...." + #sed -e 's/ docs//' < Makefile.am > Makefile.am.new || die "sed failed" + #mv Makefile.am.new Makefile.am || die "move failed" + #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" +} + +src_install() { + emake DESTDIR=${D} install || die "emake install failed" + dodoc AUTHORS COPYING ChangeLog INSTALL NEWS README TODO + dohtml -r docs/ + + # doesn't work right now. + # nifd service loader + #dodir /etc/conf.d + #cp ${FILESDIR}/nifd.conf.d ${D}/etc/conf.d/nifd || die "cp nifd.conf.d" + #dodir /etc/init.d + #cp ${FILESDIR}/nifd.init.d ${D}/etc/init.d/nifd || die "cp nifd.init.d" + #fperms a+x ${D}/etc/init.d/nifd + + # mDNSResponder service loader + dodir /etc/conf.d + cp ${FILESDIR}/mDNSResponder.conf.d ${D}/etc/conf.d/mDNSResponder || die "cp mDNSResponder.conf.d" + dodir /etc/init.d + cp ${FILESDIR}/mDNSResponder.init.d ${D}/etc/init.d/mDNSResponder || die "cp mDNSResponder.init.d" + fperms a+x ${D}/etc/init.d/mDNSResponder +} |