From owner-svn-ports-head@freebsd.org Tue May 10 09:16:41 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 D4A95B33C0A; Tue, 10 May 2016 09:16:41 +0000 (UTC) (envelope-from shurd@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 ABB4411B2; Tue, 10 May 2016 09:16:41 +0000 (UTC) (envelope-from shurd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u4A9GeHD055122; Tue, 10 May 2016 09:16:40 GMT (envelope-from shurd@FreeBSD.org) Received: (from shurd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u4A9Gei9055118; Tue, 10 May 2016 09:16:40 GMT (envelope-from shurd@FreeBSD.org) Message-Id: <201605100916.u4A9Gei9055118@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: shurd set sender to shurd@FreeBSD.org using -f From: Stephen Hurd Date: Tue, 10 May 2016 09:16:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r414931 - in head/comms/cqrlog: . files 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: Tue, 10 May 2016 09:16:41 -0000 Author: shurd Date: Tue May 10 09:16:40 2016 New Revision: 414931 URL: https://svnweb.freebsd.org/changeset/ports/414931 Log: Update to latest release Fix relative paths to share directory. Use DATADIR in the software instead of constructing it from PREFIX. Modified: head/comms/cqrlog/Makefile head/comms/cqrlog/distinfo head/comms/cqrlog/files/patch-src_dData.pas head/comms/cqrlog/files/patch-src_fGrayline.pas Modified: head/comms/cqrlog/Makefile ============================================================================== --- head/comms/cqrlog/Makefile Tue May 10 09:03:31 2016 (r414930) +++ head/comms/cqrlog/Makefile Tue May 10 09:16:40 2016 (r414931) @@ -2,9 +2,8 @@ # $FreeBSD$ PORTNAME= cqrlog -PORTVERSION= 2.0.0 +PORTVERSION= 2.0.1 DISTVERSIONPREFIX= v -PORTREVISION= 1 CATEGORIES= comms hamradio MAINTAINER= hamradio@FreeBSD.org @@ -53,20 +52,22 @@ post-patch: ${FILESDIR}/environmentoptions.xml.in \ > ${WRKSRC}/environmentoptions.xml ${REINPLACE_CMD} -e s!%%LOCALBASE%%!${LOCALBASE}!g \ - ${WRKSRC}/src/dData.pas ${WRKSRC}/src/dUtils.pas \ - ${WRKSRC}/src/fLoTWExport.pas ${WRKSRC}/src/fPreferences.pas \ - ${WRKSRC}/src/fRotControl.pas ${WRKSRC}/src/fTRXControl.pas \ - ${WRKSRC}/src/fGrayline.pas ${WRKSRC}/help/cwd.html \ - ${WRKSRC}/help/h1.html ${WRKSRC}/src/fPreferences.pas \ - ${WRKSRC}/src/fLoTWExport.lrs ${WRKSRC}/src/fPreferences.lfm \ - ${WRKSRC}/src/fPreferences.lrs ${WRKSRC}/src/fLoTWExport.lfm \ - ${WRKSRC}/src/cqrlog.lpi - ${REINPLACE_CMD} -e s!%%PREFIX%%!${PREFIX}!g \ + ${WRKSRC}/help/cwd.html ${WRKSRC}/help/h1.html \ + ${WRKSRC}/src/cqrlog.lpi ${WRKSRC}/src/dData.pas \ + ${WRKSRC}/src/dUtils.pas ${WRKSRC}/src/fLoTWExport.lrs \ + ${WRKSRC}/src/fLoTWExport.pas ${WRKSRC}/src/fLoTWExport.lfm \ + ${WRKSRC}/src/fPreferences.pas ${WRKSRC}/src/fRotControl.pas \ + ${WRKSRC}/src/fTRXControl.pas ${WRKSRC}/src/fGrayline.pas \ + ${WRKSRC}/src/fPreferences.lfm ${WRKSRC}/src/fPreferences.pas \ + ${WRKSRC}/src/fPreferences.lrs + ${REINPLACE_CMD} -e s!%%DATADIR%%!${DATADIR}!g \ ${WRKSRC}/src/dData.pas ${WRKSRC}/src/fGrayline.pas ${REINPLACE_CMD} -e s!%%LAZARUSDIR%%!${LAZARUS_DIR}!g \ ${WRKSRC}/Makefile ${RM} -rf ${WRKSRC}/src/mysql - ${LAZARUS_DIR}/tools/lazres ${WRKSRC}/src/fLoTWExport.lrs ${WRKSRC}/src/fLoTWExport.lfm - ${LAZARUS_DIR}/tools/lazres ${WRKSRC}/src/fPreferences.lrs ${WRKSRC}/src/fPreferences.lfm + ${LAZARUS_DIR}/tools/lazres ${WRKSRC}/src/fLoTWExport.lrs \ + ${WRKSRC}/src/fLoTWExport.lfm + ${LAZARUS_DIR}/tools/lazres ${WRKSRC}/src/fPreferences.lrs \ + ${WRKSRC}/src/fPreferences.lfm .include Modified: head/comms/cqrlog/distinfo ============================================================================== --- head/comms/cqrlog/distinfo Tue May 10 09:03:31 2016 (r414930) +++ head/comms/cqrlog/distinfo Tue May 10 09:16:40 2016 (r414931) @@ -1,2 +1,2 @@ -SHA256 (ok2cqr-cqrlog-v2.0.0_GH0.tar.gz) = f3c324b3cdb9f0c7a8e9efea05a1776854a0ca4707da52a2dfe99fce251bf860 -SIZE (ok2cqr-cqrlog-v2.0.0_GH0.tar.gz) = 7894125 +SHA256 (ok2cqr-cqrlog-v2.0.1_GH0.tar.gz) = 17eaa17820e668eb21bc8ac75199aac5aa7ab0725b58b77ad3a86e09145d7977 +SIZE (ok2cqr-cqrlog-v2.0.1_GH0.tar.gz) = 7899762 Modified: head/comms/cqrlog/files/patch-src_dData.pas ============================================================================== --- head/comms/cqrlog/files/patch-src_dData.pas Tue May 10 09:03:31 2016 (r414930) +++ head/comms/cqrlog/files/patch-src_dData.pas Tue May 10 09:16:40 2016 (r414931) @@ -1,6 +1,60 @@ ---- src/dData.pas.orig 2016-04-20 16:06:15 UTC +--- src/dData.pas.orig 2016-05-07 08:21:24 UTC +++ src/dData.pas -@@ -1278,12 +1278,12 @@ begin +@@ -910,22 +910,22 @@ begin + if DirectoryExistsUTF8(fHomeDir+'members') then + fMembersDir := fHomeDir+'members'+PathDelim + else +- fMembersDir := ExpandFileNameUTF8('..'+PathDelim+'share'+PathDelim+'cqrlog'+ ++ fMembersDir := ExpandFileNameUTF8('%%DATADIR%%'+ + PathDelim+'members'+PathDelim); + + if DirectoryExistsUTF8(fHomeDir+'zipcodes') then + fZipCodeDir := fHomeDir+'zipcodes'+PathDelim + else +- fZipCodeDir := ExpandFileNameUTF8('..'+PathDelim+'share'+PathDelim+'cqrlog')+ ++ fZipCodeDir := ExpandFileNameUTF8('%%DATADIR%%')+ + PathDelim+'zipcodes'+PathDelim; + + if not DirectoryExistsUTF8(fHomeDir+'images') then + CreateDirUTF8(fHomeDir+'images'); + +- fHelpDir := ExpandFileNameUTF8('..'+PathDelim+'share'+PathDelim+'cqrlog'+ ++ fHelpDir := ExpandFileNameUTF8('%%DATADIR%%'+ + PathDelim+'help'+PathDelim); + +- fShareDir := ExpandFileNameUTF8('..'+PathDelim+'share'+PathDelim+'cqrlog'+ ++ fShareDir := ExpandFileNameUTF8('%%DATADIR%%'+ + PathDelim); + + if not DirectoryExistsUTF8(fHomeDir + 'lotw') then +@@ -948,7 +948,7 @@ procedure TdmData.PrepareCtyData; + var + s,d : String; + begin +- s := ExpandFileNameUTF8('..'+PathDelim+'share'+PathDelim+'cqrlog'+PathDelim+'ctyfiles'+PathDelim); ++ s := ExpandFileNameUTF8('%%DATADIR%%'+PathDelim+'ctyfiles'+PathDelim); + d := fHomeDir+'ctyfiles'+PathDelim; + + if not FileExistsUTF8(fHomeDir+'ctyfiles'+PathDelim+'AreaOK1RR.tbl') then +@@ -1016,7 +1016,7 @@ procedure TdmData.PrepareXplanetDir; + var + s,d : String; + begin +- s := ExpandFileNameUTF8('..'+PathDelim+'share'+PathDelim+'cqrlog'+PathDelim+'xplanet'+PathDelim); ++ s := ExpandFileNameUTF8('%%DATADIR%%'+PathDelim+'xplanet'+PathDelim); + d := fHomeDir+'xplanet'+PathDelim; + if not FileExistsUTF8(d+'geoconfig') then + CopyFile(s+'geoconfig',d+'geoconfig') +@@ -1026,7 +1026,7 @@ procedure TdmData.PrepareVoice_keyerDir; + var + s,d : String; + begin +- s := ExpandFileNameUTF8('..'+PathDelim+'share'+PathDelim+'cqrlog'+PathDelim+'voice_keyer'+PathDelim); ++ s := ExpandFileNameUTF8('%%DATADIR%%'+PathDelim+'voice_keyer'+PathDelim); + d := fHomeDir+'voice_keyer'+PathDelim; + if not FileExistsUTF8(d+'voice_keyer.sh') then + CopyFile(s+'voice_keyer.sh',d+'voice_keyer.sh') +@@ -1288,12 +1288,12 @@ begin { @@ -19,7 +73,7 @@ if mysqld = '' then //don't know where mysqld is, so hopefully will be in $PATH mysqld := 'mysqld'; -@@ -3452,12 +3452,12 @@ var +@@ -3462,12 +3462,12 @@ var l : TStringList; info : String; begin Modified: head/comms/cqrlog/files/patch-src_fGrayline.pas ============================================================================== --- head/comms/cqrlog/files/patch-src_fGrayline.pas Tue May 10 09:03:31 2016 (r414930) +++ head/comms/cqrlog/files/patch-src_fGrayline.pas Tue May 10 09:16:40 2016 (r414931) @@ -1,11 +1,11 @@ ---- src/fGrayline.pas.orig 2016-04-20 16:06:15 UTC +--- src/fGrayline.pas.orig 2016-05-07 08:21:24 UTC +++ src/fGrayline.pas @@ -383,7 +383,7 @@ begin RBNSpotList[i].band := ''; ImageFile := dmData.HomeDir+'images'+PathDelim+'grayline.bmp'; if not FileExists(ImageFile) then - ImageFile := ExpandFileNameUTF8('..'+PathDelim+'share'+PathDelim+'cqrlog'+ -+ ImageFile := ExpandFileNameUTF8('%%PREFIX%%'+PathDelim+'share'+PathDelim+'cqrlog'+ ++ ImageFile := ExpandFileNameUTF8('%%DATADIR%%'+ PathDelim+'images'+PathDelim+'grayline.bmp'); ob:=new(Pgrayline,init(ImageFile)) end;