diff options
author | pawel <pawel@FreeBSD.org> | 2014-06-06 05:35:21 +0800 |
---|---|---|
committer | pawel <pawel@FreeBSD.org> | 2014-06-06 05:35:21 +0800 |
commit | 93c895f8e3f502390a9314863145bedd7df7116d (patch) | |
tree | c39fc5dc19983d2b43c06c95c8b65f304e7102a4 | |
parent | a9ced92fa13302bfbdeea390b3d6febd1a2e36d8 (diff) | |
download | freebsd-ports-gnome-93c895f8e3f502390a9314863145bedd7df7116d.tar.gz freebsd-ports-gnome-93c895f8e3f502390a9314863145bedd7df7116d.tar.zst freebsd-ports-gnome-93c895f8e3f502390a9314863145bedd7df7116d.zip |
- Add staging support
- Convert to USES=shebangfix, bump PORTREVISION - shebangs changed
- Convert to new options framework
- Remove Author from pkg-descr
-rw-r--r-- | mail/pymsgauth/Makefile | 30 | ||||
-rw-r--r-- | mail/pymsgauth/pkg-descr | 1 |
2 files changed, 15 insertions, 16 deletions
diff --git a/mail/pymsgauth/Makefile b/mail/pymsgauth/Makefile index 1cd1b0862154..7109f1205ad9 100644 --- a/mail/pymsgauth/Makefile +++ b/mail/pymsgauth/Makefile @@ -3,35 +3,35 @@ PORTNAME= pymsgauth PORTVERSION= 2.1.0 +PORTREVISION= 1 CATEGORIES= mail python MASTER_SITES= http://pyropus.ca/software/pymsgauth/ MAINTAINER= ports@FreeBSD.org COMMENT= Automatically process qsecretary confirmation requests +USES= shebangfix +SHEBANG_FILES= pymsgauth-clean pymsgauth-confirm pymsgauth-mail USE_PYTHON= yes +NO_BUILD= yes SUB_FILES= pkg-message DOCS= BUGS CHANGELOG pymsgauth.txt pymsgauth.html EXAMPLES= pymsgauthrc-example -NO_STAGE= yes -do-build: - ${REINPLACE_CMD} -e 's,#!/usr/bin/python,#!/usr/bin/env python,' \ - ${WRKSRC}/pymsgauth-* - ${RM} ${WRKSRC}/pymsgauth-*.bak +OPTIONS_DEFINE= DOCS do-install: - @${MKDIR} ${DATADIR} - ${INSTALL_SCRIPT} ${WRKSRC}/*.py ${WRKSRC}/pymsgauth-* ${DATADIR} - ${LN} -sf ${DATADIR}/pymsgauth-* ${PREFIX}/bin - @${MKDIR} ${EXAMPLESDIR} - cd ${WRKSRC} && ${INSTALL_DATA} ${EXAMPLES} ${EXAMPLESDIR} -.if !defined(NOPORTDOCS) - @${MKDIR} ${DOCSDIR} - cd ${WRKSRC} && ${INSTALL_DATA} ${DOCS} ${DOCSDIR} -.endif - @${CAT} ${PKGMESSAGE} + @${MKDIR} ${STAGEDIR}${DATADIR} + ${INSTALL_SCRIPT} ${WRKSRC}/*.py ${WRKSRC}/pymsgauth-* \ + ${STAGEDIR}${DATADIR} +.for f in clean confirm mail + ${LN} -sf ${DATADIR}/pymsgauth-${f} ${STAGEDIR}${PREFIX}/bin +.endfor + @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} + ${INSTALL_DATA} ${EXAMPLES:S|^|${WRKSRC}/|} ${STAGEDIR}${EXAMPLESDIR} + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${DOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR} .include <bsd.port.mk> diff --git a/mail/pymsgauth/pkg-descr b/mail/pymsgauth/pkg-descr index a8c77b33ff83..17d1fc61d350 100644 --- a/mail/pymsgauth/pkg-descr +++ b/mail/pymsgauth/pkg-descr @@ -2,5 +2,4 @@ pymsgauth is a toolkit for automatically and securely dealing with qsecretary confirmation notices (used on mailing lists run by D.J. Bernstein). It is written in Python, and licensed under GPL. -Author: Charles Cazabon WWW: http://pyropus.ca/software/pymsgauth/ |