blob: 50debc56150034e04d1f742ee91168538d12dbe8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
# $NetBSD: Makefile,v 1.13 2004/12/21 04:22:03 schmonz Exp $
#
.include "../../mail/ezmlm/Makefile.common"
DISTNAME= ${EZMLM_VERS}
PKGREVISION= 1
MAINTAINER= schmonz@NetBSD.org
HOMEPAGE= http://cr.yp.to/ezmlm.html
COMMENT= Easy-to-use, high-speed mailing list manager for qmail
CONFLICTS= ezmlm-idx-[0-9]*
PKG_INSTALLATION_TYPES= overwrite pkgviews
USE_BUILDLINK3= yes
# We change conf-bin and conf-man from the default "/usr/local"
# and don't provide compatibility symlinks.
RESTRICTED= "modified source and binaries may not be distributed"
NO_BIN_ON_CDROM= ${RESTRICTED}
NO_BIN_ON_FTP= ${RESTRICTED}
INSTALLATION_DIRS= bin man man/man1 man/man5 man/cat1 man/cat5
.include "../../mk/bsd.prefs.mk"
.include "options.mk"
.include "../../mk/compiler.mk"
.if !empty(CC_VERSION:Mgcc-*)
CFLAGS+= -fno-builtin-log
.endif
.include "../../mk/bsd.pkg.mk"
|