From owner-svn-ports-all@freebsd.org Fri Feb 23 22:41:10 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DAC84F26C20; Fri, 23 Feb 2018 22:41:10 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 8CD307C945; Fri, 23 Feb 2018 22:41:10 +0000 (UTC) (envelope-from yuri@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 87C701CAA5; Fri, 23 Feb 2018 22:41:10 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w1NMfAh1015967; Fri, 23 Feb 2018 22:41:10 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w1NMfAhd015966; Fri, 23 Feb 2018 22:41:10 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201802232241.w1NMfAhd015966@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Fri, 23 Feb 2018 22:41:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r462751 - head/textproc/wv X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: head/textproc/wv X-SVN-Commit-Revision: 462751 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.25 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: Fri, 23 Feb 2018 22:41:11 -0000 Author: yuri Date: Fri Feb 23 22:41:10 2018 New Revision: 462751 URL: https://svnweb.freebsd.org/changeset/ports/462751 Log: textproc/wv: Added license, dependencies, etc. * Added LICENSE/LICENSE_FILE * Added missing dependencies to LIB_DEPENDS * Added USES=jpeg * Added USE_XORG=x11 * Removed CPPFLAGS/LDFLAGS (not needed) PR: 222584 Submitted by: Yasuhiro KIMURA Approved by: tcberner (mentor, implicit) Modified: head/textproc/wv/Makefile Modified: head/textproc/wv/Makefile ============================================================================== --- head/textproc/wv/Makefile Fri Feb 23 22:14:12 2018 (r462750) +++ head/textproc/wv/Makefile Fri Feb 23 22:41:10 2018 (r462751) @@ -3,26 +3,30 @@ PORTNAME= wv PORTVERSION= 1.2.9 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= textproc MASTER_SITES= http://www.abisource.com/downloads/wv/${PORTVERSION}/ MAINTAINER= ports@FreeBSD.org COMMENT= Library and executables to access Microsoft Word files -LIB_DEPENDS= libwmf.so:graphics/libwmf +LICENSE= GPLv2+ +LICENSE_FILE= ${WRKSRC}/COPYING -USE_GNOME= libgsf +LIB_DEPENDS= libfreetype.so:print/freetype2 \ + libpng16.so:graphics/png \ + libwmf.so:graphics/libwmf + +USES= gmake jpeg pkgconfig libtool GNU_CONFIGURE= yes -USES= gmake pkgconfig libtool -CPPFLAGS+= -I${LOCALBASE}/include -LDFLAGS+= -L${LOCALBASE}/lib CONFIGURE_ENV= MKDIR_P="${MKDIR}" CONFIGURE_ARGS= --with-png=${LOCALBASE} \ --with-libwmf=${LOCALBASE} MAKEFILE= GNUmakefile MAKE_ARGS+= pkgconfigdir="${PREFIX}/libdata/pkgconfig" MAKE_ARGS+= INSTALL_STRIP_FLAG="${STRIP}" +USE_GNOME= libgsf +USE_XORG= x11 USE_LDCONFIG= yes .include