~ubuntu-branches/debian/jessie/freebsd-utils/jessie

« back to all changes in this revision

Viewing changes to .pc/013_pf.diff/usr.sbin/authpf/Makefile

  • Committer: Package Import Robot
  • Author(s): Robert Millan, Robert Millan, Guillem Jover
  • Date: 2013-12-01 13:34:11 UTC
  • Revision ID: package-import@ubuntu.com-20131201133411-0g69jfq5eusqg4gc
Tags: 9.2-2
[ Robert Millan ]
* Simplify 031_savecore.diff by using zopen() from freebsd-glue.
* Enable ifmac.c, iffib.c and ifpfsync.c in ifconfig.
  (Closes: #728374)
* Remove cons25 transition kludge (was only needed for squeeze->wheezy
  upgrades).
* Fix permissions for /dev/dri/card* devices.
* Remove a few gratuitous library dependencies.
* Misc patchset cleanup.
* Remove kludge in jail(8). Use libutil-freebsd-dev to satisfy
  login_cap.h dependency instead.
* Require freebsd-glue >= 0.2.4 to ensure trimdomain from libutil is
  used (rather than the static version in freebsd-glue << 0.2.4).
* Remove kludge in ppp(8) to use liblockdev. Use libutil directly like
  upstream does.  (Closes: 728019)

[ Guillem Jover ]
* Remove myself from Uploaders.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# $FreeBSD$
2
 
 
3
 
.PATH:  ${.CURDIR}/../../contrib/pf/authpf
4
 
.PATH:  ${.CURDIR}/../../contrib/pf/pfctl
5
 
 
6
 
PROG=   authpf
7
 
MAN=    authpf.8
8
 
BINOWN= root
9
 
BINGRP= authpf
10
 
BINMODE= 6555
11
 
 
12
 
SRCS=   authpf.c
13
 
 
14
 
CFLAGS+= -I${.CURDIR}/../../contrib/pf/pfctl
15
 
 
16
 
# XXX ALTQ:
17
 
CFLAGS+= -DENABLE_ALTQ
18
 
 
19
 
LDADD+= -lm -lmd -lutil
20
 
DPADD+= ${LIBM} ${LIBMD} ${LIBUTIL}
21
 
 
22
 
WARNS?= 3
23
 
 
24
 
LINKS=  ${BINDIR}/authpf ${BINDIR}/authpf-noip
25
 
MLINKS= authpf.8 authpf-noip.8
26
 
 
27
 
.include <bsd.prog.mk>