View | Details | Raw Unified | Return to bug 181056 | Differences between
and this patch

Collapse All | Expand All

(-)cad/gerbv/Makefile (-26 / +44 lines)
Lines 2-21 Link Here
2
# $FreeBSD: head/cad/gerbv/Makefile 326095 2013-09-02 21:32:24Z bapt $
2
# $FreeBSD: head/cad/gerbv/Makefile 326095 2013-09-02 21:32:24Z bapt $
3
3
4
PORTNAME=	gerbv
4
PORTNAME=	gerbv
5
PORTVERSION=	2.6.0
5
PORTVERSION=	2.6.1
6
PORTREVISION=	1
7
CATEGORIES=	cad
6
CATEGORIES=	cad
8
MASTER_SITES=	SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION}
7
MASTER_SITES=	SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION}
9
8
10
MAINTAINER=	ports@FreeBSD.org
9
MAINTAINER=	ports@FreeBSD.org
11
COMMENT=	A Free Gerber Viewer
10
COMMENT=	Gerber file viewer
12
11
13
LICENSE=	GPLv2
12
LICENSE=	GPLv2
14
LICENSE_FILE=	${WRKSRC}/COPYING
15
13
16
USES=        pathfix pkgconfig
14
OPTIONS_DEFINE=	DOCS EXAMPLES
17
USE_GNOME=	desktopfileutils gtk20
15
18
USE_AUTOTOOLS=	libtool
16
USES=		desktop-file-utils gmake pathfix pkgconfig
17
USE_GNOME=	gtk20
18
USE_AUTOTOOLS=	libtoolize aclocal autoheader automake autoconf
19
LIBTOOLIZE_ARGS=--copy --force
20
AUTOMAKE_ARGS=	--add-missing --copy --foreign
21
CONFIGURE_ENV=	ac_aux_dir="."
19
USE_LDCONFIG=	yes
22
USE_LDCONFIG=	yes
20
INSTALLS_ICONS=	yes
23
INSTALLS_ICONS=	yes
21
24
Lines 26-62 Link Here
26
29
27
MAN1=		gerbv.1
30
MAN1=		gerbv.1
28
31
32
.include <bsd.port.options.mk>
33
29
post-patch:
34
post-patch:
30
	@${REINPLACE_CMD} -e '/^SUBDIRS =/s|desktop||g' ${WRKSRC}/Makefile.in
35
	@${REINPLACE_CMD} -e \
36
		's|^AM_NLS|#AM_NLS| ; \
37
		 s|^AM_GNU_GETTEXT|#AM_GNU_GETTEXT| ; \
38
		 /intl\/Makefile/d ; \
39
		 /po\/Makefile/d' ${WRKSRC}/configure.ac
40
	@${REINPLACE_CMD} -e \
41
		'/^SUBDIRS/s|=.*|= src man scheme|' ${WRKSRC}/Makefile.am
42
	@${REINPLACE_CMD} -e \
43
		'/^man_MANS/s|gerbv.ru.1|| ; \
44
		 s|^PO_|#PO_|' ${WRKSRC}/man/Makefile.am
45
	@${REINPLACE_CMD} -e \
46
		'/^pkgconfigdir/s|$$(libdir)|$$(prefix)/libdata|' \
47
		${WRKSRC}/src/Makefile.am
31
48
32
post-install:
49
post-install:
33
	@${MKDIR} ${PREFIX}/share/applications
50
	@${MKDIR} ${DESKTOPDIR}
34
	${INSTALL_DATA} ${WRKSRC}/desktop/gerbv.desktop \
51
	(cd ${WRKSRC}/desktop && ${INSTALL_DATA} gerbv.desktop \
35
		${PREFIX}/share/applications
52
		${DESKTOPDIR})
36
	@${MKDIR} ${PREFIX}/share/icons/hicolor/scalable/apps
53
	@${MKDIR} ${PREFIX}/share/icons/hicolor/scalable/apps
