- update loudmouth to 1.4.1
- bump major - fix license marker - enable regression suite
This commit is contained in:
parent
332eae7ae1
commit
45633bb12c
@ -1,15 +1,14 @@
|
||||
# $OpenBSD: Makefile,v 1.6 2008/05/27 08:02:51 ajacoutot Exp $
|
||||
# $OpenBSD: Makefile,v 1.7 2008/08/20 16:11:11 jasper Exp $
|
||||
|
||||
COMMENT= lightweight Jabber client library
|
||||
|
||||
DISTNAME= loudmouth-1.2.3
|
||||
PKGNAME= ${DISTNAME}p2
|
||||
SHARED_LIBS += loudmouth-1 0.0 # .0.0
|
||||
DISTNAME= loudmouth-1.4.1
|
||||
SHARED_LIBS += loudmouth-1 1.0 # .1.0
|
||||
CATEGORIES= net devel
|
||||
|
||||
HOMEPAGE= http://www.loudmouth-project.org/
|
||||
|
||||
# GPL
|
||||
# LGPLv2.1
|
||||
PERMIT_PACKAGE_CDROM= Yes
|
||||
PERMIT_PACKAGE_FTP= Yes
|
||||
PERMIT_DISTFILES_CDROM= Yes
|
||||
@ -24,6 +23,7 @@ EXTRACT_SUFX= .tar.bz2
|
||||
|
||||
LIB_DEPENDS= glib-2.0::devel/glib2 \
|
||||
idn.>=16::devel/libidn
|
||||
BUILD_DEPENDS= ${REGRESS_DEPENDS}
|
||||
REGRESS_DEPENDS= ::devel/check
|
||||
|
||||
USE_LIBTOOL= Yes
|
||||
@ -31,6 +31,7 @@ CONFIGURE_STYLE= gnu
|
||||
CONFIGURE_ARGS+= ${CONFIGURE_SHARED} \
|
||||
--disable-gtk-doc \
|
||||
--disable-mono \
|
||||
--with-ssl=openssl
|
||||
--with-ssl=openssl \
|
||||
--with-check=${LOCALBASE}
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
@ -1,5 +1,5 @@
|
||||
MD5 (loudmouth-1.2.3.tar.bz2) = fiWw4TSY3LZx1g0M1iCRuA==
|
||||
RMD160 (loudmouth-1.2.3.tar.bz2) = ztaPUYeFXzKGyqYExGrfCXIBMEg=
|
||||
SHA1 (loudmouth-1.2.3.tar.bz2) = UcYxcXC48ETkidccfehBBmP++2s=
|
||||
SHA256 (loudmouth-1.2.3.tar.bz2) = Qfd1MD52Q2rdPAFB5IUkYiOmC7vPkKfpDtK1uvbiYCs=
|
||||
SIZE (loudmouth-1.2.3.tar.bz2) = 325864
|
||||
MD5 (loudmouth-1.4.1.tar.bz2) = 4DKhNpcJ6KEEeRwXxtXf5Q==
|
||||
RMD160 (loudmouth-1.4.1.tar.bz2) = ZCTInwfKMQTYZ2uIrVtCwyk+ke8=
|
||||
SHA1 (loudmouth-1.4.1.tar.bz2) = rHtAmrkBY6PrmOZbGvpcA35WD8o=
|
||||
SHA256 (loudmouth-1.4.1.tar.bz2) = KqBCDMup2BnRoUJUapTXPkWKeTKquvcRkOkqfNj25Og=
|
||||
SIZE (loudmouth-1.4.1.tar.bz2) = 379833
|
||||
|
11
net/loudmouth/patches/patch-configure
Normal file
11
net/loudmouth/patches/patch-configure
Normal file
@ -0,0 +1,11 @@
|
||||
$OpenBSD: patch-configure,v 1.1 2008/08/20 16:11:11 jasper Exp $
|
||||
--- configure.orig Mon Aug 4 13:29:13 2008
|
||||
+++ configure Mon Aug 4 13:29:18 2008
|
||||
@@ -21584,6 +21584,7 @@ cat >>conftest.$ac_ext <<_ACEOF
|
||||
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
+#include <string.h>
|
||||
|
||||
#include <check.h>
|
||||
|
13
net/loudmouth/patches/patch-loudmouth_Makefile_in
Normal file
13
net/loudmouth/patches/patch-loudmouth_Makefile_in
Normal file
@ -0,0 +1,13 @@
|
||||
$OpenBSD: patch-loudmouth_Makefile_in,v 1.1 2008/08/20 16:11:11 jasper Exp $
|
||||
--- loudmouth/Makefile.in.orig Mon Aug 4 13:37:02 2008
|
||||
+++ loudmouth/Makefile.in Mon Aug 4 13:37:12 2008
|
||||
@@ -306,8 +306,7 @@ libloudmouthinclude_HEADERS = \
|
||||
|
||||
libloudmouth_1_la_LIBADD = \
|
||||
$(LOUDMOUTH_LIBS) \
|
||||
- $(LIBIDN_LIBS) \
|
||||
- -lresolv
|
||||
+ $(LIBIDN_LIBS)
|
||||
|
||||
libloudmouth_1_la_LDFLAGS = \
|
||||
-version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) \
|
13
net/loudmouth/patches/patch-loudmouth_lm-sock_c
Normal file
13
net/loudmouth/patches/patch-loudmouth_lm-sock_c
Normal file
@ -0,0 +1,13 @@
|
||||
$OpenBSD: patch-loudmouth_lm-sock_c,v 1.1 2008/08/20 16:11:11 jasper Exp $
|
||||
--- loudmouth/lm-sock.c.orig Mon Aug 4 13:31:31 2008
|
||||
+++ loudmouth/lm-sock.c Mon Aug 4 13:36:34 2008
|
||||
@@ -28,7 +28,9 @@
|
||||
#include <string.h>
|
||||
#include <unistd.h>
|
||||
#include <sys/socket.h>
|
||||
+#include <sys/types.h>
|
||||
#include <fcntl.h>
|
||||
+#include <netinet/in_systm.h>
|
||||
#include <netinet/in.h>
|
||||
#include <netinet/ip.h>
|
||||
#include <netinet/tcp.h>
|
@ -1,16 +1,16 @@
|
||||
$OpenBSD: patch-tests-Makefile_in,v 1.1.1.1 2007/05/27 19:33:15 jasper Exp $
|
||||
--- tests/Makefile.in.orig Mon Apr 30 01:53:15 2007
|
||||
+++ tests/Makefile.in Sun May 27 12:11:39 2007
|
||||
@@ -55,7 +55,7 @@ test_objects_LDADD = $(LDADD)
|
||||
$OpenBSD: patch-tests-Makefile_in,v 1.2 2008/08/20 16:11:11 jasper Exp $
|
||||
--- tests/Makefile.in.orig Mon Aug 4 13:23:35 2008
|
||||
+++ tests/Makefile.in Mon Aug 4 13:24:03 2008
|
||||
@@ -52,7 +52,7 @@ test_objects_LDADD = $(LDADD)
|
||||
am_test_parser_OBJECTS = test-parser.$(OBJEXT)
|
||||
test_parser_OBJECTS = $(am_test_parser_OBJECTS)
|
||||
test_parser_LDADD = $(LDADD)
|
||||
-DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)
|
||||
+DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) -I${TRUEPREFIX}/include
|
||||
-DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)
|
||||
+DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) -I${TRUEPREFIX}/include
|
||||
depcomp = $(SHELL) $(top_srcdir)/depcomp
|
||||
am__depfiles_maybe = depfiles
|
||||
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
|
||||
@@ -131,7 +131,7 @@ INSTALL_DATA = @INSTALL_DATA@
|
||||
@@ -127,7 +127,7 @@ INSTALL_DATA = @INSTALL_DATA@
|
||||
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
||||
INSTALL_SCRIPT = @INSTALL_SCRIPT@
|
||||
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
|
||||
|
Loading…
x
Reference in New Issue
Block a user