From owner-svn-ports-all@FreeBSD.ORG Fri Aug 2 02:50:15 2013 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 600D83D0; Fri, 2 Aug 2013 02:50:15 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 2DE2225F0; Fri, 2 Aug 2013 02:50:15 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r722oEk3044704; Fri, 2 Aug 2013 02:50:14 GMT (envelope-from danfe@svn.freebsd.org) Received: (from danfe@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r722oEmF044399; Fri, 2 Aug 2013 02:50:14 GMT (envelope-from danfe@svn.freebsd.org) Message-Id: <201308020250.r722oEmF044399@svn.freebsd.org> From: Alexey Dokuchaev Date: Fri, 2 Aug 2013 02:50:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r324137 - head/mail/wmpop3 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Aug 2013 02:50:15 -0000 Author: danfe Date: Fri Aug 2 02:50:14 2013 New Revision: 324137 URL: http://svnweb.freebsd.org/changeset/ports/324137 Log: - Unbreak parallel (-jX) builds by removing bogus "clean" from ALL_TARGET - Avoid using not-quite-compatible :L modifier in WRKSRC assignment - Add LICENSE (GPLv2), properly define and handle portdocs and examples - Generally clean up Makefile and port description while I am here Modified: head/mail/wmpop3/Makefile head/mail/wmpop3/pkg-descr Modified: head/mail/wmpop3/Makefile ============================================================================== --- head/mail/wmpop3/Makefile Fri Aug 2 01:25:23 2013 (r324136) +++ head/mail/wmpop3/Makefile Fri Aug 2 02:50:14 2013 (r324137) @@ -1,7 +1,6 @@ # Created by: Jim Mock # $FreeBSD$ - PORTNAME= wmpop3 PORTVERSION= 0.5.6a PORTREVISION= 4 @@ -10,26 +9,32 @@ MASTER_SITES= # DISTNAME= WMPop3-${PORTVERSION} MAINTAINER= ports@FreeBSD.org -COMMENT= POP3 mail check for the Window Maker dock +COMMENT= Dockapp to check email via POP3 protocol -WRKSRC= ${WRKDIR}/${DISTNAME:L}/wmpop3 +LICENSE= GPLv2 USE_CSTD= gnu89 USE_XORG= xpm -ALL_TARGET= clean all -MAKE_JOBS_UNSAFE= yes -PLIST_FILES= bin/wmpop3 %%EXAMPLESDIR%%/wmpop3rc -PLIST_DIRS= %%EXAMPLESDIR%% -PORTDOCS= README +WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}/${PORTNAME} + +PLIST_FILES= bin/wmpop3 +PORTDOCS= CHANGE_LOG README +PORTEXAMPLES= wmpop3rc + +OPTIONS_DEFINE= DOCS EXAMPLES + +.include do-install: ${INSTALL_PROGRAM} ${WRKSRC}/wmpop3 ${PREFIX}/bin +.if ${PORT_OPTIONS:MEXAMPLES} @${MKDIR} ${EXAMPLESDIR} ${INSTALL_DATA} ${WRKSRC}/wmpop3rc ${EXAMPLESDIR} -.if !defined(NOPORTDOCS) +.endif +.if ${PORT_OPTIONS:MDOCS} @${MKDIR} ${DOCSDIR} - @${INSTALL_DATA} ${WRKDIR}/${PORTNAME}-${PORTVERSION}/README ${DOCSDIR} + ${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/../,} ${DOCSDIR} .endif .include Modified: head/mail/wmpop3/pkg-descr ============================================================================== --- head/mail/wmpop3/pkg-descr Fri Aug 2 01:25:23 2013 (r324136) +++ head/mail/wmpop3/pkg-descr Fri Aug 2 02:50:14 2013 (r324137) @@ -1,3 +1,3 @@ -WMPop3 is a POP3 mail box checker. It will connect to a POP3 server -to check if you have mail, if you do then it will alert you of new -mail and how many messages are currently in your mail box. +WMPop3 is a POP3 mail box checker. It will connect to a POP3 server to +check if you have mail, if you do then it will alert you of new mail and +how many messages are currently in your mailbox.