2003-06-07 19:48:34 +02:00
|
|
|
# $NetBSD: Makefile,v 1.9 2003/06/07 17:48:34 jmmv Exp $
|
Addition of cucipop, version 1.31, to the NetBSD packages collection.
Cucipop, the Cubic Circle POP3 server, is a very small and fast server for
POP3 mail clients--far faster than UW's ipop3d. It does not support POP2,
but it does include support for the TOP extension to POP3, Content-Length:
headers, and APOP. It can be run from inetd or standalone.
Please note that this package is shareware.
This package is based on Todd Vierling's submission in PR pkg/4977, as well
as Jim Wise's submission in PR pkg/4910, which were put on hold until the
licence logic had been added to bsd.pkg.mk, but I've also updated this to
version 1.31, and fixed a few things in the compilation process.
1998-07-21 13:39:54 +02:00
|
|
|
#
|
|
|
|
|
|
|
|
DISTNAME= cucipop-1.31
|
|
|
|
CATEGORIES= mail
|
|
|
|
MASTER_SITES= ftp://ftp.informatik.rwth-aachen.de/pub/packages/cucipop/
|
|
|
|
|
2000-11-22 14:05:58 +01:00
|
|
|
PATCH_SITES= ftp://ftp.kame.net/pub/kame/misc/
|
2001-02-23 03:13:17 +01:00
|
|
|
PATCHFILES= cucipop-1.31-v6-20010223.diff.gz
|
2000-11-22 14:05:58 +01:00
|
|
|
PATCH_DIST_STRIP= -p1
|
|
|
|
|
2003-06-02 03:15:31 +02:00
|
|
|
MAINTAINER= tech-pkg@netbsd.org
|
2001-02-17 18:52:59 +01:00
|
|
|
COMMENT= The Cubic Circle POP3 mail server
|
Addition of cucipop, version 1.31, to the NetBSD packages collection.
Cucipop, the Cubic Circle POP3 server, is a very small and fast server for
POP3 mail clients--far faster than UW's ipop3d. It does not support POP2,
but it does include support for the TOP extension to POP3, Content-Length:
headers, and APOP. It can be run from inetd or standalone.
Please note that this package is shareware.
This package is based on Todd Vierling's submission in PR pkg/4977, as well
as Jim Wise's submission in PR pkg/4910, which were put on hold until the
licence logic had been added to bsd.pkg.mk, but I've also updated this to
version 1.31, and fixed a few things in the compilation process.
1998-07-21 13:39:54 +02:00
|
|
|
|
|
|
|
LICENSE= shareware
|
|
|
|
|
2000-11-22 14:05:58 +01:00
|
|
|
BUILD_DEFS+= USE_INET6
|
|
|
|
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
|
|
|
|
# to be friendly with pre-1.5 systems
|
2000-12-01 22:08:03 +01:00
|
|
|
.if defined(USE_INET6) && ${USE_INET6} == "YES"
|
2000-11-22 14:05:58 +01:00
|
|
|
MAKE_ENV+= CFLAGS_INET6=-DINET6
|
|
|
|
.endif
|
|
|
|
|
2002-08-21 09:20:14 +02:00
|
|
|
.if ${OPSYS} == "SunOS"
|
|
|
|
LDFLAGS+= -lnsl -lsocket
|
|
|
|
.endif
|
|
|
|
|
2003-06-07 19:48:34 +02:00
|
|
|
pre-configure:
|
Addition of cucipop, version 1.31, to the NetBSD packages collection.
Cucipop, the Cubic Circle POP3 server, is a very small and fast server for
POP3 mail clients--far faster than UW's ipop3d. It does not support POP2,
but it does include support for the TOP extension to POP3, Content-Length:
headers, and APOP. It can be run from inetd or standalone.
Please note that this package is shareware.
This package is based on Todd Vierling's submission in PR pkg/4977, as well
as Jim Wise's submission in PR pkg/4910, which were put on hold until the
licence logic had been added to bsd.pkg.mk, but I've also updated this to
version 1.31, and fixed a few things in the compilation process.
1998-07-21 13:39:54 +02:00
|
|
|
@(cd ${WRKSRC}; \
|
|
|
|
for f in config.h cucipop.8 makevpopdb.8; do \
|
|
|
|
${SED} -e 's|@prefix@|${PREFIX}|g' $$f > $$f.fixed && \
|
|
|
|
${MV} $$f.fixed $$f; \
|
|
|
|
done)
|
|
|
|
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|