b8d45c8593
to slrn version 0.9.7.2: -- Bug fixes: * slrn enters all groups when read_active is on Fixed 2001-08-27 When read_active is on, slrn still enters all groups to find the number of unread articles, which slows down startup considerably. * force_authentication is ignored when re-connecting Fixed 2001-08-27 When re-connecting, slrn only sends authentication data if the server requests it, even if force_authentication is set. * Request for authentication is not always recognized Fixed 2001-08-30 In some rare cases, slrn does not notice that it needs to send authentication data, although the server requests it. This can even damage your newsrc file. * Parse "news:" URLs enclosed in angle brackets correctly Fixed 2001-08-30 When a "news:" URL is enclosed in angle brackets, slrn regards the closing bracket as a part of it.
36 lines
797 B
Makefile
36 lines
797 B
Makefile
# $OpenBSD: Makefile,v 1.26 2001/08/30 13:56:47 lebel Exp $
|
|
|
|
COMMENT= "SLang-based newsreader"
|
|
|
|
VERSION= 0.9.7.2
|
|
DISTNAME= slrn-${VERSION}
|
|
PKGNAME= ${DISTNAME}p1
|
|
CATEGORIES= news
|
|
NEED_VERSION= 1.440
|
|
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= slrn
|
|
HOMEPAGE= http://www.slrn.org/
|
|
|
|
MAINTAINER= David Lebel <lebel@openbsd.org>
|
|
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
PFILES= readactive forceauth authneeded newsurl
|
|
MASTER_SITES0= http://slrn.sourceforge.net/patches/
|
|
.for i in ${PFILES}
|
|
PATCHFILES+= slrn-${VERSION}-$i.diff:0
|
|
.endfor
|
|
PATCH_DIST_STRIP=-p1
|
|
|
|
USE_GMAKE= Yes
|
|
LIB_DEPENDS= slang.::devel/libslang
|
|
|
|
CONFIGURE_STYLE= gnu
|
|
CONFIGURE_ARGS+= --disable-inews --with-ssl
|
|
|
|
.include <bsd.port.mk>
|