diff options
author | Ken VanDine <ken.vandine@canonical.com> | 2011-06-22 12:09:57 -0400 |
---|---|---|
committer | Ken VanDine <ken.vandine@canonical.com> | 2011-06-22 12:09:57 -0400 |
commit | 4a2c7a22fa0d6c46327cd9be18ebc64057692769 (patch) | |
tree | fd44f1bd306ed3904d6335a2c559b5149dfe2e0d /debian/rules | |
parent | be0557bd3630b3efe189f299d26aa3db9a358798 (diff) | |
download | ayatana-indicator-datetime-4a2c7a22fa0d6c46327cd9be18ebc64057692769.tar.gz ayatana-indicator-datetime-4a2c7a22fa0d6c46327cd9be18ebc64057692769.tar.bz2 ayatana-indicator-datetime-4a2c7a22fa0d6c46327cd9be18ebc64057692769.zip |
releasing version 0.2.90-0ubuntu10.2.90-0ubuntu1
Diffstat (limited to 'debian/rules')
-rwxr-xr-x | debian/rules | 25 |
1 files changed, 17 insertions, 8 deletions
diff --git a/debian/rules b/debian/rules index baf32ef..7950ed1 100755 --- a/debian/rules +++ b/debian/rules @@ -1,14 +1,23 @@ #!/usr/bin/make -f +DEB_BUILDDIR = build +DEB_MAKE_FLAVORS = gtk2 gtk3 + include /usr/share/cdbs/1/rules/debhelper.mk -include /usr/share/cdbs/1/rules/simple-patchsys.mk -include /usr/share/cdbs/1/class/autotools.mk include /usr/share/cdbs/1/class/gnome.mk -include /usr/share/cdbs/1/rules/utils.mk -include /usr/share/cdbs/1/rules/autoreconf.mk -install/indicator-datetime:: - find debian/indicator-datetime/usr/lib -name \*.la -exec rm {} \; - find debian/indicator-datetime/usr/lib -name \*.a -exec rm {} \; +DEB_MAKE_DESTDIRSKEL = $(CURDIR)/debian/tmp/@FLAVOR@ +DEB_DESTDIR = $(CURDIR)/debian/tmp/$(cdbs_make_curflavor)/ + +DEB_CONFIGURE_FLAGS_gtk2 = --with-gtk=2 +DEB_CONFIGURE_FLAGS_gtk3 = --with-gtk=3 +DEB_CONFIGURE_EXTRA_FLAGS = --disable-static + +LDFLAGS += -Wl,-z,defs -Wl,--as-needed + +debian/stamp-autotools/gtk2: cdbs_configure_flags += $(DEB_CONFIGURE_FLAGS_gtk2) +debian/stamp-autotools/gtk3: cdbs_configure_flags += $(DEB_CONFIGURE_FLAGS_gtk3) -common-binary-post-install-arch:: list-missing +common-install-arch:: + find debian/tmp -name \*.la -delete + find debian/tmp -name \*.a -delete |