[ANNOUNCE] vdr-webvideo 0.2.0 - little patch to makefile of libwebvi

Message ID 4B5EB702.3040600@users.sourceforge.net
State New
Headers

Commit Message

Lucian Muresan Jan. 26, 2010, 9:33 a.m. UTC
  Hi,

On 24.01.2010 16:46, Aimo Parru wrote:
> On Sunday 24 January 2010 15:34:59 Antti Ajanki wrote:
>> Does it work if you first run
>>
>> /sbin/ldconfig /usr/local/lib
>>
>> as root and then restart VDR?
>>
> 
> Yes. It started now. Ldconfig gave a warning or something:
> /sbin/ldconfig.real: /usr/local/lib/libwebvi.so.0 is not a symbolic link  

This I think can be fixed when applying the attached patch, (which also
makes libwebvi installable by a Gentoo ebuild I wrote for it in the
default gentoo prefix /usr). I noticed that in the build directory,
libwebvi.so.0 is generated as symlink, but when running the install
target, it ends up installing 3 copies of the same file instead of only
one and 2 symlinks. The patch also applies to version 0.2.1.

Btw, I wrote 3 ebuilds for this plugin (media-video/rtmptdump-yle,
media-video/webvi and media-plugins/vdr-webvi) and already sent them to
Joerg from the Gentoo vdr team...

Cheers,
Lucian
  

Comments

Rene Hertell Jan. 26, 2010, 1:33 p.m. UTC | #1
Lucian Muresan wrote:

> Btw, I wrote 3 ebuilds for this plugin (media-video/rtmptdump-yle,
> media-video/webvi and media-plugins/vdr-webvi) and already sent them to
> Joerg from the Gentoo vdr team...

Hi Lucian!

Do you happen to have these ebuilds somewhere to download, cause i can't
wait to test them :-)


René
  
Pertti Kosunen Jan. 26, 2010, 1:52 p.m. UTC | #2
On 26.1.2010 15:33, Rene wrote:
> Do you happen to have these ebuilds somewhere to download, cause i can't
> wait to test them :-)

http://www.kosunen.fi/gentoo/portage/media-video/rtmpdump-yle/rtmpdump-yle-1.1.7.ebuild

There is rtmpdump-yle.
  
Rene Hertell Jan. 26, 2010, 2:04 p.m. UTC | #3
Pertti Kosunen wrote:
> On 26.1.2010 15:33, Rene wrote:
>> Do you happen to have these ebuilds somewhere to download, cause i can't
>> wait to test them :-)
> 
> http://www.kosunen.fi/gentoo/portage/media-video/rtmpdump-yle/rtmpdump-yle-1.1.7.ebuild
> 
> 
> There is rtmpdump-yle.

Added and installed!! Thanks! :-)

Now just two ebuilds left :-)

René
  

Patch

diff -Naur webvideo-0.2.0_orig/src/libwebvi/Makefile webvideo-0.2.0/src/libwebvi/Makefile
--- webvideo-0.2.0_orig/src/libwebvi/Makefile	2010-01-17 17:57:27.000000000 +0100
+++ webvideo-0.2.0/src/libwebvi/Makefile	2010-01-21 11:28:28.000000000 +0100
@@ -1,4 +1,4 @@ 
-PREFIX=/usr/local
+PREFIX ?= /usr/local
 
 LIBNAME=libwebvi.so
 LIBSONAME=$(LIBNAME).0
@@ -21,6 +21,6 @@ 
 	rm -f *.o *~ libwebvi.so* libwebvi.a
 
 install: $(LIBMINOR)
-	cp --remove-destination libwebvi.so* $(PREFIX)/lib
+	cp --remove-destination --archive libwebvi.so* $(PREFIX)/lib
 
 .PHONY: clean install