37
	${INSTALL_DATA} ${WRKSRC}/desktop/gerbv.svg \
54
	(cd ${WRKSRC}/desktop && ${INSTALL_DATA} gerbv.svg \
38
		${PREFIX}/share/icons/hicolor/scalable/apps
55
		${PREFIX}/share/icons/hicolor/scalable/apps)
39
.for i in 16 22 24 32 48
56
.for i in 16 22 24 32 48
40
	@${MKDIR} ${PREFIX}/share/icons/hicolor/${i}x${i}/apps
57
	@${MKDIR} ${PREFIX}/share/icons/hicolor/${i}x${i}/apps
41
	${INSTALL_DATA} ${WRKSRC}/desktop/gerbv-${i}.png \
58
	(cd ${WRKSRC}/desktop && ${INSTALL_DATA} gerbv-${i}.png \
42
		${PREFIX}/share/icons/hicolor/${i}x${i}/apps/gerbv.png
59
		${PREFIX}/share/icons/hicolor/${i}x${i}/apps/gerbv.png)
43
.endfor
60
.endfor
44
.if !defined(NOPORTDOCS)
61
.if ${PORT_OPTIONS:MDOCS}
45
	@${MKDIR} ${DOCSDIR}
62
	@${MKDIR} ${DOCSDIR}
