freebsd-ports/net/py-medusa/Makefile
Ruslan Makhmatkhanov 4fce1af90f net/py-medusa: mark deprecated
Mark as deprecated. Upstream development stalled, and author itself switched to
shrapnel. Port is unmaintained and no other ports depend on this one, there was
no updates since 2005. Set expiration date to 2015-10-28.
2015-09-28 18:29:13 +00:00

40 lines
1 KiB
Makefile

# Created by: Hye-Shik Chang <perky@fallin.lv>
# $FreeBSD$
PORTNAME= medusa
PORTVERSION= 0.5.4
PORTREVISION= 1
CATEGORIES= net devel python
MASTER_SITES= CHEESESHOP/source/m/${PORTNAME}
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
DIST_SUBDIR= python
MAINTAINER= ports@FreeBSD.org
COMMENT= Asynchronous socket-based server framework for Python
DEPRECATED= Abandoned upstream, last release was in 2005
EXPIRATION_DATE= 2015-10-28
OPTIONS_DEFINE= DOCS EXAMPLES
USES= python
USE_PYTHON= distutils autoplist
DOCSDIR= ${PREFIX}/share/doc/py-${PORTNAME}
EXAMPLESDIR= ${PREFIX}/share/examples/py-${PORTNAME}
PORTDOCS= *
PORTEXAMPLES= *
post-install:
@${MKDIR} ${STAGEDIR}${DOCSDIR}
.for doc in CHANGES.txt INSTALL.txt LICENSE.txt README.txt TODO.txt
${INSTALL_DATA} ${WRKSRC}/${doc} ${STAGEDIR}${DOCSDIR}
.endfor
@(cd ${WRKSRC} && ${COPYTREE_SHARE} docs ${STAGEDIR}${DOCSDIR})
@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
.for exdir in demo test thread
@(cd ${WRKSRC} && ${COPYTREE_SHARE} ${exdir} ${STAGEDIR}${EXAMPLESDIR})
.endfor
.include <bsd.port.mk>