blob: dae2a277461cc7e3a6db74ad6167632ade28e097 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
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
PORTREVISION= 3
CATEGORIES= textproc
MASTER_SITES= http://mirror.mcx2.org/
MAINTAINER= dhn@FreeBSD.org
COMMENT= RSS to HTML converter
LIB_DEPENDS+= curl:${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>
|