1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-19 00:13:33 +00:00
freebsd-ports/net/mpd5/Makefile
Eugene Grosbein a022a2a4c4
net/mpd5: new small feature and bugfix
- Import r2539 from upstream: introduce new interface description conversion
  specification %s for last description change time, in unixtime (seconds).
- Unbreak SIGUSR1/SIGUSR2 mechanics to open/close first link broken
  in mpd5-5.9_10 (*)

PR:		271508 (*)
2023-05-20 18:22:39 +07:00

66 lines
1.5 KiB
Makefile

PORTNAME= mpd
DISTVERSION= 5.9
PORTREVISION= 16
CATEGORIES= net
MASTER_SITES= SF/${PORTNAME}/Mpd5/Mpd-${PORTVERSION}
PKGNAMESUFFIX= 5
DIST_SUBDIR= mpd5
MAINTAINER= eugen@FreeBSD.org
COMMENT= Multi-link PPP daemon based on netgraph(4)
WWW= https://sourceforge.net/projects/mpd/
LICENSE= BSD3CLAUSE
USES= cpe ssl
CPE_VENDOR= mpd_project
OPTIONS_DEFINE= DOCS NG_IPACCT RADIUS
OPTIONS_DEFAULT= RADIUS
NG_IPACCT_DESC= Use ng_ipacct kernel module from port
RADIUS_DESC= Enable RADIUS support
HAS_CONFIGURE= YES
CONFIGURE_WRKSRC= "${WRKSRC}/src"
.include <bsd.port.options.mk>
MAKE_ARGS+= OSVERSION=${OSVERSION}
.if ${PORT_OPTIONS:MNG_IPACCT}
BUILD_DEPENDS+= ${LOCALBASE}/include/netgraph/ng_ipacct.h:net-mgmt/ng_ipacct
.if exists(${KMODDIR}/ng_ipacct.ko)
RUN_DEPENDS+= ${KMODDIR}/ng_ipacct.ko:net-mgmt/ng_ipacct
.else
RUN_DEPENDS+= /boot/modules/ng_ipacct.ko:net-mgmt/ng_ipacct
.endif
.else
CONFIGURE_ENV+= USE_NG_IPACCT=no
MAKE_ARGS+= USE_NG_IPACCT=no
.endif
.if ${PORT_OPTIONS:MRADIUS}
PLIST_FILES= ${DATADIR}/dictionary.mpd
post-install:
${MKDIR} ${STAGEDIR}${DATADIR}
${INSTALL_DATA} ${WRKSRC}/conf/dictionary.mpd ${STAGEDIR}${DATADIR}
.else
CONFIGURE_ENV+= USE_RADIUS=no
MAKE_ARGS+= USE_RADIUS=no
.endif
USE_RC_SUBR= mpd5
CONFSUF= conf secret script
DOCSDIR= ${PREFIX}/share/doc/mpd5
PORTDOCS= README mpd*
PLIST_FILES+= ${CONFSUF:C|(.*)|"@sample etc/mpd5/mpd.\1.sample"|} \
sbin/mpd5
.if !defined(WITHOUT_MAN)
PLIST_FILES+= man/man8/mpd5.8.gz
.endif
.include <bsd.port.mk>