mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-30 05:40:06 +00:00
Convert REINPLACE_CMD to patch files
This commit is contained in:
parent
fbb469a158
commit
87d7e1d7be
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=534424
@ -33,10 +33,4 @@ SPEEX_LIB_DEPENDS= libspeex.so:audio/speex
|
||||
THEORA_CONFIGURE_ENABLE=theora
|
||||
THEORA_LIB_DEPENDS= libtheora.so:multimedia/libtheora
|
||||
|
||||
post-patch:
|
||||
@${REINPLACE_CMD} -e '/^DATA = / s| $$(ckport_DATA)||; /^install-data-am:/ s| install-ckportDATA||' ${WRKSRC}/Makefile.in
|
||||
@${REINPLACE_CMD} -e 's| -ffast-math||g; /libssl/d' ${WRKSRC}/configure
|
||||
@${REINPLACE_CMD} -e '/^AM_CPPFLAGS = / s|^\(.*\) \(@XIPH_CPPFLAGS@\) \(.*\)$$|\1 \3 \2|' ${WRKSRC}/examples/Makefile.in
|
||||
@${REINPLACE_CMD} -e 's|#ifdef IPV6_V6ONLY|#if defined(__BSD_VISIBLE) \&\& defined(IPV6_V6ONLY)|' ${WRKSRC}/src/common/net/sock.c
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
20
audio/libshout/files/patch-Makefile.in
Normal file
20
audio/libshout/files/patch-Makefile.in
Normal file
@ -0,0 +1,20 @@
|
||||
--- Makefile.in.orig 2020-05-08 18:29:05 UTC
|
||||
+++ Makefile.in
|
||||
@@ -158,7 +158,7 @@ am__uninstall_files_from_dir = { \
|
||||
}
|
||||
am__installdirs = "$(DESTDIR)$(ckportdir)" "$(DESTDIR)$(docdir)" \
|
||||
"$(DESTDIR)$(m4datadir)" "$(DESTDIR)$(pkgconfigdir)"
|
||||
-DATA = $(ckport_DATA) $(doc_DATA) $(m4data_DATA) $(pkgconfig_DATA)
|
||||
+DATA = $(doc_DATA) $(m4data_DATA) $(pkgconfig_DATA)
|
||||
RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
|
||||
distclean-recursive maintainer-clean-recursive
|
||||
am__recursive_targets = \
|
||||
@@ -903,7 +903,7 @@ info: info-recursive
|
||||
|
||||
info-am:
|
||||
|
||||
-install-data-am: install-ckportDATA install-docDATA install-m4dataDATA \
|
||||
+install-data-am: install-docDATA install-m4dataDATA \
|
||||
install-pkgconfigDATA
|
||||
|
||||
install-dvi: install-dvi-recursive
|
19
audio/libshout/files/patch-configure
Normal file
19
audio/libshout/files/patch-configure
Normal file
@ -0,0 +1,19 @@
|
||||
--- configure.orig 2019-05-28 19:31:20 UTC
|
||||
+++ configure
|
||||
@@ -11927,7 +11927,7 @@ if test -z "$GCC"; then
|
||||
;;
|
||||
esac
|
||||
else
|
||||
- XIPH_CFLAGS="-Wall -ffast-math -fsigned-char"
|
||||
+ XIPH_CFLAGS="-Wall -fsigned-char"
|
||||
|
||||
$as_echo "#define _GNU_SOURCE /**/" >>confdefs.h
|
||||
|
||||
@@ -14923,7 +14923,6 @@ EOF
|
||||
done
|
||||
XIPH_LIBS="$xt_filtered $XIPH_LIBS"
|
||||
|
||||
- SHOUT_REQUIRES="$SHOUT_REQUIRES, libssl"
|
||||
SHOUT_TLS="1"
|
||||
|
||||
else
|
11
audio/libshout/files/patch-examples-Makefile.in
Normal file
11
audio/libshout/files/patch-examples-Makefile.in
Normal file
@ -0,0 +1,11 @@
|
||||
--- examples/Makefile.in.orig 2020-05-08 18:29:05 UTC
|
||||
+++ examples/Makefile.in
|
||||
@@ -330,7 +330,7 @@ example_LDADD = $(top_builddir)/src/libshout.la @SHOUT
|
||||
nonblocking_SOURCES = nonblocking.c
|
||||
nonblocking_LDADD = $(top_builddir)/src/libshout.la @SHOUT_LIBDEPS@
|
||||
AM_CFLAGS = @XIPH_CFLAGS@
|
||||
-AM_CPPFLAGS = @XIPH_CPPFLAGS@ -I$(top_builddir)/include
|
||||
+AM_CPPFLAGS = -I$(top_builddir)/include @XIPH_CPPFLAGS@
|
||||
all: all-am
|
||||
|
||||
.SUFFIXES:
|
11
audio/libshout/files/patch-src-common-net-sock.c
Normal file
11
audio/libshout/files/patch-src-common-net-sock.c
Normal file
@ -0,0 +1,11 @@
|
||||
--- src/common/net/sock.c.orig 2019-05-15 08:58:13 UTC
|
||||
+++ src/common/net/sock.c
|
||||
@@ -742,7 +742,7 @@ sock_t sock_get_server_socket (int port, const char *s
|
||||
|
||||
setsockopt (sock, SOL_SOCKET, SO_REUSEADDR, (const void *)&on, sizeof(on));
|
||||
on = 0;
|
||||
-#ifdef IPV6_V6ONLY
|
||||
+#if defined(__BSD_VISIBLE) && defined(IPV6_V6ONLY)
|
||||
setsockopt (sock, IPPROTO_IPV6, IPV6_V6ONLY, &on, sizeof on);
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user