mirror of
https://github.com/dustinkirkland/byobu
synced 2025-07-05 20:42:10 -07:00
* === added directory usr/share/byobu/desktop, === added directory usr/share/dbus-1, === added directory usr/share/dbus-1/services, configure.ac, debian/control, debian/postinst, debian/postrm, Makefile.am, usr/share/applications/byobu.desktop => usr/share/byobu/desktop/byobu.desktop, usr/share/applications/Makefile.am => usr/share/byobu/desktop/Makefile.am, usr/share/byobu/desktop/byobu.desktop.old, usr/share/dbus- 1/services/Makefile.am, usr/share/dbus- 1/services/us.kirkland.terminals.byobu.service: LP: #1512498, #1503418 - huge work around the mess that is gnome-terminal-server - install two different desktop files to /usr/share/byobu/desktops/* - in postinst, symlink the correct one into /usr/share/applications - clean up that conditionally installed symlink in postinst - suggest gnome-terminal package, as our new desktop file hardcodes gnome-terminal (this kind of sucks) - in byobu.desktop, exec gnome-terminal with a --app-id hint, and drop the Terminal=true, as gnome-terminal will take care of that - install a dbus service, as new gnome-terminal expects to launch via dbus - fqdn namespace that service to us.kirkland.terminals.byobu + this is stupid, btw
64 lines
1.7 KiB
Text
64 lines
1.7 KiB
Text
# -*- Autoconf -*-
|
|
# Process this file with autoconf to produce a configure script.
|
|
|
|
AC_PREREQ([2.61])
|
|
AC_INIT(byobu, 3.0, http://byobu.co)
|
|
AM_INIT_AUTOMAKE(byobu, 3.0)
|
|
AC_PROG_LN_S
|
|
|
|
# Checks for programs.
|
|
|
|
# Checks for libraries.
|
|
|
|
# Checks for header files.
|
|
|
|
# Checks for typedefs, structures, and compiler characteristics.
|
|
|
|
# Checks for library functions.
|
|
|
|
AC_OUTPUT(Makefile \
|
|
etc/byobu/Makefile \
|
|
etc/profile.d/Makefile \
|
|
etc/profile.d/Z97-byobu.sh \
|
|
usr/bin/byobu \
|
|
usr/bin/byobu-config \
|
|
usr/bin/byobu-ctrl-a \
|
|
usr/bin/byobu-disable \
|
|
usr/bin/byobu-disable-prompt \
|
|
usr/bin/byobu-enable \
|
|
usr/bin/byobu-enable-prompt \
|
|
usr/bin/byobu-export \
|
|
usr/bin/byobu-janitor \
|
|
usr/bin/byobu-launch \
|
|
usr/bin/byobu-launcher \
|
|
usr/bin/byobu-launcher-install \
|
|
usr/bin/byobu-launcher-uninstall \
|
|
usr/bin/byobu-layout \
|
|
usr/bin/byobu-prompt \
|
|
usr/bin/byobu-quiet \
|
|
usr/bin/byobu-reconnect-sockets \
|
|
usr/bin/byobu-select-backend \
|
|
usr/bin/byobu-select-profile \
|
|
usr/bin/byobu-select-session \
|
|
usr/bin/byobu-shell \
|
|
usr/bin/byobu-silent \
|
|
usr/bin/byobu-status \
|
|
usr/bin/byobu-status-detail \
|
|
usr/bin/byobu-ugraph \
|
|
usr/bin/byobu-ulevel \
|
|
usr/lib/byobu/include/config.py \
|
|
usr/lib/byobu/include/dirs \
|
|
usr/lib/byobu/include/toggle-utf8 \
|
|
usr/share/byobu/tests/byobu-time-notifications \
|
|
usr/share/byobu/desktop/Makefile \
|
|
usr/share/byobu/keybindings/Makefile \
|
|
usr/share/byobu/pixmaps/Makefile \
|
|
usr/share/byobu/profiles/Makefile \
|
|
usr/share/byobu/status/Makefile \
|
|
usr/share/byobu/tests/Makefile \
|
|
usr/share/byobu/windows/Makefile \
|
|
usr/share/dbus-1/services/Makefile \
|
|
usr/share/doc/byobu/Makefile \
|
|
usr/lib/byobu/Makefile \
|
|
usr/lib/byobu/include/Makefile \
|
|
usr/share/man/man1/Makefile usr/bin/Makefile)
|