rpms/gstreamer-plugins-bad-nonfree/devel gstreamer-plugins-bad-nonfree.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2
by jwrdegoede
Author: jwrdegoede
Update of /cvs/nonfree/rpms/gstreamer-plugins-bad-nonfree/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv5421/devel
Modified Files:
.cvsignore sources
Added Files:
gstreamer-plugins-bad-nonfree.spec
Log Message:
Initial gstreamer-plugins-bad-nonfree import
--- NEW FILE gstreamer-plugins-bad-nonfree.spec ---
%define majorminor 0.10
Summary: Non Free GStreamer streaming media framework "bad" plug-ins
Name: gstreamer-plugins-bad-nonfree
Version: 0.10.17
Release: 2%{?dist}
License: LGPLv2+
Group: Applications/Multimedia
URL: http://gstreamer.freedesktop.org/
Source: http://gstreamer.freedesktop.org/src/gst-plugins-bad/gst-plugins-bad-%{ve...
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: gstreamer-devel gstreamer-plugins-base-devel
BuildRequires: amrwb-devel faac-devel liboil-devel
BuildRequires: check gettext-devel PyXML
%description
GStreamer is a streaming media framework, based on graphs of elements which
operate on media data.
This package contains plug-ins that depend upon non-free libraries.
%prep
%setup -q -n gst-plugins-bad-%{version}
%build
%configure \
--with-package-name="gst-plugins-bad rpmfusion rpm" \
--with-package-origin="http://rpmfusion.org/" \
--enable-debug --disable-static
# Don't use rpath!
sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool
sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool
pushd ext/amrwbenc
make %{?_smp_mflags} V=2
popd
pushd ext/faac
make %{?_smp_mflags} V=2
popd
%install
rm -rf $RPM_BUILD_ROOT
pushd ext/amrwbenc
make install V=2 DESTDIR=$RPM_BUILD_ROOT
popd
pushd ext/faac
make install V=2 DESTDIR=$RPM_BUILD_ROOT
popd
rm $RPM_BUILD_ROOT%{_libdir}/gstreamer-%{majorminor}/libgst*.la
%clean
rm -rf $RPM_BUILD_ROOT
%files
%defattr(-,root,root,-)
%doc AUTHORS COPYING README REQUIREMENTS
%{_datadir}/gstreamer-%{majorminor}
%{_libdir}/gstreamer-%{majorminor}/libgstamrwbenc.so
%{_libdir}/gstreamer-%{majorminor}/libgstfaac.so
%changelog
* Tue Jan 5 2010 Hans de Goede <j.w.r.degoede(a)hhs.nl> 0.10.17-2
- Various small specfile fixes from review (rf1015)
* Sat Dec 19 2009 Hans de Goede <j.w.r.degoede(a)hhs.nl> 0.10.17-1
- Initial RPM Fusion package
Index: .cvsignore
===================================================================
RCS file: /cvs/nonfree/rpms/gstreamer-plugins-bad-nonfree/devel/.cvsignore,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- .cvsignore 4 Jan 2010 11:06:01 -0000 1.1
+++ .cvsignore 5 Jan 2010 13:25:51 -0000 1.2
@@ -0,0 +1 @@
+gst-plugins-bad-0.10.17.tar.bz2
Index: sources
===================================================================
RCS file: /cvs/nonfree/rpms/gstreamer-plugins-bad-nonfree/devel/sources,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- sources 4 Jan 2010 11:06:01 -0000 1.1
+++ sources 5 Jan 2010 13:25:51 -0000 1.2
@@ -0,0 +1 @@
+c0c3e79430d4441c4825436387d200f4 gst-plugins-bad-0.10.17.tar.bz2
15 years
rpms/vlc/F-12 vlc-1.0.4-xulrunner-191.patch,NONE,1.1
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/vlc/F-12
In directory se02.es.rpmfusion.net:/tmp/cvs-serv29120/F-12
Added Files:
vlc-1.0.4-xulrunner-191.patch
Log Message:
cvs add the file
vlc-1.0.4-xulrunner-191.patch:
vlcplugin.cpp | 3 ++-
vlcplugin.h | 4 ++--
vlcshell.cpp | 10 +++++-----
vlcshell.h | 14 +++++++-------
4 files changed, 16 insertions(+), 15 deletions(-)
--- NEW FILE vlc-1.0.4-xulrunner-191.patch ---
diff -up vlc-1.0.4/projects/mozilla/vlcplugin.cpp.xul191 vlc-1.0.4/projects/mozilla/vlcplugin.cpp
--- vlc-1.0.4/projects/mozilla/vlcplugin.cpp.xul191 2009-12-07 22:12:58.000000000 +0100
+++ vlc-1.0.4/projects/mozilla/vlcplugin.cpp 2010-01-03 22:19:46.665420058 +0100
@@ -36,11 +36,12 @@
#include "control/npolibvlc.h"
#include <ctype.h>
+#include <stdlib.h>
/*****************************************************************************
* VlcPlugin constructor and destructor
*****************************************************************************/
-VlcPlugin::VlcPlugin( NPP instance, uint16 mode ) :
+VlcPlugin::VlcPlugin( NPP instance, uint16_t mode ) :
i_npmode(mode),
b_stream(0),
b_autoplay(1),
diff -up vlc-1.0.4/projects/mozilla/vlcplugin.h.xul191 vlc-1.0.4/projects/mozilla/vlcplugin.h
--- vlc-1.0.4/projects/mozilla/vlcplugin.h.xul191 2009-12-07 22:12:58.000000000 +0100
+++ vlc-1.0.4/projects/mozilla/vlcplugin.h 2010-01-03 22:19:46.666424935 +0100
@@ -82,7 +82,7 @@ typedef enum vlc_toolbar_clicked_e {
class VlcPlugin
{
public:
- VlcPlugin( NPP, uint16 );
+ VlcPlugin( NPP, uint16_t );
virtual ~VlcPlugin();
NPError init(int argc, char* const argn[], char* const argv[]);
@@ -135,7 +135,7 @@ public:
vlc_toolbar_clicked_t getToolbarButtonClicked( int i_xpos, int i_ypos );
#endif
- uint16 i_npmode; /* either NP_EMBED or NP_FULL */
+ uint16_t i_npmode; /* either NP_EMBED or NP_FULL */
/* plugin properties */
int b_stream;
diff -up vlc-1.0.4/projects/mozilla/vlcshell.cpp.xul191 vlc-1.0.4/projects/mozilla/vlcshell.cpp
--- vlc-1.0.4/projects/mozilla/vlcshell.cpp.xul191 2009-12-07 22:12:58.000000000 +0100
+++ vlc-1.0.4/projects/mozilla/vlcshell.cpp 2010-01-03 22:19:46.666424935 +0100
@@ -275,7 +275,7 @@ void NPP_Shutdown( void )
;
}
-NPError NPP_New( NPMIMEType pluginType, NPP instance, uint16 mode, int16 argc,
+NPError NPP_New( NPMIMEType pluginType, NPP instance, uint16_t mode, int16_t argc,
char* argn[], char* argv[], NPSavedData* saved )
{
NPError status;
@@ -579,7 +579,7 @@ NPError NPP_SetWindow( NPP instance, NPW
}
NPError NPP_NewStream( NPP instance, NPMIMEType type, NPStream *stream,
- NPBool seekable, uint16 *stype )
+ NPBool seekable, uint16_t *stype )
{
if( NULL == instance )
{
@@ -608,14 +608,14 @@ NPError NPP_NewStream( NPP instance, NPM
return NPERR_GENERIC_ERROR;
}
-int32 NPP_WriteReady( NPP instance, NPStream *stream )
+int32_t NPP_WriteReady( NPP instance, NPStream *stream )
{
/* TODO */
return 8*1024;
}
-int32 NPP_Write( NPP instance, NPStream *stream, int32 offset,
- int32 len, void *buffer )
+int32_t NPP_Write( NPP instance, NPStream *stream, int32_t offset,
+ int32_t len, void *buffer )
{
/* TODO */
return len;
diff -up vlc-1.0.4/projects/mozilla/vlcshell.h.xul191 vlc-1.0.4/projects/mozilla/vlcshell.h
--- vlc-1.0.4/projects/mozilla/vlcshell.h.xul191 2009-12-05 10:03:25.000000000 +0100
+++ vlc-1.0.4/projects/mozilla/vlcshell.h 2010-01-03 22:19:46.667422548 +0100
@@ -27,10 +27,10 @@
char * NPP_GetMIMEDescription( void );
NPError NPP_Initialize( void );
-jref NPP_GetJavaClass( void );
+jref NPP_GetJavaClass( void );
void NPP_Shutdown( void );
-NPError NPP_New( NPMIMEType pluginType, NPP instance, uint16 mode, int16 argc,
+NPError NPP_New( NPMIMEType pluginType, NPP instance, uint16_t mode, int16_t argc,
char* argn[], char* argv[], NPSavedData* saved );
NPError NPP_Destroy( NPP instance, NPSavedData** save );
@@ -40,20 +40,20 @@ NPError NPP_SetValue( NPP instance, NPNV
NPError NPP_SetWindow( NPP instance, NPWindow* window );
NPError NPP_NewStream( NPP instance, NPMIMEType type, NPStream *stream,
- NPBool seekable, uint16 *stype );
+ NPBool seekable, uint16_t *stype );
NPError NPP_DestroyStream( NPP instance, NPStream *stream, NPError reason );
void NPP_StreamAsFile( NPP instance, NPStream *stream, const char* fname );
-int32 NPP_WriteReady( NPP instance, NPStream *stream );
-int32 NPP_Write( NPP instance, NPStream *stream, int32 offset,
- int32 len, void *buffer );
+int32_t NPP_WriteReady( NPP instance, NPStream *stream );
+int32_t NPP_Write( NPP instance, NPStream *stream, int32_t offset,
+ int32_t len, void *buffer );
void NPP_URLNotify( NPP instance, const char* url,
NPReason reason, void* notifyData );
void NPP_Print( NPP instance, NPPrint* printInfo );
#ifdef XP_MACOSX
-int16 NPP_HandleEvent( NPP instance, void * event );
+int16_t NPP_HandleEvent( NPP instance, void * event );
#endif
#endif
15 years
rpms/vlc/F-11 vlc-1.0.4-xulrunner-191.patch,NONE,1.1
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/vlc/F-11
In directory se02.es.rpmfusion.net:/tmp/cvs-serv29120/F-11
Added Files:
vlc-1.0.4-xulrunner-191.patch
Log Message:
cvs add the file
vlc-1.0.4-xulrunner-191.patch:
vlcplugin.cpp | 3 ++-
vlcplugin.h | 4 ++--
vlcshell.cpp | 10 +++++-----
vlcshell.h | 14 +++++++-------
4 files changed, 16 insertions(+), 15 deletions(-)
--- NEW FILE vlc-1.0.4-xulrunner-191.patch ---
diff -up vlc-1.0.4/projects/mozilla/vlcplugin.cpp.xul191 vlc-1.0.4/projects/mozilla/vlcplugin.cpp
--- vlc-1.0.4/projects/mozilla/vlcplugin.cpp.xul191 2009-12-07 22:12:58.000000000 +0100
+++ vlc-1.0.4/projects/mozilla/vlcplugin.cpp 2010-01-03 22:19:46.665420058 +0100
@@ -36,11 +36,12 @@
#include "control/npolibvlc.h"
#include <ctype.h>
+#include <stdlib.h>
/*****************************************************************************
* VlcPlugin constructor and destructor
*****************************************************************************/
-VlcPlugin::VlcPlugin( NPP instance, uint16 mode ) :
+VlcPlugin::VlcPlugin( NPP instance, uint16_t mode ) :
i_npmode(mode),
b_stream(0),
b_autoplay(1),
diff -up vlc-1.0.4/projects/mozilla/vlcplugin.h.xul191 vlc-1.0.4/projects/mozilla/vlcplugin.h
--- vlc-1.0.4/projects/mozilla/vlcplugin.h.xul191 2009-12-07 22:12:58.000000000 +0100
+++ vlc-1.0.4/projects/mozilla/vlcplugin.h 2010-01-03 22:19:46.666424935 +0100
@@ -82,7 +82,7 @@ typedef enum vlc_toolbar_clicked_e {
class VlcPlugin
{
public:
- VlcPlugin( NPP, uint16 );
+ VlcPlugin( NPP, uint16_t );
virtual ~VlcPlugin();
NPError init(int argc, char* const argn[], char* const argv[]);
@@ -135,7 +135,7 @@ public:
vlc_toolbar_clicked_t getToolbarButtonClicked( int i_xpos, int i_ypos );
#endif
- uint16 i_npmode; /* either NP_EMBED or NP_FULL */
+ uint16_t i_npmode; /* either NP_EMBED or NP_FULL */
/* plugin properties */
int b_stream;
diff -up vlc-1.0.4/projects/mozilla/vlcshell.cpp.xul191 vlc-1.0.4/projects/mozilla/vlcshell.cpp
--- vlc-1.0.4/projects/mozilla/vlcshell.cpp.xul191 2009-12-07 22:12:58.000000000 +0100
+++ vlc-1.0.4/projects/mozilla/vlcshell.cpp 2010-01-03 22:19:46.666424935 +0100
@@ -275,7 +275,7 @@ void NPP_Shutdown( void )
;
}
-NPError NPP_New( NPMIMEType pluginType, NPP instance, uint16 mode, int16 argc,
+NPError NPP_New( NPMIMEType pluginType, NPP instance, uint16_t mode, int16_t argc,
char* argn[], char* argv[], NPSavedData* saved )
{
NPError status;
@@ -579,7 +579,7 @@ NPError NPP_SetWindow( NPP instance, NPW
}
NPError NPP_NewStream( NPP instance, NPMIMEType type, NPStream *stream,
- NPBool seekable, uint16 *stype )
+ NPBool seekable, uint16_t *stype )
{
if( NULL == instance )
{
@@ -608,14 +608,14 @@ NPError NPP_NewStream( NPP instance, NPM
return NPERR_GENERIC_ERROR;
}
-int32 NPP_WriteReady( NPP instance, NPStream *stream )
+int32_t NPP_WriteReady( NPP instance, NPStream *stream )
{
/* TODO */
return 8*1024;
}
-int32 NPP_Write( NPP instance, NPStream *stream, int32 offset,
- int32 len, void *buffer )
+int32_t NPP_Write( NPP instance, NPStream *stream, int32_t offset,
+ int32_t len, void *buffer )
{
/* TODO */
return len;
diff -up vlc-1.0.4/projects/mozilla/vlcshell.h.xul191 vlc-1.0.4/projects/mozilla/vlcshell.h
--- vlc-1.0.4/projects/mozilla/vlcshell.h.xul191 2009-12-05 10:03:25.000000000 +0100
+++ vlc-1.0.4/projects/mozilla/vlcshell.h 2010-01-03 22:19:46.667422548 +0100
@@ -27,10 +27,10 @@
char * NPP_GetMIMEDescription( void );
NPError NPP_Initialize( void );
-jref NPP_GetJavaClass( void );
+jref NPP_GetJavaClass( void );
void NPP_Shutdown( void );
-NPError NPP_New( NPMIMEType pluginType, NPP instance, uint16 mode, int16 argc,
+NPError NPP_New( NPMIMEType pluginType, NPP instance, uint16_t mode, int16_t argc,
char* argn[], char* argv[], NPSavedData* saved );
NPError NPP_Destroy( NPP instance, NPSavedData** save );
@@ -40,20 +40,20 @@ NPError NPP_SetValue( NPP instance, NPNV
NPError NPP_SetWindow( NPP instance, NPWindow* window );
NPError NPP_NewStream( NPP instance, NPMIMEType type, NPStream *stream,
- NPBool seekable, uint16 *stype );
+ NPBool seekable, uint16_t *stype );
NPError NPP_DestroyStream( NPP instance, NPStream *stream, NPError reason );
void NPP_StreamAsFile( NPP instance, NPStream *stream, const char* fname );
-int32 NPP_WriteReady( NPP instance, NPStream *stream );
-int32 NPP_Write( NPP instance, NPStream *stream, int32 offset,
- int32 len, void *buffer );
+int32_t NPP_WriteReady( NPP instance, NPStream *stream );
+int32_t NPP_Write( NPP instance, NPStream *stream, int32_t offset,
+ int32_t len, void *buffer );
void NPP_URLNotify( NPP instance, const char* url,
NPReason reason, void* notifyData );
void NPP_Print( NPP instance, NPPrint* printInfo );
#ifdef XP_MACOSX
-int16 NPP_HandleEvent( NPP instance, void * event );
+int16_t NPP_HandleEvent( NPP instance, void * event );
#endif
#endif
15 years
rpms/vlc/F-11 vlc.spec,1.47,1.48
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/vlc/F-11
In directory se02.es.rpmfusion.net:/tmp/cvs-serv28891/F-11
Modified Files:
vlc.spec
Log Message:
- Add vlc-1.0.4-xulrunner-191.patch
Index: vlc.spec
===================================================================
RCS file: /cvs/free/rpms/vlc/F-11/vlc.spec,v
retrieving revision 1.47
retrieving revision 1.48
diff -u -r1.47 -r1.48
--- vlc.spec 15 Dec 2009 19:44:44 -0000 1.47
+++ vlc.spec 4 Jan 2010 23:36:25 -0000 1.48
@@ -8,7 +8,7 @@
Summary: Multi-platform MPEG, DVD, and DivX player
Name: vlc
Version: 1.0.4
-Release: 1%{?dist}
+Release: 2%{?dist}
License: GPLv2+
Group: Applications/Multimedia
URL: http://www.videolan.org
@@ -21,6 +21,7 @@
Patch1: 0001-Default-libv4l2-to-true.patch
Patch3: 300_all_pic.patch
Patch4: 310_all_mmx_pic.patch
+Patch5: vlc-1.0.4-xulrunner-191.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: desktop-file-utils
@@ -227,6 +228,7 @@
%patch3 -p1 -b .dmo_pic
sed -i.dmo_pic -e 's/fno-PIC/fPIC/' libs/loader/Makefile.in
%patch4 -p1 -b .mmx_pic
+%patch5 -p1 -b .xul191
rm modules/access/videodev2.h
ln -sf %{_includedir}/linux/videodev2.h modules/access/videodev2.h
@@ -528,6 +530,9 @@
%changelog
+* Mon Jan 4 2010 Nicolas Chauvet <kwizart(a)fedoraproject.org> - 1.0.4-2
+- Add vlc-1.0.4-xulrunner-191.patch
+
* Tue Dec 15 2009 Nicolas Chauvet <kwizart(a)fedoraproject.org> - 1.0.4-1
- Update to 1.0.4
- Drop patch2 - PulseaAudio is tried first from original sources.
15 years
rpms/vlc/F-12 vlc.spec,1.72,1.73
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/vlc/F-12
In directory se02.es.rpmfusion.net:/tmp/cvs-serv28891/F-12
Modified Files:
vlc.spec
Log Message:
- Add vlc-1.0.4-xulrunner-191.patch
Index: vlc.spec
===================================================================
RCS file: /cvs/free/rpms/vlc/F-12/vlc.spec,v
retrieving revision 1.72
retrieving revision 1.73
diff -u -r1.72 -r1.73
--- vlc.spec 15 Dec 2009 19:43:31 -0000 1.72
+++ vlc.spec 4 Jan 2010 23:36:25 -0000 1.73
@@ -8,7 +8,7 @@
Summary: Multi-platform MPEG, DVD, and DivX player
Name: vlc
Version: 1.0.4
-Release: 1%{?dist}
+Release: 2%{?dist}
License: GPLv2+
Group: Applications/Multimedia
URL: http://www.videolan.org
@@ -21,6 +21,7 @@
Patch1: 0001-Default-libv4l2-to-true.patch
Patch3: 300_all_pic.patch
Patch4: 310_all_mmx_pic.patch
+Patch5: vlc-1.0.4-xulrunner-191.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: desktop-file-utils
@@ -227,6 +228,7 @@
%patch3 -p1 -b .dmo_pic
sed -i.dmo_pic -e 's/fno-PIC/fPIC/' libs/loader/Makefile.in
%patch4 -p1 -b .mmx_pic
+%patch5 -p1 -b .xul191
rm modules/access/videodev2.h
ln -sf %{_includedir}/linux/videodev2.h modules/access/videodev2.h
@@ -528,6 +530,9 @@
%changelog
+* Mon Jan 4 2010 Nicolas Chauvet <kwizart(a)fedoraproject.org> - 1.0.4-2
+- Add vlc-1.0.4-xulrunner-191.patch
+
* Tue Dec 15 2009 Nicolas Chauvet <kwizart(a)fedoraproject.org> - 1.0.4-1
- Update to 1.0.4
- Drop patch2 - PulseaAudio is tried first from original sources.
15 years
rpms/openafs/F-11 openafs.spec,1.1,1.2
by Jack Neely
Author: jjneely
Update of /cvs/free/rpms/openafs/F-11
In directory se02.es.rpmfusion.net:/tmp/cvs-serv28114
Modified Files:
openafs.spec
Log Message:
* Mon Jan 04 2010 Jack Neely <jjneely(a)ncsu.edu> 0:1.4.11-10
- Add a BuildRequires for bison to build on PPC
Index: openafs.spec
===================================================================
RCS file: /cvs/free/rpms/openafs/F-11/openafs.spec,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- openafs.spec 14 Dec 2009 21:38:09 -0000 1.1
+++ openafs.spec 4 Jan 2010 23:32:18 -0000 1.2
@@ -13,7 +13,7 @@
Summary: Enterprise Network File System
Name: openafs
Version: 1.4.11
-Release: 9%{?dist}
+Release: 10%{?dist}
License: IBM
Group: System Environment/Daemons
URL: http://www.openafs.org
@@ -24,7 +24,7 @@
Source4: afs.conf
BuildRoot: %{_tmppath}/%{name}-root
-BuildRequires: krb5-devel, pam-devel, ncurses-devel, flex, byacc
+BuildRequires: krb5-devel, pam-devel, ncurses-devel, flex, byacc, bison
%description
The AFS distributed filesystem. AFS is a distributed filesystem
@@ -276,6 +276,9 @@
%changelog
+* Mon Jan 04 2010 Jack Neely <jjneely(a)ncsu.edu> 0:1.4.11-10
+- Add a BuildRequires for bison to build on PPC
+
* Tue Nov 03 2009 Jack Neely <jjneely(a)ncsu.edu> 0:1.4.11-9
- Remove the epoch tags as they are generally not accepted by the
Fedora Packaging Guidelines
15 years
rpms/gstreamer-plugins-bad-nonfree/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1
by Xavier Lamien
Author: laxathom
Update of /cvs/nonfree/rpms/gstreamer-plugins-bad-nonfree/devel
In directory se02.es.rpmfusion.net:/home/rpmfusion/laxathom/nonfree/owners/tmpcvsZ29090/rpms/gstreamer-plugins-bad-nonfree/devel
Added Files:
.cvsignore Makefile sources
Log Message:
Setup of module gstreamer-plugins-bad-nonfree
--- NEW FILE .cvsignore ---
--- NEW FILE Makefile ---
# Makefile for source rpm: gstreamer-plugins-bad-nonfree
# $Id: Makefile,v 1.1 2010/01/04 11:06:01 laxathom Exp $
NAME := gstreamer-plugins-bad-nonfree
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
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)
--- NEW FILE sources ---
15 years
rpms/gstreamer-plugins-bad-nonfree Makefile, NONE, 1.1 import.log, NONE, 1.1 pkg.acl, NONE, 1.1
by Xavier Lamien
Author: laxathom
Update of /cvs/nonfree/rpms/gstreamer-plugins-bad-nonfree
In directory se02.es.rpmfusion.net:/home/rpmfusion/laxathom/nonfree/owners/tmpcvsZ29090/rpms/gstreamer-plugins-bad-nonfree
Added Files:
Makefile import.log pkg.acl
Log Message:
Setup of module gstreamer-plugins-bad-nonfree
--- NEW FILE Makefile ---
# Top level Makefile for module gstreamer-plugins-bad-nonfree
all : CVS/Root common-update
@cvs update
common-update : common
@cd common && cvs update
common : CVS/Root
@cvs checkout common
CVS/Root :
@echo "ERROR: This does not look like a CVS checkout" && exit 1
clean :
@find . -type f -name *~ -exec rm -fv {} \;
--- NEW FILE import.log ---
--- NEW FILE pkg.acl ---
15 years
rpms/gstreamer-plugins-bad-nonfree/devel - New directory
by Xavier Lamien
Author: laxathom
Update of /cvs/nonfree/rpms/gstreamer-plugins-bad-nonfree/devel
In directory se02.es.rpmfusion.net:/home/rpmfusion/laxathom/nonfree/owners/tmpcvsZ29090/rpms/gstreamer-plugins-bad-nonfree/devel
Log Message:
Directory /cvs/nonfree/rpms/gstreamer-plugins-bad-nonfree/devel added to the repository
15 years
rpms/gstreamer-plugins-bad-nonfree - New directory
by Xavier Lamien
Author: laxathom
Update of /cvs/nonfree/rpms/gstreamer-plugins-bad-nonfree
In directory se02.es.rpmfusion.net:/home/rpmfusion/laxathom/nonfree/owners/tmpcvsZ29090/rpms/gstreamer-plugins-bad-nonfree
Log Message:
Directory /cvs/nonfree/rpms/gstreamer-plugins-bad-nonfree added to the repository
15 years