Author: thias
Update of /cvs/free/rpms/vobcopy/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv24049
Modified Files:
.cvsignore sources vobcopy.spec
Added Files:
vobcopy-1.2.0-Makefile.patch
Removed Files:
vobcopy-1.0.1-Makefile.patch
Log Message:
Update to 1.2.0 (#1051).
vobcopy-1.2.0-Makefile.patch:
Makefile | 7 +++----
1 file changed, 3 insertions(+), 4 deletions(-)
--- NEW FILE vobcopy-1.2.0-Makefile.patch ---
diff -Naupr vobcopy-1.2.0.orig/Makefile vobcopy-1.2.0/Makefile
--- vobcopy-1.2.0.orig/Makefile 2009-06-08 22:06:33.000000000 +0200
+++ vobcopy-1.2.0/Makefile 2010-08-11 23:27:09.742064989 +0200
@@ -8,12 +8,11 @@ CC ?= gcc
#BINDIR = ${PREFIX}/bin
#MANDIR = ${PREFIX}/man
PREFIX += /usr/local
-BINDIR = ${PREFIX}/bin
-MANDIR = ${PREFIX}/man
+BINDIR ?= ${PREFIX}/bin
+MANDIR ?= ${PREFIX}/man
DOCDIR = ${PREFIX}/share/doc/vobcopy
LFS = -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE
-CFLAGS += -I/usr/local//include
-LDFLAGS += -ldvdread -L/usr/local//lib
+LDFLAGS += -ldvdread
#This specifies the conversion from .c to .o
.c.o:
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/vobcopy/devel/.cvsignore,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- .cvsignore 19 Oct 2008 10:20:15 -0000 1.3
+++ .cvsignore 11 Aug 2010 21:46:53 -0000 1.4
@@ -1 +1 @@
-vobcopy-1.1.2.tar.bz2
+vobcopy-1.2.0.tar.bz2
Index: sources
===================================================================
RCS file: /cvs/free/rpms/vobcopy/devel/sources,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- sources 19 Oct 2008 10:20:15 -0000 1.3
+++ sources 11 Aug 2010 21:46:53 -0000 1.4
@@ -1 +1 @@
-7f4bc2ba19d567339e4d854636aafa24 vobcopy-1.1.2.tar.bz2
+88f735ccd051093ff40dab4597bc586e vobcopy-1.2.0.tar.bz2
Index: vobcopy.spec
===================================================================
RCS file: /cvs/free/rpms/vobcopy/devel/vobcopy.spec,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- vobcopy.spec 29 Mar 2009 14:22:01 -0000 1.3
+++ vobcopy.spec 11 Aug 2010 21:46:53 -0000 1.4
@@ -1,12 +1,12 @@
Summary: Utility to copy DVD .vob files to disk
Name: vobcopy
-Version: 1.1.2
-Release: 3%{?dist}
+Version: 1.2.0
+Release: 1%{?dist}
License: GPLv2+
Group: Applications/Multimedia
-URL:
http://vobcopy.org/projects/c/c.shtml
+URL:
http://vobcopy.org/
Source:
http://vobcopy.org/download/vobcopy-%{version}.tar.bz2
-Patch0: vobcopy-1.0.1-Makefile.patch
+Patch0: vobcopy-1.2.0-Makefile.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
BuildRequires: libdvdread-devel
@@ -33,8 +33,11 @@
%install
%{__rm} -rf %{buildroot}
%{__make} install \
- BINDIR="%{buildroot}%{_bindir}" \
- MANDIR="%{buildroot}%{_mandir}"
+ DESTDIR="%{buildroot}" \
+ BINDIR="%{_bindir}" \
+ MANDIR="%{_mandir}"
+# Remove the docs we include ourselves as %%doc
+%{__rm} -rf %{buildroot}/usr/local/share/doc
%clean
@@ -43,7 +46,7 @@
%files
%defattr(-,root,root,-)
-%doc Changelog README Release-Notes TODO
+%doc COPYING Changelog README Release-Notes TODO
%doc alternative_programs.txt
%{_bindir}/vobcopy
%{_mandir}/man1/vobcopy.1*
@@ -51,6 +54,9 @@
%changelog
+* Wed Aug 11 2010 Matthias Saou <
http://freshrpms.net/> 1.2.0-1
+- Update to 1.2.0 (#1051).
+
* Sun Mar 29 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 1.1.2-3
- rebuild for new F11 features
--- vobcopy-1.0.1-Makefile.patch DELETED ---