]> git.donarmstrong.com Git - deb_pkgs/autorandr.git/blob - Makefile
Revert "Use add or remove instead of change"
[deb_pkgs/autorandr.git] / Makefile
1 DESTDIR=/
2 PREFIX=/usr/
3 RPM_SPEC=contrib/packaging/rpm/autorandr.spec
4 CFLAGS?=-O2 -Wall
5 CLEANUP_FILES=
6
7 .PHONY: all install uninstall autorandr bash_completion autostart_config pmutils systemd udev
8
9 all:
10         @echo "Call \"make install\" to install this program."
11         @echo "Call \"make uninstall\" to remove this program."
12         @echo
13         @echo "The following components were autodetected and will be installed:"
14         @echo " "$(DEFAULT_TARGETS)
15         @echo
16         @echo "The following locations have been detected (from pkg-config):"
17         @echo " - BASH_COMPLETIONS_DIR: $(BASH_COMPLETIONS_DIR)"
18         @echo " - SYSTEMD_UNIT_DIR: $(SYSTEMD_UNIT_DIR)"
19         @echo " - UDEV_RULES_DIR: $(UDEV_RULES_DIR)"
20         @echo " - PM_SLEEPHOOKS_DIR: $(PM_SLEEPHOOKS_DIR)"
21         @echo
22         @echo "You can use the TARGETS variable to override this, but need to set"
23         @echo "the SYSTEMD_UNIT_DIR, PM_SLEEPHOOKS_DIR and UDEV_RULES_DIR variables"
24         @echo "in case they were not detected correctly."
25         @echo
26         @echo 'E.g. "make install TARGETS='autorandr pmutils' PM_UTILS_DIR=/etc/pm/sleep.d".'
27         @echo
28         @echo "An additional TARGETS variable \"launcher\" is available. This"
29         @echo "installs a launcher called \"autorandr_launcher\". The launcher"
30         @echo "is able to be run by the user and calls autorandr automatically"
31         @echo "without using udev rules. The launcher is an alternative to the"
32         @echo "udev/systemd setup that is more stable for some users."
33         @echo
34         @echo "The following additional targets are available:"
35         @echo
36         @echo "    make deb        creates a Debian package"
37         @echo "    make rpm        creates a RPM package"
38
39 # Rules for autorandr itself
40 DEFAULT_TARGETS=autorandr
41
42 install_autorandr:
43         mkdir -p ${DESTDIR}${PREFIX}/bin
44         install -m 755 autorandr.py ${DESTDIR}${PREFIX}/bin/autorandr
45
46 uninstall_autorandr:
47         rm -f ${DESTDIR}${PREFIX}/bin/autorandr
48
49 # Rules for bash-completion
50 BASH_COMPLETIONS_DIR:=$(shell pkg-config --variable=completionsdir bash-completion 2>/dev/null)
51 ifneq (,$(BASH_COMPLETIONS_DIR))
52 DEFAULT_TARGETS+=bash_completion
53 endif
54
55 install_bash_completion:
56         mkdir -p ${DESTDIR}/${BASH_COMPLETIONS_DIR}
57         install -m 644 contrib/bash_completion/autorandr ${DESTDIR}/${BASH_COMPLETIONS_DIR}/autorandr
58
59 uninstall_bash_completion:
60         rm -f ${DESTDIR}/${BASH_COMPLETIONS_DIR}/autorandr
61
62 # Rules for autostart config
63 XDG_AUTOSTART_DIR=/etc/xdg/autostart
64 DEFAULT_TARGETS+=autostart_config
65
66 install_autostart_config:
67         mkdir -p ${DESTDIR}/${XDG_AUTOSTART_DIR}
68         install -m 644 contrib/etc/xdg/autostart/autorandr.desktop ${DESTDIR}/${XDG_AUTOSTART_DIR}/autorandr.desktop
69         # KDE-specific autostart (workaround for https://github.com/systemd/systemd/issues/18791)
70         install -m 644 contrib/etc/xdg/autostart/autorandr.desktop ${DESTDIR}/${XDG_AUTOSTART_DIR}/autorandr-kde.desktop
71         desktop-file-edit --remove-key=X-GNOME-Autostart-Phase --add-only-show-in=KDE ${DESTDIR}/${XDG_AUTOSTART_DIR}/autorandr-kde.desktop
72
73 ifneq ($(PREFIX),/usr/)
74         sed -i -re 's#/usr/bin/autorandr#$(subst #,\#,${PREFIX})/bin/autorandr#g' ${DESTDIR}/${XDG_AUTOSTART_DIR}/autorandr.desktop
75 endif
76
77 uninstall_autostart_config:
78         rm -f ${DESTDIR}/${XDG_AUTOSTART_DIR}/autorandr.desktop
79         rm -f ${DESTDIR}/${XDG_AUTOSTART_DIR}/autorandr-kde.desktop
80
81 # Rules for systemd
82 SYSTEMD_UNIT_DIR:=$(shell pkg-config --variable=systemdsystemunitdir systemd 2>/dev/null)
83 ifneq (,$(SYSTEMD_UNIT_DIR))
84 DEFAULT_TARGETS+=systemd
85 endif
86
87 install_systemd:
88         $(if $(SYSTEMD_UNIT_DIR),,$(error SYSTEMD_UNIT_DIR is not defined))
89         mkdir -p ${DESTDIR}/${SYSTEMD_UNIT_DIR}
90         install -m 644 contrib/systemd/autorandr.service ${DESTDIR}/${SYSTEMD_UNIT_DIR}/autorandr.service
91         install -m 644 contrib/systemd/autorandr-lid-listener.service ${DESTDIR}/${SYSTEMD_UNIT_DIR}/autorandr-lid-listener.service
92 ifneq ($(PREFIX),/usr/)
93         sed -i -re 's#/usr/bin/autorandr#$(subst #,\#,${PREFIX})/bin/autorandr#g' ${DESTDIR}/${SYSTEMD_UNIT_DIR}/autorandr.service
94 endif
95         @echo
96         @echo "To activate the systemd units, run this command as root:"
97         @echo "    systemctl daemon-reload"
98         @echo "    systemctl enable autorandr.service"
99         @echo "    systemctl enable autorandr-lid-listener.service"
100         @echo
101
102 uninstall_systemd:
103         $(if $(SYSTEMD_UNIT_DIR),,$(error SYSTEMD_UNIT_DIR is not defined))
104         rm -f ${DESTDIR}/${SYSTEMD_UNIT_DIR}/autorandr.service
105         rm -f ${DESTDIR}/${SYSTEMD_UNIT_DIR}/autorandr-lid-listener.service
106
107 # Rules for pmutils
108 PM_SLEEPHOOKS_DIR:=$(shell pkg-config --variable=pm_sleephooks pm-utils 2>/dev/null)
109 ifneq (,$(PM_SLEEPHOOKS_DIR))
110 ifeq (,$(SYSTEMD_UNIT_DIR))
111 DEFAULT_TARGETS+=pmutils
112 endif
113 endif
114
115 install_pmutils:
116         $(if $(PM_SLEEPHOOKS_DIR),,$(error PM_SLEEPHOOKS_DIR is not defined))
117         mkdir -p ${DESTDIR}/${PM_SLEEPHOOKS_DIR}
118         install -m 755 contrib/pm-utils/40autorandr ${DESTDIR}/${PM_SLEEPHOOKS_DIR}/40autorandr
119 ifneq ($(PREFIX),/usr/)
120         sed -i -re 's#/usr/bin/autorandr#$(subst #,\#,${PREFIX})/bin/autorandr#g' ${DESTDIR}/${PM_SLEEPHOOKS_DIR}/40autorandr
121 endif
122
123 uninstall_pmutils:
124         $(if $(PM_SLEEPHOOKS_DIR),,$(error PM_SLEEPHOOKS_DIR is not defined))
125         rm -f ${DESTDIR}/${PM_SLEEPHOOKS_DIR}/40autorandr
126
127
128 # Rules for udev
129 UDEV_RULES_DIR:=$(shell pkg-config --variable=udevdir udev 2>/dev/null)/rules.d
130 ifneq (/rules.d,$(UDEV_RULES_DIR))
131 DEFAULT_TARGETS+=udev
132 endif
133
134 install_udev:
135         $(if $(UDEV_RULES_DIR),,$(error UDEV_RULES_DIR is not defined))
136         mkdir -p ${DESTDIR}/${UDEV_RULES_DIR}/
137         echo 'ACTION=="change", SUBSYSTEM=="drm", RUN+="$(if $(findstring systemd, $(MAKECMDGOALS)),/bin/systemctl start --no-block autorandr.service,${PREFIX}/bin/autorandr --batch --change --default default)"' > ${DESTDIR}/${UDEV_RULES_DIR}/40-monitor-hotplug.rules
138         @echo
139         @echo "To activate the udev rules, run this command as root:"
140         @echo "    udevadm control --reload-rules"
141         @echo
142
143 uninstall_udev:
144         $(if $(UDEV_RULES_DIR),,$(error UDEV_RULES_DIR is not defined))
145         rm -f ${DESTDIR}/${UDEV_RULES_DIR}/40-monitor-hotplug.rules
146
147 # Rules for manpage
148 MANDIR:=${PREFIX}/share/man/man1
149 DEFAULT_TARGETS+=manpage
150
151 install_manpage:
152         mkdir -p ${DESTDIR}/${MANDIR}
153         cp autorandr.1 ${DESTDIR}/${MANDIR}
154
155 uninstall_manpage:
156         rm -f ${DESTDIR}/${MANDIR}/autorandr.1
157
158 # Rules for launcher
159 LAUNCHER_LDLIBS=$(shell pkg-config --libs pkg-config xcb xcb-randr 2>/dev/null)
160 ifneq (,$(LAUNCHER_LDLIBS))
161 CLEANUP_FILES+=contrib/autorandr_launcher/autorandr-launcher
162 LAUNCHER_CFLAGS=$(shell pkg-config --cflags pkg-config xcb xcb-randr 2>/dev/null)
163 contrib/autorandr_launcher/autorandr-launcher: contrib/autorandr_launcher/autorandr_launcher.c
164         $(CC) $(CFLAGS) $(LAUNCHER_CFLAGS) -o $@ $+ $(LDFLAGS) $(LAUNCHER_LDLIBS) $(LDLIBS)
165
166 install_launcher: contrib/autorandr_launcher/autorandr-launcher
167         mkdir -p ${DESTDIR}${PREFIX}/bin
168         install -m 755 contrib/autorandr_launcher/autorandr-launcher ${DESTDIR}${PREFIX}/bin/autorandr-launcher
169         mkdir -p ${DESTDIR}/${XDG_AUTOSTART_DIR}
170         install -m 644 contrib/etc/xdg/autostart/autorandr-launcher.desktop ${DESTDIR}/${XDG_AUTOSTART_DIR}/autorandr-launcher.desktop
171 ifneq ($(PREFIX),/usr/)
172         sed -i -re 's#/usr/bin/autorandr-launcher#$(subst #,\#,${PREFIX})/bin/autorandr-launcher#g' ${DESTDIR}/${XDG_AUTOSTART_DIR}/autorandr-launcher.desktop
173 endif
174 endif
175
176 uninstall_launcher:
177         rm -f ${DESTDIR}${PREFIX}/bin/autorandr-launcher
178         rm -f ${DESTDIR}/${XDG_AUTOSTART_DIR}/autorandr-launcher.desktop
179
180 TARGETS=$(DEFAULT_TARGETS)
181 install: $(patsubst %,install_%,$(TARGETS))
182 uninstall: $(patsubst %,uninstall_%,$(TARGETS))
183
184 deb:
185         ./contrib/packaging/debian/make_deb.sh
186
187 rpm:
188         spectool -g -R $(RPM_SPEC)
189         rpmbuild -ba $(RPM_SPEC)
190
191 clean:
192         rm -f $(CLEANUP_FILES)