- Timestamp:
- 2011-12-10T22:43:10Z (13 years ago)
- Branches:
- master
- Children:
- 8b39b1a
- Parents:
- 06b5893
- Location:
- debian
- Files:
-
- 3 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
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)
Note: See TracChangeset
for help on using the changeset viewer.