aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authordequis <dx@dxzone.com.ar>2018-03-11 16:33:55 -0300
committerdequis <dx@dxzone.com.ar>2018-03-11 16:33:55 -0300
commita949b43ed657154d4ff8492bbdb16202a1a9f22d (patch)
treeda8fcbf57e0abb4af60ceccf15b1b2358c9cdd74 /Makefile
parent8167346dd5d87b0bc53c7e396577e19e586954fe (diff)
Remove old skype plugin. Use the skypeweb purple plugin instead.
RIP This plugin relied on the skype linux client, which doesn't work anymore. During login it just does exit(0) for mysterious reasons. I guess that's the server trying to say that it's not supported. This is officially dead now after a few years of kinda-almost-working.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile28
1 files changed, 2 insertions, 26 deletions
diff --git a/Makefile b/Makefile
index 60e6398c..ab439fb9 100644
--- a/Makefile
+++ b/Makefile
@@ -18,7 +18,7 @@ OUTFILE = bitlbee
# Expansion of variables
subdirobjs = $(foreach dir,$(subdirs),$(dir)/$(dir).o)
-all: $(OUTFILE) $(OTR_PI) $(SKYPE_PI) doc systemd
+all: $(OUTFILE) $(OTR_PI) doc systemd
doc:
ifdef DOC
@@ -52,9 +52,6 @@ Makefile.settings:
clean: $(subdirs)
rm -f *.o $(OUTFILE) core utils/bitlbeed init/bitlbee*.service
$(MAKE) -C tests clean
-ifdef SKYPE_PI
- $(MAKE) -C protocols/skype clean
-endif
distclean: clean $(subdirs)
rm -rf .depend
@@ -78,17 +75,11 @@ install-doc:
ifdef DOC
$(MAKE) -C doc install
endif
-ifdef SKYPE_PI
- $(MAKE) -C protocols/skype install-doc
-endif
uninstall-doc:
ifdef DOC
$(MAKE) -C doc uninstall
endif
-ifdef SKYPE_PI
- $(MAKE) -C protocols/skype uninstall-doc
-endif
install-bin:
mkdir -p $(DESTDIR)$(SBINDIR)
@@ -127,7 +118,7 @@ uninstall-etc:
rm -f $(DESTDIR)$(ETCDIR)/bitlbee.conf
-rmdir $(DESTDIR)$(ETCDIR)
-install-plugins: install-plugin-otr install-plugin-skype
+install-plugins: install-plugin-otr
install-plugin-otr:
ifdef OTR_PI
@@ -135,17 +126,6 @@ ifdef OTR_PI
$(INSTALL) -m 0755 otr.so $(DESTDIR)$(PLUGINDIR)
endif
-install-plugin-skype:
-ifdef SKYPE_PI
- mkdir -p $(DESTDIR)$(PLUGINDIR)
- $(INSTALL) -m 0755 skype.so $(DESTDIR)$(PLUGINDIR)
- mkdir -p $(DESTDIR)$(ETCDIR)/../skyped $(DESTDIR)$(BINDIR)
- $(INSTALL) -m 0644 $(_SRCDIR_)protocols/skype/skyped.cnf $(DESTDIR)$(ETCDIR)/../skyped/skyped.cnf
- $(INSTALL) -m 0644 $(_SRCDIR_)protocols/skype/skyped.conf.dist $(DESTDIR)$(ETCDIR)/../skyped/skyped.conf
- $(INSTALL) -m 0755 $(_SRCDIR_)protocols/skype/skyped.py $(DESTDIR)$(BINDIR)/skyped
- $(MAKE) -C protocols/skype install-doc
-endif
-
systemd:
ifdef SYSTEMDSYSTEMUNITDIR
mkdir -p init
@@ -176,10 +156,6 @@ $(OTR_PI): %.so: $(_SRCDIR_)%.c
@echo '*' Building plugin $@
$(VERBOSE) $(CC) $(CFLAGS) -fPIC -shared $(LDFLAGS) $< -o $@ $(OTRFLAGS)
-$(SKYPE_PI): $(_SRCDIR_)protocols/skype/skype.c
- @echo '*' Building plugin skype
- $(VERBOSE) $(CC) $(CFLAGS) $(LDFLAGS) $(SKYPEFLAGS) $< -o $@
-
$(objects): %.o: $(_SRCDIR_)%.c
@echo '*' Compiling $<
$(VERBOSE) $(CC) -c $(CFLAGS) $(CFLAGS_BITLBEE) $< -o $@