diff options
author | Cédric Krier <cedk@gentoo.org> | 2006-11-16 21:27:01 +0000 |
---|---|---|
committer | Cédric Krier <cedk@gentoo.org> | 2006-11-16 21:27:01 +0000 |
commit | 34c3937e04de013e900c408110a181e429449534 (patch) | |
tree | ac0a74522e8ab6c99364359b2fb7a8acc918569f /net-misc/olsrd/olsrd-0.4.10.ebuild | |
parent | Remove old version. Rewrite post-install message. Stable on x86. (diff) | |
download | gentoo-2-34c3937e04de013e900c408110a181e429449534.tar.gz gentoo-2-34c3937e04de013e900c408110a181e429449534.tar.bz2 gentoo-2-34c3937e04de013e900c408110a181e429449534.zip |
New Ebuild for bug #76646
(Portage version: 2.1.1-r1)
Diffstat (limited to 'net-misc/olsrd/olsrd-0.4.10.ebuild')
-rw-r--r-- | net-misc/olsrd/olsrd-0.4.10.ebuild | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/net-misc/olsrd/olsrd-0.4.10.ebuild b/net-misc/olsrd/olsrd-0.4.10.ebuild new file mode 100644 index 000000000000..274d0bc8f642 --- /dev/null +++ b/net-misc/olsrd/olsrd-0.4.10.ebuild @@ -0,0 +1,56 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/olsrd/olsrd-0.4.10.ebuild,v 1.1 2006/11/16 21:27:01 cedk Exp $ + +inherit eutils toolchain-funcs + +DESCRIPTION="An implementation of the Optimized Link State Routing protocol" +HOMEPAGE="http://www.olsr.org/" +SRC_URI="http://www.olsr.org/releases/${PV%.*}/${P}.tar.bz2" + +SLOT="0" +LICENSE="as-is" +KEYWORDS="~x86" +IUSE="gtk" + +DEPEND="gtk? ( =x11-libs/gtk+-2* )" + +src_unpack() { + unpack ${A} + cd "${S}" + + epatch "${FILESDIR}/${P}-makefile.patch" + epatch "${FILESDIR}/${P}-memleak_in_olsr_remove_scheduler_event.patch" +} + +src_compile() { + cd "${S}" + emake OS=linux CC=$(tc-getCC) build_all || die "emake failed" + + if use gtk ; then + cd "${S}/gui/linux-gtk" + einfo "Building GUI ..." + emake CC=$(tc-getCC) || die "emake failed" + fi +} + +src_install() { + emake DESTDIR="${D}" install_all || die "emake install_all failed" + + if use gtk; then + cd "${S}/gui/linux-gtk" + emake DESTDIR="${D}" install || die "emake install failed" + fi + + doinitd "${FILESDIR}/olsrd" + + cd "${S}" + dodoc CHANGELOG features.txt README README-Olsr-Switch.html \ + README-FreeBSD-libnet README-Link-Quality-Fish-Eye.txt \ + README-Link-Quality.html files/olsrd.conf.default.rfc \ + files/olsrd.conf.default.lq lib/dyn_gw/README_DYN_GW \ + lib/dot_draw/README_DOT_DRAW lib/httpinfo/README_HTTPINFO \ + lib/powerinfo/README_POWER + newdoc lib/nameservice/README README-NAMESERVICE + newdoc lib/secure/SOLSR-README README-SECURE +} |