Bug 181276 - [UPDATE] mail/mpop: update to 1.0.28
Summary: [UPDATE] mail/mpop: update to 1.0.28
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: William Grzybowski
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-08-14 09:50 UTC by takefu
Modified: 2013-11-02 23:10 UTC (History)
1 user (show)

See Also:


Attachments
mpop-1.0.28.patch (2.40 KB, patch)
2013-08-14 09:50 UTC, takefu
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description takefu 2013-08-14 09:50:00 UTC
- Update to 1.0.28

Port maintainer (sylvio@FreeBSD.org) is cc'd.
Comment 1 Edwin Groothuis freebsd_committer freebsd_triage 2013-08-14 09:50:08 UTC
Responsible Changed
From-To: freebsd-ports-bugs->sylvio

Over to maintainer (via the GNATS Auto Assign Tool)
Comment 2 dfilter service freebsd_committer freebsd_triage 2013-11-02 23:09:47 UTC
Author: wg
Date: Sat Nov  2 23:09:33 2013
New Revision: 332552
URL: http://svnweb.freebsd.org/changeset/ports/332552

Log:
  mail/mpop: update to 1.0.28
  
  - Update to 1.0.28 [1]
  - Allow staging
  - Use options helpers
  - Convert lib depends to new format
  
  PR:		ports/181276 [1]
  Submitted by:	Takefu <takefu airport.fm> [1]
  Approved by:	maintainer (timeout)

Modified:
  head/mail/mpop/Makefile
  head/mail/mpop/distinfo
  head/mail/mpop/pkg-descr
  head/mail/mpop/pkg-plist

Modified: head/mail/mpop/Makefile
==============================================================================
--- head/mail/mpop/Makefile	Sat Nov  2 23:06:17 2013	(r332551)
+++ head/mail/mpop/Makefile	Sat Nov  2 23:09:33 2013	(r332552)
@@ -2,52 +2,51 @@
 # $FreeBSD$
 
 PORTNAME=	mpop
-PORTVERSION=	1.0.27
-PORTREVISION=	1
+PORTVERSION=	1.0.28
 CATEGORIES=	mail
 MASTER_SITES=	SF
 
 MAINTAINER=	sylvio@FreeBSD.org
 COMMENT=	MPOP is a small and fast POP3 client
 
-LIB_DEPENDS=	idn.17:${PORTSDIR}/dns/libidn
+LIB_DEPENDS=	libidn.so:${PORTSDIR}/dns/libidn
+
+OPTIONS_DEFINE=	GSASL NLS
+OPTIONS_RADIO=	SSL
+OPTIONS_RADIO_SSL=	GNUTLS OPENSSL
+OPTIONS_SUB=	yes
 
-OPTIONS_DEFINE=	GNUTLS GSASL NLS
-GNUTLS_DESC=	GNUTLS Enable gnuTLS support
 GSASL_DESC=	GSASL GNU SASL authentication support
 
+NLS_USES=	gettext
+NLS_CONFIGURE_ENABLE=	nls
+
 USES=		pkgconfig
 USE_BZIP2=	yes
 GNU_CONFIGURE=	yes
 CONFIGURE_ARGS+=	--with-libidn
 
-MAN1=	mpop.1
 INFO=	mpop
 
-NO_STAGE=	yes
 .include <bsd.port.options.mk>
 
 .if ${PORT_OPTIONS:MGNUTLS}
-LIB_DEPENDS+=		gnutls.26:${PORTSDIR}/security/gnutls
+LIB_DEPENDS+=		libgnutls.so:${PORTSDIR}/security/gnutls
 CONFIGURE_ARGS+=	--with-ssl=gnutls
-.else
+.elif ${PORT_OPTIONS:MOPENSSL}
+USE_GCC=		yes
 USE_OPENSSL=		yes
-CONFIGURE_ARGS+=	--with-ssl=openssl
-.endif
-
-.if ${PORT_OPTIONS:MGSASL}
-LIB_DEPENDS+=		gsasl.16:${PORTSDIR}/security/gsasl
+CONFIGURE_ARGS+=	--with-ssl=openssl \
+			libssl_CFLAGS=-I${OPENSSLINC} \
+			libssl_LIBS=-lssl
 .else
-CONFIGURE_ARGS+=	--without-libgsasl-prefix
+CONFIGURE_ARGS+=	--with-ssl=no
 .endif
 
-.if ${PORT_OPTIONS:MNLS}
-USES+=		gettext
-CONFIGURE_ARGS+=	--enable-nls
-PLIST_SUB=		NLS=""
+.if ${PORT_OPTIONS:MGSASL}
+LIB_DEPENDS+=		libgsasl.so:${PORTSDIR}/security/gsasl
 .else
-CONFIGURE_ARGS+=	--disable-nls
-PLIST_SUB=		NLS="@comment "
+CONFIGURE_ARGS+=	--without-libgsasl
 .endif
 
 .include <bsd.port.mk>

Modified: head/mail/mpop/distinfo
==============================================================================
--- head/mail/mpop/distinfo	Sat Nov  2 23:06:17 2013	(r332551)
+++ head/mail/mpop/distinfo	Sat Nov  2 23:09:33 2013	(r332552)
@@ -1,2 +1,2 @@
-SHA256 (mpop-1.0.27.tar.bz2) = aac265d3e27378a48d8a63bd6d086db9b6142e07e6bb0460ffa99b3ff32de3c3
-SIZE (mpop-1.0.27.tar.bz2) = 288817
+SHA256 (mpop-1.0.28.tar.bz2) = e7e397c932285abc1aa65ce416679217a45d688dc8ea7f5912c6c49a8056b7ea
+SIZE (mpop-1.0.28.tar.bz2) = 289664

Modified: head/mail/mpop/pkg-descr
==============================================================================
--- head/mail/mpop/pkg-descr	Sat Nov  2 23:06:17 2013	(r332551)
+++ head/mail/mpop/pkg-descr	Sat Nov  2 23:09:33 2013	(r332552)
@@ -4,4 +4,4 @@ delivery to mbox files, maildir folders,
 a very fast POP3 implementation, many authentication methods,
 and good support for TLS/SSL.
 
-WWW:    http://mpop.sourceforge.net
+WWW: http://mpop.sourceforge.net

Modified: head/mail/mpop/pkg-plist
==============================================================================
--- head/mail/mpop/pkg-plist	Sat Nov  2 23:06:17 2013	(r332551)
+++ head/mail/mpop/pkg-plist	Sat Nov  2 23:09:33 2013	(r332552)
@@ -1,2 +1,3 @@
 bin/mpop
+man/man1/mpop.1.gz
 %%NLS%%share/locale/de/LC_MESSAGES/mpop.mo
_______________________________________________
svn-ports-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-ports-all
To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
Comment 3 William Grzybowski freebsd_committer freebsd_triage 2013-11-02 23:09:52 UTC
Responsible Changed
From-To: sylvio->wg

I'll take it.
Comment 4 William Grzybowski freebsd_committer freebsd_triage 2013-11-02 23:09:57 UTC
State Changed
From-To: open->closed

Committed. Thanks!