Commit ef186058 authored by Rene Ladan's avatar Rene Ladan
Browse files

mail/missey: Remove expired port

2026-03-31 mail/missey: mail/missey has been abandoned for many years
parent 670cdb9b
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -5182,3 +5182,4 @@ www/py-django-star-ratings||2026-03-31|Has expired: Upstream repository has been
lang/cython0|lang/cython|2026-03-31|Has expired
ftp/ftpsesame||2026-03-31|Has expired: dead upstream, broken on FreeBSD 15
devel/loki||2026-03-31|Has expired: dead upstream, sole consumer removed from tree long ago
mail/missey||2026-03-31|Has expired: mail/missey has been abandoned for many years
+0 −1
Original line number Diff line number Diff line
@@ -244,7 +244,6 @@
    SUBDIR += mimedefang
    SUBDIR += mini_sendmail
    SUBDIR += minimalist
    SUBDIR += missey
    SUBDIR += mlmmj
    SUBDIR += mlmmj-archive-mid
    SUBDIR += mlmmj-archiver

mail/missey/Makefile

deleted100644 → 0
+0 −32
Original line number Diff line number Diff line
PORTNAME=	missey
PORTVERSION=	1.2.0
PORTREVISION=	1
CATEGORIES=	mail
MASTER_SITES=	http://www.dengh.com/missey/
MASTER_SITES+=	LOCAL/delphij
DISTNAME=	mps.${PORTVERSION}

MAINTAINER=	ports@FreeBSD.org
COMMENT=	Secure small and high performance POP3 server
WWW=		http://dengh.com/missey/index.html

USES=	tar:bzip2

DEPRECATED=		mail/missey has been abandoned for many years
EXPIRATION_DATE=	2026-03-31

MAKE_ENV+=	INSTALL_PROGRAM="${INSTALL_PROGRAM}" WRKSRC="${WRKSRC}" \
		INSTALL_DATA="${INSTALL_DATA}" MKDIR="${MKDIR}"

PLIST_FILES=	sbin/bent sbin/mps etc/mps/pop3d.conf-dist

USE_RC_SUBR=	mps

post-extract:
	@${MV} ${WRKDIR}/mps/src ${WRKSRC}
	@${RM} -r ${WRKDIR}/mps

post-patch:
	@${CP}	${FILESDIR}/Makefile ${WRKSRC}/Makefile

.include <bsd.port.mk>

mail/missey/distinfo

deleted100644 → 0
+0 −2
Original line number Diff line number Diff line
SHA256 (mps.1.2.0.tar.bz2) = 81899f33dec0e2822c46ed17a9a85f323396ca4fb4b1a25791d7d990f39f6c0d
SIZE (mps.1.2.0.tar.bz2) = 17472

mail/missey/files/Makefile

deleted100644 → 0
+0 −22
Original line number Diff line number Diff line
SRCS_M	=	main.c pop3d.c auth.c plcat.c mydaemon.c listen.c mylog.c cfg.c checkip.c
SRCS_B	=	bent.c

OBJS_M	=	${SRCS_M:N*.h:R:S/$/.o/}
OBJS_B	=	${SRCS_B:N*.h:R:S/$/.o/}

LDFLAGS	+=	-lcrypt

MPS	=	mps
BENT	=	bent

all:		$(MPS) $(BENT)
$(MPS):	$(OBJS_M)
	$(CC) ${CFLAGS} -o $(MPS) $(OBJS_M) $(LDFLAGS)
$(BENT):	$(OBJS_B)
	$(CC) ${CFLAGS} -o $(BENT) $(SRCS_B) -lpthread
install:
	@${MKDIR} -p $(DESTDIR)$(PREFIX)/etc/mps/
	${INSTALL_DATA} $(WRKSRC)/pop3d.conf $(DESTDIR)$(PREFIX)/etc/mps/pop3d.conf-dist
	${INSTALL_PROGRAM} $(WRKSRC)/$(MPS) $(DESTDIR)$(PREFIX)/sbin/$(MPS)
	${INSTALL_PROGRAM} $(WRKSRC)/$(BENT) $(DESTDIR)$(PREFIX)/sbin/$(BENT)
Loading