From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 0AFAC138334 for ; Fri, 23 Nov 2018 17:19:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EFF45E0844; Fri, 23 Nov 2018 17:19:37 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B89B0E0844 for ; Fri, 23 Nov 2018 17:19:37 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7F07B335C7D for ; Fri, 23 Nov 2018 17:19:35 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3787043A for ; Fri, 23 Nov 2018 17:19:33 +0000 (UTC) From: "Jeroen Roovers" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jeroen Roovers" Message-ID: <1542993567.28d66bf7c10aa06b920a15612965ba3695e460f4.jer@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/olsrd/, net-misc/olsrd/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/olsrd/files/olsrd net-misc/olsrd/olsrd-0.9.6.1-r1.ebuild X-VCS-Directories: net-misc/olsrd/files/ net-misc/olsrd/ X-VCS-Committer: jer X-VCS-Committer-Name: Jeroen Roovers X-VCS-Revision: 28d66bf7c10aa06b920a15612965ba3695e460f4 X-VCS-Branch: master Date: Fri, 23 Nov 2018 17:19:33 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: ec9b5546-7678-4d6f-8973-66a5700ad91a X-Archives-Hash: f29c8903d8d85c3d0f2c9d02414d83d9 commit: 28d66bf7c10aa06b920a15612965ba3695e460f4 Author: Jeroen Roovers gentoo org> AuthorDate: Fri Nov 23 17:19:15 2018 +0000 Commit: Jeroen Roovers gentoo org> CommitDate: Fri Nov 23 17:19:27 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=28d66bf7 net-misc/olsrd: Fix configuration warning in init script While there, decompress manual pages, too. Fixes: https://bugs.gentoo.org/642108 Package-Manager: Portage-2.3.52, Repoman-2.3.12 Signed-off-by: Jeroen Roovers gentoo.org> net-misc/olsrd/files/olsrd | 4 +- net-misc/olsrd/olsrd-0.9.6.1-r1.ebuild | 101 +++++++++++++++++++++++++++++++++ 2 files changed, 103 insertions(+), 2 deletions(-) diff --git a/net-misc/olsrd/files/olsrd b/net-misc/olsrd/files/olsrd index aca79b9d428..34c410e9944 100644 --- a/net-misc/olsrd/files/olsrd +++ b/net-misc/olsrd/files/olsrd @@ -5,8 +5,8 @@ depend() { } checkconfig() { - if [ ! -e /etc/olsrd.conf ]; then - eerror "You need a /etc/olsrd.conf file to run olsrd" + if [ ! -e /etc/olsrd/olsrd.conf ]; then + eerror "You need a /etc/olsrd/olsrd.conf file to run olsrd" eerror "There is sample file in /usr/share/doc/olsrd-version/" return 1 fi diff --git a/net-misc/olsrd/olsrd-0.9.6.1-r1.ebuild b/net-misc/olsrd/olsrd-0.9.6.1-r1.ebuild new file mode 100644 index 00000000000..32a6685bd66 --- /dev/null +++ b/net-misc/olsrd/olsrd-0.9.6.1-r1.ebuild @@ -0,0 +1,101 @@ +# Copyright 1999-2018 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +inherit eutils multilib toolchain-funcs versionator + +DESCRIPTION="An implementation of the Optimized Link State Routing protocol" +HOMEPAGE="http://www.olsr.org/" +SRC_URI="http://www.olsr.org/releases/$(get_version_component_range 1-2)/${P}.tar.bz2" + +SLOT="0" +LICENSE="BSD LGPL-2.1" +KEYWORDS="~amd64 ~x86" +IUSE="gtk pud" +DEPEND=" + gtk? ( + dev-libs/glib:2 + x11-libs/gdk-pixbuf:2 + x11-libs/gtk+:2 + ) + pud? ( sci-geosciences/gpsd ) +" +RDEPEND=" + ${DEPEND} +" +PATCHES=( + "${FILESDIR}"/${PN}-0.9.0.2-gtk.patch + "${FILESDIR}"/${PN}-0.9.6-gpsd.patch +) +src_prepare() { + default + + # fix parallel make + # respect AR + # verbose build + # fix default prefix, bug #453440 + sed -i \ + -e '/@echo "\[/d' \ + -e 's|$(MAKECMD)|$(MAKE)|g' \ + -e 's|@$(CC)|$(CC)|g' \ + -e 's|@ar |$(AR) |g' \ + -e '/^prefix/s:/usr/local:/usr:' \ + $( find -name 'Makefile*' ) || die + + # respect LDFLAGS + sed -i \ + -e 's|$(CC)|& $(OLSRD_LDFLAGS)|g' \ + lib/pud/nmealib/Makefile lib/pud/wireformat/Makefile || die +} + +src_configure() { + if ! use pud; then + sed -i -e '/^SUBDIRS/ s|pud||g' Makefile || die + fi +} + +src_compile() { + tc-export PKG_CONFIG + emake \ + CC="$(tc-getCC)" \ + VERBOSE=1 \ + LIBDIR="/usr/$(get_libdir)/${PN}" \ + OLSRD_LDFLAGS="${LDFLAGS}" \ + OS=linux \ + build_all + if use gtk; then + emake -C gui/linux-gtk LIBDIR="/usr/$(get_libdir)/${PN}" CC="$(tc-getCC)" + fi +} + +src_install() { + emake OS=linux LIBDIR="${D}/usr/$(get_libdir)/${PN}" \ + DESTDIR="${D}" STRIP=true install_all + if use gtk; then + emake -C gui/linux-gtk \ + LIBDIR="${D}/usr/$(get_libdir)/${PN}" DESTDIR="${D}" install + fi + + doinitd "${FILESDIR}"/${PN} + + gzip -d \ + "${ED%/}"/usr/share/man/man5/olsrd.conf.5.gz \ + "${ED%/}"/usr/share/man/man8/olsrd.8.gz + + dodoc CHANGELOG \ + valgrind-howto.txt files/olsrd.conf.default.rfc \ + files/olsrd.conf.default.lq \ + lib/arprefresh/README_ARPREFRESH \ + lib/bmf/README_BMF \ + lib/dot_draw/README_DOT_DRAW \ + lib/dyn_gw/README_DYN_GW \ + lib/dyn_gw_plain/README_DYN_GW_PLAIN \ + lib/httpinfo/README_HTTPINFO \ + lib/mini/README_MINI \ + lib/nameservice/README_NAMESERVICE \ + lib/pgraph/README_PGRAPH \ + lib/quagga/README_QUAGGA \ + lib/secure/README_SECURE \ + lib/txtinfo/README_TXTINFO \ + lib/watchdog/README_WATCHDOG +}