From owner-svn-ports-all@freebsd.org Thu Aug 24 09:01:12 2017 Return-Path: Delivered-To: svn-ports-all@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 B688EDDA1C8; Thu, 24 Aug 2017 09:01:12 +0000 (UTC) (envelope-from araujo@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 857797024A; Thu, 24 Aug 2017 09:01:12 +0000 (UTC) (envelope-from araujo@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v7O91Bpe083304; Thu, 24 Aug 2017 09:01:11 GMT (envelope-from araujo@FreeBSD.org) Received: (from araujo@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v7O91Bdd083302; Thu, 24 Aug 2017 09:01:11 GMT (envelope-from araujo@FreeBSD.org) Message-Id: <201708240901.v7O91Bdd083302@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: araujo set sender to araujo@FreeBSD.org using -f From: Marcelo Araujo Date: Thu, 24 Aug 2017 09:01:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r448652 - in head/print/gl2ps: . files X-SVN-Group: ports-head X-SVN-Commit-Author: araujo X-SVN-Commit-Paths: in head/print/gl2ps: . files X-SVN-Commit-Revision: 448652 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 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: Thu, 24 Aug 2017 09:01:12 -0000 Author: araujo Date: Thu Aug 24 09:01:11 2017 New Revision: 448652 URL: https://svnweb.freebsd.org/changeset/ports/448652 Log: The LLD linker does not include default search paths, so /usr/lib has to be explicitly specified also bump PORTREVISION. PR: ports/218399 Submitted by: emaste Modified: head/print/gl2ps/Makefile head/print/gl2ps/files/Makefile.lib Modified: head/print/gl2ps/Makefile ============================================================================== --- head/print/gl2ps/Makefile Thu Aug 24 08:25:20 2017 (r448651) +++ head/print/gl2ps/Makefile Thu Aug 24 09:01:11 2017 (r448652) @@ -3,7 +3,7 @@ PORTNAME= gl2ps PORTVERSION= 1.3.9 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= print graphics MASTER_SITES= http://www.geuz.org/gl2ps/src/ EXTRACT_SUFX= .tgz Modified: head/print/gl2ps/files/Makefile.lib ============================================================================== --- head/print/gl2ps/files/Makefile.lib Thu Aug 24 08:25:20 2017 (r448651) +++ head/print/gl2ps/files/Makefile.lib Thu Aug 24 09:01:11 2017 (r448652) @@ -1,5 +1,5 @@ CFLAGS+= -DHAVE_ZLIB -O3 -fPIC -I${LOCALBASE}/include -LDFLAGS= -shared -E -lGL -L${LOCALBASE}/lib -lX11 -lXi -lXmu -lm -lz +LDFLAGS= -shared -E -lGL -L${LOCALBASE}/lib -L/usr/lib -lX11 -lXi -lXmu -lm -lz all: libgl2ps.so libgl2ps.a