mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-22 00:35:15 +00:00
4cdf0359ba
- Update WWW entry in pkg-descr. PR: 188963 Submitted by: Bartek Rutkowski <ports@robakdesign.com> Approved by: portmgr (blanket pre-approval)
33 lines
862 B
Makefile
33 lines
862 B
Makefile
# Created by: Radim Kolar
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= supybot-plugins
|
|
PORTVERSION= 20060723
|
|
PORTREVISION= 1
|
|
CATEGORIES= irc python
|
|
MASTER_SITES= SF/supybot/OldFiles
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
DISTNAME= Supybot-plugins-${PORTVERSION}
|
|
|
|
MAINTAINER= dhn@FreeBSD.org
|
|
COMMENT= Official plugin pack for Supybot
|
|
|
|
RUN_DEPENDS= supybot:${PORTSDIR}/irc/py-supybot
|
|
|
|
USE_PYTHON= yes
|
|
USE_BZIP2= yes
|
|
|
|
post-extract:
|
|
# Delete, because it now included in irc/py-supybot
|
|
.for data in BadWords Dunno Success _darcs
|
|
@${RM} -rf ${WRKSRC}/${data}
|
|
.endfor
|
|
|
|
do-build:
|
|
cd ${WRKSRC} && ${PYTHON_CMD} -c 'import compileall;compileall.compile_dir(".");' && ${PYTHON_CMD} -O -c 'import compileall;compileall.compile_dir(".");'
|
|
|
|
do-install:
|
|
cd ${WRKSRC} && ${FIND} . | ${CPIO} -pdm -R ${BINOWN}:${BINGRP} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/supybot/plugins
|
|
|
|
.include <bsd.port.mk>
|