diff options
Diffstat (limited to 'net-libs/openslp/openslp-1.0.9a.ebuild')
-rw-r--r-- | net-libs/openslp/openslp-1.0.9a.ebuild | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/net-libs/openslp/openslp-1.0.9a.ebuild b/net-libs/openslp/openslp-1.0.9a.ebuild new file mode 100644 index 000000000000..9d79c4890f5d --- /dev/null +++ b/net-libs/openslp/openslp-1.0.9a.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-libs/openslp/openslp-1.0.9a.ebuild,v 1.1 2002/11/02 13:13:45 verwilst Exp $ + +DESCRIPTION="An open-source implementation of Service Location Protocol" +HOMEPAGE="http://www.openslp.org" + +S=${WORKDIR}/${P} +SRC_URI="mirror://sourceforge/openslp/${P}.tar.gz" + +KEYWORDS="x86 sparc sparc64 ppc" +DEPEND="virtual/glibc" + +SLOT="0" +LICENSE="BSD" + +src_compile() { + econf || die + make || die +} + +src_install() { + einstall || die + dodoc AUTHORS FAQ COPYING ChangeLog NEWS README* THANKS + rm -rf ${D}/usr/doc + dohtml -r . + exeinto /etc/init.d + newexe ${FILESDIR}/slpd-init slpd +} |