Date: Thu, 21 Mar 2019 08:16:11 +0000 (UTC) From: Raphael Kubo da Costa <rakuco@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r496431 - branches/2019Q1/print/lyx Message-ID: <201903210816.x2L8GB1v093564@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: rakuco Date: Thu Mar 21 08:16:10 2019 New Revision: 496431 URL: https://svnweb.freebsd.org/changeset/ports/496431 Log: print/lyx: Fix a bad MFH done in r496238. That commit was only supposed to backport changes to the port's dependencies and the post-patch target, yet it changed MINOR_VERSION, WRKSRC and DISTVERSIONSUFFIX, causing make fetch, make checksum and other targets to fail. Approved by: ports-secteam (implicit) Modified: branches/2019Q1/print/lyx/Makefile Modified: branches/2019Q1/print/lyx/Makefile ============================================================================== --- branches/2019Q1/print/lyx/Makefile Thu Mar 21 08:15:01 2019 (r496430) +++ branches/2019Q1/print/lyx/Makefile Thu Mar 21 08:16:10 2019 (r496431) @@ -3,6 +3,7 @@ PORTNAME= lyx PORTVERSION= ${MAJOR_VERSION}.${MINOR_VERSION} +DISTVERSIONSUFFIX= -2 PORTREVISION= 3 CATEGORIES= print editors MASTER_SITES= ftp://ftp.lyx.org/pub/lyx/stable/${MAJOR_VERSION}.x/ \ @@ -19,8 +20,10 @@ LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libboost_regex.so:devel/boost-libs \ libmythes-1.2.so:textproc/mythes +WRKSRC= ${WRKDIR}/${DISTNAME:S,${DISTVERSIONSUFFIX}$$,,} + MAJOR_VERSION= 2.3 -MINOR_VERSION= 2 +MINOR_VERSION= 1 USES= compiler:c++11-lang desktop-file-utils gmake iconv pkgconfig \ perl5 python:2.7 qt:5 shebangfix tar:xz
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201903210816.x2L8GB1v093564>