From owner-svn-ports-all@FreeBSD.ORG Sat Oct 6 20:06:21 2012 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4F96B106564A; Sat, 6 Oct 2012 20:06:21 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 391408FC0C; Sat, 6 Oct 2012 20:06:21 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q96K6L5w031710; Sat, 6 Oct 2012 20:06:21 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q96K6Lew031707; Sat, 6 Oct 2012 20:06:21 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201210062006.q96K6Lew031707@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Sat, 6 Oct 2012 20:06:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305399 - head/www/p5-libwww X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.5 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, 06 Oct 2012 20:06:21 -0000 Author: sunpoet Date: Sat Oct 6 20:06:20 2012 New Revision: 305399 URL: http://svn.freebsd.org/changeset/ports/305399 Log: - Convert to new options framework - Cleanup Makefile header - Rename option: SSL -> HTTPS Modified: head/www/p5-libwww/Makefile (contents, props changed) Modified: head/www/p5-libwww/Makefile ============================================================================== --- head/www/p5-libwww/Makefile Sat Oct 6 20:00:29 2012 (r305398) +++ head/www/p5-libwww/Makefile Sat Oct 6 20:06:20 2012 (r305399) @@ -1,9 +1,5 @@ -# New ports collection makefile for: p5-libwww -# Date created: September 30th 1996 -# Whom: James FitzGibbon -# +# Created by: James FitzGibbon # $FreeBSD$ -# PORTNAME= libwww PORTVERSION= 6.04 @@ -30,7 +26,7 @@ BUILD_DEPENDS= p5-Authen-NTLM>=1.02:${PO p5-WWW-RobotRules>=6:${PORTSDIR}/www/p5-WWW-RobotRules RUN_DEPENDS:= ${BUILD_DEPENDS} -OPTIONS= SSL "Enable https support" off +OPTIONS_DEFINE= HTTPS CONFIGURE_ARGS= --aliases PERL_CONFIGURE= yes @@ -56,7 +52,7 @@ MAN3= LWP.3 \ .include -.if defined(WITH_SSL) +.if ${PORT_OPTIONS:MHTTPS} BUILD_DEPENDS+= p5-Crypt-SSLeay>=0:${PORTSDIR}/security/p5-Crypt-SSLeay \ p5-LWP-Protocol-https>=0:${PORTSDIR}/www/p5-LWP-Protocol-https RUN_DEPENDS+= p5-Crypt-SSLeay>=0:${PORTSDIR}/security/p5-Crypt-SSLeay \