From owner-svn-ports-head@FreeBSD.ORG Fri Dec 14 02:35:13 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1C9B4236; Fri, 14 Dec 2012 02:35:13 +0000 (UTC) (envelope-from araujo@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id D7E0E8FC08; Fri, 14 Dec 2012 02:35:12 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id qBE2ZCHZ065507; Fri, 14 Dec 2012 02:35:12 GMT (envelope-from araujo@svn.freebsd.org) Received: (from araujo@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id qBE2ZCvP065506; Fri, 14 Dec 2012 02:35:12 GMT (envelope-from araujo@svn.freebsd.org) Message-Id: <201212140235.qBE2ZCvP065506@svn.freebsd.org> From: Marcelo Araujo Date: Fri, 14 Dec 2012 02:35:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r308877 - head/ftp/quftp X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Dec 2012 02:35:13 -0000 Author: araujo Date: Fri Dec 14 02:35:12 2012 New Revision: 308877 URL: http://svnweb.freebsd.org/changeset/ports/308877 Log: - Support USE_READLINE. - Add MAKE_JOBS_SAFE. - Set CPPFLAGS and LDFLAGS in a proper way. - Bump PORTREVISION. PR: ports/172000 Submitted by: KATO Tsuguru Modified: head/ftp/quftp/Makefile (contents, props changed) Modified: head/ftp/quftp/Makefile ============================================================================== --- head/ftp/quftp/Makefile Fri Dec 14 02:32:57 2012 (r308876) +++ head/ftp/quftp/Makefile Fri Dec 14 02:35:12 2012 (r308877) @@ -1,29 +1,33 @@ -# New ports collection makefile for: quftp -# Date created: 10 December 2003 -# Whom: Frank Laszlo -# +# Created by: Frank Laszlo # $FreeBSD$ -# PORTNAME= quftp PORTVERSION= 1.0.7 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= ftp MASTER_SITES= SF MAINTAINER= ports@FreeBSD.org COMMENT= A scriptable FTP client -LIB_DEPENDS= readline.6:${PORTSDIR}/devel/readline +LICENSE= GPLv2 +USE_NCURSES= yes +USE_READLINE= yes GNU_CONFIGURE= yes +MAKE_JOBS_SAFE= yes -CFLAGS+= ${PTHREAD_CFLAGS} -L${LOCALBASE}/lib ${PTHREAD_LIBS} +CPPFLAGS+= ${PTHREAD_CFLAGS} +LDFLAGS+= ${PTHREAD_LIBS} MAN1= quftp.1 PLIST_FILES= bin/quftp -pre-configure: - @${REINPLACE_CMD} -e 's|-O6|-O2|g' ${WRKSRC}/Makefile.in +post-patch: + @${REINPLACE_CMD} -e \ + 's|^CFLAGS|#CFLAGS|' ${WRKSRC}/Makefile.in + +post-install: + @${STRIP_CMD} ${PREFIX}/bin/quftp .include