From owner-svn-ports-head@freebsd.org Thu Jul 14 01:42:10 2016 Return-Path: Delivered-To: svn-ports-head@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 D5322B97397; Thu, 14 Jul 2016 01:42:10 +0000 (UTC) (envelope-from cem@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 A60BF1A2C; Thu, 14 Jul 2016 01:42:10 +0000 (UTC) (envelope-from cem@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u6E1g99x056313; Thu, 14 Jul 2016 01:42:09 GMT (envelope-from cem@FreeBSD.org) Received: (from cem@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u6E1g9Sp056312; Thu, 14 Jul 2016 01:42:09 GMT (envelope-from cem@FreeBSD.org) Message-Id: <201607140142.u6E1g9Sp056312@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cem set sender to cem@FreeBSD.org using -f From: "Conrad E. Meyer" Date: Thu, 14 Jul 2016 01:42:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418510 - head/devel/elfutils 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.22 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: Thu, 14 Jul 2016 01:42:10 -0000 Author: cem (src committer) Date: Thu Jul 14 01:42:09 2016 New Revision: 418510 URL: https://svnweb.freebsd.org/changeset/ports/418510 Log: elfutils: - Add automake BUILD_DEPEND because apparently USE_AUTOTOOLS=automake doesn't. - Add dependency on yet-to-be-committed base ELF header structures. Without them, the library portion of the port isn't very useful. Modified: head/devel/elfutils/Makefile Modified: head/devel/elfutils/Makefile ============================================================================== --- head/devel/elfutils/Makefile Wed Jul 13 23:10:27 2016 (r418509) +++ head/devel/elfutils/Makefile Thu Jul 14 01:42:09 2016 (r418510) @@ -3,7 +3,7 @@ PORTNAME= elfutils PORTVERSION= 0.163 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= devel MASTER_SITES= https://fedorahosted.org/releases/e/l/elfutils/$(PORTVERSION)/ @@ -16,7 +16,8 @@ LICENSE_FILE_GPLv3= ${WRKSRC}/COPYING LICENSE_FILE_GPLv2= ${WRKSRC}/COPYING-GPLV2 LICENSE_FILE_LGPL3= ${WRKSRC}/COPYING-LGPLV3 -BUILD_DEPENDS= gnulib>=0:devel/gnulib +BUILD_DEPENDS= gnulib>=0:devel/gnulib \ + automake>=0:devel/automake OPTIONS_DEFINE= NLS OPTIONS_SUB= yes @@ -40,4 +41,10 @@ post-patch: $(LOCALBASE)/share/gnulib/lib/obstack_printf.c \ $(WRKSRC)/lib -.include +.include + +.if ${OSVERSION} < 1200002 +IGNORE= requires CURRENT elf header changes +.endif + +.include