From ac8c51818c76dc7218aa2dc7d16b7fa1a547efff Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 15 Mar 2007 06:16:23 +0000 Subject: [PATCH 1/4] Initialize branch FC-6 for xine-plugin --- branch | 1 + 1 file changed, 1 insertion(+) create mode 100644 branch diff --git a/branch b/branch new file mode 100644 index 0000000..d5b6362 --- /dev/null +++ b/branch @@ -0,0 +1 @@ +FC-6 From 38d5a54221ac6f4861a79715c479d96f7139aeb9 Mon Sep 17 00:00:00 2001 From: Martin Sourada Date: Thu, 15 Mar 2007 16:37:40 +0000 Subject: [PATCH 2/4] auto-import xine-plugin-1.0-3 on branch FC-6 from xine-plugin-1.0-3.src.rpm --- .cvsignore | 1 + sources | 1 + xine-plugin.spec | 68 ++++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 70 insertions(+) create mode 100644 xine-plugin.spec diff --git a/.cvsignore b/.cvsignore index e69de29..5f56685 100644 --- a/.cvsignore +++ b/.cvsignore @@ -0,0 +1 @@ +xine-plugin-1.0.tar.bz2 diff --git a/sources b/sources index e69de29..a811738 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +05498789ac11990d5ddd05269671ad0d xine-plugin-1.0.tar.bz2 diff --git a/xine-plugin.spec b/xine-plugin.spec new file mode 100644 index 0000000..74cbade --- /dev/null +++ b/xine-plugin.spec @@ -0,0 +1,68 @@ +Name: xine-plugin +Version: 1.0 +Release: 3%{?dist} +Summary: Media plugin for mozilla compatible browsers using libxine backend + +Group: Applications/Multimedia +License: GPL +URL: http://xinehq.de/ +Source0: http://prdownloads.sourceforge.net/xine/xine-plugin-1.0.tar.bz2 +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) + +BuildRequires: xine-lib-devel +BuildRequires: pkgconfig +BuildRequires: xorg-x11-proto-devel +BuildRequires: libX11-devel +Requires: %{_libdir}/mozilla/plugins + +%description +This is a very simple netscape/mozilla browser plugin using the xine +engine to display multimedia streams. + +Features: + +- embedded display on browser window +- streaming playback directly from xine engine +- playback control using keyboard +- relative paths supported +- on screen display of buffering and stream information +- playlists and references support +- loop and repeat mode +- multiple instances within the same page +- javascript support + + +%prep +%setup -q + + +%build +%configure --with-plugindir=%{_libdir}/mozilla/plugins +make %{?_smp_mflags} + + +%install +rm -rf $RPM_BUILD_ROOT +make install DESTDIR=$RPM_BUILD_ROOT +rm -rf $RPM_BUILD_ROOT/%{_libdir}/mozilla/plugins/*.la + + +%clean +rm -rf $RPM_BUILD_ROOT + + +%files +%defattr(-,root,root,-) +%doc AUTHORS COPYING README +%{_libdir}/mozilla/plugins/* + + +%changelog +* Wed Mar 14 2007 Martin Sourada - 1.0-3 +- fix rpmlint warning + +* Tue Mar 13 2007 Martin Sourada - 1.0-2 +- add BR: xorg-x11-proto-devel, libX11-devel + +* Sun Feb 04 2007 Martin Sourada - 1.0-1 +- Initial package From ef0c8fd52397c04862066cd0f103d3ba7e3cf3f4 Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Thu, 26 Nov 2009 01:33:36 +0000 Subject: [PATCH 3/4] Fix typo that causes a failure to update the common directory. (releng #2781) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 23c548d..05e2881 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ NAME := xine-plugin SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common -for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done +for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) From 0535dc873e133c7a2f776546a5be9b2cfef45f97 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 29 Jul 2010 15:53:12 +0000 Subject: [PATCH 4/4] dist-git conversion --- .cvsignore => .gitignore | 0 Makefile | 21 --------------------- branch | 1 - 3 files changed, 22 deletions(-) rename .cvsignore => .gitignore (100%) delete mode 100644 Makefile delete mode 100644 branch diff --git a/.cvsignore b/.gitignore similarity index 100% rename from .cvsignore rename to .gitignore diff --git a/Makefile b/Makefile deleted file mode 100644 index 05e2881..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Makefile for source rpm: xine-plugin -# $Id$ -NAME := xine-plugin -SPECFILE = $(firstword $(wildcard *.spec)) - -define find-makefile-common -for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done -endef - -MAKEFILE_COMMON := $(shell $(find-makefile-common)) - -ifeq ($(MAKEFILE_COMMON),) -# attept a checkout -define checkout-makefile-common -test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 -endef - -MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) -endif - -include $(MAKEFILE_COMMON) diff --git a/branch b/branch deleted file mode 100644 index d5b6362..0000000 --- a/branch +++ /dev/null @@ -1 +0,0 @@ -FC-6