Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 15 Feb 2018 14:30:20 +0000 (UTC)
From:      Dmitry Marakasov <amdmi3@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r461925 - head/mail/mbox2imap
Message-ID:  <201802151430.w1FEUKj5054356@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: amdmi3
Date: Thu Feb 15 14:30:19 2018
New Revision: 461925
URL: https://svnweb.freebsd.org/changeset/ports/461925

Log:
  - Add LICENSE
  - Fix shebangs
  - Add NO_ARCH
  
  Approved by:	portmgr blanket

Modified:
  head/mail/mbox2imap/Makefile

Modified: head/mail/mbox2imap/Makefile
==============================================================================
--- head/mail/mbox2imap/Makefile	Thu Feb 15 13:51:44 2018	(r461924)
+++ head/mail/mbox2imap/Makefile	Thu Feb 15 14:30:19 2018	(r461925)
@@ -3,21 +3,24 @@
 
 PORTNAME=	mbox2imap
 PORTVERSION=	1.0
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	mail
 MASTER_SITES=	http://BSDforge.com/projects/source/mail/mbox2imap/
 
 MAINTAINER=	portmaster@BSDforge.com
 COMMENT=	Upload email stored in mbox file format to an IMAP server
 
-#LICENSE=	(if author can still be reached, ask; else BSD2CLAUSE)
+LICENSE=	NONE
 
-USES=		python tar:xz
+USES=		python shebangfix tar:xz
+SHEBANG_FILES=	${WRKSRC}/${PORTNAME}
+NO_WRKSUBDIR=	yes
 NO_BUILD=	yes
+NO_ARCH=	yes
 
 PLIST_FILES=	bin/${PORTNAME}
 
 do-install:
-	${INSTALL_SCRIPT} ${WRKDIR}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin
+	${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin
 
 .include <bsd.port.mk>



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201802151430.w1FEUKj5054356>