blob: 0320fb08b347b272da8daf6b9fa0e62448f2a427 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<HTML>
<HEAD>
<TITLE> [Mageia-dev] pixmap
</TITLE>
<LINK REL="Index" HREF="index.html" >
<LINK REL="made" HREF="mailto:mageia-dev%40mageia.org?Subject=Re%3A%20%5BMageia-dev%5D%20pixmap&In-Reply-To=%3C4EE90A4E.8000305%40orange.fr%3E">
<META NAME="robots" CONTENT="index,nofollow">
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
<LINK REL="Previous" HREF="010411.html">
<LINK REL="Next" HREF="010434.html">
</HEAD>
<BODY BGCOLOR="#ffffff">
<H1>[Mageia-dev] pixmap</H1>
<B>jcc</B>
<A HREF="mailto:mageia-dev%40mageia.org?Subject=Re%3A%20%5BMageia-dev%5D%20pixmap&In-Reply-To=%3C4EE90A4E.8000305%40orange.fr%3E"
TITLE="[Mageia-dev] pixmap">colette.jc at orange.fr
</A><BR>
<I>Wed Dec 14 21:42:54 CET 2011</I>
<P><UL>
<LI>Previous message: <A HREF="010411.html">[Mageia-dev] pixmap
</A></li>
<LI>Next message: <A HREF="010434.html">[Mageia-dev] pixmap
</A></li>
<LI> <B>Messages sorted by:</B>
<a href="date.html#10433">[ date ]</a>
<a href="thread.html#10433">[ thread ]</a>
<a href="subject.html#10433">[ subject ]</a>
<a href="author.html#10433">[ author ]</a>
</LI>
</UL>
<HR>
<!--beginarticle-->
<PRE>On 14/12/2011 09:40, Guillaume Rousse wrote:
><i> Le 13/12/2011 23:27, jcc a écrit :
</I>>><i> Hello,
</I>>><i>
</I>>><i> In a spec file, to install icons, if you copy the image in xpm format in
</I>>><i> /usr/share/pixmap how do you update the image?
</I>>><i> I search a command like %{_bindir}/gtk-update-icon-cache -q
</I>>><i> %{_datadir}/icons/hicolor; but for a pixmap image.
</I>><i> This update the gtk image *cache*, for gtk apps, not the image itself.
</I>><i> Where are those xpm icons used, and are you trying to update exactly ?
</I>><i>
</I>I have a problem with the icon of the application.
First I tried to save the icon image in pixmap directory but no icon
appears on the desktop menu bar.
Then I replaced with these instructions and still the same problem.
mkdir -p $RPM_BUILD_ROOT%{_datadir}/icons/hicolor
convert axiomicon.png $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/axiom.png
even with the usual instruction update, it doesn't work:
%post
#update icon cache
touch --no-create %{_datadir}/icons/hicolor
if [ -x %{_bindir}/gtk-update-icon-cache ]; then
%{_bindir}/gtk-update-icon-cache -q %{_datadir}/icons/hicolor;
fi
update-desktop-database &> /dev/null || :
%postun
# update icon cache
touch --no-create %{_datadir}/icons/hicolor
if [ -x %{_bindir}/gtk-update-icon-cache ]; then
%{_bindir}/gtk-update-icon-cache -q %{_datadir}/icons/hicolor;
fi
update-desktop-database &> /dev/null || :
If you have another idea ...
</PRE>
<!--endarticle-->
<HR>
<P><UL>
<!--threads-->
<LI>Previous message: <A HREF="010411.html">[Mageia-dev] pixmap
</A></li>
<LI>Next message: <A HREF="010434.html">[Mageia-dev] pixmap
</A></li>
<LI> <B>Messages sorted by:</B>
<a href="date.html#10433">[ date ]</a>
<a href="thread.html#10433">[ thread ]</a>
<a href="subject.html#10433">[ subject ]</a>
<a href="author.html#10433">[ author ]</a>
</LI>
</UL>
<hr>
<a href="https://www.mageia.org/mailman/listinfo/mageia-dev">More information about the Mageia-dev
mailing list</a><br>
</body></html>
|