diff options
-rw-r--r-- | Makefile.am | 3 | ||||
-rw-r--r-- | configure.ac | 90 | ||||
-rw-r--r-- | data/Makefile.am | 1 | ||||
-rw-r--r-- | src/Makefile.am | 1 |
4 files changed, 95 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am new file mode 100644 index 0000000..77e3b2c --- /dev/null +++ b/Makefile.am @@ -0,0 +1,3 @@ +SUBDIRS = data \ + src + diff --git a/configure.ac b/configure.ac new file mode 100644 index 0000000..fa9f69c --- /dev/null +++ b/configure.ac @@ -0,0 +1,90 @@ + +AC_INIT(indicator-custom, 0.0.1, ted@canonical.com) +AC_COPYRIGHT([Copyright 2009 Canonical]) + +AC_PREREQ(2.53) + +AM_CONFIG_HEADER(config.h) +AM_INIT_AUTOMAKE(indicator-custom, 0.2.6) + +AM_MAINTAINER_MODE + +AC_ISC_POSIX +AC_PROG_CC +AM_PROG_CC_C_O +AC_STDC_HEADERS +AC_PROG_LIBTOOL + +AC_SUBST(VERSION) +AC_CONFIG_MACRO_DIR([m4]) + +m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])]) + +########################### +# Dependencies +########################### + +GTK_REQUIRED_VERSION=2.12 +INDICATOR_REQUIRED_VERSION=0.2.0 +DBUSMENUGTK_REQUIRED_VERSION=0.1.1 + +PKG_CHECK_MODULES(INDICATOR, gtk+-2.0 >= $GTK_REQUIRED_VERSION + indicator >= $INDICATOR_REQUIRED_VERSION + dbusmenu-gtk >= $DBUSMENUGTK_REQUIRED_VERSION) + +AC_SUBST(INDICATOR_CFLAGS) +AC_SUBST(INDICATOR_LIBS) + +########################### +# Check to see if we're local +########################### + +with_localinstall="no" +AC_ARG_ENABLE(localinstall, AS_HELP_STRING([--enable-localinstall], [install all of the files localy instead of system directories (for distcheck)]), with_localinstall=$enableval, with_localinstall=no) + +########################### +# Indicator Info +########################### + +if test "x$with_localinstall" = "xyes"; then + INDICATORDIR="${libdir}/indicators/2/" + INDICATORICONSDIR="${datadir}/libindicate/icons/" +else + INDICATORDIR=`$PKG_CONFIG --variable=indicatordir indicator` + INDICATORICONSDIR=`$PKG_CONFIG --variable=iconsdir indicator` +fi +AC_SUBST(INDICATORDIR) +AC_SUBST(INDICATORICONSDIR) + +########################### +# DBus Service Info +########################### + +if test "x$with_localinstall" = "xyes"; then + DBUSSERVICEDIR="${datadir}/dbus-1/services/" +else + DBUSSERVICEDIR=`$PKG_CONFIG --variable=session_bus_services_dir dbus-1` +fi +AC_SUBST(DBUSSERVICEDIR) + +########################### +# Files +########################### + +AC_OUTPUT([ +Makefile +src/Makefile +data/Makefile +]) + +########################### +# Results +########################### + +AC_MSG_NOTICE([ + +Custom Indicator Configuration: + + Prefix: $prefix + Indicator Dir: $INDICATORDIR +]) diff --git a/data/Makefile.am b/data/Makefile.am new file mode 100644 index 0000000..599c41b --- /dev/null +++ b/data/Makefile.am @@ -0,0 +1 @@ +# Data diff --git a/src/Makefile.am b/src/Makefile.am new file mode 100644 index 0000000..599c41b --- /dev/null +++ b/src/Makefile.am @@ -0,0 +1 @@ +# Data |