Gentoo Archives: gentoo-commits

From: "Santiago M. Mola (coldwind)" <coldwind@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-p2p/museek+/files: museek+-0.1.13-post_release_fixes.patch museek+-0.1.13-optional-deps.patch digest-museek+-0.1.13-r1 digest-museek+-0.1.13
Date: Sun, 23 Sep 2007 12:28:35
Message-Id: E1IZQRj-0004eV-6f@stork.gentoo.org
1 coldwind 07/09/23 12:20:23
2
3 Modified: museek+-0.1.13-post_release_fixes.patch
4 Added: museek+-0.1.13-optional-deps.patch
5 digest-museek+-0.1.13-r1
6 Removed: digest-museek+-0.1.13
7 Log:
8 Make optional deps configurable.
9 (Portage version: 2.1.3.9)
10
11 Revision Changes Path
12 1.2 net-p2p/museek+/files/museek+-0.1.13-post_release_fixes.patch
13
14 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-p2p/museek+/files/museek+-0.1.13-post_release_fixes.patch?rev=1.2&view=markup
15 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-p2p/museek+/files/museek+-0.1.13-post_release_fixes.patch?rev=1.2&content-type=text/plain
16 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-p2p/museek+/files/museek+-0.1.13-post_release_fixes.patch?r1=1.1&r2=1.2
17
18 Index: museek+-0.1.13-post_release_fixes.patch
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/net-p2p/museek+/files/museek+-0.1.13-post_release_fixes.patch,v
21 retrieving revision 1.1
22 retrieving revision 1.2
23 diff -u -r1.1 -r1.2
24 --- museek+-0.1.13-post_release_fixes.patch 22 Sep 2007 19:26:08 -0000 1.1
25 +++ museek+-0.1.13-post_release_fixes.patch 23 Sep 2007 12:20:22 -0000 1.2
26 @@ -51,13 +51,6 @@
27
28 set(ICONS
29 museeq.png
30 -@@ -369,4 +374,4 @@
31 - MESSAGE(" * without a Trayicon.. [TRAYICON=1]")
32 - else (NOT TRAYICON)
33 - MESSAGE(" * with a Trayicon.. [TRAYICON=0]")
34 --endif (NOT TRAYICON)
35 -\ Sin fin-de-línea al final del archivo
36 -+endif (NOT TRAYICON)
37 Index: museeq/mainwin.cpp
38 ===================================================================
39 --- museeq/mainwin.cpp (revisión: 735)
40
41
42
43 1.1 net-p2p/museek+/files/museek+-0.1.13-optional-deps.patch
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-p2p/museek+/files/museek+-0.1.13-optional-deps.patch?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-p2p/museek+/files/museek+-0.1.13-optional-deps.patch?rev=1.1&content-type=text/plain
47
48 Index: museek+-0.1.13-optional-deps.patch
49 ===================================================================
50 --- CMakeLists.txt 2007-09-23 13:10:33.000000000 +0200
51 +++ CMakeLists.txt 2007-09-23 13:14:32.000000000 +0200
52 @@ -261,7 +261,7 @@
53 endif (NOT DIR_H)
54
55 # Detect Vorbisfile library
56 -if (HAVE_VORBIS_H)
57 +if (HAVE_VORBIS_H AND VORBIS)
58 find_library(VORBIS_LIBRARIES NAMES vorbisfile PATHS /usr/lib /usr/local/lib)
59 if (VORBIS_LIBRARIES)
60 set(HAVE_VORBIS 1)
61 @@ -270,9 +270,9 @@
62 message(STATUS "Vorbisfile library wasn't found, ogg metadata will not be created")
63 set(VORBIS_LIBRARIES "")
64 endif (VORBIS_LIBRARIES)
65 -else (HAVE_VORBIS_H)
66 +else (HAVE_VORBIS_H AND VORBIS)
67 set(VORBIS_LIBRARIES "")
68 -endif (HAVE_VORBIS_H)
69 +endif (HAVE_VORBIS_H AND VORBIS)
70
71 set(CMAKE_REQUIRED_LIBRARIES)
72
73 @@ -340,4 +340,4 @@
74 add_subdirectory(museeq)
75 else (C_MUSEEQ)
76 message("!!! museeq will NOT be installed [NO_MUSEEQ=0]")
77 -endif (C_MUSEEQ)
78 \ No hay ningún carácter de nueva línea al final del fichero
79 +endif (C_MUSEEQ)
80 --- museeq/CMakeLists.txt 2007-09-23 13:10:33.000000000 +0200
81 +++ museeq/CMakeLists.txt 2007-09-23 13:13:58.000000000 +0200
82 @@ -1,9 +1,7 @@
83 project(museeq) # the name of your project
84
85 MESSAGE("DECLARATIONS: PREFIX (/usr), MANDIR (PREFIX/man), DATADIR (PREFIX/share), BINRELOC, TRAYICON
86 -Prefix declarations with -D and set them with either 1, 0 or a path.
87 -QSA is detected automatically
88 -")
89 +Prefix declarations with -D and set them with either 1, 0 or a path.")
90
91
92 cmake_minimum_required(VERSION 2.4.0)
93 @@ -175,13 +173,17 @@
94 int main() {
95 QSInterpreter::defaultInterpreter()->hasFunction(\"\");
96 }
97 -" QSA)
98 +" HAVE_QSA)
99
100 if (QSA)
101 -MESSAGE(STATUS "QSA available")
102 - add_definitions(-DHAVE_QSA=1 -DHAVE_QSA_DIALOG=1 )
103 + if (HAVE_QSA)
104 + MESSAGE(STATUS "QSA available")
105 + add_definitions(-DHAVE_QSA=1 -DHAVE_QSA_DIALOG=1 )
106 + else (HAVE_QSA)
107 + MESSAGE(FATAL_ERROR "!!! QSA NOT available")
108 + endif (HAVE_QSA)
109 else (QSA)
110 -MESSAGE("!!! QSA NOT available")
111 +MESSAGE("!!! QSA disabled")
112 endif (QSA)
113
114 message(STATUS "moc binary:" ${QT_MOC_EXECUTABLE})
115 @@ -369,4 +371,4 @@
116 MESSAGE(" * without a Trayicon.. [TRAYICON=1]")
117 else (NOT TRAYICON)
118 MESSAGE(" * with a Trayicon.. [TRAYICON=0]")
119 -endif (NOT TRAYICON)
120 \ No hay ningún carácter de nueva línea al final del fichero
121 +endif (NOT TRAYICON)
122 --- Tools/CMakeLists.txt 2007-09-23 13:10:33.000000000 +0200
123 +++ Tools/CMakeLists.txt 2007-09-23 13:11:55.000000000 +0200
124 @@ -42,7 +42,7 @@
125 )
126 MESSAGE("--> muscan (file scanner) will be installed..")
127 # To build, or not build muscand
128 -if (FAM_LIBRARIES AND FAM_H)
129 +if (NOT NO_MUSCAND AND FAM_LIBRARIES AND FAM_H)
130
131 add_executable(muscand ${MUSCAND_SOURCES})
132
133 @@ -68,9 +68,9 @@
134 DESTINATION bin
135 )
136 MESSAGE("--> muscand (FAM-based file scanning daemon) will be installed..")
137 -else(FAM_LIBRARIES AND FAM_H)
138 +else(NOT NO_MUSCAND AND FAM_LIBRARIES AND FAM_H)
139 MESSAGE("!!! muscand will NOT be installed..")
140 -endif(FAM_LIBRARIES AND FAM_H)
141 +endif(NOT NO_MUSCAND AND FAM_LIBRARIES AND FAM_H)
142
143 target_link_libraries(
144 muscan
145
146
147
148 1.1 net-p2p/museek+/files/digest-museek+-0.1.13-r1
149
150 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-p2p/museek+/files/digest-museek+-0.1.13-r1?rev=1.1&view=markup
151 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-p2p/museek+/files/digest-museek+-0.1.13-r1?rev=1.1&content-type=text/plain
152
153 Index: digest-museek+-0.1.13-r1
154 ===================================================================
155 MD5 7aada627839578ebe525c54a1cef7dc4 museek+-0.1.13.tar.bz2 1186870
156 RMD160 25e1febce98ee536ba380e58b052ed7113f84d06 museek+-0.1.13.tar.bz2 1186870
157 SHA256 e1958556b30dee59eb7648973432d4d048f30c79f38ab7145fca6f0f2690473e museek+-0.1.13.tar.bz2 1186870
158
159
160
161 --
162 gentoo-commits@g.o mailing list