summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDirk-Jan C. Binnema <djcb@djcbsoftware.nl>2010-11-15 08:43:00 +0200
committerDirk-Jan C. Binnema <djcb@djcbsoftware.nl>2010-11-15 08:43:00 +0200
commit45c95b06f330c6f57a0d552671406c384ed7fdb9 (patch)
tree2a299ff3fb1250de02cb65c6a104d1f2d55abc53
parent9df9c2b36f46b59e7d364848e5e208d3593cee7f (diff)
* move mug/ to toys/mug
-rw-r--r--Makefile.am8
-rw-r--r--configure.ac11
-rw-r--r--toys/Makefile.am25
-rw-r--r--toys/mug/Makefile.am (renamed from mug/Makefile.am)2
-rw-r--r--toys/mug/TODO (renamed from mug/TODO)0
-rw-r--r--toys/mug/mug-msg-list-view.c (renamed from mug/mug-msg-list-view.c)0
-rw-r--r--toys/mug/mug-msg-list-view.h (renamed from mug/mug-msg-list-view.h)0
-rw-r--r--toys/mug/mug-msg-view.c (renamed from mug/mug-msg-view.c)0
-rw-r--r--toys/mug/mug-msg-view.h (renamed from mug/mug-msg-view.h)0
-rw-r--r--toys/mug/mug-query-bar.c (renamed from mug/mug-query-bar.c)0
-rw-r--r--toys/mug/mug-query-bar.h (renamed from mug/mug-query-bar.h)0
-rw-r--r--toys/mug/mug-shortcuts.c (renamed from mug/mug-shortcuts.c)0
-rw-r--r--toys/mug/mug-shortcuts.h (renamed from mug/mug-shortcuts.h)0
-rw-r--r--toys/mug/mug.cc (renamed from mug/mug.cc)0
-rw-r--r--toys/mug/mug.desktop.in (renamed from mug/mug.desktop.in)0
-rw-r--r--toys/mug/mug.svg (renamed from mug/mug.svg)0
16 files changed, 33 insertions, 13 deletions
diff --git a/Makefile.am b/Makefile.am
index 499b99d..d1ec008 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -16,13 +16,7 @@
include $(top_srcdir)/gtest.mk
-SUBDIRS=man src contrib
-
-# build if there is some gtk available
-if HAVE_GTK
-SUBDIRS += mug
-endif
-
+SUBDIRS=man src contrib toys
# so we can say 'make test'
check: test cleanupnote
diff --git a/configure.ac b/configure.ac
index c53cdc7..71099b4 100644
--- a/configure.ac
+++ b/configure.ac
@@ -153,8 +153,9 @@ AC_CONFIG_FILES([
Makefile
src/Makefile
src/tests/Makefile
-mug/Makefile
-mug/mug.desktop
+toys/Makefile
+toys/mug/Makefile
+toys/mug/mug.desktop
man/Makefile
contrib/Makefile
])
@@ -165,9 +166,9 @@ echo "mu configuration is complete."
echo "-----------------------------"
echo
-echo "Note: the Xapian database is no longer stored as <muhome>/xapian-0.6"
-echo "but instead simply as <muhome>/xapian. You can remove the older"
-echo "<muhome>/xapian-0.6 directory to save some disk space"
+echo "Note: since version 0.7, the Xapian database is no longer stored as "
+echo "<muhome>/xapian-0.6 but instead simply as <muhome>/xapian. You can "
+echo "remove the olde <muhome>/xapian-0.6 directory to save some disk space"
echo
echo "type 'make' to build mu, or 'make check' to run the unit tests."
diff --git a/toys/Makefile.am b/toys/Makefile.am
new file mode 100644
index 0000000..22f6fc0
--- /dev/null
+++ b/toys/Makefile.am
@@ -0,0 +1,25 @@
+## Copyright (C) 2008-2010 Dirk-Jan C. Binnema <djcb@djcbsoftware.nl>
+##
+## This program is free software; you can redistribute it and/or modify
+## it under the terms of the GNU General Public License as published by
+## the Free Software Foundation; either version 3 of the License, or
+## (at your option) any later version.
+##
+## This program is distributed in the hope that it will be useful,
+## but WITHOUT ANY WARRANTY; without even the implied warranty of
+## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+## GNU General Public License for more details.
+##
+## You should have received a copy of the GNU General Public License
+## along with this program; if not, write to the Free Software Foundation,
+## Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+
+include $(top_srcdir)/gtest.mk
+
+SUBDIRS=
+
+# build if there is some gtk available
+if HAVE_GTK
+SUBDIRS += mug
+endif
+
diff --git a/mug/Makefile.am b/toys/mug/Makefile.am
index 337c5ab..a1c7360 100644
--- a/mug/Makefile.am
+++ b/toys/mug/Makefile.am
@@ -56,7 +56,7 @@ icondir= \
$(datarootdir)/icons
icon_DATA= \
- ${top_srcdir}/mug/mug.svg
+ ${top_srcdir}/toys/mug/mug.svg
desktopdir= \
$(datarootdir)/applications
diff --git a/mug/TODO b/toys/mug/TODO
index 745f4e8..745f4e8 100644
--- a/mug/TODO
+++ b/toys/mug/TODO
diff --git a/mug/mug-msg-list-view.c b/toys/mug/mug-msg-list-view.c
index 0eb1457..0eb1457 100644
--- a/mug/mug-msg-list-view.c
+++ b/toys/mug/mug-msg-list-view.c
diff --git a/mug/mug-msg-list-view.h b/toys/mug/mug-msg-list-view.h
index 755cc5e..755cc5e 100644
--- a/mug/mug-msg-list-view.h
+++ b/toys/mug/mug-msg-list-view.h
diff --git a/mug/mug-msg-view.c b/toys/mug/mug-msg-view.c
index 9bb4090..9bb4090 100644
--- a/mug/mug-msg-view.c
+++ b/toys/mug/mug-msg-view.c
diff --git a/mug/mug-msg-view.h b/toys/mug/mug-msg-view.h
index 88380ff..88380ff 100644
--- a/mug/mug-msg-view.h
+++ b/toys/mug/mug-msg-view.h
diff --git a/mug/mug-query-bar.c b/toys/mug/mug-query-bar.c
index f925c73..f925c73 100644
--- a/mug/mug-query-bar.c
+++ b/toys/mug/mug-query-bar.c
diff --git a/mug/mug-query-bar.h b/toys/mug/mug-query-bar.h
index 2c954cf..2c954cf 100644
--- a/mug/mug-query-bar.h
+++ b/toys/mug/mug-query-bar.h
diff --git a/mug/mug-shortcuts.c b/toys/mug/mug-shortcuts.c
index 808b2fc..808b2fc 100644
--- a/mug/mug-shortcuts.c
+++ b/toys/mug/mug-shortcuts.c
diff --git a/mug/mug-shortcuts.h b/toys/mug/mug-shortcuts.h
index 16970fc..16970fc 100644
--- a/mug/mug-shortcuts.h
+++ b/toys/mug/mug-shortcuts.h
diff --git a/mug/mug.cc b/toys/mug/mug.cc
index f9316f6..f9316f6 100644
--- a/mug/mug.cc
+++ b/toys/mug/mug.cc
diff --git a/mug/mug.desktop.in b/toys/mug/mug.desktop.in
index 8a60306..8a60306 100644
--- a/mug/mug.desktop.in
+++ b/toys/mug/mug.desktop.in
diff --git a/mug/mug.svg b/toys/mug/mug.svg
index 926deb5..926deb5 100644
--- a/mug/mug.svg
+++ b/toys/mug/mug.svg