diff options
author | schmonz <schmonz@pkgsrc.org> | 2004-07-19 23:49:35 +0000 |
---|---|---|
committer | schmonz <schmonz@pkgsrc.org> | 2004-07-19 23:49:35 +0000 |
commit | 40500901b3518eaa14af8a0b5b7ee7614c12c3e6 (patch) | |
tree | 87c71bb9842e1327888fa43d1267d10c937d0cb7 | |
parent | 478499e6f4b4efd4ffae539419dfe3c3e4416f2e (diff) | |
download | pkgsrc-40500901b3518eaa14af8a0b5b7ee7614c12c3e6.tar.gz |
Set RESTRICTED directly in this package, rather than in Makefile.common,
and clarify: we cannot redistribute binary packages because we
change the paths of conf-bin and conf-man from the default "/usr/local"
and don't provide compatibility symlinks.
Set USE_BUILDLINK3=yes.
Add "install" to ALL_TARGET in Makefile.common so that the installer
is compiled at the end of the build phase, rather than at the
beginning of the install phase.
-rw-r--r-- | mail/ezmlm/Makefile | 10 | ||||
-rw-r--r-- | mail/ezmlm/Makefile.common | 8 |
2 files changed, 11 insertions, 7 deletions
diff --git a/mail/ezmlm/Makefile b/mail/ezmlm/Makefile index e48e705ea82..25b38e36f1f 100644 --- a/mail/ezmlm/Makefile +++ b/mail/ezmlm/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.9 2004/07/16 00:20:39 schmonz Exp $ +# $NetBSD: Makefile,v 1.10 2004/07/19 23:49:35 schmonz Exp $ # .include "../../mail/ezmlm/Makefile.common" @@ -11,6 +11,14 @@ COMMENT= Easy-to-use, high-speed mailing list manager for qmail CONFLICTS= ezmlm-idx-[0-9]* +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} + .include "../../mk/compiler.mk" .if !empty(CC_VERSION:Mgcc-*) diff --git a/mail/ezmlm/Makefile.common b/mail/ezmlm/Makefile.common index dc8b431c6b4..3f072cab6a4 100644 --- a/mail/ezmlm/Makefile.common +++ b/mail/ezmlm/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.1 2002/07/23 08:42:35 schmonz Exp $ +# $NetBSD: Makefile.common,v 1.2 2004/07/19 23:49:35 schmonz Exp $ # EZMLM_VERS= ezmlm-0.53 @@ -11,13 +11,9 @@ DEPENDS+= qmail>=1.03:../../mail/qmail PLIST_SRC= ../../mail/ezmlm/PLIST.common -ALL_TARGET= it man +ALL_TARGET= it man install INSTALL_TARGET= setup -RESTRICTED= "unsure of djb's license" -NO_BIN_ON_CDROM= ${RESTRICTED} -NO_BIN_ON_FTP= ${RESTRICTED} - do-configure: ${ECHO} ${CC} ${CFLAGS} > ${WRKSRC}/conf-cc ${ECHO} ${CC} ${_STRIPFLAG_CC} > ${WRKSRC}/conf-ld |