Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-sound/exaile/files: exaile-0.3.1_beta-Makefile.patch
Date: Tue, 02 Mar 2010 17:42:52
Message-Id: E1NmW7O-00060z-Ma@stork.gentoo.org
1 ssuominen 10/03/02 17:42:50
2
3 Added: exaile-0.3.1_beta-Makefile.patch
4 Log:
5 Version bump wrt #295542, thanks to Wicher Minnaard for reporting.
6 (Portage version: 2.2_rc63/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.1 media-sound/exaile/files/exaile-0.3.1_beta-Makefile.patch
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/exaile/files/exaile-0.3.1_beta-Makefile.patch?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/exaile/files/exaile-0.3.1_beta-Makefile.patch?rev=1.1&content-type=text/plain
13
14 Index: exaile-0.3.1_beta-Makefile.patch
15 ===================================================================
16 --- Makefile.orig 2010-02-06 04:05:48.000000000 +0200
17 +++ Makefile 2010-03-02 19:45:11.000000000 +0200
18 @@ -19,7 +19,7 @@
19 compile:
20 python -m compileall -q xl xlgui
21 -python -O -m compileall -q xl xlgui
22 - make -C plugins compile
23 + $(MAKE) -C plugins compile
24
25 make-install-dirs:
26 mkdir -p $(DESTDIR)$(PREFIX)/bin
27 @@ -55,7 +55,7 @@
28 rm -rf $(EXAILECONFDIR)/exaile
29 rm -f $(DESTDIR)$(PREFIX)/share/applications/exaile.desktop
30 rm -f $(DESTDIR)$(PREFIX)/share/pixmaps/exaile.png
31 - make -C plugins uninstall
32 + $(MAKE) -C plugins uninstall
33
34 install: install-target install-locale
35
36 @@ -104,7 +104,7 @@
37 --datadir=$(PREFIX)/share/exaile/data --startgui \"\$$@\"" \
38 > exaile && \
39 chmod 755 exaile
40 - make -C plugins install
41 + $(MAKE) -C plugins install
42
43 locale:
44 cd po && find . -name "*.po" -exec ../tools/compilepo.sh {} \; && cd ..
45 @@ -119,14 +119,14 @@
46 done
47
48 plugins_dist:
49 - make -C plugins dist
50 + $(MAKE) -C plugins dist
51
52
53 clean:
54 -find . -name "*.~[0-9]~" -exec rm -f {} \;
55 -find . -name "*.py[co]" -exec rm -f {} \;
56 find po/* -depth -type d -exec rm -r {} \;
57 - make -C plugins clean
58 + $(MAKE) -C plugins clean
59
60 pot:
61 @echo "[encoding: UTF-8]" > po/POTFILES.in