1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-30 05:40:06 +00:00

Minimalistic cmdline tool to fetch RSS news from HTTP or local files and

convert them into plain text, formatted html, or token-separated strings.
This tool can be easily integrated into shellscripts, cron tasks, motd's,
etc.

WWW:	http://nopcode.org/blog/rss2html.html

PR:		ports/131266
Submitted by:	Dennis Herrmann <adox at mcx2.org>
This commit is contained in:
Martin Wilke 2009-02-09 17:48:17 +00:00
parent 7d0f582779
commit f35b39863a
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=227929
4 changed files with 48 additions and 0 deletions

View File

@ -924,6 +924,7 @@
SUBDIR += romdict
SUBDIR += rot
SUBDIR += rotix
SUBDIR += rss2html
SUBDIR += rst.el
SUBDIR += rtf2html
SUBDIR += rtfreader

View File

@ -0,0 +1,38 @@
# New ports collection makefile for: rss2html
# Date created: 2009-02-01
# Whom: Dennis Herrmann <adox@mcx2.org>
#
# $FreeBSD$
#
PORTNAME= rss2html
PORTVERSION= 0.8.2
CATEGORIES= textproc
MASTER_SITES= http://mirror.mcx2.org/ \
ftp://ftp.nopcode.org/prj/rss2html/
MAINTAINER= adox@mcx2.org
COMMENT= RSS to HTML converter
LIB_DEPENDS+= curl.5:${PORTSDIR}/ftp/curl
GNU_CONFIGURE= yes
CFLAGS+= "-I${LOCALBASE}/include" "-L${LOCALBASE}/lib"
MAN1= rss2html.1
MANCOMPRESSED= no
PLIST_FILES= bin/rss2html
PORTDOCS= rss2html.links usage.example rss2html.template
post-patch:
@${REINPLACE_CMD} -e '16,20d' ${WRKSRC}/Makefile.acr
post-install:
.if !defined(NOPORTDOCS)
@${ECHO_MSG} "installing additional documentation to ${DOCSDIR}"
@${MKDIR} ${DOCSDIR}
@${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/doc/,} ${DOCSDIR}/
.endif
.include <bsd.port.mk>

View File

@ -0,0 +1,3 @@
MD5 (rss2html-0.8.2.tar.gz) = ad23d8fe53827f0e069d75c12ee64ae4
SHA256 (rss2html-0.8.2.tar.gz) = f646ff9629b141a22b8493522cb86e8000dbbd33f9baf9997f2228060493d66b
SIZE (rss2html-0.8.2.tar.gz) = 26582

View File

@ -0,0 +1,6 @@
Minimalistic cmdline tool to fetch RSS news from HTTP or local files and
convert them into plain text, formatted html, or token-separated strings.
This tool can be easily integrated into shellscripts, cron tasks, motd's,
etc.
WWW: http://nopcode.org/blog/rss2html.html