diff options
author | Sebastien Bacher <seb128@ubuntu.com> | 2012-07-13 17:52:55 +0200 |
---|---|---|
committer | Sebastien Bacher <seb128@ubuntu.com> | 2012-07-13 17:52:55 +0200 |
commit | 7cd686acaa20570cd3930c3ba96917dabcf7d01a (patch) | |
tree | a8cfd6a903de40158ed6bd0c3f3912b066819a84 /debian/rules | |
parent | d4f6a1eab91a05b6628022f95a3d47ff05061556 (diff) | |
parent | ed02493a8c6534f1aaf76e005100ad7be7820891 (diff) | |
download | ayatana-indicator-datetime-7cd686acaa20570cd3930c3ba96917dabcf7d01a.tar.gz ayatana-indicator-datetime-7cd686acaa20570cd3930c3ba96917dabcf7d01a.tar.bz2 ayatana-indicator-datetime-7cd686acaa20570cd3930c3ba96917dabcf7d01a.zip |
* New upstream release.
* debian/control, debian/indicator-datetime.install, debian/rules:
- drop GTK2 build it's deprecated
* debian/patches/port-eds-3.5.patch:
- dropped, the patch is in the new version
Diffstat (limited to 'debian/rules')
-rwxr-xr-x | debian/rules | 17 |
1 files changed, 3 insertions, 14 deletions
diff --git a/debian/rules b/debian/rules index 6d5fdb5..135786f 100755 --- a/debian/rules +++ b/debian/rules @@ -1,31 +1,20 @@ #!/usr/bin/make -f -DEB_BUILDDIR = build -DEB_MAKE_FLAVORS = gtk2 gtk3 - include /usr/share/cdbs/1/rules/patchsys-quilt.mk include /usr/share/cdbs/1/rules/autoreconf.mk include /usr/share/cdbs/1/rules/debhelper.mk include /usr/share/cdbs/1/class/gnome.mk -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-install-arch:: - find debian/tmp -name \*.la -delete - find debian/tmp -name \*.a -delete + find debian/indicator-datetime -name \*.la -delete + find debian/indicator-datetime -name \*.a -delete cd po; intltool-update --pot --verbose # Language packs - for d in $$(find debian/tmp -type f \( -name "*.desktop" -o -name "*.directory" \) ); do \ + for d in $$(find debian/indicator-datetime -type f \( -name "*.desktop" -o -name "*.directory" \) ); do \ sed -ri '/^(Name|GenericName|Comment|X-GNOME-FullName)\[/d' $$d; \ echo "X-Ubuntu-Gettext-Domain=indicator-datetime" >> $$d; \ done; |