Add port www/rsstail:

RSSTail is more or less an rss reader: it monitors an rss-feed and if
it detects a new entry it'll emit only that new entry.

WWW: http://www.vanheusden.com/rsstail/
Author: Folkert van Heusden <folkert@vanheusden.com>
This commit is contained in:
Andrew Pantyukhin 2007-06-11 19:06:55 +00:00
parent 49d95ca892
commit fe7754ea07
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=193288
4 changed files with 39 additions and 0 deletions

View File

@ -1050,6 +1050,7 @@
SUBDIR += rnews
SUBDIR += roundup
SUBDIR += roxen
SUBDIR += rsstail
SUBDIR += rsstool
SUBDIR += rssowl
SUBDIR += rt2

30
www/rsstail/Makefile Normal file
View File

@ -0,0 +1,30 @@
# New ports collection makefile for: rsstail
# Date created: 21 April 2007
# Whom: Andrew Pantyukhin <infofarmer@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= rsstail
PORTVERSION= 1.1
CATEGORIES= www
MASTER_SITES= http://www.vanheusden.com/rsstail/ CENKES
EXTRACT_SUFX= .tgz
MAINTAINER= infofarmer@FreeBSD.org
COMMENT= Simple rss monitor
LIB_DEPENDS= mrss.0:${PORTSDIR}/textproc/libmrss
CFLAGS+= -I${LOCALBASE}/include
LDFLAGS+= -L${LOCALBASE}/lib
MAKE_ENV= LDFLAGS="${LDFLAGS}"
PLIST_FILES= bin/${PORTNAME}
post-patch:
@${REINPLACE_CMD} -e 's|=-O2 -Wall|+=|;/^LDFLAGS/s|=|+=|' ${WRKSRC}/Makefile
do-install:
@${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin/
.include <bsd.port.mk>

3
www/rsstail/distinfo Normal file
View File

@ -0,0 +1,3 @@
MD5 (rsstail-1.1.tgz) = 2550da81a8ed6de56b363d7cd139933b
SHA256 (rsstail-1.1.tgz) = 603ddd9108b7157d173c0e86e6c95de417cfd020d9796f705f4378f3a8fe8470
SIZE (rsstail-1.1.tgz) = 3901

5
www/rsstail/pkg-descr Normal file
View File

@ -0,0 +1,5 @@
RSSTail is more or less an rss reader: it monitors an rss-feed and if
it detects a new entry it'll emit only that new entry.
WWW: http://www.vanheusden.com/rsstail/
Author: Folkert van Heusden <folkert@vanheusden.com>