Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 952180
Collapse All | Expand All

(-)a/common/configure (-35 / +4 lines)
Lines 178-184 Link Here
178
178
179
printf "all:\tbuild\n\n" >> ${MAKEFILE}
179
printf "all:\tbuild\n\n" >> ${MAKEFILE}
180
180
181
printf "build:\ttranslate compress\n" >> ${MAKEFILE}
181
printf "build:\ttranslate\n" >> ${MAKEFILE}
182
182
183
printf "clean:\n" >> ${MAKEFILE}
183
printf "clean:\n" >> ${MAKEFILE}
184
printf "\trm -f po/*.mo\n" >> ${MAKEFILE}
184
printf "\trm -f po/*.mo\n" >> ${MAKEFILE}
Lines 207-239 Link Here
207
addUninstallDir                "/share/backintime"
207
addUninstallDir                "/share/backintime"
208
addNewline
208
addNewline
209
209
210
addComment "documentation"
211
addInstallDir                        "/share/doc/backintime-common"
212
addInstallFile "../AUTHORS"          "/share/doc/backintime-common"
213
addInstallFile "../README.md"        "/share/doc/backintime-common"
214
addInstallFile "../FAQ.md"           "/share/doc/backintime-common"
215
addInstallFile "../TRANSLATIONS"     "/share/doc/backintime-common"
216
addInstallFile "../CHANGES"          "/share/doc/backintime-common"
217
addInstallFile "../LICENSE"          "/share/doc/backintime-common"
218
addInstallDir                        "/share/doc/backintime-common/LICENSES"
219
addInstallFiles "../LICENSES/*"      "/share/doc/backintime-common/LICENSES"
220
addNewline
221
222
addComment "config and user-callback examples"
223
addInstallDir                            "/share/doc/backintime-common/examples"
224
addInstallFile "config-example-local.gz" "/share/doc/backintime-common/examples"
225
addInstallFile "config-example-ssh.gz"   "/share/doc/backintime-common/examples"
226
addInstallDir                            "/share/doc/backintime-common/user-callback-examples"
227
addInstallFiles "../doc/user-callback-examples/user-callback.*"   "/share/doc/backintime-common/user-callback-examples"
228
addUninstallDir                          "/share/doc/backintime-common"
229
addUninstallDir                          "/share/doc"
230
addNewline
231
232
addComment "man"
210
addComment "man"
233
addInstallDir                                  "/share/man/man1"
211
addInstallDir                                  "/share/man/man1"
234
addInstallFile "man/C/backintime.1.gz"         "/share/man/man1"
212
addInstallFile "man/C/backintime.1"            "/share/man/man1"
235
addInstallFile "man/C/backintime-askpass.1.gz" "/share/man/man1"
213
addInstallFile "man/C/backintime-askpass.1"    "/share/man/man1"
236
addInstallFile "man/C/backintime-config.1.gz"  "/share/man/man1"
214
addInstallFile "man/C/backintime-config.1"     "/share/man/man1"
237
addUninstallDir                                "/share/man"
215
addUninstallDir                                "/share/man"
238
addNewline
216
addNewline
239
217
Lines 257-271 Link Here
257
addUninstallDir                     "/share/bash-completion"
235
addUninstallDir                     "/share/bash-completion"
258
addNewline
236
addNewline
259
237
260
# compress
261
printf "compress:\n" >> ${MAKEFILE}
262
printf "\t# Man pages\n" >> ${MAKEFILE}
263
printf "\tfor i in \$\$(ls -1 man/C/); do case \$\$i in *.gz|*~) continue;; *) gzip -n --best -c man/C/\$\$i > man/C/\$\${i}.gz;; esac; done\n\n" >> ${MAKEFILE}
264
265
printf "\t# Config-examples\n" >> ${MAKEFILE}
266
printf "\tgzip -n --best -c config-example-local > config-example-local.gz\n" >> ${MAKEFILE}
267
printf "\tgzip -n --best -c config-example-ssh > config-example-ssh.gz\n\n" >> ${MAKEFILE}
268
269
# translate
238
# translate
270
printf "translate:\t$mos\n\n" >> ${MAKEFILE}
239
printf "translate:\t$mos\n\n" >> ${MAKEFILE}
271
240
(-)a/qt/configure (-20 / +2 lines)
Lines 154-160 Link Here
154
154
155
printf "all:\tbuild\n\n" >> ${MAKEFILE}
155
printf "all:\tbuild\n\n" >> ${MAKEFILE}
156
156
157
printf "build:\tcompress\n\n" >> ${MAKEFILE}
157
printf "build:\n\n" >> ${MAKEFILE}
158
158
159
printf "clean:\n" >> ${MAKEFILE}
159
printf "clean:\n" >> ${MAKEFILE}
160
printf "\trm -f po/*.mo\n" >> ${MAKEFILE}
160
printf "\trm -f po/*.mo\n" >> ${MAKEFILE}
Lines 165-171 Link Here
165
165
166
# Migration
166
# Migration
167
printf "\t# Clean-up installed old files that were renamed or moved in later BiT versions\n" >> ${MAKEFILE}
167
printf "\t# Clean-up installed old files that were renamed or moved in later BiT versions\n" >> ${MAKEFILE}
168
printf "\trm -f \$(DEST)/etc/dbus-1/system.d/net.launchpad.backintime.serviceHelper.conf\n" >> ${MAKEFILE}
169
printf "\trm -f \$(DEST)/share/backintime/plugins/qt4plugin.py\n" >> ${MAKEFILE}
168
printf "\trm -f \$(DEST)/share/backintime/plugins/qt4plugin.py\n" >> ${MAKEFILE}
170
addNewline
169
addNewline
171
170
Lines 217-234 Link Here
217
addUninstallDir                                    "/share/polkit-1"
216
addUninstallDir                                    "/share/polkit-1"
218
addNewline
217
addNewline
219
218
220
addComment "documentation"
221
addInstallDir                        "/share/doc/backintime-qt"
222
addInstallFile "../AUTHORS"          "/share/doc/backintime-qt"
223
addInstallFile "../README.md"        "/share/doc/backintime-qt"
224
addInstallFile "../FAQ.md"        "/share/doc/backintime-qt"
225
addInstallFile "../TRANSLATIONS"     "/share/doc/backintime-qt"
226
addInstallFile "../CHANGES"          "/share/doc/backintime-qt"
227
addInstallFile "../LICENSE"          "/share/doc/backintime-qt"
228
addInstallDir                        "/share/doc/backintime-qt/LICENSES"
229
addInstallFiles "../LICENSES/*"      "/share/doc/backintime-qt/LICENSES"
230
addNewline
231
232
addComment ".desktop"
219
addComment ".desktop"
233
addInstallDir               "/share/applications"
220
addInstallDir               "/share/applications"
234
addInstallFiles "*.desktop" "/share/applications"
221
addInstallFiles "*.desktop" "/share/applications"
Lines 236-242 Link Here
236
223
237
addComment "man"
224
addComment "man"
238
addInstallDir    "/share/man/man1"
225
addInstallDir    "/share/man/man1"
239
addInstallFile   "man/C/backintime-qt.1.gz" "/share/man/man1"
226
addInstallFile   "man/C/backintime-qt.1" "/share/man/man1"
240
addUninstallDir  "/share/man"
227
addUninstallDir  "/share/man"
241
addNewline
228
addNewline
242
229
Lines 251-261 Link Here
251
addUninstallDir                                             "/share"
238
addUninstallDir                                             "/share"
252
addNewline
239
addNewline
253
240
254
#compress
255
printf "compress:\n" >> ${MAKEFILE}
256
printf "\t# Man pages\n" >> ${MAKEFILE}
257
printf "\tfor i in \$\$(ls -1 man/C/); do case \$\$i in *.gz|*~) continue;; *) gzip -n --best -c man/C/\$\$i > man/C/\$\${i}.gz;; esac; done\n\n" >> ${MAKEFILE}
258
259
# Uninstall
241
# Uninstall
260
printf "uninstall: uninstall_files uninstall_dirs\n\n" >> ${MAKEFILE}
242
printf "uninstall: uninstall_files uninstall_dirs\n\n" >> ${MAKEFILE}
261
printf "uninstall_files:\n" >> ${MAKEFILE}
243
printf "uninstall_files:\n" >> ${MAKEFILE}

Return to bug 952180