~ubuntu-branches/ubuntu/intrepid/checkpolicy/intrepid

« back to all changes in this revision

Viewing changes to debian/local-vars.mk

  • Committer: Bazaar Package Importer
  • Author(s): Caleb Case, Caleb Case, Joseph Jackson IV
  • Date: 2008-02-09 21:34:46 UTC
  • mfrom: (1.1.9 upstream)
  • Revision ID: james.westby@ubuntu.com-20080209213446-hqazy6s0r3lpdekc
Tags: 2.0.9-0ubuntu1
[ Caleb Case ]
* New upstream SVN HEAD.
 + Added support for policy capabilities from Todd Miller.
 + Initialize the source file name from the command line argument so
   that checkpolicy/checkmodule report something more useful than
   "unknown source".
 + Merged remove use of REJECT and trailing context in lex rules; make
   ipv4 address parsing like ipv6 from James Carter.
 + Merged handle unknown policydb flag support from Eric Paris.
   Adds new command line options -U {allow, reject, deny} for selecting
   the flag when a base module or kernel policy is built.
 + Merged fix for segfault on duplicate require of sensitivity from
   Caleb Case.
 + Merged fix for dead URLs in checkpolicy man pages from Dan Walsh.

[ Joseph Jackson IV ]
* debian/control
  - Update Debian Maintainer field

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
############################ -*- Mode: Makefile -*- ###########################
2
 
## local-vars.mk --- 
3
 
## Author           : Manoj Srivastava ( srivasta@glaurung.green-gryphon.com ) 
4
 
## Created On       : Sat Nov 15 10:43:00 2003
5
 
## Created On Node  : glaurung.green-gryphon.com
6
 
## Last Modified By : Manoj Srivastava
7
 
## Last Modified On : Fri Nov  5 00:45:07 2004
8
 
## Last Machine Used: glaurung.internal.golden-gryphon.com
9
 
## Update Count     : 11
10
 
## Status           : Unknown, Use with caution!
11
 
## HISTORY          : 
12
 
## Description      : 
13
 
## 
14
 
## arch-tag: 1a76a87e-7af5-424a-a30d-61660c8f243e
15
 
## 
16
 
###############################################################################
17
 
 
18
 
FILES_TO_CLEAN  = debian/substvars debian/files 
19
 
STAMPS_TO_CLEAN = 
20
 
DIRS_TO_CLEAN   = 
21
 
 
22
 
# Location of the source dir
23
 
SRCTOP    := $(shell if [ "$$PWD" != "" ]; then echo $$PWD; else pwd; fi)
24
 
TMPTOP     = $(SRCTOP)/debian/$(package)
25
 
LINTIANDIR = $(TMPTOP)/usr/share/lintian/overrides
26
 
DOCBASEDIR = $(TMPTOP)/usr/share/doc-base
27
 
 
28
 
BINDIR  = $(TMPTOP)$(PREFIX)/bin
29
 
LIBDIR  = $(TMPTOP)$(PREFIX)/lib
30
 
 
31
 
MANDIR  = $(TMPTOP)/usr/share/man
32
 
MAN1DIR = $(MANDIR)/man1
33
 
MAN3DIR = $(MANDIR)/man3
34
 
MAN5DIR = $(MANDIR)/man5
35
 
MAN7DIR = $(MANDIR)/man7
36
 
MAN8DIR = $(MANDIR)/man8
37
 
INFODIR = $(TMPTOP)/usr/share/info
38
 
DOCTOP  = $(TMPTOP)/usr/share/doc
39
 
DOCDIR  = $(DOCTOP)/$(package)
40
 
 
41
 
define checkdir
42
 
        @test -f debian/rules -a -f checkpolicy.8 || \
43
 
          (echo Not in correct source directory; exit 1)
44
 
endef
45
 
 
46
 
define checkroot
47
 
        @test $$(id -u) = 0 || (echo need root priviledges; exit 1)
48
 
endef