rpms/lxdvdrip/F-9 lxdvdrip.spec,1.1,1.2
by David Juran
Author: juran
Update of /cvs/free/rpms/lxdvdrip/F-9
In directory se02.es.rpmfusion.net:/tmp/cvs-serv28460
Modified Files:
lxdvdrip.spec
Log Message:
Bump release for rpmfusion
16 years, 3 months
rpms/lxdvdrip/F-9 lxdvdrip-compile.patch, NONE, 1.1 lxdvdrip-makefile.patch, NONE, 1.1 lxdvdrip.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2
by David Juran
Author: juran
Update of /cvs/free/rpms/lxdvdrip/F-9
In directory se02.es.rpmfusion.net:/tmp/cvs-serv28052/F-9
Modified Files:
.cvsignore sources
Added Files:
lxdvdrip-compile.patch lxdvdrip-makefile.patch lxdvdrip.spec
Log Message:
Import for rpmfusion
lxdvdrip-compile.patch:
--- NEW FILE lxdvdrip-compile.patch ---
--- systools.c.orig 2007-12-21 09:33:28.000000000 +0100
+++ systools.c 2007-12-21 09:33:38.000000000 +0100
@@ -26,7 +26,7 @@
#include <sys/wait.h>
#include <linux/cdrom.h>
#include <ctype.h>
-
+#include <limits.h>
char ** environ;
#define SH_PATH "/bin/sh"
#define SH_NAME "sh"
lxdvdrip-makefile.patch:
--- NEW FILE lxdvdrip-makefile.patch ---
--- Makefile.orig 2007-12-21 09:21:40.000000000 +0100
+++ Makefile 2007-12-21 09:27:01.000000000 +0100
@@ -1,11 +1,13 @@
INSTALLDIR = /usr/local
-HINWEIS0 = 'Bitte Konfigdatei in /etc mit Changelog abgleichen'
-HINWEIS1 = 'Check the configuration file in /etc with the Changelog'
-HINWEIS2 = 'Comparez le fichier de config. en /etc avec le Changelog'
+CFLAGS=
+BINDIR=
+MANDIR=
+DATADIR=
+SYSCONFDIR=
all:
- gcc -g -lm -ldvdread -ldvdnav -lpthread -o lxdvdrip lxdvdrip.c streamanalyze.c ifo.c dvdinfo.c dvdbackup.c dvdcell.c systools.c vaporize.c dvdtools.c dvdcopy.c requant.c cputest.c tcmemcpy.c
- gcc -g -lm -o lxac3scan lxac3scan.c
+ gcc -g $(CFLAGS) -lm -ldvdread -ldvdnav -lpthread -o lxdvdrip lxdvdrip.c streamanalyze.c ifo.c dvdinfo.c dvdbackup.c dvdcell.c systools.c vaporize.c dvdtools.c dvdcopy.c requant.c cputest.c tcmemcpy.c
+ gcc -g $(CFLAGS) -lm -o lxac3scan lxac3scan.c
cd vamps && make && cd ..
cd dvdbackup && make && cd ..
cd buffer && make && cd ..
@@ -17,23 +19,15 @@
cd buffer && make clean && cd ..
install:
- cp lxdvdrip $(INSTALLDIR)/bin
- cp lxac3scan $(INSTALLDIR)/bin
- cp lxdvdrip.1 $(INSTALLDIR)/man/man1
- cp lxdvdrip.wav $(INSTALLDIR)/share
+ mkdir -p $(INSTALLDIR)/$(BINDIR)
+ mkdir -p $(INSTALLDIR)/$(MANDIR)/man1
+ mkdir -p $(INSTALLDIR)/$(DATADIR)
+ mkdir -p $(INSTALLDIR)/$(SYSCONFDIR)
+ cp lxdvdrip $(INSTALLDIR)/$(BINDIR)
+ cp lxac3scan $(INSTALLDIR)/$(BINDIR)
+ cp lxdvdrip.1 $(INSTALLDIR)/$(MANDIR)/man1
+ cp lxdvdrip.wav $(INSTALLDIR)/$(DATADIR)
+ cp lxdvdrip.conf $(INSTALLDIR)/$(SYSCONFDIR)
cd vamps && make install && cd ..
cd dvdbackup && make install && cd ..
cd buffer && make install && cd ..
- if test -f /etc/lxdvdrip.conf; then echo $(HINWEIS0); fi;
- if test -f /etc/lxdvdrip.conf; then echo $(HINWEIS1); fi;
- if test -f /etc/lxdvdrip.conf; then echo $(HINWEIS2); else cp lxdvdrip.conf /etc; fi;
-
-uninstall:
- rm $(INSTALLDIR)/bin/lxdvdrip
- rm $(INSTALLDIR)/bin/lxac3scan
- rm $(INSTALLDIR)/man/man1/lxdvdrip.1
- rm $(INSTALLDIR)/share/lxdvdrip.wav
- rm $(INSTALLDIR)/bin/vamps_lxdvdrip
- rm $(INSTALLDIR)/bin/play_cell_lxdvdrip
- rm $(INSTALLDIR)/bin/dvdbackup_lxdvdrip
- rm $(INSTALLDIR)/bin/buffer_lxdvdrip
--- NEW FILE lxdvdrip.spec ---
Name: lxdvdrip
Version: 1.70
Release: 1%{?dist}
Summary: A command line tool to rip&burn a video DVD
Group: Applications/Multimedia
License: GPL
URL: http://lxdvdrip.berlios.de/
Source0: http://download.berlios.de/lxdvdrip/lxdvdrip-1.70.tgz
Patch0: lxdvdrip-makefile.patch
Patch1: lxdvdrip-compile.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: libdvdread-devel libdvdnav-devel
Requires: dvdauthor
%description
This program is able to rip a DVD title or chapters, reauthor the files to a
DVD-Structure,preview the Files and burn to a DVD+/-R.
The "traditional" way to Rip in 4 Steps (Rip Video&Requant, Rip Audio, Mplex,
dvdauthor) is included, too. Activation through Command Line Parameter
"-st=mplayer" for mplayer or "-st=transcode" for transcode.
A very fast Method is "Transcode parallel", all Commands are piped, so that
only a single Pass Read is needed.
%prep
%setup -q -n lxdvdrip
%patch0
%patch1
%build
make CFLAGS="${RPM_OPT_FLAGS}" %{?_smp_mflags}
%install
rm -rf $RPM_BUILD_ROOT
make install INSTALLDIR=$RPM_BUILD_ROOT BINDIR=%{_bindir} MANDIR=%{_mandir} \
DATADIR=%{_datadir}/%{name}-%{version} SYSCONFDIR=%{_sysconfdir} \
PREFIX=$RPM_BUILD_ROOT%{_usr} INSTBIN=$RPM_BUILD_ROOT%{_bindir}
%clean
rm -rf $RPM_BUILD_ROOT
%files
%defattr(-,root,root,-)
%doc doc-pak/Changelog* doc-pak/COPYING doc-pak/lxdvdrip.conf*
%doc doc-pak/README.* doc-pak/TODO
%{_bindir}/*
%{_mandir}/man1/*
%{_datadir}/*
%config(noreplace) %{_sysconfdir}/lxdvdrip.conf
%changelog
* Sun Dec 09 2007 Andreas Bierfert <andreas.bierfert[AT]lowlatency.de>
- 1.70-1
- version upgrade
* Sat Mar 18 2006 Andreas Bierfert <andreas.bierfert[AT]lowlatency.de>
1.51-2
- remove -dl workaround
* Thu Mar 16 2006 Andreas Bierfert <andreas.bierfert[AT]lowlatency.de>
1.51-1
- version upgrade
- fix devel build
* Thu Mar 09 2006 Andreas Bierfert <andreas.bierfert[AT]lowlatency.de>
- switch to new release field
* Tue Feb 28 2006 Andreas Bierfert <andreas.bierfert[AT]lowlatency.de>
- add dist
* Tue Jun 14 2005 Andreas Bierfert <andreas.bierfert[AT]lowlatency.de>
1.46-0.lvn.1
- Initial Release
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/lxdvdrip/F-9/.cvsignore,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- .cvsignore 19 Aug 2008 17:48:40 -0000 1.1
+++ .cvsignore 19 Aug 2008 18:08:41 -0000 1.2
@@ -0,0 +1 @@
+lxdvdrip-1.70.tgz
Index: sources
===================================================================
RCS file: /cvs/free/rpms/lxdvdrip/F-9/sources,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- sources 19 Aug 2008 17:48:40 -0000 1.1
+++ sources 19 Aug 2008 18:08:41 -0000 1.2
@@ -0,0 +1 @@
+73c7bec3bba1ad28bf78ec9dfba94598 lxdvdrip-1.70.tgz
16 years, 3 months
rpms/lxdvdrip/F-8 lxdvdrip.spec,1.1,1.2
by David Juran
Author: juran
Update of /cvs/free/rpms/lxdvdrip/F-8
In directory se02.es.rpmfusion.net:/tmp/cvs-serv27797
Modified Files:
lxdvdrip.spec
Log Message:
Bump release for rpmfusion
Index: lxdvdrip.spec
===================================================================
RCS file: /cvs/free/rpms/lxdvdrip/F-8/lxdvdrip.spec,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- lxdvdrip.spec 19 Aug 2008 18:03:47 -0000 1.1
+++ lxdvdrip.spec 19 Aug 2008 18:06:21 -0000 1.2
@@ -1,6 +1,6 @@
Name: lxdvdrip
Version: 1.51
-Release: 2%{?dist}
+Release: 3%{?dist}
Summary: A command line tool to rip&burn a video DVD
Group: Applications/Multimedia
@@ -54,6 +54,9 @@
%config(noreplace) %{_sysconfdir}/lxdvdrip.conf
%changelog
+* Tue Aug 19 2008 David Juran <david(a)juran.se> - 1.51-3
+- Bump release for rpmfusion
+
* Sat Mar 18 2006 Andreas Bierfert <andreas.bierfert[AT]lowlatency.de>
1.51-2
- remove -dl workaround
16 years, 3 months
rpms/lxdvdrip/F-8 lxdvdrip-makefile.patch, NONE, 1.1 lxdvdrip.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2
by David Juran
Author: juran
Update of /cvs/free/rpms/lxdvdrip/F-8
In directory se02.es.rpmfusion.net:/tmp/cvs-serv27447/F-8
Modified Files:
.cvsignore sources
Added Files:
lxdvdrip-makefile.patch lxdvdrip.spec
Log Message:
Initial import
lxdvdrip-makefile.patch:
--- NEW FILE lxdvdrip-makefile.patch ---
--- Makefile.orig 2006-03-18 10:00:17.000000000 +0100
+++ Makefile 2006-03-18 10:33:25.000000000 +0100
@@ -1,31 +1,25 @@
INSTALLDIR = /usr/local
-HINWEIS0 = 'Bitte Konfigdatei in /etc mit Changelog abgleichen'
-HINWEIS1 = 'Check the configuration file in /etc with the Changelog'
-HINWEIS2 = 'Comparez le fichier de config. en /etc avec le Changelog'
+CFLAGS=
+BINDIR=
+MANDIR=
+DATADIR=
+SYSCONFDIR=
+
all:
- gcc -g -ldvdread -lm -o lxdvdrip lxdvdrip.c streamanalyze.c
- gcc -g -lm -o lxac3scan lxac3scan.c
- cd vamps && make && cd ..
+ gcc -g $(CFLAGS) -ldvdread -lm -o lxdvdrip lxdvdrip.c streamanalyze.c
+ gcc -g $(CFLAGS) -lm -o lxac3scan lxac3scan.c
clean:
rm -f lxdvdrip lxac3scan *.o
- cd vamps && make clean && cd ..
install:
- cp lxdvdrip $(INSTALLDIR)/bin
- cp lxac3scan $(INSTALLDIR)/bin
- cp lxdvdrip.1 $(INSTALLDIR)/man/man1
- cp lxdvdrip.wav $(INSTALLDIR)/share
- cd vamps && make install && cd ..
- if test -f /etc/lxdvdrip.conf; then echo $(HINWEIS0); fi;
- if test -f /etc/lxdvdrip.conf; then echo $(HINWEIS1); fi;
- if test -f /etc/lxdvdrip.conf; then echo $(HINWEIS2); else cp lxdvdrip.conf /etc; fi;
-
-uninstall:
- rm $(INSTALLDIR)/bin/lxdvdrip
- rm $(INSTALLDIR)/bin/lxac3scan
- rm $(INSTALLDIR)/man/man1/lxdvdrip.1
- rm $(INSTALLDIR)/share/lxdvdrip.wav
- rm $(INSTALLDIR)/bin/vamps_lxdvdrip
- rm $(INSTALLDIR)/bin/play_cell_lxdvdrip
+ mkdir -p $(INSTALLDIR)/$(BINDIR)
+ mkdir -p $(INSTALLDIR)/$(MANDIR)/man1
+ mkdir -p $(INSTALLDIR)/$(DATADIR)
+ mkdir -p $(INSTALLDIR)/$(SYSCONFDIR)
+ cp lxdvdrip $(INSTALLDIR)/$(BINDIR)
+ cp lxac3scan $(INSTALLDIR)/$(BINDIR)
+ cp lxdvdrip.1 $(INSTALLDIR)/$(MANDIR)/man1
+ cp lxdvdrip.wav $(INSTALLDIR)/$(DATADIR)
+ cp lxdvdrip.conf $(INSTALLDIR)/$(SYSCONFDIR)
--- NEW FILE lxdvdrip.spec ---
Name: lxdvdrip
Version: 1.51
Release: 2%{?dist}
Summary: A command line tool to rip&burn a video DVD
Group: Applications/Multimedia
License: GPL
URL: http://lxdvdrip.berlios.de/
Source0: http://download.berlios.de/lxdvdrip/lxdvdrip-1.51.tgz
Patch0: lxdvdrip-makefile.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: libdvdread-devel
Requires: dvdauthor
Requires: streamdvd-streamanalyze
%description
This program is able to rip a DVD title or chapters, reauthor the files to a
DVD-Structure,preview the Files and burn to a DVD+/-R.
The "traditional" way to Rip in 4 Steps (Rip Video&Requant, Rip Audio, Mplex,
dvdauthor) is included, too. Activation through Command Line Parameter
"-st=mplayer" for mplayer or "-st=transcode" for transcode.
A very fast Method is "Transcode parallel", all Commands are piped, so that
only a single Pass Read is needed.
%prep
%setup -q -n lxdvdrip
%patch0
%build
make CFLAGS="${RPM_OPT_FLAGS}" %{?_smp_mflags}
%install
rm -rf $RPM_BUILD_ROOT
make install INSTALLDIR=$RPM_BUILD_ROOT BINDIR=%{_bindir} MANDIR=%{_mandir} \
DATADIR=%{_datadir}/%{name}-%{version} SYSCONFDIR=%{_sysconfdir}
%clean
rm -rf $RPM_BUILD_ROOT
%files
%defattr(-,root,root,-)
%doc doc-pak/Changelog* doc-pak/COPYING doc-pak/lxdvdrip.conf*
%doc doc-pak/README.* doc-pak/TODO
%{_bindir}/*
%{_mandir}/man1/*
%{_datadir}/*
%config(noreplace) %{_sysconfdir}/lxdvdrip.conf
%changelog
* Sat Mar 18 2006 Andreas Bierfert <andreas.bierfert[AT]lowlatency.de>
1.51-2
- remove -dl workaround
* Thu Mar 16 2006 Andreas Bierfert <andreas.bierfert[AT]lowlatency.de>
1.51-1
- version upgrade
- fix devel build
* Thu Mar 09 2006 Andreas Bierfert <andreas.bierfert[AT]lowlatency.de>
- switch to new release field
* Tue Feb 28 2006 Andreas Bierfert <andreas.bierfert[AT]lowlatency.de>
- add dist
* Tue Jun 14 2005 Andreas Bierfert <andreas.bierfert[AT]lowlatency.de>
1.46-0.lvn.1
- Initial Release
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/lxdvdrip/F-8/.cvsignore,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- .cvsignore 19 Aug 2008 17:48:40 -0000 1.1
+++ .cvsignore 19 Aug 2008 18:03:47 -0000 1.2
@@ -0,0 +1 @@
+lxdvdrip-1.51.tgz
Index: sources
===================================================================
RCS file: /cvs/free/rpms/lxdvdrip/F-8/sources,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- sources 19 Aug 2008 17:48:40 -0000 1.1
+++ sources 19 Aug 2008 18:03:47 -0000 1.2
@@ -0,0 +1 @@
+712f05e604ba52579f6d77df7d1945cd lxdvdrip-1.51.tgz
16 years, 3 months
rpms/subtitleripper/F-8 subtitleripper-0.3-4-nopng.patch, NONE, 1.1 subtitleripper.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2
by Thorsten Leemhuis
Author: thl
Update of /cvs/free/rpms/subtitleripper/F-8
In directory se02.es.rpmfusion.net:/tmp/cvs-serv26927
Modified Files:
.cvsignore sources
Added Files:
subtitleripper-0.3-4-nopng.patch subtitleripper.spec
Log Message:
initial import from livna
subtitleripper-0.3-4-nopng.patch:
--- NEW FILE subtitleripper-0.3-4-nopng.patch ---
diff -Naupr subtitleripper-new.orig/Makefile subtitleripper-new/Makefile
--- subtitleripper-new.orig/Makefile 2004-01-13 15:07:05.000000000 +0100
+++ subtitleripper-new/Makefile 2005-04-22 11:34:16.000000000 +0200
@@ -12,8 +12,8 @@ DEFINES += -D_HAVE_LIB_PPM_
LIBS += -lppm
### enable PNG support ###
-DEFINES += -D_HAVE_PNG_
-LIBS += -lpng
+#DEFINES += -D_HAVE_PNG_
+#LIBS += -lpng
### enable zlib support ###
DEFINES += -D_HAVE_ZLIB_
--- NEW FILE subtitleripper.spec ---
%define _default_patch_fuzz 2
Summary: A tool to rip DVD subtitles
Name: subtitleripper
Version: 0.3
Release: 6%{?dist}
License: GPL
Group: Applications/Multimedia
URL: http://subtitleripper.sourceforge.net/
Source0: http://switch.dl.sourceforge.net/sourceforge/subtitleripper/%{name}-%{ver...
Patch0: subtitleripper-0.3-4-nopng.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-buildroot
BuildRequires: netpbm-devel zlib-devel
#-----------------------------------------------------------------------------
%description
Converts DVD subtitles into text format (e.g. subrip format) or VobSub
format. Based on transcode.
#-----------------------------------------------------------------------------
%prep
%setup -q -n %{name}
test -L %{_libdir}/libnetpbm.so && \
perl -pi -e 's/-lppm/-lnetpbm/g' Makefile
%patch0 -p1 -b .patch0
#-----------------------------------------------------------------------------
%build
CFLAGS="$RPM_OPT_FLAGS" make
#-----------------------------------------------------------------------------
%install
rm -rf $RPM_BUILD_ROOT
mkdir -p $RPM_BUILD_ROOT/%{_bindir}
for i in pgm2txt srttool subtitle2pgm subtitle2vobsub
do
install -m 0755 $i $RPM_BUILD_ROOT/%{_bindir}
done
#-----------------------------------------------------------------------------
%clean
rm -rf $RPM_BUILD_ROOT
#-----------------------------------------------------------------------------
%files
%defattr(-,root,root,-)
%doc ChangeLog README*
%{_bindir}/pgm2txt
%{_bindir}/srttool
%{_bindir}/subtitle2pgm
%{_bindir}/subtitle2vobsub
#-----------------------------------------------------------------------------
%changelog
* Tue Aug 19 2008 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info - 0.3-6
- added _default_patch_fuzz define
* Sun Aug 03 2008 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info - 0.3-5
- rebuild
* Thu Mar 09 2006 Andreas Bierfert <andreas.bierfert[AT]lowlatency.de>
- switch to new release field
- drop Epoch
* Wed Sep 21 2005 Thorsten Leemhuis <fedora[AT]leemhuis.info> 0:0.3-0.lvn.4
- Drop BR libpng, too
* Sat Sep 10 2005 Thorsten Leemhuis <fedora[AT]leemhuis.info> 0:0.3-0.lvn.3
- Disable png-support for now cause it does not compile on FC4
* Mon Jun 28 2004 Dams <anvil[AT]livna.org> 0:0.3-0.lvn.2.4
- BuildReq libpng-devel
- Fix for libnetpbm on FC2
* Mon Jun 28 2004 Dams <anvil[AT]livna.org> 0:0.3.4-0.lvn.1
- Updated to 0.3-4
* Wed May 14 2003 Dams <anvil[AT]livna.org> 0:0.3-0.fdr.2
- Added missing zlib-devel BuildRequires
* Sat May 10 2003 Dams <anvil[AT]livna.org>
- Initial build.
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/subtitleripper/F-8/.cvsignore,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- .cvsignore 22 Jul 2008 16:55:08 -0000 1.1
+++ .cvsignore 19 Aug 2008 17:58:26 -0000 1.2
@@ -0,0 +1 @@
+subtitleripper-0.3-4.tgz
Index: sources
===================================================================
RCS file: /cvs/free/rpms/subtitleripper/F-8/sources,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- sources 22 Jul 2008 16:55:08 -0000 1.1
+++ sources 19 Aug 2008 17:58:26 -0000 1.2
@@ -0,0 +1 @@
+c0bd49a88f667c68c4430ad25bbed510 subtitleripper-0.3-4.tgz
16 years, 3 months
rpms/subtitleripper/F-9 subtitleripper-0.3-4-nopng.patch, NONE, 1.1 subtitleripper.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2
by Thorsten Leemhuis
Author: thl
Update of /cvs/free/rpms/subtitleripper/F-9
In directory se02.es.rpmfusion.net:/tmp/cvs-serv26797
Modified Files:
.cvsignore sources
Added Files:
subtitleripper-0.3-4-nopng.patch subtitleripper.spec
Log Message:
initial import from livna
subtitleripper-0.3-4-nopng.patch:
--- NEW FILE subtitleripper-0.3-4-nopng.patch ---
diff -Naupr subtitleripper-new.orig/Makefile subtitleripper-new/Makefile
--- subtitleripper-new.orig/Makefile 2004-01-13 15:07:05.000000000 +0100
+++ subtitleripper-new/Makefile 2005-04-22 11:34:16.000000000 +0200
@@ -12,8 +12,8 @@ DEFINES += -D_HAVE_LIB_PPM_
LIBS += -lppm
### enable PNG support ###
-DEFINES += -D_HAVE_PNG_
-LIBS += -lpng
+#DEFINES += -D_HAVE_PNG_
+#LIBS += -lpng
### enable zlib support ###
DEFINES += -D_HAVE_ZLIB_
--- NEW FILE subtitleripper.spec ---
%define _default_patch_fuzz 2
Summary: A tool to rip DVD subtitles
Name: subtitleripper
Version: 0.3
Release: 6%{?dist}
License: GPL
Group: Applications/Multimedia
URL: http://subtitleripper.sourceforge.net/
Source0: http://switch.dl.sourceforge.net/sourceforge/subtitleripper/%{name}-%{ver...
Patch0: subtitleripper-0.3-4-nopng.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-buildroot
BuildRequires: netpbm-devel zlib-devel
#-----------------------------------------------------------------------------
%description
Converts DVD subtitles into text format (e.g. subrip format) or VobSub
format. Based on transcode.
#-----------------------------------------------------------------------------
%prep
%setup -q -n %{name}
test -L %{_libdir}/libnetpbm.so && \
perl -pi -e 's/-lppm/-lnetpbm/g' Makefile
%patch0 -p1 -b .patch0
#-----------------------------------------------------------------------------
%build
CFLAGS="$RPM_OPT_FLAGS" make
#-----------------------------------------------------------------------------
%install
rm -rf $RPM_BUILD_ROOT
mkdir -p $RPM_BUILD_ROOT/%{_bindir}
for i in pgm2txt srttool subtitle2pgm subtitle2vobsub
do
install -m 0755 $i $RPM_BUILD_ROOT/%{_bindir}
done
#-----------------------------------------------------------------------------
%clean
rm -rf $RPM_BUILD_ROOT
#-----------------------------------------------------------------------------
%files
%defattr(-,root,root,-)
%doc ChangeLog README*
%{_bindir}/pgm2txt
%{_bindir}/srttool
%{_bindir}/subtitle2pgm
%{_bindir}/subtitle2vobsub
#-----------------------------------------------------------------------------
%changelog
* Tue Aug 19 2008 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info - 0.3-6
- added _default_patch_fuzz define
* Sun Aug 03 2008 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info - 0.3-5
- rebuild
* Thu Mar 09 2006 Andreas Bierfert <andreas.bierfert[AT]lowlatency.de>
- switch to new release field
- drop Epoch
* Wed Sep 21 2005 Thorsten Leemhuis <fedora[AT]leemhuis.info> 0:0.3-0.lvn.4
- Drop BR libpng, too
* Sat Sep 10 2005 Thorsten Leemhuis <fedora[AT]leemhuis.info> 0:0.3-0.lvn.3
- Disable png-support for now cause it does not compile on FC4
* Mon Jun 28 2004 Dams <anvil[AT]livna.org> 0:0.3-0.lvn.2.4
- BuildReq libpng-devel
- Fix for libnetpbm on FC2
* Mon Jun 28 2004 Dams <anvil[AT]livna.org> 0:0.3.4-0.lvn.1
- Updated to 0.3-4
* Wed May 14 2003 Dams <anvil[AT]livna.org> 0:0.3-0.fdr.2
- Added missing zlib-devel BuildRequires
* Sat May 10 2003 Dams <anvil[AT]livna.org>
- Initial build.
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/subtitleripper/F-9/.cvsignore,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- .cvsignore 22 Jul 2008 16:55:08 -0000 1.1
+++ .cvsignore 19 Aug 2008 17:57:46 -0000 1.2
@@ -0,0 +1 @@
+subtitleripper-0.3-4.tgz
Index: sources
===================================================================
RCS file: /cvs/free/rpms/subtitleripper/F-9/sources,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- sources 22 Jul 2008 16:55:08 -0000 1.1
+++ sources 19 Aug 2008 17:57:46 -0000 1.2
@@ -0,0 +1 @@
+c0bd49a88f667c68c4430ad25bbed510 subtitleripper-0.3-4.tgz
16 years, 3 months
rpms/lxdvdrip/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1
by Thorsten Leemhuis
Author: thl
Update of /cvs/free/rpms/lxdvdrip/devel
In directory se02.es.rpmfusion.net:/home/rpmfusion/thl/tmpcvsd26014/rpms/lxdvdrip/devel
Added Files:
.cvsignore Makefile sources
Log Message:
Setup of module lxdvdrip
--- NEW FILE .cvsignore ---
--- NEW FILE Makefile ---
# Makefile for source rpm: lxdvdrip
# $Id: Makefile,v 1.1 2008/08/19 17:48:40 thl Exp $
NAME := lxdvdrip
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 ---
16 years, 3 months
rpms/lxdvdrip Makefile, NONE, 1.1 import.log, NONE, 1.1 pkg.acl, NONE, 1.1
by Thorsten Leemhuis
Author: thl
Update of /cvs/free/rpms/lxdvdrip
In directory se02.es.rpmfusion.net:/home/rpmfusion/thl/tmpcvsd26014/rpms/lxdvdrip
Added Files:
Makefile import.log pkg.acl
Log Message:
Setup of module lxdvdrip
--- NEW FILE Makefile ---
# Top level Makefile for module lxdvdrip
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 ---
16 years, 3 months
rpms/lxdvdrip/devel - New directory
by Thorsten Leemhuis
Author: thl
Update of /cvs/free/rpms/lxdvdrip/devel
In directory se02.es.rpmfusion.net:/home/rpmfusion/thl/tmpcvsd26014/rpms/lxdvdrip/devel
Log Message:
Directory /cvs/free/rpms/lxdvdrip/devel added to the repository
16 years, 3 months
rpms/lxdvdrip - New directory
by Thorsten Leemhuis
Author: thl
Update of /cvs/free/rpms/lxdvdrip
In directory se02.es.rpmfusion.net:/home/rpmfusion/thl/tmpcvsd26014/rpms/lxdvdrip
Log Message:
Directory /cvs/free/rpms/lxdvdrip added to the repository
16 years, 3 months