mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-24 04:33:24 +00:00
91a1caa242
Hope to see you back! Thank for all the work!
31 lines
759 B
Makefile
31 lines
759 B
Makefile
# Created by: Andrew Pantyukhin <infofarmer@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= rsstool
|
|
DISTVERSION= 1.0.0
|
|
PORTREVISION= 1
|
|
DISTVERSIONSUFFIX= -src
|
|
CATEGORIES= www
|
|
MASTER_SITES= BERLIOS
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Read, parse, merge and write RSS and Atom feeds
|
|
|
|
USES= iconv gmake
|
|
USE_GNOME= libxml2
|
|
BUILD_WRKSRC= ${WRKSRC}/src
|
|
CONFIGURE_WRKSRC= ${WRKSRC}/src
|
|
HAS_CONFIGURE= yes
|
|
|
|
OPTIONS_DEFINE= DOCS EXAMPLES
|
|
|
|
post-patch:
|
|
@cd ${BUILD_WRKSRC}/&&${REINPLACE_CMD} -e 's|gcc|${CC}|' Makefile
|
|
|
|
do-install:
|
|
@${INSTALL_PROGRAM} ${BUILD_WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin/
|
|
@cd ${WRKSRC}/&&${COPYTREE_SHARE} "*html images" ${STAGEDIR}${DOCSDIR}/
|
|
@cd ${WRKSRC}/contrib/&&${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR}/
|
|
|
|
.include <bsd.port.mk>
|