mirror of
https://git.freebsd.org/ports.git
synced 2025-06-27 23:50:30 -04:00
o Update to CVS snapshot 20050511 o Add FreeBSD native byteswap support o Video capture is not working and help is appreciated on this matter. Join irc.freenode.net #freebsd-multimedia to help. Some fixes have been borrowed from [2], [3] and [4] o IPV6 support fixed [1] Submitted by: ahze [1], Jacob Meuser <jakemsr@jakemsr.com> [4], Vladimir Kushnir <vkushnir@i.kiev.ua> [4] Reviewed by: ahze, Jacob Meuser <jakemsr@jakemsr.com>, Vladimir Kushnir <vkushnir@i.kiev.ua>, countless others at FreeBSD-multimedia@FreeBSD.org mailing list Obtained from: FFmpeg CVS repo [2], OpenBSD FFmpeg port [3]
13 lines
509 B
Text
13 lines
509 B
Text
--- libavcodec/Makefile.orig Sun May 1 17:07:56 2005
|
|
+++ libavcodec/Makefile Sun May 1 17:08:29 2005
|
|
@@ -303,8 +303,8 @@
|
|
install $(INSTALLSTRIP) -m 755 $(SLIB) "$(prefix)"
|
|
else
|
|
install -d $(libdir)
|
|
- install $(INSTALLSTRIP) -m 755 $(SLIB) $(libdir)/libavcodec-$(VERSION).so
|
|
- ln -sf libavcodec-$(VERSION).so $(libdir)/libavcodec.so
|
|
+ ${BSD_INSTALL_DATA} $(SLIB) $(prefix)/lib/libavcodec.so.1
|
|
+ cd $(prefix)/lib && ln -sf libavcodec.so.1 libavcodec.so
|
|
ldconfig || true
|
|
endif
|
|
ifeq ($(CONFIG_PP),yes)
|