From owner-svn-ports-all@FreeBSD.ORG Sun Oct 7 13:11: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 31826106566B; Sun, 7 Oct 2012 13:11: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 1BA068FC12; Sun, 7 Oct 2012 13:11: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 q97DBK2V004143; Sun, 7 Oct 2012 13:11:20 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q97DBK8a004141; Sun, 7 Oct 2012 13:11:20 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201210071311.q97DBK8a004141@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Sun, 7 Oct 2012 13:11:20 +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: r305471 - head/net/tintin++ 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: Sun, 07 Oct 2012 13:11:21 -0000 Author: sunpoet Date: Sun Oct 7 13:11:20 2012 New Revision: 305471 URL: http://svn.freebsd.org/changeset/ports/305471 Log: - Pet portlint: remove ABI version number from LIB_DEPENDS - Convert to new options framework - Cleanup Makefile header Modified: head/net/tintin++/Makefile (contents, props changed) Modified: head/net/tintin++/Makefile ============================================================================== --- head/net/tintin++/Makefile Sun Oct 7 13:07:29 2012 (r305470) +++ head/net/tintin++/Makefile Sun Oct 7 13:11:20 2012 (r305471) @@ -1,9 +1,5 @@ -# New ports collection makefile for: tintin++ -# Date created: 15 Nov 1994 -# Whom: ache -# +# Created by: ache # $FreeBSD$ -# PORTNAME= tintin++ PORTVERSION= 2.00.8 @@ -17,9 +13,10 @@ COMMENT= A client program to help playin LICENSE= GPLv2 -LIB_DEPENDS= pcre.1:${PORTSDIR}/devel/pcre +LIB_DEPENDS= pcre:${PORTSDIR}/devel/pcre -OPTIONS= BIG5 "Big5 support" off +OPTIONS_DEFINE= BIG5 DOCS +BIG5_DESC= Big5 support CONFIGURE_ARGS= --includedir=${LOCALBASE}/include \ --libdir=${LOCALBASE}/lib \ @@ -37,7 +34,7 @@ PORTDOCS= ${DOCS:T} .include -.if defined(WITH_BIG5) +.if ${PORT_OPTIONS:MBIG5} CONFIGURE_ARGS+=--enable-big5 .endif @@ -46,7 +43,7 @@ post-configure: do-install: ${INSTALL_PROGRAM} ${WRKSRC}/tt++ ${PREFIX}/bin/ -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} ${INSTALL} -d ${DOCSDIR}/ cd ${WRKSRC}/../ && ${INSTALL_DATA} ${DOCS} ${DOCSDIR}/ .endif