Gentoo Archives: gentoo-commits

From: "Tim Harder (radhermit)" <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-sound/vitunes/files: vitunes-2.3-time-header.patch vitunes-2.3-asneeded.patch
Date: Wed, 11 Jan 2012 07:44:33
Message-Id: 20120111074416.27F942004C@flycatcher.gentoo.org
1 radhermit 12/01/11 07:44:16
2
3 Added: vitunes-2.3-time-header.patch
4 vitunes-2.3-asneeded.patch
5 Log:
6 Initial import.
7
8 (Portage version: 2.2.0_alpha84/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.1 media-sound/vitunes/files/vitunes-2.3-time-header.patch
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/vitunes/files/vitunes-2.3-time-header.patch?rev=1.1&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/vitunes/files/vitunes-2.3-time-header.patch?rev=1.1&content-type=text/plain
15
16 Index: vitunes-2.3-time-header.patch
17 ===================================================================
18 --- vitunes-2.3/players/mplayer.h.orig
19 +++ vitunes-2.3/players/mplayer.h
20 @@ -28,6 +28,7 @@
21 #include <stdio.h>
22 #include <stdlib.h>
23 #include <string.h>
24 +#include <time.h>
25 #include <unistd.h>
26
27 #include "player_utils.h"
28
29
30
31 1.1 media-sound/vitunes/files/vitunes-2.3-asneeded.patch
32
33 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/vitunes/files/vitunes-2.3-asneeded.patch?rev=1.1&view=markup
34 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/vitunes/files/vitunes-2.3-asneeded.patch?rev=1.1&content-type=text/plain
35
36 Index: vitunes-2.3-asneeded.patch
37 ===================================================================
38 --- vitunes-2.3/Makefile.linux.orig
39 +++ vitunes-2.3/Makefile.linux
40 @@ -12,7 +12,7 @@
41 # build info
42 CC?=/usr/bin/cc
43 CFLAGS+=-c -std=gnu99 -D_GNU_SOURCE -Wall -Wextra -Wno-unused-value $(CDEPS) $(CDEBUG)
44 -LDFLAGS+=-lm -lncurses -lutil $(LDEPS)
45 +LIBS=-lm -lncurses -lutil $(LDEPS)
46
47 OBJS=commands.o compat.o e_commands.o \
48 keybindings.o medialib.o meta_info.o \
49 @@ -27,7 +27,7 @@
50 .PHONY: debug clean install uninstall publish-repos man-debug
51
52 vitunes: $(OBJS)
53 - $(CC) -o $@ $(LDFLAGS) $(OBJS)
54 + $(CC) -o $@ $(LDFLAGS) $(OBJS) $(LIBS)
55
56 .c.o:
57 $(CC) $(CFLAGS) $<