From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 22 13:50:26 2015 Return-Path: Delivered-To: freebsd-ports-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D11D198A for ; Sun, 22 Feb 2015 13:50:26 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B3BF133F for ; Sun, 22 Feb 2015 13:50:26 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t1MDoQis022782 for ; Sun, 22 Feb 2015 13:50:26 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-ports-bugs@FreeBSD.org Subject: [Bug 197707] [new port] devel/libosmo-netif Date: Sun, 22 Feb 2015 13:50:26 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: jbeich@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-ports-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 Feb 2015 13:50:27 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D197707 --- Comment #1 from Jan Beich --- Comment on attachment 153038 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=3D153038 libosmo-netif >XUSES=3D libtool pkgconfig >X >XUSE_AUTOTOOLS=3D aclocal autoconf automake libtoolize autoheader >XAUTOMAKE_ARGS=3D --gnu --add-missing --copy Can be replaced with USES=3D autoreconf >Xpost-patch: >X ${REINPLACE_CMD} -e 's|pkgconfigdir.*|pkgconfigdir =3D ${PREFIX}/libdata= /pkgconfig|g' \ >X ${WRKSRC}/Makefile.am Can be replaced with USES=3D pathfix PATHFIX_MAKEFILEIN=3D Makefile.am=20=20 >Xpost-stage: >X ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libosmonetif.so.2.0.0 Can be replaced with INSTALL_TARGET=3D install-strip >sed 's/^X//' >libosmo-netif/pkg-descr << '79ad83226ca6216d3244c7c44ff54313' >XLibrary containing common/shared code regarding network interface. >XDevelopment headers for Osmocom network interface. >XDebug symbols for Osmocom network interface. Why not put comment 0 description instead of debian/control shorts? We don't split packages into devel/debug. >X+++ configure.ac 2015-02-16 17:04:01.000000000 +0200 >X@@ -32,7 +32,7 @@ AC_COMPILE_IFELSE([AC_LANG_SOURCE([char=20 >X CFLAGS=3D"$saved_CFLAGS" >X AC_SUBST(SYMBOL_VISIBILITY) >X=20 >X-AC_CHECK_HEADER([endian.h], [], [AC_MSG_ERROR([endian.h not found!]) ]) >X+AC_CHECK_HEADER([sys/endian.h], [], [AC_MSG_ERROR([endian.h not found!])= ]) Use plural form and drop AC_MSG_ERROR e.g., AC_CHECK_HEADERS(endian.h sys/endian.h) >X--- src/rtp.c.orig 2014-09-08 08:52:08.000000000 +0300 >X+++ src/rtp.c 2015-02-16 11:54:11.000000000 +0200 >X@@ -1,6 +1,10 @@ >X #include >X #include >X+#ifdef __FreeBSD__ Better use defines from autoheader e.g., #ifdef HAVE_CONFIG_H #include "config.h" #endif #ifdef HAVE_SYS_ENDIAN_H >X+#include >X+#else >X #include >X+#endif >X+++ examples/ipa-stream-server.c 2015-02-16 17:05:21.000000000 +0200 >X@@ -4,6 +4,10 @@ >X #include >X #include >X #include >X+#ifdef __FreeBSD__ No need to guard POSIX headers. It'd also help other BSDs like DragonFly. >X+#include >X+#include >X+#endif >X #include >echo x - libosmo-netif/pkg-plist >sed 's/^X//' >libosmo-netif/pkg-plist << '589ab34feab31363be59acbd04f9baf2' >Xlib/libosmonetif.so >Xlib/libosmonetif.so.2 >Xlib/libosmonetif.so.2.0.0 Didn't portlint(1) warn you about USE_LDCONFIG ? --=20 You are receiving this mail because: You are the assignee for the bug.=