~ubuntu-branches/ubuntu/hardy/apparmor/hardy-proposed

« back to all changes in this revision

Viewing changes to management/applets/apparmorapplet-gnome/src/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Mathias Gug
  • Date: 2007-09-11 10:44:56 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20070911104456-2a2vwe4wb0hxbc53
Tags: 2.1+961-0ubuntu1
* New upstream version.
  * Support resolvconf. Fix LP: #132468.
* Move package maintainance to bzr:
  * Apply all patches directly into the tree with dpatch apply-all.
  * debian/patches/: remove all patches as they are applied inline now.
  * debian/control, debian/control.modules.in: remove dpatch from
    Build Depends.
  * debian/rules:
    * remove dpatch include.
    * remove patch and unpatch dependencies
* debian/control:
  * Rename libapparmor-dev to libapparmor1-dev.
    Add Provides: and Conflict: tags.
  * Remove universe component in Section tag.
  * Remove apparmor-utils depends on bsdutils.
  * Update apparmor-modules Recommends to apparmor-modules-2.1.
* utils/:
  * Add audit man page.
* Fix mod_appamor library: remove rpath info.
  * debian/rules: remove rpath info.
  * debian/control: add chrpath as a build dependency.
* Remove apparmor-modules-source package:
  * debian/conrol: remove apparmor-modules-source package.
  * debian/apparmor.postinst, debian/apparmor.preinst,
    debian/apparmor.prerm: remove error_handler function.
  * debian/rules: remove error_handler option from dh_installinit.
  * debian/apparmor-modules-_KVERS_.postinst.modules.in,
    debian/control.modules.in: remove control and postinst files.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
## Process this file with automake to produce Makefile.in
 
2
 
 
3
INCLUDES = \
 
4
        -DPACKAGE_DATA_DIR=\""$(datadir)"\" \
 
5
        -DPACKAGE_LOCALE_DIR=\""$(prefix)/$(DATADIRNAME)/locale"\" \
 
6
        -DGNOMELOCALEDIR=\""$(prefix)/$(DATADIRNAME)/locale"\" \
 
7
        -DDBUS_API_SUBJECT_TO_CHANGE \
 
8
        `$(PKG_CONFIG) --cflags libpanelapplet-2.0` \
 
9
        `$(PKG_CONFIG) --cflags dbus-1` \
 
10
        @PACKAGE_CFLAGS@
 
11
 
 
12
LIBS = \
 
13
        `$(PKG_CONFIG) --libs libpanelapplet-2.0` \
 
14
        `$(PKG_CONFIG) --libs dbus-1` \
 
15
        @PACKAGE_LIBS@
 
16
 
 
17
libexec_PROGRAMS = apparmorapplet
 
18
 
 
19
apparmorapplet_SOURCES = \
 
20
        apparmor-applet.c apparmor-applet.h \
 
21
        preferences_dialog.c preferences_dialog.h \
 
22
        reject_list.c reject_list.h
 
23
 
 
24
apparmorapplet_LDADD = @PACKAGE_LIBS@ $(INTLLIBS)
 
25