b610bb234e
- Bump PORTREVISION PR: 94825 Submitted by: maintainer
48 lines
1 KiB
Makefile
48 lines
1 KiB
Makefile
# ex:ts=8
|
|
# Ports collection makefile for: feedparser
|
|
# Date created: Mar 11, 2004
|
|
# Whom: ijliao
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= feedparser
|
|
PORTVERSION= 4.1
|
|
PORTREVISION= 2
|
|
CATEGORIES= textproc python
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} \
|
|
http://dryice.name/computer/FreeBSD/distfiles/
|
|
MASTER_SITE_SUBDIR= feedparser
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= dryice@dryice.name
|
|
COMMENT= An RSS feed parser written in Python
|
|
|
|
RUN_DEPENDS= ${PYTHON_SITELIBDIR}/chardet/__init__.py:${PORTSDIR}/textproc/py-chardet
|
|
|
|
WRKSRC= ${WRKDIR}
|
|
USE_PYTHON= 2.1+
|
|
USE_ZIP= yes
|
|
USE_PYDISTUTILS= yes
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${PYTHON_REL} < 240
|
|
RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/cjkcodecs/__init__.py:${PORTSDIR}/converters/py-cjkcodecs
|
|
.endif
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
.for i in *.html
|
|
${INSTALL_DATA} ${WRKSRC}/docs/${i} ${DOCSDIR}
|
|
.endfor
|
|
.for j in images css examples
|
|
@${MKDIR} ${DOCSDIR}/${j}
|
|
.for i in *
|
|
${INSTALL_DATA} ${WRKSRC}/docs/${j}/${i} ${DOCSDIR}/${j}
|
|
.endfor
|
|
.endfor
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|