Gentoo Archives: gentoo-commits

From: "Mike Frysinger (vapier)" <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/jpeg/files: Makefile.in.extra Makefile.extra
Date: Sun, 23 Aug 2009 01:59:59
Message-Id: E1Mf2NB-0008Id-25@stork.gentoo.org
1 vapier 09/08/23 01:59:57
2
3 Added: Makefile.in.extra Makefile.extra
4 Log:
5 Move from custom jpeg extras to Debian extras since ours is just a copy.
6 (Portage version: 2.2_rc38/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.1 media-libs/jpeg/files/Makefile.in.extra
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/jpeg/files/Makefile.in.extra?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/jpeg/files/Makefile.in.extra?rev=1.1&content-type=text/plain
13
14 Index: Makefile.in.extra
15 ===================================================================
16 CC = @CC@
17 EXEEXT = @EXEEXT@
18 CFLAGS = @CFLAGS@
19 CPPFLAGS = @CPPFLAGS@
20 LDFLAGS = @LDFLAGS@
21
22 prefix = @prefix@
23 exec_prefix = @exec_prefix@
24 bindir = @bindir@
25 datarootdir = @datarootdir@
26 mandir = @mandir@
27 man1dir = $(mandir)/man1
28
29 MKDIR_P = @MKDIR_P@
30 INSTALL = @INSTALL@
31 INSTALL_DATA = @INSTALL_DATA@
32 INSTALL_PROGRAM = @INSTALL_PROGRAM@
33 INSTALL_SCRIPT = @INSTALL_SCRIPT@
34
35 SCRIPTS = exifautotran
36 PROGRAMS = jpegexiforient$(EXEEXT)
37
38 all: $(SCRIPTS) $(PROGRAMS)
39
40 jpegexiforient$(EXEEXT): jpegexiforient.c
41 $(CC) $(CFLAGS) $(CPPFLAGS) $(LDFLAGS) -o $@ $<
42
43 clean:
44 rm -f $(PROGRAMS) *.o
45
46 install: all
47 $(MKDIR_P) $(DESTDIR)$(bindir) $(DESTDIR)$(man1dir)
48 $(INSTALL_PROGRAM) $(PROGRAMS) $(DESTDIR)$(bindir)
49 $(INSTALL_SCRIPT) $(SCRIPTS) $(DESTDIR)$(bindir)
50 $(INSTALL_DATA) *.1 $(DESTDIR)$(man1dir)
51
52 .PHONY: all clean install
53
54
55
56 1.1 media-libs/jpeg/files/Makefile.extra
57
58 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/jpeg/files/Makefile.extra?rev=1.1&view=markup
59 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/jpeg/files/Makefile.extra?rev=1.1&content-type=text/plain
60
61 Index: Makefile.extra
62 ===================================================================
63 all %:
64 ../../config.status --file=Makefile:Makefile.in
65 $(MAKE) $@