Sat Dec 17 12:48:24 2011 UTC ()
mail/cue: Mask DragonFly; OpenSSL 1.0 support missing

According to the commit on 2009-12-15, the previous version of mail/cue
(20090209) was patched to support OpenSSL 1.0.  However, mail/cue still
uses MD2 which is not built by default by OpenSSL 1.0.  The update to
version 20100426 on 2011-11-27 did not improve the situation.

Until mail/cue is fixed upstream or patched here to avoid using MD2, it is
being marked NOT-FOR-DRAGONFLY.


(marino)
diff -r1.61 -r1.62 pkgsrc/mail/cue/Makefile

cvs diff -r1.61 -r1.62 pkgsrc/mail/cue/Makefile (expand / switch to unified diff)

--- pkgsrc/mail/cue/Makefile 2011/11/27 13:05:33 1.61
+++ pkgsrc/mail/cue/Makefile 2011/12/17 12:48:23 1.62
@@ -1,25 +1,28 @@ @@ -1,25 +1,28 @@
1# $NetBSD: Makefile,v 1.61 2011/11/27 13:05:33 obache Exp $ 1# $NetBSD: Makefile,v 1.62 2011/12/17 12:48:23 marino Exp $
2 2
3DISTNAME= cue-snap-20100426 3DISTNAME= cue-snap-20100426
4PKGNAME= ${DISTNAME:S/snap-//} 4PKGNAME= ${DISTNAME:S/snap-//}
5CATEGORIES= mail 5CATEGORIES= mail
6MASTER_SITES= ftp://sh.wide.ad.jp/WIDE/free-ware/cue/snap/ 6MASTER_SITES= ftp://sh.wide.ad.jp/WIDE/free-ware/cue/snap/
7 7
8MAINTAINER= pkgsrc-users@NetBSD.org 8MAINTAINER= pkgsrc-users@NetBSD.org
9HOMEPAGE= # not available 9HOMEPAGE= # not available
10COMMENT= Mh-e like mail user agent 10COMMENT= Mh-e like mail user agent
11LICENSE= modified-bsd 11LICENSE= modified-bsd
12 12
 13# When cue supports OpenSSL 1.0 (e.g no MD2), remove following line:
 14NOT_FOR_PLATFORM= DragonFly-*-*
 15
13PKG_DESTDIR_SUPPORT= user-destdir 16PKG_DESTDIR_SUPPORT= user-destdir
14 17
15GNU_CONFIGURE= yes 18GNU_CONFIGURE= yes
16CONFIGURE_ARGS+= --with-openssl=${SSLBASE:Q} 19CONFIGURE_ARGS+= --with-openssl=${SSLBASE:Q}
17CONFIGURE_ARGS+= --with-zlib=${BUILDLINK_PREFIX.zlib} 20CONFIGURE_ARGS+= --with-zlib=${BUILDLINK_PREFIX.zlib}
18INSTALLATION_DIRS+= bin share/doc/cue share/examples/cue 21INSTALLATION_DIRS+= bin share/doc/cue share/examples/cue
19 22
20do-install: 23do-install:
21 ${INSTALL_PROGRAM} ${WRKSRC}/cue ${DESTDIR}${PREFIX}/bin 24 ${INSTALL_PROGRAM} ${WRKSRC}/cue ${DESTDIR}${PREFIX}/bin
22 ${INSTALL_DATA} ${WRKSRC}/sample.cuerc \ 25 ${INSTALL_DATA} ${WRKSRC}/sample.cuerc \
23 ${DESTDIR}${PREFIX}/share/examples/cue 26 ${DESTDIR}${PREFIX}/share/examples/cue
24 ${INSTALL_DATA} ${WRKSRC}/cue.hlp ${DESTDIR}${PREFIX}/share/doc/cue 27 ${INSTALL_DATA} ${WRKSRC}/cue.hlp ${DESTDIR}${PREFIX}/share/doc/cue
25 28