mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-29 01:13:08 +00:00
32 lines
744 B
Makefile
32 lines
744 B
Makefile
# New ports collection makefile for: rsstail
|
|
# Date created: 21 April 2007
|
|
# Whom: Andrew Pantyukhin <infofarmer@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= rsstail
|
|
PORTVERSION= 1.8
|
|
CATEGORIES= www
|
|
MASTER_SITES= http://www.vanheusden.com/rsstail/ CENKES
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
MAINTAINER= miwi@FreeBSD.org
|
|
COMMENT= Simple RSS monitor
|
|
|
|
LIB_DEPENDS= mrss.19:${PORTSDIR}/textproc/libmrss
|
|
|
|
CFLAGS+= -I${LOCALBASE}/include
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
PLIST_FILES= bin/${PORTNAME}
|
|
MAN1= ${PORTNAME}.1
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|=-O2 -Wall|+=|;/^LDFLAGS/s|=|+=|' ${WRKSRC}/Makefile
|
|
|
|
do-install:
|
|
@${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin/
|
|
@${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1 ${MAN1PREFIX}/man/man1/
|
|
|
|
.include <bsd.port.mk>
|