#2608 closed enhancement (fixed)
[PATCH] Small FreeBSD tweaks
Reported by: | arrowd | Owned by: | arrowd |
---|---|---|---|
Priority: | trivial | Milestone: | 4.0 |
Component: | platforms | Version: | trunk |
Keywords: | Cc: |
Description
Here are some patches we have to apply to our x11/xpra port.
Attachments (1)
Change History (10)
Changed 14 months ago by
Attachment: | xpra.patch added |
---|
comment:1 Changed 14 months ago by
Owner: | changed from Antoine Martin to arrowd |
---|
comment:3 Changed 14 months ago by
Can you please also change
if is_Fedora() or is_CentOS() or is_RedHat():
line to
if is_Fedora() or is_CentOS() or is_RedHat() or FREEBSD:
?
Version 0, edited 14 months ago
by
(next)
comment:5 Changed 14 months ago by
Do you still need the change for cups?
Something like this perhaps:
@@ -1506,7 +1506,10 @@ if printing_ENABLED and POSIX: #install "/usr/lib/cups/backend" with 0700 permissions: - copytodir("cups/xpraforwarder", "lib/cups/backend", chmod=0o700) + lib_cups = "lib/cups" + if FREEBSD: + lib_cups = "libexec/cups" + copytodir("cups/xpraforwarder", "%s/backend" % lib_cups, chmod=0o700) if x11_ENABLED: #install xpra_Xdummy if we need it:
comment:7 Changed 14 months ago by
Resolution: | → fixed |
---|---|
Status: | new → closed |
r25320 for cups path.
That's all of it.
comment:8 Changed 14 months ago by
FYI: these patches are now in the v3.0.x branch and will be included in 3.0.7: r25321.
comment:9 Changed 3 months ago by
this ticket has been moved to: https://github.com/Xpra-org/xpra/issues/2608
Note: See
TracTickets for help on using
tickets.
I've merged the easy part in r25318.
AFAICT, the cups part of this patch is not correct and would change the cups backend path for for non-!FreeBSD to
/usr/libexec/cups
.