Add getter and setter for account->perm_deny. Patch by Stephen Whitmore.
[pidgin-git.git] / Makefile.am
blob599f87029d75f2ce592900cdc5a116dd22ccc162
1 EXTRA_DIST = \
2                 COPYRIGHT \
3                 ChangeLog.API \
4                 ChangeLog.win32 \
5                 Doxyfile.in \
6                 HACKING \
7                 Makefile.mingw \
8                 PLUGIN_HOWTO \
9                 README.MTN \
10                 README.mingw \
11                 config.h.mingw \
12                 doxy2devhelp.xsl \
13                 fix-casts.sh \
14                 gaim.pc.in \
15                 gaim-uninstalled.pc.in \
16                 intltool-extract.in \
17                 intltool-merge.in \
18                 intltool-update.in \
19                 package_revision.h \
20                 pidgin.apspec.in \
21                 pidgin.spec.in \
22                 pidgin.desktop.in \
23                 po/Makefile.mingw \
24                 valgrind-suppressions
26 noinst_HEADERS = config.h package_revision.h
28 dist-hook: pidgin.spec
29         cp pidgin.spec $(distdir)
30         rm $(distdir)/config.h
32 distcheck-hook: libpurple/plugins/perl/common/Purple.pm pidgin/plugins/perl/common/Pidgin.pm
33 #       cp libpurple/plugins/perl/common/Gaim.pm $(distdir)/libpurple/plugins/perl/common
35 commit-check:
36         (cd po ; intltool-update -m 2>&1 | grep -v '^mismatched quotes.*\.py$$' | sed "s|current directory|po directory|" | grep . ; if [ $$? = 0 ] ; then exit 1 ; else exit 0 ; fi)
37         LC_ALL=C sort -c -t/ -u po/POTFILES.in
38         LC_ALL=C sort -c -t/ -u po/POTFILES.skip
39         iconv -f utf8 -t utf8 COPYRIGHT | cmp COPYRIGHT -
41 version-check: commit-check
42 # We don't want to release development versions.
43         test x`echo $(PACKAGE_VERSION) | grep dev` = x
45 # Make sure there is a NEWS entry for this version
46         head NEWS | grep "^$(PACKAGE_VERSION) (`date +%m/%d/%Y`):$$" > /dev/null
48 # Ensure NEWS has no spaces at the start of a line.
49 # Using spaces instead of tabs there is a common mistake.
50         test x`grep "^ " NEWS` = x
52 # When doing a new minor (or major) release (X.Y.0), there must be a section in
53 # ChangeLog.API.
54         echo $(PACKAGE_VERSION) | grep -v "^[0-9]\+\.[0-9]\+\.0$$" >/dev/null || head ChangeLog.API | grep "^version $(PACKAGE_VERSION) (`date +%m/%d/%Y`):$$" >/dev/null
56 # For all releases, check the ChangeLogs.
57         head ChangeLog | grep "^version $(PACKAGE_VERSION) (`date +%m/%d/%Y`):$$" >/dev/null
58         head ChangeLog.win32 | grep "^version $(PACKAGE_VERSION) (`date +%m/%d/%Y`):$$" >/dev/null
59         head po/ChangeLog | grep "^version $(PACKAGE_VERSION)$$" >/dev/null
61 # Ensure we're working from a tag...
62         test x`mtn automate select t:v$(PACKAGE_VERSION)` = x`mtn automate get_base_revision_id`
63 # ... and have no changes in the working copy.
64         test "x`mtn diff | grep -v '^#'`" = x
66 release: version-check distcheck packages
68 packages:
69         gpg -ab pidgin-$(PACKAGE_VERSION).tar.gz
70         gpg -ab pidgin-$(PACKAGE_VERSION).tar.bz2
71         gpg --verify pidgin-$(PACKAGE_VERSION).tar.gz.asc pidgin-$(PACKAGE_VERSION).tar.gz
72         gpg --verify pidgin-$(PACKAGE_VERSION).tar.bz2.asc pidgin-$(PACKAGE_VERSION).tar.bz2
74 if INSTALL_I18N
75 PO_DIR=po
76 DESKTOP_FILE=pidgin.desktop
78 if ENABLE_GTK
79 appsdir = $(datadir)/applications
80 apps_in_files = pidgin.desktop.in
81 apps_DATA = $(apps_in_files:.desktop.in=.desktop)
82 @INTLTOOL_DESKTOP_RULE@
83 GTK_DIR=pidgin
84 endif #ENABLE_GTK
86 endif #INSTALL_I18N
88 if ENABLE_GNT
89 GNT_DIR=finch
90 endif
92 # This is phony, so that we always try to rebuild it.  If it succeeds
93 # in calculating changes, it produces its target; otherwise, its
94 # target does not exist.
95 .PHONY: package_revision_raw.txt
96 # if both attempts fail, then we need to remove the empty file that >
97 # creates, and also make sure that the shell command exits
98 # successfully; the rm -f ensures both
99 package_revision_raw.txt:
100         REAL_BLDDIR=$$PWD/$(top_builddir); \
101         (cd $(srcdir) && $$REAL_BLDDIR/mtn --root=. automate get_base_revision_id) 2>/dev/null >$@ \
102         || (cd $(srcdir) && mtn --root=. automate get_base_revision_id) 2>/dev/null >$@ \
103         || rm -f $@
104 package_revision.h: package_revision_raw.txt
105         if test -f $<; then \
106           echo "#define REVISION \"`cat $<`\"" > $@; \
107         fi
108         if test ! -f $@ -a -f $(srcdir)/$@; then \
109           cp $(srcdir)/$@ $@; \
110         fi
111         test -f $@ || echo "#define REVISION \"unknown\"" > $@
113 # This is a magic directive copy-and-pasted, then modified, from the
114 # automake 1.9 manual, section 13.4, "Checking the distribution".
115 # Normally, 'distcheck' does a clean build, and then afterwards runs
116 # 'distclean', and 'distclean' is supposed to remove everything that
117 # the build created.  However, we have some targets (package_revision.txt)
118 # that we distribute, but then always attempt to rebuild optimistically, and
119 # then if that fails fall back on the distributed versions.  This
120 # means that 'distclean' should _not_ remove those files, since they
121 # are distributed, yet building the package will generate those files,
122 # thus automake thinks that 'distclean' _should_ remove those files,
123 # and 'distcheck' gets cranky if we don't.  So basically what this
124 # line does is tell 'distcheck' to shut up and ignore those two files.
125 distcleancheck_listfiles = find . -type f -a ! -name package_revision.h
127 SUBDIRS = . libpurple doc $(GNT_DIR) $(GTK_DIR) m4macros $(PO_DIR) share/ca-certs share/sounds
129 docs: Doxyfile
130 if HAVE_DOXYGEN
131         @echo "Running doxygen..."
132         @doxygen
133 if HAVE_XSLTPROC
134         @echo "Generating devhelp index..."
135         @xsltproc $(top_srcdir)/doxy2devhelp.xsl doc/xml/index.xml > doc/html/pidgin.devhelp
136         @echo "(Symlink doc/html to ~/.local/share/gtk-doc/html/pidgin to make devhelp see the documentation)"
137 else
138         @echo "Not generating devhelp index: xsltproc was not found by configure"
139 endif
140 else
141         @echo "doxygen was not found during configure.  Unable to build documentation."
142         @echo;
143 endif
145 # perl's MakeMaker uninstall foo doesn't work well with DESTDIR set, which
146 # breaks "make distcheck" unless we ignore perl things
148 distuninstallcheck_listfiles = \
149         find . -type f -print | grep -v perl | grep -v Purple.3pm
151 DISTCLEANFILES= $(DESKTOP_FILE) libpurple/gconf/purple.schemas intltool-extract \
152                         intltool-merge intltool-update