1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-29 01:13:08 +00:00
freebsd-ports/audio/py-mpd2/Makefile
2013-12-16 12:25:30 +00:00

52 lines
1.3 KiB
Makefile

# Created by: rene@FreeBSD.org (repocopied from audio/py-mpd)
# $FreeBSD$
PORTNAME= mpd2
PORTVERSION= 0.5.2
PORTREVISION= 1
CATEGORIES= audio python
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
DISTNAME= python-${PORTNAME}-${PORTVERSION}
MAINTAINER= rene@FreeBSD.org
COMMENT= Fork of the Python MPD client library
USE_GITHUB= yes
GH_ACCOUNT= Mic92
GH_PROJECT= python-${PORTNAME}
GH_TAGNAME= v${PORTVERSION}
GH_COMMIT= df508d4
USE_PYTHON= yes
USE_PYDISTUTILS= yes
PYDISTUTILS_AUTOPLIST= yes
NO_ARCH= yes
OPTIONSFILE= ${PORT_DBDIR}/py-${PORTNAME}/options
OPTIONS_DEFINE= DOCS EXAMPLES
DOCSDIR= ${PREFIX}/share/doc/py-${PORTNAME}
PORTDOCS_1= index.rst changes.rst
PORTDOCS_2= topics/advanced.rst topics/commands.rst \
topics/getting-started.rst topics/logging.rst
PORTDOCS= ${PORTDOCS_1} ${PORTDOCS_2}
EXAMPLESDIR= ${PREFIX}/share/examples/py-${PORTNAME}
PORTEXAMPLES= locking.py logger.py
PLIST_DIRSTRY= ${DOCSDIR}/topics
post-install:
${MKDIR} ${STAGEDIR}${DOCSDIR}/topics
.for f in ${PORTDOCS_1}
${INSTALL_DATA} ${WRKSRC}/doc/${f} ${STAGEDIR}${DOCSDIR}
.endfor
.for f in ${PORTDOCS_2}
${INSTALL_DATA} ${WRKSRC}/doc/${f} ${STAGEDIR}${DOCSDIR}/topics
.endfor
${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
.for f in ${PORTEXAMPLES}
${INSTALL_SCRIPT} ${WRKSRC}/examples/${f} ${STAGEDIR}${EXAMPLESDIR}
.endfor
.include <bsd.port.mk>