1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89
|
#!/usr/bin/make -f
ENABLED_PLUGINS = "\
album,\
autoprofile,\
autoreply,\
bash,\
blistops,\
capsnot,\
colorize,\
convbadger,\
dewysiwygification,\
dice,\
difftopic,\
eight_ball,\
enhancedhist,\
flip,\
gRIM,\
google,\
groupmsg,\
highlight,\
icon-override,\
ignore,\
infopane,\
irchelper,\
irc-more,\
irssi,\
lastseen,\
listhandler,\
listlog,\
mystatusbox,\
ning,\
napster,\
nicksaid,\
okcupid,\
oldlogger,\
omegle,\
plonkers,\
schedule,\
sepandtab,\
simfix,\
slashexec,\
snpp,\
splitter,\
sslinfo,\
switchspell,\
timelog,\
translate,\
xchat-chats,\
xmppprio"
# These plugins are not built:
# awaynotify
# bit
# buddytime
# chronic
# findip
# gntsmartear
# gtkbuddytime
# gtksmartear
# hideconv
# ignorance
# msglen
# nomobility
# showoffline
# smartear
# stocker
# stress
# talkfilters
# xmmsremote
empty :=
space := $(empty) $(empty)
%:
dh $@ --parallel --with autoreconf
override_dh_auto_configure:
dh_auto_configure -- --libdir=\$${prefix}/lib --with-plugins=$(subst $(space),,$(ENABLED_PLUGINS))
override_dh_auto_install:
dh_auto_install
# we don't need the .la files
rm $(CURDIR)/debian/pidgin-plugin-pack/usr/lib/pidgin/*.la
rm $(CURDIR)/debian/pidgin-plugin-pack/usr/lib/purple-2/*.la
override_dh_makeshlibs:
# don't call as plugins are private libraries
|