Changeset 57da960
- Timestamp:
- 2011-12-10T22:43:10Z (13 years ago)
- Branches:
- master
- Children:
- 8b39b1a
- Parents:
- 06b5893
- Files:
-
- 3 added
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
Makefile
r06b5893 r57da960 85 85 86 86 install-bin: 87 mkdir -p $(DESTDIR)$( BINDIR)88 install -m 0755 $(OUTFILE) $(DESTDIR)$( BINDIR)/$(OUTFILE)87 mkdir -p $(DESTDIR)$(SBINDIR) 88 install -m 0755 $(OUTFILE) $(DESTDIR)$(SBINDIR)/$(OUTFILE) 89 89 90 90 uninstall-bin: 91 rm -f $(DESTDIR)$( BINDIR)/$(OUTFILE)91 rm -f $(DESTDIR)$(SBINDIR)/$(OUTFILE) 92 92 93 93 install-dev: … … 113 113 -rmdir $(DESTDIR)$(ETCDIR) 114 114 115 install-plugins: 115 install-plugins: install-plugin-otr install-plugin-skype 116 117 install-plugin-otr: 116 118 ifdef OTR_PI 117 119 mkdir -p $(DESTDIR)$(PLUGINDIR) 118 120 install -m 0755 otr.so $(DESTDIR)$(PLUGINDIR) 119 121 endif 122 123 install-plugin-skype: 120 124 ifdef SKYPE_PI 121 125 mkdir -p $(DESTDIR)$(PLUGINDIR) 122 126 install -m 0755 skype.so $(DESTDIR)$(PLUGINDIR) 123 mkdir -p $(DESTDIR)$(ETCDIR)/../skyped 127 mkdir -p $(DESTDIR)$(ETCDIR)/../skyped $(DESTDIR)$(BINDIR) 124 128 install -m 0644 $(SRCDIR)protocols/skype/skyped.cnf $(DESTDIR)$(ETCDIR)/../skyped/skyped.cnf 125 129 install -m 0644 $(SRCDIR)protocols/skype/skyped.conf.dist $(DESTDIR)$(ETCDIR)/../skyped/skyped.conf 126 130 install -m 0755 $(SRCDIR)protocols/skype/skyped.py $(DESTDIR)$(BINDIR)/skyped 131 make -C protocols/skype install-doc 127 132 endif 128 133 -
configure
r06b5893 r57da960 9 9 10 10 prefix='/usr/local/' 11 bindir='$prefix/sbin/' 11 bindir='$prefix/bin/' 12 sbindir='$prefix/sbin/' 12 13 etcdir='$prefix/etc/bitlbee/' 13 14 mandir='$prefix/share/man/' … … 59 60 --prefix=... Directories to put files in $prefix 60 61 --bindir=... $bindir 62 --sbindir=... $sbindir 61 63 --etcdir=... $etcdir 62 64 --mandir=... $mandir … … 99 101 # Expand $prefix and get rid of double slashes 100 102 bindir=`eval echo "$bindir/" | sed 's/\/\{1,\}/\//g'` 103 sbindir=`eval echo "$sbindir/" | sed 's/\/\{1,\}/\//g'` 101 104 etcdir=`eval echo "$etcdir/" | sed 's/\/\{1,\}/\//g'` 102 105 mandir=`eval echo "$mandir/" | sed 's/\/\{1,\}/\//g'` … … 117 120 PREFIX=$prefix 118 121 BINDIR=$bindir 122 SBINDIR=$sbindir 119 123 ETCDIR=$etcdir 120 124 MANDIR=$mandir -
debian/changelog
r06b5893 r57da960 1 bitlbee (3.0.4-0) unstable; urgency=low 2 3 * New upstream release. 4 * Added bitlbee-plugin-skype and skyped packages, now part of BitlBee 5 instead of a separate package. 6 * Fixed dependencies of bitlbee-plugin-otr package to not break with 7 binary MTUs. (Closes: #651612) 8 9 -- Wilmer van der Gaast <wilmer@gaast.net> Sat, 10 Dec 2011 22:42:08 +0000 10 1 11 bitlbee (3.0.3-1) unstable; urgency=low 2 12 -
debian/control
r06b5893 r57da960 61 61 Package: bitlbee-plugin-otr 62 62 Architecture: any 63 Depends: ${misc:Depends}, ${shlibs:Depends}, bitlbee ( = ${bee:Version}) | bitlbee-libpurple (= ${bee:Version}), bitlbee-common (= ${bee:Version})63 Depends: ${misc:Depends}, ${shlibs:Depends}, bitlbee (>= ${bee:Version}) | bitlbee-libpurple (>= ${bee:Version}), bitlbee (<< ${bee:Version}.1~) | bitlbee-libpurple (<< ${bee:Version}.1~) 64 64 Description: An IRC to other chat networks gateway (OTR plugin) 65 65 This program can be used as an IRC server which forwards everything you … … 69 69 This package contains a plugin that adds support for Off-The-Record 70 70 encryption of instant messages. 71 72 Package: bitlbee-plugin-skype 73 Architecture: any 74 Depends: ${shlibs:Depends}, ${misc:Depends}, bitlbee (>= ${bee:Version}) | bitlbee-libpurple (>= ${bee:Version}), bitlbee (<< ${bee:Version}.1~) | bitlbee-libpurple (<< ${bee:Version}.1~) 75 Recommends: skyped 76 Description: An IRC to other chat networks gateway (Skype plugin) 77 This program can be used as an IRC server which forwards everything you 78 say to people on other chat networks: Jabber (which includes Google Talk 79 and Facebook Chat), ICQ, AIM, MSN, Yahoo! and Twitter/Identica/Status.net. 80 . 81 This package contains a plugin that adds support for the Skype IM network. 82 You need to download and install the Skype client for this to work. 83 84 Package: skyped 85 Architecture: any 86 Depends: ${shlibs:Depends}, ${misc:Depends}, python (>= 2.5), python-gnutls, python-skype (>=0.9.28.7) 87 Recommends: skype 88 Description: Daemon to control Skype remotely 89 Daemon to control the GUI Skype client. Currently required to control Skype 90 from the BitlBee IRC2IM gateway. Skyped and Skype can run on a different 91 host than the BitlBee server, the communication is encrypted. 92 . 93 You need to download and install the Skype client for this to work. -
debian/rules
r06b5893 r57da960 11 11 BITLBEE_LIBPURPLE ?= 1 12 12 BITLBEE_OTR ?= plugin 13 BITLBEE_SKYPE ?= plugin 13 14 BITLBEE_CONFIGURE_FLAGS ?= 14 15 DEBUG ?= 0 … … 27 28 endif 28 29 30 ifneq ($(BITLBEE_SKYPE),plugin) 31 DH_OPTIONS += -Nbitlbee-plugin-skype -Nskyped 32 endif 33 29 34 build: build-stamp 30 35 build-stamp: … … 32 37 33 38 mkdir -p debian/build-native 34 ROOT=$$PWD; cd debian/build-native; $(BITLBEE_CONFIGURE_VERSION) $$ROOT/configure --debug=$(DEBUG) --prefix=/usr --etcdir=/etc/bitlbee --events=libevent --otr=$(BITLBEE_OTR) $(BITLBEE_CONFIGURE_FLAGS)39 ROOT=$$PWD; cd debian/build-native; $(BITLBEE_CONFIGURE_VERSION) $$ROOT/configure --debug=$(DEBUG) --prefix=/usr --etcdir=/etc/bitlbee --events=libevent --otr=$(BITLBEE_OTR) --skype=$(BITLBEE_SKYPE) $(BITLBEE_CONFIGURE_FLAGS) 35 40 $(MAKE) -C debian/build-native 36 41 … … 64 69 $(MAKE) -C debian/build-native install-etc install-doc DESTDIR=`pwd`/debian/bitlbee-common 65 70 $(MAKE) -C debian/build-native install-dev DESTDIR=`pwd`/debian/bitlbee-dev 66 $(MAKE) -C debian/build-native install-plugins DESTDIR=`pwd`/debian/bitlbee-plugin-otr 71 $(MAKE) -C debian/build-native install-plugin-otr DESTDIR=`pwd`/debian/bitlbee-plugin-otr 72 $(MAKE) -C debian/build-native install-plugin-skype DESTDIR=`pwd`/debian/skyped 73 74 mkdir -p debian/bitlbee-plugin-skype/usr 75 mv debian/skyped/usr/lib debian/bitlbee-plugin-skype/usr 67 76 68 77 ifeq ($(BITLBEE_LIBPURPLE),1) -
protocols/skype/Makefile
r06b5893 r57da960 1 1 -include ../../Makefile.settings 2 2 ifdef SRCDIR 3 SRCDIR := $(SRCDIR)protoc ls/skype/3 SRCDIR := $(SRCDIR)protocols/skype/ 4 4 endif 5 5 … … 23 23 all: $(LIBS) $(MANPAGES) 24 24 25 skype.$(SHARED_EXT): skype.c config.mak25 skype.$(SHARED_EXT): $(SRCDIR)skype.c config.mak 26 26 ifeq ($(BITLBEE),yes) 27 $(CC) $(CFLAGS) $(SHARED_FLAGS) -o skype.$(SHARED_EXT) skype.c $(LDFLAGS)27 $(CC) $(CFLAGS) $(SHARED_FLAGS) -o skype.$(SHARED_EXT) $(SRCDIR)skype.c $(LDFLAGS) 28 28 endif 29 29 … … 47 47 endif 48 48 49 client: client.c49 client: $(SRCDIR)client.c 50 50 51 51 autogen: configure.ac … … 57 57 58 58 distclean: clean 59 rm -f config.log config.mak config.status 59 rm -f config.log config.mak config.status skyped.1 60 60 61 61 autoclean: distclean … … 103 103 git shortlog -s -n |sed 's/.*\t//'> AUTHORS 104 104 105 %.1: %.txtasciidoc.conf106 a2x --asciidoc-opts="-f asciidoc.conf" \105 %.1: $(SRCDIR)%.txt $(SRCDIR)asciidoc.conf 106 a2x --asciidoc-opts="-f $(SRCDIR)asciidoc.conf" \ 107 107 -a bs_version=$(VERSION) -a bs_date=$(DATE) -f manpage $<
Note: See TracChangeset
for help on using the changeset viewer.