Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 23 Feb 2018 22:41:10 +0000 (UTC)
From:      Yuri Victorovich <yuri@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r462751 - head/textproc/wv
Message-ID:  <201802232241.w1NMfAhd015966@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 <yasu@utahime.org>
  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 <bsd.port.mk>



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201802232241.w1NMfAhd015966>