46
	${INSTALL_DATA} ${WRKSRC}/doc/*.fig ${DOCSDIR}
63
	(cd ${WRKSRC}/doc && ${INSTALL_DATA} *.fig *.txt \
47
	${INSTALL_DATA} ${WRKSRC}/doc/*.txt ${DOCSDIR}
64
		${DOCSDIR})
48
	@${MKDIR} ${DOCSDIR}/PNG-print
65
	@${MKDIR} ${DOCSDIR}/PNG-print
49
	${INSTALL_DATA} ${WRKSRC}/doc/PNG-print/*.jpg ${DOCSDIR}/PNG-print
66
	(cd ${WRKSRC}/doc/PNG-print && ${INSTALL_DATA} *.jpg *.txt \
50
	${INSTALL_DATA} ${WRKSRC}/doc/PNG-print/*.txt ${DOCSDIR}/PNG-print
67
		${DOCSDIR}/PNG-print)
51
	@${MKDIR} ${DOCSDIR}/eagle
68
	@${MKDIR} ${DOCSDIR}/eagle
52
	${INSTALL_DATA} ${WRKSRC}/doc/eagle/*.pl ${DOCSDIR}/eagle
69
	(cd ${WRKSRC}/doc/eagle && ${INSTALL_DATA} *.pl *.txt \
53
	${INSTALL_DATA} ${WRKSRC}/doc/eagle/*.txt ${DOCSDIR}/eagle
70
		${DOCSDIR}/eagle)
54
.endif
71
.endif
55
.if !defined(NOPORTEXAMPLES)
72
.if ${PORT_OPTIONS:MEXAMPLES}
56
	@${MKDIR} ${EXAMPLESDIR}
73
	@${MKDIR} ${EXAMPLESDIR}
57
	cd ${WRKSRC}/example && ${FIND} . ! -name "*Makefile*" | \
74
	@(cd ${WRKSRC}/example && ${FIND} . \
58
		${CPIO} -pdm -L -R ${SHAREOWN}:${SHAREGRP} ${EXAMPLESDIR}
75
		! \( -name "*Makefile*" -or -name ".cvsignore" \) \
76
		| ${CPIO} --quiet -pdm -L -R ${SHAREOWN}:${SHAREGRP} \
77
		${EXAMPLESDIR})
59
.endif
78
.endif
60
	-@update-desktop-database
61
79
62
.include <bsd.port.mk>
80
.include <bsd.port.mk>
(-)cad/gerbv/distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
SHA256 (gerbv-2.6.0.tar.gz) = 5c55425c3493bc8407949be8b4e572434a6b378f5727cc0dcef97dc2e7574dd0
1
SHA256 (gerbv-2.6.1.tar.gz) = 7aa6a2c622dc9ff7acd88411dddf95ae25ae3b5d97020f3ea91e97d82bf0d96c
2
SIZE (gerbv-2.6.0.tar.gz) = 2346299
2
SIZE (gerbv-2.6.1.tar.gz) = 4432481
(-)cad/gerbv/pkg-descr (-1 / +1 lines)
Lines 16-19 Link Here
16
can load all files at the same time and display them "on top of each
16
can load all files at the same time and display them "on top of each
17
other". You can independently turn them on and off.
17
other". You can independently turn them on and off.
18
18
19
WWW: http://gerbv.gpleda.org/
19
WWW: http://gerbv.geda-project.org/
(-)cad/gerbv/pkg-plist (-2 / +53 lines)
Lines 17-22 Link Here
17
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Mentor-BoardStation/README.txt
17
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Mentor-BoardStation/README.txt
18
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Mentor-BoardStation/artwork_1.grb
18
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Mentor-BoardStation/artwork_1.grb
19
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/am-test/am-test.gbx
19
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/am-test/am-test.gbx
20
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/amacro-ref/1.grb
21
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/amacro-ref/README.txt
22
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/amacro-ref/full-ex.grb
23
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/amacro-ref/gerbv_am_expression_bug.ger
24
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/amacro-ref/jj1.drl
25
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/amacro-ref/jj1.grb
26
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/amacro-ref/limit-ex.grb
27
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/amacro-ref/stp0.grb
20
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/cslk/README.txt
28
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/cslk/README.txt
21
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/cslk/cslk.gbx
29
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/cslk/cslk.gbx
22
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/cslk/cslk.ps
30
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/cslk/cslk.ps
Lines 25-30 Link Here
25
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dan/top_sr.gbx
33
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dan/top_sr.gbx
26
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/eaglecad1/top-cop.gbx
34
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/eaglecad1/top-cop.gbx
27
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/eaglecad1/top-cop.pdf
35
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/eaglecad1/top-cop.pdf
36
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ekf/README
37
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ekf/ekf.gap
38
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ekf/ekf_08.apt
39
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ekf/l1.off
28
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ekf2/README.txt
40
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ekf2/README.txt
29
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ekf2/d1.grb
41
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ekf2/d1.grb
30
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ekf2/drill0.exc
42
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ekf2/drill0.exc
Lines 48-53 Link Here
48
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/exposure/README.txt
60
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/exposure/README.txt
49
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/exposure/example.grb
61
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/exposure/example.grb
50
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/exposure/example.jpg
62
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/exposure/example.jpg
63
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hellboard/README
64
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hellboard/hellboard.back.gbr
65
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hellboard/hellboard.fab.gbr
66
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hellboard/hellboard.front.gbr
67
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hellboard/hellboard.group1.gbr
68
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hellboard/hellboard.group2.gbr
69
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hellboard/hellboard.pcb
70
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hellboard/hellboard.plated-drill.cnc
51
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/jj/README.txt
71
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/jj/README.txt
52
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/jj/l1-1.grb
72
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/jj/l1-1.grb
53
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/jj/l1-2.grb
73
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/jj/l1-2.grb
Lines 80-85 Link Here
80
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pick-and-place/LED.xy
100
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pick-and-place/LED.xy
81
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/polarity/6_vbat.gbr
101
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/polarity/6_vbat.gbr
82
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/polarity/README.txt
102
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/polarity/README.txt
103
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/protel-pnp/Assembly_Drawings.pdf
104
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/protel-pnp/Final_Artwork_Prints.pdf
105
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/protel-pnp/Pick_Place_for_SE_SG_IF_V2.csv
106
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/protel-pnp/Pick_Place_for_SE_SG_IF_V2.txt
107
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/protel-pnp/README.txt
108
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/protel-pnp/SE_SG_IF_V2.DRL
109
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/protel-pnp/SE_SG_IF_V2.DRR
110
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/protel-pnp/SE_SG_IF_V2.GBL
111
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/protel-pnp/SE_SG_IF_V2.GBO
112
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/protel-pnp/SE_SG_IF_V2.GBS
113
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/protel-pnp/SE_SG_IF_V2.GD1
114
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/protel-pnp/SE_SG_IF_V2.GG1
115
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/protel-pnp/SE_SG_IF_V2.GM1
116
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/protel-pnp/SE_SG_IF_V2.GM2
117
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/protel-pnp/SE_SG_IF_V2.GTL
118
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/protel-pnp/SE_SG_IF_V2.GTO
119
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/protel-pnp/SE_SG_IF_V2.GTS
120
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/protel-pnp/SE_SG_IF_V2.LDP
121
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/protel-pnp/SE_SG_IF_V2.REP
122
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/protel-pnp/SE_SG_IF_V2.RUL
123
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/protel-pnp/SE_SG_IF_V2.TXT
124
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/protel-pnp/SE_SG_IF_V2.apr
125
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/protel-pnp/Status_Report.txt
83
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/thermal/README.txt
126
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/thermal/README.txt
84
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/thermal/bpB.GP1
127
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/thermal/bpB.GP1
85
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/thermal/bpB.png
128
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/thermal/bpB.png
Lines 88-93 Link Here
88
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/trailing/README.txt
131
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/trailing/README.txt
89
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/trailing/cd1r2.1_sieb0.off
132
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/trailing/cd1r2.1_sieb0.off
90
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/trailing/cd1r2.1_sieb1.off
133
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/trailing/cd1r2.1_sieb1.off
134
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/uwe/example-cairo.png
135
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/uwe/example-gdk.png
136
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/uwe/example-viewmate.png
137
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/uwe/example.gbr
138
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/uwe/mail.txt
91
%%DATADIR%%/scheme/gerb-debug.scm
139
%%DATADIR%%/scheme/gerb-debug.scm
92
%%DATADIR%%/scheme/gerb-ps.scm
140
%%DATADIR%%/scheme/gerb-ps.scm
93
%%DATADIR%%/scheme/init.scm
141
%%DATADIR%%/scheme/init.scm
Lines 99-117 Link Here
99
share/icons/hicolor/scalable/apps/gerbv.svg
147
share/icons/hicolor/scalable/apps/gerbv.svg
100
@dirrm %%DATADIR%%/scheme
148
@dirrm %%DATADIR%%/scheme
101
@dirrm %%DATADIR%%
149
@dirrm %%DATADIR%%
150
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/uwe
102
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/trailing
151
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/trailing
103
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/thermal
152
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/thermal
153
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/protel-pnp
104
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/polarity
154
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/polarity
105
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/pick-and-place
155
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/pick-and-place
106
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/orcad
156
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/orcad
107
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/numpres
157
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/numpres
108
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/nollezappare
158
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/nollezappare
109
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/jj
159
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/jj
160
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/hellboard
110
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/exposure
161
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/exposure
111
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/ekf2
162
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/ekf2
163
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/ekf
112
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/eaglecad1
164
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/eaglecad1
113
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/dan
165
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/dan
114
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/cslk
166
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/cslk
167
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/amacro-ref
115
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/am-test
168
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/am-test
116
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/Mentor-BoardStation
169
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/Mentor-BoardStation
117
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%
170
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%
Lines 120-124 Link Here
120
%%PORTDOCS%%@dirrm %%DOCSDIR%%
173
%%PORTDOCS%%@dirrm %%DOCSDIR%%
121
@dirrmtry share/applications
174
@dirrmtry share/applications
122
@dirrm include/gerbv-%%VERSION%%
175
@dirrm include/gerbv-%%VERSION%%
123
@exec %%LOCALBASE%%/bin/update-desktop-database > /dev/null || /usr/bin/true
124
@unexec %%LOCALBASE%%/bin/update-desktop-database > /dev/null || /usr/bin/true

Return to bug 181056