mirror of
https://git.freebsd.org/ports.git
synced 2025-05-22 11:48:35 -04:00
Dave Shar <koalative at gmail.com> wishes to maintain these ports with my help. deskutils/py-send2trash - Change Makefile header, use my name and @FreeBSD.org email - Pass maintainership to koalative at gmail.com - Change license BSD to BSD3CLAUSE - Use USE_PYDISTUTILS=yes instead of easy_install - Remove PYDISTUTILS_PKGNAME and add PYDISTUTILS_AUTOPLIST graphics/founts - Change Makefile header, use my name and @FreeBSD.org email - Pass maintainership to koalative at gmail.com - Add REINPLACE, fix ELAST - Change distinfo, remove supplied icon graphics/py-pyggel - Pass maintainership to koalative at gmail.com graphics/radius-engine - Change Makefile header, use my name and @FreeBSD.org email - Pass maintainership to koalative at gmail.com irc/py-fishcrypt - Pass maintainership to koalative at gmail.com sysutils/gigolo - Change Makefile header, use my name and @FreeBSD.org email - Pass maintainership to koalative at gmail.com - Use tar:bzip2 instead of USE_BZIP2=yes - Remove TODO from DOCS - Remove useless .include <bsd.port.options.mk> - Change pkg-plist, remove mtree
48 lines
1 KiB
Makefile
48 lines
1 KiB
Makefile
# Created by: Rusmir Dusko <nemysis@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= py-fishcrypt
|
|
DISTVERSION= 4.21
|
|
CATEGORIES= irc security
|
|
DIST_SUBDIR= python
|
|
|
|
MAINTAINER= koalative@gmail.com
|
|
COMMENT= FiSH/Mircryption clone for XChat/HexChat
|
|
|
|
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pycrypto>=0:${PORTSDIR}/security/py-pycrypto
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= kwaaak
|
|
GH_PROJECT= py-fishcrypt
|
|
GH_TAGNAME= ${GH_COMMIT}
|
|
GH_COMMIT= c001c75
|
|
|
|
USES= dos2unix
|
|
USE_PYTHON_RUN= yes
|
|
NO_BUILD= yes
|
|
|
|
SUB_FILES= pkg-message
|
|
|
|
PORTDOCS= README.md
|
|
|
|
PLIST_FILES= %%DATADIR%%/fishcrypt.py
|
|
PLIST_DIRS= %%DATADIR%%
|
|
|
|
OPTIONS_DEFINE= DOCS HEXCHAT XCHAT
|
|
|
|
HEXCHAT_DESC= FiSH encryption for HexChat
|
|
XCHAT_DESC= FiSH encryption for XChat
|
|
|
|
OPTIONS_SUB= yes
|
|
|
|
HEXCHAT_RUN_DEPENDS= hexchat:${PORTSDIR}/irc/hexchat
|
|
XCHAT_RUN_DEPENDS= xchat:${PORTSDIR}/irc/xchat
|
|
|
|
do-install:
|
|
@${MKDIR} ${STAGEDIR}${DATADIR}
|
|
${INSTALL_SCRIPT} ${WRKSRC}/fishcrypt.py ${STAGEDIR}${DATADIR}
|
|
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|