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/listen/files: listen-0.6.2-Makefile.patch listen_dbusfix.patch
Date: Fri, 17 Jul 2009 09:07:32
Message-Id: E1MRjPd-0001Sm-TW@stork.gentoo.org
1 ssuominen 09/07/17 09:07:29
2
3 Added: listen-0.6.2-Makefile.patch
4 Removed: listen_dbusfix.patch
5 Log:
6 Version bump.
7 (Portage version: 2.2_rc33/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.1 media-sound/listen/files/listen-0.6.2-Makefile.patch
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/listen/files/listen-0.6.2-Makefile.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/listen/files/listen-0.6.2-Makefile.patch?rev=1.1&content-type=text/plain
14
15 Index: listen-0.6.2-Makefile.patch
16 ===================================================================
17 diff -ur listen-0.6.2.orig/Makefile listen-0.6.2/Makefile
18 --- listen-0.6.2.orig/Makefile 2009-05-11 19:37:47.000000000 +0300
19 +++ listen-0.6.2/Makefile 2009-07-17 11:55:48.000000000 +0300
20 @@ -49,10 +49,8 @@
21 echo 'Name=org.gnome.Listen' >> org.gnome.Listen.service
22 echo 'Exec=$(BINDIR)/listen' >> org.gnome.Listen.service
23
24 - docbook2x-man misc/listen.1.docbook --to-stdout | gzip > listen.1.gz
25 + docbook2man.pl misc/listen.1.docbook
26
27 - python -m compileall src
28 - python -O -m compileall src
29 @echo "Done"
30 @echo "Type: make install now"
31
32 @@ -103,12 +101,8 @@
33
34 install: make-install-dirs
35 install -m 644 src/*.py $(DESTDIR)$(LIBDIR)/listen
36 - install -m 644 src/*.pyc $(DESTDIR)$(LIBDIR)/listen
37 - install -m 644 src/*.pyo $(DESTDIR)$(LIBDIR)/listen
38 for dir in $(PYSRC_DIR); do \
39 install -m 644 src/$${dir}/*.py $(DESTDIR)$(LIBDIR)/listen/$${dir} ; \
40 - install -m 644 src/$${dir}/*.pyc $(DESTDIR)$(LIBDIR)/listen/$${dir} ; \
41 - install -m 644 src/$${dir}/*.pyo $(DESTDIR)$(LIBDIR)/listen/$${dir} ; \
42 done
43
44 install -m 644 src/mmkeys.so $(DESTDIR)$(LIBDIR)/listen/
45 @@ -120,7 +114,7 @@
46 install -m 644 data/img/listen.png $(DESTDIR)$(DATADIR)/pixmaps/
47
48 install -m 644 listen.desktop $(DESTDIR)$(DATADIR)/applications/
49 - install -m 644 listen.1.gz $(DESTDIR)$(MANDIR)/man1/
50 + install -m 644 listen.1 $(DESTDIR)$(MANDIR)/man1/
51 install -m 644 org.gnome.Listen.service $(DESTDIR)$(DBUSDIR)/services
52
53 for lang in $(PO); do install -m 644 po/$$lang.mo $(DESTDIR)$(LOCALEDIR)/$$lang/LC_MESSAGES/listen.mo; done