From owner-svn-ports-all@freebsd.org Sat May 7 15:41:51 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B8860B31C2C; Sat, 7 May 2016 15:41:51 +0000 (UTC) (envelope-from lth@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 863CE1217; Sat, 7 May 2016 15:41:51 +0000 (UTC) (envelope-from lth@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u47FfoZu050670; Sat, 7 May 2016 15:41:50 GMT (envelope-from lth@FreeBSD.org) Received: (from lth@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u47FfolY050669; Sat, 7 May 2016 15:41:50 GMT (envelope-from lth@FreeBSD.org) Message-Id: <201605071541.u47FfolY050669@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: lth set sender to lth@FreeBSD.org using -f From: Lars Thegler Date: Sat, 7 May 2016 15:41:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r414775 - head/mail/p5-Email-Abstract 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.22 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: Sat, 07 May 2016 15:41:51 -0000 Author: lth Date: Sat May 7 15:41:50 2016 New Revision: 414775 URL: https://svnweb.freebsd.org/changeset/ports/414775 Log: - fix missing dependency [1] - add LICENSE - bump PORTREVISION Noticed by: John Hein [1] Modified: head/mail/p5-Email-Abstract/Makefile Modified: head/mail/p5-Email-Abstract/Makefile ============================================================================== --- head/mail/p5-Email-Abstract/Makefile Sat May 7 11:56:27 2016 (r414774) +++ head/mail/p5-Email-Abstract/Makefile Sat May 7 15:41:50 2016 (r414775) @@ -2,6 +2,7 @@ PORTNAME= Email-Abstract PORTVERSION= 3.008 +PORTREVISION= 1 CATEGORIES= mail perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -9,6 +10,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= lth@FreeBSD.org COMMENT= Unified interface to mail representations +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + RUN_DEPENDS= p5-Email-Simple>=1.998:mail/p5-Email-Simple \ p5-MRO-Compat>=0:devel/p5-MRO-Compat BUILD_DEPENDS:= ${RUN_DEPENDS} @@ -16,4 +20,11 @@ BUILD_DEPENDS:= ${RUN_DEPENDS} USES= perl5 USE_PERL5= configure -.include +.include + +.if ${PERL_LEVEL} >= 502000 +BUILD_DEPENDS+= p5-Module-Pluggable>1.5:devel/p5-Module-Pluggable +RUN_DEPENDS+= p5-Module-Pluggable>1.5:devel/p5-Module-Pluggable +.endif + +.include