diff options
-rw-r--r-- | .bzrignore | 7 | ||||
-rw-r--r-- | Makefile.am | 2 | ||||
-rw-r--r-- | debian/changelog | 6 | ||||
-rw-r--r-- | po/POTFILES.in | 2 | ||||
-rw-r--r-- | src/Makefile.am | 13 | ||||
-rw-r--r-- | src/datetime-service.c | 7 |
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; +} |