aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTed Gould <ted@gould.cx>2010-02-25 12:43:10 -0600
committerTed Gould <ted@gould.cx>2010-02-25 12:43:10 -0600
commit61ce438fbf8ccd5e4930de82a7971d610eb84d48 (patch)
treeebfbec5ac52e21cf8b64d84617d3b2852015478e
parent9646023abbcc4f2914fa513118a9de8c3e9374c0 (diff)
parent8485bb2d3922cad9bd0fd22faeb42a1ee5ffc741 (diff)
downloadayatana-indicator-datetime-61ce438fbf8ccd5e4930de82a7971d610eb84d48.tar.gz
ayatana-indicator-datetime-61ce438fbf8ccd5e4930de82a7971d610eb84d48.tar.bz2
ayatana-indicator-datetime-61ce438fbf8ccd5e4930de82a7971d610eb84d48.zip
Initial Upstream Release
-rw-r--r--.bzrignore7
-rw-r--r--Makefile.am2
-rw-r--r--debian/changelog6
-rw-r--r--po/POTFILES.in2
-rw-r--r--src/Makefile.am13
-rw-r--r--src/datetime-service.c7
6 files changed, 37 insertions, 0 deletions
diff --git a/.bzrignore b/.bzrignore
new file mode 100644
index 0000000..ecb1c28
--- /dev/null
+++ b/.bzrignore
@@ -0,0 +1,7 @@
+compile
+m4
+src/libdatetime.la
+src/libdatetime_la-indicator-datetime.lo
+src/indicator-datetime-service
+po/indicator-datetime.pot
+indicator-datetime-[0-9].[0-9].[0-9].tar.gz
diff --git a/Makefile.am b/Makefile.am
index a96836c..4b2bca4 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -7,6 +7,8 @@ SUBDIRS = \
DISTCHECK_CONFIGURE_FLAGS = --enable-localinstall
+EXTRA_DIST = autogen.sh
+
dist-hook:
@if test -d "$(top_srcdir)/.bzr"; \
then \
diff --git a/debian/changelog b/debian/changelog
index 9f60c66..8e0ed97 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+indicator-datetime (0.0.1-0ubuntu1) UNRELEASED; urgency=low
+
+ * Initial Upstream Release
+
+ -- Ted Gould <ted@ubuntu.com> Thu, 25 Feb 2010 12:42:50 -0600
+
indicator-datetime (0.0.1~r2-0ubuntu3) lucid; urgency=low
* debian/control: Adding libdbusmenu-gtk as a build dep
diff --git a/po/POTFILES.in b/po/POTFILES.in
index e69de29..41324a7 100644
--- a/po/POTFILES.in
+++ b/po/POTFILES.in
@@ -0,0 +1,2 @@
+src/indicator-datetime.c
+src/datetime-service.c
diff --git a/src/Makefile.am b/src/Makefile.am
index 390f89a..bf9093d 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -1,4 +1,15 @@
+libexec_PROGRAMS = indicator-datetime-service
+
+indicator_datetime_service_SOURCES = \
+ datetime-service.c
+indicator_datetime_service_CFLAGS = \
+ -Wall \
+ -Werror \
+ $(INDICATOR_CFLAGS)
+indicator_datetime_service_LDADD = \
+ $(INDICATOR_LIBS)
+
datetimelibdir = $(INDICATORDIR)
datetimelib_LTLIBRARIES = libdatetime.la
libdatetime_la_SOURCES = \
@@ -11,3 +22,5 @@ libdatetime_la_LIBADD = \
libdatetime_la_LDFLAGS = \
-module \
-avoid-version
+
+EXTRA_DIST = $(libdatetime_la_SOURCES)
diff --git a/src/datetime-service.c b/src/datetime-service.c
new file mode 100644
index 0000000..63590c7
--- /dev/null
+++ b/src/datetime-service.c
@@ -0,0 +1,7 @@
+
+int
+main (int argc, char ** argv)
+{
+
+ return 0;
+}