Gentoo Archives: gentoo-commits

From: "Alexis Ballier (aballier)" <aballier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-video/lxdvdrip/files: lxdvdrip-1.76-makefile.patch
Date: Tue, 03 May 2011 18:30:02
Message-Id: 20110503182952.997F320057@flycatcher.gentoo.org
1 aballier 11/05/03 18:29:52
2
3 Added: lxdvdrip-1.76-makefile.patch
4 Log:
5 version bump
6
7 (Portage version: 2.2.0_alpha30/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.1 media-video/lxdvdrip/files/lxdvdrip-1.76-makefile.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/lxdvdrip/files/lxdvdrip-1.76-makefile.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/lxdvdrip/files/lxdvdrip-1.76-makefile.patch?rev=1.1&content-type=text/plain
14
15 Index: lxdvdrip-1.76-makefile.patch
16 ===================================================================
17 Index: lxdvdrip/Makefile
18 ===================================================================
19 --- lxdvdrip.orig/Makefile
20 +++ lxdvdrip/Makefile
21 @@ -3,13 +3,16 @@ HINWEIS0 = 'Bitte Konfigdatei in /etc mi
22 HINWEIS1 = 'Check the configuration file in /etc with the Changelog'
23 HINWEIS2 = 'Comparez le fichier de config. en /etc avec le Changelog'
24
25 -all:
26 - gcc -g -lm -ldvdread -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 dvdformat.c badsect.c mpeg2dec.c
27 - gcc -g -lm -o lxac3scan lxac3scan.c
28 - cd vamps && make && cd ..
29 - cd dvdbackup && make && cd ..
30 - cd requant && make && cd ..
31 - cd buffer && make && cd ..
32 +LXDVDRIP_SOURCES = 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 dvdformat.c badsect.c mpeg2dec.c
33 +LXDVDRIP_OBJS = $(LXDVDRIP_SOURCES:%.c=%.o)
34 +
35 +all: lxdvdrip lxac3scan
36 +
37 +lxdvdrip: $(LXDVDRIP_OBJS)
38 + $(CC) $(LDFLAGS) -o $@ $^ -lm -ldvdread -lpthread
39 +
40 +lxac3scan: lxac3scan.o
41 + $(CC) $(LDFLAGS) -o $@ $^ -lm
42
43 clean:
44 rm -f lxdvdrip lxac3scan *.o