blob: e5500d2808fa24a5e12b0e9cd10963a115892bb5 (
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
39
40
41
42
43
|
# 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_GOOGLE_CODE} \
http://dryice.name/computer/FreeBSD/distfiles/
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= sbrabez@gmail.com
COMMENT= An RSS feed parser written in Python
RUN_DEPENDS= ${PYTHON_SITELIBDIR}/chardet/__init__.py:${PORTSDIR}/textproc/py-chardet
WRKSRC= ${WRKDIR}
USE_PYTHON= yes
USE_ZIP= yes
USE_PYDISTUTILS= yes
.include <bsd.port.pre.mk>
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>
|