From owner-svn-ports-head@FreeBSD.ORG Mon Sep 3 19:46:42 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 62B6C1065688; Mon, 3 Sep 2012 19:46:42 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 4D4198FC19; Mon, 3 Sep 2012 19:46:42 +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 q83Jkgh9034829; Mon, 3 Sep 2012 19:46:42 GMT (envelope-from ehaupt@svn.freebsd.org) Received: (from ehaupt@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q83Jkg9Y034827; Mon, 3 Sep 2012 19:46:42 GMT (envelope-from ehaupt@svn.freebsd.org) Message-Id: <201209031946.q83Jkg9Y034827@svn.freebsd.org> From: Emanuel Haupt Date: Mon, 3 Sep 2012 19:46:42 +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: r303616 - head/textproc/uni2ascii X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 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: Mon, 03 Sep 2012 19:46:42 -0000 Author: ehaupt Date: Mon Sep 3 19:46:41 2012 New Revision: 303616 URL: http://svn.freebsd.org/changeset/ports/303616 Log: Fix build on 7.x by removing the dependency to devel/libgetline prior to 800067 and resort to to fgetln(). Notified by: pointyhat (via beat) Modified: head/textproc/uni2ascii/Makefile Modified: head/textproc/uni2ascii/Makefile ============================================================================== --- head/textproc/uni2ascii/Makefile Mon Sep 3 19:28:44 2012 (r303615) +++ head/textproc/uni2ascii/Makefile Mon Sep 3 19:46:41 2012 (r303616) @@ -25,18 +25,10 @@ MAKE_ARGS= CC="${CC}" CFLAGS="${CFLAGS}" MAN1= uni2ascii.1 ascii2uni.1 PLIST_FILES= bin/uni2ascii bin/ascii2uni -.include - -.if ${OSVERSION} < 800067 -LIB_DEPENDS= getline.1:${PORTSDIR}/devel/libgetline -LDFLAGS+= -lgetline -CFLAGS+= -I${LOCALBASE}/include -L${LOCALBASE}/lib -.endif - do-install: .for f in ${PORTNAME} ascii2uni ${INSTALL_PROGRAM} ${WRKSRC}/${f} ${PREFIX}/bin ${INSTALL_MAN} ${WRKSRC}/${f}.1 ${MAN1PREFIX}/man/man1 .endfor -.include +.include