diff options
author | Patrick McLean <chutzpah@gentoo.org> | 2012-10-16 01:34:20 +0000 |
---|---|---|
committer | Patrick McLean <chutzpah@gentoo.org> | 2012-10-16 01:34:20 +0000 |
commit | 828fd8b13dd6c96013f38f8f38be137984498ae5 (patch) | |
tree | 252e6c3f986739fc0cf7b75ceb0c7e9ab4420b06 /net-misc/lldpd/lldpd-0.5.7.ebuild | |
parent | keyword ~arm, bug #438388 (diff) | |
download | gentoo-2-828fd8b13dd6c96013f38f8f38be137984498ae5.tar.gz gentoo-2-828fd8b13dd6c96013f38f8f38be137984498ae5.tar.bz2 gentoo-2-828fd8b13dd6c96013f38f8f38be137984498ae5.zip |
Version bump (bug #407867). Add USE flags for extra protocols supported by lldpd.
(Portage version: 2.1.11.27/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'net-misc/lldpd/lldpd-0.5.7.ebuild')
-rw-r--r-- | net-misc/lldpd/lldpd-0.5.7.ebuild | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/net-misc/lldpd/lldpd-0.5.7.ebuild b/net-misc/lldpd/lldpd-0.5.7.ebuild new file mode 100644 index 000000000000..c13f1bfaca3b --- /dev/null +++ b/net-misc/lldpd/lldpd-0.5.7.ebuild @@ -0,0 +1,56 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/lldpd/lldpd-0.5.7.ebuild,v 1.1 2012/10/16 01:34:20 chutzpah Exp $ + +EAPI=4 + +inherit eutils user + +DESCRIPTION="Implementation of IEEE 802.1ab (LLDP)" +HOMEPAGE="http://github.com/vincentbernat/lldpd/wiki" +SRC_URI="http://media.luffy.cx/files/${PN}/${P}.tar.gz" + +LICENSE="ISC" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="cdp +dot1 +dot3 edp fdp +lldpmed sonmp snmp xml" + +DEPEND="snmp? ( net-analyzer/net-snmp[extensible(+)] ) + xml? ( dev-libs/libxml2 )" +RDEPEND="${DEPEND}" + +pkg_setup() { + ebegin "Creating lldpd user and group" + enewgroup ${PN} + enewuser ${PN} -1 -1 -1 ${PN} + eend $? +} + +src_prepare() { + epatch_user +} + +src_configure() { + econf \ + --with-privsep-user=${PN} \ + --with-privsep-group=${PN} \ + --with-privsep-chroot=/var/lib/${PN} \ + $(use_enable cdp) \ + $(use_enable dot1) \ + $(use_enable dot3) \ + $(use_enable edp) \ + $(use_enable fdp) \ + $(use_enable lldpmed) \ + $(use_enable sonmp) \ + $(use_with snmp) \ + $(use_with xml) +} + +src_install() { + emake DESTDIR="${D}" install + + newinitd "${FILESDIR}"/${PN}-initd-1 ${PN} + newconfd "${FILESDIR}"/${PN}-confd-1 ${PN} + + keepdir /var/lib/${PN} +} |