diff options
author | Alastair Tse <liquidx@gentoo.org> | 2003-03-26 22:02:54 +0000 |
---|---|---|
committer | Alastair Tse <liquidx@gentoo.org> | 2003-03-26 22:02:54 +0000 |
commit | 3c0d1bfc371b4516570e72a59e7f2e15b0b4bbdc (patch) | |
tree | 7ef5e24be104f1ee42e2eec1e9ea03ac9bdf662e /net-libs/openslp/openslp-1.0.11.ebuild | |
parent | Added OSKit local ebuild USE flags (diff) | |
download | historical-3c0d1bfc371b4516570e72a59e7f2e15b0b4bbdc.tar.gz historical-3c0d1bfc371b4516570e72a59e7f2e15b0b4bbdc.tar.bz2 historical-3c0d1bfc371b4516570e72a59e7f2e15b0b4bbdc.zip |
version bumpage
Diffstat (limited to 'net-libs/openslp/openslp-1.0.11.ebuild')
-rw-r--r-- | net-libs/openslp/openslp-1.0.11.ebuild | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/net-libs/openslp/openslp-1.0.11.ebuild b/net-libs/openslp/openslp-1.0.11.ebuild new file mode 100644 index 000000000000..0e7b51cc9711 --- /dev/null +++ b/net-libs/openslp/openslp-1.0.11.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2003 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.11.ebuild,v 1.1 2003/03/26 22:02:54 liquidx Exp $ + +IUSE="" + +DESCRIPTION="An open-source implementation of Service Location Protocol" +HOMEPAGE="http://www.openslp.org" +SRC_URI="mirror://sourceforge/openslp/${P}.tar.gz" + +KEYWORDS="~x86 ~sparc ~ppc ~hppa" +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 +} |