changeset 3c8664e9becb in /home/hg/repos/gajim
details:http://hg.gajim.org/gajim?cmd=changeset;node=3c8664e9becb
description: add plugins stuff to build system
diffstat:
Makefile.am | 2 +-
configure.ac | 5 +++++
src/Makefile.am | 3 ++-
3 files changed, 8 insertions(+), 2 deletions(-)
diffs (59 lines):
diff -r 43bc11282576 -r 3c8664e9becb Makefile.am
--- a/Makefile.am Wed Jul 28 21:00:39 2010 +0200
+++ b/Makefile.am Thu Jul 29 10:10:06 2010 +0200
@@ -1,4 +1,4 @@
-SUBDIRS = src data po icons
+SUBDIRS = src data plugins po icons
ACLOCAL_AMFLAGS = -I m4
diff -r 43bc11282576 -r 3c8664e9becb configure.ac
--- a/configure.ac Wed Jul 28 21:00:39 2010 +0200
+++ b/configure.ac Thu Jul 29 10:10:06 2010 +0200
@@ -65,14 +65,17 @@
instead of DATADIR/gajim/src.])]
,
AC_SUBST([gajim_srcdir], [\${pkgpythondir}])
+AC_SUBST([gajim_pluginsdir], [\${pkgpythondir}])
,
AC_SUBST([gajim_srcdir], [\${datadir}/\${PACKAGE}/src])
+AC_SUBST([gajim_pluginsdir], [\${datadir}/\${PACKAGE}/plugins])
)
AS_AC_EXPAND(GAJIM_SRCDIR, "${gajim_srcdir}")
AS_AC_EXPAND(PKGDATADIR, "${datadir}/${PACKAGE}")
AS_AC_EXPAND(DOCDIR, "${docdir}")
AS_AC_EXPAND(LOCALEDIR, "${localedir}")
+AS_AC_EXPAND(GAJIM_PLUGINSDIR, "${gajim_pluginsdir}")
AC_SUBST(VERSION)
AC_SUBST(PACKAGE)
@@ -94,6 +97,7 @@
scripts/gajim-remote:scripts/gajim.in
scripts/gajim-history-manager:scripts/gajim.in
po/Makefile.in
+ plugins/Makefile
])
AC_OUTPUT
echo "
@@ -101,6 +105,7 @@
Installation:
Prefix ........... ${prefix}
Python modules ... ${GAJIM_SRCDIR}
+ Plugins .. ....... ${GAJIM_PLUGINSDIR}
Documentation .... ${DOCDIR}
Others ........... ${PKGDATADIR}
*****************************"
diff -r 43bc11282576 -r 3c8664e9becb src/Makefile.am
--- a/src/Makefile.am Wed Jul 28 21:00:39 2010 +0200
+++ b/src/Makefile.am Thu Jul 29 10:10:06 2010 +0200
@@ -10,7 +10,8 @@
$(srcdir)/common/xmpp/*.py \
$(srcdir)/common/zeroconf/*.py \
$(srcdir)/command_system/*.py \
- $(srcdir)/command_system/implementation/*.py
+ $(srcdir)/command_system/implementation/*.py \
+ $(srcdir)/plugins/*.py
dist-hook:
rm -f $(distdir)/ipython_view.py
_______________________________________________
Commits mailing list
[email protected]
http://lists.gajim.org/cgi-bin/listinfo/commits