diff --git a/accessibility/py-atspi/files/patch-pyatspi_registry.py b/accessibility/py-atspi/files/patch-pyatspi_registry.py new file mode 100644 index 00000000000..b4cf966abc7 --- /dev/null +++ b/accessibility/py-atspi/files/patch-pyatspi_registry.py @@ -0,0 +1,69 @@ +Upstream patch for https://gitlab.gnome.org/GNOME/pyatspi2/issues/1 + +diff --git pyatspi/registry.py pyatspi/registry.py +index cb28395..f73ee16 100644 +--- pyatspi/registry.py ++++ pyatspi/registry.py +@@ -50,9 +50,9 @@ class Registry(object): + reference to the Accessibility.Registry singleton. Doing so is harmless and + has no point. + +- @@ivar async: Should event dispatch to local listeners be decoupled from event +- receiving from the registry? +- @@type async: boolean ++ @@ivar asynchronous: Should event dispatch to local listeners be decoupled ++ from event receiving from the registry? ++ @@type asynchronous: boolean + @@ivar reg: Reference to the real, wrapped registry object + @@type reg: Accessibility.Registry + @@ivar dev: Reference to the device controller +@@ -111,25 +111,44 @@ def _set_registry (self, main_loop_type, app_name=None): + + self.has_implementations = True + +- self.async = False # not fully supported yet ++ self.asynchronous = False # not fully supported yet + self.started = False + self.event_listeners = dict() + ++ def __getattr__(self, name): ++ """ ++ For backwards compatibility with old API ++ """ ++ if name == 'async': ++ return self.asynchronous ++ return object.__getattr__(self, name) ++ ++ def __setattr__(self, name, value): ++ """ ++ For backwards compatibility with old API ++ """ ++ if name == 'async': ++ self.asynchronous = value ++ object.__setattr__(self, name, value) ++ + def _set_default_registry (self): + self._set_registry (MAIN_LOOP_GLIB) + +- def start(self, async=False, gil=True): ++ def start(self, asynchronous=False, gil=True, **kwargs): + """ + Enter the main loop to start receiving and dispatching events. + +- @@param async: Should event dispatch be asynchronous (decoupled) from +- event receiving from the AT-SPI registry? +- @@type async: boolean ++ @@param asynchronous: Should event dispatch be asynchronous ++ (decoupled) from event receiving from the AT-SPI registry? ++ @@type asynchronous: boolean + @@param gil: Add an idle callback which releases the Python GIL for a few + milliseconds to allow other threads to run? Necessary if other threads + will be used in this process. + @@type gil: boolean + """ ++ if 'async' in kwargs: ++ # support previous API ++ asynchronous = kwargs['async'] + if not self.has_implementations: + self._set_default_registry () + self.started = True diff --git a/archivers/lzma/Makefile b/archivers/lzma/Makefile index 4227592f0e2..0e22f184dfa 100644 --- a/archivers/lzma/Makefile +++ b/archivers/lzma/Makefile @@ -7,7 +7,7 @@ CATEGORIES= archivers MASTER_SITES= SF/sevenzip/LZMA%20SDK/ DISTNAME= lzma${PORTVERSION:S/.//g} -MAINTAINER= ndowens.fbsd@yandex.com +MAINTAINER= ndowens@yahoo.com COMMENT= High-ratio LZMA compressor CONFLICTS= lzmautils-[0-9]* xz-[0-9]* diff --git a/archivers/p5-Archive-Any-Plugin-Rar/Makefile b/archivers/p5-Archive-Any-Plugin-Rar/Makefile index aef14f2e2d4..015a65b3575 100644 --- a/archivers/p5-Archive-Any-Plugin-Rar/Makefile +++ b/archivers/p5-Archive-Any-Plugin-Rar/Makefile @@ -14,10 +14,10 @@ COMMENT= Wrapper around Archive::Rar LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Archive-Any>=0:archivers/p5-Archive-Any \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Archive-Any>=0:archivers/p5-Archive-Any \ p5-Archive-Rar>=0:archivers/p5-Archive-Rar \ p5-lib-abs>=0.90:devel/p5-lib-abs -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/archivers/p5-Archive-Any/Makefile b/archivers/p5-Archive-Any/Makefile index 2e1feaaac1c..a0cbe69968e 100644 --- a/archivers/p5-Archive-Any/Makefile +++ b/archivers/p5-Archive-Any/Makefile @@ -14,11 +14,11 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Archive-Zip>=1.07:archivers/p5-Archive-Zip \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Archive-Zip>=1.07:archivers/p5-Archive-Zip \ p5-File-MMagic>=1.27:devel/p5-File-MMagic \ p5-MIME-Types>=1.16:mail/p5-MIME-Types \ p5-Module-Find>=0.05:devel/p5-Module-Find -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Perl-Critic>=0:textproc/p5-Test-Perl-Critic \ p5-Test-Warn>=0:devel/p5-Test-Warn diff --git a/archivers/p5-Archive-Extract-Libarchive/Makefile b/archivers/p5-Archive-Extract-Libarchive/Makefile index 2918cd9c78c..04f0322ec23 100644 --- a/archivers/p5-Archive-Extract-Libarchive/Makefile +++ b/archivers/p5-Archive-Extract-Libarchive/Makefile @@ -14,8 +14,8 @@ COMMENT= Generic archive extracting mechanism (using libarchive) LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Object-Tiny>=0:devel/p5-Object-Tiny -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Object-Tiny>=0:devel/p5-Object-Tiny TEST_DEPENDS= p5-File-Slurp>=0:devel/p5-File-Slurp \ p5-Path-Class>=0:devel/p5-Path-Class \ p5-Test-Pod>=1.04:devel/p5-Test-Pod diff --git a/archivers/p5-Archive-Peek/Makefile b/archivers/p5-Archive-Peek/Makefile index c19896d3cd7..8c23ccd942e 100644 --- a/archivers/p5-Archive-Peek/Makefile +++ b/archivers/p5-Archive-Peek/Makefile @@ -14,10 +14,10 @@ COMMENT= Peek into archives without extracting them LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Archive-Zip>=0:archivers/p5-Archive-Zip \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Archive-Zip>=0:archivers/p5-Archive-Zip \ p5-Moose>=0:devel/p5-Moose \ p5-MooseX-Types-Path-Class>=0:devel/p5-MooseX-Types-Path-Class -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Pod>=1.14:devel/p5-Test-Pod USES= perl5 diff --git a/archivers/p5-Archive-Rar/Makefile b/archivers/p5-Archive-Rar/Makefile index 1c19cd113f8..b922ea3733d 100644 --- a/archivers/p5-Archive-Rar/Makefile +++ b/archivers/p5-Archive-Rar/Makefile @@ -14,9 +14,9 @@ COMMENT= Interface with the 'rar' command LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-IPC-Run>=0:devel/p5-IPC-Run \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-IPC-Run>=0:devel/p5-IPC-Run \ rar:archivers/rar -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/archivers/p5-Archive-SimpleExtractor/Makefile b/archivers/p5-Archive-SimpleExtractor/Makefile index ef9b29e83c5..b50dc4d03f2 100644 --- a/archivers/p5-Archive-SimpleExtractor/Makefile +++ b/archivers/p5-Archive-SimpleExtractor/Makefile @@ -14,9 +14,9 @@ COMMENT= Simple module for extract archives LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Archive-Rar>=2.02:archivers/p5-Archive-Rar \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Archive-Rar>=2.02:archivers/p5-Archive-Rar \ p5-Archive-Zip>=1.30:archivers/p5-Archive-Zip -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Pod>=0:devel/p5-Test-Pod \ p5-Test-Pod-Coverage>=0:devel/p5-Test-Pod-Coverage diff --git a/archivers/p5-Archive-Tar-Wrapper/Makefile b/archivers/p5-Archive-Tar-Wrapper/Makefile index 9524df6ae2f..73e115c2d48 100644 --- a/archivers/p5-Archive-Tar-Wrapper/Makefile +++ b/archivers/p5-Archive-Tar-Wrapper/Makefile @@ -13,10 +13,10 @@ COMMENT= API wrapper around the 'tar' utility LICENSE= GPLv3+ LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-File-Which>=0:sysutils/p5-File-Which \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-File-Which>=0:sysutils/p5-File-Which \ p5-IPC-Run>=0:devel/p5-IPC-Run \ p5-Log-Log4perl>=0:devel/p5-Log-Log4perl -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Dumbbench>=0.111:benchmarks/p5-Dumbbench NO_ARCH= yes diff --git a/archivers/p5-Compress-LZW/Makefile b/archivers/p5-Compress-LZW/Makefile index efc84999502..da620f50c71 100644 --- a/archivers/p5-Compress-LZW/Makefile +++ b/archivers/p5-Compress-LZW/Makefile @@ -13,11 +13,11 @@ COMMENT= Pure perl implementation of LZW LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Moo>=1.001000:devel/p5-Moo \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Moo>=1.001000:devel/p5-Moo \ p5-Type-Tiny>0:devel/p5-Type-Tiny \ p5-namespace-clean>0:devel/p5-namespace-clean \ p5-strictures>0:devel/p5-strictures -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/archivers/p5-IO-Compress-Lzf/Makefile b/archivers/p5-IO-Compress-Lzf/Makefile index 0c4867c0a14..99a19d6da8c 100644 --- a/archivers/p5-IO-Compress-Lzf/Makefile +++ b/archivers/p5-IO-Compress-Lzf/Makefile @@ -13,9 +13,9 @@ COMMENT= Write lzf files / buffers LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Compress-LZF>=0:archivers/p5-Compress-LZF \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Compress-LZF>=0:archivers/p5-Compress-LZF \ p5-IO-Compress>=${PORTVERSION}:archivers/p5-IO-Compress -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Pod>=1:devel/p5-Test-Pod NO_ARCH= yes diff --git a/archivers/p5-IO-Compress-Lzma/Makefile b/archivers/p5-IO-Compress-Lzma/Makefile index 934fa5364a6..caa433cb8e4 100644 --- a/archivers/p5-IO-Compress-Lzma/Makefile +++ b/archivers/p5-IO-Compress-Lzma/Makefile @@ -13,9 +13,9 @@ COMMENT= Write lzma files / buffers LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Compress-Raw-Lzma>=${PORTVERSION}:archivers/p5-Compress-Raw-Lzma \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Compress-Raw-Lzma>=${PORTVERSION}:archivers/p5-Compress-Raw-Lzma \ p5-IO-Compress>=${PORTVERSION}:archivers/p5-IO-Compress -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-IO-String>=0:devel/p5-IO-String \ p5-Test-Pod>=1:devel/p5-Test-Pod \ p7zip>=0:archivers/p7zip diff --git a/archivers/p5-IO-Compress-Lzop/Makefile b/archivers/p5-IO-Compress-Lzop/Makefile index 99ef7c79ae7..a4afe5130a6 100644 --- a/archivers/p5-IO-Compress-Lzop/Makefile +++ b/archivers/p5-IO-Compress-Lzop/Makefile @@ -13,9 +13,9 @@ COMMENT= Write lzop files / buffers LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Compress-LZO>=0:archivers/p5-Compress-LZO \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Compress-LZO>=0:archivers/p5-Compress-LZO \ p5-IO-Compress>=${PORTVERSION}:archivers/p5-IO-Compress -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Pod>=1:devel/p5-Test-Pod NO_ARCH= yes diff --git a/archivers/p5-IO-Compress/Makefile b/archivers/p5-IO-Compress/Makefile index 342f0e7aad2..05a31379d28 100644 --- a/archivers/p5-IO-Compress/Makefile +++ b/archivers/p5-IO-Compress/Makefile @@ -13,9 +13,9 @@ COMMENT= Perl5 compression modules (bzip2, deflate, gzip, zlib, zip) LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Compress-Raw-Bzip2>=${PORTVERSION}:archivers/p5-Compress-Raw-Bzip2 \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Compress-Raw-Bzip2>=${PORTVERSION}:archivers/p5-Compress-Raw-Bzip2 \ p5-Compress-Raw-Zlib>=${PORTVERSION}:archivers/p5-Compress-Raw-Zlib -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Pod>=1:devel/p5-Test-Pod NO_ARCH= yes diff --git a/archivers/p5-POE-Filter-Bzip2/Makefile b/archivers/p5-POE-Filter-Bzip2/Makefile index f81cc6a8e3e..8d487c41aec 100644 --- a/archivers/p5-POE-Filter-Bzip2/Makefile +++ b/archivers/p5-POE-Filter-Bzip2/Makefile @@ -14,9 +14,9 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Compress-Bzip2>=2.08:archivers/p5-Compress-Bzip2 \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Compress-Bzip2>=2.08:archivers/p5-Compress-Bzip2 \ p5-POE>=0.38:devel/p5-POE -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/archivers/p5-POE-Filter-LZF/Makefile b/archivers/p5-POE-Filter-LZF/Makefile index 9f6781c5000..ee6a01cc15d 100644 --- a/archivers/p5-POE-Filter-LZF/Makefile +++ b/archivers/p5-POE-Filter-LZF/Makefile @@ -14,9 +14,9 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Compress-LZF>=1.51:archivers/p5-Compress-LZF \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Compress-LZF>=1.51:archivers/p5-Compress-LZF \ p5-POE>=0.38:devel/p5-POE -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/archivers/p5-POE-Filter-LZO/Makefile b/archivers/p5-POE-Filter-LZO/Makefile index 7892728e671..41698ac3a89 100644 --- a/archivers/p5-POE-Filter-LZO/Makefile +++ b/archivers/p5-POE-Filter-LZO/Makefile @@ -14,9 +14,9 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Compress-LZO>=1.08:archivers/p5-Compress-LZO \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Compress-LZO>=1.08:archivers/p5-Compress-LZO \ p5-POE>=0.38:devel/p5-POE -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/archivers/p5-POE-Filter-LZW/Makefile b/archivers/p5-POE-Filter-LZW/Makefile index 0a640bb2d3d..3019e2554d4 100644 --- a/archivers/p5-POE-Filter-LZW/Makefile +++ b/archivers/p5-POE-Filter-LZW/Makefile @@ -14,9 +14,9 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Compress-LZW>=0:archivers/p5-Compress-LZW \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Compress-LZW>=0:archivers/p5-Compress-LZW \ p5-POE>=0.38:devel/p5-POE -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/archivers/p5-POE-Filter-Zlib/Makefile b/archivers/p5-POE-Filter-Zlib/Makefile index c829d2d2923..616e7783ba7 100644 --- a/archivers/p5-POE-Filter-Zlib/Makefile +++ b/archivers/p5-POE-Filter-Zlib/Makefile @@ -14,8 +14,8 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-POE>=0.38:devel/p5-POE -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-POE>=0.38:devel/p5-POE USES= perl5 USE_PERL5= configure diff --git a/archivers/p5-PerlIO-via-Bzip2/Makefile b/archivers/p5-PerlIO-via-Bzip2/Makefile index 9cb39dfcc14..2be2a8422e5 100644 --- a/archivers/p5-PerlIO-via-Bzip2/Makefile +++ b/archivers/p5-PerlIO-via-Bzip2/Makefile @@ -14,8 +14,8 @@ COMMENT= Perl extension to provide a PerlIO layer to bzip2/bunzip2 LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Compress-Bzip2>=0:archivers/p5-Compress-Bzip2 -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Compress-Bzip2>=0:archivers/p5-Compress-Bzip2 USES= perl5 USE_PERL5= configure diff --git a/archivers/par2cmdline-tbb/Makefile b/archivers/par2cmdline-tbb/Makefile index dc50e9ccae8..97cd8d9a218 100644 --- a/archivers/par2cmdline-tbb/Makefile +++ b/archivers/par2cmdline-tbb/Makefile @@ -3,7 +3,7 @@ PORTNAME= par2cmdline-tbb PORTVERSION= 20100203 -PORTREVISION= 15 +PORTREVISION= 16 CATEGORIES= archivers MASTER_SITES= http://chuchusoft.com/par2_tbb/ DISTNAME= par2cmdline-0.4-tbb-${PORTVERSION} diff --git a/archivers/py-czipfile/Makefile b/archivers/py-czipfile/Makefile index 26d7e6f8fd1..096649ef65a 100644 --- a/archivers/py-czipfile/Makefile +++ b/archivers/py-czipfile/Makefile @@ -7,7 +7,7 @@ CATEGORIES= archivers python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -MAINTAINER= feld@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Fast C-based zipfile decryption for Python LICENSE= PSFL diff --git a/astro/josm/Makefile b/astro/josm/Makefile index 112b048712c..acf2144e051 100644 --- a/astro/josm/Makefile +++ b/astro/josm/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= josm -PORTVERSION= 14178 +PORTVERSION= 14289 CATEGORIES= astro java MASTER_SITES= http://josm.openstreetmap.de/download/ \ http://mirror.amdmi3.ru/distfiles/ diff --git a/astro/josm/distinfo b/astro/josm/distinfo index 4cf7e2a32a3..4b214d06712 100644 --- a/astro/josm/distinfo +++ b/astro/josm/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1535278956 -SHA256 (josm-snapshot-14178.jar) = 19d8b2cf7d8408bccdb4242974e4215e67fb6a67a76d6ba3dfa8b1b591265621 -SIZE (josm-snapshot-14178.jar) = 13221878 +TIMESTAMP = 1538749972 +SHA256 (josm-snapshot-14289.jar) = 4b6f570d8d42e7a20d0bcafe6bd47431e19b4648eb3271dc9f1aa74306bc4d80 +SIZE (josm-snapshot-14289.jar) = 13308372 diff --git a/astro/kstars/Makefile b/astro/kstars/Makefile index 186cb58766e..60e70814a61 100644 --- a/astro/kstars/Makefile +++ b/astro/kstars/Makefile @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= kstars -DISTVERSION= 2.9.7 -PORTREVISION= 1 +DISTVERSION= 2.9.8 PORTEPOCH= 1 CATEGORIES= astro kde MASTER_SITES= KDE/stable/${PORTNAME} diff --git a/astro/kstars/distinfo b/astro/kstars/distinfo index 383907b52e4..45f23d7b915 100644 --- a/astro/kstars/distinfo +++ b/astro/kstars/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1533104584 -SHA256 (kstars-2.9.7.tar.xz) = 4d80f5b5b5f38500f259c0272ba7f85bb4d1e877060bb3a1a0469a32573d0f53 -SIZE (kstars-2.9.7.tar.xz) = 62657568 +TIMESTAMP = 1538265420 +SHA256 (kstars-2.9.8.tar.xz) = 95f36cae6cc84d5d745b13cf690b56ea8ba27012faef1f901191d89007232d7d +SIZE (kstars-2.9.8.tar.xz) = 62674968 diff --git a/astro/mkgmap/Makefile b/astro/mkgmap/Makefile index 4ef56e1ed4e..f1bcfe89b23 100644 --- a/astro/mkgmap/Makefile +++ b/astro/mkgmap/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= mkgmap -PORTVERSION= r4240 +PORTVERSION= r4244 CATEGORIES= astro converters java MASTER_SITES= http://www.mkgmap.org.uk/download/ \ http://mirror.amdmi3.ru/distfiles/ diff --git a/astro/mkgmap/distinfo b/astro/mkgmap/distinfo index 1fd51000975..58dfd45efd5 100644 --- a/astro/mkgmap/distinfo +++ b/astro/mkgmap/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1536078552 -SHA256 (mkgmap-r4240.tar.gz) = c8812de76103a7a10221b2ea71438c1488ccc4a7ba66f60479028214db9ffcab -SIZE (mkgmap-r4240.tar.gz) = 3387357 +TIMESTAMP = 1538587308 +SHA256 (mkgmap-r4244.tar.gz) = 98b3e072c62bdca988e42a743174ab56302722173279054971b683c0ea7fc0ff +SIZE (mkgmap-r4244.tar.gz) = 3386451 diff --git a/astro/p5-Astro-ADS/Makefile b/astro/p5-Astro-ADS/Makefile index 733f8ece82e..fb474108b07 100644 --- a/astro/p5-Astro-ADS/Makefile +++ b/astro/p5-Astro-ADS/Makefile @@ -13,8 +13,8 @@ COMMENT= OO Perl interface to the ADS abstract service LICENSE= GPLv2+ -BUILD_DEPENDS= p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-libwww>=0:www/p5-libwww NO_ARCH= yes USES= perl5 diff --git a/astro/p5-Astro-App-Satpass2/Makefile b/astro/p5-Astro-App-Satpass2/Makefile index 4c87f41e6dd..d6a5e96c234 100644 --- a/astro/p5-Astro-App-Satpass2/Makefile +++ b/astro/p5-Astro-App-Satpass2/Makefile @@ -13,13 +13,13 @@ COMMENT= Forecast satellite visibility LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Astro-SIMBAD-Client>=0:astro/p5-Astro-SIMBAD-Client \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Astro-SIMBAD-Client>=0:astro/p5-Astro-SIMBAD-Client \ p5-Astro-satpass>=0.077:astro/p5-Astro-satpass \ p5-Clone>=0:devel/p5-Clone \ p5-File-HomeDir>=0.93:devel/p5-File-HomeDir \ p5-IPC-System-Simple>=0:devel/p5-IPC-System-Simple \ p5-Template-Toolkit>=2.21:www/p5-Template-Toolkit -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/astro/p5-Astro-Catalog/Makefile b/astro/p5-Astro-Catalog/Makefile index 2a9a8820cc0..98475e33738 100644 --- a/astro/p5-Astro-Catalog/Makefile +++ b/astro/p5-Astro-Catalog/Makefile @@ -13,7 +13,8 @@ COMMENT= Generic stellar catalogue object LICENSE= GPLv3 # p5-Astro-FITS-CFITSIO is a recommended dependency -BUILD_DEPENDS= p5-Astro-Coords>=0.12:astro/p5-Astro-Coords \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Astro-Coords>=0.12:astro/p5-Astro-Coords \ p5-Astro-FITS-CFITSIO>=1.03:astro/p5-Astro-FITS-CFITSIO \ p5-Astro-Flux>=0.01:astro/p5-Astro-Flux \ p5-Astro-Telescope>=0.50:astro/p5-Astro-Telescope \ @@ -23,7 +24,6 @@ BUILD_DEPENDS= p5-Astro-Coords>=0.12:astro/p5-Astro-Coords \ p5-Number-Uncertainty>=0.1:math/p5-Number-Uncertainty \ p5-SOAP-Lite>=0:net/p5-SOAP-Lite \ p5-libwww>=5.53:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= localbase perl5 diff --git a/astro/p5-Astro-Coords/Makefile b/astro/p5-Astro-Coords/Makefile index 786c9cde793..119e4387a2a 100644 --- a/astro/p5-Astro-Coords/Makefile +++ b/astro/p5-Astro-Coords/Makefile @@ -12,10 +12,10 @@ COMMENT= Class for handling astronomical coordinates LICENSE= GPLv2+ -BUILD_DEPENDS= p5-Astro-PAL>=0:astro/p5-Astro-PAL \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Astro-PAL>=0:astro/p5-Astro-PAL \ p5-Astro-Telescope>=0.71:astro/p5-Astro-Telescope \ p5-DateTime>=0.76:devel/p5-DateTime -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Number-Delta>=0:devel/p5-Test-Number-Delta \ p5-Test-Pod>=1:devel/p5-Test-Pod diff --git a/astro/p5-Astro-DSS/Makefile b/astro/p5-Astro-DSS/Makefile index 6f532e47291..28a38479304 100644 --- a/astro/p5-Astro-DSS/Makefile +++ b/astro/p5-Astro-DSS/Makefile @@ -13,8 +13,8 @@ COMMENT= OO interface to the 1st and 2nd Digital Sky Surveys LICENSE= GPLv2+ -BUILD_DEPENDS= p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-libwww>=0:www/p5-libwww NO_ARCH= yes USES= perl5 diff --git a/astro/p5-Astro-Flux/Makefile b/astro/p5-Astro-Flux/Makefile index 34932a4f05b..b45d9abe14a 100644 --- a/astro/p5-Astro-Flux/Makefile +++ b/astro/p5-Astro-Flux/Makefile @@ -14,11 +14,11 @@ COMMENT= Class for handling astronomical flux quantities LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Astro-WaveBand>=0:astro/p5-Astro-WaveBand \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Astro-WaveBand>=0:astro/p5-Astro-WaveBand \ p5-DateTime>=0:devel/p5-DateTime \ p5-Misc-Quality>=0:astro/p5-Misc-Quality \ p5-Number-Uncertainty>=0:math/p5-Number-Uncertainty -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USE_PERL5= configure diff --git a/astro/p5-Astro-SIMBAD-Client/Makefile b/astro/p5-Astro-SIMBAD-Client/Makefile index fb42323aadb..1156b13e149 100644 --- a/astro/p5-Astro-SIMBAD-Client/Makefile +++ b/astro/p5-Astro-SIMBAD-Client/Makefile @@ -13,12 +13,12 @@ COMMENT= OO interface to SIMBAD4 LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-HTTP-Message>=0:www/p5-HTTP-Message \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTTP-Message>=0:www/p5-HTTP-Message \ p5-SOAP-Lite>=0:net/p5-SOAP-Lite \ p5-URI>=0:net/p5-URI \ p5-XML-DoubleEncodedEntities>=1:textproc/p5-XML-DoubleEncodedEntities \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-YAML>=0:textproc/p5-YAML USES= perl5 diff --git a/astro/p5-Astro-SIMBAD/Makefile b/astro/p5-Astro-SIMBAD/Makefile index 13c8844db05..38c9a28ce02 100644 --- a/astro/p5-Astro-SIMBAD/Makefile +++ b/astro/p5-Astro-SIMBAD/Makefile @@ -13,10 +13,10 @@ COMMENT= OO Perl interface to the SIMBAD astronomical database LICENSE= GPLv2+ -BUILD_DEPENDS= p5-HTML-Parser>=3.36:www/p5-HTML-Parser \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTML-Parser>=3.36:www/p5-HTML-Parser \ p5-HTML-Tree>=3.17:www/p5-HTML-Tree \ p5-libwww>=5.53:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/astro/p5-Astro-Telescope/Makefile b/astro/p5-Astro-Telescope/Makefile index 25a36ce3b60..0344621a34d 100644 --- a/astro/p5-Astro-Telescope/Makefile +++ b/astro/p5-Astro-Telescope/Makefile @@ -14,8 +14,8 @@ COMMENT= Class for obtaining telescope information LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Astro-PAL>=0.99:astro/p5-Astro-PAL -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Astro-PAL>=0.99:astro/p5-Astro-PAL NO_ARCH= yes USE_PERL5= modbuild diff --git a/astro/p5-GPS-Babel/Makefile b/astro/p5-GPS-Babel/Makefile index 7760839e2d2..6f609bd9278 100644 --- a/astro/p5-GPS-Babel/Makefile +++ b/astro/p5-GPS-Babel/Makefile @@ -14,9 +14,9 @@ COMMENT= Perl interface to gpsbabel LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-File-Which>=0.05:sysutils/p5-File-Which \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-File-Which>=0.05:sysutils/p5-File-Which \ p5-Geo-Gpx>=0.25:graphics/p5-Geo-Gpx -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/astro/p5-GPS/Makefile b/astro/p5-GPS/Makefile index fb8b3ce953b..8d2a23a3982 100644 --- a/astro/p5-GPS/Makefile +++ b/astro/p5-GPS/Makefile @@ -15,8 +15,8 @@ COMMENT= Perl interface to GPS receivers LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Device-SerialPort>=0.07:comms/p5-Device-SerialPort -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Device-SerialPort>=0.07:comms/p5-Device-SerialPort USES= perl5 USE_PERL5= configure diff --git a/astro/p5-Starlink-AST/Makefile b/astro/p5-Starlink-AST/Makefile index aed3bfd9096..43b2f3c03e6 100644 --- a/astro/p5-Starlink-AST/Makefile +++ b/astro/p5-Starlink-AST/Makefile @@ -14,9 +14,9 @@ COMMENT= Interface to the Starlink AST library LICENSE= GPLv2 GPLv3 LICENSE_COMB= dual -BUILD_DEPENDS= p5-Astro-FITS-CFITSIO>=0:astro/p5-Astro-FITS-CFITSIO \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Astro-FITS-CFITSIO>=0:astro/p5-Astro-FITS-CFITSIO \ p5-Astro-FITS-Header>=0:astro/p5-Astro-FITS-Header -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Number-Delta>=0:devel/p5-Test-Number-Delta USES= perl5 diff --git a/astro/p5-Weather-Underground/Makefile b/astro/p5-Weather-Underground/Makefile index 2dad9872db3..2ce5406d06a 100644 --- a/astro/p5-Weather-Underground/Makefile +++ b/astro/p5-Weather-Underground/Makefile @@ -14,9 +14,9 @@ COMMENT= Retrieve weather information from wunderground.com LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-HTML-Parser>=0:www/p5-HTML-Parser \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTML-Parser>=0:www/p5-HTML-Parser \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} USE_PERL5= configure USES= perl5 diff --git a/astro/py-metpy/Makefile b/astro/py-metpy/Makefile index 72078b033f2..7efb3e35f99 100644 --- a/astro/py-metpy/Makefile +++ b/astro/py-metpy/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= metpy -PORTVERSION= 0.9.1 +PORTVERSION= 0.9.2 CATEGORIES= astro python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/astro/py-metpy/distinfo b/astro/py-metpy/distinfo index 1cc52fd9490..bddbde5f18c 100644 --- a/astro/py-metpy/distinfo +++ b/astro/py-metpy/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1535639725 -SHA256 (MetPy-0.9.1.tar.gz) = 2dadf750ddb752da13f4ece9b5784587c79c6c86f9a7be8d0cae3d236e403498 -SIZE (MetPy-0.9.1.tar.gz) = 2226789 +TIMESTAMP = 1538591637 +SHA256 (MetPy-0.9.2.tar.gz) = f1181cbbb82b892a0b0915a8899d95c61741520ba6feba3045c4619a139f0135 +SIZE (MetPy-0.9.2.tar.gz) = 2226983 diff --git a/audio/cava/Makefile b/audio/cava/Makefile index 4a8f23afd99..29bd4e6a0e8 100644 --- a/audio/cava/Makefile +++ b/audio/cava/Makefile @@ -2,6 +2,7 @@ PORTNAME= cava DISTVERSION= 0.6.1 +PORTREVISION= 1 CATEGORIES= audio MAINTAINER= tobik@FreeBSD.org @@ -10,6 +11,7 @@ COMMENT= Console-based Audio Visualizer for MPD, PulseAudio, and sndio LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE +BUILD_DEPENDS= psf2bdf:x11-fonts/psftools LIB_DEPENDS= libfftw3.so:math/fftw3 \ libiniparser.so:devel/iniparser @@ -18,11 +20,12 @@ USE_GITHUB= yes GH_ACCOUNT= karlstav GNU_CONFIGURE= yes -CONFIGURE_ENV= ac_cv_lib_asound_snd_pcm_open=no +CONFIGURE_ENV= ac_cv_lib_asound_snd_pcm_open=no \ + FONT_DIR=${DATADIR} INSTALL_TARGET= install-strip -PLIST_FILES= bin/cava +PLIST_FILES= bin/cava ${DATADIR}/cava.fnt PORTDOCS= README.md PORTEXAMPLES= config @@ -39,6 +42,10 @@ SNDIO_LIB_DEPENDS= libsndio.so:audio/sndio pre-configure: @${ECHO_CMD} ${DISTVERSION} > ${WRKSRC}/version +pre-build: + psf2bdf ${WRKSRC}/cava.psf > ${WRKSRC}/cava.bdf + vtfontcvt ${WRKSRC}/cava.bdf ${WRKSRC}/cava.fnt + post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/README.md ${STAGEDIR}${DOCSDIR} diff --git a/audio/cava/files/patch-Makefile.am b/audio/cava/files/patch-Makefile.am index 856c041e469..c6db50c867f 100644 --- a/audio/cava/files/patch-Makefile.am +++ b/audio/cava/files/patch-Makefile.am @@ -2,17 +2,21 @@ does not recognize - Do not install the Linux-only font ---- Makefile.am.orig 2018-09-10 08:31:56 UTC +--- Makefile.am.orig 2018-05-03 16:07:33 UTC +++ Makefile.am -@@ -14,10 +14,8 @@ cava_LDADD = -liniparser +@@ -13,11 +13,12 @@ cava_SOURCES = cava.c + cava_LDADD = -liniparser cava_LDFLAGS = -L/usr/local/lib -Wl,-rpath /usr/local/lib cava_CPPFLAGS = -DPACKAGE=\"$(PACKAGE)\" -DVERSION=\"$(VERSION)\" \ - -D_POSIX_SOURCE -D _POSIX_C_SOURCE=200809L +- -D_POSIX_SOURCE -D _POSIX_C_SOURCE=200809L -cava_CFLAGS = -std=c99 -Wall -Wextra -Wno-unused-result -Wno-maybe-uninitialized ++ -D_POSIX_SOURCE -D _POSIX_C_SOURCE=200809L -DFONT_DIR=\"@FONT_DIR@\" ++ +cava_CFLAGS = -std=c99 -Wall -Wextra --cava_font_dir = @FONT_DIR@ + cava_font_dir = @FONT_DIR@ -cava_font__DATA = cava.psf ++cava_font__DATA = cava.fnt if !SYSTEM_LIBINIPARSER cava_SOURCES += iniparser/libiniparser.la diff --git a/audio/cava/files/patch-cava.c b/audio/cava/files/patch-cava.c new file mode 100644 index 00000000000..74b65e3b7b9 --- /dev/null +++ b/audio/cava/files/patch-cava.c @@ -0,0 +1,15 @@ +--- cava.c.orig 2018-10-04 05:51:51 UTC ++++ cava.c +@@ -341,8 +341,12 @@ as of 0.4.0 all options are specified in config file, + "/dev/console") == 0) inAtty = 1; + + if (inAtty) { ++#ifdef __FreeBSD__ ++ system("/usr/sbin/vidcontrol -f " FONT_DIR "/cava.fnt >/dev/null 2>&1"); ++#else + system("setfont cava.psf >/dev/null 2>&1"); + system("setterm -blank 0"); ++#endif + } + } + diff --git a/audio/cava/files/patch-output_terminal__ncurses.c b/audio/cava/files/patch-output_terminal__ncurses.c new file mode 100644 index 00000000000..ec8c54a0637 --- /dev/null +++ b/audio/cava/files/patch-output_terminal__ncurses.c @@ -0,0 +1,16 @@ +--- output/terminal_ncurses.c.orig 2018-10-04 05:56:00 UTC ++++ output/terminal_ncurses.c +@@ -215,9 +215,13 @@ int flastd[200], int gradient) { + // general: cleanup + void cleanup_terminal_ncurses(void) { + echo(); ++#ifdef __FreeBSD__ ++ system("/usr/sbin/vidcontrol -f >/dev/null 2>&1"); ++#else + system("setfont >/dev/null 2>&1"); + system("setfont /usr/share/consolefonts/Lat2-Fixed16.psf.gz >/dev/null 2>&1"); + system("setterm -blank 10"); ++#endif + /*for(int i = 0; i < gradient_size; ++i) { + if(the_color_redefinitions[i].color) { + init_color(the_color_redefinitions[i].color, diff --git a/audio/drumkv1-lv2/Makefile b/audio/drumkv1-lv2/Makefile index 25d68d0e11d..d4770241d58 100644 --- a/audio/drumkv1-lv2/Makefile +++ b/audio/drumkv1-lv2/Makefile @@ -18,7 +18,7 @@ LIB_DEPENDS= libjack.so:audio/jack \ libsndfile.so:audio/libsndfile \ liblo.so:audio/liblo -USES= gmake localbase:ldflags pkgconfig qt:5 shared-mime-info +USES= compiler:c++11-lang gl gmake localbase:ldflags pkgconfig qt:5 shared-mime-info GNU_CONFIGURE= yes CONFIGURE_ARGS= --disable-alsa-midi USE_QT= core gui widgets xml buildtools_build qmake_build diff --git a/audio/luppp/Makefile b/audio/luppp/Makefile index 2c0ed382d75..4737c4f21ad 100644 --- a/audio/luppp/Makefile +++ b/audio/luppp/Makefile @@ -17,7 +17,7 @@ LIB_DEPENDS= libjack.so:audio/jack \ libsamplerate.so:audio/libsamplerate \ libsndfile.so:audio/libsndfile -USES= cmake:outsource pkgconfig +USES= cmake:outsource compiler:c++11-lang gnome pkgconfig USE_GITHUB= yes GH_ACCOUNT= openAVproductions GH_PROJECT= openAV-Luppp diff --git a/audio/moony-lv2/Makefile b/audio/moony-lv2/Makefile index 87d77b1f1a9..2c2d0f3ade4 100644 --- a/audio/moony-lv2/Makefile +++ b/audio/moony-lv2/Makefile @@ -13,11 +13,9 @@ COMMENT= Realtime Lua as programmable glue in LV2 LICENSE= ART20 LICENSE_FILE= ${WRKSRC}/COPYING -BROKEN_powerpc64= fails to build: cc1: unrecognized command line option -std=gnu11 - BUILD_DEPENDS= lv2>0:audio/lv2 -USES= cmake:outsource pkgconfig +USES= cmake:outsource compiler:c++11-lang gl pkgconfig USE_XORG= x11 xext USE_GL= gl glu diff --git a/audio/p5-Audio-MPD-Common/Makefile b/audio/p5-Audio-MPD-Common/Makefile index 9beb221c9f6..8c679af829a 100644 --- a/audio/p5-Audio-MPD-Common/Makefile +++ b/audio/p5-Audio-MPD-Common/Makefile @@ -13,12 +13,12 @@ COMMENT= Bunch of common helper classes for mpd LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Moose>=0.92:devel/p5-Moose \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Moose>=0.92:devel/p5-Moose \ p5-MooseX-Has-Sugar>=0:devel/p5-MooseX-Has-Sugar \ p5-MooseX-Types>=0:devel/p5-MooseX-Types \ p5-Readonly>=0:devel/p5-Readonly \ p5-String-Formatter>=0:devel/p5-String-Formatter -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= modbuild diff --git a/audio/p5-Audio-MPD/Makefile b/audio/p5-Audio-MPD/Makefile index 5e0c4b1e053..ad70cd3d673 100644 --- a/audio/p5-Audio-MPD/Makefile +++ b/audio/p5-Audio-MPD/Makefile @@ -15,7 +15,8 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Audio-MPD-Common>=0:audio/p5-Audio-MPD-Common \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Audio-MPD-Common>=0:audio/p5-Audio-MPD-Common \ p5-Getopt-Euclid>=0:devel/p5-Getopt-Euclid \ p5-List-AllUtils>=0:devel/p5-List-AllUtils \ p5-List-MoreUtils>=0:lang/p5-List-MoreUtils \ @@ -24,7 +25,6 @@ BUILD_DEPENDS= p5-Audio-MPD-Common>=0:audio/p5-Audio-MPD-Common \ p5-MooseX-SemiAffordanceAccessor>=0:devel/p5-MooseX-SemiAffordanceAccessor \ p5-MooseX-Types>=0:devel/p5-MooseX-Types \ p5-Proc-Daemon>=0:devel/p5-Proc-Daemon -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Corpus-Audio-MPD>=1.113282:audio/p5-Test-Corpus-Audio-MPD NO_ARCH= yes diff --git a/audio/p5-Audio-Musepack/Makefile b/audio/p5-Audio-Musepack/Makefile index d4ce9f6ae8d..8b49a9ac5ad 100644 --- a/audio/p5-Audio-Musepack/Makefile +++ b/audio/p5-Audio-Musepack/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Interface to Musepack file information and APE tag fields -BUILD_DEPENDS= p5-MP3-Info>=1.20:audio/p5-MP3-Info \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-MP3-Info>=1.20:audio/p5-MP3-Info \ p5-Audio-Scan>=0.85:audio/p5-Audio-Scan -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/audio/p5-Audio-Scrobbler/Makefile b/audio/p5-Audio-Scrobbler/Makefile index 32b4f38934a..1e345c3b9f8 100644 --- a/audio/p5-Audio-Scrobbler/Makefile +++ b/audio/p5-Audio-Scrobbler/Makefile @@ -14,9 +14,9 @@ COMMENT= Perl interface to Last.fm and AudioScrobbler LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Config-IniFiles>=0:devel/p5-Config-IniFiles \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Config-IniFiles>=0:devel/p5-Config-IniFiles \ p5-libwww>=5:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/audio/p5-Audio-Wav/Makefile b/audio/p5-Audio-Wav/Makefile index 6f34744e069..365dc5465ad 100644 --- a/audio/p5-Audio-Wav/Makefile +++ b/audio/p5-Audio-Wav/Makefile @@ -14,9 +14,9 @@ COMMENT= Perl modules for reading and writing Microsoft WAV files LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Inline>=0:devel/p5-Inline \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Inline>=0:devel/p5-Inline \ p5-Inline-C>=0:devel/p5-Inline-C -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/audio/p5-Audio/Makefile b/audio/p5-Audio/Makefile index 203e90390ff..fecaffdd097 100644 --- a/audio/p5-Audio/Makefile +++ b/audio/p5-Audio/Makefile @@ -14,8 +14,8 @@ COMMENT= Audio manipulation routines for perl LICENSE= GPLv2 GPLv3 LICENSE_COMB= dual -BUILD_DEPENDS= p5-Math-GSL>=0:math/p5-Math-GSL -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Math-GSL>=0:math/p5-Math-GSL USES= perl5 USE_PERL5= configure diff --git a/audio/p5-MP3-Find/Makefile b/audio/p5-MP3-Find/Makefile index 96f60c1d1f2..6544335519a 100644 --- a/audio/p5-MP3-Find/Makefile +++ b/audio/p5-MP3-Find/Makefile @@ -14,8 +14,8 @@ COMMENT= Search and sort MP3 files based on their ID3 tags LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-MP3-Info>=0:audio/p5-MP3-Info -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-MP3-Info>=0:audio/p5-MP3-Info USES= perl5 USE_PERL5= configure diff --git a/audio/p5-MP3-Tag-Utils/Makefile b/audio/p5-MP3-Tag-Utils/Makefile index 3f13dbd4ccf..a4a447a6416 100644 --- a/audio/p5-MP3-Tag-Utils/Makefile +++ b/audio/p5-MP3-Tag-Utils/Makefile @@ -15,9 +15,9 @@ COMMENT= Assorted utilities for manipulating MP3 files via MP3::Tag LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-MP3-Tag>=1.13:audio/p5-MP3-Tag \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-MP3-Tag>=1.13:audio/p5-MP3-Tag \ p5-Text-NeatTemplate>=0.10.01:textproc/p5-Text-NeatTemplate -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 shebangfix USE_PERL5= configure diff --git a/audio/p5-MusicBrainz-DiscID/Makefile b/audio/p5-MusicBrainz-DiscID/Makefile index 38f68fcf846..604f9a493c6 100644 --- a/audio/p5-MusicBrainz-DiscID/Makefile +++ b/audio/p5-MusicBrainz-DiscID/Makefile @@ -12,9 +12,9 @@ COMMENT= Perl interface for the MusicBrainz libdiscid library LICENSE= GPLv2 -BUILD_DEPENDS= p5-Test-Pod>=0:devel/p5-Test-Pod +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Test-Pod>=0:devel/p5-Test-Pod LIB_DEPENDS= libdiscid.so:audio/libdiscid -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= localbase pkgconfig perl5 USE_PERL5= configure diff --git a/audio/p5-Net-FreeDB/Makefile b/audio/p5-Net-FreeDB/Makefile index 8f12392bcd7..b275f8487c9 100644 --- a/audio/p5-Net-FreeDB/Makefile +++ b/audio/p5-Net-FreeDB/Makefile @@ -14,9 +14,9 @@ COMMENT= Get the CDID of an audio CD and query the FreeDB servers LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-CDDB-File>=0:audio/p5-CDDB-File \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-CDDB-File>=0:audio/p5-CDDB-File \ p5-Moo>=0:devel/p5-Moo -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= alias perl5 USE_PERL5= configure diff --git a/audio/p5-Ogg-Vorbis-Header/Makefile b/audio/p5-Ogg-Vorbis-Header/Makefile index 08ea3214d54..a84d0784695 100644 --- a/audio/p5-Ogg-Vorbis-Header/Makefile +++ b/audio/p5-Ogg-Vorbis-Header/Makefile @@ -13,11 +13,11 @@ COMMENT= Manipulate / fetch info from Ogg-Vorbis audio files LICENSE= GPLv2 GPLv3 LICENSE_COMB= dual -BUILD_DEPENDS= p5-Inline>=0:devel/p5-Inline \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Inline>=0:devel/p5-Inline \ p5-Inline-C>=0:devel/p5-Inline-C LIB_DEPENDS= libogg.so:audio/libogg \ libvorbis.so:audio/libvorbis -RUN_DEPENDS:= ${BUILD_DEPENDS} MAKE_JOBS_UNSAFE= yes USES= perl5 diff --git a/audio/p5-Test-Corpus-Audio-MPD/Makefile b/audio/p5-Test-Corpus-Audio-MPD/Makefile index ccfa57ef9a6..0f2c81de498 100644 --- a/audio/p5-Test-Corpus-Audio-MPD/Makefile +++ b/audio/p5-Test-Corpus-Audio-MPD/Makefile @@ -11,10 +11,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Automate launching of fake mdp for testing purposes -BUILD_DEPENDS= p5-File-ShareDir-PathClass>0:devel/p5-File-ShareDir-PathClass \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-File-ShareDir-PathClass>0:devel/p5-File-ShareDir-PathClass \ p5-Path-Class>=0:devel/p5-Path-Class \ p5-Readonly>=0:devel/p5-Readonly -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= modbuild diff --git a/audio/py-musicbrainzngs/Makefile b/audio/py-musicbrainzngs/Makefile index 15ddcecfb5d..b6ee81ac72c 100644 --- a/audio/py-musicbrainzngs/Makefile +++ b/audio/py-musicbrainzngs/Makefile @@ -7,7 +7,7 @@ CATEGORIES= audio python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -MAINTAINER= feld@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Python Musicbrainz NGS site bindings LICENSE= BSD2CLAUSE ISCL diff --git a/audio/py-pyacoustid/Makefile b/audio/py-pyacoustid/Makefile index 6684e5849c4..60139de5006 100644 --- a/audio/py-pyacoustid/Makefile +++ b/audio/py-pyacoustid/Makefile @@ -8,7 +8,7 @@ CATEGORIES= audio python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -MAINTAINER= feld@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Bindings for Chromaprint acoustic fingerprinting and the Acoustid API LICENSE= MIT diff --git a/audio/py-pylast/Makefile b/audio/py-pylast/Makefile index b42df9b1863..5c66489632c 100644 --- a/audio/py-pylast/Makefile +++ b/audio/py-pylast/Makefile @@ -7,7 +7,7 @@ CATEGORIES= audio python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -MAINTAINER= feld@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Python interface to Last.fm and Libre.fm LICENSE= APACHE20 diff --git a/benchmarks/perftest/Makefile b/benchmarks/perftest/Makefile index 7d4a10eee6b..1d08058ad1f 100644 --- a/benchmarks/perftest/Makefile +++ b/benchmarks/perftest/Makefile @@ -3,7 +3,7 @@ PORTNAME= perftest DISTVERSIONPREFIX= V -DISTVERSION= 4.2-0.8 +DISTVERSION= 4.4-0.3 CATEGORIES= benchmarks MAINTAINER= slavash@FreeBSD.org diff --git a/benchmarks/perftest/distinfo b/benchmarks/perftest/distinfo index 8abba541f76..0aa2a39a2e4 100644 --- a/benchmarks/perftest/distinfo +++ b/benchmarks/perftest/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1529065479 -SHA256 (linux-rdma-perftest-V4.2-0.8_GH0.tar.gz) = 25e433e6ef13a634dfcf9c4b21e74cdc3bdcc5205b6fd88ee004d0671bcc82f4 -SIZE (linux-rdma-perftest-V4.2-0.8_GH0.tar.gz) = 139323 +TIMESTAMP = 1538562078 +SHA256 (linux-rdma-perftest-V4.4-0.3_GH0.tar.gz) = 76cb6ae44e8bc1f29d1482ab4e5eb8df4d3cea29969598b2871f0d35512b37f7 +SIZE (linux-rdma-perftest-V4.4-0.3_GH0.tar.gz) = 139473 diff --git a/benchmarks/phoronix-test-suite/Makefile b/benchmarks/phoronix-test-suite/Makefile index 5d0f5f2cb68..316486e341b 100644 --- a/benchmarks/phoronix-test-suite/Makefile +++ b/benchmarks/phoronix-test-suite/Makefile @@ -3,7 +3,7 @@ PORTNAME= phoronix-test-suite DISTVERSIONPREFIX= v -DISTVERSION= 8.0.1 +DISTVERSION= 8.2.0 CATEGORIES= benchmarks PKGNAMESUFFIX= ${PHP_PKGNAMESUFFIX} @@ -13,6 +13,8 @@ COMMENT= Phoronix Benchmarking Suite LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/COPYING +RUN_DEPENDS= sudo:security/sudo + USES= php:cli,build,flavors python USE_GITHUB= yes USE_PHP= curl dom gd json openssl pcntl posix simplexml zip zlib diff --git a/benchmarks/phoronix-test-suite/distinfo b/benchmarks/phoronix-test-suite/distinfo index 9ef96828a16..4834e6e1fff 100644 --- a/benchmarks/phoronix-test-suite/distinfo +++ b/benchmarks/phoronix-test-suite/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1531758479 -SHA256 (phoronix-test-suite-phoronix-test-suite-v8.0.1_GH0.tar.gz) = 8bfe972c601884f2bbbf4d5069c7691637e8a30af55d2a9597dbe53911b49081 -SIZE (phoronix-test-suite-phoronix-test-suite-v8.0.1_GH0.tar.gz) = 846244 +TIMESTAMP = 1538401066 +SHA256 (phoronix-test-suite-phoronix-test-suite-v8.2.0_GH0.tar.gz) = cb92231040fd09a98a97d6620bc98758774731372f8a41b58b85357c0449904c +SIZE (phoronix-test-suite-phoronix-test-suite-v8.2.0_GH0.tar.gz) = 860755 diff --git a/biology/Makefile b/biology/Makefile index b9f804fdcab..0d1fc6e56bb 100644 --- a/biology/Makefile +++ b/biology/Makefile @@ -131,7 +131,6 @@ SUBDIR += tRNAscan-SE SUBDIR += t_coffee SUBDIR += tabixpp - SUBDIR += tinker SUBDIR += treepuzzle SUBDIR += trimadap SUBDIR += trimmomatic diff --git a/biology/bowtie2/Makefile b/biology/bowtie2/Makefile index 3cead90243b..10a4c9a36fe 100644 --- a/biology/bowtie2/Makefile +++ b/biology/bowtie2/Makefile @@ -3,6 +3,7 @@ PORTNAME= bowtie2 PORTVERSION= 2.3.3.1 DISTVERSIONPREFIX= v +PORTREVISION= 1 CATEGORIES= biology MAINTAINER= jwb@FreeBSD.org diff --git a/biology/ncbi-toolkit/Makefile b/biology/ncbi-toolkit/Makefile index 1dd59de66e0..b3c92f11449 100644 --- a/biology/ncbi-toolkit/Makefile +++ b/biology/ncbi-toolkit/Makefile @@ -2,56 +2,33 @@ # $FreeBSD$ PORTNAME= ncbi-toolkit -PORTVERSION= 2012.06.20 # containing BLAST v2.2.27 -PORTREVISION= 1 +DISTVERSION= 2017.01.06 # containing BLAST v2.2.27 (? is this true) CATEGORIES= biology MASTER_SITES= ftp://ftp.ncbi.nlm.nih.gov/toolbox/ncbi_tools/old/${PORTVERSION:S/.//g}/ DISTNAME= ncbi DIST_SUBDIR= ${PORTNAME}-${PORTVERSION} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= yuri@FreeBSD.org COMMENT= NCBI development toolkit, including BLAST 2 and GenBank/Entrez support -LIB_DEPENDS= libpng.so:graphics/png +LIB_DEPENDS= libfontconfig.so:x11-fonts/fontconfig \ + libgmp.so:math/gmp \ + libgnutls.so:security/gnutls \ + libhogweed.so:security/nettle \ + libidn2.so:dns/libidn2 \ + libnettle.so:security/nettle \ + libp11-kit.so:security/p11-kit \ + libpng.so:graphics/png \ + libtasn1.so:security/libtasn1 \ + libtspi.so:security/trousers \ + libunistring.so:devel/libunistring \ + libXp.so:x11/libXp -USES= iconv motif -MAKE_JOBS_UNSAFE= yes +USES= gettext-runtime iconv jpeg motif +USE_XORG= x11 xau xext xft xmu xrender xt SUB_FILES= pkg-message -# These are the executables we install. -# -# We follow Debian in the separation of the port in three -# main categories and in the selection of programs that -# are installed in each case. This Makes Sense (TM). -# Thus, we drop a handful of programs that are useful only as tests -# or code examples -# (credit goes to Aaron Ucko, the Debian maintainer of the NCBI stuff) -# Right now the port installs all the executables below, this may -# change in the future with the addition of selectable knobs or -# new slave ports - -TOOLKIT_EXE= asn2ff asn2gb asn2idx asn2xml asndhuff asntool cdscan \ - checksub debruijn demo_regexp demo_regexp_grep dosimple \ - entrcmd errhdr fa2htgs findspl gene2xml getmesh getpub \ - gil2bin idfetch indexpub makeset ncbisort seqtest tbl2asn \ - vecscreen -BLAST_EXE= bl2seq blastall blastcl3 blastclust blastpgp copymat \ - fastacmd formatdb formatrpsdb impala makemat megablast \ - rpsblast seedtop taxblast -X11_EXE= Nentrez Psequin ddv entrez2 sbtedit udv - -# and these are the man pages we have -MAN_FILES= Psequin.1 asn2ff.1 asn2idx.1 asn2xml.1 asndhuff.1 \ - asntool.1 blast.1 blastclust.1 cdscan.1 checksub.1 \ - copymat.1 ddv.1 debruijn.1 entrez2.1 errhdr.1 fa2htgs.1 \ - fastacmd.1 findspl.1 formatdb.1 formatrpsdb.1 getmesh.1 \ - getpub.1 gil2bin.1 idfetch.1 indexpub.1 makemat.1 \ - taxblast.1 tbl2asn.1 udv.1 vecscreen.1 - -MAN_LINKS= bl2seq blastall blastcl3 blastpgp impala megablast \ - seedtop rpsblast - OPTIONS_DEFINE= DOCS post-patch: @@ -73,30 +50,25 @@ post-patch: # and we use it do-build: - cd ${WRKDIR}; ./${DISTNAME}/make/makedis.csh + @cd ${WRKDIR} && ./${DISTNAME}/make/makedis.csh # the ncbi-toolkit does not provide an install target # we thus roll our own do-install: - (cd ${WRKSRC}/bin && ${INSTALL_PROGRAM} ${BLAST_EXE} \ - ${TOOLKIT_EXE} ${X11_EXE} ${STAGEDIR}${PREFIX}/bin) + cd ${WRKSRC}/bin && ${INSTALL_PROGRAM} * ${STAGEDIR}${PREFIX}/bin @${MKDIR} ${STAGEDIR}${PREFIX}/lib/${DISTNAME} - (cd ${WRKSRC}/lib && ${INSTALL_DATA} *.a \ - ${STAGEDIR}${PREFIX}/lib/${DISTNAME}) + cd ${WRKSRC}/lib && ${INSTALL_DATA} *.a \ + ${STAGEDIR}${PREFIX}/lib/${DISTNAME} @${MKDIR} ${STAGEDIR}${PREFIX}/include/${DISTNAME}/connect - (cd ${WRKSRC}/include && ${INSTALL_DATA} *.h \ - ${STAGEDIR}${PREFIX}/include/${DISTNAME}) - (cd ${WRKSRC}/include/connect && ${INSTALL_DATA} *.h \ - ${STAGEDIR}${PREFIX}/include/${DISTNAME}/connect) - (cd ${WRKSRC}/doc/man && ${INSTALL_MAN} ${MAN_FILES} \ - ${STAGEDIR}${MANPREFIX}/man/man1) -.for man in ${MAN_LINKS} - ${LN} -s ${MANPREFIX}/man/man1/blast.1.gz \ - ${STAGEDIR}${PREFIX}/man/man1/${man}.1.gz -.endfor + cd ${WRKSRC}/include && ${INSTALL_DATA} *.h \ + ${STAGEDIR}${PREFIX}/include/${DISTNAME} + cd ${WRKSRC}/include/connect && ${INSTALL_DATA} *.h \ + ${STAGEDIR}${PREFIX}/include/${DISTNAME}/connect + cd ${WRKSRC}/doc/man && ${INSTALL_MAN} * \ + ${STAGEDIR}${MANPREFIX}/man/man1 @${MKDIR} ${STAGEDIR}${DATADIR} - (cd ${WRKSRC}/data && ${INSTALL_DATA} * ${STAGEDIR}${DATADIR}) + cd ${WRKSRC}/data && ${INSTALL_DATA} * ${STAGEDIR}${DATADIR} do-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} diff --git a/biology/ncbi-toolkit/distinfo b/biology/ncbi-toolkit/distinfo index 8b767a5e8fd..25a7e495200 100644 --- a/biology/ncbi-toolkit/distinfo +++ b/biology/ncbi-toolkit/distinfo @@ -1,2 +1,3 @@ -SHA256 (ncbi-toolkit-2012.06.20/ncbi.tar.gz) = 603c9a4ade2a6f2f8e412558b732924d78fae403d225706e2ac38d553b08073c -SIZE (ncbi-toolkit-2012.06.20/ncbi.tar.gz) = 68428744 +TIMESTAMP = 1538934016 +SHA256 (ncbi-toolkit-2017.01.06/ncbi.tar.gz) = 4b88aaad8f953b1b50bc7d06f3a5920f0d589d2c9a26c709199f8347905f5867 +SIZE (ncbi-toolkit-2017.01.06/ncbi.tar.gz) = 155731358 diff --git a/biology/ncbi-toolkit/files/patch-corelib__ncbimisc.c b/biology/ncbi-toolkit/files/patch-corelib__ncbimisc.c deleted file mode 100644 index 095c6231ba5..00000000000 --- a/biology/ncbi-toolkit/files/patch-corelib__ncbimisc.c +++ /dev/null @@ -1,11 +0,0 @@ ---- corelib/ncbimisc.c.orig -+++ corelib/ncbimisc.c -@@ -1266,7 +1266,7 @@ - if (len < 1) return NULL; - - rsult = (Nlm_CharPtr) MemNew (len + 3); -- if (rsult == NULL) return; -+ if (rsult == NULL) return NULL; - tmp = rsult; - - for (i = 0; /* local [i] != NULL */ i < numitems; i++) { diff --git a/biology/ncbi-toolkit/files/patch-make-makenet.unx b/biology/ncbi-toolkit/files/patch-make-makenet.unx deleted file mode 100644 index 2e51654e29e..00000000000 --- a/biology/ncbi-toolkit/files/patch-make-makenet.unx +++ /dev/null @@ -1,58 +0,0 @@ ---- make/makenet.unx.orig 2008-12-11 00:23:29.000000000 +0300 -+++ make/makenet.unx 2011-04-14 00:26:38.440426134 +0400 -@@ -67,6 +67,7 @@ - VIB = - VIBLIBS= -lXm -lXmu -lXt -lX11 - VIBLIBS= -+USERLIBS = -lXft -lpng -ljpeg %%ICONV_LIB%% - SEQUIN_OPTS = - LIBCOPY = cp -p - SRCCOPY = ./ln-if-absent -@@ -934,17 +935,17 @@ - $(CC) -o ddv $(LDFLAGS) $(OBJDDV) $(LIB41) $(LIB31) $(LIB20) $(LIB61) $(LIB60) $(LIB22) $(LIB45) \ - $(LIB8) $(LIB7) $(NETCLILIB) $(LIB3) $(LIB4) $(LIB23) \ - $(LIBCOMPADJ) $(LIB2) $(LIB1) \ -- $(VIBLIBS) $(OTHERLIBS) -+ $(VIBLIBS) $(OTHERLIBS) $(USERLIBS) - - udv : $(OBJUDV) - $(CC) -o udv $(LDFLAGS) $(OBJUDV) $(LIB41) $(LIB31) $(LIB20) $(LIB61) $(LIB60) $(LIB22) $(LIB45) \ - $(LIB8) $(LIB7) $(NETCLILIB) $(LIB3) $(LIB4) \ - $(LIB23) $(LIBCOMPADJ) $(LIB2) \ -- $(LIB1) $(VIBLIBS) $(OTHERLIBS) -+ $(LIB1) $(VIBLIBS) $(OTHERLIBS) $(USERLIBS) - - Nentrez : entrez.c $(ULIB31) - $(CC) -o Nentrez $(LDFLAGS) entrez.c $(LIB41) $(LIB31) $(LIB30) $(LIB20) $(LIB61) $(LIB60) $(LIB22) $(LIB45) \ -- $(LIB36) $(LIB23) $(LIBCOMPADJ) $(LIB8) $(LIB7) $(NETCLILIB) $(LIB5) $(LIB4) $(LIB3) $(LIB2) $(LIB1) $(VIBLIBS) $(OTHERLIBS) -+ $(LIB36) $(LIB23) $(LIBCOMPADJ) $(LIB8) $(LIB7) $(NETCLILIB) $(LIB5) $(LIB4) $(LIB3) $(LIB2) $(LIB1) $(VIBLIBS) $(OTHERLIBS) $(USERLIBS) - - # left this in (Tentrez) for script backwards compatibility - Tentrez : entrez.c $(ULIB31) -@@ -1140,7 +1141,7 @@ - entrez2 : entrez2.c - $(CC) -g -o entrez2 $(LDFLAGS) entrez2.c $(LIB41) $(LIB6) $(LIB20) \ - $(LIB61) $(LIB60) $(LIB22) $(LIB23) $(LIBCOMPADJ) \ -- $(LIB2) $(LIB4) $(LIB1) $(VIBLIBS) $(OTHERLIBS) -+ $(LIB2) $(LIB4) $(LIB1) $(VIBLIBS) $(OTHERLIBS) $(USERLIBS) - $(VIB_POST_LINK) entrez2 - - # demo program (spidey) -@@ -1421,7 +1422,7 @@ - $(CC) -o Psequin -I. $(LDFLAGS) -UINTERNAL_NCBI_SEQUIN $(SRCSEQUIN) \ - $(LIB30) $(LIB45) $(LIB31) $(LIB20) $(LIB61) $(LIB60) $(LIB22) \ - $(LIB40) $(LIB41) $(LIB36) $(LIB23) $(LIBCOMPADJ) $(LIB11) \ -- $(ENTREZLIBS) $(LIB4) $(LIB2) $(LIB1) $(VIBLIBS) $(OTHERLIBS) -+ $(ENTREZLIBS) $(LIB4) $(LIB2) $(LIB1) $(VIBLIBS) $(OTHERLIBS) $(USERLIBS) - $(VIB_POST_LINK) Psequin - - # 'sbtedit' Submission Template Editor -@@ -1433,7 +1434,7 @@ - $(CC) -o sbtedit -I. $(LDFLAGS) -UINTERNAL_NCBI_SEQUIN $(SRCSBTEDIT) \ - $(LIB30) $(LIB45) $(LIB31) $(LIB20) $(LIB61) $(LIB60) $(LIB22) \ - $(LIB40) $(LIB41) $(LIB36) $(LIB23) $(LIBCOMPADJ) $(LIB11) \ -- $(ENTREZLIBS) $(LIB4) $(LIB2) $(LIB1) $(VIBLIBS) $(OTHERLIBS) -+ $(ENTREZLIBS) $(LIB4) $(LIB2) $(LIB1) $(VIBLIBS) $(OTHERLIBS) $(USERLIBS) - $(VIB_POST_LINK) sbtedit - - # 'streamer' Sequinesque Stream Editor diff --git a/biology/ncbi-toolkit/pkg-descr b/biology/ncbi-toolkit/pkg-descr index 35331ba63d4..2c44aef3215 100644 --- a/biology/ncbi-toolkit/pkg-descr +++ b/biology/ncbi-toolkit/pkg-descr @@ -16,4 +16,4 @@ From the README: have found it a useful and stable basis for a number of tools and applications. -WWW: http://www.ncbi.nlm.nih.gov/IEB/ToolBox/MainPage/index.html +WWW: https://www.ncbi.nlm.nih.gov/IEB/ToolBox/MainPage/index.html diff --git a/biology/ncbi-toolkit/pkg-plist b/biology/ncbi-toolkit/pkg-plist index efd3cb71ee0..24f92e502b7 100644 --- a/biology/ncbi-toolkit/pkg-plist +++ b/biology/ncbi-toolkit/pkg-plist @@ -6,14 +6,9 @@ bin/asn2idx bin/asn2xml bin/asndhuff bin/asntool -bin/bl2seq -bin/blastall bin/blastcl3 -bin/blastclust -bin/blastpgp bin/cdscan bin/checksub -bin/copymat bin/ddv bin/debruijn bin/demo_regexp @@ -23,27 +18,22 @@ bin/entrcmd bin/entrez2 bin/errhdr bin/fa2htgs -bin/fastacmd bin/findspl -bin/formatdb -bin/formatrpsdb bin/gene2xml bin/getmesh bin/getpub bin/gil2bin bin/idfetch -bin/impala bin/indexpub -bin/makemat bin/makeset -bin/megablast bin/ncbisort -bin/rpsblast bin/sbtedit -bin/seedtop bin/seqtest -bin/taxblast bin/tbl2asn +bin/test_regexp +bin/testcore +bin/testobj +bin/testval bin/udv bin/vecscreen include/ncbi/FSpCompat.h @@ -186,7 +176,10 @@ include/ncbi/connect/ncbi_heapmgr.h include/ncbi/connect/ncbi_host_info.h include/ncbi/connect/ncbi_host_infop.h include/ncbi/connect/ncbi_http_connector.h +include/ncbi/connect/ncbi_ipv6.h include/ncbi/connect/ncbi_lb.h +include/ncbi/connect/ncbi_lbos.h +include/ncbi/connect/ncbi_lbosp.h include/ncbi/connect/ncbi_lbsmd.h include/ncbi/connect/ncbi_local.h include/ncbi/connect/ncbi_memory_connector.h @@ -564,6 +557,7 @@ include/ncbi/xmlblast.h lib/ncbi/libblast.a lib/ncbi/libblastapi.a lib/ncbi/libblastcompadj.a +lib/ncbi/libconnssl.a lib/ncbi/libddvlib.a lib/ncbi/libncbi.a lib/ncbi/libncbiCacc.a @@ -586,41 +580,46 @@ lib/ncbi/libvibgif.a lib/ncbi/libvibnet.a lib/ncbi/libvibrant.a man/man1/Psequin.1.gz +man/man1/asn2all.1.gz +man/man1/asn2asn.1.gz man/man1/asn2ff.1.gz +man/man1/asn2fsa.1.gz +man/man1/asn2gb.1.gz man/man1/asn2idx.1.gz man/man1/asn2xml.1.gz man/man1/asndhuff.1.gz +man/man1/asndisc.1.gz +man/man1/asnmacro.1.gz man/man1/asntool.1.gz -man/man1/bl2seq.1.gz -man/man1/blast.1.gz -man/man1/blastall.1.gz +man/man1/asnval.1.gz man/man1/blastcl3.1.gz -man/man1/blastclust.1.gz -man/man1/blastpgp.1.gz man/man1/cdscan.1.gz man/man1/checksub.1.gz -man/man1/copymat.1.gz +man/man1/cleanasn.1.gz man/man1/ddv.1.gz man/man1/debruijn.1.gz man/man1/entrez2.1.gz man/man1/errhdr.1.gz man/man1/fa2htgs.1.gz -man/man1/fastacmd.1.gz man/man1/findspl.1.gz -man/man1/formatdb.1.gz -man/man1/formatrpsdb.1.gz +man/man1/fmerge.1.gz +man/man1/gbseqget.1.gz +man/man1/gene2xml.1.gz man/man1/getmesh.1.gz man/man1/getpub.1.gz man/man1/gil2bin.1.gz man/man1/idfetch.1.gz -man/man1/impala.1.gz man/man1/indexpub.1.gz -man/man1/makemat.1.gz -man/man1/megablast.1.gz -man/man1/rpsblast.1.gz -man/man1/seedtop.1.gz -man/man1/taxblast.1.gz +man/man1/insdseqget.1.gz +man/man1/makeset.1.gz +man/man1/nps2gps.1.gz +man/man1/sbtedit.1.gz +man/man1/sortbyquote.1.gz +man/man1/spidey.1.gz +man/man1/subfuse.1.gz man/man1/tbl2asn.1.gz +man/man1/trna2sap.1.gz +man/man1/trna2tbl.1.gz man/man1/udv.1.gz man/man1/vecscreen.1.gz %%PORTDOCS%%%%DOCSDIR%%/FAQ.txt @@ -629,26 +628,8 @@ man/man1/vecscreen.1.gz %%PORTDOCS%%%%DOCSDIR%%/access.txt %%PORTDOCS%%%%DOCSDIR%%/asn2gb.txt %%PORTDOCS%%%%DOCSDIR%%/asn2gph.txt -%%PORTDOCS%%%%DOCSDIR%%/blast/bl2seq.html -%%PORTDOCS%%%%DOCSDIR%%/blast/blast.html -%%PORTDOCS%%%%DOCSDIR%%/blast/blastall.html -%%PORTDOCS%%%%DOCSDIR%%/blast/blastclust.html -%%PORTDOCS%%%%DOCSDIR%%/blast/blastdb.html -%%PORTDOCS%%%%DOCSDIR%%/blast/blastftp.html -%%PORTDOCS%%%%DOCSDIR%%/blast/blastpgp.html -%%PORTDOCS%%%%DOCSDIR%%/blast/fastacmd.html %%PORTDOCS%%%%DOCSDIR%%/blast/filter.html -%%PORTDOCS%%%%DOCSDIR%%/blast/formatdb.html -%%PORTDOCS%%%%DOCSDIR%%/blast/formatrpsdb.html -%%PORTDOCS%%%%DOCSDIR%%/blast/history.html -%%PORTDOCS%%%%DOCSDIR%%/blast/impala.html -%%PORTDOCS%%%%DOCSDIR%%/blast/index.html -%%PORTDOCS%%%%DOCSDIR%%/blast/megablast.html %%PORTDOCS%%%%DOCSDIR%%/blast/netblast.html -%%PORTDOCS%%%%DOCSDIR%%/blast/rpsblast.html -%%PORTDOCS%%%%DOCSDIR%%/blast/scoring.pdf -%%PORTDOCS%%%%DOCSDIR%%/blast/seedtop.html -%%PORTDOCS%%%%DOCSDIR%%/blast/web_blast.pl %%PORTDOCS%%%%DOCSDIR%%/dispatcher.html %%PORTDOCS%%%%DOCSDIR%%/fa2htgs/README %%PORTDOCS%%%%DOCSDIR%%/fa2htgs/updateHtgsDoc @@ -761,12 +742,36 @@ man/man1/vecscreen.1.gz %%DATADIR%%/LSURef_93.fasta.nhr %%DATADIR%%/LSURef_93.fasta.nin %%DATADIR%%/LSURef_93.fasta.nsq +%%DATADIR%%/LSU_chloro_rRNA.nhr +%%DATADIR%%/LSU_chloro_rRNA.nin +%%DATADIR%%/LSU_chloro_rRNA.nsq +%%DATADIR%%/LSU_mito_rRNA.nhr +%%DATADIR%%/LSU_mito_rRNA.nin +%%DATADIR%%/LSU_mito_rRNA.nsq +%%DATADIR%%/LSU_nomito-nochloro-noplastid.nhr +%%DATADIR%%/LSU_nomito-nochloro-noplastid.nin +%%DATADIR%%/LSU_nomito-nochloro-noplastid.nsq +%%DATADIR%%/LSU_plastid.nhr +%%DATADIR%%/LSU_plastid.nin +%%DATADIR%%/LSU_plastid.nsq %%DATADIR%%/PAM250 %%DATADIR%%/PAM30 %%DATADIR%%/PAM70 +%%DATADIR%%/SSU-mito-rRNA.nhr +%%DATADIR%%/SSU-mito-rRNA.nin +%%DATADIR%%/SSU-mito-rRNA.nsq %%DATADIR%%/SSURef_93.fasta.nhr %%DATADIR%%/SSURef_93.fasta.nin %%DATADIR%%/SSURef_93.fasta.nsq +%%DATADIR%%/SSU_chloro_rRNA.nhr +%%DATADIR%%/SSU_chloro_rRNA.nin +%%DATADIR%%/SSU_chloro_rRNA.nsq +%%DATADIR%%/SSU_nomito_nochloro_noplastid.nhr +%%DATADIR%%/SSU_nomito_nochloro_noplastid.nin +%%DATADIR%%/SSU_nomito_nochloro_noplastid.nsq +%%DATADIR%%/SSU_plast_rRNA.nhr +%%DATADIR%%/SSU_plast_rRNA.nin +%%DATADIR%%/SSU_plast_rRNA.nsq %%DATADIR%%/UniVec.nhr %%DATADIR%%/UniVec.nin %%DATADIR%%/UniVec.nsq @@ -775,6 +780,9 @@ man/man1/vecscreen.1.gz %%DATADIR%%/UniVec_Core.nsq %%DATADIR%%/asn2ff.prt %%DATADIR%%/autofix.prt +%%DATADIR%%/bacteria-archea16SrRNA.nhr +%%DATADIR%%/bacteria-archea16SrRNA.nin +%%DATADIR%%/bacteria-archea16SrRNA.nsq %%DATADIR%%/blast.prt %%DATADIR%%/bstdt.prt %%DATADIR%%/bstdt.val diff --git a/biology/p5-AcePerl/Makefile b/biology/p5-AcePerl/Makefile index 5e573cd41fe..f392a078601 100644 --- a/biology/p5-AcePerl/Makefile +++ b/biology/p5-AcePerl/Makefile @@ -14,8 +14,8 @@ COMMENT= Perl5 interface to the ACEDB genome database system LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Cache-Cache>=0:devel/p5-Cache-Cache -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Cache-Cache>=0:devel/p5-Cache-Cache MAKE_JOBS_UNSAFE= yes USES= perl5 diff --git a/biology/p5-Bio-ASN1-EntrezGene/Makefile b/biology/p5-Bio-ASN1-EntrezGene/Makefile index 035f3aef8c3..8b2c9e6e9b2 100644 --- a/biology/p5-Bio-ASN1-EntrezGene/Makefile +++ b/biology/p5-Bio-ASN1-EntrezGene/Makefile @@ -16,8 +16,8 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-BioPerl>=0:biology/p5-BioPerl -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-BioPerl>=0:biology/p5-BioPerl NO_ARCH= yes USES= perl5 diff --git a/biology/p5-Bio-Coordinate/Makefile b/biology/p5-Bio-Coordinate/Makefile index 2fec0c96e03..f8ef5d839cd 100644 --- a/biology/p5-Bio-Coordinate/Makefile +++ b/biology/p5-Bio-Coordinate/Makefile @@ -14,8 +14,8 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-BioPerl>=1.007000:biology/p5-BioPerl -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-BioPerl>=1.007000:biology/p5-BioPerl NO_ARCH= yes USE_PERL5= configure diff --git a/biology/p5-Bio-Das-Lite/Makefile b/biology/p5-Bio-Das-Lite/Makefile index 7472b6eb4d8..330ff878a6f 100644 --- a/biology/p5-Bio-Das-Lite/Makefile +++ b/biology/p5-Bio-Das-Lite/Makefile @@ -14,10 +14,10 @@ COMMENT= Perl extension for the DAS (HTTP+XML) Protocol LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Readonly>=1.03:devel/p5-Readonly \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Readonly>=1.03:devel/p5-Readonly \ p5-libwww>=0:www/p5-libwww \ p5-WWW-Curl>=4.07:www/p5-WWW-Curl -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= modbuild diff --git a/biology/p5-Bio-Das/Makefile b/biology/p5-Bio-Das/Makefile index 41a930813f5..b8ef669e867 100644 --- a/biology/p5-Bio-Das/Makefile +++ b/biology/p5-Bio-Das/Makefile @@ -14,10 +14,10 @@ COMMENT= Client-side library for Distributed Genome Annotation System LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-BioPerl>=0:biology/p5-BioPerl \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-BioPerl>=0:biology/p5-BioPerl \ p5-HTML-Parser>=3:www/p5-HTML-Parser \ p5-libwww>=5:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/biology/p5-Bio-FeatureIO/Makefile b/biology/p5-Bio-FeatureIO/Makefile index 2f85c893b76..809eddb61c9 100644 --- a/biology/p5-Bio-FeatureIO/Makefile +++ b/biology/p5-Bio-FeatureIO/Makefile @@ -14,12 +14,12 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-BioPerl>=0:biology/p5-BioPerl \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-BioPerl>=0:biology/p5-BioPerl \ p5-Tree-DAG_Node>=0:devel/p5-Tree-DAG_Node \ p5-URI>=0:net/p5-URI \ p5-XML-DOM>=0:textproc/p5-XML-DOM \ p5-XML-DOM-XPath>=0:textproc/p5-XML-DOM-XPath -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USE_PERL5= configure diff --git a/biology/p5-Bio-GFF3/Makefile b/biology/p5-Bio-GFF3/Makefile index 955c5700fb8..25fe0509e0e 100644 --- a/biology/p5-Bio-GFF3/Makefile +++ b/biology/p5-Bio-GFF3/Makefile @@ -14,10 +14,10 @@ COMMENT= Fast low-level functions for parsing and formatting GFF3 LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-File-ReadBackwards>=0:devel/p5-File-ReadBackwards \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-File-ReadBackwards>=0:devel/p5-File-ReadBackwards \ p5-List-MoreUtils>=0:lang/p5-List-MoreUtils \ p5-URI>=0:net/p5-URI -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-IO-String>=0:devel/p5-IO-String USES= perl5 diff --git a/biology/p5-Bio-Glite/Makefile b/biology/p5-Bio-Glite/Makefile index ed0668d4458..58be4ad54db 100644 --- a/biology/p5-Bio-Glite/Makefile +++ b/biology/p5-Bio-Glite/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Perl Interface to G-language -BUILD_DEPENDS= p5-libwww>=5:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-libwww>=5:www/p5-libwww USES= perl5 USE_PERL5= configure diff --git a/biology/p5-Bio-Graphics/Makefile b/biology/p5-Bio-Graphics/Makefile index f1662723318..9fc0800d336 100644 --- a/biology/p5-Bio-Graphics/Makefile +++ b/biology/p5-Bio-Graphics/Makefile @@ -14,14 +14,14 @@ COMMENT= Generate GD Images of Bio::Seq Objects LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Bio-Coordinate>=1.007000:biology/p5-Bio-Coordinate \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Bio-Coordinate>=1.007000:biology/p5-Bio-Coordinate \ p5-Bio-SCF>=1.01:biology/p5-Bio-SCF \ p5-BioPerl>=1.007000:biology/p5-BioPerl \ p5-CGI>=0:www/p5-CGI \ p5-GD>=2.30:graphics/p5-GD \ p5-GD-SVG>=0.32:graphics/p5-GD-SVG \ p5-Statistics-Descriptive>=2.6:math/p5-Statistics-Descriptive -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/biology/p5-Bio-MAGETAB/Makefile b/biology/p5-Bio-MAGETAB/Makefile index ce4faf061c8..c8b95d8236a 100644 --- a/biology/p5-Bio-MAGETAB/Makefile +++ b/biology/p5-Bio-MAGETAB/Makefile @@ -13,7 +13,8 @@ COMMENT= Data model and utility API for the MAGE-TAB format LICENSE= GPLv2 -BUILD_DEPENDS= p5-Date-Manip>=5.44:devel/p5-Date-Manip \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Date-Manip>=5.44:devel/p5-Date-Manip \ p5-DateTime>=0.43.02:devel/p5-DateTime \ p5-DateTime-Format-DateManip>=0.04:devel/p5-DateTime-Format-DateManip \ p5-Email-Valid>=0.179:mail/p5-Email-Valid \ @@ -24,7 +25,6 @@ BUILD_DEPENDS= p5-Date-Manip>=5.44:devel/p5-Date-Manip \ p5-Parse-RecDescent>=1.965.001:devel/p5-Parse-RecDescent \ p5-Text-CSV_XS>=0.32:textproc/p5-Text-CSV_XS \ p5-URI>=1.35:net/p5-URI -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Exception>=0.26:devel/p5-Test-Exception USES= perl5 diff --git a/biology/p5-Bio-NEXUS/Makefile b/biology/p5-Bio-NEXUS/Makefile index bba1732dbd3..2559e08c151 100644 --- a/biology/p5-Bio-NEXUS/Makefile +++ b/biology/p5-Bio-NEXUS/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Object-oriented Perl API for the NEXUS file format -BUILD_DEPENDS= p5-Clone-PP>=1.02:devel/p5-Clone-PP -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Clone-PP>=1.02:devel/p5-Clone-PP TEST_DEPENDS= p5-Test-Deep>=0.106:devel/p5-Test-Deep \ p5-Test-Pod>=0:devel/p5-Test-Pod \ diff --git a/biology/p5-Bio-Phylo/Makefile b/biology/p5-Bio-Phylo/Makefile index cf6f40d3e1b..68512e73a70 100644 --- a/biology/p5-Bio-Phylo/Makefile +++ b/biology/p5-Bio-Phylo/Makefile @@ -15,7 +15,8 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE_ART10= ${WRKSRC}/COPYING -BUILD_DEPENDS= p5-Archive-Zip>=0:archivers/p5-Archive-Zip \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Archive-Zip>=0:archivers/p5-Archive-Zip \ p5-BioPerl>=0:biology/p5-BioPerl \ p5-GD>=0:graphics/p5-GD \ p5-Math-CDF>=0:math/p5-Math-CDF \ @@ -29,7 +30,6 @@ BUILD_DEPENDS= p5-Archive-Zip>=0:archivers/p5-Archive-Zip \ p5-XML-Twig>=0:textproc/p5-XML-Twig \ p5-XML-XML2JSON>=0:textproc/p5-XML-XML2JSON \ p5-libxml>=0:textproc/p5-libxml -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-JSON>=0:converters/p5-JSON NO_ARCH= yes diff --git a/biology/p5-Bio-SCF/Makefile b/biology/p5-Bio-SCF/Makefile index 7582862189d..0013bfe5b43 100644 --- a/biology/p5-Bio-SCF/Makefile +++ b/biology/p5-Bio-SCF/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= wen@FreeBSD.org COMMENT= Read and Update SCF Chromatographic Sequence Files -BUILD_DEPENDS= ${LOCALBASE}/include/io_lib/scf.h:biology/iolib -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= ${LOCALBASE}/include/io_lib/scf.h:biology/iolib CFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib diff --git a/biology/p5-BioPerl-Run/Makefile b/biology/p5-BioPerl-Run/Makefile index 27a06f98bcb..7c344b617cf 100644 --- a/biology/p5-BioPerl-Run/Makefile +++ b/biology/p5-BioPerl-Run/Makefile @@ -15,7 +15,8 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE_ART10= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Algorithm-Diff>=0:devel/p5-Algorithm-Diff \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Algorithm-Diff>=0:devel/p5-Algorithm-Diff \ p5-Bio-FeatureIO>=0:biology/p5-Bio-FeatureIO \ p5-BioPerl>=1.007000:biology/p5-BioPerl \ p5-Config-Any>=0:devel/p5-Config-Any \ @@ -23,7 +24,6 @@ BUILD_DEPENDS= p5-Algorithm-Diff>=0:devel/p5-Algorithm-Diff \ p5-IO-String>=0:devel/p5-IO-String \ p5-IPC-Run>=0:devel/p5-IPC-Run \ p5-XML-Twig>=0:textproc/p5-XML-Twig -RUN_DEPENDS:= ${BUILD_DEPENDS} CONFLICTS= p5-bioperl-run-1.[13579]* diff --git a/biology/p5-BioPerl/Makefile b/biology/p5-BioPerl/Makefile index 55105152f73..a6b2bbbbe69 100644 --- a/biology/p5-BioPerl/Makefile +++ b/biology/p5-BioPerl/Makefile @@ -14,7 +14,8 @@ COMMENT= Collection of Perl modules for bioinformatics LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Algorithm-Munkres>=0:math/p5-Algorithm-Munkres \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Algorithm-Munkres>=0:math/p5-Algorithm-Munkres \ p5-Array-Compare>=0:misc/p5-Array-Compare \ p5-CGI>=0:www/p5-CGI \ p5-Clone>=0:devel/p5-Clone \ @@ -51,7 +52,6 @@ BUILD_DEPENDS= p5-Algorithm-Munkres>=0:math/p5-Algorithm-Munkres \ p5-YAML>=0:textproc/p5-YAML \ p5-libwww>=0:www/p5-libwww \ p5-libxml>=0:textproc/p5-libxml -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Most>=0:devel/p5-Test-Most \ p5-URI>=0:net/p5-URI diff --git a/biology/py-biom-format/Makefile b/biology/py-biom-format/Makefile index a0a3629b7d9..3e8a8957fe7 100644 --- a/biology/py-biom-format/Makefile +++ b/biology/py-biom-format/Makefile @@ -1,9 +1,9 @@ # $FreeBSD$ PORTNAME= biom-format -PORTVERSION= 2.1.6 -PORTREVISION= 2 +PORTVERSION= 2.1.7 CATEGORIES= biology python +MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= jrm@FreeBSD.org @@ -12,23 +12,21 @@ COMMENT= Biological Observation Matrix (BIOM) Format Project LICENSE= BSD3CLAUSE BUILD_DEPENDS= ${PYNUMPY} -RUN_DEPENDS= ${PYNUMPY} \ - ${PYTHON_PKGNAMEPREFIX}click>=6.6:devel/py-click@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}future>=0.15.2:devel/py-future@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}pandas>0:math/py-pandas@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}h5py>=2.6.0:science/py-h5py@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}scipy>=0.16.1:science/py-scipy@${PY_FLAVOR} - -USE_GITHUB= yes -GH_ACCOUNT= biocore +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}click>0:devel/py-click@${PY_FLAVOR} \ + ${PYNUMPY} \ + ${PYTHON_PKGNAMEPREFIX}future>=0.16.0:devel/py-future@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}scipy>=0.13.0:science/py-scipy@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pandas>=0.20.0:math/py-pandas@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}h5py>=2.2.0:science/py-h5py@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}six>=1.10.0:devel/py-six@${PY_FLAVOR} USES= python -USE_PYTHON= autoplist distutils +USE_PYTHON= autoplist concurrent distutils .include .if ${PYTHON_REL} < 3000 -RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}pyqi>=0.2.0:devel/py-pyqi@${PY_FLAVOR} +RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}pyqi>0:devel/py-pyqi@${PY_FLAVOR} .endif post-extract: diff --git a/biology/py-biom-format/distinfo b/biology/py-biom-format/distinfo index 1ac352b0236..b705caff7e4 100644 --- a/biology/py-biom-format/distinfo +++ b/biology/py-biom-format/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1493465225 -SHA256 (biocore-biom-format-2.1.6_GH0.tar.gz) = f2daddb634c540e10d04e4f71174da98f57d7f95472f02c358df4ca82e3f9921 -SIZE (biocore-biom-format-2.1.6_GH0.tar.gz) = 11997159 +TIMESTAMP = 1538769748 +SHA256 (biom-format-2.1.7.tar.gz) = b47e54282ef13cddffdb00aea9183a87175a2372c91a915259086a3f444c42f4 +SIZE (biom-format-2.1.7.tar.gz) = 11820666 diff --git a/biology/tinker/Makefile b/biology/tinker/Makefile deleted file mode 100644 index 640d4917686..00000000000 --- a/biology/tinker/Makefile +++ /dev/null @@ -1,69 +0,0 @@ -# Created by: Glenn Johnson -# $FreeBSD$ - -PORTNAME= tinker -PORTVERSION= 7.1.3 -PORTREVISION= 5 -CATEGORIES= biology -MASTER_SITES= http://dasher.wustl.edu/tinker/downloads/ - -MAINTAINER= ports@FreeBSD.org -COMMENT= General purpose molecular modelling package - -LICENSE= tinker -LICENSE_NAME= TINKER license agreement -LICENSE_FILE= ${WRKSRC}/doc/license.txt -LICENSE_PERMS= auto-accept - -RESTRICTED= author requests no distribution except from his FTP site - -OPTIONS_DEFINE= OPTIMIZED_FFLAGS DOCS EXAMPLES -OPTIMIZED_FFLAGS_DESC= compilation optimizations - -WRKSRC= ${WRKDIR}/${PORTNAME} -BUILD_WRKSRC= ${WRKSRC}/source -INSTALL_WRKSRC= ${WRKSRC}/source - -USES= fortran -MAKE_ENV= HAVE_G2C=yes -MAKEFILE= ${WRKSRC}/make/Makefile -ALL_TARGET= all -INSTALL_TARGET= rename -EXTRACT_AFTER_ARGS=--exclude fftw --exclude windows --exclude macosx - -USE_HARDENING= pie:off relro:off - -SUB_FILES= pkg-message - -.include - -.if ${PORT_OPTIONS:MOPTIMIZED_FFLAGS} -FFLAGS+= -O3 -ffast-math -finline-functions -fomit-frame-pointer -funroll-loops -fexpensive-optimizations -.if (${ARCH} == "i386") -FFLAGS+= -mfancy-math-387 -malign-double -.endif # i386 -.endif - -pre-build: - @${RM} ${BUILD_WRKSRC}/*.c - -post-install: - ${MKDIR} ${STAGEDIR}${DATADIR} - ${MKDIR} ${STAGEDIR}${DATADIR}/bench - (cd ${WRKSRC}/bench && ${INSTALL_DATA} \ - 0README *.log *.key *.run *.xyz results* \ - ${STAGEDIR}${DATADIR}/bench) - ${MKDIR} ${STAGEDIR}${DATADIR}/params - (cd ${WRKSRC}/params && ${INSTALL_DATA} * ${STAGEDIR}${DATADIR}/params) - ${MKDIR} ${STAGEDIR}${DATADIR}/test - (cd ${WRKSRC}/test && ${INSTALL_DATA} * ${STAGEDIR}${DATADIR}/test) -post-install-DOCS-on: - ${MKDIR} ${STAGEDIR}${DOCSDIR} - (cd ${WRKSRC}/doc && ${INSTALL_DATA} 0README *.pdf *.txt ${STAGEDIR}${DOCSDIR}) -post-install-EXAMPLES-on: - ${MKDIR} ${STAGEDIR}${EXAMPLESDIR} - (cd ${WRKSRC}/example && ${INSTALL_DATA} \ - 0README *.make *.dyn *.int *.frac *.key *.seq *.pdb *.xyz \ - ${STAGEDIR}${EXAMPLESDIR}) - -.include diff --git a/biology/tinker/distinfo b/biology/tinker/distinfo deleted file mode 100644 index ecf2364c3b8..00000000000 --- a/biology/tinker/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -SHA256 (tinker-7.1.3.tar.gz) = c221459ac1ac423ed8c99c7ba67eaab09821c970333cd2841efb20ccbfd59095 -SIZE (tinker-7.1.3.tar.gz) = 28655947 diff --git a/biology/tinker/files/patch-bench__bench1.run b/biology/tinker/files/patch-bench__bench1.run deleted file mode 100644 index 85d75d832f0..00000000000 --- a/biology/tinker/files/patch-bench__bench1.run +++ /dev/null @@ -1,5 +0,0 @@ ---- bench/bench1.run.orig 2015-05-08 20:57:45 UTC -+++ bench/bench1.run -@@ -1 +1 @@ --../bin/timer bench1 100 y -+timer bench1 1 y diff --git a/biology/tinker/files/patch-bench__bench2.run b/biology/tinker/files/patch-bench__bench2.run deleted file mode 100644 index a6f09683577..00000000000 --- a/biology/tinker/files/patch-bench__bench2.run +++ /dev/null @@ -1,5 +0,0 @@ ---- bench/bench2.run.orig 2015-05-08 20:57:45 UTC -+++ bench/bench2.run -@@ -1 +1 @@ --../bin/timer bench2 1000 y -+timer bench2 1 y diff --git a/biology/tinker/files/patch-bench__bench3.run b/biology/tinker/files/patch-bench__bench3.run deleted file mode 100644 index fc1db99f32d..00000000000 --- a/biology/tinker/files/patch-bench__bench3.run +++ /dev/null @@ -1,5 +0,0 @@ ---- bench/bench3.run.orig Wed Sep 5 14:00:09 2001 -+++ bench/bench3.run Wed Sep 5 14:01:27 2001 -@@ -1 +1 @@ --time ../bin/vibrate bench3 0 -+time vibrate bench3 0 diff --git a/biology/tinker/files/patch-bench__bench4.run b/biology/tinker/files/patch-bench__bench4.run deleted file mode 100644 index f7f896a8cd7..00000000000 --- a/biology/tinker/files/patch-bench__bench4.run +++ /dev/null @@ -1,5 +0,0 @@ ---- bench/bench4.run.orig 2014-12-16 05:17:53.000000000 +0200 -+++ bench/bench4.run 2014-12-28 18:56:02.000000000 +0200 -@@ -1 +1 @@ --time ../bin/dynamic bench4 1000 1.0 10.0 2 298.0 -+time dynamic bench4 1000 1.0 10.0 2 298.0 diff --git a/biology/tinker/files/patch-bench__bench5.run b/biology/tinker/files/patch-bench__bench5.run deleted file mode 100644 index ada6f2b0952..00000000000 --- a/biology/tinker/files/patch-bench__bench5.run +++ /dev/null @@ -1,5 +0,0 @@ ---- bench/bench5.run.orig 2014-12-16 05:17:53.000000000 +0200 -+++ bench/bench5.run 2014-12-28 18:58:45.000000000 +0200 -@@ -1 +1 @@ --time ../bin/dynamic bench5 1000 1.0 10.0 2 298.0 -+time dynamic bench5 1000 1.0 10.0 2 298.0 diff --git a/biology/tinker/files/patch-make__Makefile b/biology/tinker/files/patch-make__Makefile deleted file mode 100644 index eb83d6a31f2..00000000000 --- a/biology/tinker/files/patch-make__Makefile +++ /dev/null @@ -1,235 +0,0 @@ ---- make/Makefile.orig 2015-05-18 16:58:50.748044000 +0800 -+++ make/Makefile 2015-05-18 17:07:06.767545000 +0800 -@@ -33,9 +33,9 @@ - ## BINDIR Hard Copies of TINKER Executables - ## LINKDIR Linked Copies of TINKER Executables - --TINKERDIR = $(HOME)/tinker --BINDIR = $(TINKERDIR)/bin --LINKDIR = /usr/local/bin -+TINKERDIR = ${WRKDIR} -+BINDIR = ${DESTDIR}${PREFIX}/bin -+#LINKDIR = /usr/local/bin - - #################################################################### - ## Known Machine Types; Uncomment One of the Following Sections ## -@@ -46,26 +46,26 @@ - ## CPU Type: Intel x86 Compatible - ## Compiler: GNU gfortran - --#F77 = gfortran --#LIBS = --#F77FLAGS = -c --#OPTFLAGS = -O3 -ffast-math --#LIBFLAGS = -crusv --#RANLIB = ranlib -c --#LINKFLAGS = $(OPTFLAGS) -static-libgcc -+F77 = ${FC} -+LIBS = -+F77FLAGS = -c ${FFLAGS} -+OPTFLAGS = -+LIBFLAGS = -crusv -+RANLIB = ranlib -+LINKFLAGS = ${LDFLAGS} - - ## Machine: Generic Linux or Macintosh - ## CPU Type: Intel x86 Compatible - ## Compiler: GNU gfortran - ## Parallel: OpenMP - --F77 = gfortran --LIBS = -L$(TINKERDIR)/fftw/lib -lfftw3_threads -lfftw3 --F77FLAGS = -c --OPTFLAGS = -O3 -ffast-math -fopenmp --LIBFLAGS = -crusv --RANLIB = ranlib -c --LINKFLAGS = $(OPTFLAGS) -static-libgcc -+#F77 = gfortran -+#LIBS = -L$(TINKERDIR)/fftw/lib -lfftw3_threads -lfftw3 -+#F77FLAGS = -c -+#OPTFLAGS = -O3 -ffast-math -fopenmp -+#LIBFLAGS = -crusv -+#RANLIB = ranlib -c -+#LINKFLAGS = $(OPTFLAGS) -static-libgcc - - ## Machine: Generic Linux - ## CPU Type: Intel x86 Compatible (also AMD) -@@ -106,7 +106,7 @@ - #LIBFLAGS = -crusv - #RANLIB = ranlib -c - #LINKFLAGS = $(OPTFLAGS) -static-intel -mmacosx-version-min=10.6 \ -- -Wl,-stack_size,0x10000000 -+# -Wl,-stack_size,0x10000000 - - ## Machine: Macintosh - ## CPU Type: Intel Xeon -@@ -710,92 +710,88 @@ - xyzpdb.x \ - xyzsybyl.x - --%.o: %.f -- ${F77} ${F77FLAGS} ${OPTFLAGS} $< -o $@ -+.SUFFIXES: .x - --%.o: %.c -- ${CC} ${CFLAGS} ${INCLUDEDIR} ${OPTFLAGS} $< -+.f.o: -+ ${F77} ${F77FLAGS} ${OPTFLAGS} $< -o $@ - --%.x: %.o libtinker.a -- ${F77} ${LINKFLAGS} -o $@ $^ ${LIBS}; strip $@ -+.o.x: libtinker.a -+ ${F77} ${LINKFLAGS} -o $@ $< libtinker.a ${LIBS} - - all: ${EXEFILES} - --install: -- rename -- - clean: - rm -f *.o *.mod *.a *.x - - listing: -- cat *.i *.f *.c > tinker.txt -+ cat *.i *.f > tinker.txt - - rename: -- mv alchemy.x $(BINDIR)/alchemy -- mv analyze.x $(BINDIR)/analyze -- mv anneal.x $(BINDIR)/anneal -- mv archive.x $(BINDIR)/archive -- mv bar.x $(BINDIR)/bar -- mv correlate.x $(BINDIR)/correlate -- mv crystal.x $(BINDIR)/crystal -- mv diffuse.x $(BINDIR)/diffuse -- mv distgeom.x $(BINDIR)/distgeom -- mv document.x $(BINDIR)/document -- mv dynamic.x $(BINDIR)/dynamic -- mv gda.x $(BINDIR)/gda -- mv intedit.x $(BINDIR)/intedit -- mv intxyz.x $(BINDIR)/intxyz -- mv minimize.x $(BINDIR)/minimize -- mv minirot.x $(BINDIR)/minirot -- mv minrigid.x $(BINDIR)/minrigid -- mv molxyz.x $(BINDIR)/molxyz -- mv monte.x $(BINDIR)/monte -- mv newton.x $(BINDIR)/newton -- mv newtrot.x $(BINDIR)/newtrot -- mv nucleic.x $(BINDIR)/nucleic -- mv optimize.x $(BINDIR)/optimize -- mv optirot.x $(BINDIR)/optirot -- mv optrigid.x $(BINDIR)/optrigid -- mv path.x $(BINDIR)/path -- mv pdbxyz.x $(BINDIR)/pdbxyz -- mv polarize.x $(BINDIR)/polarize -- mv poledit.x $(BINDIR)/poledit -- mv potential.x $(BINDIR)/potential -- mv prmedit.x $(BINDIR)/prmedit -- mv protein.x $(BINDIR)/protein -- mv pss.x $(BINDIR)/pss -- mv pssrigid.x $(BINDIR)/pssrigid -- mv pssrot.x $(BINDIR)/pssrot -- mv radial.x $(BINDIR)/radial -- mv saddle.x $(BINDIR)/saddle -- mv scan.x $(BINDIR)/scan -- mv sniffer.x $(BINDIR)/sniffer -- mv spacefill.x $(BINDIR)/spacefill -- mv spectrum.x $(BINDIR)/spectrum -- mv superpose.x $(BINDIR)/superpose -- mv sybylxyz.x $(BINDIR)/sybylxyz -- mv testgrad.x $(BINDIR)/testgrad -- mv testhess.x $(BINDIR)/testhess -- mv testpair.x $(BINDIR)/testpair -- mv testpol.x $(BINDIR)/testpol -- mv testrot.x $(BINDIR)/testrot -- mv timer.x $(BINDIR)/timer -- mv timerot.x $(BINDIR)/timerot -- mv torsfit.x $(BINDIR)/torsfit -- mv valence.x $(BINDIR)/valence -- mv vibbig.x $(BINDIR)/vibbig -- mv vibrate.x $(BINDIR)/vibrate -- mv vibrot.x $(BINDIR)/vibrot -- mv xtalfit.x $(BINDIR)/xtalfit -- mv xtalmin.x $(BINDIR)/xtalmin -- mv xyzedit.x $(BINDIR)/xyzedit -- mv xyzint.x $(BINDIR)/xyzint -- mv xyzpdb.x $(BINDIR)/xyzpdb -- mv xyzsybyl.x $(BINDIR)/xyzsybyl -+ ${BSD_INSTALL_PROGRAM} alchemy.x $(BINDIR)/alchemy -+ ${BSD_INSTALL_PROGRAM} analyze.x $(BINDIR)/analyze_t -+ ${BSD_INSTALL_PROGRAM} anneal.x $(BINDIR)/anneal -+ ${BSD_INSTALL_PROGRAM} archive.x $(BINDIR)/archive -+ ${BSD_INSTALL_PROGRAM} bar.x $(BINDIR)/bar -+ ${BSD_INSTALL_PROGRAM} correlate.x $(BINDIR)/correlate -+ ${BSD_INSTALL_PROGRAM} crystal.x $(BINDIR)/crystal -+ ${BSD_INSTALL_PROGRAM} diffuse.x $(BINDIR)/diffuse -+ ${BSD_INSTALL_PROGRAM} distgeom.x $(BINDIR)/distgeom -+ ${BSD_INSTALL_PROGRAM} document.x $(BINDIR)/document -+ ${BSD_INSTALL_PROGRAM} dynamic.x $(BINDIR)/dynamic -+ ${BSD_INSTALL_PROGRAM} gda.x $(BINDIR)/gda -+ ${BSD_INSTALL_PROGRAM} intedit.x $(BINDIR)/intedit -+ ${BSD_INSTALL_PROGRAM} intxyz.x $(BINDIR)/intxyz -+ ${BSD_INSTALL_PROGRAM} minimize.x $(BINDIR)/minimize -+ ${BSD_INSTALL_PROGRAM} minirot.x $(BINDIR)/minirot -+ ${BSD_INSTALL_PROGRAM} minrigid.x $(BINDIR)/minrigid -+ ${BSD_INSTALL_PROGRAM} molxyz.x $(BINDIR)/molxyz -+ ${BSD_INSTALL_PROGRAM} monte.x $(BINDIR)/monte -+ ${BSD_INSTALL_PROGRAM} newton.x $(BINDIR)/newton -+ ${BSD_INSTALL_PROGRAM} newtrot.x $(BINDIR)/newtrot -+ ${BSD_INSTALL_PROGRAM} nucleic.x $(BINDIR)/nucleic -+ ${BSD_INSTALL_PROGRAM} optimize.x $(BINDIR)/optimize -+ ${BSD_INSTALL_PROGRAM} optirot.x $(BINDIR)/optirot -+ ${BSD_INSTALL_PROGRAM} optrigid.x $(BINDIR)/optrigid -+ ${BSD_INSTALL_PROGRAM} path.x $(BINDIR)/path -+ ${BSD_INSTALL_PROGRAM} pdbxyz.x $(BINDIR)/pdbxyz -+ ${BSD_INSTALL_PROGRAM} polarize.x $(BINDIR)/polarize -+ ${BSD_INSTALL_PROGRAM} poledit.x $(BINDIR)/poledit -+ ${BSD_INSTALL_PROGRAM} potential.x $(BINDIR)/potential -+ ${BSD_INSTALL_PROGRAM} prmedit.x $(BINDIR)/prmedit -+ ${BSD_INSTALL_PROGRAM} protein.x $(BINDIR)/protein -+ ${BSD_INSTALL_PROGRAM} pss.x $(BINDIR)/pss -+ ${BSD_INSTALL_PROGRAM} pssrigid.x $(BINDIR)/pssrigid -+ ${BSD_INSTALL_PROGRAM} pssrot.x $(BINDIR)/pssrot -+ ${BSD_INSTALL_PROGRAM} radial.x $(BINDIR)/radial -+ ${BSD_INSTALL_PROGRAM} saddle.x $(BINDIR)/saddle -+ ${BSD_INSTALL_PROGRAM} scan.x $(BINDIR)/scan -+ ${BSD_INSTALL_PROGRAM} sniffer.x $(BINDIR)/sniffer -+ ${BSD_INSTALL_PROGRAM} spacefill.x $(BINDIR)/spacefill -+ ${BSD_INSTALL_PROGRAM} spectrum.x $(BINDIR)/spectrum -+ ${BSD_INSTALL_PROGRAM} superpose.x $(BINDIR)/superpose -+ ${BSD_INSTALL_PROGRAM} sybylxyz.x $(BINDIR)/sybylxyz -+ ${BSD_INSTALL_PROGRAM} testgrad.x $(BINDIR)/testgrad -+ ${BSD_INSTALL_PROGRAM} testhess.x $(BINDIR)/testhess -+ ${BSD_INSTALL_PROGRAM} testpair.x $(BINDIR)/testpair -+ ${BSD_INSTALL_PROGRAM} testpol.x $(BINDIR)/testpol -+ ${BSD_INSTALL_PROGRAM} testrot.x $(BINDIR)/testrot -+ ${BSD_INSTALL_PROGRAM} timer.x $(BINDIR)/timer -+ ${BSD_INSTALL_PROGRAM} timerot.x $(BINDIR)/timerot -+ ${BSD_INSTALL_PROGRAM} torsfit.x $(BINDIR)/torsfit -+ ${BSD_INSTALL_PROGRAM} valence.x $(BINDIR)/valence -+ ${BSD_INSTALL_PROGRAM} vibbig.x $(BINDIR)/vibbig -+ ${BSD_INSTALL_PROGRAM} vibrate.x $(BINDIR)/vibrate -+ ${BSD_INSTALL_PROGRAM} vibrot.x $(BINDIR)/vibrot -+ ${BSD_INSTALL_PROGRAM} xtalfit.x $(BINDIR)/xtalfit -+ ${BSD_INSTALL_PROGRAM} xtalmin.x $(BINDIR)/xtalmin -+ ${BSD_INSTALL_PROGRAM} xyzedit.x $(BINDIR)/xyzedit -+ ${BSD_INSTALL_PROGRAM} xyzint.x $(BINDIR)/xyzint -+ ${BSD_INSTALL_PROGRAM} xyzpdb.x $(BINDIR)/xyzpdb -+ ${BSD_INSTALL_PROGRAM} xyzsybyl.x $(BINDIR)/xyzsybyl - - remove_links: - rm -f $(LINKDIR)/alchemy -- rm -f $(LINKDIR)/analyze -+ rm -f $(LINKDIR)/analyze_t - rm -f $(LINKDIR)/anneal - rm -f $(LINKDIR)/archive - rm -f $(LINKDIR)/bar -@@ -858,7 +854,7 @@ - - create_links: - ln -s $(BINDIR)/alchemy $(LINKDIR)/alchemy -- ln -s $(BINDIR)/analyze $(LINKDIR)/analyze -+ ln -s $(BINDIR)/analyze_t $(LINKDIR)/analyze_t - ln -s $(BINDIR)/anneal $(LINKDIR)/anneal - ln -s $(BINDIR)/archive $(LINKDIR)/archive - ln -s $(BINDIR)/bar $(LINKDIR)/bar diff --git a/biology/tinker/pkg-plist b/biology/tinker/pkg-plist deleted file mode 100644 index 20ff4473d5c..00000000000 --- a/biology/tinker/pkg-plist +++ /dev/null @@ -1,631 +0,0 @@ -bin/alchemy -bin/analyze_t -bin/anneal -bin/archive -bin/bar -bin/correlate -bin/crystal -bin/diffuse -bin/distgeom -bin/document -bin/dynamic -bin/gda -bin/intedit -bin/intxyz -bin/minimize -bin/minirot -bin/minrigid -bin/molxyz -bin/monte -bin/newton -bin/newtrot -bin/nucleic -bin/optimize -bin/optirot -bin/optrigid -bin/path -bin/pdbxyz -bin/polarize -bin/poledit -bin/potential -bin/prmedit -bin/protein -bin/pss -bin/pssrigid -bin/pssrot -bin/radial -bin/saddle -bin/scan -bin/sniffer -bin/spacefill -bin/spectrum -bin/superpose -bin/sybylxyz -bin/testgrad -bin/testhess -bin/testpair -bin/testpol -bin/testrot -bin/timer -bin/timerot -bin/torsfit -bin/valence -bin/vibbig -bin/vibrate -bin/vibrot -bin/xtalfit -bin/xtalmin -bin/xyzedit -bin/xyzint -bin/xyzpdb -bin/xyzsybyl -%%PORTDOCS%%%%DOCSDIR%%/0README -%%PORTDOCS%%%%DOCSDIR%%/ffe-guide.pdf -%%PORTDOCS%%%%DOCSDIR%%/guide.pdf -%%PORTDOCS%%%%DOCSDIR%%/license.pdf -%%PORTDOCS%%%%DOCSDIR%%/license.txt -%%PORTDOCS%%%%DOCSDIR%%/summary.pdf -%%PORTDOCS%%%%DOCSDIR%%/summary.txt -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/0README -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/alatet.int -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/alatet.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/alatet.seq -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/alatet.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/alkane.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/alkane.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ammonia.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ammonia.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/amoeba.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/amoeba.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/anthracene.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/anthracene.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/aspirin.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/aspirin.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/arach.int -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/arach.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/arach.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/azulene.int -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/azulene.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/azulene.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bdna.int -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bdna.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bdna.make -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bdna.pdb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bdna.seq -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bdna.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bearing.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bearing.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bearing2.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/benzamidine.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/benzamidine.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/benzbox.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/benzbox.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/benzene.int -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/benzene.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/benzene.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/book.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/book.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bowl.int -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bowl.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bowl.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bowl2.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bowl2.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bowl3.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bowl3.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bucky.int -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bucky.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bucky.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/butane.int -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/butane.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/butane.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/butane2.int -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/butane2.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/butane2.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/butanes.dyn -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/butanes.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/butanes.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/butanex.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/butanex.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/butopls.int -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/butopls.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/butopls.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/butopls2.int -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/butopls2.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/butopls2.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/c5.int -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/c5.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/c5.seq -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/c5.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/c7a.int -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/c7a.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/c7a.seq -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/c7a.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/c7e.int -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/c7e.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/c7e.seq -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/c7e.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/cage.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/cage.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/calmodulin.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/calmodulin.pdb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/calmodulin.seq -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/calmodulin.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/cawater.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/cawater.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/cln025.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/cln025.make -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/cln025.pdb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/cln025.seq -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/cln025.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/copper.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/copper.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/cpentene.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/cpentene.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/crambin.dyn -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/crambin.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/crambin.pdb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/crambin.seq -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/crambin.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/crambin2.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/crambin2.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/crambin3.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/crambin3.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/crown.int -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/crown.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/crown.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/cychept.int -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/cychept.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/cychept.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/cyclo.int -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/cyclo.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/cyclo.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/cyclo2.int -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/cyclo2.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/cyclo2.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/cycprop.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/cycprop.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dang.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dang.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/deltorphin.int -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/deltorphin.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/deltorphin.make -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/deltorphin.seq -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/deltorphin.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dhfr.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dhfr.pdb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dhfr.seq -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dhfr.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dhfr2.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dhfr2.seq -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dhfr2.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/diamond.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/diamond.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/diene.int -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/diene.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/diene.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dimethane.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dimethane.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dmp.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dmp.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/enkephalin.int -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/enkephalin.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/enkephalin.make -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/enkephalin.seq -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/enkephalin.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ermer.int -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ermer.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ermer.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ester.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ester.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ethane.int -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ethane.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ethane.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ethanol.int -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ethanol.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ethanol.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ether.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ether.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/etherbox.dyn -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/etherbox.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/etherbox.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ethylene.int -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ethylene.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ethylene.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/flane.int -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/flane.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/flane.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/form.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/form.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/formbig.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/formbig.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/formbox.dyn -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/formbox.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/formbox.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/formopls.dyn -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/formopls.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/formopls.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/furan.int -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/furan.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/furan.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/glucose.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/glucose.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/glycerol.dyn -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/glycerol.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/glycerol.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graphite.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graphite.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/helix.dyn -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/helix.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/helix.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/heme.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/heme.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hexane.int -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hexane.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hexane.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hexanes.dyn -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hexanes.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hexanes.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/iamoeba.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/iamoeba.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/imidazole.int -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/imidazole.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/imidazole.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/imine.int -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/imine.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/imine.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/indole.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/indole.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/lactam.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/lactam.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/lipid.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/lipid.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/lj38.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/lj38.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/melittin.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/melittin.pdb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/melittin.seq -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/melittin.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/membrane.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/membrane.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/meohbox.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/meohbox.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/methane.int -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/methane.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/methane.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/methanol.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/methanol.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mgwater.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mgwater.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mm3.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mm3.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/nacl.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/nacl.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/nada.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/nada.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/naphthalene.int -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/naphthalene.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/naphthalene.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/naphthax.frac -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/naphthax.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/naphthax.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/nitrile.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/nitrile.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/nitrogen.dyn -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/nitrogen.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/nitrogen.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/nma.int -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/nma.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/nma.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/nmabox.dyn -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/nmabox.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/nmabox.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/nmf.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/nmf.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/nstilbene.int -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/nstilbene.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/nstilbene.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/octane.int -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/octane.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/octane.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/octane2.int -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/octane2.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/octane2.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/octene.dyn -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/octene.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/octene.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/palmitate.int -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/palmitate.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/palmitate.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pentane.frac -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pentane.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pentane.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/peptide.int -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/peptide.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/peptide.make -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/peptide.pdb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/peptide.seq -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/peptide.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/phenanth.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/phenanth.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/photo.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/photo.pdb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/photo.seq -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/photo.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pol3.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pol3.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/polyala.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/polyala.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/prism.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/prism.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/propane.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/propane.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/propellane.int -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/propellane.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/propellane.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/propyne.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/propyne.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pyridine.int -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pyridine.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pyridine.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pyrrole.int -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pyrrole.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pyrrole.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/retinoic.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/retinoic.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ring.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ring.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/skunk.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/skunk.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/spc.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/spc.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sterol.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sterol.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/styrene.int -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/styrene.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/styrene.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/terphenyl.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/terphenyl.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tfe.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tfe.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/thiadiene.int -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/thiadiene.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/thiadiene.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/thiophene.int -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/thiophene.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/thiophene.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/thr.int -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/thr.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/thr.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tip3f.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tip3f.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tip3p.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tip3p.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tip4f.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tip4f.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tip4p.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tip4p.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tip4pbox.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tip4pbox.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tip5p.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tip5p.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/trpcage.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/trpcage.pdb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/trpcage.seq -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/trpcage.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ubiquitin.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ubiquitin.pdb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ubiquitin.seq -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ubiquitin.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ubiquitin2.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ubiquitin2.seq -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ubiquitin2.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/urea.frac -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/urea.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/urea.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/water.int -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/water.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/water.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/waterball.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/waterball.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/waterbig.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/waterbig.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/waterbox.dyn -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/waterbox.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/waterbox.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/waterdot.dyn -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/waterdot.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/waterdot.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/waterglobe.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/waterglobe.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/waterhuge.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/waterhuge.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/waterslab.dyn -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/waterslab.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/waterslab.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/watersmall.dyn -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/watersmall.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/watersmall.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/watertiny.dyn -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/watertiny.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/watertiny.xyz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/white.int -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/white.key -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/white.xyz -%%DATADIR%%/bench/0README -%%DATADIR%%/bench/bench1.key -%%DATADIR%%/bench/bench1.run -%%DATADIR%%/bench/bench1.xyz -%%DATADIR%%/bench/bench2.key -%%DATADIR%%/bench/bench2.run -%%DATADIR%%/bench/bench2.xyz -%%DATADIR%%/bench/bench3.key -%%DATADIR%%/bench/bench3.log -%%DATADIR%%/bench/bench3.run -%%DATADIR%%/bench/bench3.xyz -%%DATADIR%%/bench/bench4.key -%%DATADIR%%/bench/bench4.log -%%DATADIR%%/bench/bench4.run -%%DATADIR%%/bench/bench4.xyz -%%DATADIR%%/bench/bench5.key -%%DATADIR%%/bench/bench5.log -%%DATADIR%%/bench/bench5.run -%%DATADIR%%/bench/bench5.xyz -%%DATADIR%%/bench/bench6.key -%%DATADIR%%/bench/bench6.log -%%DATADIR%%/bench/bench6.run -%%DATADIR%%/bench/bench6.xyz -%%DATADIR%%/bench/bench7.key -%%DATADIR%%/bench/bench7.log -%%DATADIR%%/bench/bench7.run -%%DATADIR%%/bench/bench7.xyz -%%DATADIR%%/bench/bench8.key -%%DATADIR%%/bench/bench8.log -%%DATADIR%%/bench/bench8.run -%%DATADIR%%/bench/bench8.xyz -%%DATADIR%%/bench/bench9.key -%%DATADIR%%/bench/bench9.log -%%DATADIR%%/bench/bench9.run -%%DATADIR%%/bench/bench9.xyz -%%DATADIR%%/bench/results-2.3 -%%DATADIR%%/bench/results-2.4 -%%DATADIR%%/bench/results-2.9 -%%DATADIR%%/bench/results-3.1 -%%DATADIR%%/bench/results-3.2 -%%DATADIR%%/bench/results-3.4 -%%DATADIR%%/bench/results-3.5 -%%DATADIR%%/bench/results-3.7 -%%DATADIR%%/bench/results-3.8 -%%DATADIR%%/bench/results-3.9 -%%DATADIR%%/bench/results-4.0 -%%DATADIR%%/bench/results-4.1 -%%DATADIR%%/bench/results-4.2 -%%DATADIR%%/bench/results-4.3 -%%DATADIR%%/bench/results-5.0 -%%DATADIR%%/bench/results-5.1 -%%DATADIR%%/bench/results-6.0 -%%DATADIR%%/bench/results-6.2 -%%DATADIR%%/bench/results-6.3 -%%DATADIR%%/bench/results-7.0 -%%DATADIR%%/params/0README -%%DATADIR%%/params/amber94.prm -%%DATADIR%%/params/amber96.prm -%%DATADIR%%/params/amber98.prm -%%DATADIR%%/params/amber99.prm -%%DATADIR%%/params/amber99sb.prm -%%DATADIR%%/params/amoeba04.prm -%%DATADIR%%/params/amoeba09.prm -%%DATADIR%%/params/amoebabio09.prm -%%DATADIR%%/params/amoebapro04.prm -%%DATADIR%%/params/amoebapro13.prm -%%DATADIR%%/params/charmm19.prm -%%DATADIR%%/params/charmm22.prm -%%DATADIR%%/params/charmm22cmap.prm -%%DATADIR%%/params/dang.prm -%%DATADIR%%/params/hoch.prm -%%DATADIR%%/params/iwater.prm -%%DATADIR%%/params/mm2.prm -%%DATADIR%%/params/mm3.prm -%%DATADIR%%/params/mm3pro.prm -%%DATADIR%%/params/mmff.prm -%%DATADIR%%/params/oplsaa.prm -%%DATADIR%%/params/oplsaal.prm -%%DATADIR%%/params/oplsua.prm -%%DATADIR%%/params/smoothaa.prm -%%DATADIR%%/params/smoothua.prm -%%DATADIR%%/params/tiny.prm -%%DATADIR%%/params/water03.prm -%%DATADIR%%/params/water14.prm -%%DATADIR%%/test/0README -%%DATADIR%%/test/anion.dat -%%DATADIR%%/test/anion.dyn0 -%%DATADIR%%/test/anion.key -%%DATADIR%%/test/anion.log -%%DATADIR%%/test/anion.run -%%DATADIR%%/test/anion.xyz -%%DATADIR%%/test/argon.1st -%%DATADIR%%/test/argon.key -%%DATADIR%%/test/argon.log -%%DATADIR%%/test/argon.run -%%DATADIR%%/test/cluster.dat -%%DATADIR%%/test/cluster.key -%%DATADIR%%/test/cluster.log -%%DATADIR%%/test/cluster.run -%%DATADIR%%/test/cluster.xyz -%%DATADIR%%/test/crambin.key -%%DATADIR%%/test/crambin.log -%%DATADIR%%/test/crambin.pdb -%%DATADIR%%/test/crambin.run -%%DATADIR%%/test/cyclohex.boat -%%DATADIR%%/test/cyclohex.chair -%%DATADIR%%/test/cyclohex.key -%%DATADIR%%/test/cyclohex.log -%%DATADIR%%/test/cyclohex.run -%%DATADIR%%/test/dhfr.dyn -%%DATADIR%%/test/dhfr.key -%%DATADIR%%/test/dhfr.log -%%DATADIR%%/test/dhfr.run -%%DATADIR%%/test/dhfr.xyz -%%DATADIR%%/test/dialanine.key -%%DATADIR%%/test/dialanine.log -%%DATADIR%%/test/dialanine.run -%%DATADIR%%/test/dialanine.xyz -%%DATADIR%%/test/enkephalin.dat -%%DATADIR%%/test/enkephalin.key -%%DATADIR%%/test/enkephalin.log -%%DATADIR%%/test/enkephalin.run -%%DATADIR%%/test/ethanol.000 -%%DATADIR%%/test/ethanol.020 -%%DATADIR%%/test/ethanol.040 -%%DATADIR%%/test/ethanol.060 -%%DATADIR%%/test/ethanol.080 -%%DATADIR%%/test/ethanol.100 -%%DATADIR%%/test/ethanol.120 -%%DATADIR%%/test/ethanol.140 -%%DATADIR%%/test/ethanol.160 -%%DATADIR%%/test/ethanol.180 -%%DATADIR%%/test/ethanol.dat -%%DATADIR%%/test/ethanol.key -%%DATADIR%%/test/ethanol.log -%%DATADIR%%/test/ethanol.run -%%DATADIR%%/test/ethanol.xyz -%%DATADIR%%/test/formamide.cell -%%DATADIR%%/test/formamide.dat -%%DATADIR%%/test/formamide.key -%%DATADIR%%/test/formamide.log -%%DATADIR%%/test/formamide.run -%%DATADIR%%/test/gpcr.blk -%%DATADIR%%/test/gpcr.key -%%DATADIR%%/test/gpcr.log -%%DATADIR%%/test/gpcr.run -%%DATADIR%%/test/gpcr.xyz -%%DATADIR%%/test/helix.1st -%%DATADIR%%/test/helix.key -%%DATADIR%%/test/helix.log -%%DATADIR%%/test/helix.run -%%DATADIR%%/test/ice.key -%%DATADIR%%/test/ice.log -%%DATADIR%%/test/ice.run -%%DATADIR%%/test/ice.xyz -%%DATADIR%%/test/ifabp.dat -%%DATADIR%%/test/ifabp.key -%%DATADIR%%/test/ifabp.log -%%DATADIR%%/test/ifabp.run -%%DATADIR%%/test/ifabp.xyz -%%DATADIR%%/test/nitrogen.arc -%%DATADIR%%/test/nitrogen.key -%%DATADIR%%/test/nitrogen.log -%%DATADIR%%/test/nitrogen.run -%%DATADIR%%/test/nitrogen.xyz -%%DATADIR%%/test/salt.cell -%%DATADIR%%/test/salt.key -%%DATADIR%%/test/salt.log -%%DATADIR%%/test/salt.run -%%DATADIR%%/test/tetraala.dat -%%DATADIR%%/test/tetraala.key -%%DATADIR%%/test/tetraala.log -%%DATADIR%%/test/tetraala.run -%%DATADIR%%/test/water.key -%%DATADIR%%/test/water.log -%%DATADIR%%/test/water.pot -%%DATADIR%%/test/water.run -%%DATADIR%%/test/water.xyz diff --git a/cad/calculix-ccx/Makefile b/cad/calculix-ccx/Makefile index ce918d97726..fa7558e5475 100644 --- a/cad/calculix-ccx/Makefile +++ b/cad/calculix-ccx/Makefile @@ -3,7 +3,7 @@ PORTNAME= ccx PORTVERSION= 2.14 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= cad MASTER_SITES= http://www.dhondt.de/ PKGNAMEPREFIX= CalculiX- @@ -16,7 +16,7 @@ COMMENT= Three-Dimensional Structural Finite Element Program LICENSE= GPLv2 -LIB_DEPENDS= libarpack.so:math/arpack \ +LIB_DEPENDS= libarpack.so:math/arpack-ng \ libmetis.so:math/metis4 \ libspooles.so:math/spooles \ libtaucs.so:math/taucs diff --git a/cad/elmerfem/Makefile b/cad/elmerfem/Makefile index 69fb96f5431..f9b6bc69157 100644 --- a/cad/elmerfem/Makefile +++ b/cad/elmerfem/Makefile @@ -3,7 +3,7 @@ PORTNAME= elmerfem PORTVERSION= 8.3.20170524 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= cad science MAINTAINER= ports@FreeBSD.org @@ -11,7 +11,7 @@ COMMENT= ELMER FEM package LICENSE= GPLv2 -LIB_DEPENDS= libparpack.so:math/arpack-ng-mpich \ +LIB_DEPENDS= libparpack.so:math/arpack-ng \ libmpich.so:net/mpich USE_GITHUB= yes diff --git a/cad/opencascade/Makefile b/cad/opencascade/Makefile index afaf6f740ab..19312ae4122 100644 --- a/cad/opencascade/Makefile +++ b/cad/opencascade/Makefile @@ -3,7 +3,7 @@ PORTNAME= opencascade PORTVERSION= 7.2.0 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= cad science MASTER_SITES= LOCAL/thierry diff --git a/chinese/fcitx-chewing/Makefile b/chinese/fcitx-chewing/Makefile index 9206a22be00..801ed905340 100644 --- a/chinese/fcitx-chewing/Makefile +++ b/chinese/fcitx-chewing/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= fcitx-chewing -PORTVERSION= 0.2.2 +PORTVERSION= 0.2.3 CATEGORIES= chinese MASTER_SITES= http://download.fcitx-im.org/${PORTNAME}/ DIST_SUBDIR= fcitx diff --git a/chinese/fcitx-chewing/distinfo b/chinese/fcitx-chewing/distinfo index 408955892d2..14d5145b89a 100644 --- a/chinese/fcitx-chewing/distinfo +++ b/chinese/fcitx-chewing/distinfo @@ -1,2 +1,3 @@ -SHA256 (fcitx/fcitx-chewing-0.2.2.tar.xz) = fa278ee9d2c20f7ae0a3093a3e490553798186bd67dc1e83f2723bd15b47a450 -SIZE (fcitx/fcitx-chewing-0.2.2.tar.xz) = 19684 +TIMESTAMP = 1536489082 +SHA256 (fcitx/fcitx-chewing-0.2.3.tar.xz) = b313c7134eb173668f42535b0eb6e985eb94fdf5d2fe705940a6cbfdcbadbaf0 +SIZE (fcitx/fcitx-chewing-0.2.3.tar.xz) = 19804 diff --git a/chinese/fcitx-chewing/pkg-plist b/chinese/fcitx-chewing/pkg-plist index d66454a9744..02bcb555508 100644 --- a/chinese/fcitx-chewing/pkg-plist +++ b/chinese/fcitx-chewing/pkg-plist @@ -7,7 +7,12 @@ share/fcitx/skin/classic/chewing.png share/fcitx/skin/dark/chewing.png share/fcitx/skin/default/chewing.png share/icons/hicolor/48x48/apps/fcitx-chewing.png +share/locale/ca/LC_MESSAGES/fcitx-chewing.mo +share/locale/da/LC_MESSAGES/fcitx-chewing.mo share/locale/de/LC_MESSAGES/fcitx-chewing.mo share/locale/ja/LC_MESSAGES/fcitx-chewing.mo +share/locale/ko/LC_MESSAGES/fcitx-chewing.mo +share/locale/ru/LC_MESSAGES/fcitx-chewing.mo +share/locale/tr/LC_MESSAGES/fcitx-chewing.mo share/locale/zh_CN/LC_MESSAGES/fcitx-chewing.mo share/locale/zh_TW/LC_MESSAGES/fcitx-chewing.mo diff --git a/chinese/p5-Lingua-Han-PinYin/Makefile b/chinese/p5-Lingua-Han-PinYin/Makefile index 3481e46cf9d..56783675ff4 100644 --- a/chinese/p5-Lingua-Han-PinYin/Makefile +++ b/chinese/p5-Lingua-Han-PinYin/Makefile @@ -13,8 +13,8 @@ COMMENT= Retrieve the Mandarin (PinYin) of Chinese character (HanZi) LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Lingua-Han-Utils>=0.10:chinese/p5-Lingua-Han-Utils -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Lingua-Han-Utils>=0.10:chinese/p5-Lingua-Han-Utils NO_ARCH= yes USES= perl5 diff --git a/chinese/p5-Lingua-Han-Utils/Makefile b/chinese/p5-Lingua-Han-Utils/Makefile index 2c68f8e4af3..22cf9e47be4 100644 --- a/chinese/p5-Lingua-Han-Utils/Makefile +++ b/chinese/p5-Lingua-Han-Utils/Makefile @@ -13,8 +13,8 @@ COMMENT= Utility tools of Chinese character(HanZi) LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Encode-Detect-CJK>=0:converters/p5-Encode-Detect-CJK -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Encode-Detect-CJK>=0:converters/p5-Encode-Detect-CJK USES= perl5 USE_PERL5= configure diff --git a/chinese/p5-Lingua-ZH-Keywords/Makefile b/chinese/p5-Lingua-ZH-Keywords/Makefile index 66ec892ad81..d3e30c2d39f 100644 --- a/chinese/p5-Lingua-ZH-Keywords/Makefile +++ b/chinese/p5-Lingua-ZH-Keywords/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Chinese Keywords Extraction via Lingua::ZH::TaBE -BUILD_DEPENDS= p5-Lingua-ZH-TaBE>=0:chinese/p5-Lingua-ZH-TaBE -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Lingua-ZH-TaBE>=0:chinese/p5-Lingua-ZH-TaBE USES= perl5 USE_PERL5= configure diff --git a/chinese/p5-Lingua-ZH-Summarize/Makefile b/chinese/p5-Lingua-ZH-Summarize/Makefile index 6b30f5e42d8..44a9c3325c4 100644 --- a/chinese/p5-Lingua-ZH-Summarize/Makefile +++ b/chinese/p5-Lingua-ZH-Summarize/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Chinese Text Summarization -BUILD_DEPENDS= p5-Lingua-ZH-Toke>=0:chinese/p5-Lingua-ZH-Toke \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Lingua-ZH-Toke>=0:chinese/p5-Lingua-ZH-Toke \ p5-Lingua-ZH-Wrap>=0:chinese/p5-Lingua-ZH-Wrap -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/chinese/p5-Lingua-ZH-Toke/Makefile b/chinese/p5-Lingua-ZH-Toke/Makefile index 4bc297a6247..481e31c9083 100644 --- a/chinese/p5-Lingua-ZH-Toke/Makefile +++ b/chinese/p5-Lingua-ZH-Toke/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Chinese Tokenizer on steroids -BUILD_DEPENDS= p5-Lingua-ZH-TaBE>=0:chinese/p5-Lingua-ZH-TaBE -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Lingua-ZH-TaBE>=0:chinese/p5-Lingua-ZH-TaBE USES= perl5 USE_PERL5= configure diff --git a/comms/Makefile b/comms/Makefile index 450bd83255b..9d2c314e883 100644 --- a/comms/Makefile +++ b/comms/Makefile @@ -79,7 +79,6 @@ SUBDIR += kermit SUBDIR += klog SUBDIR += kremotecontrol-kde4 - SUBDIR += kvasd SUBDIR += libbtbb SUBDIR += libconcord SUBDIR += libfap @@ -196,9 +195,7 @@ SUBDIR += usbmuxd SUBDIR += viewfax SUBDIR += vrflash - SUBDIR += wsjt SUBDIR += wsjtx - SUBDIR += wspr SUBDIR += wwl SUBDIR += wy60 SUBDIR += xastir diff --git a/comms/apitran/Makefile b/comms/apitran/Makefile index 878a8342b95..dde56df767c 100644 --- a/comms/apitran/Makefile +++ b/comms/apitran/Makefile @@ -11,34 +11,30 @@ COMMENT= Toolkit to handle the automatic picture transmission protocol LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}tkinter>0:x11-toolkits/py-tkinter@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}scipy>0:science/py-scipy@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}pillow>0:graphics/py-pillow@${PY_FLAVOR} \ - ${PYNUMPY} -RUN_DEPENDS= sox:audio/sox \ +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}tkinter>0:x11-toolkits/py-tkinter@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}scipy>0:science/py-scipy@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pillow>0:graphics/py-pillow@${PY_FLAVOR} \ + ${PYNUMPY} \ + sox:audio/sox \ display:graphics/ImageMagick -USES= python shebangfix +USES= python:run shebangfix USE_GITHUB= yes GH_ACCOUNT= rsj56 GH_PROJECT= apitran GH_TAGNAME= d209347 -#25379d9b681f434145fde9dbbdb3c5ae3 -#GH_TAGNAME= d20934725379d9b681f434145fde9dbbdb3c5ae3 +NO_BUILD= yes +NO_ARCH= yes SHEBANG_FILES= apitran -USE_PYTHON= autoplist - -do-build: do-install: ${INSTALL_SCRIPT} ${WRKSRC}/apitran ${STAGEDIR}${PREFIX}/bin ${MKDIR} ${STAGEDIR}${DOCSDIR} - cd ${WRKSRC} .for f in NOAA_APT_Frame_Format.gif README.md ${INSTALL_DATA} ${WRKSRC}/$f ${STAGEDIR}${DOCSDIR} - ${MKDIR} ${STAGEDIR}${EXAMPLESDIR} .endfor + ${MKDIR} ${STAGEDIR}${EXAMPLESDIR} .for f in ex_1ch_11025.png ex_2ch_48000.png ex_2ch_48000.wav ${INSTALL_DATA} ${WRKSRC}/Examples/$f ${STAGEDIR}${EXAMPLESDIR} .endfor diff --git a/comms/gqrx/Makefile b/comms/gqrx/Makefile index 42114fa8136..043d6e62fe6 100644 --- a/comms/gqrx/Makefile +++ b/comms/gqrx/Makefile @@ -26,7 +26,7 @@ LIB_DEPENDS= libgnuradio-runtime.so:comms/gnuradio \ libboost_program_options.so:devel/boost-libs \ liblog4cpp.so:devel/log4cpp -USES= pkgconfig qmake qt:5 +USES= gl pkgconfig qmake qt:5 USE_GITHUB= yes GH_ACCOUNT= csete diff --git a/comms/hylafax/Makefile b/comms/hylafax/Makefile index 2acc8b90732..1a862a589bf 100644 --- a/comms/hylafax/Makefile +++ b/comms/hylafax/Makefile @@ -3,7 +3,7 @@ PORTNAME= hylafax PORTVERSION= 6.0.6 -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= comms MASTER_SITES= ftp://ftp.hylafax.org/source/ diff --git a/comms/hylafax/files/patch-libhylafax_FaxRecvInfo.c++ b/comms/hylafax/files/patch-libhylafax_FaxRecvInfo.c++ new file mode 100644 index 00000000000..1f6006e1d44 --- /dev/null +++ b/comms/hylafax/files/patch-libhylafax_FaxRecvInfo.c++ @@ -0,0 +1,16 @@ +PR: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=225372 +Upstream: http://bugs.hylafax.org/show_bug.cgi?id=971 +Obtained from: https://sourceforge.net/p/hylafax/HylaFAX+/2417/ +See Also: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=853448 + +--- libhylafax/FaxRecvInfo.c++.orig 2018-10-07 07:40:23 UTC ++++ libhylafax/FaxRecvInfo.c++ +@@ -112,7 +112,7 @@ FaxRecvInfo::decode(const char* cp) + if (cp == NULL || cp[1] != ',' || cp[2] != '"') + return (false); + u_int i = 0; +- while (cp+2 != '\0') { ++ while (*(cp+2) != '\0') { + callid[i] = cp+3; // +1 for "/+1 for ,/+1 for " + if (*cp == '\"') break; + callid[i].resize(callid[i].next(0,'"')); diff --git a/comms/kvasd/Makefile b/comms/kvasd/Makefile deleted file mode 100644 index 1148bb135d0..00000000000 --- a/comms/kvasd/Makefile +++ /dev/null @@ -1,38 +0,0 @@ -# $FreeBSD$ - -PORTNAME= kvasd -PORTVERSION= 1.0 -PORTREVISION= 1 -CATEGORIES= comms hamradio -MASTER_SITES= https://svn.code.sf.net/p/wsjt/wsjt/trunk/kvasd-binary/Linux/ \ - LOCAL/db -DISTFILES= kvasd - -MAINTAINER= hamradio@FreeBSD.org -COMMENT= Helper program for wsjt and wsjtx - -LICENSE= K1JT -LICENSE_NAME= Joseph H Taylor, Jr, K1JT. -LICENSE_FILE= ${FILESDIR}/LICENSE.txt -LICENSE_PERMS= dist-mirror pkg-mirror auto-accept - -DEPRECATED= use wsjtx- kvasd is not needed by wsjtx and no longer maintained -EXPIRATION_DATE=2018-10-01 - -BUILD_DEPENDS= ${KVASD_DEPENDS} -RUN_DEPENDS= ${KVASD_DEPENDS} - -KVASD_DEPENDS= linux-c6-libgfortran>0:devel/linux-c6-libgfortran -USES= linux:c6 -NO_BUILD= yes -PLIST_FILES= bin/kvasd - -do-extract: - ${MKDIR} ${WRKSRC} - ${CP} ${DISTDIR}/kvasd ${WRKSRC} - -do-install: - ${BRANDELF} -t Linux ${WRKSRC}/kvasd - ${INSTALL_KLD} ${DISTDIR}/kvasd ${STAGEDIR}${PREFIX}/bin - -.include diff --git a/comms/kvasd/distinfo b/comms/kvasd/distinfo deleted file mode 100644 index f750f5a0029..00000000000 --- a/comms/kvasd/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -TIMESTAMP = 1530723091 -SHA256 (kvasd) = 377971c0e75487804de213aabb19b69f0c0543a6b65a1678934ecff0f344150c -SIZE (kvasd) = 50732 diff --git a/comms/kvasd/files/LICENSE.txt b/comms/kvasd/files/LICENSE.txt deleted file mode 100644 index f1011106124..00000000000 --- a/comms/kvasd/files/LICENSE.txt +++ /dev/null @@ -1,8 +0,0 @@ -The driver is Copyright(C) 2005-2012 by Joseph H Taylor, Jr, K1JT. -The decoding algorithm is used under licence from CodeVector -Technologies, LLC, and is protected under US patent -6,634,007. - -KVASD may be used freely by anyone for the purpose of -facilitating communication by Amateur Radio. Any other -use is strictly prohibited. diff --git a/comms/kvasd/pkg-descr b/comms/kvasd/pkg-descr deleted file mode 100644 index d0c34d3904e..00000000000 --- a/comms/kvasd/pkg-descr +++ /dev/null @@ -1,12 +0,0 @@ -KVASD is s soft-decision decoder for the Reed Solomon code -RS(63,12) over GF(64). The driver is Copyright(C) -2005-2012 by Joseph H Taylor, Jr, K1JT. The decoding -algorithm is used under licence from CodeVector -Technologies, LLC, and is protected under US patent -6,634,007. - -KVASD may be used freely by anyone for the purpose of -facilitating communication by Amateur Radio. Any other -use is strictly prohibited. - -WWW: http://physics.princeton.edu/pulsar/K1JT diff --git a/comms/p5-Device-Modem/Makefile b/comms/p5-Device-Modem/Makefile index 9ff82f072cc..84655a57363 100644 --- a/comms/p5-Device-Modem/Makefile +++ b/comms/p5-Device-Modem/Makefile @@ -14,8 +14,8 @@ COMMENT= Perl class to interface generic modems (AT-compliant) LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Device-SerialPort>=0:comms/p5-Device-SerialPort -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Device-SerialPort>=0:comms/p5-Device-SerialPort USES= perl5 shebangfix SHEBANG_FILES= examples/xmodem.pl \ diff --git a/comms/p5-Nexmo-SMS/Makefile b/comms/p5-Nexmo-SMS/Makefile index fc54084404a..674821c7083 100644 --- a/comms/p5-Nexmo-SMS/Makefile +++ b/comms/p5-Nexmo-SMS/Makefile @@ -12,10 +12,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= jnlin@freebsd.cs.nctu.edu.tw COMMENT= Send SMS via http://www.nexmo.com/ API -BUILD_DEPENDS= p5-HTTP-Message>=5.836:www/p5-HTTP-Message \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTTP-Message>=5.836:www/p5-HTTP-Message \ p5-JSON-PP>=2.26000:converters/p5-JSON-PP \ p5-libwww>=5.835:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Pod>=1.22:devel/p5-Test-Pod \ p5-Test-Pod-Coverage>=1.08:devel/p5-Test-Pod-Coverage diff --git a/comms/p5-SMS-Send-DeviceGsm/Makefile b/comms/p5-SMS-Send-DeviceGsm/Makefile index a83ffebc0cf..2c7aa7d941b 100644 --- a/comms/p5-SMS-Send-DeviceGsm/Makefile +++ b/comms/p5-SMS-Send-DeviceGsm/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= snowfly@yuntech.edu.tw COMMENT= SMS::Send driver for Device::Gsm -BUILD_DEPENDS= p5-SMS-Send>=0.04:comms/p5-SMS-Send \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-SMS-Send>=0.04:comms/p5-SMS-Send \ p5-Device-Gsm>=1.45:comms/p5-Device-Gsm -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/comms/p5-SMS-Send-NexmoUnicode/Makefile b/comms/p5-SMS-Send-NexmoUnicode/Makefile index fb386ace50c..b33ac23f001 100644 --- a/comms/p5-SMS-Send-NexmoUnicode/Makefile +++ b/comms/p5-SMS-Send-NexmoUnicode/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= jnlin@freebsd.cs.nctu.edu.tw COMMENT= SMS::Send driver for www.nexmo.com (Unicode) -BUILD_DEPENDS= p5-Nexmo-SMS>=0.04:comms/p5-Nexmo-SMS \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Nexmo-SMS>=0.04:comms/p5-Nexmo-SMS \ p5-SMS-Send>=0:comms/p5-SMS-Send -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/comms/p5-SMS-Send-TW-HiAir/Makefile b/comms/p5-SMS-Send-TW-HiAir/Makefile index 2960d5754a2..d61ceb5c6b2 100644 --- a/comms/p5-SMS-Send-TW-HiAir/Makefile +++ b/comms/p5-SMS-Send-TW-HiAir/Makefile @@ -11,11 +11,11 @@ PKGNAMEPREFIX= p5- MAINTAINER= jnlin@freebsd.cs.nctu.edu.tw COMMENT= SMS::Send driver for http://hiair.hinet.net/ -BUILD_DEPENDS= p5-SMS-Send>=0:comms/p5-SMS-Send \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-SMS-Send>=0:comms/p5-SMS-Send \ p5-WWW-Mechanize>=0:www/p5-WWW-Mechanize \ p5-Crypt-SSLeay>=0.51:security/p5-Crypt-SSLeay \ p5-Text-Iconv>=0:converters/p5-Text-Iconv -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/comms/p5-SMS-Send-TW-ShareSMS/Makefile b/comms/p5-SMS-Send-TW-ShareSMS/Makefile index 030ee9c8fcc..886c793c417 100644 --- a/comms/p5-SMS-Send-TW-ShareSMS/Makefile +++ b/comms/p5-SMS-Send-TW-ShareSMS/Makefile @@ -11,10 +11,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= snowfly@yuntech.edu.tw COMMENT= SMS::Send driver for www.ShareSMS.com -BUILD_DEPENDS= p5-SMS-Send>=0.03:comms/p5-SMS-Send \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-SMS-Send>=0.03:comms/p5-SMS-Send \ p5-URI>=0:net/p5-URI \ p5-libwww>=2:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/comms/p5-SMS-Send/Makefile b/comms/p5-SMS-Send/Makefile index 78c15d10d30..8721bf13e43 100644 --- a/comms/p5-SMS-Send/Makefile +++ b/comms/p5-SMS-Send/Makefile @@ -14,9 +14,9 @@ COMMENT= Driver-based API for sending SMS messages LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Class-Adapter>=1.05:devel/p5-Class-Adapter \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Adapter>=1.05:devel/p5-Class-Adapter \ p5-Params-Util>=1.00:devel/p5-Params-Util -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/comms/wsjt/Makefile b/comms/wsjt/Makefile deleted file mode 100644 index 039cae1ef3b..00000000000 --- a/comms/wsjt/Makefile +++ /dev/null @@ -1,108 +0,0 @@ -# $FreeBSD$ - -PORTNAME= wsjt -DISTVERSION= ${VERSION}.r${SVN_REV} -PORTREVISION= 9 -CATEGORIES= comms hamradio -MASTER_SITES= LOCAL/db -DISTNAME= wsjt-r${SVN_REV} - -MAINTAINER= hamradio@FreeBSD.org -COMMENT= Weak signal ham radio communication package - -LICENSE= GPLv3 - -DEPRECATED= replace with wsjtx upstream no longer maintained -EXPIRATION_DATE=2018-10-01 - -RUN_DEPENDS= ${LOCALBASE}/bin/kvasd:comms/kvasd \ - ${WSJT_DEPENDS} -BUILD_DEPENDS= ${WSJT_DEPENDS} -LIB_DEPENDS= libfftw3.so:math/fftw3 \ - libfftw3f.so:math/fftw3-float \ - libsamplerate.so:audio/libsamplerate \ - libportaudio.so:audio/portaudio - -WSJT_DEPENDS= ${PYTHON_PKGNAMEPREFIX}tkinter>0:x11-toolkits/py-tkinter@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}scipy>0:science/py-scipy@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}pillow>0:graphics/py-pillow@${PY_FLAVOR} \ - ${PYNUMPY} - -USE_GCC= yes -USES= autoreconf fortran gmake python:3.3+ tar:bzip2 -SHEBANG_FILES= ${WRKSRC}/wsjt -GNU_CONFIGURE= yes -CONFIGURE_ARGS= --prefix=${STAGEDIR}${LOCALBASE} \ - --with-portaudio-include-dir=${LOCALBASE}/include \ - --with-portaudio-lib-dir=${LOCALBASE}/lib -CPPFLAGS+= -I${LOCALBASE}/include -LIBS+= -L${LOCALBASE}/lib -# Adding this breaks configure -#LDFLAGS+= -shared -VERSION= 10 -PLIST_SUB= PYVER=${PYTHON_VERSION:S/python//} \ - VERSION=${VERSION} - -OPTIONS_DEFINE= DOCS - -.include - -.if defined(BOOTSTRAP) || defined(SVN_FETCH) -#portlint freaks over this but it's only for dev. so ignore. -FETCH_DEPENDS+= svn:devel/subversion -SVN_REV!= svn info http://svn.code.sf.net/p/wsjt/wsjt/ | ${GREP} Revision | cut -d' ' -f2 -.else -.include "Makefile.svn_rev" -.endif - -.if defined(BOOTSTRAP) || defined(SVN_FETCH) -FETCH_DEPENDS+= svn:devel/subversion - -do-fetch: - ${MKDIR} ${WRKDIR} - svn export -r ${SVN_REV} \ - http://svn.code.sf.net/p/wsjt/wsjt/trunk ${WRKDIR}/wsjt-r${SVN_REV} - cd ${WRKDIR};rm -f ${DISTNAME}/*.a ${DISTNAME}/*.lib ${DISTNAME}/*.dll;\ - tar cvfy ${DISTDIR}/${DISTNAME}.tar.bz2 ${DISTNAME} - ${ECHO_CMD} "SVN_REV= ${SVN_REV}" > ${MASTERDIR}/Makefile.svn_rev -.if ${USER} == db - scp ${DISTDIR}/${DISTNAME}.tar.bz2 \ - freefall.freebsd.org:public_distfiles/ -.endif -.endif - -post-patch: - ${REINPLACE_CMD} -e 's|%%PYTHON%%|${PYTHON_CMD}|'\ - -e 's|%%PYTHON_VER%%|${PYTHON_VER}|'\ - ${WRKSRC}/configure.ac - -do-build: - (cd ${WRKSRC};${GMAKE}) - -do-install: - ${MKDIR} ${STAGEDIR}${DATADIR} - ${CP} ${FILESDIR}/wsjt ${WRKSRC} - ${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|' \ - -e 's|%%PYTHON%%|${PYTHON_CMD}|' ${WRKSRC}/wsjt - ${INSTALL_SCRIPT} ${WRKSRC}/wsjt ${STAGEDIR}${LOCALBASE}/bin - ${MKDIR} ${STAGEDIR}${DOCSDIR} - (cd ${WRKSRC}/doc && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR}) - ${MKDIR} ${STAGEDIR}${LOCALBASE}/lib/wsjt/WsjtMod -.for d in Audio.so __init__.py astro.py g.py go.py options.py palettes.py \ - smeter.py specjt.py - ${INSTALL_DATA} ${WRKSRC}/WsjtMod/${d} ${STAGEDIR}${LOCALBASE}/lib/wsjt/WsjtMod -.endfor -.for d in CALL3.TXT dmet_10_-1_3.dat dmet_10_0_3.dat dmet_20_-2_2.dat \ - dmet_20_-3_2.dat wsjtrc wsjt.py Pmw.py PmwColor.py PmwBlt.py - ${INSTALL_DATA} ${WRKSRC}/${d} ${STAGEDIR}${DATADIR} -.endfor - ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/wsjt/WsjtMod/Audio.so - -post-install-DOCS-on: - @${MKDIR} ${STAGEDIR}${DOCSDIR} -.for d in WSJT_Source_Code.txt UpdateHistory.txt LICENSE.TXT call_to.txt \ - calledby.txt wsjt7a.txt - ${INSTALL_DATA} ${WRKSRC}/${d} ${STAGEDIR}${DOCSDIR} -.endfor - -.include diff --git a/comms/wsjt/Makefile.svn_rev b/comms/wsjt/Makefile.svn_rev deleted file mode 100644 index 3812ea094e0..00000000000 --- a/comms/wsjt/Makefile.svn_rev +++ /dev/null @@ -1 +0,0 @@ -SVN_REV= 5745 diff --git a/comms/wsjt/distinfo b/comms/wsjt/distinfo deleted file mode 100644 index c6783bc37f2..00000000000 --- a/comms/wsjt/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -SHA256 (wsjt-r5745.tar.bz2) = 96aeff70903d7ace9e094f739fd25c5453b6211663d75f10d5fb38c8728e72d3 -SIZE (wsjt-r5745.tar.bz2) = 3262114 diff --git a/comms/wsjt/files/patch-Makefile.in b/comms/wsjt/files/patch-Makefile.in deleted file mode 100644 index 28b75808ac1..00000000000 --- a/comms/wsjt/files/patch-Makefile.in +++ /dev/null @@ -1,40 +0,0 @@ ---- Makefile.in.orig 2015-01-08 17:33:18 UTC -+++ Makefile.in -@@ -6,7 +6,13 @@ - # Prerequisites: Python 3.x, numpy-1.8.1, PIL, Pmw-2.0.0+ - - MV ?= mv -+ -+# Compiler Information - CC ?= @CC@ -+FC := @FC@ -+FCV := @FCV@ -+FC_LIB_PATH = @FC_LIB_PATH@ -+ - MKDIR ?= mkdir - RM ?= @RM@ - INSTALL = install -@@ -51,7 +57,7 @@ FC = @FC@ - FCV = @FCV@ - FC_LIB_PATH += @FC_LIB_PATH@ - --LDFLAGS += -L${FC_LIB_PATH} -+#LDFLAGS += "-L${FC_LIB_PATH}" - - OBJS1 = a2d.o abc441.o alignmsg.o ana932.o analytic.o astro.o \ - avecho.o avemsg4.o avemsg65.o avemsg6m.o avesp2.o azdist.o \ -@@ -97,12 +103,11 @@ F2PYSRCS = ftn_init.f90 ftn_quit.f90 audio_init.f90 sp - azdist0.f90 astro0.f90 chkt0.f90 - - WsjtMod/Audio.so: libjt.a ${F2PYSRCS} -- ${F2PY} -c -I. --fcompiler=gnu95 --f77exec=gfortran --f90exec=gfortran \ -- --opt="-cpp -fbounds-check -O2" ${LDFLAGS} \ -+ ${F2PY} -c -I. --fcompiler=${FCV} --f77exec=${FC} --f90exec=${FC} \ -+ --opt="-cpp -fbounds-check" ${LDFLAGS} \ - ${LIBS} libjt.a -m Audio ftn_init.f90 ftn_quit.f90 \ - audio_init.f90 spec.f90 getfile.f90 azdist0.f90 \ - astro0.f90 chkt0.f90 -- - ${MV} Audio*.so WsjtMod/Audio.so - - .PHONY : clean diff --git a/comms/wsjt/files/patch-aclocal.m4 b/comms/wsjt/files/patch-aclocal.m4 deleted file mode 100644 index 05244debdde..00000000000 --- a/comms/wsjt/files/patch-aclocal.m4 +++ /dev/null @@ -1,44 +0,0 @@ ---- aclocal.m4.orig 2009-05-17 12:27:34 UTC -+++ aclocal.m4 -@@ -175,41 +175,6 @@ if test $[{HAS_PORTAUDIO_H}] -eq 1 -a $[ - else - HAS_PORTAUDIO=1 - fi --else -- AC_MSG_RESULT([portaudio not found trying FreeBSD paths ]) -- portaudio_lib_dir="/usr/local/lib/portaudio2" -- portaudio_include_dir="/usr/local/include/portaudio2" --dnl --dnl Try again to make sure portaudio dirs are valid --dnl -- AC_MSG_CHECKING([for a v19 portaudio in FreeBSD paths.]) -- HAS_PORTAUDIO_H=0 -- HAS_PORTAUDIO_LIB=0 -- -- if test -e $[{portaudio_include_dir}]/portaudio.h; then -- HAS_PORTAUDIO_H=1 -- fi -- -- if test -e $[{portaudio_lib_dir}]/libportaudio.so \ -- -o -e $[{portaudio_lib_dir}]/libportaudio.a;then -- HAS_PORTAUDIO_LIB=1 -- fi -- -- if test $[{HAS_PORTAUDIO_H}] -eq 1 -a $[{HAS_PORTAUDIO_LIB}] -eq 1; then -- AC_MSG_RESULT([found portaudio in FreeBSD paths, double checking it is v19 ]) -- LDFLAGS="-L$[{portaudio_lib_dir}] $[{LDFLAGS}]" -- LIBS="$[{LIBS}] -lportaudio" -- CPPFLAGS="-I$[{portaudio_include_dir}] $[{CPPFLAGS}]" -- AC_CHECK_LIB(portaudio, Pa_GetVersion, \ -- [HAS_PORTAUDIO_VERSION=1], [HAS_PORTAUDIO_VERSION=0]) -- if test $[{HAS_PORTAUDIO_VERSION}] -eq 0; then -- AC_MSG_RESULT([How did you end up with a portaudio v18 here?]) -- else -- AC_MSG_RESULT([found v19]) -- HAS_PORTAUDIO=1 -- HAS_PORTAUDIO_H=1 -- fi -- fi - fi - - ])dnl }}} diff --git a/comms/wsjt/files/patch-configure.ac b/comms/wsjt/files/patch-configure.ac deleted file mode 100644 index a7b111cf6a3..00000000000 --- a/comms/wsjt/files/patch-configure.ac +++ /dev/null @@ -1,20 +0,0 @@ ---- configure.ac.orig 2014-04-30 19:38:38 UTC -+++ configure.ac -@@ -75,7 +75,7 @@ AC_PATH_PROG(AR, ar) - AC_PATH_PROG(LD, ld) - AC_PATH_PROG(TEST, [test], [test]) - AC_PATH_PROG(PYTHON, python) --AC_PATH_PROG(F2PY, f2py) -+AC_PATH_PROG(F2PY, f2py-%%PYTHON_VER%%) - AC_SUBST(VERSION, "${version}") - AC_MSG_CHECKING([OS]) - OS=`uname` -@@ -206,7 +206,7 @@ fi - - if test "$F2PY" = ""; then - echo "You are missing f2py, trying local copy." -- F2PY="python f2py.py"; -+ F2PY="%%PYTHON%% f2py-%%PYTHON_VER%%"; - fi - - dnl diff --git a/comms/wsjt/files/wsjt b/comms/wsjt/files/wsjt deleted file mode 100644 index 21a9d340565..00000000000 --- a/comms/wsjt/files/wsjt +++ /dev/null @@ -1,61 +0,0 @@ -#!/bin/sh -#------------------------------------------------------------------------------- -# This file is part of the WSJT application, Weak Signal Propogation Reporter -# -# File Name: wsjt.sh -# Description: Shell script wrapper to update or copy files from system install -# -# Copyright (C) 2001-2014 Joseph Taylor, K1JT -# License: GNU GPL v3 -# -# This program is free software; you can redistribute it and/or modify it under -# the terms of the GNU General Public License as published by the Free Software -# Foundation; either version 3 of the License, or (at your option) any later -# version. -# -# This program is distributed in the hope that it will be useful, but WITHOUT -# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more -# details. -# -# You should have received a copy of the GNU General Public License along with -# this program; if not, write to the Free Software Foundation, Inc., 51 Franklin -# Street, Fifth Floor, Boston, MA 02110-1301, USA. -# -#------------------------------------------------------------------------------- - -set -e - -copyur() { - for f in $1/*;do - if [ ! -e `basename $f` ]; then - if [ ! -d $f ]; then - cp $f . - fi - elif [ $f -nt `basename $f` ]; then - if [ ! -d `basename $f` ]; then - cp $f . - fi - fi - done -} - -# set dir's -_HOMEDIR="/home/$USER/.wsjt" -export PATH=$PATH:/compat/linux/bin - -# update out of date files -if [ -e $_HOMEDIR ] ; then - cd $_HOMEDIR - copyur %%LOCALBASE%%/share/wsjt - cd $_HOMEDIR/WsjtMod - copyur %%LOCALBASE%%/lib/wsjt/WsjtMod - cd $_HOMEDIR -else -# if _HOMEDIR does not exist make it - mkdir $_HOMEDIR - cp -R %%LOCALBASE%%/share/wsjt/* $_HOMEDIR cp -R %%LOCALBASE%%/lib/wsjt/* $_HOMEDIR -fi - -cd $_HOMEDIR -%%PYTHON%% -O wsjt.py diff --git a/comms/wsjt/pkg-descr b/comms/wsjt/pkg-descr deleted file mode 100644 index e5ab913d5ff..00000000000 --- a/comms/wsjt/pkg-descr +++ /dev/null @@ -1,7 +0,0 @@ -WSJT ("Weak Signal Communication, by K1JT") offers specific digital protocols -optimized for meteor scatter, ionospheric scatter, and EME (moonbounce) -at VHF/UHF, as well as HF skywave propagation. The program can decode -fraction-of-a-second signals reflected from ionized meteor trails and -steady signals 10 dB below the audible threshold. - -WWW: http://physics.princeton.edu/pulsar/K1JT diff --git a/comms/wsjt/pkg-message b/comms/wsjt/pkg-message deleted file mode 100644 index 3e14dca3b8d..00000000000 --- a/comms/wsjt/pkg-message +++ /dev/null @@ -1,8 +0,0 @@ -wsjt is now installed. -When used for the first time, the wsjt wrapper will create a ~/.wsjt -directory which will be your working directory and have various setup files. - -In particular, CALL3.TXT will most likely be out of date. -Update from http://www.dl8ebw.de/DATABASE/database.html - -Now, go chase some EME or meteor shower. diff --git a/comms/wsjt/pkg-plist b/comms/wsjt/pkg-plist deleted file mode 100644 index 9d956fe97dd..00000000000 --- a/comms/wsjt/pkg-plist +++ /dev/null @@ -1,81 +0,0 @@ -bin/wsjt -lib/wsjt/WsjtMod/Audio.so -lib/wsjt/WsjtMod/__init__.py -lib/wsjt/WsjtMod/astro.py -lib/wsjt/WsjtMod/g.py -lib/wsjt/WsjtMod/go.py -lib/wsjt/WsjtMod/options.py -lib/wsjt/WsjtMod/palettes.py -lib/wsjt/WsjtMod/smeter.py -lib/wsjt/WsjtMod/specjt.py -%%DATADIR%%/CALL3.TXT -%%DATADIR%%/Pmw.py -%%DATADIR%%/PmwBlt.py -%%DATADIR%%/PmwColor.py -%%DATADIR%%/dmet_10_-1_3.dat -%%DATADIR%%/dmet_10_0_3.dat -%%DATADIR%%/dmet_20_-2_2.dat -%%DATADIR%%/dmet_20_-3_2.dat -%%DATADIR%%/wsjt.py -%%DATADIR%%/wsjtrc -%%PORTDOCS%%%%DOCSDIR%%/LICENSE.TXT -%%PORTDOCS%%%%DOCSDIR%%/UpdateHistory.txt -%%PORTDOCS%%%%DOCSDIR%%/WSJT_Source_Code.txt -%%PORTDOCS%%%%DOCSDIR%%/call_to.txt -%%PORTDOCS%%%%DOCSDIR%%/calledby.txt -%%PORTDOCS%%%%DOCSDIR%%/common/communication.adoc -%%PORTDOCS%%%%DOCSDIR%%/common/license.adoc -%%PORTDOCS%%%%DOCSDIR%%/common/links.adoc -%%PORTDOCS%%%%DOCSDIR%%/theme/wsjt/wsjt.css -%%PORTDOCS%%%%DOCSDIR%%/user_guide/acknowledgments.adoc -%%PORTDOCS%%%%DOCSDIR%%/user_guide/astrodata.adoc -%%PORTDOCS%%%%DOCSDIR%%/user_guide/compiling.adoc -%%PORTDOCS%%%%DOCSDIR%%/user_guide/controls.adoc -%%PORTDOCS%%%%DOCSDIR%%/user_guide/coop_programs.adoc -%%PORTDOCS%%%%DOCSDIR%%/user_guide/echo.adoc -%%PORTDOCS%%%%DOCSDIR%%/user_guide/faq.adoc -%%PORTDOCS%%%%DOCSDIR%%/user_guide/files.adoc -%%PORTDOCS%%%%DOCSDIR%%/user_guide/images/AstroData.png -%%PORTDOCS%%%%DOCSDIR%%/user_guide/images/BandMenu.png -%%PORTDOCS%%%%DOCSDIR%%/user_guide/images/DecodeMenu.png -%%PORTDOCS%%%%DOCSDIR%%/user_guide/images/FileMenu.png -%%PORTDOCS%%%%DOCSDIR%%/user_guide/images/HelpMenu.png -%%PORTDOCS%%%%DOCSDIR%%/user_guide/images/KeyboardShortcuts.png -%%PORTDOCS%%%%DOCSDIR%%/user_guide/images/MainButtons.png -%%PORTDOCS%%%%DOCSDIR%%/user_guide/images/Main_Center.png -%%PORTDOCS%%%%DOCSDIR%%/user_guide/images/Main_Left.png -%%PORTDOCS%%%%DOCSDIR%%/user_guide/images/Main_Right.png -%%PORTDOCS%%%%DOCSDIR%%/user_guide/images/ModeMenu.png -%%PORTDOCS%%%%DOCSDIR%%/user_guide/images/MouseCommands.png -%%PORTDOCS%%%%DOCSDIR%%/user_guide/images/SaveMenu.png -%%PORTDOCS%%%%DOCSDIR%%/user_guide/images/SetupMenu.png -%%PORTDOCS%%%%DOCSDIR%%/user_guide/images/SpecJT_Controls.png -%%PORTDOCS%%%%DOCSDIR%%/user_guide/images/SpecJT_DL7UAE.png -%%PORTDOCS%%%%DOCSDIR%%/user_guide/images/StatusBar.png -%%PORTDOCS%%%%DOCSDIR%%/user_guide/images/VK7MO_10GHz.png -%%PORTDOCS%%%%DOCSDIR%%/user_guide/images/VK7MO_10GHz_2.png -%%PORTDOCS%%%%DOCSDIR%%/user_guide/images/ViewMenu.png -%%PORTDOCS%%%%DOCSDIR%%/user_guide/images/WhatMessage.png -%%PORTDOCS%%%%DOCSDIR%%/user_guide/images/console.png -%%PORTDOCS%%%%DOCSDIR%%/user_guide/images/echo.png -%%PORTDOCS%%%%DOCSDIR%%/user_guide/images/jt4_Templates.png -%%PORTDOCS%%%%DOCSDIR%%/user_guide/images/jt65.png -%%PORTDOCS%%%%DOCSDIR%%/user_guide/images/jt6m.png -%%PORTDOCS%%%%DOCSDIR%%/user_guide/images/options.png -%%PORTDOCS%%%%DOCSDIR%%/user_guide/images/prefixes.png -%%PORTDOCS%%%%DOCSDIR%%/user_guide/images/wsjt9.7_main.png -%%PORTDOCS%%%%DOCSDIR%%/user_guide/implementation.adoc -%%PORTDOCS%%%%DOCSDIR%%/user_guide/installation.adoc -%%PORTDOCS%%%%DOCSDIR%%/user_guide/installed-files.adoc -%%PORTDOCS%%%%DOCSDIR%%/user_guide/introduction.adoc -%%PORTDOCS%%%%DOCSDIR%%/user_guide/make-qso.adoc -%%PORTDOCS%%%%DOCSDIR%%/user_guide/measure.adoc -%%PORTDOCS%%%%DOCSDIR%%/user_guide/protocols.adoc -%%PORTDOCS%%%%DOCSDIR%%/user_guide/setup.adoc -%%PORTDOCS%%%%DOCSDIR%%/user_guide/system-requirements.adoc -%%PORTDOCS%%%%DOCSDIR%%/user_guide/tutorial.adoc -%%PORTDOCS%%%%DOCSDIR%%/user_guide/utilities.adoc -%%PORTDOCS%%%%DOCSDIR%%/user_guide/wsjt-main.adoc -%%PORTDOCS%%%%DOCSDIR%%/wsjt-jtsdk2.conf -%%PORTDOCS%%%%DOCSDIR%%/wsjt.conf.in -%%PORTDOCS%%%%DOCSDIR%%/wsjt7a.txt diff --git a/comms/wspr/Makefile b/comms/wspr/Makefile deleted file mode 100644 index 8c8f67b21f3..00000000000 --- a/comms/wspr/Makefile +++ /dev/null @@ -1,72 +0,0 @@ -# $FreeBSD$ - -PORTNAME= wspr -DISTVERSION= ${VERSION}.r${SVN_REV} -PORTREVISION= 11 -CATEGORIES= comms hamradio -MASTER_SITES= LOCAL/db -DISTNAME= wspr-r${SVN_REV} - -MAINTAINER= hamradio@FreeBSD.org -COMMENT= Weak signal for HF ham radio communication package - -LICENSE= GPLv3 - -BROKEN_aarch64= fails to compile: gfortran6: unrecognized command line option '-m64' -DEPRECATED= replace with wsjtx upstream no longer maintained -EXPIRATION_DATE=2018-10-01 - -BUILD_DEPENDS= ${PYNUMPY} -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}tkinter>0:x11-toolkits/py-tkinter@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}pillow>0:graphics/py-pillow@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}scipy>0:science/py-scipy@${PY_FLAVOR} -LIB_DEPENDS= libhamlib.so:comms/hamlib \ - libfftw3f.so:math/fftw3-float \ - libsamplerate.so:audio/libsamplerate \ - libportaudio.so:audio/portaudio - -MAKE_JOBS_UNSAFE= yes -USES= autoreconf dos2unix fortran gmake libtool python:3.3+ tar:bzip2 -GNU_CONFIGURE= yes -CONFIGURE_ARGS= --with-gfortran=${FC} \ - --with-f2py=f2py-${PYTHON_VER} \ - --with-python3=${PYTHON_CMD} -MAKE_ENV+= PYTHONUSERBASE=${STAGEDIR}${PYTHONBASE} -#LDFLAGS+= -shared -VERSION= 4.00 - -OPTIONS_DEFINE= DOCS - -.include -pre-configure: - @${CP} ${FILESDIR}/wspr.sh.in ${WRKSRC} - -do-build: - (cd ${WRKSRC};${GMAKE}) - -post-install: - ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/wspr/WsprMod/w.so - -.if defined(BOOTSTRAP) -#portlint freaks over this but it's only for dev ignore. -SVN_REV!= svn info svn://svn.code.sf.net/p/wsjt/wsjt/branches/wspr | ${GREP} Revision | cut -d' ' -f2 -.else -.include "Makefile.svn_rev" -.endif -.if defined(BOOTSTRAP) || defined(SVN_FETCH) -FETCH_DEPENDS+= svn:devel/subversion - -do-fetch: - ${MKDIR} ${WRKDIR} - svn export -r ${SVN_REV} \ - svn://svn.code.sf.net/p/wsjt/wsjt/branches/wspr ${WRKDIR}/wspr-r${SVN_REV} - cd ${WRKDIR};rm -f ${DISTNAME}/*.a ${DISTNAME}/*.lib ${DISTNAME}/*.dll;\ - tar cvfy ${DISTDIR}/${DISTNAME}.tar.bz2 ${DISTNAME} - echo "SVN_REV= ${SVN_REV}" > ${MASTERDIR}/Makefile.svn_rev -.if ${USER} == db - scp ${DISTDIR}/${DISTNAME}.tar.bz2 \ - freefall.freebsd.org:public_distfiles/ -.endif -.endif - -.include diff --git a/comms/wspr/Makefile.svn_rev b/comms/wspr/Makefile.svn_rev deleted file mode 100644 index 229073fae48..00000000000 --- a/comms/wspr/Makefile.svn_rev +++ /dev/null @@ -1 +0,0 @@ -SVN_REV= 4198 diff --git a/comms/wspr/distinfo b/comms/wspr/distinfo deleted file mode 100644 index 3c6024cdd8d..00000000000 --- a/comms/wspr/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -TIMESTAMP = 1506554893 -SHA256 (wspr-r4198.tar.bz2) = 8ca522b52da16bd18568977d58aad85dcb771d3994136e374e4fd5ffe9fb350a -SIZE (wspr-r4198.tar.bz2) = 4617738 diff --git a/comms/wspr/files/patch-Makefile.in b/comms/wspr/files/patch-Makefile.in deleted file mode 100644 index 7580e9e2107..00000000000 --- a/comms/wspr/files/patch-Makefile.in +++ /dev/null @@ -1,132 +0,0 @@ ---- Makefile.in.orig 2017-09-27 19:55:15 UTC -+++ Makefile.in -@@ -25,7 +25,8 @@ SHELL := @SHELL@ - MKDIR := @MKDIR@ - - # Install locations --INATALL := install -+INSTALL := install -+PREFIX := @PREFIX@ - BINDIR := @BINDIR@ - DOCDIR := @DOCDIR@ - HOMEDIR := @HOMEDIR@ -@@ -45,7 +46,7 @@ F2PY := @F2PY@ - - # Libs and Flags - LIBS := @LIBS@ --CPPFLAGS += ${DEFS} -+CPPFLAGS := @CPPFLAGS@ - LDFLAGS += @LDFLAGS@ - CFLAGS += @CFLAGS@ - FFLAGS += @FFLAGS@ -@@ -71,24 +72,24 @@ all: libwspr.a thnix.o WsprMod/w.so fmte - - # Default Rules - %.o: %.c -- ${CC} ${CPPFLAGS} ${CFLAGS} -c $< -+ ${CC} ${CFLAGS} ${CPPFLAGS} ${DEFS} -c $< - %.o: %.f -- ${FC} ${FFLAGS} -c $< -+ ${FC} ${DEFS} ${CFLAGS} ${FFLAGS} -c $< - %.o: %.F -- ${FC} ${FFLAGS} -c $< -+ ${FC} ${DEFS} ${CFLAGS} ${FFLAGS} -c $< - %.o: %.f90 -- ${FC} ${FFLAGS} -c $< -+ ${FC} ${DEFS} ${CFLAGS} ${FFLAGS} -c $< - %.o: %.F90 -- ${FC} ${FFLAGS} -c $< -+ ${FC} ${DEFS} ${CFLAGS} ${FFLAGS} -c $< - - # Objects - OBJS1 = wspr0.o wspr0init.o wspr0_rx.o wspr0_tx.o thnix_stub.o - - wspr0: ${OBJS1} -- ${FC} ${FFLAGS} -o wspr0 ${FFLAGS} ${OBJS1} libwspr.a -lfftw3f -lportaudio -+ ${FC} ${PORTAUDIO_LIBDIR} ${FFLAGS} ${LDFLAGS} -o wspr0 ${FFLAGS} ${OBJS1} libwspr.a -lfftw3f -lportaudio - - wsprcode: wsprcode.o thnix_stub.o -- ${FC} ${FFLAGS} -o wsprcode wsprcode.o thnix_stub.o libwspr.a -pthread -+ ${FC} ${PORTAUDIO_INCLUDE} ${FFLAGS} -o wsprcode wsprcode.o thnix_stub.o libwspr.a -pthread - - OBJS3 = azdist.o ccf2.o chklevel.o db.o decode.o decode162.o deg2grid.o \ - encode232.o fano232.o fchisq.o fil1.o flat3.o four2a.o\ -@@ -105,21 +106,22 @@ OBJS3 = azdist.o ccf2.o chklevel.o db.o - - # Build Library: libwspr.a - libwspr.a: ${OBJS3} acom1.f90 acom2.f90 -- ${AR} cr libwspr.a ${OBJS3} - ranlib libwspr.a -+ ar cr libwspr.a ${OBJS3} -+# ${AR} cr libwspr.a ${OBJS3} - - # Build FMT Applications - fmtest: fmtest.f90 libwspr.a -- ${FC} ${FFLAGS} -o fmtest fmtest.f90 libwspr.a -lfftw3f -lportaudio -+ ${FC} ${CFLAGS} ${FFLAGS} ${PORTAUDIO_LIBDIR} ${LDFLAGS} -o fmtest fmtest.f90 libwspr.a -lfftw3f -lportaudio - - fmtave: fmtave.f90 -- ${FC} ${FFLAGS} -o fmtave fmtave.f90 -+ ${FC} ${PORTAUDIO_INCLUDE} ${CFLAGS} ${FFLAGS} ${PORTAUDIO_LIBDIR} ${LDFLAGS} -o fmtave fmtave.f90 - - fcal: fcal.f90 -- ${FC} ${FFLAGS} -o fcal fcal.f90 -+ ${FC} ${PORTAUDIO_INCLUDE} ${CFLAGS} ${FFLAGS} ${PORTAUDIO_LIBDIR} ${LDFLAGS} -o fcal fcal.f90 - - fmeasure: fmeasure.f90 -- ${FC} ${FFLAGS} -o fmeasure fmeasure.f90 -+ ${FC} ${PORTAUIO_INCLUDE} ${CFLAGS} ${FFLAGS} ${PORTAUDIO_LIBDIR} ${LDFLAGS} -o fmeasure fmeasure.f90 - - # SRC for w.so - F2PYSRCS = wspr1.f90 getfile.f90 paterminate.f90 audiodev.f90 -@@ -127,30 +129,34 @@ F2PYSRCS = wspr1.f90 getfile.f90 patermi - # Build W.SO & MV to WsprMod/ - WsprMod/w.so: libwspr.a ${F2PYSRCS} acom1.f90 - ${F2PY} -c --quiet --fcompiler=${FCV} --f77exec=${FC} --f90exec=${FC} \ -- --opt="${FCOPT}" thnix.o ${LDFLAGS} ${LIBS} libwspr.a -m w ${F2PYSRCS} -+ --opt="${FCOPT}" thnix.o ${PORTAUDIO_LIBDIR} ${LDFLAGS} ${LIBS} libwspr.a -m w ${F2PYSRCS} - ${MV} w*.so WsprMod/w.so - - # Install target wspr - install: -- @clear -+# tput has no TERM under automated install -+# @clear - @echo '-----------------------------------' - @echo " Installing ${PROGRAM}" - @echo '-----------------------------------' - @echo '' -- @${MKDIR} -p ${DOCDIR}/examples -- @${MKDIR} -p ${SHARED}/save/Samples -- @${MKDIR} -p ${WSPRLIB}/WsprMod -- @install -m 755 --strip fmtest fcal fmeasure fmtave wspr0 wsprcode ${BINDIR} -- @install -m 644 manpages/man1/*.1 ${MANDIR} -- @install -m 644 save/Samples/* ${SHARED}/save/Samples/ -- @install -m 755 ./{gocal,Pmw*.py,wspr.py,wspr.sh,wsprrc} ${SHARED} -- @install -m 644 ./{AUTHORS,README,NEWS,COPYING,COPYRIGHT} ${DOCDIR} -- @install -m 644 ./hamlib_rig* ${SHARED} -- @install -m 755 WsprMod/* ${WSPRLIB}/WsprMod -- @${MV} -T ${SHARED}/wspr.sh ${BINDIR}/wspr -- @${CHMOD} 755 ${BINDIR}/wspr -- @${CP} -r doc/examples/* ${DOCDIR}/examples/ -- @${CHMOD} -R 644 ${DOCDIR}/examples/* -+ @${MKDIR} -p ${DESTDIR}${DOCDIR}/examples -+ @${MKDIR} -p ${DESTDIR}${SHARED}/save/Samples -+ @${MKDIR} -p ${DESTDIR}${WSPRLIB}/WsprMod -+ @install -m 655 fmtest fcal fmeasure fmtave wspr0 wsprcode ${DESTDIR}${BINDIR} -+ @strip ${DESTDIR}${BINDIR}/fmtest ${DESTDIR}${BINDIR}/fcal \ -+ ${DESTDIR}${BINDIR}/fmeasure ${DESTDIR}${BINDIR}/fmtave \ -+ ${DESTDIR}${BINDIR}/wspr0 ${DESTDIR}${BINDIR}/wsprcode -+ @install -m 644 manpages/man1/*.1 ${DESTDIR}${MANDIR} -+ @install -m 644 save/Samples/* ${DESTDIR}${SHARED}/save/Samples/ -+ @install -m 755 gocal Pmw*.py wspr.py wspr.sh wsprrc ${DESTDIR}${SHARED} -+ @install -m 644 AUTHORS README NEWS COPYING COPYRIGHT ${DESTDIR}${DOCDIR} -+ @install -m 644 hamlib_rig* ${DESTDIR}${SHARED} -+ @install -m 755 WsprMod/* ${DESTDIR}${WSPRLIB}/WsprMod -+ @install -m 755 wspr.sh ${DESTDIR}${BINDIR}/wspr -+ @${CHMOD} 755 ${DESTDIR}${BINDIR}/wspr -+ @${CP} -r doc/examples/* ${DESTDIR}${DOCDIR}/examples/ -+ @${CHMOD} -R 644 ${DESTDIR}${DOCDIR}/examples/* - @echo "Finished Installing ${PROGRAM}" - @echo '' - @echo '..To run, type..: wspr' diff --git a/comms/wspr/files/patch-configure.ac b/comms/wspr/files/patch-configure.ac deleted file mode 100644 index e85147bd2c6..00000000000 --- a/comms/wspr/files/patch-configure.ac +++ /dev/null @@ -1,229 +0,0 @@ ---- configure.ac.orig 2017-09-27 19:55:15 UTC -+++ configure.ac -@@ -10,18 +10,33 @@ dnl ------------------------------------ - dnl path vars - dnl ---------------------------------------------------------------------------- - -+AC_PREFIX_DEFAULT("/usr") -+ - AC_CONFIG_AUX_DIR([build-aux]) - AC_CANONICAL_HOST - AC_CANONICAL_BUILD - AC_SUBST([USER], ["$USER"]) -+ -+gfortran="gfortran" -+ -+AC_DEFINE_UNQUOTED(PREFIX, "${prefix}", [Prefix where wspr is installed.]) -+ -+ - AC_SUBST([HOMEDIR], [/home/"$USER"/.wspr]) --AC_SUBST([PREFIX], [/usr]) --AC_SUBST([BINDIR], [/usr/bin]) --AC_SUBST([WSPRLIB], [/usr/lib/wspr]) --AC_SUBST([SHARED], [/usr/share/wspr]) --AC_SUBST([MANDIR], [/usr/share/man/man1]) --AC_SUBST([DOCDIR], [/usr/share/doc/wspr]) -+AC_SUBST([PREFIX], [${prefix}]) -+AC_SUBST([BINDIR], [${prefix}/bin]) -+AC_SUBST([WSPRLIB], [${prefix}/lib/wspr]) -+AC_SUBST([SHARED], [${prefix}/share/wspr]) -+AC_SUBST([DOCDIR], [${prefix}/share/doc/wspr]) - -+case "${host_os}" in -+ *bsd* ) -+ AC_SUBST([MANDIR], [${prefix}/man/man1]) -+ ;; -+ * ) -+ AC_SUBST([MANDIR], [${prefix}/share/man/man1]) -+ ;; -+esac - - dnl ---------------------------------------------------------------------------- - dnl check compilers -@@ -59,9 +74,17 @@ AC_PATH_PROG([TR], [tr]) - AC_SUBST([OS], ["$host_os"]) - AC_SUBST([CPU], ["$host_cpu"]) - --dnl ---------------------------------------------------------------------------- -+dnl --------------------------------------------------------------------------- - dnl check headers --dnl ---------------------------------------------------------------------------- -+dnl --------------------------------------------------------------------------- -+ -+dnl --------------------------------------------------------------------------- -+dnl Lots of BSD/Solaris/ other systems look in /usr/local -+dnl --------------------------------------------------------------------------- -+ -+CPPFLAGS="-I/usr/local/include ${CPPFLAGS}" -+LDFLAGS="-L/usr/local/lib ${LDFLAGS}" -+ - AC_HEADER_STDC - AC_HEADER_DIRENT - AC_HEADER_TIME -@@ -88,36 +111,36 @@ dnl ------------------------------------ - dnl add additional lib paths - dnl ---------------------------------------------------------------------------- - if test -d "/usr/lib64"; then LDFLAGS="-L/usr/lib64 ${LDFLAGS}"; fi --if test -d "/usr/local/lib"; then LDFLAGS="-L/usr/local/lib ${LDFLAGS}"; fi -+#if test -d "/usr/local/lib"; then LDFLAGS="${LDFLAGS} -L/usr/local/lib"; fi - if test -d "/usr/lib/x86_64-linux-gnu"; then LDFLAGS="-L/usr/lib/x86_64-linux-gnu ${LDFLAGS}"; fi - if test -d "/usr/lib/i386-linux-gnu"; then LDFLAGS="-L/usr/lib/i386-linux-gnu ${LDFLAGS}"; fi --if test -d "/usr/lib"; then LDFLAGS="-L/usr/lib ${LDFLAGS}"; fi -+if test -d "/usr/lib"; then LDFLAGS="${LDFLAGS} -L/usr/lib"; fi - if test -d "/usr/lib/arm-linux-gnueabihf"; then LDFLAGS="-L/usr/lib/arm-linux-gnueabihf ${LDFLAGS}"; fi - -+ - dnl ---------------------------------------------------------------------------- - dnl find Python3 - dnl ---------------------------------------------------------------------------- - - HAVE_PY3=no - --# check with-enable first -+# check with-python3 first - AC_MSG_CHECKING([Python3 --with-python3]) --AC_ARG_WITH([f2py], [ --with-python3=PATH path to: ../python3], -+AC_ARG_WITH([python3], [ --with-python3=PATH path to: ../python3], - PY3="$withval") - - # if --with-python3 is not empty --if test -n "$PY3"; then -+if test -n ${PY3}; then - - # check if user provided python3 is >= 3.2 --python3 -c "import sys; sys.exit(sys.version < '3.2')" >/dev/null 2>&1 -- -+${PY3} -c "import sys; sys.exit(sys.version < '3.2')" >/dev/null 2>&1 - if test "$?" != "0"; then -- HAVE_PY3=no -+ HAVE_PY3="no" - AC_MSG_RESULT([no]) - else -- HAVE_PY3=yes -- PY3_PATH="$PY3" -- PY3V=`$PY3 -V` -+ HAVE_PY3="yes" -+ PY3_PATH=${PY3} -+ PY3V=`${PY3} -V` - AC_DEFINE([HAVE_PY3], [1]) - AC_DEFINE_UNQUOTED([PY3_PATH], ["${PY3}"], [Path to Python3]) - AC_SUBST([PYTHON], ["${PY3}"]) -@@ -128,6 +151,7 @@ else - fi - - # if not user supplied, check by calling python -+ - if test "$HAVE_PY3" = "no"; then - - AC_MSG_CHECKING([Python3 using: python]) -@@ -172,7 +196,7 @@ dnl ------------------------------------ - - HAVE_F2PY=no - --# check with-enable first -+# check with-f2py first - AC_MSG_CHECKING([F2PY --with-f2py]) - AC_ARG_WITH([f2py], [ --with-f2py=PATH path to: ../f2py ../f2py3], - F2PY="$withval") -@@ -244,13 +268,23 @@ dnl ------------------------------------ - dnl check gfortran - dnl ---------------------------------------------------------------------------- - -+AC_MSG_CHECKING([gfortran --with-gfortran]) -+AC_ARG_WITH([gfortran], [ --with-gfortran=PATH path to: ../gfortran],]) -+ -+# if --with-gfortran is not empty -+if test -n ${withval}; then -+ gfortran="${withval}" -+ gfpath=`${gfortran} --print-file-name=|awk -F/ '{print $1 "/" $2 "/" $3 "/" $4 "/" $5}'` -+ LDFLAGS="-L${gfpath} ${LDFLAGS}" -+fi -+ - AC_CHECK_LIB([gfortran], [_gfortran_st_write], [], []) - - if test "$ac_cv_lib_gfortran__gfortran_st_write" != "yes"; then - HAVE_GFORTRAN=0 - else - HAVE_GFORTRAN=1 -- FC=gfortran -+ FC=${gfortran} - FCV=gnu95 - FC_LIB_PATH=`${FC} -print-file-name=` - AC_DEFINE_UNQUOTED([FC_LIB_PATH], ["${FC_LIB_PATH}"], [Path to Gfortran libs.]) -@@ -266,12 +300,14 @@ fi - dnl ---------------------------------------------------------------------------- - dnl check portaudio - dnl ---------------------------------------------------------------------------- -+# - - AC_CHECK_LIB([portaudio], [Pa_Initialize], [], []) - if test "$ac_cv_lib_portaudio_Pa_Initialize" = "yes"; then -- LIBS="-lportaudio ${LIBS}" -+ LIBS="-lportaudio ${LIBS}" - fi - -+ - # if headers and libs found, set define - if test "$ac_cv_header_portaudio_h" = "yes" -a "$ac_cv_lib_portaudio_Pa_Initialize" = "yes"; then - HAVE_PORTAUDIO=1 -@@ -279,7 +315,6 @@ if test "$ac_cv_header_portaudio_h" = "y - AC_DEFINE([HAVE_PORTAUDIO_LIB], [1], [Portaudio Lib]) - fi - -- - dnl ---------------------------------------------------------------------------- - dnl check fftw3 - dnl ---------------------------------------------------------------------------- -@@ -322,8 +357,10 @@ dnl ------------------------------------ - _LBU=$(echo "-lpthread $LIBS" |tr ' ' '\n'|sort -su |tr '\n' ' ') - LIBS="$_LBU" - --_LDU=$(echo "$LDFLAGS" |tr ' ' '\n'|sort -su |tr '\n' ' ') --LDFLAGS="$_LDU" -+# This of course destroys FreeBSD builds -+#_LDU=$(echo "$LDFLAGS" |tr ' ' '\n'|sort -su |tr '\n' ' ') -+#LDFLAGS="$_LDU" -+ - - _CPPU=$(echo "-I/usr/include -I/usr/local/include $CPPFLAGS" |tr ' ' '\n'|sort -su |tr '\n' ' ') - CPPFLAGS="$_CPPU" -@@ -355,6 +392,10 @@ case "${host_os}" in - FFLAGS="-O2 -m64 -Wall -fbounds-check -fno-second-underscore \ - -Wno-conversion -Wno-character-truncation -fPIC" - ;; -+ *freebsd* ) -+ CFLAGS="${CFLAGS} -fpic" -+ FFLAGS="-O2 -m"$(/usr/bin/getconf LONG_BIT)" -Wall -fbounds-check -fno-second-underscore \ -+-Wno-conversion -Wno-character-truncation -fPIC" ;; - *) - AC_MSG_ERROR([Unsupported System: ${host_os}.]) - ;; -@@ -377,10 +418,6 @@ if test "$HAVE_PY3" = "no"; then - echo - echo 'Example:' - echo './configure --with-python3="/home/$USER/test/python3"' --else -- # add python3 path to wspr.sh script -- sed -i '/wspr.py/d' wspr.sh -- echo "$PY3_PATH -O wspr.py" >> wspr.sh - fi - - -@@ -502,7 +539,7 @@ AC_SUBST([PREFIX], ["$prefix"]) - AC_SUBST([PROGRAM], ["$PACKAGE_NAME"]) - AC_SUBST([VERSION], ["$PACKAGE_VERSION"]) - AC_SUBST([WEB], ["$PACKAGE_URL"]) --AC_CONFIG_FILES([Makefile]) -+AC_CONFIG_FILES([Makefile wspr.sh]) - AC_OUTPUT - - -@@ -523,7 +560,7 @@ fi - echo " Package: .........: ${PROGRAM} ${VERSION}" - echo " Python3: .........: ${PYTHON}" - echo " F2py: ............: ${F2PY}" --echo " Fcomplier: .......: ${FC}" -+echo " Fcompiler: .......: ${FC}" - echo " Samplerate: ......: ${srstatus}" - echo " FFTW3: ...........: ${ffstatus}" - echo " Portaudio: .......: ${pastatus}" diff --git a/comms/wspr/files/patch-wspr.py b/comms/wspr/files/patch-wspr.py deleted file mode 100644 index dfeff99d758..00000000000 --- a/comms/wspr/files/patch-wspr.py +++ /dev/null @@ -1,11 +0,0 @@ ---- wspr.py.orig 2017-09-27 19:55:15 UTC -+++ wspr.py -@@ -50,7 +50,7 @@ from WsprMod import g - import Pmw - from WsprMod import palettes - from math import log10 --from numpy.oldnumeric import zeros -+from numpy import zeros - import array - ##import dircache - from PIL import Image, ImageTk, ImageDraw diff --git a/comms/wspr/files/patch-wspr2.f90 b/comms/wspr/files/patch-wspr2.f90 deleted file mode 100644 index 4bc995a1394..00000000000 --- a/comms/wspr/files/patch-wspr2.f90 +++ /dev/null @@ -1,11 +0,0 @@ ---- wspr2.f90.orig 2017-09-27 23:05:56 UTC -+++ wspr2.f90 -@@ -40,7 +40,7 @@ subroutine wspr2 - include 'acom2.f90' - character dectxt*80,logfile*80 - integer nt(9) -- integer iclock(12) -+ integer iclock(36) - integer ib(15) - common/patience/npatience - data nrxnormal/0/,ireset/1/ diff --git a/comms/wspr/files/wspr.sh.in b/comms/wspr/files/wspr.sh.in deleted file mode 100644 index 437a2eb07d2..00000000000 --- a/comms/wspr/files/wspr.sh.in +++ /dev/null @@ -1,60 +0,0 @@ -#!/bin/sh -#------------------------------------------------------------------------------- -# This file is part of the WSPR application, Weak Signal Propogation Reporter -# -# File Name: wspr.sh -# Description: Shell script wrapper to update or copy files from system install -# -# Copyright (C) 2001-2014 Joseph Taylor, K1JT -# License: GNU GPL v3 -# -# This program is free software; you can redistribute it and/or modify it under -# the terms of the GNU General Public License as published by the Free Software -# Foundation; either version 3 of the License, or (at your option) any later -# version. -# -# This program is distributed in the hope that it will be useful, but WITHOUT -# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more -# details. -# -# You should have received a copy of the GNU General Public License along with -# this program; if not, write to the Free Software Foundation, Inc., 51 Franklin -# Street, Fifth Floor, Boston, MA 02110-1301, USA. -# -#------------------------------------------------------------------------------- - -set -e - -copyur() { - for f in $1/*;do - if [ $f -nt `basename $f` ]; then - if [ ! -d `basename $f` ]; then - cp $f . - fi - fi - done -} - -# set dir's -_HOMEDIR="/home/$USER/.wspr" - -# update out of date files -if [ -e $_HOMEDIR ] ; then - cd $_HOMEDIR - copyur /usr/local/share/wspr - copyur /usr/local/share/doc/wspr - cd $_HOMEDIR/WsprMod - copyur /usr/local/lib/wspr/WsprMod - cd $_HOMEDIR -else -# if _HOMEDIR does not exist make it - mkdir $_HOMEDIR - cp -R @PREFIX@/share/wspr/* $_HOMEDIR - cp -R @PREFIX@/share/doc/wspr/* $_HOMEDIR - cp -R @PREFIX@/lib/wspr/* $_HOMEDIR -fi - -# run: py location updated by configure.ac -cd $_HOMEDIR -@PYTHON@ -O wspr.py diff --git a/comms/wspr/pkg-descr b/comms/wspr/pkg-descr deleted file mode 100644 index 135be80aaee..00000000000 --- a/comms/wspr/pkg-descr +++ /dev/null @@ -1,6 +0,0 @@ -WSPR (pronounced "whisper") stands for "Weak Signal Propagation Reporter." -This program is designed for sending and receiving low-power transmissions -to test propagation paths on the MF and HF bands. Users with internet access -can watch results in real time at WSPRnet. - -WWW: http://physics.princeton.edu/pulsar/K1JT diff --git a/comms/wspr/pkg-message b/comms/wspr/pkg-message deleted file mode 100644 index bca1f7f47e3..00000000000 --- a/comms/wspr/pkg-message +++ /dev/null @@ -1,4 +0,0 @@ -wspr is now installed. -wspr now has some experimental code for controlling -rigs using rigctl from hamlib. Check supported_rigs.txt in docs. -Now, go chase some HF dx. diff --git a/comms/wspr/pkg-plist b/comms/wspr/pkg-plist deleted file mode 100644 index 033c35dbdbd..00000000000 --- a/comms/wspr/pkg-plist +++ /dev/null @@ -1,43 +0,0 @@ -bin/fcal -bin/fmeasure -bin/fmtave -bin/fmtest -bin/wspr -bin/wspr0 -bin/wsprcode -lib/wspr/WsprMod/__init__.py -lib/wspr/WsprMod/advanced.py -lib/wspr/WsprMod/g.py -lib/wspr/WsprMod/hopping.py -lib/wspr/WsprMod/iq.py -lib/wspr/WsprMod/libgcc_s_dw2-1.dll -lib/wspr/WsprMod/options.py -lib/wspr/WsprMod/palettes.py -lib/wspr/WsprMod/smeter.py -lib/wspr/WsprMod/specjt.py -lib/wspr/WsprMod/w.so -man/man1/fcal.1.gz -man/man1/fmeasure.1.gz -man/man1/fmtave.1.gz -man/man1/fmtest.1.gz -man/man1/wspr.1.gz -man/man1/wspr0.1.gz -man/man1/wsprcode.1.gz -%%PORTDOCS%%%%DOCSDIR%%/AUTHORS -%%PORTDOCS%%%%DOCSDIR%%/COPYING -%%PORTDOCS%%%%DOCSDIR%%/COPYRIGHT -%%PORTDOCS%%%%DOCSDIR%%/NEWS -%%PORTDOCS%%%%DOCSDIR%%/README -%%PORTDOCS%%%%DOCSDIR%%/examples/README -%%PORTDOCS%%%%DOCSDIR%%/examples/fcal.out -%%PORTDOCS%%%%DOCSDIR%%/examples/fmt.all -%%PORTDOCS%%%%DOCSDIR%%/examples/fmtave.out -%%DATADIR%%/Pmw.py -%%DATADIR%%/PmwBlt.py -%%DATADIR%%/PmwColor.py -%%DATADIR%%/gocal -%%DATADIR%%/hamlib_rig_numbers -%%DATADIR%%/save/Samples/091022_0436.wav -%%DATADIR%%/wspr.py -%%DATADIR%%/wspr.sh -%%DATADIR%%/wsprrc diff --git a/converters/p5-Boulder/Makefile b/converters/p5-Boulder/Makefile index 3ff64c5d7ca..9dfbcf639dd 100644 --- a/converters/p5-Boulder/Makefile +++ b/converters/p5-Boulder/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= API for hierarchical tag/value structures -BUILD_DEPENDS= p5-XML-Parser>=0:textproc/p5-XML-Parser -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-XML-Parser>=0:textproc/p5-XML-Parser USES= perl5 USE_PERL5= configure diff --git a/converters/p5-Convert-TNEF/Makefile b/converters/p5-Convert-TNEF/Makefile index f858bae356c..e1e3d1150dc 100644 --- a/converters/p5-Convert-TNEF/Makefile +++ b/converters/p5-Convert-TNEF/Makefile @@ -14,9 +14,9 @@ COMMENT= Perl module to read TNEF files LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-IO-stringy>=0:devel/p5-IO-stringy \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-IO-stringy>=0:devel/p5-IO-stringy \ p5-MIME-Tools>=4.109:mail/p5-MIME-Tools -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/converters/p5-Encode-compat/Makefile b/converters/p5-Encode-compat/Makefile index fe83fbb5e6e..39147114ba2 100644 --- a/converters/p5-Encode-compat/Makefile +++ b/converters/p5-Encode-compat/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Compatibility interfaces for Encode.pm on Perl < 5.7.1 -BUILD_DEPENDS= p5-Text-Iconv>=0:converters/p5-Text-Iconv -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Text-Iconv>=0:converters/p5-Text-Iconv USES= perl5 USE_PERL5= configure diff --git a/converters/p5-LaTeXML/Makefile b/converters/p5-LaTeXML/Makefile index 9af048e0db5..d666a7492b5 100644 --- a/converters/p5-LaTeXML/Makefile +++ b/converters/p5-LaTeXML/Makefile @@ -15,7 +15,8 @@ LICENSE= PD CC0-1.0 LICENSE_COMB= dual LICENSE_FILE_CC0-1.0= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Archive-Zip>=0:archivers/p5-Archive-Zip \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Archive-Zip>=0:archivers/p5-Archive-Zip \ p5-JSON-XS>=0:converters/p5-JSON-XS \ p5-Text-Unidecode>=0:converters/p5-Text-Unidecode \ p5-IO-String>=0:devel/p5-IO-String \ @@ -26,7 +27,6 @@ BUILD_DEPENDS= p5-Archive-Zip>=0:archivers/p5-Archive-Zip \ p5-XML-LibXML>=1.62:textproc/p5-XML-LibXML \ p5-XML-LibXSLT>=1.58:textproc/p5-XML-LibXSLT \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/converters/p5-Number-Nary/Makefile b/converters/p5-Number-Nary/Makefile index fb2725baa78..94e0c528dae 100644 --- a/converters/p5-Number-Nary/Makefile +++ b/converters/p5-Number-Nary/Makefile @@ -14,10 +14,10 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Sub-Exporter>=0:devel/p5-Sub-Exporter \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Sub-Exporter>=0:devel/p5-Sub-Exporter \ p5-List-MoreUtils>=0:lang/p5-List-MoreUtils \ p5-UDCode>=0:devel/p5-UDCode -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/converters/p5-Sereal/Makefile b/converters/p5-Sereal/Makefile index b1b90adaf1d..c53e8000e33 100644 --- a/converters/p5-Sereal/Makefile +++ b/converters/p5-Sereal/Makefile @@ -13,9 +13,9 @@ COMMENT= Perl extension for fast, compact, powerful binary (de-)serialization LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Sereal-Decoder>=${PORTVERSION}:converters/p5-Sereal-Decoder \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Sereal-Decoder>=${PORTVERSION}:converters/p5-Sereal-Decoder \ p5-Sereal-Encoder>=${PORTVERSION}:converters/p5-Sereal-Encoder -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Deep>=0:devel/p5-Test-Deep \ p5-Test-LongString>=0:devel/p5-Test-LongString \ p5-Test-Warn>=0:devel/p5-Test-Warn diff --git a/converters/p5-Unicode-Map8/Makefile b/converters/p5-Unicode-Map8/Makefile index 0eb29e63cc6..10bef561e24 100644 --- a/converters/p5-Unicode-Map8/Makefile +++ b/converters/p5-Unicode-Map8/Makefile @@ -14,8 +14,8 @@ COMMENT= Mapping table between 8-bit chars and Unicode LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Unicode-String>=2:converters/p5-Unicode-String -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Unicode-String>=2:converters/p5-Unicode-String USES= perl5 USE_PERL5= configure diff --git a/converters/p5-Unicode-MapUTF8/Makefile b/converters/p5-Unicode-MapUTF8/Makefile index 6086898a750..a8d9ff65d03 100644 --- a/converters/p5-Unicode-MapUTF8/Makefile +++ b/converters/p5-Unicode-MapUTF8/Makefile @@ -11,11 +11,11 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Perl class that implements conversion between arbitrary charsets -BUILD_DEPENDS= ja-p5-Jcode>=0:japanese/p5-Jcode \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= ja-p5-Jcode>=0:japanese/p5-Jcode \ p5-Unicode-Map>=0:converters/p5-Unicode-Map \ p5-Unicode-Map8>=0:converters/p5-Unicode-Map8 \ p5-Unicode-String>=0:converters/p5-Unicode-String -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/converters/p5-Unicode-Stringprep/Makefile b/converters/p5-Unicode-Stringprep/Makefile index 9f4894ad822..3d6a8d147aa 100644 --- a/converters/p5-Unicode-Stringprep/Makefile +++ b/converters/p5-Unicode-Stringprep/Makefile @@ -14,8 +14,8 @@ COMMENT= Preparation of Internationalized Strings (RFC 3454) LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Unicode-Normalize>=1:textproc/p5-Unicode-Normalize -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Unicode-Normalize>=1:textproc/p5-Unicode-Normalize TEST_DEPENDS= p5-Test-NoWarnings>=0:devel/p5-Test-NoWarnings \ p5-Test-Pod>=1:devel/p5-Test-Pod \ p5-Test-Pod-Coverage>=0:devel/p5-Test-Pod-Coverage diff --git a/converters/p5-WAP-wbxml/Makefile b/converters/p5-WAP-wbxml/Makefile index 8654341667a..97cbc93cf44 100644 --- a/converters/p5-WAP-wbxml/Makefile +++ b/converters/p5-WAP-wbxml/Makefile @@ -14,9 +14,9 @@ COMMENT= Binarization of XML file LICENSE= ART20 LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-XML-DOM>=0:textproc/p5-XML-DOM \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-XML-DOM>=0:textproc/p5-XML-DOM \ p5-I18N-Charset>=0:misc/p5-I18N-Charset -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= dos2unix perl5 USE_PERL5= configure diff --git a/converters/py-bcode/Makefile b/converters/py-bcode/Makefile index 1a8084f5604..311c260932e 100644 --- a/converters/py-bcode/Makefile +++ b/converters/py-bcode/Makefile @@ -8,7 +8,7 @@ CATEGORIES= converters devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -MAINTAINER= feld@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Another bencode implementation LICENSE= MIT diff --git a/converters/wkhtmltopdf/Makefile b/converters/wkhtmltopdf/Makefile index b23e58f3327..ff59ee31c99 100644 --- a/converters/wkhtmltopdf/Makefile +++ b/converters/wkhtmltopdf/Makefile @@ -17,7 +17,6 @@ BROKEN_aarch64= fails to build: error: cast from pointer to smaller type loses BROKEN_armv6= fails to build: error: Not supported ARM architecture BROKEN_armv7= fails to build: error: invalid operand for instruction BROKEN_mips64= fails to link: undefined reference to __sync_add_and_fetch_4 -BROKEN_powerpc64= fails to build: RenderObject.o: sibling call optimization to does not allow automatic multiple TOCs BROKEN_SSL= openssl-devel BROKEN_SSL_REASON_openssl-devel= member access into incomplete type 'SSL_CIPHER' (aka 'ssl_cipher_st') @@ -26,7 +25,7 @@ LIB_DEPENDS= libfontconfig.so:x11-fonts/fontconfig \ libfreetype.so:print/freetype2 \ libpng.so:graphics/png -USES= compiler:env gmake iconv jpeg perl5 pkgconfig ssl:build +USES= compiler:c++11-lang gmake iconv jpeg perl5 pkgconfig ssl:build USE_XORG= x11 xext xrender USE_PERL5= build USE_LDCONFIG= yes @@ -70,6 +69,9 @@ post-patch: -e 's|/usr/X11R6/include|${LOCALBASE}/include/X11|g' \ -e 's|/usr/X11R6/lib|${LOCALBASE}/lib|g' \ ${PATCH_WRKSRC}/mkspecs/freebsd-g++/qmake.conf + ${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|g' \ + -e 's|%%GCC_DEFAULT%%|${GCC_DEFAULT}|g' \ + ${PATCH_WRKSRC}/mkspecs/common/gcc-base.conf ${REINPLACE_CMD} -e "s|gcc|${CC}|g" -e "s|g++|${CXX}|g" \ ${PATCH_WRKSRC}/mkspecs/common/g++-base.conf ${REINPLACE_CMD} -e "s|share/man|man|g" \ diff --git a/converters/wkhtmltopdf/files/patch-mkspecs_common_gcc-base.conf b/converters/wkhtmltopdf/files/patch-mkspecs_common_gcc-base.conf new file mode 100644 index 00000000000..785413c904b --- /dev/null +++ b/converters/wkhtmltopdf/files/patch-mkspecs_common_gcc-base.conf @@ -0,0 +1,11 @@ +--- mkspecs/common/gcc-base.conf.orig 2018-10-01 11:36:14 UTC ++++ mkspecs/common/gcc-base.conf +@@ -53,7 +53,7 @@ QMAKE_CXXFLAGS_STATIC_LIB += $$QMAKE_CFLAGS_STATIC_LIB + QMAKE_CXXFLAGS_YACC += $$QMAKE_CFLAGS_YACC + QMAKE_CXXFLAGS_HIDESYMS += $$QMAKE_CFLAGS_HIDESYMS -fvisibility-inlines-hidden + +-QMAKE_LFLAGS += ++QMAKE_LFLAGS += -Wl,-rpath=%%LOCALBASE%%/lib/gcc%%GCC_DEFAULT%% + QMAKE_LFLAGS_DEBUG += + QMAKE_LFLAGS_APP += + QMAKE_LFLAGS_RELEASE += diff --git a/databases/cockroach/Makefile b/databases/cockroach/Makefile index 106b3e0bf8c..57361ad90fa 100644 --- a/databases/cockroach/Makefile +++ b/databases/cockroach/Makefile @@ -2,7 +2,7 @@ PORTNAME= cockroach DISTVERSIONPREFIX= v -DISTVERSION= 2.0.2 +DISTVERSION= 2.0.5 CATEGORIES= databases MASTER_SITES= https://binaries.cockroachdb.com/ EXTRACT_SUFX= .src.tgz diff --git a/databases/cockroach/distinfo b/databases/cockroach/distinfo index 4dcadec25f6..1a41716f375 100644 --- a/databases/cockroach/distinfo +++ b/databases/cockroach/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1528529382 -SHA256 (cockroach-v2.0.2.src.tgz) = ee0e68ce9c74b8b1157e4c5d470b140960a5a281a70460c82bd79258a18e7d2b -SIZE (cockroach-v2.0.2.src.tgz) = 45521739 +TIMESTAMP = 1537611997 +SHA256 (cockroach-v2.0.5.src.tgz) = 2a3ba8e7a2c44f59644ad84b530930bdf09e597741033d73ee7b2e4490d2051d +SIZE (cockroach-v2.0.5.src.tgz) = 45551406 diff --git a/databases/kbibtex/Makefile b/databases/kbibtex/Makefile index cb511a0e549..9fba4bea1f6 100644 --- a/databases/kbibtex/Makefile +++ b/databases/kbibtex/Makefile @@ -2,23 +2,29 @@ # $FreeBSD$ PORTNAME= kbibtex -DISTVERSION= 0.6.2 -PORTREVISION= 4 +DISTVERSION= 0.8.1 CATEGORIES= databases kde -MASTER_SITES= http://download.gna.org/${PORTNAME}/${PORTVERSION:R}/ +MASTER_SITES= KDE/stable/KBibTeX/${DISTVERSION}/ MAINTAINER= kde@FreeBSD.org COMMENT= Bibliography editor for KDE -LIB_DEPENDS= libpoppler-qt4.so:graphics/poppler-qt4 \ - libqca.so:devel/qca@qt4 \ - libqoauth.so:net/qoauth +LIB_DEPENDS= libicuuc.so:devel/icu \ + libqca-qt5.so:devel/qca@qt5 \ + libpoppler.so:graphics/poppler \ + libpoppler-qt5.so:graphics/poppler-qt5 \ + libqoauth-qt5.so:net/qoauth-qt5 -USES= cmake gettext iconv kde:4 qt:4 shared-mime-info tar:xz +USES= cmake desktop-file-utils gettext iconv kde:5 qt:5 \ + shared-mime-info tar:xz USE_GNOME= libxml2 libxslt -USE_KDE= kdelibs automoc4 -USE_QT= qmake_build moc_build uic_build rcc_build \ - webkit +USE_KDE= auth bookmarks codecs completion config configwidgets \ + coreaddons crash ecm i18n iconthemes itemviews jobwidgets \ + kio parts service solid sonnet textwidgets wallet \ + widgetsaddons xmlgui +USE_QT= concurrent core dbus gui location network printsupport qml \ + quick webchannel webengine widgets xml xmlpatterns \ + buildtools_build qmake_build USE_LDCONFIG= yes .include diff --git a/databases/kbibtex/distinfo b/databases/kbibtex/distinfo index adefb11d191..2b183f2b74c 100644 --- a/databases/kbibtex/distinfo +++ b/databases/kbibtex/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1490015605 -SHA256 (kbibtex-0.6.2.tar.xz) = d99e419aec1d3af0a57eba6d7498de4e6be25ddbd5a5e56fc9de09e7e17dcdf3 -SIZE (kbibtex-0.6.2.tar.xz) = 3081364 +TIMESTAMP = 1538908614 +SHA256 (kbibtex-0.8.1.tar.xz) = 6511a912925c628b7d175b0ef98ba98b1b8eb61e457d621ea0963d29b1fd21d2 +SIZE (kbibtex-0.8.1.tar.xz) = 4060484 diff --git a/databases/kbibtex/pkg-plist b/databases/kbibtex/pkg-plist index 00e4e68ade2..d283fff9ac5 100644 --- a/databases/kbibtex/pkg-plist +++ b/databases/kbibtex/pkg-plist @@ -1,157 +1,38 @@ bin/kbibtex -include/kde4/kbibtex/api.h -include/kde4/kbibtex/associatedfiles.h -include/kde4/kbibtex/associatedfilesui.h -include/kde4/kbibtex/basicfileview.h -include/kde4/kbibtex/bibliographyservice.h -include/kde4/kbibtex/bibtexentries.h -include/kde4/kbibtex/bibtexfields.h -include/kde4/kbibtex/bibutils.h -include/kde4/kbibtex/checkbibtex.h -include/kde4/kbibtex/clipboard.h -include/kde4/kbibtex/collection.h -include/kde4/kbibtex/collectionmodel.h -include/kde4/kbibtex/colorlabelwidget.h -include/kde4/kbibtex/comment.h -include/kde4/kbibtex/delayedexecutiontimer.h -include/kde4/kbibtex/element.h -include/kde4/kbibtex/elementeditor.h -include/kde4/kbibtex/encoder.h -include/kde4/kbibtex/encoderlatex.h -include/kde4/kbibtex/encoderutf8.h -include/kde4/kbibtex/encoderxml.h -include/kde4/kbibtex/entry.h -include/kde4/kbibtex/fieldinput.h -include/kde4/kbibtex/fieldlineedit.h -include/kde4/kbibtex/file.h -include/kde4/kbibtex/fileexporter.h -include/kde4/kbibtex/fileexporterbibtex.h -include/kde4/kbibtex/fileexporterbibtex2html.h -include/kde4/kbibtex/fileexporterbibtexoutput.h -include/kde4/kbibtex/fileexporterbibutils.h -include/kde4/kbibtex/fileexporterpdf.h -include/kde4/kbibtex/fileexporterps.h -include/kde4/kbibtex/fileexporterris.h -include/kde4/kbibtex/fileexporterrtf.h -include/kde4/kbibtex/fileexportertoolchain.h -include/kde4/kbibtex/fileexporterxml.h -include/kde4/kbibtex/fileexporterxslt.h -include/kde4/kbibtex/fileimporter.h -include/kde4/kbibtex/fileimporterbibtex.h -include/kde4/kbibtex/fileimporterbibutils.h -include/kde4/kbibtex/fileimporterpdf.h -include/kde4/kbibtex/fileimporterris.h -include/kde4/kbibtex/fileinfo.h -include/kde4/kbibtex/filemodel.h -include/kde4/kbibtex/fileview.h -include/kde4/kbibtex/filterbar.h -include/kde4/kbibtex/findduplicates.h -include/kde4/kbibtex/findduplicatesui.h -include/kde4/kbibtex/findpdf.h -include/kde4/kbibtex/findpdfui.h -include/kde4/kbibtex/groups.h -include/kde4/kbibtex/guihelper.h -include/kde4/kbibtex/iconvlatex.h -include/kde4/kbibtex/idsuggestions.h -include/kde4/kbibtex/internalnetworkaccessmanager.h -include/kde4/kbibtex/iocommon.h -include/kde4/kbibtex/italictextitemmodel.h -include/kde4/kbibtex/items.h -include/kde4/kbibtex/journalabbreviations.h -include/kde4/kbibtex/kbibtexdata_export.h -include/kde4/kbibtex/kbibtexgui_export.h -include/kde4/kbibtex/kbibtexio_export.h -include/kde4/kbibtex/kbibtexnamespace.h -include/kde4/kbibtex/kbibtexnetworking_export.h -include/kde4/kbibtex/kbibtexpreferencesdialog.h -include/kde4/kbibtex/kbibtexproc_export.h -include/kde4/kbibtex/lyx.h -include/kde4/kbibtex/macro.h -include/kde4/kbibtex/oauthwizard.h -include/kde4/kbibtex/onlinesearchabstract.h -include/kde4/kbibtex/onlinesearchacmportal.h -include/kde4/kbibtex/onlinesearcharxiv.h -include/kde4/kbibtex/onlinesearchbibsonomy.h -include/kde4/kbibtex/onlinesearchcernds.h -include/kde4/kbibtex/onlinesearchdoi.h -include/kde4/kbibtex/onlinesearchgeneral.h -include/kde4/kbibtex/onlinesearchgooglescholar.h -include/kde4/kbibtex/onlinesearchideasrepec.h -include/kde4/kbibtex/onlinesearchieeexplore.h -include/kde4/kbibtex/onlinesearchingentaconnect.h -include/kde4/kbibtex/onlinesearchinspirehep.h -include/kde4/kbibtex/onlinesearchisbndb.h -include/kde4/kbibtex/onlinesearchjstor.h -include/kde4/kbibtex/onlinesearchmathscinet.h -include/kde4/kbibtex/onlinesearchmrlookup.h -include/kde4/kbibtex/onlinesearchpubmed.h -include/kde4/kbibtex/onlinesearchsciencedirect.h -include/kde4/kbibtex/onlinesearchsimplebibtexdownload.h -include/kde4/kbibtex/onlinesearchsoanasaads.h -include/kde4/kbibtex/onlinesearchspringerlink.h -include/kde4/kbibtex/partwidget.h -include/kde4/kbibtex/preamble.h -include/kde4/kbibtex/settingsabstractwidget.h -include/kde4/kbibtex/settingscolorlabelwidget.h -include/kde4/kbibtex/settingsfileexporterpdfpswidget.h -include/kde4/kbibtex/settingsfileexporterwidget.h -include/kde4/kbibtex/settingsgeneralwidget.h -include/kde4/kbibtex/settingsglobalkeywordswidget.h -include/kde4/kbibtex/settingsidsuggestionseditor.h -include/kde4/kbibtex/settingsidsuggestionswidget.h -include/kde4/kbibtex/settingsuserinterfacewidget.h -include/kde4/kbibtex/tagmodel.h -include/kde4/kbibtex/tags.h -include/kde4/kbibtex/value.h -include/kde4/kbibtex/valuelistmodel.h -include/kde4/kbibtex/xsltransform.h -lib/kde4/kbibtexpart.so +etc/xdg/kbibtexrc lib/libkbibtexconfig.so -lib/libkbibtexconfig.so.0.6 -lib/libkbibtexconfig.so.0.6.1 +lib/libkbibtexconfig.so.0 +lib/libkbibtexconfig.so.0.8 lib/libkbibtexdata.so -lib/libkbibtexdata.so.0.6 -lib/libkbibtexdata.so.0.6.1 +lib/libkbibtexdata.so.0 +lib/libkbibtexdata.so.0.8 lib/libkbibtexgui.so -lib/libkbibtexgui.so.0.6 -lib/libkbibtexgui.so.0.6.1 +lib/libkbibtexgui.so.0 +lib/libkbibtexgui.so.0.8 lib/libkbibtexio.so -lib/libkbibtexio.so.0.6 -lib/libkbibtexio.so.0.6.1 +lib/libkbibtexio.so.0 +lib/libkbibtexio.so.0.8 lib/libkbibtexnetworking.so -lib/libkbibtexnetworking.so.0.6 -lib/libkbibtexnetworking.so.0.6.1 +lib/libkbibtexnetworking.so.0 +lib/libkbibtexnetworking.so.0.8 lib/libkbibtexproc.so -lib/libkbibtexproc.so.0.6 -lib/libkbibtexproc.so.0.6.1 -share/appdata/kbibtex.appdata.xml -share/applications/kde4/kbibtex.desktop -share/apps/kbibtex/abstractonly.xsl -share/apps/kbibtex/arxiv2bibtex.xsl -share/apps/kbibtex/biblatex.kbstyle -share/apps/kbibtex/bibtex.kbstyle -share/apps/kbibtex/fancy.xsl -share/apps/kbibtex/ieeexplore2bibtex.xsl -share/apps/kbibtex/isbndb2bibtex.xsl -share/apps/kbibtex/jabref_journalabbrevlist.txt -share/apps/kbibtex/kbibtexui.rc -share/apps/kbibtex/pam2bibtex.xsl -share/apps/kbibtex/pubmed2bibtex.xsl -share/apps/kbibtex/standard.xsl -share/apps/kbibtex/wikipedia-cite.xsl -share/apps/kbibtex/worldcatdc2bibtex.xsl -share/apps/kbibtexpart/kbibtexpartui.rc -share/config/kbibtexrc -share/doc/HTML/de/kbibtex/common +lib/libkbibtexproc.so.0 +lib/libkbibtexproc.so.0.8 +%%QT_PLUGINDIR%%/kbibtexpart.so +man/ca/man1/kbibtex.1.gz +man/de/man1/kbibtex.1.gz +man/it/man1/kbibtex.1.gz +man/man1/kbibtex.1.gz +man/nl/man1/kbibtex.1.gz +man/uk/man1/kbibtex.1.gz +share/applications/org.kde.kbibtex.desktop share/doc/HTML/de/kbibtex/index.cache.bz2 share/doc/HTML/de/kbibtex/index.docbook -share/doc/HTML/de/kbibtex/man-kbibtex.1.docbook share/doc/HTML/en/kbibtex/add-macro-source.png share/doc/HTML/en/kbibtex/add-macro.png share/doc/HTML/en/kbibtex/application-pdf.png share/doc/HTML/en/kbibtex/applications-internet.png share/doc/HTML/en/kbibtex/code-context.png -share/doc/HTML/en/kbibtex/common share/doc/HTML/en/kbibtex/config-color.png share/doc/HTML/en/kbibtex/config-general.png share/doc/HTML/en/kbibtex/config-id-suggestions.png @@ -189,7 +70,6 @@ share/doc/HTML/en/kbibtex/list-of-values.png share/doc/HTML/en/kbibtex/list-remove.png share/doc/HTML/en/kbibtex/lyx-preferences.png share/doc/HTML/en/kbibtex/main-toolbar.png -share/doc/HTML/en/kbibtex/man-kbibtex.1.docbook share/doc/HTML/en/kbibtex/media-playback-start.png share/doc/HTML/en/kbibtex/new-document.png share/doc/HTML/en/kbibtex/online-search.png @@ -201,29 +81,12 @@ share/doc/HTML/en/kbibtex/svn-update.png share/doc/HTML/en/kbibtex/tools-check-spelling.png share/doc/HTML/en/kbibtex/view-filter.png share/doc/HTML/en/kbibtex/zotero.png -share/doc/HTML/et/kbibtex/common -share/doc/HTML/et/kbibtex/index.cache.bz2 -share/doc/HTML/et/kbibtex/index.docbook -share/doc/HTML/et/kbibtex/man-kbibtex.1.docbook -share/doc/HTML/it/kbibtex/common share/doc/HTML/it/kbibtex/index.cache.bz2 share/doc/HTML/it/kbibtex/index.docbook -share/doc/HTML/it/kbibtex/man-kbibtex.1.docbook -share/doc/HTML/nl/kbibtex/common share/doc/HTML/nl/kbibtex/index.cache.bz2 share/doc/HTML/nl/kbibtex/index.docbook -share/doc/HTML/nl/kbibtex/man-kbibtex.1.docbook -share/doc/HTML/pt_BR/kbibtex/common -share/doc/HTML/pt_BR/kbibtex/index.cache.bz2 -share/doc/HTML/pt_BR/kbibtex/index.docbook -share/doc/HTML/pt_BR/kbibtex/man-kbibtex.1.docbook -share/doc/HTML/sv/kbibtex/common -share/doc/HTML/sv/kbibtex/index.cache.bz2 -share/doc/HTML/sv/kbibtex/index.docbook -share/doc/HTML/sv/kbibtex/man-kbibtex.1.docbook share/doc/HTML/uk/kbibtex/add-macro-source.png share/doc/HTML/uk/kbibtex/add-macro.png -share/doc/HTML/uk/kbibtex/common share/doc/HTML/uk/kbibtex/config-color.png share/doc/HTML/uk/kbibtex/config-general.png share/doc/HTML/uk/kbibtex/config-id-suggestions.png @@ -246,7 +109,6 @@ share/doc/HTML/uk/kbibtex/list-of-documents.png share/doc/HTML/uk/kbibtex/list-of-values.png share/doc/HTML/uk/kbibtex/lyx-preferences.png share/doc/HTML/uk/kbibtex/main-toolbar.png -share/doc/HTML/uk/kbibtex/man-kbibtex.1.docbook share/doc/HTML/uk/kbibtex/new-document.png share/doc/HTML/uk/kbibtex/online-search.png share/doc/HTML/uk/kbibtex/reference-preview.png @@ -259,7 +121,22 @@ share/icons/hicolor/22x22/apps/kbibtex.png share/icons/hicolor/32x32/apps/kbibtex.png share/icons/hicolor/48x48/apps/kbibtex.png share/icons/hicolor/64x64/apps/kbibtex.png -share/kde4/services/kbibtexpart.desktop +%%DATADIR%%/abstractonly.xsl +%%DATADIR%%/arxiv2bibtex.xsl +%%DATADIR%%/biblatex.kbstyle +%%DATADIR%%/bibtex.kbstyle +%%DATADIR%%/fancy.xsl +%%DATADIR%%/ieeexplore2bibtex.xsl +%%DATADIR%%/isbndb2bibtex.xsl +%%DATADIR%%/jabref_journalabbrevlist.txt +%%DATADIR%%/pam2bibtex.xsl +%%DATADIR%%/pubmed2bibtex.xsl +%%DATADIR%%/standard.xsl +%%DATADIR%%/wikipedia-cite.xsl +%%DATADIR%%/worldcatdc2bibtex.xsl +share/kservices5/kbibtexpart.desktop +share/kxmlgui5/kbibtex/kbibtexui.rc +share/kxmlgui5/kbibtexpart/kbibtexpartui.rc share/locale/ast/LC_MESSAGES/kbibtex.mo share/locale/bs/LC_MESSAGES/kbibtex.mo share/locale/ca/LC_MESSAGES/kbibtex.mo @@ -273,6 +150,7 @@ share/locale/fi/LC_MESSAGES/kbibtex.mo share/locale/fr/LC_MESSAGES/kbibtex.mo share/locale/gl/LC_MESSAGES/kbibtex.mo share/locale/hu/LC_MESSAGES/kbibtex.mo +share/locale/ia/LC_MESSAGES/kbibtex.mo share/locale/it/LC_MESSAGES/kbibtex.mo share/locale/ja/LC_MESSAGES/kbibtex.mo share/locale/lt/LC_MESSAGES/kbibtex.mo @@ -285,5 +163,9 @@ share/locale/pt_BR/LC_MESSAGES/kbibtex.mo share/locale/ru/LC_MESSAGES/kbibtex.mo share/locale/sk/LC_MESSAGES/kbibtex.mo share/locale/sv/LC_MESSAGES/kbibtex.mo +share/locale/tr/LC_MESSAGES/kbibtex.mo share/locale/uk/LC_MESSAGES/kbibtex.mo +share/locale/zh_CN/LC_MESSAGES/kbibtex.mo +share/locale/zh_TW/LC_MESSAGES/kbibtex.mo +share/metainfo/org.kde.kbibtex.appdata.xml share/mime/packages/bibliography.xml diff --git a/databases/mariadb103-server/pkg-descr b/databases/mariadb103-server/pkg-descr index 31c3ca1ce89..874d96eeaa9 100644 --- a/databases/mariadb103-server/pkg-descr +++ b/databases/mariadb103-server/pkg-descr @@ -11,4 +11,4 @@ this is not the whole story about MariaDB. On the "About MariaDB" page you will find more information about all participants in the MariaDB community, including storage engines XtraDB and PBXT. -WWW: http://mariadb.org/ +WWW: https://mariadb.org/ diff --git a/databases/p5-Amazon-SimpleDB/Makefile b/databases/p5-Amazon-SimpleDB/Makefile index 0dae6394c14..3fe72d11d21 100644 --- a/databases/p5-Amazon-SimpleDB/Makefile +++ b/databases/p5-Amazon-SimpleDB/Makefile @@ -14,11 +14,11 @@ COMMENT= Low-level perlish interface for working with Amazon SimpleDB service LICENSE= ART10 -BUILD_DEPENDS= p5-Digest-HMAC>=0:security/p5-Digest-HMAC \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Digest-HMAC>=0:security/p5-Digest-HMAC \ p5-URI>=0:net/p5-URI \ p5-XML-Simple>=0:textproc/p5-XML-Simple \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USE_PERL5= configure diff --git a/databases/p5-AnyEvent-BDB/Makefile b/databases/p5-AnyEvent-BDB/Makefile index 02343c1a657..d4645c8c365 100644 --- a/databases/p5-AnyEvent-BDB/Makefile +++ b/databases/p5-AnyEvent-BDB/Makefile @@ -14,9 +14,9 @@ COMMENT= Truly asynchronous Berkeley DB access LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-AnyEvent>=3.81:devel/p5-AnyEvent \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-AnyEvent>=3.81:devel/p5-AnyEvent \ p5-BDB>=1.5:databases/p5-BDB -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USE_PERL5= configure diff --git a/databases/p5-AnyEvent-Redis/Makefile b/databases/p5-AnyEvent-Redis/Makefile index 0c2c8c29051..f42f1b7a5ff 100644 --- a/databases/p5-AnyEvent-Redis/Makefile +++ b/databases/p5-AnyEvent-Redis/Makefile @@ -12,9 +12,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= AnyEvent::Redis - Non-blocking Redis client -BUILD_DEPENDS= p5-Try-Tiny>=0:lang/p5-Try-Tiny \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Try-Tiny>=0:lang/p5-Try-Tiny \ p5-AnyEvent>=0:devel/p5-AnyEvent -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Simple>=0.88:devel/p5-Test-Simple \ p5-Test-TCP>=1.03:devel/p5-Test-TCP \ redis>=0:databases/redis diff --git a/databases/p5-App-Sqitch/Makefile b/databases/p5-App-Sqitch/Makefile index 842c88e98f3..c423e901db8 100644 --- a/databases/p5-App-Sqitch/Makefile +++ b/databases/p5-App-Sqitch/Makefile @@ -18,7 +18,8 @@ TEST_DEPENDS= p5-Capture-Tiny>=0:devel/p5-Capture-Tiny \ p5-Test-Dir>=0:misc/p5-Test-Dir \ p5-Test-File-Contents>=0:devel/p5-Test-File-Contents \ p5-Test-MockModule>=0:devel/p5-Test-MockModule -BUILD_DEPENDS= p5-Clone>=0:devel/p5-Clone \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Clone>=0:devel/p5-Clone \ p5-Config-GitLike>=1.11:devel/p5-Config-GitLike \ p5-DBI>=0:databases/p5-DBI \ p5-DateTime>=0:devel/p5-DateTime \ @@ -47,7 +48,6 @@ BUILD_DEPENDS= p5-Clone>=0:devel/p5-Clone \ p5-URI-db>=0.15:net/p5-URI-db \ p5-namespace-autoclean>=0.16:devel/p5-namespace-autoclean -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= gettext perl5 USE_PERL5= modbuild diff --git a/databases/p5-BDB/Makefile b/databases/p5-BDB/Makefile index 6b3ef9d7ec8..601d8b9a93c 100644 --- a/databases/p5-BDB/Makefile +++ b/databases/p5-BDB/Makefile @@ -14,8 +14,8 @@ COMMENT= Asynchronous Berkeley DB access LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-common-sense>=0:devel/p5-common-sense -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-common-sense>=0:devel/p5-common-sense PORTSCOUT= skipv:1.801 diff --git a/databases/p5-BSON/Makefile b/databases/p5-BSON/Makefile index 6ebd19d142f..fc0d5c71e2c 100644 --- a/databases/p5-BSON/Makefile +++ b/databases/p5-BSON/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= BSON -PORTVERSION= 1.8.0 +PORTVERSION= 1.8.1 DISTVERSIONPREFIX= v CATEGORIES= databases perl5 MASTER_SITES= CPAN @@ -30,4 +30,10 @@ USE_PERL5= configure NO_ARCH= yes -.include +.include + +.if ${PERL_LEVEL} < 502708 +TEST_DEPENDS+= p5-JSON-PP>=2.97001:converters/p5-JSON-PP +.endif + +.include diff --git a/databases/p5-BSON/distinfo b/databases/p5-BSON/distinfo index f46416c6276..3a6eb4adedf 100644 --- a/databases/p5-BSON/distinfo +++ b/databases/p5-BSON/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1536860568 -SHA256 (BSON-v1.8.0.tar.gz) = 0523443b882264387dca6bb3a4ccedac41d3e7a620ae0aa0d5e64f739e9d35c7 -SIZE (BSON-v1.8.0.tar.gz) = 113638 +TIMESTAMP = 1538591572 +SHA256 (BSON-v1.8.1.tar.gz) = 26e5b76cf29755fd8fe42d1c1dae6462de1797ee7818dec4f5c377eb9ff9c88d +SIZE (BSON-v1.8.1.tar.gz) = 113705 diff --git a/databases/p5-Bucardo/Makefile b/databases/p5-Bucardo/Makefile index d48395b464e..bbfe5ebc400 100644 --- a/databases/p5-Bucardo/Makefile +++ b/databases/p5-Bucardo/Makefile @@ -13,12 +13,12 @@ COMMENT= Asynchronous PostgreSQL replication system LICENSE= BSD2CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-DBI>=1.51:databases/p5-DBI \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-DBI>=1.51:databases/p5-DBI \ p5-DBD-Pg>=2.0:databases/p5-DBD-Pg \ p5-Encode-Locale>=0:converters/p5-Encode-Locale \ p5-boolean>=0:devel/p5-boolean \ p5-DBIx-Safe>=1.2.4:databases/p5-DBIx-Safe -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/databases/p5-CDB_File-Generator/Makefile b/databases/p5-CDB_File-Generator/Makefile index c0f92310871..0c2e09f33c2 100644 --- a/databases/p5-CDB_File-Generator/Makefile +++ b/databases/p5-CDB_File-Generator/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Generate massive sorted CDB files simply -BUILD_DEPENDS= cdbmake:databases/cdb \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= cdbmake:databases/cdb \ p5-CDB_File>=0:databases/p5-CDB_File -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/databases/p5-Cache-BDB/Makefile b/databases/p5-Cache-BDB/Makefile index 9ec2f46ee99..120373103ae 100644 --- a/databases/p5-Cache-BDB/Makefile +++ b/databases/p5-Cache-BDB/Makefile @@ -14,8 +14,8 @@ COMMENT= Object caching wrapper around BerkeleyDB LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-BerkeleyDB>=0:databases/p5-BerkeleyDB -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-BerkeleyDB>=0:databases/p5-BerkeleyDB NO_ARCH= yes USE_PERL5= configure diff --git a/databases/p5-Cache-Memcached-Managed/Makefile b/databases/p5-Cache-Memcached-Managed/Makefile index 8a9459b13fb..02b25a42c96 100644 --- a/databases/p5-Cache-Memcached-Managed/Makefile +++ b/databases/p5-Cache-Memcached-Managed/Makefile @@ -14,8 +14,8 @@ COMMENT= Provide API for managing cached information LICENSE= GPLv2 GPLv3 LICENSE_COMB= dual -BUILD_DEPENDS= p5-Cache-Memcached>=0:databases/p5-Cache-Memcached -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Cache-Memcached>=0:databases/p5-Cache-Memcached TEST_DEPENDS= memcached:databases/memcached USES= perl5 diff --git a/databases/p5-Cache-Memcached-libmemcached/Makefile b/databases/p5-Cache-Memcached-libmemcached/Makefile index 73393352fc0..87bd0b29fc1 100644 --- a/databases/p5-Cache-Memcached-libmemcached/Makefile +++ b/databases/p5-Cache-Memcached-libmemcached/Makefile @@ -12,9 +12,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= dliakh@ukr.net COMMENT= Cache::Memcached compatible interface to libmemcached -BUILD_DEPENDS= p5-Memcached-libmemcached>=0.42.01:databases/p5-Memcached-libmemcached \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Memcached-libmemcached>=0.42.01:databases/p5-Memcached-libmemcached \ p5-Task-Weaken>=0:devel/p5-Task-Weaken -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/databases/p5-Class-DBI-AsForm/Makefile b/databases/p5-Class-DBI-AsForm/Makefile index 0aa466c5f3d..4f389d10269 100644 --- a/databases/p5-Class-DBI-AsForm/Makefile +++ b/databases/p5-Class-DBI-AsForm/Makefile @@ -11,10 +11,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Produce HTML form elements for database columns -BUILD_DEPENDS= p5-Class-DBI>=0:databases/p5-Class-DBI \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-DBI>=0:databases/p5-Class-DBI \ p5-HTML-Tree>=0:www/p5-HTML-Tree \ p5-Class-DBI-Plugin-Type>=0:databases/p5-Class-DBI-Plugin-Type -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/databases/p5-Class-DBI-AutoLoader/Makefile b/databases/p5-Class-DBI-AutoLoader/Makefile index 54fbeb328fe..cfba66d7a81 100644 --- a/databases/p5-Class-DBI-AutoLoader/Makefile +++ b/databases/p5-Class-DBI-AutoLoader/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Generates Class::DBI subclasses dynamically -BUILD_DEPENDS= p5-Class-DBI>=0:databases/p5-Class-DBI \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-DBI>=0:databases/p5-Class-DBI \ p5-Class-DBI-BaseDSN>=0:databases/p5-Class-DBI-BaseDSN -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/databases/p5-Class-DBI-DDL/Makefile b/databases/p5-Class-DBI-DDL/Makefile index 04d1616c439..b576cc66420 100644 --- a/databases/p5-Class-DBI-DDL/Makefile +++ b/databases/p5-Class-DBI-DDL/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= DDL for Class-DBI -BUILD_DEPENDS= p5-Class-DBI>=0:databases/p5-Class-DBI -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-DBI>=0:databases/p5-Class-DBI TEST_DEPENDS= p5-DBD-SQLite>=0:databases/p5-DBD-SQLite USES= perl5 diff --git a/databases/p5-Class-DBI-LazyInflate/Makefile b/databases/p5-Class-DBI-LazyInflate/Makefile index a6123c85b98..380ab13b6c1 100644 --- a/databases/p5-Class-DBI-LazyInflate/Makefile +++ b/databases/p5-Class-DBI-LazyInflate/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Defer inflating of columns until they are used -BUILD_DEPENDS= p5-Data-Lazy>=0:devel/p5-Data-Lazy \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Data-Lazy>=0:devel/p5-Data-Lazy \ p5-Class-DBI>=0:databases/p5-Class-DBI -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/databases/p5-Class-DBI-Loader-Relationship/Makefile b/databases/p5-Class-DBI-Loader-Relationship/Makefile index 7a6b4b699b6..95e241ea6e0 100644 --- a/databases/p5-Class-DBI-Loader-Relationship/Makefile +++ b/databases/p5-Class-DBI-Loader-Relationship/Makefile @@ -12,9 +12,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Easier relationship specification in CDBI::L -BUILD_DEPENDS= p5-Class-DBI-Loader>=0:databases/p5-Class-DBI-Loader \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-DBI-Loader>=0:databases/p5-Class-DBI-Loader \ p5-Lingua-EN-Inflect-Number>=0:textproc/p5-Lingua-EN-Inflect-Number -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/databases/p5-Class-DBI-Oracle/Makefile b/databases/p5-Class-DBI-Oracle/Makefile index 946c72146dc..68caac4221e 100644 --- a/databases/p5-Class-DBI-Oracle/Makefile +++ b/databases/p5-Class-DBI-Oracle/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Extensions to Class::DBI for Oracle -BUILD_DEPENDS= p5-Class-DBI>=0:databases/p5-Class-DBI -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-DBI>=0:databases/p5-Class-DBI USES= perl5 USE_PERL5= configure diff --git a/databases/p5-Class-DBI-Pg/Makefile b/databases/p5-Class-DBI-Pg/Makefile index 56a81110245..134fdf6ab1b 100644 --- a/databases/p5-Class-DBI-Pg/Makefile +++ b/databases/p5-Class-DBI-Pg/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Extensions to Class::DBI for PostgreSQL -BUILD_DEPENDS= p5-Class-DBI>=0:databases/p5-Class-DBI \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-DBI>=0:databases/p5-Class-DBI \ p5-DBD-Pg>=0:databases/p5-DBD-Pg -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= modbuild diff --git a/databases/p5-Class-DBI-Plugin-AbstractCount/Makefile b/databases/p5-Class-DBI-Plugin-AbstractCount/Makefile index 4e237ba7f9f..5a94f5ecdf3 100644 --- a/databases/p5-Class-DBI-Plugin-AbstractCount/Makefile +++ b/databases/p5-Class-DBI-Plugin-AbstractCount/Makefile @@ -11,10 +11,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Get COUNT(*) results with abstract SQL -BUILD_DEPENDS= p5-Class-DBI-Plugin>=0.02:databases/p5-Class-DBI-Plugin \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-DBI-Plugin>=0.02:databases/p5-Class-DBI-Plugin \ p5-Class-DBI>=0.95:databases/p5-Class-DBI \ p5-SQL-Abstract>=1.50:databases/p5-SQL-Abstract -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/databases/p5-Class-DBI-Plugin-DeepAbstractSearch/Makefile b/databases/p5-Class-DBI-Plugin-DeepAbstractSearch/Makefile index 45ad122c0e1..45bb9ef2f94 100644 --- a/databases/p5-Class-DBI-Plugin-DeepAbstractSearch/Makefile +++ b/databases/p5-Class-DBI-Plugin-DeepAbstractSearch/Makefile @@ -15,10 +15,10 @@ COMMENT= Provides deep_search_where() for Class::DBI LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Class-DBI>=0.96:databases/p5-Class-DBI \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-DBI>=0.96:databases/p5-Class-DBI \ p5-Class-DBI-Plugin>=0.02:databases/p5-Class-DBI-Plugin \ p5-SQL-Abstract>=1.18:databases/p5-SQL-Abstract -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-DBD-SQLite>=0:databases/p5-DBD-SQLite diff --git a/databases/p5-Class-DBI-Plugin-Pager/Makefile b/databases/p5-Class-DBI-Plugin-Pager/Makefile index f6ad4c47682..8a30e559761 100644 --- a/databases/p5-Class-DBI-Plugin-Pager/Makefile +++ b/databases/p5-Class-DBI-Plugin-Pager/Makefile @@ -10,12 +10,12 @@ PKGNAMEPREFIX= p5- MAINTAINER= kuriyama@FreeBSD.org COMMENT= Perl extension to paged queries for CDBI -BUILD_DEPENDS= p5-Class-DBI>=0:databases/p5-Class-DBI \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-DBI>=0:databases/p5-Class-DBI \ p5-SQL-Abstract>=1.61:databases/p5-SQL-Abstract \ p5-UNIVERSAL-require>=0:devel/p5-UNIVERSAL-require \ p5-Data-Page>=0:databases/p5-Data-Page \ p5-Class-DBI-Plugin-AbstractCount>=0:databases/p5-Class-DBI-Plugin-AbstractCount -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Text-Exception>0:devel/p5-Test-Exception USES= perl5 diff --git a/databases/p5-Class-DBI-Plugin-RetrieveAll/Makefile b/databases/p5-Class-DBI-Plugin-RetrieveAll/Makefile index cfeb38bfade..f5cf13495ca 100644 --- a/databases/p5-Class-DBI-Plugin-RetrieveAll/Makefile +++ b/databases/p5-Class-DBI-Plugin-RetrieveAll/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= More complex retrieve_all() for Class::DBI -BUILD_DEPENDS= p5-Class-DBI>=0:databases/p5-Class-DBI -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-DBI>=0:databases/p5-Class-DBI TEST_DEPENDS= p5-DBD-SQLite>=0:databases/p5-DBD-SQLite USES= perl5 diff --git a/databases/p5-Class-DBI-Plugin-Type/Makefile b/databases/p5-Class-DBI-Plugin-Type/Makefile index 5342c68ceb7..61c8fcf0cd5 100644 --- a/databases/p5-Class-DBI-Plugin-Type/Makefile +++ b/databases/p5-Class-DBI-Plugin-Type/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Determine type information for columns -BUILD_DEPENDS= p5-Class-DBI>=0:databases/p5-Class-DBI -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-DBI>=0:databases/p5-Class-DBI TEST_DEPENDS= p5-DBD-SQLite>=0:databases/p5-DBD-SQLite USES= perl5 diff --git a/databases/p5-Class-DBI-Plugin/Makefile b/databases/p5-Class-DBI-Plugin/Makefile index 4846eeb3ceb..4c6c2c5d948 100644 --- a/databases/p5-Class-DBI-Plugin/Makefile +++ b/databases/p5-Class-DBI-Plugin/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Abstract base class for Class::DBI plugins -BUILD_DEPENDS= p5-Class-DBI>=0:databases/p5-Class-DBI -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-DBI>=0:databases/p5-Class-DBI USES= perl5 USE_PERL5= configure diff --git a/databases/p5-Class-DBI-Replication/Makefile b/databases/p5-Class-DBI-Replication/Makefile index d23bf9c062a..09b870231f1 100644 --- a/databases/p5-Class-DBI-Replication/Makefile +++ b/databases/p5-Class-DBI-Replication/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Class::DBI for replicated database -BUILD_DEPENDS= p5-Class-DBI>=0:databases/p5-Class-DBI -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-DBI>=0:databases/p5-Class-DBI USES= perl5 USE_PERL5= configure diff --git a/databases/p5-Class-DBI-Sweet/Makefile b/databases/p5-Class-DBI-Sweet/Makefile index 4a057f6fb14..05904de01ba 100644 --- a/databases/p5-Class-DBI-Sweet/Makefile +++ b/databases/p5-Class-DBI-Sweet/Makefile @@ -11,11 +11,11 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Extra sweet features for Class::DBI -BUILD_DEPENDS= p5-Class-DBI>=3.0.12:databases/p5-Class-DBI \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-DBI>=3.0.12:databases/p5-Class-DBI \ p5-DBI>=0:databases/p5-DBI \ p5-Data-Page>=0:databases/p5-Data-Page \ p5-SQL-Abstract>=1.55:databases/p5-SQL-Abstract -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= modbuild diff --git a/databases/p5-Class-DBI-Untaint/Makefile b/databases/p5-Class-DBI-Untaint/Makefile index 0088d8e9a82..9b68598586f 100644 --- a/databases/p5-Class-DBI-Untaint/Makefile +++ b/databases/p5-Class-DBI-Untaint/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Class::DBI constraints using CGI::Untaint -BUILD_DEPENDS= p5-Class-DBI>=0:databases/p5-Class-DBI \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-DBI>=0:databases/p5-Class-DBI \ p5-CGI-Untaint>=0:www/p5-CGI-Untaint -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-DBD-SQLite>=0:databases/p5-DBD-SQLite USES= perl5 diff --git a/databases/p5-Class-DBI-mysql/Makefile b/databases/p5-Class-DBI-mysql/Makefile index 8d4b312360b..be21845ce3e 100644 --- a/databases/p5-Class-DBI-mysql/Makefile +++ b/databases/p5-Class-DBI-mysql/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Extensions to Class::DBI for MySQL -BUILD_DEPENDS= p5-Class-DBI>=0:databases/p5-Class-DBI \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-DBI>=0:databases/p5-Class-DBI \ p5-DBD-mysql>=0:databases/p5-DBD-mysql -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/databases/p5-Class-DBI/Makefile b/databases/p5-Class-DBI/Makefile index 23633bc6cd5..0c859aafbb4 100644 --- a/databases/p5-Class-DBI/Makefile +++ b/databases/p5-Class-DBI/Makefile @@ -15,13 +15,13 @@ COMMENT= Simple Database Abstraction LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Class-Accessor>=0:devel/p5-Class-Accessor \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Accessor>=0:devel/p5-Class-Accessor \ p5-Class-Data-Inheritable>=0:devel/p5-Class-Data-Inheritable \ p5-Class-Trigger>=0:devel/p5-Class-Trigger \ p5-Clone>=0:devel/p5-Clone \ p5-Ima-DBI>=0:databases/p5-Ima-DBI \ p5-UNIVERSAL-moniker>=0:devel/p5-UNIVERSAL-moniker -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-DBD-SQLite>=0:databases/p5-DBD-SQLite NO_ARCH= yes diff --git a/databases/p5-CouchDB-View/Makefile b/databases/p5-CouchDB-View/Makefile index 7c549a66fd1..d3767e59b49 100644 --- a/databases/p5-CouchDB-View/Makefile +++ b/databases/p5-CouchDB-View/Makefile @@ -14,11 +14,11 @@ COMMENT= Handle and create CouchDB views in Perl LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Data-Dump-Streamer>=0:devel/p5-Data-Dump-Streamer \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Data-Dump-Streamer>=0:devel/p5-Data-Dump-Streamer \ p5-JSON-XS>=0:converters/p5-JSON-XS \ p5-PadWalker>=0:devel/p5-PadWalker \ p5-URI>=0:net/p5-URI -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Deep>=0:devel/p5-Test-Deep NO_ARCH= yes diff --git a/databases/p5-DBD-AnyData/Makefile b/databases/p5-DBD-AnyData/Makefile index 95637c054d7..c1804e7c589 100644 --- a/databases/p5-DBD-AnyData/Makefile +++ b/databases/p5-DBD-AnyData/Makefile @@ -11,10 +11,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= DBI access to XML, CSV, and other formats -BUILD_DEPENDS= p5-AnyData>=0.07:devel/p5-AnyData \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-AnyData>=0.07:devel/p5-AnyData \ p5-DBI>1:databases/p5-DBI \ p5-SQL-Statement>1:databases/p5-SQL-Statement -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/databases/p5-DBD-CSV/Makefile b/databases/p5-DBD-CSV/Makefile index fd5747120e1..9e8c7d3b911 100644 --- a/databases/p5-DBD-CSV/Makefile +++ b/databases/p5-DBD-CSV/Makefile @@ -13,10 +13,10 @@ COMMENT= DBI driver for CSV files LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-DBI>=1.636:databases/p5-DBI \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-DBI>=1.636:databases/p5-DBI \ p5-SQL-Statement>=1.410:databases/p5-SQL-Statement \ p5-Text-CSV_XS>=1.23:textproc/p5-Text-CSV_XS -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 tar:tgz USE_PERL5= configure diff --git a/databases/p5-DBD-Excel/Makefile b/databases/p5-DBD-Excel/Makefile index bcb0ee5d35f..31b1cbb9d20 100644 --- a/databases/p5-DBD-Excel/Makefile +++ b/databases/p5-DBD-Excel/Makefile @@ -11,11 +11,11 @@ PKGNAMEPREFIX= p5- MAINTAINER= skreuzer@FreeBSD.org COMMENT= Class for DBI drivers that acts on Excel files -BUILD_DEPENDS= p5-SQL-Statement>=0:databases/p5-SQL-Statement \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-SQL-Statement>=0:databases/p5-SQL-Statement \ p5-Spreadsheet-ParseExcel>=0:textproc/p5-Spreadsheet-ParseExcel \ p5-Spreadsheet-WriteExcel>=0:textproc/p5-Spreadsheet-WriteExcel \ p5-DBI>=0:databases/p5-DBI -RUN_DEPENDS:= ${BUILD_DEPENDS} EXAMPLESDIR?= ${PREFIX}/share/examples/${PORTNAME} USES= perl5 diff --git a/databases/p5-DBD-Google/Makefile b/databases/p5-DBD-Google/Makefile index f2db29d1d54..d44339df32d 100644 --- a/databases/p5-DBD-Google/Makefile +++ b/databases/p5-DBD-Google/Makefile @@ -11,12 +11,12 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Treat Google as a datasource for DBI -BUILD_DEPENDS= p5-Net-Google>=0:net/p5-Net-Google \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Net-Google>=0:net/p5-Net-Google \ p5-URI>=0:net/p5-URI \ p5-HTML-Parser>=0:www/p5-HTML-Parser \ p5-SQL-Statement>=0:databases/p5-SQL-Statement \ p5-DBI>=0:databases/p5-DBI -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/databases/p5-DBD-InterBase/Makefile b/databases/p5-DBD-InterBase/Makefile index fdd4b6ec2b1..1ed0122c570 100644 --- a/databases/p5-DBD-InterBase/Makefile +++ b/databases/p5-DBD-InterBase/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= yuri@rivera.ru COMMENT= DBI driver for InterBase/Firebird/Yaffil RDBMS server -BUILD_DEPENDS= p5-DBI>=0:databases/p5-DBI -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-DBI>=0:databases/p5-DBI USES= perl5 firebird USE_PERL5= patch configure diff --git a/databases/p5-DBD-LDAP/Makefile b/databases/p5-DBD-LDAP/Makefile index 03c121194fc..d18beae27b2 100644 --- a/databases/p5-DBD-LDAP/Makefile +++ b/databases/p5-DBD-LDAP/Makefile @@ -13,9 +13,9 @@ COMMENT= DBI interface for accessing LDAP servers LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-perl-ldap>=0.01:net/p5-perl-ldap \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-perl-ldap>=0.01:net/p5-perl-ldap \ p5-DBI>=0:databases/p5-DBI -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/databases/p5-DBD-Mock/Makefile b/databases/p5-DBD-Mock/Makefile index e94f8eb9e0c..0fbc8018752 100644 --- a/databases/p5-DBD-Mock/Makefile +++ b/databases/p5-DBD-Mock/Makefile @@ -11,10 +11,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= culot@FreeBSD.org COMMENT= Simple mock DBD implementation used for testing -BUILD_DEPENDS= p5-DBI>=1.3:databases/p5-DBI \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-DBI>=1.3:databases/p5-DBI \ p5-Test-Exception>=0.31:devel/p5-Test-Exception \ p5-Test-Simple>=0.47:devel/p5-Test-Simple -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/databases/p5-DBD-Multi/Makefile b/databases/p5-DBD-Multi/Makefile index c4c5fe4e954..65cc95298a0 100644 --- a/databases/p5-DBD-Multi/Makefile +++ b/databases/p5-DBD-Multi/Makefile @@ -14,10 +14,10 @@ COMMENT= Manage Multiple Data Sources with Failover and Load Balancing LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Class-Accessor>=0.19:devel/p5-Class-Accessor \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Accessor>=0.19:devel/p5-Class-Accessor \ p5-DBI>=0:databases/p5-DBI \ p5-Sys-SigAction>=0.10:devel/p5-Sys-SigAction -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-DBD-SQLite>=1.09:databases/p5-DBD-SQLite \ p5-Pod-Simple>=0:textproc/p5-Pod-Simple \ diff --git a/databases/p5-DBD-ODBC/Makefile b/databases/p5-DBD-ODBC/Makefile index e955327d900..28911500222 100644 --- a/databases/p5-DBD-ODBC/Makefile +++ b/databases/p5-DBD-ODBC/Makefile @@ -13,8 +13,8 @@ COMMENT= DBD module interfacing the ODBC databases LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-DBI>=1.609:databases/p5-DBI -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-DBI>=1.609:databases/p5-DBI LIB_DEPENDS= libodbc.so:databases/unixODBC OPTIONS_DEFINE= DOCS diff --git a/databases/p5-DBD-Pg/Makefile b/databases/p5-DBD-Pg/Makefile index 47068005c53..7102eca7270 100644 --- a/databases/p5-DBD-Pg/Makefile +++ b/databases/p5-DBD-Pg/Makefile @@ -12,8 +12,8 @@ COMMENT= Provides access to PostgreSQL databases through the DBI LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-DBI>=1.614:databases/p5-DBI -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-DBI>=1.614:databases/p5-DBI USES= perl5 pgsql USE_PERL5= configure diff --git a/databases/p5-DBD-Sybase/Makefile b/databases/p5-DBD-Sybase/Makefile index 443e3a38881..55741ebba62 100644 --- a/databases/p5-DBD-Sybase/Makefile +++ b/databases/p5-DBD-Sybase/Makefile @@ -13,9 +13,9 @@ COMMENT= Sybase DBI driver for Perl 5 LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-DBI>=0:databases/p5-DBI +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-DBI>=0:databases/p5-DBI LIB_DEPENDS= libct.so:databases/freetds -RUN_DEPENDS:= ${BUILD_DEPENDS} CONFIGURE_ENV= SYBASE=${LOCALBASE} USES= gettext perl5 diff --git a/databases/p5-DBD-mysql/Makefile b/databases/p5-DBD-mysql/Makefile index 52b14ce714c..574134a7950 100644 --- a/databases/p5-DBD-mysql/Makefile +++ b/databases/p5-DBD-mysql/Makefile @@ -26,8 +26,7 @@ USES= mysql perl5 USE_PERL5= configure OPTIONS_DEFINE= SSL -SSL_BUILD_DEPENDS= p5-Crypt-SSLeay>=0:security/p5-Crypt-SSLeay -SSL_RUN_DEPENDS= ${SSL_BUILD_DEPENDS} +SSL_RUN_DEPENDS= p5-Crypt-SSLeay>=0:security/p5-Crypt-SSLeay SSL_CONFIGURE_OFF= --nossl SSL_CONFIGURE_ON= --ssl SSL_USES= ssl diff --git a/databases/p5-DBICx-Sugar/Makefile b/databases/p5-DBICx-Sugar/Makefile index d71a99a83cb..bbe72ff85b1 100644 --- a/databases/p5-DBICx-Sugar/Makefile +++ b/databases/p5-DBICx-Sugar/Makefile @@ -14,9 +14,9 @@ COMMENT= Just some syntax sugar for DBIx::Class LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-DBIx-Class>=0:databases/p5-DBIx-Class \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-DBIx-Class>=0:databases/p5-DBIx-Class \ p5-SQL-Translator>=0:databases/p5-SQL-Translator -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Modern>=0:devel/p5-Test-Modern \ p5-Test-Requires>=0:devel/p5-Test-Requires \ p5-DBD-SQLite>=0:databases/p5-DBD-SQLite \ diff --git a/databases/p5-DBICx-TestDatabase/Makefile b/databases/p5-DBICx-TestDatabase/Makefile index 8c0faf31ab4..25e7d3f61fa 100644 --- a/databases/p5-DBICx-TestDatabase/Makefile +++ b/databases/p5-DBICx-TestDatabase/Makefile @@ -15,9 +15,9 @@ COMMENT= Module to create temporary database from a DBIx::Class::Schema LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-DBD-SQLite>=1.29:databases/p5-DBD-SQLite \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-DBD-SQLite>=1.29:databases/p5-DBD-SQLite \ p5-SQL-Translator>=0:databases/p5-SQL-Translator -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-DBIx-Class>=0.07005:databases/p5-DBIx-Class NO_ARCH= yes diff --git a/databases/p5-DBICx-TxnInsert/Makefile b/databases/p5-DBICx-TxnInsert/Makefile index 5e8b0f4cad0..143c91222c6 100644 --- a/databases/p5-DBICx-TxnInsert/Makefile +++ b/databases/p5-DBICx-TxnInsert/Makefile @@ -12,9 +12,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Wrap all inserts into transaction -BUILD_DEPENDS= p5-DBIx-Class>=0:databases/p5-DBIx-Class \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-DBIx-Class>=0:databases/p5-DBIx-Class \ p5-DBD-Mock>=0:databases/p5-DBD-Mock -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Compile>=0.08:devel/p5-Test-Compile \ p5-Test-Pod>=1.22:devel/p5-Test-Pod diff --git a/databases/p5-DBIWrapper/Makefile b/databases/p5-DBIWrapper/Makefile index fc28e79b253..a9340770053 100644 --- a/databases/p5-DBIWrapper/Makefile +++ b/databases/p5-DBIWrapper/Makefile @@ -14,13 +14,13 @@ COMMENT= Perl extension for generic DBI database access LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-DBI>=0:databases/p5-DBI \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-DBI>=0:databases/p5-DBI \ p5-DateTime-HiRes>=0:devel/p5-DateTime-HiRes \ p5-IO-stringy>=0:devel/p5-IO-stringy \ p5-Spreadsheet-WriteExcel>=0:textproc/p5-Spreadsheet-WriteExcel \ p5-XML-LibXML>=0:textproc/p5-XML-LibXML \ p5-XML-SAX>=0:textproc/p5-XML-SAX -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-DBD-Pg>=0:databases/p5-DBD-Pg \ p5-DateTime>=0:devel/p5-DateTime diff --git a/databases/p5-DBIx-Admin-CreateTable/Makefile b/databases/p5-DBIx-Admin-CreateTable/Makefile index 1cbe979ffd3..200bd307108 100644 --- a/databases/p5-DBIx-Admin-CreateTable/Makefile +++ b/databases/p5-DBIx-Admin-CreateTable/Makefile @@ -13,9 +13,9 @@ COMMENT= Create and drop tables, primary indexes, and sequences LICENSE= ART20 -BUILD_DEPENDS= p5-DBI>=0:databases/p5-DBI \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-DBI>=0:databases/p5-DBI \ p5-Moo>=1.004002:devel/p5-Moo -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Version>=1.002003:devel/p5-Test-Version NO_ARCH= yes diff --git a/databases/p5-DBIx-Admin-DSNManager/Makefile b/databases/p5-DBIx-Admin-DSNManager/Makefile index a4ba46c4bfe..f01ad330237 100644 --- a/databases/p5-DBIx-Admin-DSNManager/Makefile +++ b/databases/p5-DBIx-Admin-DSNManager/Makefile @@ -13,11 +13,11 @@ COMMENT= Manage a file of DSNs, for both testing and production LICENSE= ART20 -BUILD_DEPENDS= p5-Config-Tiny>=2.12:devel/p5-Config-Tiny \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Config-Tiny>=2.12:devel/p5-Config-Tiny \ p5-DBI>=0:databases/p5-DBI \ p5-File-Slurp>=9999.13:devel/p5-File-Slurp \ p5-Moo>=1.004002:devel/p5-Moo -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Version>=1.002003:devel/p5-Test-Version \ p5-Try-Tiny>=0.06:lang/p5-Try-Tiny diff --git a/databases/p5-DBIx-Admin-TableInfo/Makefile b/databases/p5-DBIx-Admin-TableInfo/Makefile index 0329521f086..21e2695ef97 100644 --- a/databases/p5-DBIx-Admin-TableInfo/Makefile +++ b/databases/p5-DBIx-Admin-TableInfo/Makefile @@ -14,14 +14,14 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-DBI>=0:databases/p5-DBI \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-DBI>=0:databases/p5-DBI \ p5-DBIx-Admin-CreateTable>=2.10:databases/p5-DBIx-Admin-CreateTable \ p5-DBIx-Admin-DSNManager>=2.01:databases/p5-DBIx-Admin-DSNManager \ p5-Data-Dumper-Concise>=2.022:devel/p5-Data-Dumper-Concise \ p5-Lingua-EN-PluralToSingular>=0.18:textproc/p5-Lingua-EN-PluralToSingular \ p5-Moo>=2.002004:devel/p5-Moo \ p5-Text-Table-Manifold>=1:textproc/p5-Text-Table-Manifold -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USE_PERL5= configure diff --git a/databases/p5-DBIx-AnyDBD/Makefile b/databases/p5-DBIx-AnyDBD/Makefile index 83c1c41cc40..a25ab2c06e3 100644 --- a/databases/p5-DBIx-AnyDBD/Makefile +++ b/databases/p5-DBIx-AnyDBD/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= DBD independent class -BUILD_DEPENDS= p5-DBI>=0:databases/p5-DBI -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-DBI>=0:databases/p5-DBI USES= perl5 USE_PERL5= configure diff --git a/databases/p5-DBIx-Class-Candy/Makefile b/databases/p5-DBIx-Class-Candy/Makefile index d61676fd734..23565ef276a 100644 --- a/databases/p5-DBIx-Class-Candy/Makefile +++ b/databases/p5-DBIx-Class-Candy/Makefile @@ -14,9 +14,9 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-DBIx-Class>=0.08123:databases/p5-DBIx-Class \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-DBIx-Class>=0.08123:databases/p5-DBIx-Class \ p5-Lingua-EN-Inflect>=0:textproc/p5-Lingua-EN-Inflect -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Deep>=0:devel/p5-Test-Deep \ p5-Test-Fatal>=0:devel/p5-Test-Fatal diff --git a/databases/p5-DBIx-Class-Cursor-Cached/Makefile b/databases/p5-DBIx-Class-Cursor-Cached/Makefile index 3367000b918..a678e79b561 100644 --- a/databases/p5-DBIx-Class-Cursor-Cached/Makefile +++ b/databases/p5-DBIx-Class-Cursor-Cached/Makefile @@ -13,9 +13,9 @@ COMMENT= Cursor class with built-in caching support LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Carp-Clan>=6.0:devel/p5-Carp-Clan \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Carp-Clan>=6.0:devel/p5-Carp-Clan \ p5-DBIx-Class>=0.08124:databases/p5-DBIx-Class -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Cache-Cache>=0:devel/p5-Cache-Cache \ p5-DBD-SQLite>=0:databases/p5-DBD-SQLite diff --git a/databases/p5-DBIx-Class-DateTime-Epoch/Makefile b/databases/p5-DBIx-Class-DateTime-Epoch/Makefile index 7e9ffb3058b..74e2ab493e8 100644 --- a/databases/p5-DBIx-Class-DateTime-Epoch/Makefile +++ b/databases/p5-DBIx-Class-DateTime-Epoch/Makefile @@ -14,10 +14,10 @@ COMMENT= Automatic inflation/deflation of epoch-based DateTime objects LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-DateTime>=0:devel/p5-DateTime \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-DateTime>=0:devel/p5-DateTime \ p5-DBIx-Class>=0.08103:databases/p5-DBIx-Class \ p5-DBIx-Class-TimeStamp>=0.07:databases/p5-DBIx-Class-TimeStamp -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-DBICx-TestDatabase>=0:databases/p5-DBICx-TestDatabase \ p5-DateTime-Format-SQLite>=0:devel/p5-DateTime-Format-SQLite diff --git a/databases/p5-DBIx-Class-DynamicDefault/Makefile b/databases/p5-DBIx-Class-DynamicDefault/Makefile index ee24629fa4a..1e9840f782b 100644 --- a/databases/p5-DBIx-Class-DynamicDefault/Makefile +++ b/databases/p5-DBIx-Class-DynamicDefault/Makefile @@ -14,8 +14,8 @@ COMMENT= Automatically set and update fields LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-DBIx-Class>=0.08127:databases/p5-DBIx-Class -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-DBIx-Class>=0.08127:databases/p5-DBIx-Class TEST_DEPENDS= p5-DBICx-TestDatabase>=0:databases/p5-DBICx-TestDatabase USES= perl5 diff --git a/databases/p5-DBIx-Class-EncodedColumn/Makefile b/databases/p5-DBIx-Class-EncodedColumn/Makefile index ba6abc97511..aef4a503f4b 100644 --- a/databases/p5-DBIx-Class-EncodedColumn/Makefile +++ b/databases/p5-DBIx-Class-EncodedColumn/Makefile @@ -13,10 +13,10 @@ COMMENT= Automatically encode columns LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-DBIx-Class>=0.06002:databases/p5-DBIx-Class \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-DBIx-Class>=0.06002:databases/p5-DBIx-Class \ p5-SQL-Translator>=0.09.003:databases/p5-SQL-Translator \ p5-Sub-Name>=0.04:devel/p5-Sub-Name -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-DBD-SQLite>=0:databases/p5-DBD-SQLite \ p5-Dir-Self>=0:devel/p5-Dir-Self \ p5-Test-Exception>=0:devel/p5-Test-Exception diff --git a/databases/p5-DBIx-Class-Loader/Makefile b/databases/p5-DBIx-Class-Loader/Makefile index 72faaea8f34..42a14a55261 100644 --- a/databases/p5-DBIx-Class-Loader/Makefile +++ b/databases/p5-DBIx-Class-Loader/Makefile @@ -11,11 +11,11 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Dynamic definition of DBIx::Class sub classes -BUILD_DEPENDS= p5-DBI>=1.3:databases/p5-DBI \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-DBI>=1.3:databases/p5-DBI \ p5-DBIx-Class>=0.04001:databases/p5-DBIx-Class \ p5-Lingua-EN-Inflect>=0:textproc/p5-Lingua-EN-Inflect \ p5-UNIVERSAL-require>=0.10:devel/p5-UNIVERSAL-require -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-DBD-SQLite>=0:databases/p5-DBD-SQLite USES= perl5 diff --git a/databases/p5-DBIx-Class-QueryLog/Makefile b/databases/p5-DBIx-Class-QueryLog/Makefile index 2605711fcb5..f067b6ff40d 100644 --- a/databases/p5-DBIx-Class-QueryLog/Makefile +++ b/databases/p5-DBIx-Class-QueryLog/Makefile @@ -15,10 +15,10 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-DBIx-Class>=0.070000:databases/p5-DBIx-Class \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-DBIx-Class>=0.070000:databases/p5-DBIx-Class \ p5-Moo>=2:devel/p5-Moo \ p5-Type-Tiny>=0:devel/p5-Type-Tiny -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/databases/p5-DBIx-Class-ResultSet-HashRef/Makefile b/databases/p5-DBIx-Class-ResultSet-HashRef/Makefile index a664c08ea1a..8ddbd1f74df 100644 --- a/databases/p5-DBIx-Class-ResultSet-HashRef/Makefile +++ b/databases/p5-DBIx-Class-ResultSet-HashRef/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Adds syntactic sugar to skip the fancy objects -BUILD_DEPENDS= p5-DBIx-Class>=0.04001:databases/p5-DBIx-Class -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-DBIx-Class>=0.04001:databases/p5-DBIx-Class TEST_DEPENDS= p5-DBD-SQLite>=0:databases/p5-DBD-SQLite \ p5-SQL-Translator>=0:databases/p5-SQL-Translator diff --git a/databases/p5-DBIx-Class-ResultSet-RecursiveUpdate/Makefile b/databases/p5-DBIx-Class-ResultSet-RecursiveUpdate/Makefile index 032807367d1..22aa332064f 100644 --- a/databases/p5-DBIx-Class-ResultSet-RecursiveUpdate/Makefile +++ b/databases/p5-DBIx-Class-ResultSet-RecursiveUpdate/Makefile @@ -14,7 +14,8 @@ COMMENT= Like update_or_create - but recursive LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Carp-Clan>=6.04:devel/p5-Carp-Clan \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Carp-Clan>=6.04:devel/p5-Carp-Clan \ p5-DBD-SQLite>=1.21:databases/p5-DBD-SQLite \ p5-DBIx-Class>=0.08103:databases/p5-DBIx-Class \ p5-DBIx-Class-IntrospectableM2M>=0:databases/p5-DBIx-Class-IntrospectableM2M \ @@ -22,7 +23,6 @@ BUILD_DEPENDS= p5-Carp-Clan>=6.04:devel/p5-Carp-Clan \ p5-List-MoreUtils>=0.22:lang/p5-List-MoreUtils \ p5-Readonly>=1.03:devel/p5-Readonly \ p5-SQL-Translator>=0.11016:databases/p5-SQL-Translator -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Moose>=0:devel/p5-Moose \ p5-MooseX-NonMoose>=0:devel/p5-MooseX-NonMoose \ p5-Test-Exception>=0:devel/p5-Test-Exception \ diff --git a/databases/p5-DBIx-Class-Schema-Config/Makefile b/databases/p5-DBIx-Class-Schema-Config/Makefile index 3a6fefe9b51..26d1ba868e0 100644 --- a/databases/p5-DBIx-Class-Schema-Config/Makefile +++ b/databases/p5-DBIx-Class-Schema-Config/Makefile @@ -14,10 +14,10 @@ COMMENT= Credential Management for DBIx::Class LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Config-Any>=0.23:devel/p5-Config-Any \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Config-Any>=0.23:devel/p5-Config-Any \ p5-DBIx-Class>=0.08100:databases/p5-DBIx-Class \ p5-File-HomeDir>0:devel/p5-File-HomeDir -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Config-Any>=0.23:devel/p5-Config-Any \ p5-DBD-SQLite>0:databases/p5-DBD-SQLite \ p5-Test-MockObject>=1.09:devel/p5-Test-MockObject diff --git a/databases/p5-DBIx-Class-Schema-Loader/Makefile b/databases/p5-DBIx-Class-Schema-Loader/Makefile index 03cd0233d46..279ef4b3742 100644 --- a/databases/p5-DBIx-Class-Schema-Loader/Makefile +++ b/databases/p5-DBIx-Class-Schema-Loader/Makefile @@ -13,7 +13,8 @@ COMMENT= Dynamic definition of a DBIx::Class::Schema LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Carp-Clan>=0:devel/p5-Carp-Clan \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Carp-Clan>=0:devel/p5-Carp-Clan \ p5-Class-Accessor-Grouped>=0.10008:devel/p5-Class-Accessor-Grouped \ p5-Class-C3-Componentised>=1.0008:devel/p5-Class-C3-Componentised \ p5-Class-Inspector>=1.27:devel/p5-Class-Inspector \ @@ -30,7 +31,6 @@ BUILD_DEPENDS= p5-Carp-Clan>=0:devel/p5-Carp-Clan \ p5-Scope-Guard>=0:devel/p5-Scope-Guard \ p5-String-ToIdentifier-EN>=0.05:textproc/p5-String-ToIdentifier-EN \ p5-Try-Tiny>=0:lang/p5-Try-Tiny -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-DBD-SQLite>=1.29:databases/p5-DBD-SQLite \ p5-Test-Exception>=0.31:devel/p5-Test-Exception \ p5-Test-Warn>=0.21:devel/p5-Test-Warn \ diff --git a/databases/p5-DBIx-Class-Schema-PopulateMore/Makefile b/databases/p5-DBIx-Class-Schema-PopulateMore/Makefile index 48555685622..be7efcf6c2c 100644 --- a/databases/p5-DBIx-Class-Schema-PopulateMore/Makefile +++ b/databases/p5-DBIx-Class-Schema-PopulateMore/Makefile @@ -13,13 +13,13 @@ COMMENT= Enhanced populate method LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Data-Visitor>=0.27:devel/p5-Data-Visitor \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Data-Visitor>=0.27:devel/p5-Data-Visitor \ p5-DateTimeX-Easy>=0.089:devel/p5-DateTimeX-Easy \ p5-List-MoreUtils>=0.30:lang/p5-List-MoreUtils \ p5-Moo>=1.004006:devel/p5-Moo \ p5-MooX-HandlesVia>=0.001005:devel/p5-MooX-HandlesVia \ p5-Type-Tiny>=0.042:devel/p5-Type-Tiny -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-DBD-SQLite>=0:databases/p5-DBD-SQLite \ p5-DBIx-Class>=0.08127:databases/p5-DBIx-Class \ p5-DateTime-Format-SQLite>=0.11:devel/p5-DateTime-Format-SQLite \ diff --git a/databases/p5-DBIx-Class-UUIDColumns/Makefile b/databases/p5-DBIx-Class-UUIDColumns/Makefile index 6555518004b..b6ee402eb4b 100644 --- a/databases/p5-DBIx-Class-UUIDColumns/Makefile +++ b/databases/p5-DBIx-Class-UUIDColumns/Makefile @@ -11,11 +11,11 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= DBIx::Class::UUIDColumns - Implicit uuid columns -BUILD_DEPENDS= p5-Class-Accessor-Grouped>=0:devel/p5-Class-Accessor-Grouped \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Accessor-Grouped>=0:devel/p5-Class-Accessor-Grouped \ p5-DBD-SQLite>=1.11:databases/p5-DBD-SQLite \ p5-DBIx-Class>=0.07005:databases/p5-DBIx-Class \ p5-Data-UUID>=0:devel/p5-Data-UUID -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/databases/p5-DBIx-Class/Makefile b/databases/p5-DBIx-Class/Makefile index 83534326b8f..e23da9bffba 100644 --- a/databases/p5-DBIx-Class/Makefile +++ b/databases/p5-DBIx-Class/Makefile @@ -14,7 +14,8 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Class-Accessor-Grouped>=0.10012:devel/p5-Class-Accessor-Grouped \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Accessor-Grouped>=0.10012:devel/p5-Class-Accessor-Grouped \ p5-Class-C3-Componentised>=1.000900:devel/p5-Class-C3-Componentised \ p5-Class-Inspector>=1.24:devel/p5-Class-Inspector \ p5-Class-Method-Modifiers>=1.06:devel/p5-Class-Method-Modifiers \ @@ -36,7 +37,6 @@ BUILD_DEPENDS= p5-Class-Accessor-Grouped>=0.10012:devel/p5-Class-Accessor-Groupe p5-Try-Tiny>=0.07:lang/p5-Try-Tiny \ p5-namespace-clean>=0.20:devel/p5-namespace-clean \ p5-strictures>=1.003001:devel/p5-strictures -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Class-DBI-Plugin-DeepAbstractSearch>=0:databases/p5-Class-DBI-Plugin-DeepAbstractSearch \ p5-DBD-SQLite>=1.29:databases/p5-DBD-SQLite \ p5-DateTime>=0.55:devel/p5-DateTime \ diff --git a/databases/p5-DBIx-Custom/Makefile b/databases/p5-DBIx-Custom/Makefile index 2fe543c7146..7a7db54304c 100644 --- a/databases/p5-DBIx-Custom/Makefile +++ b/databases/p5-DBIx-Custom/Makefile @@ -14,11 +14,11 @@ COMMENT= Customizable DBI LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-DBD-SQLite>=1.25:databases/p5-DBD-SQLite \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-DBD-SQLite>=1.25:databases/p5-DBD-SQLite \ p5-DBI>=1.60.5:databases/p5-DBI \ p5-DBIx-Connector>=0.56:databases/p5-DBIx-Connector \ p5-Object-Simple>=3.1000:devel/p5-Object-Simple -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/databases/p5-DBIx-DBSchema/Makefile b/databases/p5-DBIx-DBSchema/Makefile index 8a605b1dccf..cf5030b8285 100644 --- a/databases/p5-DBIx-DBSchema/Makefile +++ b/databases/p5-DBIx-DBSchema/Makefile @@ -13,8 +13,8 @@ COMMENT= OO-interface to database schemas LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-DBI>=0:databases/p5-DBI -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-DBI>=0:databases/p5-DBI OPTIONS_DEFINE= DOCS diff --git a/databases/p5-DBIx-Handler/Makefile b/databases/p5-DBIx-Handler/Makefile index e4a7d6607de..8629438ddd8 100644 --- a/databases/p5-DBIx-Handler/Makefile +++ b/databases/p5-DBIx-Handler/Makefile @@ -14,9 +14,9 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-DBI>=1.605:databases/p5-DBI \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-DBI>=1.605:databases/p5-DBI \ p5-DBIx-TransactionManager>=1.09:databases/p5-DBIx-TransactionManager -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-DBD-SQLite>=0:databases/p5-DBD-SQLite \ p5-Test-Requires>=0:devel/p5-Test-Requires \ p5-Test-SharedFork>=0.16:devel/p5-Test-SharedFork diff --git a/databases/p5-DBIx-Lite/Makefile b/databases/p5-DBIx-Lite/Makefile index 4fbec6ed7cd..3209d12adfe 100644 --- a/databases/p5-DBIx-Lite/Makefile +++ b/databases/p5-DBIx-Lite/Makefile @@ -13,10 +13,10 @@ COMMENT= Chained and minimal ORM LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-DBIx-Connector>=0:databases/p5-DBIx-Connector \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-DBIx-Connector>=0:databases/p5-DBIx-Connector \ p5-Data-Page>=0:databases/p5-Data-Page \ p5-SQL-Abstract-More>=0:databases/p5-SQL-Abstract-More -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-DBD-SQLite>=1.29:databases/p5-DBD-SQLite USES= perl5 diff --git a/databases/p5-DBIx-Log4perl/Makefile b/databases/p5-DBIx-Log4perl/Makefile index 42257bd8466..561dbeed082 100644 --- a/databases/p5-DBIx-Log4perl/Makefile +++ b/databases/p5-DBIx-Log4perl/Makefile @@ -14,9 +14,9 @@ COMMENT= For DBI to selectively log SQL, parameters, result-sets, transactions LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-DBI>=1.500:databases/p5-DBI \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-DBI>=1.500:databases/p5-DBI \ p5-Log-Log4perl>=1.04:devel/p5-Log-Log4perl -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/databases/p5-DBIx-NoSQL/Makefile b/databases/p5-DBIx-NoSQL/Makefile index 805adb2e185..d4497a8b0f0 100644 --- a/databases/p5-DBIx-NoSQL/Makefile +++ b/databases/p5-DBIx-NoSQL/Makefile @@ -14,7 +14,8 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Clone>=0:devel/p5-Clone \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Clone>=0:devel/p5-Clone \ p5-DBD-SQLite>=1.44:databases/p5-DBD-SQLite \ p5-DBIx-Class>=0.08124:databases/p5-DBIx-Class \ p5-Data-GUID>=0:devel/p5-Data-GUID \ @@ -26,7 +27,6 @@ BUILD_DEPENDS= p5-Clone>=0:devel/p5-Clone \ p5-Path-Class>=0:devel/p5-Path-Class \ p5-SQL-Translator>=0.11016:databases/p5-SQL-Translator \ p5-Try-Tiny>=0:lang/p5-Try-Tiny -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-DateTime>=0:devel/p5-DateTime \ p5-Test-Deep>=0:devel/p5-Test-Deep \ p5-Test-Most>=0:devel/p5-Test-Most diff --git a/databases/p5-DBIx-Password/Makefile b/databases/p5-DBIx-Password/Makefile index 5e70fdffa47..6e5b976d44e 100644 --- a/databases/p5-DBIx-Password/Makefile +++ b/databases/p5-DBIx-Password/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Allows you to create a global password file for DB passwords -BUILD_DEPENDS= p5-DBI>=0:databases/p5-DBI -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-DBI>=0:databases/p5-DBI USES= perl5 USE_PERL5= configure diff --git a/databases/p5-DBIx-Perlish/Makefile b/databases/p5-DBIx-Perlish/Makefile index 56d26339f48..89dbae7d179 100644 --- a/databases/p5-DBIx-Perlish/Makefile +++ b/databases/p5-DBIx-Perlish/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Perlish interface to SQL databases -BUILD_DEPENDS= p5-DBI>0:databases/p5-DBI \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-DBI>0:databases/p5-DBI \ p5-PadWalker>0:devel/p5-PadWalker -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/databases/p5-DBIx-Recordset/Makefile b/databases/p5-DBIx-Recordset/Makefile index 163513010d1..cb24d9812ef 100644 --- a/databases/p5-DBIx-Recordset/Makefile +++ b/databases/p5-DBIx-Recordset/Makefile @@ -14,8 +14,8 @@ COMMENT= Perl module for abstraction and simplification of database access LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-DBI>=0:databases/p5-DBI -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-DBI>=0:databases/p5-DBI NO_ARCH= yes USES= perl5 diff --git a/databases/p5-DBIx-RetryOverDisconnects/Makefile b/databases/p5-DBIx-RetryOverDisconnects/Makefile index 39ffd698685..ac6e80c401f 100644 --- a/databases/p5-DBIx-RetryOverDisconnects/Makefile +++ b/databases/p5-DBIx-RetryOverDisconnects/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= vovkasm@gmail.com COMMENT= Keeps database connection persistent -BUILD_DEPENDS= p5-DBI>0:databases/p5-DBI \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-DBI>0:databases/p5-DBI \ p5-Exception-Class>0:devel/p5-Exception-Class -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/databases/p5-DBIx-SQLEngine/Makefile b/databases/p5-DBIx-SQLEngine/Makefile index 2d6342180ea..4d7551471d5 100644 --- a/databases/p5-DBIx-SQLEngine/Makefile +++ b/databases/p5-DBIx-SQLEngine/Makefile @@ -11,11 +11,11 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Extends DBI with high-level operations -BUILD_DEPENDS= p5-Class-MakeMethods>=0:devel/p5-Class-MakeMethods \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-MakeMethods>=0:devel/p5-Class-MakeMethods \ p5-Class-MixinFactory>=0:devel/p5-Class-MixinFactory \ p5-DBI>=0:databases/p5-DBI \ p5-DBIx-AnyDBD>=0:databases/p5-DBIx-AnyDBD -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/databases/p5-DBIx-SQLite-Simple/Makefile b/databases/p5-DBIx-SQLite-Simple/Makefile index 421fec58138..615e2ba3042 100644 --- a/databases/p5-DBIx-SQLite-Simple/Makefile +++ b/databases/p5-DBIx-SQLite-Simple/Makefile @@ -10,9 +10,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= bofh@FreeBSD.org COMMENT= Easy access to SQLite databases using objects -BUILD_DEPENDS= p5-Class-Gomor>=0:devel/p5-Class-Gomor \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Gomor>=0:devel/p5-Class-Gomor \ p5-DBD-SQLite>=0:databases/p5-DBD-SQLite -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/databases/p5-DBIx-Safe/Makefile b/databases/p5-DBIx-Safe/Makefile index 3127ad8ed59..b3c09af3c32 100644 --- a/databases/p5-DBIx-Safe/Makefile +++ b/databases/p5-DBIx-Safe/Makefile @@ -15,9 +15,9 @@ COMMENT= Safer access to your database through a DBI database handle LICENSE= BSD2CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-DBD-Pg>=1.49:databases/p5-DBD-Pg \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-DBD-Pg>=1.49:databases/p5-DBD-Pg \ p5-DBI>=1.490:databases/p5-DBI -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USE_PERL5= configure diff --git a/databases/p5-DBIx-SearchBuilder/Makefile b/databases/p5-DBIx-SearchBuilder/Makefile index fa981f5545a..59bebeef9f4 100644 --- a/databases/p5-DBIx-SearchBuilder/Makefile +++ b/databases/p5-DBIx-SearchBuilder/Makefile @@ -14,7 +14,8 @@ COMMENT= Perl extension for easy SQL SELECT Statement generation LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Class-ReturnValue>=0:devel/p5-Class-ReturnValue \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-ReturnValue>=0:devel/p5-Class-ReturnValue \ p5-Cache-Simple-TimedExpiry>=0:devel/p5-Cache-Simple-TimedExpiry \ p5-Want>=0:devel/p5-Want \ p5-capitalization>=0:devel/p5-capitalization \ @@ -22,7 +23,6 @@ BUILD_DEPENDS= p5-Class-ReturnValue>=0:devel/p5-Class-ReturnValue \ p5-DBIx-DBSchema>=0:databases/p5-DBIx-DBSchema \ p5-Class-Accessor>=0:devel/p5-Class-Accessor \ p5-Clone>=0:devel/p5-Clone -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-DBD-SQLite>=0:databases/p5-DBD-SQLite NO_ARCH= yes diff --git a/databases/p5-DBIx-Simple/Makefile b/databases/p5-DBIx-Simple/Makefile index ac4fd65e25c..6f52abcfd0c 100644 --- a/databases/p5-DBIx-Simple/Makefile +++ b/databases/p5-DBIx-Simple/Makefile @@ -10,8 +10,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Simplified object oriented interface to Perl DBI -BUILD_DEPENDS= p5-DBI>=1.21:databases/p5-DBI ${TEST_DEPENDS} -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-DBI>=1.21:databases/p5-DBI ${TEST_DEPENDS} TEST_DEPENDS= p5-DBD-SQLite>=0:databases/p5-DBD-SQLite OPTIONS_DEFINE= SQL_INTERP SQL_ABSTRACT DBIX_XHTML_TABLE TEXT_TABLE diff --git a/databases/p5-DBIx-Sunny/Makefile b/databases/p5-DBIx-Sunny/Makefile index 1a2306be0e9..be4ed804b18 100644 --- a/databases/p5-DBIx-Sunny/Makefile +++ b/databases/p5-DBIx-Sunny/Makefile @@ -14,12 +14,12 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-DBI>=1.615:databases/p5-DBI \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-DBI>=1.615:databases/p5-DBI \ p5-Class-Accessor-Lite>=0.05:devel/p5-Class-Accessor-Lite \ p5-Class-Data-Inheritable>=0:devel/p5-Class-Data-Inheritable \ p5-DBIx-TransactionManager>=0:databases/p5-DBIx-TransactionManager \ p5-Data-Validator>=0:devel/p5-Data-Validator -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-DBD-SQLite>=1.31:databases/p5-DBD-SQLite \ p5-Test-Requires>=0:devel/p5-Test-Requires \ p5-Capture-Tiny>=0:devel/p5-Capture-Tiny diff --git a/databases/p5-DBIx-TableHash/Makefile b/databases/p5-DBIx-TableHash/Makefile index 34e3319db2d..11b4ea6ff80 100644 --- a/databases/p5-DBIx-TableHash/Makefile +++ b/databases/p5-DBIx-TableHash/Makefile @@ -12,8 +12,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Tie a hash to a MySQL table + SQL utils -BUILD_DEPENDS= p5-DBD-mysql>=0:databases/p5-DBD-mysql -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-DBD-mysql>=0:databases/p5-DBD-mysql USES= perl5 USE_PERL5= configure diff --git a/databases/p5-DBIx-Tree/Makefile b/databases/p5-DBIx-Tree/Makefile index 4f3dd45ae9e..f4de6d02468 100644 --- a/databases/p5-DBIx-Tree/Makefile +++ b/databases/p5-DBIx-Tree/Makefile @@ -12,8 +12,8 @@ COMMENT= Perl module for generating a tree from a self-referential table LICENSE= ART20 -BUILD_DEPENDS= p5-DBI>=1.622:databases/p5-DBI -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-DBI>=1.622:databases/p5-DBI TEST_DEPENDS= p5-DBD-SQLite>=1.37:databases/p5-DBD-SQLite USES= perl5 tar:tgz diff --git a/databases/p5-DBIx-Wrapper/Makefile b/databases/p5-DBIx-Wrapper/Makefile index d2deb536d5b..0b30d847a22 100644 --- a/databases/p5-DBIx-Wrapper/Makefile +++ b/databases/p5-DBIx-Wrapper/Makefile @@ -13,8 +13,8 @@ COMMENT= Wrapper around Perl's DBI module LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-DBI>=0:databases/p5-DBI -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-DBI>=0:databases/p5-DBI TEST_DEPENDS= p5-DBD-SQLite>=0:databases/p5-DBD-SQLite USES= perl5 diff --git a/databases/p5-DBIx-XHTML_Table/Makefile b/databases/p5-DBIx-XHTML_Table/Makefile index 6e19f35f812..53afbe62bab 100644 --- a/databases/p5-DBIx-XHTML_Table/Makefile +++ b/databases/p5-DBIx-XHTML_Table/Makefile @@ -12,8 +12,8 @@ COMMENT= Create XHTML tables from SQL queries LICENSE= ART20 -BUILD_DEPENDS= p5-DBI>=0:databases/p5-DBI -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-DBI>=0:databases/p5-DBI TEST_DEPENDS= p5-HTML-TableExtract>=0:www/p5-HTML-TableExtract NO_ARCH= yes diff --git a/databases/p5-DBIx-XML_RDB/Makefile b/databases/p5-DBIx-XML_RDB/Makefile index 2406d026cbd..630c2afd5d7 100644 --- a/databases/p5-DBIx-XML_RDB/Makefile +++ b/databases/p5-DBIx-XML_RDB/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Perl extension for creating XML from existing DBI datasources -BUILD_DEPENDS= p5-DBI>=0:databases/p5-DBI \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-DBI>=0:databases/p5-DBI \ p5-XML-Parser>=0:textproc/p5-XML-Parser -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 shebangfix SHEBANG_FILES= sql2xml.pl xml2sql.pl diff --git a/databases/p5-DR-Tarantool/Makefile b/databases/p5-DR-Tarantool/Makefile index 313c173c033..300d335a8ab 100644 --- a/databases/p5-DR-Tarantool/Makefile +++ b/databases/p5-DR-Tarantool/Makefile @@ -14,11 +14,11 @@ COMMENT= Perl driver for Tarantool LICENSE= ART10 -BUILD_DEPENDS= p5-AnyEvent>=0:devel/p5-AnyEvent \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-AnyEvent>=0:devel/p5-AnyEvent \ p5-Devel-GlobalDestruction>=0:devel/p5-Devel-GlobalDestruction \ p5-JSON-XS>=0:converters/p5-JSON-XS \ p5-List-MoreUtils>=0:lang/p5-List-MoreUtils -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/databases/p5-Dancer-Plugin-DBIC/Makefile b/databases/p5-Dancer-Plugin-DBIC/Makefile index 0e32578b832..06be1788322 100644 --- a/databases/p5-Dancer-Plugin-DBIC/Makefile +++ b/databases/p5-Dancer-Plugin-DBIC/Makefile @@ -13,14 +13,14 @@ COMMENT= DBIx::Class interface for Dancer applications LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-DBIx-Class>=0:databases/p5-DBIx-Class\ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-DBIx-Class>=0:databases/p5-DBIx-Class\ p5-DBIx-Class-Schema-Loader>=0.07002:databases/p5-DBIx-Class-Schema-Loader\ p5-Dancer>=1.3098:www/p5-Dancer \ p5-DBICx-Sugar>=0:databases/p5-DBICx-Sugar \ p5-DBD-SQLite>=0:databases/p5-DBD-SQLite \ p5-Test-Exception>=0:devel/p5-Test-Exception \ p5-Test-Requires>=0:devel/p5-Test-Requires -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-MooseX-Types-LoadableClass>0:devel/p5-MooseX-Types-LoadableClass USES= perl5 diff --git a/databases/p5-Dancer-Plugin-Database-Core/Makefile b/databases/p5-Dancer-Plugin-Database-Core/Makefile index 53963905939..c684208e999 100644 --- a/databases/p5-Dancer-Plugin-Database-Core/Makefile +++ b/databases/p5-Dancer-Plugin-Database-Core/Makefile @@ -12,8 +12,8 @@ COMMENT= Shared core for D1 and D2 Database plugins LICENSE= ART20 -BUILD_DEPENDS= p5-DBI>=0:databases/p5-DBI -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-DBI>=0:databases/p5-DBI TEST_DEPENDS= p5-Test-Pod>=1.22:devel/p5-Test-Pod \ p5-Test-Pod-Coverage>=1.08:devel/p5-Test-Pod-Coverage diff --git a/databases/p5-Dancer-Plugin-Database/Makefile b/databases/p5-Dancer-Plugin-Database/Makefile index 252aa7cff9e..6a64c71fddb 100644 --- a/databases/p5-Dancer-Plugin-Database/Makefile +++ b/databases/p5-Dancer-Plugin-Database/Makefile @@ -13,10 +13,10 @@ COMMENT= Easy database connections for Dancer applications LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-DBI>=0:databases/p5-DBI \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-DBI>=0:databases/p5-DBI \ p5-Dancer>=1.3050:www/p5-Dancer \ p5-Dancer-Plugin-Database-Core>=0.16:databases/p5-Dancer-Plugin-Database-Core -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-DBD-SQLite>=0:databases/p5-DBD-SQLite NO_ARCH= yes diff --git a/databases/p5-Dancer-Plugin-Redis/Makefile b/databases/p5-Dancer-Plugin-Redis/Makefile index 331a42947c6..4dacd49c8ab 100644 --- a/databases/p5-Dancer-Plugin-Redis/Makefile +++ b/databases/p5-Dancer-Plugin-Redis/Makefile @@ -14,9 +14,9 @@ COMMENT= Redis database connector for Dancer LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Dancer>=0:www/p5-Dancer \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Dancer>=0:www/p5-Dancer \ p5-Redis>=1.9550:databases/p5-Redis -RUN_DEPENDS:= ${BUILD_DEPENDS} PORTSCOUT= skipv:0.10,0.11,0.12,0.13,0.14 diff --git a/databases/p5-Dancer-Session-Memcached/Makefile b/databases/p5-Dancer-Session-Memcached/Makefile index 32fd841d9fa..77a8ebefc54 100644 --- a/databases/p5-Dancer-Session-Memcached/Makefile +++ b/databases/p5-Dancer-Session-Memcached/Makefile @@ -14,9 +14,9 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Cache-Memcached>=0:databases/p5-Cache-Memcached \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Cache-Memcached>=0:databases/p5-Cache-Memcached \ p5-Dancer>=0:www/p5-Dancer -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/databases/p5-Dancer2-Plugin-DBIC/Makefile b/databases/p5-Dancer2-Plugin-DBIC/Makefile index f5408f37cbe..dd2377ad8c4 100644 --- a/databases/p5-Dancer2-Plugin-DBIC/Makefile +++ b/databases/p5-Dancer2-Plugin-DBIC/Makefile @@ -13,11 +13,11 @@ COMMENT= DBIx::Class interface for Dancer2 applications LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-DBIx-Class>=0:databases/p5-DBIx-Class\ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-DBIx-Class>=0:databases/p5-DBIx-Class\ p5-DBIx-Class-Schema-Loader>=0.07002:databases/p5-DBIx-Class-Schema-Loader\ p5-DBICx-Sugar>=0:databases/p5-DBICx-Sugar\ p5-Dancer2>=0.153002:www/p5-Dancer2 -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-DBD-SQLite>=0:databases/p5-DBD-SQLite NO_ARCH= yes diff --git a/databases/p5-Dancer2-Plugin-Database/Makefile b/databases/p5-Dancer2-Plugin-Database/Makefile index afef8152064..6cb95000b07 100644 --- a/databases/p5-Dancer2-Plugin-Database/Makefile +++ b/databases/p5-Dancer2-Plugin-Database/Makefile @@ -13,9 +13,9 @@ COMMENT= Easy database connections for Dancer2 applications LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Dancer2>=0.166001:www/p5-Dancer2 \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Dancer2>=0.166001:www/p5-Dancer2 \ p5-Dancer-Plugin-Database-Core>=0.16:databases/p5-Dancer-Plugin-Database-Core -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-DBD-SQLite>=0:databases/p5-DBD-SQLite \ p5-DBI>=0:databases/p5-DBI \ p5-HTTP-Message>=0:www/p5-HTTP-Message \ diff --git a/databases/p5-Data-Page/Makefile b/databases/p5-Data-Page/Makefile index 166dce4beac..67db8c6e953 100644 --- a/databases/p5-Data-Page/Makefile +++ b/databases/p5-Data-Page/Makefile @@ -14,8 +14,8 @@ COMMENT= Pager utility for Class::DBI LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Class-Accessor-Chained>=0:devel/p5-Class-Accessor-Chained -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Accessor-Chained>=0:devel/p5-Class-Accessor-Chained TEST_DEPENDS= p5-Test-Exception>=0:devel/p5-Test-Exception USES= perl5 diff --git a/databases/p5-Data-Pageset/Makefile b/databases/p5-Data-Pageset/Makefile index b6810e71a1f..c5fc9405bee 100644 --- a/databases/p5-Data-Pageset/Makefile +++ b/databases/p5-Data-Pageset/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Page numbering and page sets -BUILD_DEPENDS= p5-Data-Page>=2:databases/p5-Data-Page -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Data-Page>=2:databases/p5-Data-Page USES= perl5 USE_PERL5= configure diff --git a/databases/p5-HTML-FormHandler-Model-DBIC/Makefile b/databases/p5-HTML-FormHandler-Model-DBIC/Makefile index 89d73d3593a..59e98ceeda0 100644 --- a/databases/p5-HTML-FormHandler-Model-DBIC/Makefile +++ b/databases/p5-HTML-FormHandler-Model-DBIC/Makefile @@ -11,12 +11,12 @@ PKGNAMEPREFIX= p5- MAINTAINER= vovkasm@gmail.com COMMENT= Model class for FormHandler unsing DBIx::Class -BUILD_DEPENDS= p5-DBIx-Class>0:databases/p5-DBIx-Class \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-DBIx-Class>0:databases/p5-DBIx-Class \ p5-DBIx-Class-ResultSet-RecursiveUpdate>=0.21:databases/p5-DBIx-Class-ResultSet-RecursiveUpdate \ p5-HTML-FormHandler>=0.34001:www/p5-HTML-FormHandler \ p5-Moose>=2.0007:devel/p5-Moose \ p5-namespace-autoclean>=0.09:devel/p5-namespace-autoclean -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-DateTime-Format-MySQL>0:devel/p5-DateTime-Format-MySQL \ p5-DateTime-Format-SQLite>0:devel/p5-DateTime-Format-SQLite \ p5-DateTime-Format-W3CDTF>0:devel/p5-DateTime-Format-W3CDTF diff --git a/databases/p5-Ima-DBI/Makefile b/databases/p5-Ima-DBI/Makefile index 75e15f0a455..ec50846abd7 100644 --- a/databases/p5-Ima-DBI/Makefile +++ b/databases/p5-Ima-DBI/Makefile @@ -15,9 +15,9 @@ COMMENT= Database connection caching and organization LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-DBIx-ContextualFetch>=0:databases/p5-DBIx-ContextualFetch \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-DBIx-ContextualFetch>=0:databases/p5-DBIx-ContextualFetch \ p5-Class-Data-Inheritable>=0:devel/p5-Class-Data-Inheritable -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/databases/p5-Interchange6-Schema/Makefile b/databases/p5-Interchange6-Schema/Makefile index cb860591899..71e40560dad 100644 --- a/databases/p5-Interchange6-Schema/Makefile +++ b/databases/p5-Interchange6-Schema/Makefile @@ -14,7 +14,8 @@ COMMENT= Database Schema for Interchange 6 LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-DBIx-Class>=0:databases/p5-DBIx-Class\ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-DBIx-Class>=0:databases/p5-DBIx-Class\ p5-DBIx-Class-Schema-Config>=0:databases/p5-DBIx-Class-Schema-Config\ p5-DBIx-Class-PassphraseColumn>=0:databases/p5-DBIx-Class-PassphraseColumn\ p5-DBIx-Class-InflateColumn-Authen-Passphrase>=0:databases/p5-DBIx-Class-InflateColumn-Authen-Passphrase\ @@ -23,7 +24,6 @@ BUILD_DEPENDS= p5-DBIx-Class>=0:databases/p5-DBIx-Class\ p5-Time-Duration-Parse>=0:devel/p5-Time-Duration-Parse\ p5-Locale-SubCountry>=0:misc/p5-Locale-SubCountry\ p5-JSON-MaybeXS>=0:converters/p5-JSON-MaybeXS -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-DBD-SQLite>=0:databases/p5-DBD-SQLite\ p5-DBIx-Class-TimeStamp>=0:databases/p5-DBIx-Class-TimeStamp\ p5-DBIx-Class-Helpers>=0:databases/p5-DBIx-Class-Helpers\ diff --git a/databases/p5-Iterator-DBI/Makefile b/databases/p5-Iterator-DBI/Makefile index c676d23e72d..bab3c27054d 100644 --- a/databases/p5-Iterator-DBI/Makefile +++ b/databases/p5-Iterator-DBI/Makefile @@ -14,8 +14,8 @@ COMMENT= Iterator for returning DBI query results LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Iterator>=0:devel/p5-Iterator -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Iterator>=0:devel/p5-Iterator USES= perl5 USE_PERL5= configure diff --git a/databases/p5-Jifty-DBI/Makefile b/databases/p5-Jifty-DBI/Makefile index 7e940744416..ba94c9452ba 100644 --- a/databases/p5-Jifty-DBI/Makefile +++ b/databases/p5-Jifty-DBI/Makefile @@ -13,7 +13,8 @@ COMMENT= Jifty::DBI - An object-relational persistence framework LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Cache-Memcached>=0:databases/p5-Cache-Memcached \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Cache-Memcached>=0:databases/p5-Cache-Memcached \ p5-Cache-Simple-TimedExpiry>=0.21:devel/p5-Cache-Simple-TimedExpiry \ p5-Class-Accessor>=0:devel/p5-Class-Accessor \ p5-Class-Data-Inheritable>=0:devel/p5-Class-Data-Inheritable \ @@ -37,7 +38,6 @@ BUILD_DEPENDS= p5-Cache-Memcached>=0:databases/p5-Cache-Memcached \ p5-UNIVERSAL-require>=0.11:devel/p5-UNIVERSAL-require \ p5-URI>=0:net/p5-URI \ p5-YAML-Syck>=0:textproc/p5-YAML-Syck -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Warn>=0.1:devel/p5-Test-Warn NO_ARCH= yes diff --git a/databases/p5-MLDBM-Sync/Makefile b/databases/p5-MLDBM-Sync/Makefile index 8441d6cb890..99d96d4fd38 100644 --- a/databases/p5-MLDBM-Sync/Makefile +++ b/databases/p5-MLDBM-Sync/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= MLDBM::Sync - safe concurrent access to MLDBM databases -BUILD_DEPENDS= p5-MLDBM>=0:databases/p5-MLDBM -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-MLDBM>=0:databases/p5-MLDBM USES= perl5 USE_PERL5= configure diff --git a/databases/p5-MLDBM/Makefile b/databases/p5-MLDBM/Makefile index dde8890ed96..63f98526dce 100644 --- a/databases/p5-MLDBM/Makefile +++ b/databases/p5-MLDBM/Makefile @@ -14,8 +14,8 @@ COMMENT= Store multi-level hash structure in single level tied hash LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-FreezeThaw>=0:devel/p5-FreezeThaw -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-FreezeThaw>=0:devel/p5-FreezeThaw USES= perl5 USE_PERL5= configure diff --git a/databases/p5-MR-Tarantool/Makefile b/databases/p5-MR-Tarantool/Makefile index 904cd87b672..c897c4e9fca 100644 --- a/databases/p5-MR-Tarantool/Makefile +++ b/databases/p5-MR-Tarantool/Makefile @@ -14,13 +14,13 @@ COMMENT= Driver for an efficient Tarantool/Box NoSQL in-memory storage LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-AnyEvent>=0:devel/p5-AnyEvent \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-AnyEvent>=0:devel/p5-AnyEvent \ p5-Class-Singleton>=0:devel/p5-Class-Singleton \ p5-List-MoreUtils>=0:lang/p5-List-MoreUtils \ p5-MRO-Compat>=0:devel/p5-MRO-Compat \ p5-Mouse>=0:devel/p5-Mouse \ p5-String-CRC32>=0:devel/p5-String-CRC32 -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/databases/p5-Mango/Makefile b/databases/p5-Mango/Makefile index fde3e09e850..aacb73caff7 100644 --- a/databases/p5-Mango/Makefile +++ b/databases/p5-Mango/Makefile @@ -15,9 +15,9 @@ COMMENT= Pure-Perl non-blocking I/O MongoDB driver LICENSE= ART20 LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= mongo:databases/mongodb34 \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= mongo:databases/mongodb34 \ p5-Mojolicious>=5.40:www/p5-Mojolicious -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/databases/p5-Metadata/Makefile b/databases/p5-Metadata/Makefile index 2a21b55b480..eb17ba8f38e 100644 --- a/databases/p5-Metadata/Makefile +++ b/databases/p5-Metadata/Makefile @@ -14,8 +14,8 @@ COMMENT= Perl implementation of Dublin Core compatible metadata LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-TimeDate>=0:devel/p5-TimeDate -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-TimeDate>=0:devel/p5-TimeDate USES= perl5 USE_PERL5= configure diff --git a/databases/p5-MySQL-Diff/Makefile b/databases/p5-MySQL-Diff/Makefile index 48f4aabaa0a..ce8a9ff8f24 100644 --- a/databases/p5-MySQL-Diff/Makefile +++ b/databases/p5-MySQL-Diff/Makefile @@ -13,11 +13,11 @@ COMMENT= Perl module for comparing the table structure of two MySQL databases LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Class-MakeMethods>=0:devel/p5-Class-MakeMethods \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-MakeMethods>=0:devel/p5-Class-MakeMethods \ p5-DBD-mysql>=0:databases/p5-DBD-mysql \ p5-File-Slurp>=0:devel/p5-File-Slurp \ p5-String-ShellQuote>=0:textproc/p5-String-ShellQuote -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 shebangfix USE_PERL5= configure diff --git a/databases/p5-Net-Async-CassandraCQL/Makefile b/databases/p5-Net-Async-CassandraCQL/Makefile index 95272e5e0f1..454d440a630 100644 --- a/databases/p5-Net-Async-CassandraCQL/Makefile +++ b/databases/p5-Net-Async-CassandraCQL/Makefile @@ -15,13 +15,13 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Compress-Snappy>0:archivers/p5-Compress-Snappy \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Compress-Snappy>0:archivers/p5-Compress-Snappy \ p5-Devel-GlobalDestruction>=0:devel/p5-Devel-GlobalDestruction \ p5-Future>=0.17:devel/p5-Future \ p5-IO-Async>=0.59:devel/p5-IO-Async \ p5-Compress-LZ4>0:archivers/p5-Compress-LZ4 \ p5-Protocol-CassandraCQL>=0.11:databases/p5-Protocol-CassandraCQL -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Identity>0:devel/p5-Test-Identity \ p5-Test-Refcount>0:devel/p5-Test-Refcount diff --git a/databases/p5-ORLite-Migrate/Makefile b/databases/p5-ORLite-Migrate/Makefile index 0bd072fe5ef..f0df63096fe 100644 --- a/databases/p5-ORLite-Migrate/Makefile +++ b/databases/p5-ORLite-Migrate/Makefile @@ -15,7 +15,8 @@ COMMENT= Light weight SQLite-specific schema migration LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-File-pushd>=1.00:devel/p5-File-pushd \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-File-pushd>=1.00:devel/p5-File-pushd \ p5-IPC-Run3>=0.042:devel/p5-IPC-Run3 \ p5-ORLite>=1.28:databases/p5-ORLite \ p5-Probe-Perl>=0.01:sysutils/p5-Probe-Perl \ @@ -23,7 +24,6 @@ BUILD_DEPENDS= p5-File-pushd>=1.00:devel/p5-File-pushd \ p5-DBD-SQLite>=1.21:databases/p5-DBD-SQLite \ p5-Params-Util>0.37:devel/p5-Params-Util \ p5-File-Which>=0.05:sysutils/p5-File-Which -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/databases/p5-ORLite/Makefile b/databases/p5-ORLite/Makefile index 00f6e8374a8..74ccc3e49d3 100644 --- a/databases/p5-ORLite/Makefile +++ b/databases/p5-ORLite/Makefile @@ -15,11 +15,11 @@ COMMENT= Perl5 extremely light weight SQLite-specific ORM LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-DBD-SQLite>=1.27:databases/p5-DBD-SQLite \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-DBD-SQLite>=1.27:databases/p5-DBD-SQLite \ p5-DBI>=1.60.7:databases/p5-DBI \ p5-File-Remove>=1.40:devel/p5-File-Remove \ p5-Params-Util>=0.33:devel/p5-Params-Util -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Class-XSAccessor>=0:devel/p5-Class-XSAccessor \ p5-Test-Script>=1.06:devel/p5-Test-Script diff --git a/databases/p5-Oryx/Makefile b/databases/p5-Oryx/Makefile index 965954c756d..fb2c44400e2 100644 --- a/databases/p5-Oryx/Makefile +++ b/databases/p5-Oryx/Makefile @@ -11,7 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Meta-Model Driven Object Persistance with Multiple Inheritance -BUILD_DEPENDS= p5-SQL-Abstract>=0:databases/p5-SQL-Abstract \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-SQL-Abstract>=0:databases/p5-SQL-Abstract \ p5-DBM-Deep>=0:databases/p5-DBM-Deep \ p5-YAML>=0:textproc/p5-YAML \ p5-Class-Date>=0:devel/p5-Class-Date \ @@ -19,7 +20,6 @@ BUILD_DEPENDS= p5-SQL-Abstract>=0:databases/p5-SQL-Abstract \ p5-Ima-DBI>=0:databases/p5-Ima-DBI \ p5-Data-Types>=0:devel/p5-Data-Types \ p5-Class-Observable>=0:devel/p5-Class-Observable -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-XML-DOM-Lite>0:textproc/p5-XML-DOM-Lite \ p5-DBD-SQLite>=0:databases/p5-DBD-SQLite diff --git a/databases/p5-POE-Component-DBIAgent/Makefile b/databases/p5-POE-Component-DBIAgent/Makefile index e3a2a9b7f89..8c711eb1aec 100644 --- a/databases/p5-POE-Component-DBIAgent/Makefile +++ b/databases/p5-POE-Component-DBIAgent/Makefile @@ -11,10 +11,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= POE Component for running asynchronous DBI calls -BUILD_DEPENDS= p5-POE>=0:devel/p5-POE \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-POE>=0:devel/p5-POE \ p5-Class-MethodMaker>=0:devel/p5-Class-MethodMaker \ p5-DBI>=0:databases/p5-DBI -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/databases/p5-POE-Component-EasyDBI/Makefile b/databases/p5-POE-Component-EasyDBI/Makefile index d187aa324bb..5693f094eaa 100644 --- a/databases/p5-POE-Component-EasyDBI/Makefile +++ b/databases/p5-POE-Component-EasyDBI/Makefile @@ -13,11 +13,11 @@ COMMENT= POE Component for simplified DBI usage LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-DBI>=1.38:databases/p5-DBI \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-DBI>=1.38:databases/p5-DBI \ p5-POE>=0.3101:devel/p5-POE \ p5-Params-Util>=0:devel/p5-Params-Util \ p5-Try-Tiny>=0:lang/p5-Try-Tiny -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Requires>=0.08:devel/p5-Test-Requires USES= perl5 diff --git a/databases/p5-POE-Component-LaDBI/Makefile b/databases/p5-POE-Component-LaDBI/Makefile index 71a07c2e309..85fd0fab04e 100644 --- a/databases/p5-POE-Component-LaDBI/Makefile +++ b/databases/p5-POE-Component-LaDBI/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Perl extension for asynchronous non-blocking DBI calls in POE -BUILD_DEPENDS= p5-POE>=0:devel/p5-POE \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-POE>=0:devel/p5-POE \ p5-DBI>=0:databases/p5-DBI -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure patch diff --git a/databases/p5-POE-Component-RRDTool/Makefile b/databases/p5-POE-Component-RRDTool/Makefile index e9d4176a071..9c0290ac75c 100644 --- a/databases/p5-POE-Component-RRDTool/Makefile +++ b/databases/p5-POE-Component-RRDTool/Makefile @@ -15,9 +15,9 @@ COMMENT= POE interface to Round Robin Database Tools LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= rrdtool:databases/rrdtool \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= rrdtool:databases/rrdtool \ p5-POE>=0:devel/p5-POE -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/databases/p5-Prophet/Makefile b/databases/p5-Prophet/Makefile index b257b2546d6..a1861a340b2 100644 --- a/databases/p5-Prophet/Makefile +++ b/databases/p5-Prophet/Makefile @@ -13,7 +13,8 @@ COMMENT= Distributed database system LICENSE= MIT -BUILD_DEPENDS= p5-Any-Moose>=0.04:devel/p5-Any-Moose \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Any-Moose>=0.04:devel/p5-Any-Moose \ p5-Config-GitLike>=1.02:devel/p5-Config-GitLike \ p5-DBD-SQLite>=1:databases/p5-DBD-SQLite \ p5-DBI>=1:databases/p5-DBI \ @@ -40,7 +41,6 @@ BUILD_DEPENDS= p5-Any-Moose>=0.04:devel/p5-Any-Moose \ p5-UUID-Tiny>=1.02:devel/p5-UUID-Tiny \ p5-XML-Atom-SimpleFeed>=0:textproc/p5-XML-Atom-SimpleFeed \ p5-YAML-Syck>=0:textproc/p5-YAML-Syck -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Exception>=0.26:devel/p5-Test-Exception USES= perl5 diff --git a/databases/p5-Protocol-CassandraCQL/Makefile b/databases/p5-Protocol-CassandraCQL/Makefile index 926863de948..5d9cd145760 100644 --- a/databases/p5-Protocol-CassandraCQL/Makefile +++ b/databases/p5-Protocol-CassandraCQL/Makefile @@ -16,8 +16,8 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Compress-Snappy>0:archivers/p5-Compress-Snappy -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Compress-Snappy>0:archivers/p5-Compress-Snappy TEST_DEPENDS= p5-Test-Fatal>0:devel/p5-Test-Fatal \ p5-Test-HexString>0:devel/p5-Test-HexString diff --git a/databases/p5-RRD-Simple/Makefile b/databases/p5-RRD-Simple/Makefile index 159ccf5bcc9..3c2c1f6fb1e 100644 --- a/databases/p5-RRD-Simple/Makefile +++ b/databases/p5-RRD-Simple/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Simple interface to create and store data in RRD files -BUILD_DEPENDS= rrdtool:databases/rrdtool -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= rrdtool:databases/rrdtool USES= perl5 USE_PERL5= modbuild diff --git a/databases/p5-Redis/Makefile b/databases/p5-Redis/Makefile index ef2c7b01efa..c5b79aa975d 100644 --- a/databases/p5-Redis/Makefile +++ b/databases/p5-Redis/Makefile @@ -13,9 +13,9 @@ COMMENT= Perl binding for Redis database LICENSE= ART20 -BUILD_DEPENDS= p5-IO-Socket-Timeout>=0.29:net/p5-IO-Socket-Timeout \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-IO-Socket-Timeout>=0.29:net/p5-IO-Socket-Timeout \ p5-Try-Tiny>=0.24:lang/p5-Try-Tiny -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-IO-String>=0:devel/p5-IO-String \ p5-Test-Deep>=0:devel/p5-Test-Deep \ p5-Test-Exception>=0:devel/p5-Test-Exception \ diff --git a/databases/p5-Relations-Query/Makefile b/databases/p5-Relations-Query/Makefile index 3ff0320807f..cf798a274c7 100644 --- a/databases/p5-Relations-Query/Makefile +++ b/databases/p5-Relations-Query/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= bofh@FreeBSD.org COMMENT= Object for building queries with DBI/DBD::mysql -BUILD_DEPENDS= p5-Relations>=0:databases/p5-Relations -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Relations>=0:databases/p5-Relations USES= perl5 USE_PERL5= configure diff --git a/databases/p5-ResourcePool-Resource-DBI/Makefile b/databases/p5-ResourcePool-Resource-DBI/Makefile index fb2aa934ff8..0d9834627a8 100644 --- a/databases/p5-ResourcePool-Resource-DBI/Makefile +++ b/databases/p5-ResourcePool-Resource-DBI/Makefile @@ -13,9 +13,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= ResourcePool::Resource::DBI - A ResourcePool wrapper for DBI -BUILD_DEPENDS= p5-ResourcePool>=0:devel/p5-ResourcePool \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-ResourcePool>=0:devel/p5-ResourcePool \ p5-DBI>=0:databases/p5-DBI -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/databases/p5-Rose-DB-Object/Makefile b/databases/p5-Rose-DB-Object/Makefile index 8a22b1d4e85..1f2300b97d9 100644 --- a/databases/p5-Rose-DB-Object/Makefile +++ b/databases/p5-Rose-DB-Object/Makefile @@ -15,7 +15,8 @@ COMMENT= Extensible, high performance RDBMS-OO mapper LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Bit-Vector>=0:math/p5-Bit-Vector \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Bit-Vector>=0:math/p5-Bit-Vector \ p5-Clone>=0.29:devel/p5-Clone \ p5-DBI>=1.400:databases/p5-DBI \ p5-DateTime>=0:devel/p5-DateTime \ @@ -24,7 +25,6 @@ BUILD_DEPENDS= p5-Bit-Vector>=0:math/p5-Bit-Vector \ p5-Rose-DateTime>=0.532,1:devel/p5-Rose-DateTime \ p5-Rose-Object>=0.854:devel/p5-Rose-Object \ p5-Time-Clock>=1:devel/p5-Time-Clock -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Memory-Cycle>=0:devel/p5-Test-Memory-Cycle USES= perl5 diff --git a/databases/p5-Rose-DB/Makefile b/databases/p5-Rose-DB/Makefile index 448b01dae67..fdfd3cca4d3 100644 --- a/databases/p5-Rose-DB/Makefile +++ b/databases/p5-Rose-DB/Makefile @@ -14,7 +14,8 @@ COMMENT= DBI wrapper and abstraction layer LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Bit-Vector>=6.4:math/p5-Bit-Vector \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Bit-Vector>=6.4:math/p5-Bit-Vector \ p5-Clone-PP>=0:devel/p5-Clone-PP \ p5-DBI>=0:databases/p5-DBI \ p5-DateTime>=0:devel/p5-DateTime \ @@ -26,7 +27,6 @@ BUILD_DEPENDS= p5-Bit-Vector>=6.4:math/p5-Bit-Vector \ p5-SQL-ReservedWords>=0:databases/p5-SQL-ReservedWords \ p5-Time-Clock>=0:devel/p5-Time-Clock \ p5-YAML-Syck>=0:textproc/p5-YAML-Syck -RUN_DEPENDS:= ${BUILD_DEPENDS} PORTSCOUT= skipv:0.7591 diff --git a/databases/p5-SQL-Abstract-More/Makefile b/databases/p5-SQL-Abstract-More/Makefile index fc3d54ddf9d..a6c31e145dd 100644 --- a/databases/p5-SQL-Abstract-More/Makefile +++ b/databases/p5-SQL-Abstract-More/Makefile @@ -14,11 +14,11 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/README -BUILD_DEPENDS= p5-MRO-Compat>0:devel/p5-MRO-Compat \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-MRO-Compat>0:devel/p5-MRO-Compat \ p5-Params-Validate>0:devel/p5-Params-Validate \ p5-SQL-Abstract>=1.84:databases/p5-SQL-Abstract \ p5-namespace-clean>=0:devel/p5-namespace-clean -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-List-MoreUtils>=0:lang/p5-List-MoreUtils \ p5-Test-Exception>=0:devel/p5-Test-Exception \ p5-Test-Pod>=0:devel/p5-Test-Pod diff --git a/databases/p5-SQL-Abstract/Makefile b/databases/p5-SQL-Abstract/Makefile index a02a919224d..194777dd51d 100644 --- a/databases/p5-SQL-Abstract/Makefile +++ b/databases/p5-SQL-Abstract/Makefile @@ -15,12 +15,12 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Hash-Merge>=0.12:textproc/p5-Hash-Merge \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Hash-Merge>=0.12:textproc/p5-Hash-Merge \ p5-Moo>=2.000001:devel/p5-Moo \ p5-MRO-Compat>=0.12:devel/p5-MRO-Compat \ p5-Sub-Quote>=2.000001:devel/p5-Sub-Quote \ p5-Test-Deep>=0.101:devel/p5-Test-Deep -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-DBIx-Class>=0:databases/p5-DBIx-Class \ p5-Test-Exception>=0.31:devel/p5-Test-Exception \ p5-Test-Warn>=0:devel/p5-Test-Warn diff --git a/databases/p5-SQL-ReservedWords/Makefile b/databases/p5-SQL-ReservedWords/Makefile index b2723c5b09f..487fd33017c 100644 --- a/databases/p5-SQL-ReservedWords/Makefile +++ b/databases/p5-SQL-ReservedWords/Makefile @@ -14,8 +14,8 @@ COMMENT= Reserved SQL words by ANSI/ISO LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Sub-Exporter>=0:devel/p5-Sub-Exporter -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Sub-Exporter>=0:devel/p5-Sub-Exporter USES= perl5 USE_PERL5= configure diff --git a/databases/p5-SQL-Statement/Makefile b/databases/p5-SQL-Statement/Makefile index 64d34e89f7c..047ed42f479 100644 --- a/databases/p5-SQL-Statement/Makefile +++ b/databases/p5-SQL-Statement/Makefile @@ -15,10 +15,10 @@ LICENSE_COMB= dual LICENSE_FILE_ART10= ${WRKSRC}/ARTISTIC-1.0 LICENSE_FILE_GPLv1+ = ${WRKSRC}/GPL-1 -BUILD_DEPENDS= p5-Clone>=0.30:devel/p5-Clone \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Clone>=0.30:devel/p5-Clone \ p5-Module-Runtime>=0:devel/p5-Module-Runtime \ p5-Params-Util>=1.00:devel/p5-Params-Util -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/databases/p5-SQL-Translator/Makefile b/databases/p5-SQL-Translator/Makefile index 65859d9e503..1acf152b038 100644 --- a/databases/p5-SQL-Translator/Makefile +++ b/databases/p5-SQL-Translator/Makefile @@ -13,7 +13,8 @@ COMMENT= Manipulate structured data definitions (SQL and more) LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Carp-Clan>=0:devel/p5-Carp-Clan \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Carp-Clan>=0:devel/p5-Carp-Clan \ p5-DBI>=1.54:databases/p5-DBI \ p5-File-ShareDir>=1:devel/p5-File-ShareDir \ p5-JSON>=2:converters/p5-JSON \ @@ -28,7 +29,6 @@ BUILD_DEPENDS= p5-Carp-Clan>=0:devel/p5-Carp-Clan \ p5-XML-LibXML>=1.69:textproc/p5-XML-LibXML \ p5-strictures>=0:devel/p5-strictures \ p5-YAML>=0.66:textproc/p5-YAML -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-HTML-Parser>=0:www/p5-HTML-Parser \ p5-Test-Differences>=0.61:devel/p5-Test-Differences \ p5-Test-Exception>=0:devel/p5-Test-Exception diff --git a/databases/p5-SQLite-Work/Makefile b/databases/p5-SQLite-Work/Makefile index bd850eea436..8201ac8973c 100644 --- a/databases/p5-SQLite-Work/Makefile +++ b/databases/p5-SQLite-Work/Makefile @@ -17,11 +17,11 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-DBD-SQLite>=0:databases/p5-DBD-SQLite \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-DBD-SQLite>=0:databases/p5-DBD-SQLite \ p5-DBI>=0:databases/p5-DBI \ p5-Getopt-ArgvFile>=0:devel/p5-Getopt-ArgvFile \ p5-Text-NeatTemplate>=0:textproc/p5-Text-NeatTemplate -RUN_DEPENDS:= ${BUILD_DEPENDS} PORTSCOUT= skipv:0.0202,0.0501,0.1001,0.1002,0.1003 diff --git a/databases/p5-Search-InvertedIndex/Makefile b/databases/p5-Search-InvertedIndex/Makefile index cd2eabe10f7..bbfd83ac249 100644 --- a/databases/p5-Search-InvertedIndex/Makefile +++ b/databases/p5-Search-InvertedIndex/Makefile @@ -11,11 +11,11 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Manager for inverted index maps -BUILD_DEPENDS= p5-Class-NamedParms>=0:devel/p5-Class-NamedParms \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-NamedParms>=0:devel/p5-Class-NamedParms \ p5-Class-ParmList>=0:devel/p5-Class-ParmList \ p5-Tie-DB_File-SplitHash>=0:devel/p5-Tie-DB_File-SplitHash \ p5-Tie-FileLRUCache>=0:devel/p5-Tie-FileLRUCache -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/databases/p5-Search-Xapian10/Makefile b/databases/p5-Search-Xapian10/Makefile index e26435249f4..218922bfcde 100644 --- a/databases/p5-Search-Xapian10/Makefile +++ b/databases/p5-Search-Xapian10/Makefile @@ -15,8 +15,8 @@ COMMENT= Perl XS frontend to the Xapian C++ search library LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= xapian-core10>=1.0.22:databases/xapian-core10 -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= xapian-core10>=1.0.22:databases/xapian-core10 CONFLICTS_INSTALL= p5-Search-Xapian12 diff --git a/databases/p5-Store-CouchDB/Makefile b/databases/p5-Store-CouchDB/Makefile index ce180594c5e..770b6722ab6 100644 --- a/databases/p5-Store-CouchDB/Makefile +++ b/databases/p5-Store-CouchDB/Makefile @@ -12,14 +12,14 @@ COMMENT= Perl interface to Apache CouchDB LICENSE= ART10 -BUILD_DEPENDS= p5-Any-Moose>=0:devel/p5-Any-Moose \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Any-Moose>=0:devel/p5-Any-Moose \ p5-Data-Dump>=0:devel/p5-Data-Dump \ p5-Data-Printer>=0:devel/p5-Data-Printer \ p5-JSON-XS>=0:converters/p5-JSON-XS \ p5-libwww>=0:www/p5-libwww \ p5-Types-Serialiser>=0:devel/p5-Types-Serialiser \ p5-URI-Escape-XS>=0:www/p5-URI-Escape-XS -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/databases/p5-T2/Makefile b/databases/p5-T2/Makefile index 3729520f1ba..4e7df9c2d3e 100644 --- a/databases/p5-T2/Makefile +++ b/databases/p5-T2/Makefile @@ -15,11 +15,11 @@ COMMENT= Object Relational mapping system LICENSE= ART10 GPLv2 LICENSE_COMB= dual -BUILD_DEPENDS= p5-Class-Tangram>=0:devel/p5-Class-Tangram \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Tangram>=0:devel/p5-Class-Tangram \ p5-DBI>=0:databases/p5-DBI \ p5-Set-Object>=0:devel/p5-Set-Object \ p5-Tangram>=0:databases/p5-Tangram -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/databases/p5-Tangram/Makefile b/databases/p5-Tangram/Makefile index 15fd2225a3e..1f7f0a2223d 100644 --- a/databases/p5-Tangram/Makefile +++ b/databases/p5-Tangram/Makefile @@ -13,11 +13,11 @@ COMMENT= Orthogonal Object Persistence in Relational Databases LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING -BUILD_DEPENDS= p5-Class-Date>=0:devel/p5-Class-Date \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Date>=0:devel/p5-Class-Date \ p5-DBI>=0:databases/p5-DBI \ p5-Data-Lazy>=0.6:devel/p5-Data-Lazy \ p5-Set-Object>=1.1:devel/p5-Set-Object -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/databases/p5-Template-DBI/Makefile b/databases/p5-Template-DBI/Makefile index 7ffddc1ff23..b8f9266a6a2 100644 --- a/databases/p5-Template-DBI/Makefile +++ b/databases/p5-Template-DBI/Makefile @@ -11,11 +11,11 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Template::Plugin::DBI - Template interface to the DBI module -BUILD_DEPENDS= p5-Template-Toolkit>=0:www/p5-Template-Toolkit \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Template-Toolkit>=0:www/p5-Template-Toolkit \ p5-DBI>=0:databases/p5-DBI \ p5-SQL-Statement>=1.28:databases/p5-SQL-Statement \ p5-MLDBM>=0:databases/p5-MLDBM -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/databases/p5-Test-Cukes/Makefile b/databases/p5-Test-Cukes/Makefile index 0f48dccb39a..599db7c048b 100644 --- a/databases/p5-Test-Cukes/Makefile +++ b/databases/p5-Test-Cukes/Makefile @@ -11,11 +11,11 @@ PKGNAMEPREFIX= p5- MAINTAINER= wen@FreeBSD.org COMMENT= BBD test tool inspired by Cucumber -BUILD_DEPENDS= p5-Any-Moose>=0.10:devel/p5-Any-Moose \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Any-Moose>=0.10:devel/p5-Any-Moose \ p5-Carp-Assert>=0.20:devel/p5-Carp-Assert \ p5-Exporter-Lite>=0.02:devel/p5-Exporter-Lite \ p5-Try-Tiny>=0.07:lang/p5-Try-Tiny -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/databases/p5-Test-Database/Makefile b/databases/p5-Test-Database/Makefile index 13ec56d12ba..5bc84d5a0e8 100644 --- a/databases/p5-Test-Database/Makefile +++ b/databases/p5-Test-Database/Makefile @@ -14,10 +14,10 @@ COMMENT= Database handles ready for testing LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-DBI>=0:databases/p5-DBI \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-DBI>=0:databases/p5-DBI \ p5-YAML-Tiny>=0:textproc/p5-YAML-Tiny \ p5-File-HomeDir>=0.84:devel/p5-File-HomeDir -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/databases/p5-Test-DatabaseRow/Makefile b/databases/p5-Test-DatabaseRow/Makefile index 1bcdd52f5b2..1a06eda1d24 100644 --- a/databases/p5-Test-DatabaseRow/Makefile +++ b/databases/p5-Test-DatabaseRow/Makefile @@ -13,8 +13,8 @@ COMMENT= Simple database tests LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-DBI>=0:databases/p5-DBI -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-DBI>=0:databases/p5-DBI NO_ARCH= yes USES= perl5 diff --git a/databases/p5-Text-Query-SQL/Makefile b/databases/p5-Text-Query-SQL/Makefile index c4811b8fa95..e43ba287129 100644 --- a/databases/p5-Text-Query-SQL/Makefile +++ b/databases/p5-Text-Query-SQL/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Text-Query-SQL provides query builders for SQL databases -BUILD_DEPENDS= p5-Text-Query>=0:textproc/p5-Text-Query -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Text-Query>=0:textproc/p5-Text-Query TEST_DEPENDS= p5-DBI>=0:databases/p5-DBI USES= perl5 diff --git a/databases/p5-mysql-genocide/Makefile b/databases/p5-mysql-genocide/Makefile index 08074da362b..71fc19e705b 100644 --- a/databases/p5-mysql-genocide/Makefile +++ b/databases/p5-mysql-genocide/Makefile @@ -12,8 +12,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Parallel operation on MySQL processlist -BUILD_DEPENDS= p5-DBD-mysql>=0:databases/p5-DBD-mysql -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-DBD-mysql>=0:databases/p5-DBD-mysql USES= perl5 USE_PERL5= configure diff --git a/databases/percona57-client/Makefile b/databases/percona57-client/Makefile index e84e735b6df..1f779a95845 100644 --- a/databases/percona57-client/Makefile +++ b/databases/percona57-client/Makefile @@ -9,8 +9,6 @@ COMMENT= Multithreaded SQL database (client) LICENSE= GPLv2+ -BROKEN_powerpc64= fails to configure: CMake Error at cmake/os/FreeBSD.cmake:34: Unsupported compiler! - MASTERDIR= ${.CURDIR}/../percona57-server OPTIONS_EXCLUDE=TOKUDB diff --git a/databases/percona57-client/files/patch-cmake_os_FreeBSD.cmake b/databases/percona57-client/files/patch-cmake_os_FreeBSD.cmake new file mode 100644 index 00000000000..9746d92fdfd --- /dev/null +++ b/databases/percona57-client/files/patch-cmake_os_FreeBSD.cmake @@ -0,0 +1,11 @@ +--- cmake/os/FreeBSD.cmake.orig 2018-09-27 09:15:26 UTC ++++ cmake/os/FreeBSD.cmake +@@ -30,8 +30,6 @@ IF(NOT FORCE_UNSUPPORTED_COMPILER) + IF(NOT HAVE_SUPPORTED_CLANG_VERSION) + MESSAGE(FATAL_ERROR "Clang 3.3 or newer is required!") + ENDIF() +- ELSE() +- MESSAGE(FATAL_ERROR "Unsupported compiler!") + ENDIF() + ENDIF() + diff --git a/databases/percona57-pam-for-mysql/Makefile b/databases/percona57-pam-for-mysql/Makefile index 84b33d0b704..770085de3d3 100644 --- a/databases/percona57-pam-for-mysql/Makefile +++ b/databases/percona57-pam-for-mysql/Makefile @@ -9,8 +9,6 @@ COMMENT= PAM plugin for MySQL LICENSE= GPLv2+ -BROKEN_powerpc64= fails to configure: CMake Error at cmake/os/FreeBSD.cmake:34: Unsupported compiler! - RUN_DEPENDS=# This plugin has no run dependencies. It should work with any desired mysql client/server. MASTERDIR= ${.CURDIR}/../percona57-server diff --git a/databases/puppetdb-cli/Makefile b/databases/puppetdb-cli/Makefile index 3bcd2aa637e..e4d644f08ce 100644 --- a/databases/puppetdb-cli/Makefile +++ b/databases/puppetdb-cli/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= puppetdb-cli -PORTVERSION= 1.2.4 +PORTVERSION= 1.2.5 PORTREVISION= 1 CATEGORIES= databases diff --git a/databases/puppetdb-cli/distinfo b/databases/puppetdb-cli/distinfo index c28da54adc1..dbee84ccd00 100644 --- a/databases/puppetdb-cli/distinfo +++ b/databases/puppetdb-cli/distinfo @@ -1,4 +1,4 @@ -TIMESTAMP = 1532332053 +TIMESTAMP = 1538219273 SHA256 (rust/crates/advapi32-sys-0.2.0.tar.gz) = e06588080cb19d0acb6739808aafa5f26bfb2ca015b2b6370028b44cf7cb8a9a SIZE (rust/crates/advapi32-sys-0.2.0.tar.gz) = 7217 SHA256 (rust/crates/aho-corasick-0.6.4.tar.gz) = d6531d44de723825aa81398a6415283229725a00fa30713812ab9323faa82fc4 @@ -143,5 +143,5 @@ SHA256 (rust/crates/winapi-build-0.1.1.tar.gz) = 2d315eee3b34aca4797b2da6b13ed88 SIZE (rust/crates/winapi-build-0.1.1.tar.gz) = 669 SHA256 (rust/crates/winreg-0.4.0.tar.gz) = cbf285379f20d7f26abd990d9a566be9d31ab7a9d335299baaa1f0604f5f96af SIZE (rust/crates/winreg-0.4.0.tar.gz) = 14351 -SHA256 (puppetlabs-puppetdb-cli-1.2.4_GH0.tar.gz) = ff10df65af983f48541fcec16a52f2fa25d6bf9e793081506567daa4ded37a83 -SIZE (puppetlabs-puppetdb-cli-1.2.4_GH0.tar.gz) = 22726 +SHA256 (puppetlabs-puppetdb-cli-1.2.5_GH0.tar.gz) = 03790da4fdfde6a6c228e340a5a7fd94d80233b49b4c5aa3e377bdf6a78f8e0d +SIZE (puppetlabs-puppetdb-cli-1.2.5_GH0.tar.gz) = 22895 diff --git a/databases/py-marshmallow-sqlalchemy/Makefile b/databases/py-marshmallow-sqlalchemy/Makefile index 54271dbf13c..a6ac3900aad 100644 --- a/databases/py-marshmallow-sqlalchemy/Makefile +++ b/databases/py-marshmallow-sqlalchemy/Makefile @@ -7,7 +7,7 @@ CATEGORIES= databases python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -MAINTAINER= feld@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= SQLAlchemy integration with the marshmallow serialization library LICENSE= BSD3CLAUSE diff --git a/databases/py-zodbpickle/Makefile b/databases/py-zodbpickle/Makefile index 58a82a1210f..f79cb48c66f 100644 --- a/databases/py-zodbpickle/Makefile +++ b/databases/py-zodbpickle/Makefile @@ -7,7 +7,7 @@ CATEGORIES= databases python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -MAINTAINER= feld@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Python pickling interface for ZODB LICENSE= PSFL ZPL21 diff --git a/databases/rubygem-dbf/Makefile b/databases/rubygem-dbf/Makefile index 840836cbb1f..44dde8f26db 100644 --- a/databases/rubygem-dbf/Makefile +++ b/databases/rubygem-dbf/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= dbf -PORTVERSION= 3.1.2 +PORTVERSION= 3.1.3 CATEGORIES= databases rubygems MASTER_SITES= RG @@ -12,9 +12,10 @@ COMMENT= Library for reading dBase, xBase, Clipper and FoxPro database files LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE -NO_ARCH= yes -USE_RUBY= yes USES= gem +USE_RUBY= yes + +NO_ARCH= yes PLIST_FILES= bin/dbf diff --git a/databases/rubygem-dbf/distinfo b/databases/rubygem-dbf/distinfo index 8d9c3263bbd..18c90e07b20 100644 --- a/databases/rubygem-dbf/distinfo +++ b/databases/rubygem-dbf/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1524750859 -SHA256 (rubygem/dbf-3.1.2.gem) = 36cb41bc70ab030b1eeb97b51c7cd0b1754932f46bc1ac4657f6aba3932d97eb -SIZE (rubygem/dbf-3.1.2.gem) = 127488 +TIMESTAMP = 1538591936 +SHA256 (rubygem/dbf-3.1.3.gem) = 88d26cb384003ad83039b0e54deb993c94f3c8c0144f04347693c7c3a2253eeb +SIZE (rubygem/dbf-3.1.3.gem) = 127488 diff --git a/databases/sqlcached/Makefile b/databases/sqlcached/Makefile index a6fa2740d0d..ac84ac19e3a 100644 --- a/databases/sqlcached/Makefile +++ b/databases/sqlcached/Makefile @@ -3,18 +3,14 @@ PORTNAME= sqlcached PORTVERSION= r6 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= databases net MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION} MAINTAINER= ivoras@FreeBSD.org COMMENT= Cache daemon using SQL for data manipulation -LIB_DEPENDS= libsqlite.so:databases/sqlite2 - -USES= readline ncurses tar:tgz - -LDFLAGS+= -L${LOCALBASE}/lib +USES= localbase:ldflags ncurses readline sqlite tar:tgz WRKSRC= ${WRKDIR}/${PORTNAME} @@ -26,7 +22,6 @@ PLIST_FILES= bin/${PORTNAME} etc/rc.d/${PORTNAME} \ OPTIONS_DEFINE= DOCS post-patch: - @${REINPLACE_CMD} -e 's|-lcurses|-lncurses|' ${WRKSRC}/Makefile @${REINPLACE_CMD} 's|/usr/local|${PREFIX}|' \ ${WRKSRC}/FreeBSD/${PORTNAME} diff --git a/databases/sqlcached/files/patch-Makefile b/databases/sqlcached/files/patch-Makefile new file mode 100644 index 00000000000..95aadbd63f2 --- /dev/null +++ b/databases/sqlcached/files/patch-Makefile @@ -0,0 +1,21 @@ +--- Makefile.orig 2013-09-26 13:45:50 UTC ++++ Makefile +@@ -1,7 +1,5 @@ +-MYCFLAGS=-O3 -Wall -I/usr/local/include #-g -pg +-MYLDFLAGS=-L/usr/local/lib -lsqlite #-g -pg +-#MYCFLAGS=-O3 -Wall -I/usr/local/include -DSQLITE3 +-#MYLDFLAGS=-L/usr/local/lib -lsqlite3 ++MYCFLAGS= ${CFLAGS} -DSQLITE3 ++MYLDFLAGS= ${LDFLAGS} -lsqlite3 + + all: sqlcached sc_client sc_client_bench libsqlcached_client.so libsqlcached_client.a + +@@ -20,7 +18,7 @@ server_protocol.o: server_protocol.c common.h + cc -o server_protocol.o -c server_protocol.c ${MYCFLAGS} + + sc_client: client.o sqlcached_client.o +- cc -o sc_client client.o sqlcached_client.o ${MYLDFLAGS} -lreadline -lcurses ++ cc -o sc_client client.o sqlcached_client.o ${MYLDFLAGS} -lreadline -lncurses + + client.o: client.c common.h + cc -o client.o -c client.c ${MYCFLAGS} diff --git a/deskutils/gnome-photos/Makefile b/deskutils/gnome-photos/Makefile index db2113dc19c..bcc9a96445e 100644 --- a/deskutils/gnome-photos/Makefile +++ b/deskutils/gnome-photos/Makefile @@ -3,6 +3,7 @@ PORTNAME= gnome-photos PORTVERSION= 3.28.0 +PORTREVISION= 1 CATEGORIES= deskutils gnome MASTER_SITES= GNOME DIST_SUBDIR= gnome3 @@ -18,7 +19,7 @@ BUILD_DEPENDS= geoclue>=0:net/geoclue \ LIB_DEPENDS= libexempi.so:textproc/exempi \ libfribidi.so:converters/fribidi \ libgfbgraph-0.2.so:net/gfbgraph \ - libgegl-0.3.so:graphics/gegl3 \ + libgegl-0.4.so:graphics/gegl \ libgrilo-0.3.so:net/grilo \ libexiv2.so:graphics/exiv2 \ libgexiv2.so:graphics/gexiv2 \ diff --git a/deskutils/gnome-photos/files/patch-configure b/deskutils/gnome-photos/files/patch-configure new file mode 100644 index 00000000000..215bf98260e --- /dev/null +++ b/deskutils/gnome-photos/files/patch-configure @@ -0,0 +1,61 @@ +--- configure.orig 2018-09-30 15:09:19.044612000 +0200 ++++ configure 2018-09-30 15:10:32.457663000 +0200 +@@ -6940,7 +6940,7 @@ + DAZZLE_MIN_VERSION=3.26.0 + GDATA_MIN_VERSION=0.15.2 + GDK_PIXBUF_MIN_VERSION=2.32 +-GEGL_MIN_VERSION=0.3.28 ++GEGL_MIN_VERSION=0.4.0 + GFBGRAPH_MIN_VERSION=0.2.1 + GLIB_MIN_VERSION=2.44.0 + GOA_MIN_VERSION=3.8.0 +@@ -17403,12 +17403,12 @@ + pkg_cv_GEGL_CFLAGS="$GEGL_CFLAGS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ +- { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gegl-0.3 >= \$GEGL_MIN_VERSION\""; } >&5 +- ($PKG_CONFIG --exists --print-errors "gegl-0.3 >= $GEGL_MIN_VERSION") 2>&5 ++ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gegl-0.4 >= \$GEGL_MIN_VERSION\""; } >&5 ++ ($PKG_CONFIG --exists --print-errors "gegl-0.4 >= $GEGL_MIN_VERSION") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then +- pkg_cv_GEGL_CFLAGS=`$PKG_CONFIG --cflags "gegl-0.3 >= $GEGL_MIN_VERSION" 2>/dev/null` ++ pkg_cv_GEGL_CFLAGS=`$PKG_CONFIG --cflags "gegl-0.4 >= $GEGL_MIN_VERSION" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes + else + pkg_failed=yes +@@ -17420,12 +17420,12 @@ + pkg_cv_GEGL_LIBS="$GEGL_LIBS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ +- { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gegl-0.3 >= \$GEGL_MIN_VERSION\""; } >&5 +- ($PKG_CONFIG --exists --print-errors "gegl-0.3 >= $GEGL_MIN_VERSION") 2>&5 ++ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gegl-0.4 >= \$GEGL_MIN_VERSION\""; } >&5 ++ ($PKG_CONFIG --exists --print-errors "gegl-0.4 >= $GEGL_MIN_VERSION") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then +- pkg_cv_GEGL_LIBS=`$PKG_CONFIG --libs "gegl-0.3 >= $GEGL_MIN_VERSION" 2>/dev/null` ++ pkg_cv_GEGL_LIBS=`$PKG_CONFIG --libs "gegl-0.4 >= $GEGL_MIN_VERSION" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes + else + pkg_failed=yes +@@ -17446,14 +17446,14 @@ + _pkg_short_errors_supported=no + fi + if test $_pkg_short_errors_supported = yes; then +- GEGL_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "gegl-0.3 >= $GEGL_MIN_VERSION" 2>&1` ++ GEGL_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "gegl-0.4 >= $GEGL_MIN_VERSION" 2>&1` + else +- GEGL_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "gegl-0.3 >= $GEGL_MIN_VERSION" 2>&1` ++ GEGL_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "gegl-0.4 >= $GEGL_MIN_VERSION" 2>&1` + fi + # Put the nasty error message in config.log where it belongs + echo "$GEGL_PKG_ERRORS" >&5 + +- as_fn_error $? "Package requirements (gegl-0.3 >= $GEGL_MIN_VERSION) were not met: ++ as_fn_error $? "Package requirements (gegl-0.4 >= $GEGL_MIN_VERSION) were not met: + + $GEGL_PKG_ERRORS + diff --git a/deskutils/note/Makefile b/deskutils/note/Makefile index 276aed5875e..5aebaf64c3d 100644 --- a/deskutils/note/Makefile +++ b/deskutils/note/Makefile @@ -6,7 +6,7 @@ PORTREVISION= 1 CATEGORIES= deskutils perl5 MASTER_SITES= http://www.daemon.de/idisk/Apps/note/ -MAINTAINER= lebarondemerde@privacychain.ch +MAINTAINER= rigoletto@FreeBSD.org COMMENT= Console based tool to handle encrypted notes LICENSE= GPLv1 diff --git a/deskutils/p5-Data-ICal/Makefile b/deskutils/p5-Data-ICal/Makefile index 269483ad06c..9db853f2765 100644 --- a/deskutils/p5-Data-ICal/Makefile +++ b/deskutils/p5-Data-ICal/Makefile @@ -13,10 +13,10 @@ COMMENT= Data::ICal - Generates iCalendar (RFC 2445) calendar files LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Class-Accessor>=0:devel/p5-Class-Accessor \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Accessor>=0:devel/p5-Class-Accessor \ p5-Class-ReturnValue>=0:devel/p5-Class-ReturnValue \ p5-Text-vFile-asData>=0:devel/p5-Text-vFile-asData -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-LongString>=0:devel/p5-Test-LongString \ p5-Test-NoWarnings>=0:devel/p5-Test-NoWarnings \ p5-Test-Pod>=1.14:devel/p5-Test-Pod \ diff --git a/deskutils/p5-Goo/Makefile b/deskutils/p5-Goo/Makefile index 8c52360d8ea..57db5a9ad7f 100644 --- a/deskutils/p5-Goo/Makefile +++ b/deskutils/p5-Goo/Makefile @@ -14,7 +14,8 @@ COMMENT= Stick Things together with The Goo LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Config-Auto>=0:devel/p5-Config-Auto \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Config-Auto>=0:devel/p5-Config-Auto \ p5-Config-Tiny>=0:devel/p5-Config-Tiny \ p5-DBD-SQLite>=0:databases/p5-DBD-SQLite \ p5-Devel-Symdump>=0:devel/p5-Devel-Symdump \ @@ -25,7 +26,6 @@ BUILD_DEPENDS= p5-Config-Auto>=0:devel/p5-Config-Auto \ p5-Term-ProgressBar>=0:devel/p5-Term-ProgressBar \ p5-Term-ReadKey>=0:devel/p5-Term-ReadKey \ p5-Text-FormatTable>=0:textproc/p5-Text-FormatTable -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 shebangfix SHEBANG_FILES= lib/Goo/Thing/*/*.pl diff --git a/deskutils/py-khal/Makefile b/deskutils/py-khal/Makefile index bce715d6d4b..184710deb78 100644 --- a/deskutils/py-khal/Makefile +++ b/deskutils/py-khal/Makefile @@ -8,7 +8,7 @@ CATEGORIES= deskutils python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -MAINTAINER= lebarondemerde@privacychain.ch +MAINTAINER= rigoletto@FreeBSD.org COMMENT= CalDAV-based calendar LICENSE= MIT diff --git a/deskutils/tagutils/Makefile b/deskutils/tagutils/Makefile index c5a52dccb49..e90187f4205 100644 --- a/deskutils/tagutils/Makefile +++ b/deskutils/tagutils/Makefile @@ -10,6 +10,9 @@ MASTER_SITES= http://releases.chipx86.com/leaftag/tagutils/ MAINTAINER= ports@FreeBSD.org COMMENT= Command line tool for tagging files +DEPRECATED= Unmaintained upstream +EXPIRATION_DATE= 2018-10-15 + LIB_DEPENDS= libleaftag.so:devel/libleaftag GNU_CONFIGURE= yes diff --git a/deskutils/znotes/Makefile b/deskutils/znotes/Makefile index ba0492191d6..ef343310f6e 100644 --- a/deskutils/znotes/Makefile +++ b/deskutils/znotes/Makefile @@ -6,7 +6,7 @@ PORTVERSION= 0.4.5.20150825 CATEGORIES= deskutils PKGNAMESUFFIX= -${FLAVOR} -MAINTAINER= lebarondemerde@privacychain.ch +MAINTAINER= rigoletto@FreeBSD.org COMMENT= Simple notes managment application based on Qt LICENSE= GPLv3 diff --git a/devel/Makefile b/devel/Makefile index 3088535b018..e2695bd901d 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -348,6 +348,7 @@ SUBDIR += containers SUBDIR += cook SUBDIR += courier-unicode + SUBDIR += coursier SUBDIR += covtool SUBDIR += cpan-upload SUBDIR += cpan-upload-http @@ -589,7 +590,6 @@ SUBDIR += erlang-parse_trans SUBDIR += erlang-poolboy SUBDIR += erlang-pooler - SUBDIR += erlang-protobuffs SUBDIR += erlang-providers SUBDIR += erlang-rebar3_hex SUBDIR += erlang-recon @@ -1370,6 +1370,7 @@ SUBDIR += libatomic_ops SUBDIR += libaura SUBDIR += libavl + SUBDIR += libb2 SUBDIR += libbde SUBDIR += libbegemot SUBDIR += libbfd @@ -4488,6 +4489,7 @@ SUBDIR += py-debtcollector SUBDIR += py-decorator SUBDIR += py-decoratortools + SUBDIR += py-deepdiff SUBDIR += py-defusedxml SUBDIR += py-delfick_error SUBDIR += py-deliciousapi @@ -4669,6 +4671,7 @@ SUBDIR += py-jsonlib2 SUBDIR += py-jsonlines SUBDIR += py-jsonpatch + SUBDIR += py-jsonpickle SUBDIR += py-jsonpointer SUBDIR += py-jsonref SUBDIR += py-jsonrpclib @@ -4695,6 +4698,7 @@ SUBDIR += py-lazr.delegates SUBDIR += py-lazy SUBDIR += py-lazy-object-proxy + SUBDIR += py-libiocage SUBDIR += py-liblarch SUBDIR += py-libpeas SUBDIR += py-libplist @@ -5511,6 +5515,7 @@ SUBDIR += rubygem-bugspots SUBDIR += rubygem-builder SUBDIR += rubygem-byebug + SUBDIR += rubygem-c21e SUBDIR += rubygem-cabin SUBDIR += rubygem-caesars SUBDIR += rubygem-cairo-gobject @@ -5562,6 +5567,8 @@ SUBDIR += rubygem-cucumber SUBDIR += rubygem-cucumber-core SUBDIR += rubygem-cucumber-expressions + SUBDIR += rubygem-cucumber-formatter-dots + SUBDIR += rubygem-cucumber-messages SUBDIR += rubygem-cucumber-tag_expressions SUBDIR += rubygem-cucumber-wire SUBDIR += rubygem-curses @@ -6121,6 +6128,7 @@ SUBDIR += sbt SUBDIR += scalatest SUBDIR += scandoc + SUBDIR += sccache SUBDIR += scons SUBDIR += sdl12 SUBDIR += sdl20 diff --git a/devel/ace/Makefile b/devel/ace/Makefile index aed55fc0356..68047bdaf03 100644 --- a/devel/ace/Makefile +++ b/devel/ace/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= ace -PORTVERSION= 6.4.3 +PORTVERSION= 6.5.2 CATEGORIES= devel MASTER_SITES= ftp://download.dre.vanderbilt.edu/previous_versions/ \ http://download.dre.vanderbilt.edu/previous_versions/ @@ -16,9 +16,12 @@ LICENSE_NAME= ACE LICENSE_FILE= ${WRKSRC}/COPYING LICENSE_PERMS= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept -WRKSRC= ${WRKDIR}/ACE_wrappers +BROKEN_aarch64= Fails to link: missing sbrk +BROKEN_powerpc= Does not compile on ${ARCH} +BROKEN_powerpc64= Does not build on ${ARCH}: undefined reference to fmodl +BROKEN_sparc64= Does not compile on ${ARCH} -USES= gmake perl5 pkgconfig shebangfix tar:bzip2 +USES= gmake localbase:ldflags perl5 pkgconfig shebangfix tar:bzip2 USE_PERL5= build SHEBANG_FILES= bin/*.pl MPC/*.pl MAKE_ENV= LD_LIBRARY_PATH="${WRKSRC}/lib" ACE_ROOT="${WRKSRC}" \ @@ -26,19 +29,12 @@ MAKE_ENV= LD_LIBRARY_PATH="${WRKSRC}/lib" ACE_ROOT="${WRKSRC}" \ MAKEFILE= GNUmakefile USE_LDCONFIG= yes -CPPFLAGS+= -I${LOCALBASE}/include -CPPFLAGS+= -D_WANT_SEMUN -LDFLAGS+= -L${LOCALBASE}/lib +WRKSRC= ${WRKDIR}/ACE_wrappers PLIST_SUB= VERSION="${PORTVERSION}" CONFLICTS= ace+tao-5* -BROKEN_aarch64= Fails to link: missing sbrk -BROKEN_powerpc= Does not compile on ${ARCH} -BROKEN_powerpc64= Does not build on ${ARCH}: undefined reference to fmodl -BROKEN_sparc64= Does not compile on ${ARCH} - OPTIONS_DEFINE= FLTK QT4 SSL TK TRIO X11 OPTIONS_DEFAULT= SSL OPTIONS_SUB= yes @@ -61,6 +57,8 @@ TRIO_MAKE_ENV= trio=1 X11_USE= XORG=xt X11_MAKE_ENV= xt=1 +CPPFLAGS+= -D_WANT_SEMUN + post-patch: @${REINPLACE_CMD} -e \ 's|/$$libdir/pkgconfig|/libdata/pkgconfig|g' \ diff --git a/devel/ace/distinfo b/devel/ace/distinfo index 26e598e527d..3182092e827 100644 --- a/devel/ace/distinfo +++ b/devel/ace/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1497530730 -SHA256 (ACE-6.4.3.tar.bz2) = b80e7b8137d48dc68b281233417fe19b21a904ea642a05ea795bd6a546bcbb1d -SIZE (ACE-6.4.3.tar.bz2) = 9074739 +TIMESTAMP = 1537466321 +SHA256 (ACE-6.5.2.tar.bz2) = f0393d6df25ee92e0cbc6539c68ccf122caae0ffd5ae9a786163403bb2306cc5 +SIZE (ACE-6.5.2.tar.bz2) = 8074873 diff --git a/devel/ace/files/patch-ace_SSL_SSL__Asynch__BIO.cpp b/devel/ace/files/patch-ace_SSL_SSL__Asynch__BIO.cpp new file mode 100644 index 00000000000..a326c55b67c --- /dev/null +++ b/devel/ace/files/patch-ace_SSL_SSL__Asynch__BIO.cpp @@ -0,0 +1,20 @@ +--- ace/SSL/SSL_Asynch_BIO.cpp.orig 2018-09-18 07:26:56 UTC ++++ ace/SSL/SSL_Asynch_BIO.cpp +@@ -41,7 +41,7 @@ extern "C" + + #define BIO_TYPE_ACE ( 21 | BIO_TYPE_SOURCE_SINK ) + +-#if OPENSSL_VERSION_NUMBER < 0x10100000L ++#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER) + static BIO_METHOD methods_ACE = + { + BIO_TYPE_ACE, // BIO_TYPE_PROXY_SERVER, +@@ -75,7 +75,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL + BIO * + ACE_SSL_make_BIO (void * ssl_asynch_stream) + { +-#if OPENSSL_VERSION_NUMBER < 0x10100000L ++#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER) + BIO * const pBIO = BIO_new (&methods_ACE); + #else + if (!methods_ACE) diff --git a/devel/ace/files/patch-ace__SSL__SSL_Context.cpp b/devel/ace/files/patch-ace__SSL__SSL_Context.cpp index 6393f281be1..0ed08c9ac2e 100644 --- a/devel/ace/files/patch-ace__SSL__SSL_Context.cpp +++ b/devel/ace/files/patch-ace__SSL__SSL_Context.cpp @@ -1,6 +1,6 @@ ---- ace/SSL/SSL_Context.cpp.orig 2016-05-02 07:59:38 UTC +--- ace/SSL/SSL_Context.cpp.orig 2018-09-18 07:26:56 UTC +++ ace/SSL/SSL_Context.cpp -@@ -352,7 +352,7 @@ ACE_SSL_Context::filter_versions (const +@@ -356,7 +356,7 @@ ACE_SSL_Context::filter_versions (const bool ACE_SSL_Context::check_host (const ACE_INET_Addr &host, SSL *peerssl) { @@ -9,12 +9,3 @@ this->check_context (); -@@ -629,7 +629,7 @@ ACE_SSL_Context::random_seed (const char - int - ACE_SSL_Context::egd_file (const char * socket_file) - { --#if OPENSSL_VERSION_NUMBER < 0x00905100L -+#if OPENSSL_VERSION_NUMBER < 0x00905100L || defined(LIBRESSL_VERSION_NUMBER) - // OpenSSL < 0.9.5 doesn't have EGD support. - ACE_UNUSED_ARG (socket_file); - ACE_NOTSUP_RETURN (-1); diff --git a/devel/ace/files/patch-tests_Chrono__Test.cpp b/devel/ace/files/patch-tests_Chrono__Test.cpp new file mode 100644 index 00000000000..f16ca90e938 --- /dev/null +++ b/devel/ace/files/patch-tests_Chrono__Test.cpp @@ -0,0 +1,11 @@ +--- tests/Chrono_Test.cpp.orig 2018-10-05 15:55:54 UTC ++++ tests/Chrono_Test.cpp +@@ -208,7 +208,7 @@ test_streamers () + std::chrono::seconds day_test_ts { day_test_h+day_test_s }; + std::chrono::microseconds day_test_tus { day_test_ms+day_test_us }; + ACE_Time_Value const test_day { +- ACE_Time_Value { day_test_ts.count (), ACE_Utils::truncate_cast(day_test_tus.count ()) }}; ++ ACE_Time_Value { (int)(day_test_ts.count ()), ACE_Utils::truncate_cast(day_test_tus.count ()) }}; + + constexpr int expected_min {nr_hours * 60}; + constexpr int64_t expected_sec { expected_min * 60 + 54 }; diff --git a/devel/ace/pkg-plist b/devel/ace/pkg-plist index 9ea2ba9de94..7a34888bbfc 100644 --- a/devel/ace/pkg-plist +++ b/devel/ace/pkg-plist @@ -1105,12 +1105,14 @@ include/ace/config-lite.h include/ace/config-lynxos.h include/ace/config-lynxos-178.h include/ace/config-macosx-elcapitan.h +include/ace/config-macosx-highsierra.h include/ace/config-macosx-iOS-hardware.h include/ace/config-macosx-iOS-simulator.h include/ace/config-macosx-jaguar.h include/ace/config-macosx-leopard.h include/ace/config-macosx-lion.h include/ace/config-macosx-mavericks.h +include/ace/config-macosx-mojave.h include/ace/config-macosx-mountainlion.h include/ace/config-macosx-panther.h include/ace/config-macosx-sierra.h @@ -1380,6 +1382,9 @@ libdata/pkgconfig/Kokyu.pc %%DATADIR%%/bin/MakeProjectCreator/config/ace_qt.mpb %%DATADIR%%/bin/MakeProjectCreator/config/ace_qt4.mpb %%DATADIR%%/bin/MakeProjectCreator/config/ace_qt4reactor.mpb +%%DATADIR%%/bin/MakeProjectCreator/config/ace_qt5.mpb +%%DATADIR%%/bin/MakeProjectCreator/config/ace_qt5reactor.mpb +%%DATADIR%%/bin/MakeProjectCreator/config/ace_qtreactor.mpb %%DATADIR%%/bin/MakeProjectCreator/config/ace_rlecompressionlib.mpb %%DATADIR%%/bin/MakeProjectCreator/config/ace_tk.mpb %%DATADIR%%/bin/MakeProjectCreator/config/ace_tkreactor.mpb @@ -1523,12 +1528,14 @@ libdata/pkgconfig/Kokyu.pc %%DATADIR%%/include/makeinclude/platform_macosx.GNU %%DATADIR%%/include/makeinclude/platform_macosx_common.GNU %%DATADIR%%/include/makeinclude/platform_macosx_elcapitan.GNU +%%DATADIR%%/include/makeinclude/platform_macosx_highsierra.GNU %%DATADIR%%/include/makeinclude/platform_macosx_iOS.GNU %%DATADIR%%/include/makeinclude/platform_macosx_icc.GNU %%DATADIR%%/include/makeinclude/platform_macosx_jaguar.GNU %%DATADIR%%/include/makeinclude/platform_macosx_leopard.GNU %%DATADIR%%/include/makeinclude/platform_macosx_lion.GNU %%DATADIR%%/include/makeinclude/platform_macosx_mavericks.GNU +%%DATADIR%%/include/makeinclude/platform_macosx_mojave.GNU %%DATADIR%%/include/makeinclude/platform_macosx_mountainlion.GNU %%DATADIR%%/include/makeinclude/platform_macosx_panther.GNU %%DATADIR%%/include/makeinclude/platform_macosx_sierra.GNU diff --git a/devel/awscli/Makefile b/devel/awscli/Makefile index 8a3fe61344c..560dfcc22b0 100644 --- a/devel/awscli/Makefile +++ b/devel/awscli/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= awscli -PORTVERSION= 1.16.22 +PORTVERSION= 1.16.28 CATEGORIES= devel MASTER_SITES= CHEESESHOP @@ -12,7 +12,7 @@ COMMENT= Universal Command Line Interface for Amazon Web Services LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}botocore>=1.12.12:devel/py-botocore@${PY_FLAVOR} \ +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}botocore>=1.12.18:devel/py-botocore@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}colorama>=0.2.5:devel/py-colorama@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}s3transfer>=0.1.12:net/py-s3transfer@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}docutils>=0.10:textproc/py-docutils@${PY_FLAVOR} \ diff --git a/devel/awscli/distinfo b/devel/awscli/distinfo index df62407c557..99f8c8b9e81 100644 --- a/devel/awscli/distinfo +++ b/devel/awscli/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1538021346 -SHA256 (awscli-1.16.22.tar.gz) = 1added8bc5b605aec216f118893b1f63cea96bd4ff22978fb2d0cd1ac494e058 -SIZE (awscli-1.16.22.tar.gz) = 631287 +TIMESTAMP = 1538856988 +SHA256 (awscli-1.16.28.tar.gz) = 5e0ac39318e0b38cedc1538d3bb3482b15e40627b2b8a72fc32203160a817854 +SIZE (awscli-1.16.28.tar.gz) = 636278 diff --git a/devel/blitz/Makefile b/devel/blitz/Makefile index ae23eb092da..9f2f2e70c82 100644 --- a/devel/blitz/Makefile +++ b/devel/blitz/Makefile @@ -2,7 +2,7 @@ PORTNAME= blitz DISTVERSION= 1.0.1 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= devel science MAINTAINER= yuri@FreeBSD.org diff --git a/devel/bmake/Makefile b/devel/bmake/Makefile index 876750ddbbc..4f217b72d37 100644 --- a/devel/bmake/Makefile +++ b/devel/bmake/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= bmake -PORTVERSION= 20180512 +PORTVERSION= 20180919 CATEGORIES= devel MASTER_SITES= ftp://ftp.netbsd.org/pub/NetBSD/misc/sjg/ diff --git a/devel/bmake/distinfo b/devel/bmake/distinfo index e131b29536f..5b20d636a9b 100644 --- a/devel/bmake/distinfo +++ b/devel/bmake/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1527348683 -SHA256 (bmake-20180512.tar.gz) = ac3cd262065fcc20c1dec7c95f06306c8138b3e17025b949343a06a8980a5508 -SIZE (bmake-20180512.tar.gz) = 557479 +TIMESTAMP = 1538814340 +SHA256 (bmake-20180919.tar.gz) = b0dd038583fe4a627f52f109887b71d365d8c51ec87f0e3fcb3ab6a9124eccee +SIZE (bmake-20180919.tar.gz) = 558162 diff --git a/devel/ccache/Makefile b/devel/ccache/Makefile index c0a206f8723..de0f550598b 100644 --- a/devel/ccache/Makefile +++ b/devel/ccache/Makefile @@ -2,8 +2,12 @@ # $FreeBSD$ PORTNAME= ccache -PORTVERSION= 3.4.2 -PORTREVISION= 1 +.if defined(OPTIONS_SLAVE) && ${OPTIONS_SLAVE:MMEMCACHED} +PORTVERSION= 3.5.dev.20180926 +.else +PORTVERSION= 3.4.3 +.endif +PORTREVISION= 0 CATEGORIES= devel MASTER_SITES= https://www.samba.org/ftp/ccache/ \ LOCAL/bdrewery @@ -70,11 +74,17 @@ STATIC_LDFLAGS= -static .if ${PORT_OPTIONS:MMEMCACHED} USE_GITHUB= yes -GH_TAGNAME= dd9123d3bc0763ef7133330e20ca3e3409a08904 +GH_TAGNAME= f7712082106bef085515f86ae47e7dbbd2a48b57 MASTER_SITES= DISTINFO_FILE= ${MASTERDIR}/distinfo.memcached +.if ${PORT_OPTIONS:MDOCS} BUILD_DEPENDS+= ${LOCALBASE}/bin/a2x:textproc/asciidoc ALL_TARGET= all docs +PLIST_FILES+= man/man1/ccache.1.gz +.endif +.else +# Only needed pre-3.5 +EXTRA_PATCHES+= ${FILESDIR}/extra-patch-configure.ac .endif .include @@ -125,7 +135,11 @@ post-build-TINDERBOX-on: do-install: ${INSTALL_PROGRAM} ${WRKSRC}/ccache ${STAGEDIR}${PREFIX}/bin + # Memcached uses the 3.5 dev branch which requires asciidoc to generate + # ccache.1. +.if !${PORT_OPTIONS:MMEMCACHED} || ${PORT_OPTIONS:MDOCS} ${INSTALL_MAN} ${WRKSRC}/doc/ccache.1 ${STAGEDIR}${PREFIX}/man/man1 +.endif ${MKDIR} ${STAGEDIR}${PREFIX}/${CCLINKDIR}/world ${INSTALL_SCRIPT} ${WRKDIR}/world-ccache \ ${STAGEDIR}${PREFIX}/${CCLINKDIR}/world/ccache diff --git a/devel/ccache/distinfo b/devel/ccache/distinfo index efed682aaf9..8fabc974a6d 100644 --- a/devel/ccache/distinfo +++ b/devel/ccache/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1530039944 -SHA256 (ccache-3.4.2.tar.gz) = b2264923c63e2b90a17cf56acb1df3f4229c416fb88e476e5ec7e02919d319c3 -SIZE (ccache-3.4.2.tar.gz) = 460637 +TIMESTAMP = 1538593366 +SHA256 (ccache-3.4.3.tar.gz) = 6ee63d919274da937cbcb2870da16a3b386e100f7f942ea8b7f081652df3d00b +SIZE (ccache-3.4.3.tar.gz) = 466575 diff --git a/devel/ccache/distinfo.memcached b/devel/ccache/distinfo.memcached index f69788ec8e4..18e39b46569 100644 --- a/devel/ccache/distinfo.memcached +++ b/devel/ccache/distinfo.memcached @@ -1,3 +1,3 @@ -TIMESTAMP = 1530040182 -SHA256 (ccache-ccache-3.4.2-dd9123d3bc0763ef7133330e20ca3e3409a08904_GH0.tar.gz) = 842b55b091f21878c4d4eb3900fa7501f632af5d39d42b5cb81ce47d231da40f -SIZE (ccache-ccache-3.4.2-dd9123d3bc0763ef7133330e20ca3e3409a08904_GH0.tar.gz) = 358431 +TIMESTAMP = 1538593371 +SHA256 (ccache-ccache-3.5.dev.20180926-f7712082106bef085515f86ae47e7dbbd2a48b57_GH0.tar.gz) = 7d615ffb6c72b5accc6801d9302cf6109731f605e4b9a08fcb9667a7cbacdd82 +SIZE (ccache-ccache-3.5.dev.20180926-f7712082106bef085515f86ae47e7dbbd2a48b57_GH0.tar.gz) = 367922 diff --git a/devel/ccache/files/patch-configure.ac b/devel/ccache/files/extra-patch-configure.ac similarity index 100% rename from devel/ccache/files/patch-configure.ac rename to devel/ccache/files/extra-patch-configure.ac diff --git a/devel/ccache/files/extra-patch-memcached-Makefile.in b/devel/ccache/files/extra-patch-memcached-Makefile.in index 2af101a56c4..4d3c9bed421 100644 --- a/devel/ccache/files/extra-patch-memcached-Makefile.in +++ b/devel/ccache/files/extra-patch-memcached-Makefile.in @@ -1,3 +1,6 @@ +libmemcached is a c++ library. To link statically we need to use cxx rather +than cc to ensure libc++ is linked in. + --- Makefile.in.orig 2017-03-09 13:00:34.016595000 -0800 +++ Makefile.in 2017-03-09 13:00:39.656086000 -0800 @@ -74,7 +74,7 @@ files_to_distclean = Makefile config.h c diff --git a/devel/ccache/pkg-plist b/devel/ccache/pkg-plist index c3327694fe5..8f6ad6707c8 100644 --- a/devel/ccache/pkg-plist +++ b/devel/ccache/pkg-plist @@ -1,6 +1,6 @@ bin/ccache bin/ccache-update-links -man/man1/ccache.1.gz +%%NO_MEMCACHED%%man/man1/ccache.1.gz %%CCLINKDIR%%/world/ccache %%TINDERBOX%%%%DATADIR%%/ccache.tar @postexec echo "Create compiler links..." diff --git a/devel/cctz/Makefile b/devel/cctz/Makefile index b1561a89c33..dc9f06c5380 100644 --- a/devel/cctz/Makefile +++ b/devel/cctz/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= cctz -PORTVERSION= 2.1 +PORTVERSION= 2.2 PORTREVISION= 1 DISTVERSIONPREFIX= v CATEGORIES= devel @@ -12,8 +12,8 @@ COMMENT= C++ library for handling dates, times, and time zones LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt -USES= compiler:c++11-lib gmake GH_ACCOUNT= google +USES= compiler:c++11-lib gmake USE_GITHUB= yes MAKE_ARGS+= CXX=${CXX} \ @@ -24,7 +24,6 @@ PLIST_FILES= include/cctz/civil_time.h \ include/cctz/time_zone.h \ include/cctz/zone_info_source.h \ lib/libcctz.a - PORTDOCS= README.md OPTIONS_DEFINE= DOCS diff --git a/devel/cctz/distinfo b/devel/cctz/distinfo index bdcee105bf5..6fd030fa3dc 100644 --- a/devel/cctz/distinfo +++ b/devel/cctz/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1525507752 -SHA256 (google-cctz-v2.1_GH0.tar.gz) = a86b9b2d339f5638a03a4bbcc1d8c632d2c429aecc44f5c548839c239c3b6e38 -SIZE (google-cctz-v2.1_GH0.tar.gz) = 84190 +TIMESTAMP = 1525700523 +SHA256 (google-cctz-v2.2_GH0.tar.gz) = ab315d5beb18a65ace57f6ea91f9ea298ec163fee89f84a44e81732af4d07348 +SIZE (google-cctz-v2.2_GH0.tar.gz) = 294330 diff --git a/devel/coursier/Makefile b/devel/coursier/Makefile new file mode 100644 index 00000000000..f18db6c595d --- /dev/null +++ b/devel/coursier/Makefile @@ -0,0 +1,33 @@ +# $FreeBSD$ + +PORTNAME= coursier +DISTVERSIONPREFIX= v +DISTVERSION= 1.0.1 +CATEGORIES= devel java + +MAINTAINER= jhyphenkeck@gmail.com +COMMENT= Pure Scala Artifact Fetching + +LICENSE= APACHE20 +LICENSE_FILE= ${WRKSRC}/LICENSE + +USE_GITHUB= yes +USE_JAVA= yes + +NO_ARCH= yes +NO_BUILD= yes + +PLIST_FILES= bin/coursier + +OPTIONS_DEFINE= DOCS + +PORTDOCS= README.md + +do-install: + ${INSTALL_SCRIPT} ${WRKSRC}/coursier ${STAGEDIR}${PREFIX}/bin + +do-install-DOCS-on: + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/README.md ${STAGEDIR}${DOCSDIR} + +.include diff --git a/devel/coursier/distinfo b/devel/coursier/distinfo new file mode 100644 index 00000000000..8ac5ae8ee5d --- /dev/null +++ b/devel/coursier/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1538332835 +SHA256 (coursier-coursier-v1.0.1_GH0.tar.gz) = d50455bd990ad475f6aa7c1029f3831d7fa5e3e6a8032fb1f7bee841cc8af871 +SIZE (coursier-coursier-v1.0.1_GH0.tar.gz) = 324710 diff --git a/devel/coursier/pkg-descr b/devel/coursier/pkg-descr new file mode 100644 index 00000000000..a0c63c3dcfd --- /dev/null +++ b/devel/coursier/pkg-descr @@ -0,0 +1,4 @@ +Coursier can fetch, launch, and create tiny bootstrap launchers +from apps distributed via Maven / Ivy repositories. + +WWW: http://get-coursier.io diff --git a/devel/erlang-protobuffs/Makefile b/devel/erlang-protobuffs/Makefile deleted file mode 100644 index bff25ae8d94..00000000000 --- a/devel/erlang-protobuffs/Makefile +++ /dev/null @@ -1,23 +0,0 @@ -# $FreeBSD$ - -PORTNAME= protobuffs -PORTVERSION= 0.9.1 -CATEGORIES= devel -PKGNAMEPREFIX= erlang- - -MAINTAINER= erlang@FreeBSD.org -COMMENT= Protocol Buffers interface for Erlang - -LICENSE= APACHE20 - -DEPRECATED= upstream deprecated -EXPIRATION_DATE=2018-10-01 - -USES= erlang:rebar -USE_GITHUB= yes -GH_ACCOUNT= basho -GH_PROJECT= erlang_protobuffs - -OPTIONS_DEFINE= DOCS - -.include diff --git a/devel/erlang-protobuffs/distinfo b/devel/erlang-protobuffs/distinfo deleted file mode 100644 index 0e726e978c3..00000000000 --- a/devel/erlang-protobuffs/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -TIMESTAMP = 1530991670 -SHA256 (basho-erlang_protobuffs-0.9.1_GH0.tar.gz) = c2b60642c7ed230480e11442fe0d3ebaad7e635ed7da92389d38636a84232a34 -SIZE (basho-erlang_protobuffs-0.9.1_GH0.tar.gz) = 237808 diff --git a/devel/erlang-protobuffs/files/patch-rebar.config b/devel/erlang-protobuffs/files/patch-rebar.config deleted file mode 100644 index 40f3926c2ba..00000000000 --- a/devel/erlang-protobuffs/files/patch-rebar.config +++ /dev/null @@ -1,10 +0,0 @@ ---- rebar.config.orig 2016-07-11 16:31:36 UTC -+++ rebar.config -@@ -1,7 +1,6 @@ - {erl_opts, [debug_info]}. - - {deps,[ -- {meck, "0.8.*", {git, "https://github.com/basho/meck.git", {tag, "0.8.2"}}} - ]}. - - {clean_files, ["*~","**/*~","**/*.beam","logs/*","test/Emakefile"]}. diff --git a/devel/erlang-protobuffs/pkg-descr b/devel/erlang-protobuffs/pkg-descr deleted file mode 100644 index 8876288ce83..00000000000 --- a/devel/erlang-protobuffs/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -Protocol Buffers interface for Erlang. - -WWW: https://github.com/basho/erlang_protobuffs diff --git a/devel/erlang-protobuffs/pkg-plist b/devel/erlang-protobuffs/pkg-plist deleted file mode 100644 index b5f688d741c..00000000000 --- a/devel/erlang-protobuffs/pkg-plist +++ /dev/null @@ -1,21 +0,0 @@ -lib/erlang/lib/protobuffs-%%VERSION%%/ebin/pokemon_pb.beam -lib/erlang/lib/protobuffs-%%VERSION%%/ebin/protobuffs.app -lib/erlang/lib/protobuffs-%%VERSION%%/ebin/protobuffs.beam -lib/erlang/lib/protobuffs-%%VERSION%%/ebin/protobuffs_cli.beam -lib/erlang/lib/protobuffs-%%VERSION%%/ebin/protobuffs_compile.beam -lib/erlang/lib/protobuffs-%%VERSION%%/ebin/protobuffs_file.beam -lib/erlang/lib/protobuffs-%%VERSION%%/ebin/protobuffs_parser.beam -lib/erlang/lib/protobuffs-%%VERSION%%/ebin/protobuffs_scanner.beam -lib/erlang/lib/protobuffs-%%VERSION%%/src/overview.edoc -lib/erlang/lib/protobuffs-%%VERSION%%/src/pokemon_pb.erl -lib/erlang/lib/protobuffs-%%VERSION%%/src/protobuffs.app.src -lib/erlang/lib/protobuffs-%%VERSION%%/src/protobuffs.erl -lib/erlang/lib/protobuffs-%%VERSION%%/src/protobuffs_cli.erl -lib/erlang/lib/protobuffs-%%VERSION%%/src/protobuffs_compile.erl -lib/erlang/lib/protobuffs-%%VERSION%%/src/protobuffs_file.erl -lib/erlang/lib/protobuffs-%%VERSION%%/src/protobuffs_parser.erl -lib/erlang/lib/protobuffs-%%VERSION%%/src/protobuffs_parser.yrl -lib/erlang/lib/protobuffs-%%VERSION%%/src/protobuffs_scanner.erl -lib/erlang/lib/protobuffs-%%VERSION%%/src/protobuffs_scanner.xrl -%%PORTDOCS%%%%DOCSDIR%%/README.md -%%PORTDOCS%%%%DOCSDIR%%/README_ORIG.md diff --git a/devel/flatbuffers/Makefile b/devel/flatbuffers/Makefile index 14563fcd53a..c538992b398 100644 --- a/devel/flatbuffers/Makefile +++ b/devel/flatbuffers/Makefile @@ -3,8 +3,7 @@ PORTNAME= flatbuffers DISTVERSIONPREFIX= v -DISTVERSION= 1.9.0 -PORTREVISION= 1 +DISTVERSION= 1.10.0 CATEGORIES= devel MAINTAINER= yuri@FreeBSD.org diff --git a/devel/flatbuffers/distinfo b/devel/flatbuffers/distinfo index 97b1d201002..1aa0e94bee1 100644 --- a/devel/flatbuffers/distinfo +++ b/devel/flatbuffers/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1522993976 -SHA256 (google-flatbuffers-v1.9.0_GH0.tar.gz) = 5ca5491e4260cacae30f1a5786d109230db3f3a6e5a0eb45d0d0608293d247e3 -SIZE (google-flatbuffers-v1.9.0_GH0.tar.gz) = 681752 +TIMESTAMP = 1538874460 +SHA256 (google-flatbuffers-v1.10.0_GH0.tar.gz) = 3714e3db8c51e43028e10ad7adffb9a36fc4aa5b1a363c2d0c4303dd1be59a7c +SIZE (google-flatbuffers-v1.10.0_GH0.tar.gz) = 817750 diff --git a/devel/git-cinnabar/Makefile b/devel/git-cinnabar/Makefile index ba55a6e7fe9..354d18131eb 100644 --- a/devel/git-cinnabar/Makefile +++ b/devel/git-cinnabar/Makefile @@ -3,6 +3,7 @@ PORTNAME= git-cinnabar DISTVERSION= 0.5.0-31 DISTVERSIONSUFFIX= -gcb81a59 +PORTREVISION= 1 CATEGORIES= devel MAINTAINER= jbeich@FreeBSD.org diff --git a/devel/gitolite/Makefile b/devel/gitolite/Makefile index 5030ad78382..6ec01b5ce9f 100644 --- a/devel/gitolite/Makefile +++ b/devel/gitolite/Makefile @@ -2,7 +2,7 @@ PORTNAME= gitolite DISTVERSIONPREFIX=v -DISTVERSION= 3.6.9 +DISTVERSION= 3.6.10 PORTEPOCH= 1 CATEGORIES= devel diff --git a/devel/gitolite/distinfo b/devel/gitolite/distinfo index e7f4d5cbec5..0ccff2afa7a 100644 --- a/devel/gitolite/distinfo +++ b/devel/gitolite/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1536571778 -SHA256 (sitaramc-gitolite-v3.6.9_GH0.tar.gz) = 771ae7b5731d4ac6cace8b589c5903dc82ddaa4127691f487183e58764d2a4c3 -SIZE (sitaramc-gitolite-v3.6.9_GH0.tar.gz) = 198229 +TIMESTAMP = 1538641660 +SHA256 (sitaramc-gitolite-v3.6.10_GH0.tar.gz) = 0ae3bea637b25cff13826e5ecd181c7b74a6eff377cf4c2243d85c2b0a290d3f +SIZE (sitaramc-gitolite-v3.6.10_GH0.tar.gz) = 198151 diff --git a/devel/grv/Makefile b/devel/grv/Makefile index 59fd460ad8b..6a3f901ed9d 100644 --- a/devel/grv/Makefile +++ b/devel/grv/Makefile @@ -2,7 +2,7 @@ PORTNAME= grv DISTVERSIONPREFIX= v -DISTVERSION= 0.2.0 +DISTVERSION= 0.3.0 CATEGORIES= devel MAINTAINER= dg@syrec.org @@ -17,22 +17,22 @@ LIB_DEPENDS= libgit2.so:devel/libgit2 USES= ncurses pkgconfig readline:port USE_GITHUB= yes GH_ACCOUNT= rgburke -GH_SUBDIR= src/github.com/${GH_ACCOUNT}/${PORTNAME} -GH_TUPLE= bradfitz:slice:d9036e2:slice/src/github.com/bradfitz/slice \ - camlistore:go4:9599cf2:reflectutil/src/go4.org \ - davecgh:go-spew:8991bc2:spew/src/github.com/davecgh/go-spew \ - gobwas:glob:f00a739:glob/src/github.com/gobwas/glob \ - golang:crypto:a49355c:crypto/src/golang.org/x/crypto \ - golang:sys:63fc586:sys/src/golang.org/x/sys \ +GH_SUBDIR= src/github.com/rgburke/grv +GH_TUPLE= bradfitz:slice:2b758aa:slice/src/github.com/bradfitz/slice \ + camlistore:go4:417644f:reflectutil/src/go4.org \ + davecgh:go-spew:d8f796a:spew/src/github.com/davecgh/go-spew \ + gobwas:glob:f756513:glob/src/github.com/gobwas/glob \ + golang:crypto:5295e83:crypto/src/golang.org/x/crypto \ + golang:sys:e4b3c5e:sys/src/golang.org/x/sys \ mattn:go-runewidth:ce7b0b5:runewidth/src/github.com/mattn/go-runewidth \ pmezard:go-difflib:792786c:difflib/src/github.com/pmezard/go-difflib \ rgburke:goncurses:74f667a:goncurses/src/github.com/rgburke/goncurses \ - rjeczalik:notify:d152f3c:notify/src/github.com/rjeczalik/notify \ - Sirupsen:logrus:75068be:logrus/src/github.com/Sirupsen/logrus \ - stretchr:objx:0ab728f:objx/src/github.com/stretchr/objx \ + rjeczalik:notify:69d839f:notify/src/github.com/rjeczalik/notify \ + Sirupsen:logrus:a67f783:logrus/src/github.com/Sirupsen/logrus \ + stretchr:objx:ef50b0d:objx/src/github.com/stretchr/objx \ stretchr:testify:f35b8ab:testify/src/github.com/stretchr/testify \ tchap:go-patricia:5ad6cdb:patricia/src/github.com/tchap/go-patricia \ - libgit2:git2go:9abc050:git2go/src/gopkg.in/libgit2/git2go.v27 # Keep git2go branch in sync with devel/libgit2 version + libgit2:git2go:c0c2948:git2go/src/gopkg.in/libgit2/git2go.v27 # Keep git2go branch in sync with devel/libgit2 version PLIST_FILES= bin/grv @@ -41,10 +41,10 @@ OPTIONS_DEFINE= DOCS PORTDOCS= * do-build: - @cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} GOPATH=${WRKSRC} go build ./cmd/${PORTNAME} + cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} GOPATH=${WRKSRC} go build ./cmd/${PORTNAME} do-test: - @cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} GOPATH=${WRKSRC} go test ./cmd/${PORTNAME} + cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} GOPATH=${WRKSRC} go test ./cmd/${PORTNAME} do-install: ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin diff --git a/devel/grv/distinfo b/devel/grv/distinfo index e3df71f8948..3331a466fa3 100644 --- a/devel/grv/distinfo +++ b/devel/grv/distinfo @@ -1,33 +1,33 @@ -TIMESTAMP = 1530019157 -SHA256 (rgburke-grv-v0.2.0_GH0.tar.gz) = 67988ce85d51603ac861b879b1491bcaa136350fdfff8c218170804aaa55b848 -SIZE (rgburke-grv-v0.2.0_GH0.tar.gz) = 5150042 -SHA256 (bradfitz-slice-d9036e2_GH0.tar.gz) = 30446ea3f3428f802a6238216cce2a9eeef42429b7be9523073c02d0b976c5ac -SIZE (bradfitz-slice-d9036e2_GH0.tar.gz) = 2623 -SHA256 (camlistore-go4-9599cf2_GH0.tar.gz) = 3a25f0a4301fd44ca61a49c41e2c1ad49bf7ab6edf654b1870f1b32a48da6a0c -SIZE (camlistore-go4-9599cf2_GH0.tar.gz) = 139080 -SHA256 (davecgh-go-spew-8991bc2_GH0.tar.gz) = df061bffb51b9ccc2eb2c6eb156e96e764ec2391dd2d68eec737ff2e088251d4 -SIZE (davecgh-go-spew-8991bc2_GH0.tar.gz) = 42161 -SHA256 (gobwas-glob-f00a739_GH0.tar.gz) = 00f2e8f40a8be489a902dc6c7640b207260fd36ed3f264e95f77fd471b7b882f -SIZE (gobwas-glob-f00a739_GH0.tar.gz) = 26188 -SHA256 (golang-crypto-a49355c_GH0.tar.gz) = 6e320a3b23c4d03d8d63a4bf888e1b8f4b3e1c8499b6a1dd7397ce8f1b9ca525 -SIZE (golang-crypto-a49355c_GH0.tar.gz) = 1616998 -SHA256 (golang-sys-63fc586_GH0.tar.gz) = fd291116abf9e771e446647b4acbef48eb78cc768bac64a4ade907c0c3dd1ffe -SIZE (golang-sys-63fc586_GH0.tar.gz) = 976766 +TIMESTAMP = 1538387785 +SHA256 (rgburke-grv-v0.3.0_GH0.tar.gz) = e2b31d76ba19a69503075815bc5443bf32076aad34f546625af99c659cbe3fd3 +SIZE (rgburke-grv-v0.3.0_GH0.tar.gz) = 5171882 +SHA256 (bradfitz-slice-2b758aa_GH0.tar.gz) = 187a1e127f18950084edb3fe18a230a19629e909eff46fae8a05c7a3b28e4459 +SIZE (bradfitz-slice-2b758aa_GH0.tar.gz) = 2879 +SHA256 (camlistore-go4-417644f_GH0.tar.gz) = f5fdca82cf8f3d420fbfa74bcfb4555498d4d67f286c85e6138a6ff213e6d688 +SIZE (camlistore-go4-417644f_GH0.tar.gz) = 139184 +SHA256 (davecgh-go-spew-d8f796a_GH0.tar.gz) = d009b3cf2f72f26e6b79371cd1220bfd0cccdc94fa0f538f6c1ac1df2275bd79 +SIZE (davecgh-go-spew-d8f796a_GH0.tar.gz) = 42167 +SHA256 (gobwas-glob-f756513_GH0.tar.gz) = 0060081a97268a22a9baa48f4c6ca8d803e31a9d75c9dbe047a0fcb6c94c74f0 +SIZE (gobwas-glob-f756513_GH0.tar.gz) = 26223 +SHA256 (golang-crypto-5295e83_GH0.tar.gz) = 03f60e53cae20d409d59d1ffbad0eb218f2d4a6bd840932e2d8636fa76147690 +SIZE (golang-crypto-5295e83_GH0.tar.gz) = 1638251 +SHA256 (golang-sys-e4b3c5e_GH0.tar.gz) = 2db9b8dda4f873c6561df00334d0ea6be4bb4d7cba8f5e35a7a324aa8784980a +SIZE (golang-sys-e4b3c5e_GH0.tar.gz) = 1088066 SHA256 (mattn-go-runewidth-ce7b0b5_GH0.tar.gz) = e3c7ab1a10c7b35accd18e08e12be4206ee805e44812969a4351199ea5a41b62 SIZE (mattn-go-runewidth-ce7b0b5_GH0.tar.gz) = 22963 SHA256 (pmezard-go-difflib-792786c_GH0.tar.gz) = 7c2a6d7ea0700411ba7d13865230c03bd6734d3ff6c213357bda121f5bb707fb SIZE (pmezard-go-difflib-792786c_GH0.tar.gz) = 11401 SHA256 (rgburke-goncurses-74f667a_GH0.tar.gz) = af7aabf62aee38639417ac1eef9c3aaabea7e56e5f88c5702cab7a9652613e22 SIZE (rgburke-goncurses-74f667a_GH0.tar.gz) = 46774 -SHA256 (rjeczalik-notify-d152f3c_GH0.tar.gz) = 20835f21ab3b0c69cc1c54ee6634ac335d21afc98f0630b90073a89b54e2a1af -SIZE (rjeczalik-notify-d152f3c_GH0.tar.gz) = 56313 -SHA256 (Sirupsen-logrus-75068be_GH0.tar.gz) = 35c0ba63048a16546218d1caf8210e2ba1860b678395af275864a646a5f7dcf3 -SIZE (Sirupsen-logrus-75068be_GH0.tar.gz) = 27683 -SHA256 (stretchr-objx-0ab728f_GH0.tar.gz) = 90d06571d718b42858703a1c4ec456715d3639b9ba5866893cfc2d7626a04370 -SIZE (stretchr-objx-0ab728f_GH0.tar.gz) = 76161 +SHA256 (rjeczalik-notify-69d839f_GH0.tar.gz) = 11d6dd9f4edb1901035bb5d1bab5962d39c2c7b6cfdd0d373a778af86d924e04 +SIZE (rjeczalik-notify-69d839f_GH0.tar.gz) = 56865 +SHA256 (Sirupsen-logrus-a67f783_GH0.tar.gz) = 7e6313867cecde41d631b58d5d01e4de040d9e38d2208b7ec674577bd89c2f9f +SIZE (Sirupsen-logrus-a67f783_GH0.tar.gz) = 32979 +SHA256 (stretchr-objx-ef50b0d_GH0.tar.gz) = ca79d8f4136429d4806ea9f2ee1a5bcaec47cbb9ffb470caf2d1e11e5ed2908f +SIZE (stretchr-objx-ef50b0d_GH0.tar.gz) = 78750 SHA256 (stretchr-testify-f35b8ab_GH0.tar.gz) = b7a2961d37598e0fc1bf7e9041f717ec770c7ec935d4a79a2d40f5e6722fe6a2 SIZE (stretchr-testify-f35b8ab_GH0.tar.gz) = 101718 SHA256 (tchap-go-patricia-5ad6cdb_GH0.tar.gz) = ea8127ce3b9e7bedf4ffbe998179d94ebe1c59ad36ece22aa5682fb27d5bab4b SIZE (tchap-go-patricia-5ad6cdb_GH0.tar.gz) = 11903 -SHA256 (libgit2-git2go-9abc050_GH0.tar.gz) = 1e11a65dcf4b601ed68acf5e743ee720f48ef3ade686e2db82f019e5b1a6a1f4 -SIZE (libgit2-git2go-9abc050_GH0.tar.gz) = 72758 +SHA256 (libgit2-git2go-c0c2948_GH0.tar.gz) = e0876c8d1580a5608aa70372c3008a0ea3436f323ac02fe709c8245d41586c24 +SIZE (libgit2-git2go-c0c2948_GH0.tar.gz) = 72763 diff --git a/devel/ispc/Makefile b/devel/ispc/Makefile index 2f398285b5f..364fb74907d 100644 --- a/devel/ispc/Makefile +++ b/devel/ispc/Makefile @@ -4,7 +4,7 @@ PORTNAME= ispc DISTVERSIONPREFIX= v DISTVERSION= 1.9.2 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= devel MAINTAINER= yuri@FreeBSD.org diff --git a/devel/jenkins/Makefile b/devel/jenkins/Makefile index f1de68c4ad8..7f915e3b983 100644 --- a/devel/jenkins/Makefile +++ b/devel/jenkins/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= jenkins -PORTVERSION= 2.143 +PORTVERSION= 2.144 CATEGORIES= devel java MASTER_SITES= http://mirrors.jenkins-ci.org/war/${PORTVERSION}/ DISTNAME= jenkins diff --git a/devel/jenkins/distinfo b/devel/jenkins/distinfo index 42d683dd2a9..1bbdc19dfc1 100644 --- a/devel/jenkins/distinfo +++ b/devel/jenkins/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1538072931 -SHA256 (jenkins/2.143/jenkins.war) = 0e596dcff028f635a03fd0065940d6d02d902b984cf4042bd79e2df394db683b -SIZE (jenkins/2.143/jenkins.war) = 75771884 +TIMESTAMP = 1538588146 +SHA256 (jenkins/2.144/jenkins.war) = 8f6d27ab98638b47bb728ff91481d318c258705bdd311523d161bb2c19711adf +SIZE (jenkins/2.144/jenkins.war) = 75820252 diff --git a/devel/leatherman/Makefile b/devel/leatherman/Makefile index fb8b94a5603..b91094ffe79 100644 --- a/devel/leatherman/Makefile +++ b/devel/leatherman/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= leatherman -PORTVERSION= 1.5.0 +PORTVERSION= 1.5.1 CATEGORIES= devel MAINTAINER= puppet@FreeBSD.org diff --git a/devel/leatherman/distinfo b/devel/leatherman/distinfo index 5ffe27b89c1..5fe0b798789 100644 --- a/devel/leatherman/distinfo +++ b/devel/leatherman/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1537283687 -SHA256 (puppetlabs-leatherman-1.5.0_GH0.tar.gz) = f7da4432ecaf1c4bfc7cfd398bcf76f9b90c27bce5d4b94111fc07b021407ad8 -SIZE (puppetlabs-leatherman-1.5.0_GH0.tar.gz) = 814292 +TIMESTAMP = 1538675710 +SHA256 (puppetlabs-leatherman-1.5.1_GH0.tar.gz) = 3e96034957da37d0d255f27d7f531dee09af739f7471f5fa86f301c1ea005411 +SIZE (puppetlabs-leatherman-1.5.1_GH0.tar.gz) = 814327 diff --git a/devel/libb2/Makefile b/devel/libb2/Makefile new file mode 100644 index 00000000000..bc34410fab0 --- /dev/null +++ b/devel/libb2/Makefile @@ -0,0 +1,29 @@ +# Created by: Martin Matuska +# $FreeBSD$ + +PORTNAME= libb2 +PORTVERSION= 0.98 +DISTVERSIONPREFIX= v +PORTREVISION= 1 +CATEGORIES= devel + +MAINTAINER= mm@FreeBSD.org +COMMENT= C library providing BLAKE2b, BLAKE2s, BLAKE2bp, BLAKE2sp + +LICENSE= CC0-1.0 +LICENSE_FILE= ${WRKSRC}/LICENSE + +USES= autoreconf libtool +USE_GITHUB= yes +USE_LDCONFIG= yes + +GH_ACCOUNT= BLAKE2 +GNU_CONFIGURE= yes + +PLIST_FILES= include/blake2.h \ + lib/libb2.a \ + lib/libb2.so \ + lib/libb2.so.1 \ + lib/libb2.so.1.0.3 + +.include diff --git a/devel/libb2/distinfo b/devel/libb2/distinfo new file mode 100644 index 00000000000..a4877381dd1 --- /dev/null +++ b/devel/libb2/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1538730711 +SHA256 (BLAKE2-libb2-v0.98_GH0.tar.gz) = 40a9ba07b0a9ec8b30cfca074f0ab80944187c2fce586809540889d9c4d37e4e +SIZE (BLAKE2-libb2-v0.98_GH0.tar.gz) = 275163 diff --git a/devel/libb2/pkg-descr b/devel/libb2/pkg-descr new file mode 100644 index 00000000000..c840434ccf0 --- /dev/null +++ b/devel/libb2/pkg-descr @@ -0,0 +1,3 @@ +C library providing BLAKE2b, BLAKE2s, BLAKE2bp, BLAKE2sp + +WWW: http://blake2.net/ diff --git a/devel/libdap/files/patch-tests-TestInt64.cc b/devel/libdap/files/patch-tests-TestInt64.cc deleted file mode 100644 index 29266471b07..00000000000 --- a/devel/libdap/files/patch-tests-TestInt64.cc +++ /dev/null @@ -1,11 +0,0 @@ ---- tests/TestInt64.cc.orig 2015-09-08 22:42:20 UTC -+++ tests/TestInt64.cc -@@ -105,7 +105,7 @@ TestInt64::read() - d_buf = 64; - } - else { -- d_buf = 0x00ffffffffffffff; -+ d_buf = 0x00ffffffffffffffLL; - } - - set_read_p(true); diff --git a/devel/libdap/files/patch-tests-TestUInt64.cc b/devel/libdap/files/patch-tests-TestUInt64.cc deleted file mode 100644 index 20a21f67cf5..00000000000 --- a/devel/libdap/files/patch-tests-TestUInt64.cc +++ /dev/null @@ -1,11 +0,0 @@ ---- tests/TestUInt64.cc.orig 2015-09-08 22:42:20 UTC -+++ tests/TestUInt64.cc -@@ -99,7 +99,7 @@ TestUInt64::read() - d_buf = 64 * d_buf; - } - else { -- d_buf = 0xffffffffffffffff; // really big -+ d_buf = 0xffffffffffffffffLL; // really big - } - - set_read_p(true); diff --git a/devel/libleaftag/Makefile b/devel/libleaftag/Makefile index 49292d9702c..c1e485f3ae7 100644 --- a/devel/libleaftag/Makefile +++ b/devel/libleaftag/Makefile @@ -10,6 +10,9 @@ MASTER_SITES= http://releases.chipx86.com/leaftag/libleaftag/ MAINTAINER= ports@FreeBSD.org COMMENT= Leaftag is a library for tagging files on the desktop +DEPRECATED= Unmaintained upstream +EXPIRATION_DATE= 2018-10-15 + USES= pathfix pkgconfig libtool sqlite:2 GNU_CONFIGURE= yes USE_GNOME= glib20 diff --git a/devel/libvirt/Makefile b/devel/libvirt/Makefile index cff5e49b149..876b6871800 100644 --- a/devel/libvirt/Makefile +++ b/devel/libvirt/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= libvirt -PORTVERSION= 4.7.0 +PORTVERSION= 4.8.0 CATEGORIES= devel MASTER_SITES= http://libvirt.org/sources/ \ ftp://libvirt.org/libvirt/ @@ -105,7 +105,7 @@ USE_PERL5= build USE_LDCONFIG= yes INSTALL_TARGET= install-strip TEST_TARGET= check -SHLIB_VER= 0.4007.0 +SHLIB_VER= 0.4008.0 PLIST_SUB+= PORTVERSION="-${PORTVERSION}" \ SHLIB_VER=${SHLIB_VER} PORTDOCS= * diff --git a/devel/libvirt/distinfo b/devel/libvirt/distinfo index f867cc56a8b..08cd7236123 100644 --- a/devel/libvirt/distinfo +++ b/devel/libvirt/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1536595670 -SHA256 (libvirt-4.7.0.tar.xz) = 92c279f7321624ac5a37a81f8bbe8c8d2a16781da04c63c99c92d3de035767e4 -SIZE (libvirt-4.7.0.tar.xz) = 14813352 +TIMESTAMP = 1538831367 +SHA256 (libvirt-4.8.0.tar.xz) = c2fd7112d6689fbb4d700b31c01aadd8a0eb275e127dc959cdc166f5f60b3032 +SIZE (libvirt-4.8.0.tar.xz) = 14739652 diff --git a/devel/llvm-devel/Makefile b/devel/llvm-devel/Makefile index ad9630f9572..961199aa7cf 100644 --- a/devel/llvm-devel/Makefile +++ b/devel/llvm-devel/Makefile @@ -10,23 +10,7 @@ PKGNAMESUFFIX= -devel MAINTAINER= brooks@FreeBSD.org COMMENT= LLVM and Clang -# License are listed in the order they appear in LICENSE.TXT -LICENSE= LLVM GTEST REGEX MIT ARM PD -LICENSE_COMB= multi -LICENSE_NAME_LLVM= LLVM Release License -LICENSE_PERMS_LLVM= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept -LICENSE_FILE_LLVM= ${WRKSRC}/LICENSE.TXT -LICENSE_NAME_GTEST= Google test license -LICENSE_PERMS_GTEST= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept -LICENSE_FILE_GTEST= ${WRKSRC}/utils/unittest/googletest/LICENSE.TXT -LICENSE_NAME_REGEX= OpenBSD Regex License -LICENSE_PERMS_REGEX= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept -LICENSE_FILE_REGEX= ${WRKSRC}/lib/Support/COPYRIGHT.regex -# pyyaml tests are under the MIT license -LICENSE_NAME_ARM= ARM Limited license -LICENSE_PERMS_ARM= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept -LICENSE_FILE_ARM= ${WRKSRC}/lib/Target/ARM/LICENSE.TXT -# md5 is in the public domain +.include "Makefile.LICENSE" LLVM_SUFFIX= -devel LLVM_PREFIX= ${PREFIX}/llvm${LLVM_SUFFIX} @@ -118,7 +102,6 @@ LLD_GH_SUBDIR= tools/lld:lld LLD_GH_TAGNAME= ${LLD_COMMIT}:lld LLDB_BUILD_DEPENDS= swig3.0:devel/swig30 LLDB_DESC= Install lldb, the LLVM debugger -LLDB_EXTRA_PATCHES= ${PATCHDIR}/lldb-patch-tools_lldb_source_Plugins_Process_FreeBSD_ProcessFreeBSD.cpp LLDB_GH_PROJECT= lldb:lldb LLDB_GH_SUBDIR= tools/lldb:lldb LLDB_GH_TAGNAME= ${LLDB_COMMIT}:lldb @@ -285,6 +268,7 @@ MAN1SRCS+= clang.1 \ diagtool.1 \ scan-build.1 CLANG_PATTERN= (c-index-test|clang|scan-|Reporter.py|ScanView.py|scanview.css|sorttable.js|startfile.py|-analyzer) +USES+= gnome .endif .if ${PORT_OPTIONS:MCOMPILER_RT} @@ -350,6 +334,8 @@ _COMPILER_RT_LIBS= \ libclang_rt.asan_cxx-x86_64.a \ libclang_rt.asan_cxx-x86_64.a.syms \ libclang_rt.builtins-x86_64.a \ + libclang_rt.cfi-x86_64.a \ + libclang_rt.cfi_diag-x86_64.a \ libclang_rt.dd-x86_64.a \ libclang_rt.dyndd-x86_64.so \ libclang_rt.fuzzer-x86_64.a \ @@ -388,6 +374,8 @@ _COMPILER_RT_LIBS+= \ libclang_rt.asan-preinit-i386.a \ libclang_rt.asan_cxx-i386.a \ libclang_rt.builtins-i386.a \ + libclang_rt.cfi-i386.a \ + libclang_rt.cfi_diag-i386.a \ libclang_rt.lsan-i386.a \ libclang_rt.profile-i386.a \ libclang_rt.safestack-i386.a \ diff --git a/devel/llvm-devel/Makefile.LICENSE b/devel/llvm-devel/Makefile.LICENSE new file mode 100644 index 00000000000..8ddbb628660 --- /dev/null +++ b/devel/llvm-devel/Makefile.LICENSE @@ -0,0 +1,29 @@ +# $FreeBSD$ +# +# The "LLVM Release License" is largely a copy of the NCSA license, but +# it contains extra verbiage about its interaction with third party +# licenses so it is handled as a seperate license. +# +# Third party software licenses in the LLVM tree include: +# Program License +# ------- ------- +# Google Test BSD3CLAUSE +# OpenBSD regex REGEX +# pyyaml tests MIT +# ARM contributions ARM +# md5 contributions PD + +LICENSE= ARM BSD3CLAUSE LLVM MIT PD REGEX +LICENSE_COMB= multi + +LICENSE_FILE_ARM= ${WRKSRC}/lib/Target/ARM/LICENSE.TXT +LICENSE_FILE_BSD3CLAUSE= ${WRKSRC}/utils/unittest/googletest/LICENSE.TXT +LICENSE_FILE_LLVM= ${WRKSRC}/LICENSE.TXT +LICENSE_FILE_MIT= ${WRKSRC}/test/YAMLParser/LICENSE.txt +LICENSE_FILE_REGEX= ${WRKSRC}/lib/Support/COPYRIGHT.regex +LICENSE_NAME_ARM= ARM Limited license +LICENSE_NAME_LLVM= LLVM Release License +LICENSE_NAME_REGEX= OpenBSD Regex License +LICENSE_PERMS_ARM= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept +LICENSE_PERMS_LLVM= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept +LICENSE_PERMS_REGEX= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept diff --git a/devel/llvm-devel/Makefile.snapshot b/devel/llvm-devel/Makefile.snapshot index fb59cb24612..cee85a72135 100644 --- a/devel/llvm-devel/Makefile.snapshot +++ b/devel/llvm-devel/Makefile.snapshot @@ -6,12 +6,12 @@ # LLVM_MAJOR= 8 LLVM_RELEASE= ${LLVM_MAJOR}.0.0 -SNAPDATE= 20180925 +SNAPDATE= 20181001 -LLVM_COMMIT= b418c2351b1fdf6faf6a2d010d804e895ef49932 -CLANG_COMMIT= d6cae43ad5a45c099fa3917def61170a9fdf6c97 -COMPILER_RT_COMMIT= c5cf78381530dda36a14ef2eef0d94f8c87ae674 -EXTRAS_COMMIT= 0eddbe908913429e4f69b4a877f9c0ca28e08382 -LLD_COMMIT= bc9e188d140ff03d5851a6bebe76e486d389d856 -LLDB_COMMIT= 12046a6124750689bba1c3eb881e366be4030a77 -OPENMP_COMMIT= e1688b470b8ef3441983d333a6642e7b19d29b90 +LLVM_COMMIT= 5877e4ed63ba21fb57f2c7fb4ed4950288e2a28c +CLANG_COMMIT= a866fe7bf7c577b698229106f0ddc2d31b285de8 +COMPILER_RT_COMMIT= 87620816074a8059648940d59dd0a37d30089a0a +EXTRAS_COMMIT= 35eb918a95a05e7d91bc7cf026f19db869354eaa +LLD_COMMIT= df3e3050ef26292a8c7d2d16b073588eba28db6c +LLDB_COMMIT= b062a1225880b697f79ca92afb986e2b59be65c8 +OPENMP_COMMIT= be73d23db2027fdb14e4cfa3b35fc17fd50558a3 diff --git a/devel/llvm-devel/distinfo b/devel/llvm-devel/distinfo index c9216e63700..84bc6c6b799 100644 --- a/devel/llvm-devel/distinfo +++ b/devel/llvm-devel/distinfo @@ -1,15 +1,15 @@ -TIMESTAMP = 1537891825 -SHA256 (llvm-mirror-llvm-8.0.d20180925-b418c2351b1fdf6faf6a2d010d804e895ef49932_GH0.tar.gz) = f70fea382b3058b06416925f3a796f72e0b1bdc72f5a68283daadbb68b851c50 -SIZE (llvm-mirror-llvm-8.0.d20180925-b418c2351b1fdf6faf6a2d010d804e895ef49932_GH0.tar.gz) = 43610028 -SHA256 (llvm-mirror-clang-d6cae43ad5a45c099fa3917def61170a9fdf6c97_GH0.tar.gz) = 9f4bec9fe0f739a19f88ae2ae2414d6f8bde13c6ee9ce495db77475ed5d41de8 -SIZE (llvm-mirror-clang-d6cae43ad5a45c099fa3917def61170a9fdf6c97_GH0.tar.gz) = 17743175 -SHA256 (llvm-mirror-compiler-rt-c5cf78381530dda36a14ef2eef0d94f8c87ae674_GH0.tar.gz) = b5537492aa4fef086c8782db33d17fbfcca110900626c2f40a3baa0643fd698d -SIZE (llvm-mirror-compiler-rt-c5cf78381530dda36a14ef2eef0d94f8c87ae674_GH0.tar.gz) = 3169979 -SHA256 (llvm-mirror-clang-tools-extra-0eddbe908913429e4f69b4a877f9c0ca28e08382_GH0.tar.gz) = ba1fd5634240facd766958a83642aa4563a210cb83ed8b470cad50a21c66d4ed -SIZE (llvm-mirror-clang-tools-extra-0eddbe908913429e4f69b4a877f9c0ca28e08382_GH0.tar.gz) = 1284915 -SHA256 (llvm-mirror-lld-bc9e188d140ff03d5851a6bebe76e486d389d856_GH0.tar.gz) = dc0bec0ee38e45fff568d1a096c791a435ce5aaaad5049cd108fd8073d5cb326 -SIZE (llvm-mirror-lld-bc9e188d140ff03d5851a6bebe76e486d389d856_GH0.tar.gz) = 1311086 -SHA256 (llvm-mirror-lldb-12046a6124750689bba1c3eb881e366be4030a77_GH0.tar.gz) = 809923ab8aef405c1529b40a7f37eb8506a328cca305f56e858474156a912173 -SIZE (llvm-mirror-lldb-12046a6124750689bba1c3eb881e366be4030a77_GH0.tar.gz) = 24534585 -SHA256 (llvm-mirror-openmp-e1688b470b8ef3441983d333a6642e7b19d29b90_GH0.tar.gz) = 434e57ba3cf4c6aef50905f66529595c2f45742155b8403631cfd59084454efa -SIZE (llvm-mirror-openmp-e1688b470b8ef3441983d333a6642e7b19d29b90_GH0.tar.gz) = 1446924 +TIMESTAMP = 1538434534 +SHA256 (llvm-mirror-llvm-8.0.d20181001-5877e4ed63ba21fb57f2c7fb4ed4950288e2a28c_GH0.tar.gz) = d0c117be40576264eb8efd34640b5dbb607bec8781155c0e97a9b5aec9d943fb +SIZE (llvm-mirror-llvm-8.0.d20181001-5877e4ed63ba21fb57f2c7fb4ed4950288e2a28c_GH0.tar.gz) = 43693701 +SHA256 (llvm-mirror-clang-a866fe7bf7c577b698229106f0ddc2d31b285de8_GH0.tar.gz) = 07493d309ce4cd8410d8d14da97c7f911e23bb7b1de85f65d23584d59a615e0d +SIZE (llvm-mirror-clang-a866fe7bf7c577b698229106f0ddc2d31b285de8_GH0.tar.gz) = 17763531 +SHA256 (llvm-mirror-compiler-rt-87620816074a8059648940d59dd0a37d30089a0a_GH0.tar.gz) = 445f052008b38252ef856a5ea343fddc21eb919b6cfc927c9253662ef7071a24 +SIZE (llvm-mirror-compiler-rt-87620816074a8059648940d59dd0a37d30089a0a_GH0.tar.gz) = 3178030 +SHA256 (llvm-mirror-clang-tools-extra-35eb918a95a05e7d91bc7cf026f19db869354eaa_GH0.tar.gz) = 15d2ac8d0e8e1c7d3f71364a4a61be01cc36c9956fe98878f5fb5365899d6686 +SIZE (llvm-mirror-clang-tools-extra-35eb918a95a05e7d91bc7cf026f19db869354eaa_GH0.tar.gz) = 1290314 +SHA256 (llvm-mirror-lld-df3e3050ef26292a8c7d2d16b073588eba28db6c_GH0.tar.gz) = b7431fd2ce11a88b06f4b456cffac1cb747bea075a47480c706edcd6b59d189d +SIZE (llvm-mirror-lld-df3e3050ef26292a8c7d2d16b073588eba28db6c_GH0.tar.gz) = 1314749 +SHA256 (llvm-mirror-lldb-b062a1225880b697f79ca92afb986e2b59be65c8_GH0.tar.gz) = 27dfab3fe813b169295f5d9b6207750ae378bade4db152abd30487e71942b96d +SIZE (llvm-mirror-lldb-b062a1225880b697f79ca92afb986e2b59be65c8_GH0.tar.gz) = 24541049 +SHA256 (llvm-mirror-openmp-be73d23db2027fdb14e4cfa3b35fc17fd50558a3_GH0.tar.gz) = 63c4c05f9aad0178b91e1617ef5d7619d1dae7c19a5432a974248496aab49d51 +SIZE (llvm-mirror-openmp-be73d23db2027fdb14e4cfa3b35fc17fd50558a3_GH0.tar.gz) = 1453322 diff --git a/devel/llvm-devel/files/lldb-patch-tools_lldb_source_Plugins_Process_FreeBSD_ProcessFreeBSD.cpp b/devel/llvm-devel/files/lldb-patch-tools_lldb_source_Plugins_Process_FreeBSD_ProcessFreeBSD.cpp deleted file mode 100644 index 1c6b0582a52..00000000000 --- a/devel/llvm-devel/files/lldb-patch-tools_lldb_source_Plugins_Process_FreeBSD_ProcessFreeBSD.cpp +++ /dev/null @@ -1,20 +0,0 @@ ---- tools/lldb/source/Plugins/Process/FreeBSD/ProcessFreeBSD.cpp.orig -+++ tools/lldb/source/Plugins/Process/FreeBSD/ProcessFreeBSD.cpp -@@ -335,7 +335,7 @@ - GetTarget().SetArchitecture(module_arch); - - // Initialize the target module list -- GetTarget().SetExecutableModule(exe_module_sp, true); -+ GetTarget().SetExecutableModule(exe_module_sp, eLoadDependentsYes); - - SetSTDIOFileDescriptor(m_monitor->GetTerminalFD()); - -@@ -519,7 +519,7 @@ - executable_search_paths.GetSize() ? &executable_search_paths : NULL); - if (!error.Success()) - return; -- target->SetExecutableModule(exe_module_sp, true); -+ target->SetExecutableModule(exe_module_sp, eLoadDependentsYes); - } - } - } diff --git a/devel/llvm-devel/pkg-plist b/devel/llvm-devel/pkg-plist index 4ba16db2f1d..d3d4c94bc94 100644 --- a/devel/llvm-devel/pkg-plist +++ b/devel/llvm-devel/pkg-plist @@ -1812,17 +1812,21 @@ llvm-devel/include/llvm/DebugInfo/PDB/Native/InfoStreamBuilder.h llvm-devel/include/llvm/DebugInfo/PDB/Native/ModuleDebugStream.h llvm-devel/include/llvm/DebugInfo/PDB/Native/NamedStreamMap.h llvm-devel/include/llvm/DebugInfo/PDB/Native/NativeCompilandSymbol.h +llvm-devel/include/llvm/DebugInfo/PDB/Native/NativeEnumGlobals.h llvm-devel/include/llvm/DebugInfo/PDB/Native/NativeEnumModules.h llvm-devel/include/llvm/DebugInfo/PDB/Native/NativeEnumTypes.h llvm-devel/include/llvm/DebugInfo/PDB/Native/NativeExeSymbol.h llvm-devel/include/llvm/DebugInfo/PDB/Native/NativeRawSymbol.h llvm-devel/include/llvm/DebugInfo/PDB/Native/NativeSession.h llvm-devel/include/llvm/DebugInfo/PDB/Native/NativeSymbolEnumerator.h +llvm-devel/include/llvm/DebugInfo/PDB/Native/NativeTypeArray.h llvm-devel/include/llvm/DebugInfo/PDB/Native/NativeTypeBuiltin.h llvm-devel/include/llvm/DebugInfo/PDB/Native/NativeTypeEnum.h llvm-devel/include/llvm/DebugInfo/PDB/Native/NativeTypeFunctionSig.h llvm-devel/include/llvm/DebugInfo/PDB/Native/NativeTypePointer.h +llvm-devel/include/llvm/DebugInfo/PDB/Native/NativeTypeTypedef.h llvm-devel/include/llvm/DebugInfo/PDB/Native/NativeTypeUDT.h +llvm-devel/include/llvm/DebugInfo/PDB/Native/NativeTypeVTShape.h llvm-devel/include/llvm/DebugInfo/PDB/Native/PDBFile.h llvm-devel/include/llvm/DebugInfo/PDB/Native/PDBFileBuilder.h llvm-devel/include/llvm/DebugInfo/PDB/Native/PDBStringTable.h @@ -1898,10 +1902,12 @@ llvm-devel/include/llvm/ExecutionEngine/Orc/GlobalMappingLayer.h llvm-devel/include/llvm/ExecutionEngine/Orc/IRCompileLayer.h llvm-devel/include/llvm/ExecutionEngine/Orc/IRTransformLayer.h llvm-devel/include/llvm/ExecutionEngine/Orc/IndirectionUtils.h +llvm-devel/include/llvm/ExecutionEngine/Orc/JITTargetMachineBuilder.h llvm-devel/include/llvm/ExecutionEngine/Orc/LLJIT.h llvm-devel/include/llvm/ExecutionEngine/Orc/LambdaResolver.h llvm-devel/include/llvm/ExecutionEngine/Orc/Layer.h llvm-devel/include/llvm/ExecutionEngine/Orc/LazyEmittingLayer.h +llvm-devel/include/llvm/ExecutionEngine/Orc/LazyReexports.h llvm-devel/include/llvm/ExecutionEngine/Orc/Legacy.h llvm-devel/include/llvm/ExecutionEngine/Orc/NullResolver.h llvm-devel/include/llvm/ExecutionEngine/Orc/ObjectTransformLayer.h @@ -1916,6 +1922,7 @@ llvm-devel/include/llvm/ExecutionEngine/Orc/RTDyldObjectLinkingLayer.h llvm-devel/include/llvm/ExecutionEngine/Orc/RawByteChannel.h llvm-devel/include/llvm/ExecutionEngine/Orc/RemoteObjectLayer.h llvm-devel/include/llvm/ExecutionEngine/Orc/SymbolStringPool.h +llvm-devel/include/llvm/ExecutionEngine/Orc/ThreadSafeModule.h llvm-devel/include/llvm/ExecutionEngine/OrcMCJITReplacement.h llvm-devel/include/llvm/ExecutionEngine/RTDyldMemoryManager.h llvm-devel/include/llvm/ExecutionEngine/RuntimeDyld.h @@ -2266,6 +2273,7 @@ llvm-devel/include/llvm/Support/Locale.h llvm-devel/include/llvm/Support/LockFileManager.h llvm-devel/include/llvm/Support/LowLevelTypeImpl.h llvm-devel/include/llvm/Support/MD5.h +llvm-devel/include/llvm/Support/MSVCErrorWorkarounds.h llvm-devel/include/llvm/Support/MachineValueType.h llvm-devel/include/llvm/Support/ManagedStatic.h llvm-devel/include/llvm/Support/MathExtras.h diff --git a/devel/llvm40/Makefile b/devel/llvm40/Makefile index 6ba550ba070..5761c1f1add 100644 --- a/devel/llvm40/Makefile +++ b/devel/llvm40/Makefile @@ -2,7 +2,7 @@ PORTNAME= llvm DISTVERSION= 4.0.1 -PORTREVISION= 9 +PORTREVISION= 10 CATEGORIES= devel lang MASTER_SITES= http://llvm.org/${PRE_}releases/${LLVM_RELEASE}/${RCDIR} PKGNAMESUFFIX= ${LLVM_SUFFIX} @@ -12,10 +12,7 @@ DISTFILES= ${PORTNAME}-${DISTVERSION}.src${EXTRACT_SUFX} MAINTAINER= brooks@FreeBSD.org COMMENT= LLVM and Clang -LICENSE= LLVM -LICENSE_NAME= LLVM Release License -LICENSE_FILE= ${WRKSRC}/LICENSE.TXT -LICENSE_PERMS= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept +.include "${.CURDIR}/../llvm-devel/Makefile.LICENSE" LLVM_RELEASE= ${DISTVERSION:C/rc.*//} LLVM_MAJOR= ${LLVM_RELEASE:C/\.[0-9]$//} @@ -94,7 +91,8 @@ LLD_EXTRA_PATCHES= ${PATCHDIR}/lld LLDB_BUILD_DEPENDS= swig3.0:devel/swig30 LLDB_DESC= Install lldb, the LLVM debugger LLDB_DISTFILES= lldb-${DISTVERSION}.src${EXTRACT_SUFX} -LLDB_EXTRA_PATCHES= ${PATCHDIR}/lldb-patch-tools_lldb_source_Host_common_FileSpec.cpp +LLDB_EXTRA_PATCHES= ${PATCHDIR}/lldb-patch-tools_lldb_source_Host_common_FileSpec.cpp \ + ${PATCHDIR}/lldb-patch-tools_lldb_include_lldb_Utility_TaskPool.h LLDB_IMPLIES= CLANG LLDB_VARS= _USES_PYTHON=python:2.7 OPENMP_DESC= Install libomp, the LLVM OpenMP runtime library @@ -225,6 +223,7 @@ CLANG_PATTERN= (c-index-test|clang|scan-|Reporter.py|ScanView.py|scanview.css|so SHEBANG_FILES+= tools/clang/tools/scan-view/bin/scan-view \ tools/clang/tools/clang-format/git-clang-format \ tools/clang/tools/clang-format/clang-format-diff.py +USES+= gnome .endif .if ${PORT_OPTIONS:MCOMPILER_RT} diff --git a/devel/llvm40/files/lldb-patch-tools_lldb_include_lldb_Utility_TaskPool.h b/devel/llvm40/files/lldb-patch-tools_lldb_include_lldb_Utility_TaskPool.h new file mode 100644 index 00000000000..4d86cd2131b --- /dev/null +++ b/devel/llvm40/files/lldb-patch-tools_lldb_include_lldb_Utility_TaskPool.h @@ -0,0 +1,10 @@ +--- tools/lldb/include/lldb/Utility/TaskPool.h.orig 2018-09-20 19:31:12 UTC ++++ tools/lldb/include/lldb/Utility/TaskPool.h +@@ -33,6 +33,7 @@ + #include + #include + #include ++#include + + // Global TaskPool class for running tasks in parallel on a set of worker thread + // created the first diff --git a/devel/lua-stdlib-debug/Makefile b/devel/lua-stdlib-debug/Makefile index 35a15e95c1f..937ed51c0da 100644 --- a/devel/lua-stdlib-debug/Makefile +++ b/devel/lua-stdlib-debug/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= stdlib-debug -PORTVERSION= 1.0 +PORTVERSION= 1.0.1 DISTVERSIONPREFIX= v CATEGORIES= devel PKGNAMEPREFIX= ${LUA_PKGNAMEPREFIX} @@ -21,17 +21,19 @@ GH_PROJECT= _debug OPTIONS_DEFINE= DOCS +DOCSDIR= ${PREFIX}/share/doc/lua${LUA_VER_STR}/${PORTNAME} + do-install: @${MKDIR} ${STAGEDIR}${LUA_MODSHAREDIR}/std/_debug ${INSTALL_DATA} ${WRKSRC}/lib/std/_debug/init.lua ${STAGEDIR}${LUA_MODSHAREDIR}/std/_debug ${INSTALL_DATA} ${WRKSRC}/lib/std/_debug/version.lua ${STAGEDIR}${LUA_MODSHAREDIR}/std/_debug do-install-DOCS-on: - @${MKDIR} ${STAGEDIR}${DOCSDIR}/${PKGNAMEPREFIX}${PORTNAME} - ${INSTALL_DATA} ${WRKSRC}/AUTHORS.md ${STAGEDIR}${DOCSDIR}/${PKGNAMEPREFIX}${PORTNAME} - ${INSTALL_DATA} ${WRKSRC}/NEWS.md ${STAGEDIR}${DOCSDIR}/${PKGNAMEPREFIX}${PORTNAME} - ${INSTALL_DATA} ${WRKSRC}/README.md ${STAGEDIR}${DOCSDIR}/${PKGNAMEPREFIX}${PORTNAME} - ${INSTALL_DATA} ${WRKSRC}/doc/index.html ${STAGEDIR}${DOCSDIR}/${PKGNAMEPREFIX}${PORTNAME} - ${INSTALL_DATA} ${WRKSRC}/doc/ldoc.css ${STAGEDIR}${DOCSDIR}/${PKGNAMEPREFIX}${PORTNAME} + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/AUTHORS.md ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/NEWS.md ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/README.md ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/doc/index.html ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/doc/ldoc.css ${STAGEDIR}${DOCSDIR} .include diff --git a/devel/lua-stdlib-debug/distinfo b/devel/lua-stdlib-debug/distinfo index 3f380f0554d..9771db24ca5 100644 --- a/devel/lua-stdlib-debug/distinfo +++ b/devel/lua-stdlib-debug/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1521286255 -SHA256 (lua-stdlib-_debug-v1.0_GH0.tar.gz) = 40697e8b0177647f828fb86627449b40c6df2685e82fa99e9dc772201758841d -SIZE (lua-stdlib-_debug-v1.0_GH0.tar.gz) = 11420 +TIMESTAMP = 1537958735 +SHA256 (lua-stdlib-_debug-v1.0.1_GH0.tar.gz) = efc560540f08dcf880ac48c6ab527bd741bbe3d6d66202a3c8be3ff5c9e1e907 +SIZE (lua-stdlib-_debug-v1.0.1_GH0.tar.gz) = 11992 diff --git a/devel/lua-stdlib-debug/pkg-plist b/devel/lua-stdlib-debug/pkg-plist index 630146acabd..8056f1db542 100644 --- a/devel/lua-stdlib-debug/pkg-plist +++ b/devel/lua-stdlib-debug/pkg-plist @@ -1,7 +1,7 @@ -%%PORTDOCS%%%%DOCSDIR%%/lua52-stdlib-debug/AUTHORS.md -%%PORTDOCS%%%%DOCSDIR%%/lua52-stdlib-debug/NEWS.md -%%PORTDOCS%%%%DOCSDIR%%/lua52-stdlib-debug/README.md -%%PORTDOCS%%%%DOCSDIR%%/lua52-stdlib-debug/index.html -%%PORTDOCS%%%%DOCSDIR%%/lua52-stdlib-debug/ldoc.css +%%PORTDOCS%%%%DOCSDIR%%/AUTHORS.md +%%PORTDOCS%%%%DOCSDIR%%/NEWS.md +%%PORTDOCS%%%%DOCSDIR%%/README.md +%%PORTDOCS%%%%DOCSDIR%%/index.html +%%PORTDOCS%%%%DOCSDIR%%/ldoc.css %%LUA_MODSHAREDIR%%/std/_debug/init.lua %%LUA_MODSHAREDIR%%/std/_debug/version.lua diff --git a/devel/lua-stdlib-normalize/Makefile b/devel/lua-stdlib-normalize/Makefile index 3adac2f7b4d..bdf0cf422d3 100644 --- a/devel/lua-stdlib-normalize/Makefile +++ b/devel/lua-stdlib-normalize/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= stdlib-normalize -PORTVERSION= 2.0.1 +PORTVERSION= 2.0.2 DISTVERSIONPREFIX= v CATEGORIES= devel PKGNAMEPREFIX= ${LUA_PKGNAMEPREFIX} @@ -23,6 +23,8 @@ GH_PROJECT= normalize OPTIONS_DEFINE= DOCS +DOCSDIR= ${PREFIX}/share/doc/lua${LUA_VER_STR}/${PORTNAME} + do-install: @${MKDIR} ${STAGEDIR}${LUA_MODSHAREDIR}/std/normalize ${INSTALL_DATA} ${WRKSRC}/lib/std/normalize/_base.lua ${STAGEDIR}${LUA_MODSHAREDIR}/std/normalize @@ -32,11 +34,11 @@ do-install: ${INSTALL_DATA} ${WRKSRC}/lib/std/normalize/version.lua ${STAGEDIR}${LUA_MODSHAREDIR}/std/normalize do-install-DOCS-on: - @${MKDIR} ${STAGEDIR}${DOCSDIR}/${PKGNAMEPREFIX}${PORTNAME} - ${INSTALL_DATA} ${WRKSRC}/AUTHORS.md ${STAGEDIR}${DOCSDIR}/${PKGNAMEPREFIX}${PORTNAME} - ${INSTALL_DATA} ${WRKSRC}/NEWS.md ${STAGEDIR}${DOCSDIR}/${PKGNAMEPREFIX}${PORTNAME} - ${INSTALL_DATA} ${WRKSRC}/README.md ${STAGEDIR}${DOCSDIR}/${PKGNAMEPREFIX}${PORTNAME} - ${INSTALL_DATA} ${WRKSRC}/doc/index.html ${STAGEDIR}${DOCSDIR}/${PKGNAMEPREFIX}${PORTNAME} - ${INSTALL_DATA} ${WRKSRC}/doc/ldoc.css ${STAGEDIR}${DOCSDIR}/${PKGNAMEPREFIX}${PORTNAME} + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/AUTHORS.md ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/NEWS.md ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/README.md ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/doc/index.html ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/doc/ldoc.css ${STAGEDIR}${DOCSDIR} .include diff --git a/devel/lua-stdlib-normalize/distinfo b/devel/lua-stdlib-normalize/distinfo index e36fc358f18..5f508523114 100644 --- a/devel/lua-stdlib-normalize/distinfo +++ b/devel/lua-stdlib-normalize/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1521286262 -SHA256 (lua-stdlib-normalize-v2.0.1_GH0.tar.gz) = 6607a0d8dc851c72330b0e77607fd863cc1eb36753d470479f2709c67bed7c2e -SIZE (lua-stdlib-normalize-v2.0.1_GH0.tar.gz) = 45198 +TIMESTAMP = 1537959269 +SHA256 (lua-stdlib-normalize-v2.0.2_GH0.tar.gz) = 7ca9bc7812a0581f421f29dcb996011575849e4acda3d1683aa27fe4ff8c2687 +SIZE (lua-stdlib-normalize-v2.0.2_GH0.tar.gz) = 45936 diff --git a/devel/lua-stdlib-normalize/pkg-plist b/devel/lua-stdlib-normalize/pkg-plist index 17aa449f587..e47e24238ca 100644 --- a/devel/lua-stdlib-normalize/pkg-plist +++ b/devel/lua-stdlib-normalize/pkg-plist @@ -1,8 +1,8 @@ -%%PORTDOCS%%%%DOCSDIR%%/lua52-stdlib-normalize/AUTHORS.md -%%PORTDOCS%%%%DOCSDIR%%/lua52-stdlib-normalize/NEWS.md -%%PORTDOCS%%%%DOCSDIR%%/lua52-stdlib-normalize/README.md -%%PORTDOCS%%%%DOCSDIR%%/lua52-stdlib-normalize/index.html -%%PORTDOCS%%%%DOCSDIR%%/lua52-stdlib-normalize/ldoc.css +%%PORTDOCS%%%%DOCSDIR%%/AUTHORS.md +%%PORTDOCS%%%%DOCSDIR%%/NEWS.md +%%PORTDOCS%%%%DOCSDIR%%/README.md +%%PORTDOCS%%%%DOCSDIR%%/index.html +%%PORTDOCS%%%%DOCSDIR%%/ldoc.css %%LUA_MODSHAREDIR%%/std/normalize/_base.lua %%LUA_MODSHAREDIR%%/std/normalize/_strict.lua %%LUA_MODSHAREDIR%%/std/normalize/_typecheck.lua diff --git a/devel/okteta/Makefile b/devel/okteta/Makefile index 3b933bcbf75..de5afbf29c8 100644 --- a/devel/okteta/Makefile +++ b/devel/okteta/Makefile @@ -1,8 +1,10 @@ # $FreeBSD$ PORTNAME= okteta -DISTVERSION= ${KDE_APPLICATIONS_VERSION} -CATEGORIES= devel kde kde-applications +DISTVERSION= 0.25.3 +PORTEPOCH= 1 +CATEGORIES= devel kde +MASTER_SITES= KDE/stable/${PORTNAME}/${DISTVERSION}/src MAINTAINER= kde@FreeBSD.org COMMENT= KDE hex editor @@ -15,13 +17,9 @@ USE_KDE= attica auth bookmarks codecs completion crash \ ecm i18n iconthemes itemviews jobwidgets kcmutils kio \ newstuff parts service solid sonnet textwidgets \ widgetsaddons xmlgui -USE_QT= core dbus designer gui network printsupport script scripttools \ - widgets xml \ +USE_QT= concurrent core dbus designer gui network printsupport qml \ + script scripttools widgets xml \ buildtools_build qmake_build USE_LDCONFIG= yes -# okteta is no longer released as part of KDE Appplications past 17.12.3 -# Until there is a new release, use the last one -KDE_APPLICATIONS_VERSION= 17.12.3 - .include diff --git a/devel/okteta/distinfo b/devel/okteta/distinfo index 422b23995eb..695c105a248 100644 --- a/devel/okteta/distinfo +++ b/devel/okteta/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1520519224 -SHA256 (KDE/applications/17.12.3/okteta-17.12.3.tar.xz) = 64b2d5264ac3b2e8010cbcf58fe03c567d4e44684a4fcd6e135eb14007da9a0f -SIZE (KDE/applications/17.12.3/okteta-17.12.3.tar.xz) = 962772 +TIMESTAMP = 1538851059 +SHA256 (okteta-0.25.3.tar.xz) = 51d9983c0e692c317af24cd7efaaf7bb29e815a07c2811564085a57966bda656 +SIZE (okteta-0.25.3.tar.xz) = 950956 diff --git a/devel/okteta/pkg-descr b/devel/okteta/pkg-descr index 033265dc021..409c3244d3f 100644 --- a/devel/okteta/pkg-descr +++ b/devel/okteta/pkg-descr @@ -1 +1,30 @@ -KDE hex editor. +Okteta is a simple editor for the raw data of files. + +Features + * Values and characters shown either in two columns (the traditional display + in hex editors) or in rows with the value on top of the character + * Editing and navigating similar to a text editor + * Customizable data views + * Data view profiles + * Tools dockable on all sides or floating + * Numerical encodings: Hexadecimal, Decimal, Octal, Binary + * Character encodings: All 8-bit encodings as supplied by Qt, EBCDIC + * Fast data rendering on screen + * Multiple open files + * Support for remote files, by http, ftp, fish & other protocols supported by + KDE Platform + * Export of data to text, both file and clipboard. + * Checksum/Hashsum calculator: Modular sum (8/16/32/64 bit), Adler-32, CRC-32 + and Hashsums by the QCA2 library, can be SHA-0/1/224/256/384/512, MD2/4/5, + RIPEMD-160, Whirlpool + * Structures tool for analyzing and editing based on user-creatable structure + definitions + * Statistic tool + * String extraction tool + * 8-bit charset conversion tool + * Decoding table listing common simple data types. + * Bookmarks + * Printing + * Table with complete list of all byte values + +WWW: https://www.kde.org/applications/utilities/okteta/ diff --git a/devel/okteta/pkg-plist b/devel/okteta/pkg-plist index f9b38b3bfc8..8bba9c3e42d 100644 --- a/devel/okteta/pkg-plist +++ b/devel/okteta/pkg-plist @@ -81,11 +81,14 @@ include/Kasten/ModifiedBarController include/Kasten/MultiDocumentStrategy include/Kasten/MultiViewAreas include/Kasten/Okteta/AbstractByteArrayStreamEncoder +include/Kasten/Okteta/AddressComboBox +include/Kasten/Okteta/AddressValidator include/Kasten/Okteta/BookmarksController include/Kasten/Okteta/BookmarksTool include/Kasten/Okteta/BookmarksToolFactory include/Kasten/Okteta/BookmarksToolView include/Kasten/Okteta/BookmarksToolViewFactory +include/Kasten/Okteta/ByteArrayComboBox include/Kasten/Okteta/ByteArrayDataGeneratorConfigEditorFactoryFactory include/Kasten/Okteta/ByteArrayDataGeneratorFactory include/Kasten/Okteta/ByteArrayDocument @@ -322,11 +325,14 @@ include/kasten/modifiedbarcontroller.h include/kasten/multidocumentstrategy.h include/kasten/multiviewareas.h include/kasten/okteta/abstractbytearraystreamencoder.h +include/kasten/okteta/addresscombobox.h +include/kasten/okteta/addressvalidator.h include/kasten/okteta/bookmarkscontroller.h include/kasten/okteta/bookmarkstool.h include/kasten/okteta/bookmarkstoolfactory.h include/kasten/okteta/bookmarkstoolview.h include/kasten/okteta/bookmarkstoolviewfactory.h +include/kasten/okteta/bytearraycombobox.h include/kasten/okteta/bytearraydatageneratorconfigeditorfactoryfactory.h include/kasten/okteta/bytearraydatageneratorfactory.h include/kasten/okteta/bytearraydocument.h @@ -545,14 +551,32 @@ lib/libokteta2gui.so.2 %%QT_PLUGINDIR%%/designer/oktetawidgets.so %%QT_PLUGINDIR%%/oktetapart.so share/applications/org.kde.okteta.desktop -share/config.kcfg/structviewpreferences.kcfg +share/config.kcfg/structureviewpreferences.kcfg +share/doc/HTML/de/okteta/index.cache.bz2 +share/doc/HTML/de/okteta/index.docbook +share/doc/HTML/en/okteta/index.cache.bz2 +share/doc/HTML/en/okteta/index.docbook +share/doc/HTML/es/okteta/index.cache.bz2 +share/doc/HTML/es/okteta/index.docbook +share/doc/HTML/it/okteta/index.cache.bz2 +share/doc/HTML/it/okteta/index.docbook +share/doc/HTML/nl/okteta/index.cache.bz2 +share/doc/HTML/nl/okteta/index.docbook +share/doc/HTML/pt/okteta/index.cache.bz2 +share/doc/HTML/pt/okteta/index.docbook +share/doc/HTML/pt_BR/okteta/index.cache.bz2 +share/doc/HTML/pt_BR/okteta/index.docbook +share/doc/HTML/sr/okteta/index.cache.bz2 +share/doc/HTML/sr/okteta/index.docbook +share/doc/HTML/sr@latin/okteta/index.cache.bz2 +share/doc/HTML/sr@latin/okteta/index.docbook +share/doc/HTML/sv/okteta/index.cache.bz2 +share/doc/HTML/sv/okteta/index.docbook +share/doc/HTML/uk/okteta/index.cache.bz2 +share/doc/HTML/uk/okteta/index.docbook share/icons/hicolor/16x16/apps/okteta.png share/icons/hicolor/32x32/apps/okteta.png share/icons/hicolor/48x48/apps/okteta.png -share/kxmlgui5/okteta/oktetaui.rc -share/kxmlgui5/oktetapart/oktetapartbrowserui.rc -share/kxmlgui5/oktetapart/oktetapartreadonlyui.rc -share/kxmlgui5/oktetapart/oktetapartreadwriteui.rc share/locale/ar/LC_MESSAGES/libkasten.mo share/locale/ar/LC_MESSAGES/liboktetacore.mo share/locale/ar/LC_MESSAGES/liboktetakasten.mo @@ -564,9 +588,14 @@ share/locale/ast/LC_MESSAGES/liboktetagui.mo share/locale/ast/LC_MESSAGES/liboktetakasten.mo share/locale/ast/LC_MESSAGES/okteta.mo share/locale/ast/LC_MESSAGES/oktetapart.mo +share/locale/be/LC_MESSAGES/libkasten.mo +share/locale/be/LC_MESSAGES/liboktetakasten.mo +share/locale/be/LC_MESSAGES/okteta.mo +share/locale/be/LC_MESSAGES/oktetapart.mo share/locale/bg/LC_MESSAGES/liboktetacore.mo share/locale/bg/LC_MESSAGES/liboktetagui.mo share/locale/bg/LC_MESSAGES/oktetapart.mo +share/locale/br/LC_MESSAGES/oktetapart.mo share/locale/bs/LC_MESSAGES/libkasten.mo share/locale/bs/LC_MESSAGES/liboktetacore.mo share/locale/bs/LC_MESSAGES/liboktetagui.mo @@ -591,6 +620,7 @@ share/locale/cs/LC_MESSAGES/liboktetagui.mo share/locale/cs/LC_MESSAGES/liboktetakasten.mo share/locale/cs/LC_MESSAGES/okteta.mo share/locale/cs/LC_MESSAGES/oktetapart.mo +share/locale/cy/LC_MESSAGES/oktetapart.mo share/locale/da/LC_MESSAGES/libkasten.mo share/locale/da/LC_MESSAGES/liboktetacore.mo share/locale/da/LC_MESSAGES/liboktetagui.mo @@ -664,6 +694,7 @@ share/locale/gl/LC_MESSAGES/liboktetakasten.mo share/locale/gl/LC_MESSAGES/okteta.mo share/locale/gl/LC_MESSAGES/oktetapart.mo share/locale/hi/LC_MESSAGES/oktetapart.mo +share/locale/hne/LC_MESSAGES/oktetapart.mo share/locale/hr/LC_MESSAGES/libkasten.mo share/locale/hr/LC_MESSAGES/liboktetacore.mo share/locale/hr/LC_MESSAGES/liboktetakasten.mo @@ -677,8 +708,8 @@ share/locale/hu/LC_MESSAGES/okteta.mo share/locale/hu/LC_MESSAGES/oktetapart.mo share/locale/id/LC_MESSAGES/libkasten.mo share/locale/id/LC_MESSAGES/liboktetacore.mo -share/locale/id/LC_MESSAGES/okteta.mo share/locale/id/LC_MESSAGES/liboktetagui.mo +share/locale/id/LC_MESSAGES/okteta.mo share/locale/id/LC_MESSAGES/oktetapart.mo share/locale/is/LC_MESSAGES/libkasten.mo share/locale/is/LC_MESSAGES/liboktetacore.mo @@ -724,12 +755,16 @@ share/locale/lv/LC_MESSAGES/liboktetacore.mo share/locale/lv/LC_MESSAGES/liboktetakasten.mo share/locale/lv/LC_MESSAGES/okteta.mo share/locale/lv/LC_MESSAGES/oktetapart.mo +share/locale/mai/LC_MESSAGES/libkasten.mo +share/locale/mai/LC_MESSAGES/liboktetakasten.mo +share/locale/mk/LC_MESSAGES/oktetapart.mo share/locale/mr/LC_MESSAGES/libkasten.mo share/locale/mr/LC_MESSAGES/liboktetacore.mo share/locale/mr/LC_MESSAGES/liboktetagui.mo share/locale/mr/LC_MESSAGES/liboktetakasten.mo share/locale/mr/LC_MESSAGES/okteta.mo share/locale/mr/LC_MESSAGES/oktetapart.mo +share/locale/ms/LC_MESSAGES/oktetapart.mo share/locale/nb/LC_MESSAGES/libkasten.mo share/locale/nb/LC_MESSAGES/liboktetacore.mo share/locale/nb/LC_MESSAGES/liboktetagui.mo @@ -742,6 +777,7 @@ share/locale/nds/LC_MESSAGES/liboktetagui.mo share/locale/nds/LC_MESSAGES/liboktetakasten.mo share/locale/nds/LC_MESSAGES/okteta.mo share/locale/nds/LC_MESSAGES/oktetapart.mo +share/locale/ne/LC_MESSAGES/oktetapart.mo share/locale/nl/LC_MESSAGES/libkasten.mo share/locale/nl/LC_MESSAGES/liboktetacore.mo share/locale/nl/LC_MESSAGES/liboktetagui.mo @@ -754,6 +790,10 @@ share/locale/nn/LC_MESSAGES/liboktetagui.mo share/locale/nn/LC_MESSAGES/liboktetakasten.mo share/locale/nn/LC_MESSAGES/okteta.mo share/locale/nn/LC_MESSAGES/oktetapart.mo +share/locale/oc/LC_MESSAGES/libkasten.mo +share/locale/oc/LC_MESSAGES/liboktetakasten.mo +share/locale/oc/LC_MESSAGES/okteta.mo +share/locale/oc/LC_MESSAGES/oktetapart.mo share/locale/pa/LC_MESSAGES/liboktetacore.mo share/locale/pa/LC_MESSAGES/okteta.mo share/locale/pa/LC_MESSAGES/oktetapart.mo @@ -787,6 +827,7 @@ share/locale/ru/LC_MESSAGES/liboktetagui.mo share/locale/ru/LC_MESSAGES/liboktetakasten.mo share/locale/ru/LC_MESSAGES/okteta.mo share/locale/ru/LC_MESSAGES/oktetapart.mo +share/locale/se/LC_MESSAGES/oktetapart.mo share/locale/sk/LC_MESSAGES/libkasten.mo share/locale/sk/LC_MESSAGES/liboktetacore.mo share/locale/sk/LC_MESSAGES/liboktetagui.mo @@ -799,18 +840,42 @@ share/locale/sl/LC_MESSAGES/liboktetagui.mo share/locale/sl/LC_MESSAGES/liboktetakasten.mo share/locale/sl/LC_MESSAGES/okteta.mo share/locale/sl/LC_MESSAGES/oktetapart.mo +share/locale/sq/LC_MESSAGES/liboktetacore.mo +share/locale/sq/LC_MESSAGES/okteta.mo +share/locale/sq/LC_MESSAGES/oktetapart.mo share/locale/sr/LC_MESSAGES/libkasten.mo share/locale/sr/LC_MESSAGES/liboktetacore.mo share/locale/sr/LC_MESSAGES/liboktetagui.mo share/locale/sr/LC_MESSAGES/liboktetakasten.mo share/locale/sr/LC_MESSAGES/okteta.mo share/locale/sr/LC_MESSAGES/oktetapart.mo +share/locale/sr@ijekavian/LC_MESSAGES/libkasten.mo +share/locale/sr@ijekavian/LC_MESSAGES/liboktetacore.mo +share/locale/sr@ijekavian/LC_MESSAGES/liboktetagui.mo +share/locale/sr@ijekavian/LC_MESSAGES/liboktetakasten.mo +share/locale/sr@ijekavian/LC_MESSAGES/okteta.mo +share/locale/sr@ijekavian/LC_MESSAGES/oktetapart.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/libkasten.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/liboktetacore.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/liboktetagui.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/liboktetakasten.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/okteta.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/oktetapart.mo +share/locale/sr@latin/LC_MESSAGES/libkasten.mo +share/locale/sr@latin/LC_MESSAGES/liboktetacore.mo +share/locale/sr@latin/LC_MESSAGES/liboktetagui.mo +share/locale/sr@latin/LC_MESSAGES/liboktetakasten.mo +share/locale/sr@latin/LC_MESSAGES/okteta.mo +share/locale/sr@latin/LC_MESSAGES/oktetapart.mo share/locale/sv/LC_MESSAGES/libkasten.mo share/locale/sv/LC_MESSAGES/liboktetacore.mo share/locale/sv/LC_MESSAGES/liboktetagui.mo share/locale/sv/LC_MESSAGES/liboktetakasten.mo share/locale/sv/LC_MESSAGES/okteta.mo share/locale/sv/LC_MESSAGES/oktetapart.mo +share/locale/ta/LC_MESSAGES/oktetapart.mo +share/locale/th/LC_MESSAGES/liboktetakasten.mo +share/locale/th/LC_MESSAGES/oktetapart.mo share/locale/tr/LC_MESSAGES/libkasten.mo share/locale/tr/LC_MESSAGES/liboktetacore.mo share/locale/tr/LC_MESSAGES/liboktetagui.mo diff --git a/devel/p5-AI-Pathfinding-AStar/Makefile b/devel/p5-AI-Pathfinding-AStar/Makefile index 1c115a5d20d..3b3a53c9959 100644 --- a/devel/p5-AI-Pathfinding-AStar/Makefile +++ b/devel/p5-AI-Pathfinding-AStar/Makefile @@ -14,8 +14,8 @@ COMMENT= Perl implementation of the A* pathfinding algorithm LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Heap>=0:devel/p5-Heap -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Heap>=0:devel/p5-Heap USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Acme-MetaSyntactic/Makefile b/devel/p5-Acme-MetaSyntactic/Makefile index ddfafd6e6fb..3cc66acccce 100644 --- a/devel/p5-Acme-MetaSyntactic/Makefile +++ b/devel/p5-Acme-MetaSyntactic/Makefile @@ -14,8 +14,8 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-libwww>=0:www/p5-libwww NO_ARCH= yes USES= perl5 diff --git a/devel/p5-Agent/Makefile b/devel/p5-Agent/Makefile index f0798e3e793..952d5a296c9 100644 --- a/devel/p5-Agent/Makefile +++ b/devel/p5-Agent/Makefile @@ -13,8 +13,8 @@ COMMENT= Perl module that provides a foundation for software agent developers LICENSE= ARTPERL10 -BUILD_DEPENDS= p5-Class-Tom>=0:devel/p5-Class-Tom -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Tom>=0:devel/p5-Class-Tom USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Algorithm-Accounting/Makefile b/devel/p5-Algorithm-Accounting/Makefile index 45696d84460..48f3c99a106 100644 --- a/devel/p5-Algorithm-Accounting/Makefile +++ b/devel/p5-Algorithm-Accounting/Makefile @@ -11,7 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= ychsiao@ychsiao.org COMMENT= Generate accounting statistic for general logs -BUILD_DEPENDS= p5-Spiffy>=0:devel/p5-Spiffy \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Spiffy>=0:devel/p5-Spiffy \ p5-Perl6-Form>=0:devel/p5-Perl6-Form \ p5-FreezeThaw>=0:devel/p5-FreezeThaw \ p5-Array-Compare>=0:misc/p5-Array-Compare \ @@ -20,7 +21,6 @@ BUILD_DEPENDS= p5-Spiffy>=0:devel/p5-Spiffy \ p5-GD-Graph>=0:graphics/p5-GD-Graph \ p5-Imager-Graph>=0:graphics/p5-Imager-Graph \ p5-YAML>=0:textproc/p5-YAML -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Algorithm-Annotate/Makefile b/devel/p5-Algorithm-Annotate/Makefile index c2130c34635..2eafc7e9059 100644 --- a/devel/p5-Algorithm-Annotate/Makefile +++ b/devel/p5-Algorithm-Annotate/Makefile @@ -14,8 +14,8 @@ COMMENT= Represent a series of changes in annotate form LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Algorithm-Diff>=0:devel/p5-Algorithm-Diff -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Algorithm-Diff>=0:devel/p5-Algorithm-Diff USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Algorithm-Bucketizer/Makefile b/devel/p5-Algorithm-Bucketizer/Makefile index c3d5518cb44..d3dd75afe0e 100644 --- a/devel/p5-Algorithm-Bucketizer/Makefile +++ b/devel/p5-Algorithm-Bucketizer/Makefile @@ -14,9 +14,9 @@ COMMENT= Distribute sized items to buckets with limited size LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Algorithm-Permute>=0:devel/p5-Algorithm-Permute \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Algorithm-Permute>=0:devel/p5-Algorithm-Permute \ p5-Sysadm-Install>=0.23:sysutils/p5-Sysadm-Install -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Algorithm-Dependency-Objects/Makefile b/devel/p5-Algorithm-Dependency-Objects/Makefile index 9f6d21287ad..9b07cfc59b3 100644 --- a/devel/p5-Algorithm-Dependency-Objects/Makefile +++ b/devel/p5-Algorithm-Dependency-Objects/Makefile @@ -14,8 +14,8 @@ COMMENT= Implementation of an Object Dependency Algorithm LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Set-Object>=0:devel/p5-Set-Object -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Set-Object>=0:devel/p5-Set-Object TEST_DEPENDS= p5-Test-Deep>=0:devel/p5-Test-Deep USES= perl5 diff --git a/devel/p5-Algorithm-Dependency/Makefile b/devel/p5-Algorithm-Dependency/Makefile index f064870dfc2..e2dababb4f0 100644 --- a/devel/p5-Algorithm-Dependency/Makefile +++ b/devel/p5-Algorithm-Dependency/Makefile @@ -14,8 +14,8 @@ COMMENT= Base class for implementing various dependency trees LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Params-Util>=0.31:devel/p5-Params-Util -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Params-Util>=0.31:devel/p5-Params-Util TEST_DEPENDS= p5-Test-ClassAPI>=0.6:devel/p5-Test-ClassAPI USES= perl5 diff --git a/devel/p5-Algorithm-Evolutionary/Makefile b/devel/p5-Algorithm-Evolutionary/Makefile index 43ec0668d03..869d0b451fc 100644 --- a/devel/p5-Algorithm-Evolutionary/Makefile +++ b/devel/p5-Algorithm-Evolutionary/Makefile @@ -13,7 +13,8 @@ COMMENT= Library for doing evolutionary computation in Perl LICENSE= GPLv2 -BUILD_DEPENDS= p5-Algorithm-Permute>=0.01:devel/p5-Algorithm-Permute \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Algorithm-Permute>=0.01:devel/p5-Algorithm-Permute \ p5-Bit-Vector>=0:math/p5-Bit-Vector \ p5-Clone>=0.31:devel/p5-Clone \ p5-GD>=2.17:graphics/p5-GD \ @@ -27,7 +28,6 @@ BUILD_DEPENDS= p5-Algorithm-Permute>=0.01:devel/p5-Algorithm-Permute \ p5-XML-Parser>=2.40:textproc/p5-XML-Parser \ p5-XML-Parser-Style-EasyTree>=0:textproc/p5-XML-Parser-Style-EasyTree \ p5-YAML>=0:textproc/p5-YAML -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Pod-Escapes>=0:textproc/p5-Pod-Escapes \ p5-Test-Pod>=0:devel/p5-Test-Pod diff --git a/devel/p5-Algorithm-FloodControl/Makefile b/devel/p5-Algorithm-FloodControl/Makefile index cafa9d55f78..db11a83aa7f 100644 --- a/devel/p5-Algorithm-FloodControl/Makefile +++ b/devel/p5-Algorithm-FloodControl/Makefile @@ -11,10 +11,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Robot protection -BUILD_DEPENDS= p5-Params-Validate>=0:devel/p5-Params-Validate \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Params-Validate>=0:devel/p5-Params-Validate \ p5-Cache-FastMmap>=0:devel/p5-Cache-FastMmap \ p5-Class-Accessor>=0:devel/p5-Class-Accessor -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Algorithm-IncludeExclude/Makefile b/devel/p5-Algorithm-IncludeExclude/Makefile index c2422ffa8fd..806f7f4f9c6 100644 --- a/devel/p5-Algorithm-IncludeExclude/Makefile +++ b/devel/p5-Algorithm-IncludeExclude/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Build and evaluate include/exclude lists -BUILD_DEPENDS= p5-Test-Exception>=0:devel/p5-Test-Exception -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Test-Exception>=0:devel/p5-Test-Exception USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Algorithm-Networksort/Makefile b/devel/p5-Algorithm-Networksort/Makefile index adce1cb1e5c..8193fd9e44f 100644 --- a/devel/p5-Algorithm-Networksort/Makefile +++ b/devel/p5-Algorithm-Networksort/Makefile @@ -14,9 +14,9 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Moose>=2.1600:devel/p5-Moose \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Moose>=2.1600:devel/p5-Moose \ p5-namespace-autoclean>=0.16:devel/p5-namespace-autoclean -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= dos2unix perl5 diff --git a/devel/p5-Alzabo/Makefile b/devel/p5-Alzabo/Makefile index a551cea08b5..5e4ce691bd0 100644 --- a/devel/p5-Alzabo/Makefile +++ b/devel/p5-Alzabo/Makefile @@ -13,12 +13,12 @@ COMMENT= Data modelling tool and RDBMS-OO mapper OPTIONS_DEFINE= DOCS EXAMPLES -BUILD_DEPENDS= p5-Exception-Class>=0:devel/p5-Exception-Class \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Exception-Class>=0:devel/p5-Exception-Class \ p5-Class-Factory-Util>=0:devel/p5-Class-Factory-Util \ p5-Params-Validate>=0:devel/p5-Params-Validate \ p5-Tie-IxHash>=0:devel/p5-Tie-IxHash \ p5-DBI>=0:databases/p5-DBI -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= modbuild diff --git a/devel/p5-Any-Daemon/Makefile b/devel/p5-Any-Daemon/Makefile index 460298b8bd8..ded6767cea3 100644 --- a/devel/p5-Any-Daemon/Makefile +++ b/devel/p5-Any-Daemon/Makefile @@ -15,8 +15,8 @@ COMMENT= Provides basic needs for a daemon LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Log-Report-Optional>=1.06:devel/p5-Log-Report-Optional -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Log-Report-Optional>=1.06:devel/p5-Log-Report-Optional USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Any-Moose-Convert/Makefile b/devel/p5-Any-Moose-Convert/Makefile index 494b0791c12..c2e49a39477 100644 --- a/devel/p5-Any-Moose-Convert/Makefile +++ b/devel/p5-Any-Moose-Convert/Makefile @@ -14,8 +14,8 @@ COMMENT= Convert Moose libraries to Mouse ones, or vice versa LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-PerlIO-Util>=0:devel/p5-PerlIO-Util -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-PerlIO-Util>=0:devel/p5-PerlIO-Util TEST_DEPENDS= p5-Moose>=0.90:devel/p5-Moose \ p5-Mouse>=0.40:devel/p5-Mouse diff --git a/devel/p5-AnyData/Makefile b/devel/p5-AnyData/Makefile index 9029e87a82b..be87ae6756a 100644 --- a/devel/p5-AnyData/Makefile +++ b/devel/p5-AnyData/Makefile @@ -15,8 +15,8 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-CGI>=0:www/p5-CGI -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-CGI>=0:www/p5-CGI TEST_DEPENDS= p5-Test-Output>=0:devel/p5-Test-Output NO_ARCH= yes diff --git a/devel/p5-AnyEvent-DBI-Abstract/Makefile b/devel/p5-AnyEvent-DBI-Abstract/Makefile index e939cfcb01b..b80ebc7b4bb 100644 --- a/devel/p5-AnyEvent-DBI-Abstract/Makefile +++ b/devel/p5-AnyEvent-DBI-Abstract/Makefile @@ -14,9 +14,9 @@ COMMENT= AnyEvent::DBI + SQL::Abstract LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-AnyEvent-DBI>=0:devel/p5-AnyEvent-DBI \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-AnyEvent-DBI>=0:devel/p5-AnyEvent-DBI \ p5-SQL-Abstract>=0:databases/p5-SQL-Abstract -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-AnyEvent-DBI/Makefile b/devel/p5-AnyEvent-DBI/Makefile index 1162f2dc62f..33b9ad266bb 100644 --- a/devel/p5-AnyEvent-DBI/Makefile +++ b/devel/p5-AnyEvent-DBI/Makefile @@ -14,10 +14,10 @@ COMMENT= Asynchronous DBI access LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-AnyEvent>=4.15:devel/p5-AnyEvent \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-AnyEvent>=4.15:devel/p5-AnyEvent \ p5-DBI>=1.0:databases/p5-DBI \ p5-common-sense>=3.3:devel/p5-common-sense -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-AnyEvent-Gearman/Makefile b/devel/p5-AnyEvent-Gearman/Makefile index 98180fa3709..df76405caa5 100644 --- a/devel/p5-AnyEvent-Gearman/Makefile +++ b/devel/p5-AnyEvent-Gearman/Makefile @@ -14,13 +14,13 @@ COMMENT= Asynchronous Gearman client/worker module for AnyEvent applications LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Any-Moose>=0:devel/p5-Any-Moose \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Any-Moose>=0:devel/p5-Any-Moose \ p5-AnyEvent>=0:devel/p5-AnyEvent \ p5-Mouse>=0:devel/p5-Mouse \ p5-MouseX-Foreign>=0:devel/p5-MouseX-Foreign \ p5-Object-Container>=0:devel/p5-Object-Container \ p5-Object-Event>=0:devel/p5-Object-Event -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USE_PERL5= configure diff --git a/devel/p5-AnyEvent-RPC/Makefile b/devel/p5-AnyEvent-RPC/Makefile index 923012c23e3..ef098678c28 100644 --- a/devel/p5-AnyEvent-RPC/Makefile +++ b/devel/p5-AnyEvent-RPC/Makefile @@ -11,7 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= anes@anes.su COMMENT= Abstract framework for RPC clients -BUILD_DEPENDS= p5-URI>=0:net/p5-URI \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-URI>=0:net/p5-URI \ p5-AnyEvent>=5:devel/p5-AnyEvent \ p5-XML-Hash-LX>=0.05:textproc/p5-XML-Hash-LX \ p5-YAML-Syck>=0:textproc/p5-YAML-Syck \ @@ -21,7 +22,6 @@ BUILD_DEPENDS= p5-URI>=0:net/p5-URI \ p5-Test-NoWarnings>=1.03:devel/p5-Test-NoWarnings \ p5-Test-TCP>=0.14:devel/p5-Test-TCP \ p5-lib-abs>=0.90:devel/p5-lib-abs -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-AnyEvent-Subprocess/Makefile b/devel/p5-AnyEvent-Subprocess/Makefile index d7b1e4d9872..fa5ff69c0ae 100644 --- a/devel/p5-AnyEvent-Subprocess/Makefile +++ b/devel/p5-AnyEvent-Subprocess/Makefile @@ -14,7 +14,8 @@ COMMENT= Flexible, OO, asynchronous process spawning and management LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-AnyEvent>=5.2:devel/p5-AnyEvent \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-AnyEvent>=5.2:devel/p5-AnyEvent \ p5-EV>=4.0:devel/p5-EV \ p5-Event-Join>=0.05:devel/p5-Event-Join \ p5-IO-Tty>=0:devel/p5-IO-Tty \ @@ -29,7 +30,6 @@ BUILD_DEPENDS= p5-AnyEvent>=5.2:devel/p5-AnyEvent \ p5-Try-Tiny>=0:lang/p5-Try-Tiny \ p5-namespace-autoclean>=0:devel/p5-namespace-autoclean \ p5-namespace-clean>0:devel/p5-namespace-clean -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Exception>0:devel/p5-Test-Exception NO_ARCH= yes diff --git a/devel/p5-AnyEvent-Worker/Makefile b/devel/p5-AnyEvent-Worker/Makefile index 9a3691f1fd3..f1b1e538a85 100644 --- a/devel/p5-AnyEvent-Worker/Makefile +++ b/devel/p5-AnyEvent-Worker/Makefile @@ -14,12 +14,12 @@ COMMENT= Manage blocking task in external process LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-AnyEvent>=5:devel/p5-AnyEvent \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-AnyEvent>=5:devel/p5-AnyEvent \ p5-common-sense>=2:devel/p5-common-sense \ p5-Test-NoWarnings>=1.03:devel/p5-Test-NoWarnings \ p5-Test-TCP>=0.14:devel/p5-Test-TCP \ p5-lib-abs>=0.90:devel/p5-lib-abs -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/devel/p5-AnyMQ/Makefile b/devel/p5-AnyMQ/Makefile index c3e33ded0ee..13a43af0e76 100644 --- a/devel/p5-AnyMQ/Makefile +++ b/devel/p5-AnyMQ/Makefile @@ -15,12 +15,12 @@ COMMENT= Non-blocking message queue system based on AnyEvent LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Any-Moose>=0:devel/p5-Any-Moose \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Any-Moose>=0:devel/p5-Any-Moose \ p5-AnyEvent>=0:devel/p5-AnyEvent \ p5-Try-Tiny>=0:lang/p5-Try-Tiny \ p5-MouseX-NativeTraits>=0:devel/p5-MouseX-NativeTraits \ p5-MouseX-Traits>=0:devel/p5-MouseX-Traits -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Memory-Cycle>=0:devel/p5-Test-Memory-Cycle \ p5-Test-Requires>=0:devel/p5-Test-Requires diff --git a/devel/p5-App-Build/Makefile b/devel/p5-App-Build/Makefile index 760c0d91358..cf5a3378659 100644 --- a/devel/p5-App-Build/Makefile +++ b/devel/p5-App-Build/Makefile @@ -14,9 +14,9 @@ COMMENT= Build and install Perl applications LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-App-Options>=0:devel/p5-App-Options \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-App-Options>=0:devel/p5-App-Options \ p5-Module-Build>=0.28:devel/p5-Module-Build -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Differences>=0.47:devel/p5-Test-Differences NO_ARCH= yes diff --git a/devel/p5-App-CLI-Extension/Makefile b/devel/p5-App-CLI-Extension/Makefile index 740a3d71549..42c905cf9f3 100644 --- a/devel/p5-App-CLI-Extension/Makefile +++ b/devel/p5-App-CLI-Extension/Makefile @@ -14,12 +14,12 @@ COMMENT= Extension for App::CLI extension module LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-App-CLI>=0.313:devel/p5-App-CLI \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-App-CLI>=0.313:devel/p5-App-CLI \ p5-Class-Accessor-Grouped>=0.10000:devel/p5-Class-Accessor-Grouped \ p5-Error>=0.17000:lang/p5-Error \ p5-MRO-Compat>=0.11:devel/p5-MRO-Compat \ p5-UNIVERSAL-require>=0.13:devel/p5-UNIVERSAL-require -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/devel/p5-App-Cmd/Makefile b/devel/p5-App-Cmd/Makefile index 26cf3752fca..d7f4b9be5ba 100644 --- a/devel/p5-App-Cmd/Makefile +++ b/devel/p5-App-Cmd/Makefile @@ -13,7 +13,8 @@ COMMENT= App::Cmd - Write command line apps with less suffering LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Capture-Tiny>=0.13:devel/p5-Capture-Tiny \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Capture-Tiny>=0.13:devel/p5-Capture-Tiny \ p5-Class-Load>=0.06:devel/p5-Class-Load \ p5-Getopt-Long-Descriptive>=0.084:devel/p5-Getopt-Long-Descriptive \ p5-IO-TieCombine>=0:devel/p5-IO-TieCombine \ @@ -21,7 +22,6 @@ BUILD_DEPENDS= p5-Capture-Tiny>=0.13:devel/p5-Capture-Tiny \ p5-Sub-Exporter>=0:devel/p5-Sub-Exporter \ p5-Sub-Install>=0:devel/p5-Sub-Install \ p5-Module-Pluggable>=5.1:devel/p5-Module-Pluggable -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Fatal>=0:devel/p5-Test-Fatal \ p5-PathTools>=0:devel/p5-PathTools \ p5-IPC-Cmd>=0:devel/p5-IPC-Cmd diff --git a/devel/p5-App-GitGot/Makefile b/devel/p5-App-GitGot/Makefile index 2375346f6f9..57444bf9f45 100644 --- a/devel/p5-App-GitGot/Makefile +++ b/devel/p5-App-GitGot/Makefile @@ -14,7 +14,8 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-App-Cmd>=0:devel/p5-App-Cmd \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-App-Cmd>=0:devel/p5-App-Cmd \ p5-Capture-Tiny>=0:devel/p5-Capture-Tiny \ p5-Config-INI>=0:devel/p5-Config-INI \ p5-Class-Load>=0:devel/p5-Class-Load \ @@ -32,7 +33,6 @@ BUILD_DEPENDS= p5-App-Cmd>=0:devel/p5-App-Cmd \ p5-Try-Tiny>=0:lang/p5-Try-Tiny \ p5-YAML>=0:textproc/p5-YAML \ p5-namespace-autoclean>=0:devel/p5-namespace-autoclean -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Class>=0:devel/p5-Test-Class \ p5-Test-Exception>=0:devel/p5-Test-Exception \ p5-Test-File>=0:devel/p5-Test-File @@ -44,7 +44,8 @@ USE_PERL5= configure .include .if ${PERL_LEVEL} < 502501 -BUILD_DEPENDS+= p5-Scalar-List-Utils>=1.45:lang/p5-Scalar-List-Utils +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS+= p5-Scalar-List-Utils>=1.45:lang/p5-Scalar-List-Utils RUN_DEPENDS+= p5-Scalar-List-Utils>=1.45:lang/p5-Scalar-List-Utils .endif diff --git a/devel/p5-App-GitHub/Makefile b/devel/p5-App-GitHub/Makefile index 95520529a00..6eb055787f4 100644 --- a/devel/p5-App-GitHub/Makefile +++ b/devel/p5-App-GitHub/Makefile @@ -14,10 +14,10 @@ COMMENT= GitHub Command Tools LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-JSON-XS>=2.3:converters/p5-JSON-XS \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-JSON-XS>=2.3:converters/p5-JSON-XS \ p5-Moose>=0:devel/p5-Moose \ p5-Net-GitHub>=0.12:net/p5-Net-GitHub -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-App-SD/Makefile b/devel/p5-App-SD/Makefile index 200b6e13477..9836828eec9 100644 --- a/devel/p5-App-SD/Makefile +++ b/devel/p5-App-SD/Makefile @@ -13,12 +13,12 @@ COMMENT= Peer-to-peer replicated distributed issue tracker LICENSE= MIT -BUILD_DEPENDS= p5-DateTime>=:devel/p5-DateTime \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-DateTime>=:devel/p5-DateTime \ p5-DateTime-Format-Natural>=0:devel/p5-DateTime-Format-Natural \ p5-HTML-Tree>=0:www/p5-HTML-Tree \ p5-Prophet>=0:databases/p5-Prophet \ p5-Test-Script-Run>=0.02:devel/p5-Test-Script-Run -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-App-SVN-Bisect/Makefile b/devel/p5-App-SVN-Bisect/Makefile index fba5408e5ce..d57012b1676 100644 --- a/devel/p5-App-SVN-Bisect/Makefile +++ b/devel/p5-App-SVN-Bisect/Makefile @@ -13,10 +13,10 @@ COMMENT= Binary search through svn revisions LICENSE= ART20 -BUILD_DEPENDS= p5-IO-All>0:devel/p5-IO-All \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-IO-All>0:devel/p5-IO-All \ p5-YAML-Syck>0:textproc/p5-YAML-Syck \ ${LOCALBASE}/bin/svn:devel/subversion -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Exception>=0:devel/p5-Test-Exception \ p5-Test-Output>=0:devel/p5-Test-Output diff --git a/devel/p5-App-Trace/Makefile b/devel/p5-App-Trace/Makefile index 04c6ced5c6e..960da52f59b 100644 --- a/devel/p5-App-Trace/Makefile +++ b/devel/p5-App-Trace/Makefile @@ -14,8 +14,8 @@ COMMENT= Embedded debug statements, including call/return tracing LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-App-Options>=0:devel/p5-App-Options -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-App-Options>=0:devel/p5-App-Options NO_ARCH= yes USE_PERL5= configure diff --git a/devel/p5-App-cpanminus-reporter/Makefile b/devel/p5-App-cpanminus-reporter/Makefile index 60b189bac42..b4958c2492e 100644 --- a/devel/p5-App-cpanminus-reporter/Makefile +++ b/devel/p5-App-cpanminus-reporter/Makefile @@ -13,7 +13,8 @@ COMMENT= Perl extension to send cpanm output to CPAN Testers database LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Capture-Tiny>=0:devel/p5-Capture-Tiny \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Capture-Tiny>=0:devel/p5-Capture-Tiny \ p5-Config-Tiny>=2.08:devel/p5-Config-Tiny \ p5-CPAN-Testers-Common-Client>=0.13:devel/p5-CPAN-Testers-Common-Client \ p5-File-HomeDir>=0.58:devel/p5-File-HomeDir \ @@ -24,7 +25,6 @@ BUILD_DEPENDS= p5-Capture-Tiny>=0:devel/p5-Capture-Tiny \ p5-Test-Reporter-Transport-Metabase>=0:devel/p5-Test-Reporter-Transport-Metabase \ p5-Try-Tiny>=0:lang/p5-Try-Tiny \ p5-URI>=0:net/p5-URI -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-App-cpanoutdated/Makefile b/devel/p5-App-cpanoutdated/Makefile index e4264706955..34d2cce76c7 100644 --- a/devel/p5-App-cpanoutdated/Makefile +++ b/devel/p5-App-cpanoutdated/Makefile @@ -15,10 +15,10 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-CPAN-DistnameInfo>=0.10:devel/p5-CPAN-DistnameInfo \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-CPAN-DistnameInfo>=0.10:devel/p5-CPAN-DistnameInfo \ p5-libwww>=0:www/p5-libwww \ p5-local-lib>=0:devel/p5-local-lib -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USE_PERL5= configure diff --git a/devel/p5-App-perlbrew/Makefile b/devel/p5-App-perlbrew/Makefile index b536499c502..51c44adeb27 100644 --- a/devel/p5-App-perlbrew/Makefile +++ b/devel/p5-App-perlbrew/Makefile @@ -14,11 +14,11 @@ COMMENT= Perl Environment manager LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-CPAN-Perl-Releases>=3.66:devel/p5-CPAN-Perl-Releases \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-CPAN-Perl-Releases>=3.66:devel/p5-CPAN-Perl-Releases \ p5-Capture-Tiny>=0.36:devel/p5-Capture-Tiny \ p5-Devel-PatchPerl>=1.52:devel/p5-Devel-PatchPerl \ p5-local-lib>=2.000014:devel/p5-local-lib -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-File-Which>=1.21:sysutils/p5-File-Which \ p5-IO-All>=0.51:devel/p5-IO-All \ p5-Path-Class>=0.33:devel/p5-Path-Class \ diff --git a/devel/p5-Array-Window/Makefile b/devel/p5-Array-Window/Makefile index b9a9f9d38a7..73eed1dd5f5 100644 --- a/devel/p5-Array-Window/Makefile +++ b/devel/p5-Array-Window/Makefile @@ -14,8 +14,8 @@ COMMENT= Calculate windows/subsets/pages of arrays LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Params-Util>=0.12:devel/p5-Params-Util -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Params-Util>=0.12:devel/p5-Params-Util USES= perl5 USE_PERL5= configure diff --git a/devel/p5-B-Hooks-OP-Annotation/Makefile b/devel/p5-B-Hooks-OP-Annotation/Makefile index bd8f307032b..0f2a0813a9e 100644 --- a/devel/p5-B-Hooks-OP-Annotation/Makefile +++ b/devel/p5-B-Hooks-OP-Annotation/Makefile @@ -14,8 +14,8 @@ COMMENT= Annotate and delegate hooked OPs LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-ExtUtils-Depends>=0.304:devel/p5-ExtUtils-Depends -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-ExtUtils-Depends>=0.304:devel/p5-ExtUtils-Depends USE_PERL5= configure USES= perl5 diff --git a/devel/p5-B-OPCheck/Makefile b/devel/p5-B-OPCheck/Makefile index 587b6800987..962ae9d49a8 100644 --- a/devel/p5-B-OPCheck/Makefile +++ b/devel/p5-B-OPCheck/Makefile @@ -13,10 +13,10 @@ COMMENT= PL_check hacks using Perl callbacks LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-B-Utils>=0.08:devel/p5-B-Utils \ +BUILD_DEPENDS= ${RUN_DEPENDS} \ + p5-ExtUtils-Depends>=0.302:devel/p5-ExtUtils-Depends +RUN_DEPENDS= p5-B-Utils>=0.08:devel/p5-B-Utils \ p5-Scope-Guard>=0:devel/p5-Scope-Guard -RUN_DEPENDS:= ${BUILD_DEPENDS} -BUILD_DEPENDS+= p5-ExtUtils-Depends>=0.302:devel/p5-ExtUtils-Depends USES= perl5 USE_PERL5= configure diff --git a/devel/p5-BZ-Client/Makefile b/devel/p5-BZ-Client/Makefile index 3cdc12ef8ec..9908e79c155 100644 --- a/devel/p5-BZ-Client/Makefile +++ b/devel/p5-BZ-Client/Makefile @@ -14,11 +14,11 @@ COMMENT= Client for the Bugzilla web services API LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-XML-Parser>=0:textproc/p5-XML-Parser \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-XML-Parser>=0:textproc/p5-XML-Parser \ p5-XML-Writer>=0:textproc/p5-XML-Writer \ p5-DateTime-Format-ISO8601>=0:devel/p5-DateTime-Format-ISO8601 \ p5-URI>=0:net/p5-URI -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-libwww>=0:www/p5-libwww \ p5-DateTime-Format-ISO8601>=0:devel/p5-DateTime-Format-ISO8601 diff --git a/devel/p5-Best/Makefile b/devel/p5-Best/Makefile index 533b7f44343..bc451a742d0 100644 --- a/devel/p5-Best/Makefile +++ b/devel/p5-Best/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Fallbackable module loader -BUILD_DEPENDS= p5-Test-Exception>=0:devel/p5-Test-Exception -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Test-Exception>=0:devel/p5-Test-Exception USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Bread-Board-Declare/Makefile b/devel/p5-Bread-Board-Declare/Makefile index 9e32ed0252d..e816195ee2d 100644 --- a/devel/p5-Bread-Board-Declare/Makefile +++ b/devel/p5-Bread-Board-Declare/Makefile @@ -15,11 +15,11 @@ COMMENT= Create Bread::Board containers as normal Moose objects LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Bread-Board>=0.22:devel/p5-Bread-Board \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Bread-Board>=0.22:devel/p5-Bread-Board \ p5-Class-Load>=0.07:devel/p5-Class-Load \ p5-List-MoreUtils>=0:lang/p5-List-MoreUtils \ p5-Moose>=2.0200:devel/p5-Moose -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Fatal>=0:devel/p5-Test-Fatal NO_ARCH= yes diff --git a/devel/p5-Bread-Board/Makefile b/devel/p5-Bread-Board/Makefile index 834a83a0d8b..e2f3513c336 100644 --- a/devel/p5-Bread-Board/Makefile +++ b/devel/p5-Bread-Board/Makefile @@ -15,12 +15,12 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Module-Runtime>=0:devel/p5-Module-Runtime \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Module-Runtime>=0:devel/p5-Module-Runtime \ p5-Moose>=2.1200:devel/p5-Moose \ p5-MooseX-Clone>=0.05:devel/p5-MooseX-Clone \ p5-MooseX-Params-Validate>=0.14:devel/p5-MooseX-Params-Validate \ p5-Try-Tiny>=0:lang/p5-Try-Tiny -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Form-Sensible>=0:devel/p5-Form-Sensible \ p5-Log-Dispatch>=0:devel/p5-Log-Dispatch \ p5-Test-Fatal>=0:devel/p5-Test-Fatal \ diff --git a/devel/p5-CBOR-XS/Makefile b/devel/p5-CBOR-XS/Makefile index c28606d03f3..2d589b2598e 100644 --- a/devel/p5-CBOR-XS/Makefile +++ b/devel/p5-CBOR-XS/Makefile @@ -17,9 +17,9 @@ LICENSE= GPLv3 USES= perl5 USE_PERL5= configure -BUILD_DEPENDS= p5-Types-Serialiser>=0:devel/p5-Types-Serialiser \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Types-Serialiser>=0:devel/p5-Types-Serialiser \ p5-common-sense>=0:devel/p5-common-sense -RUN_DEPENDS:= ${BUILD_DEPENDS} post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/${SITE_ARCH_REL}/auto/CBOR/XS/XS.so diff --git a/devel/p5-CHI-Driver-DBI/Makefile b/devel/p5-CHI-Driver-DBI/Makefile index 18ca1ed54d3..856f0ce3c0a 100644 --- a/devel/p5-CHI-Driver-DBI/Makefile +++ b/devel/p5-CHI-Driver-DBI/Makefile @@ -15,10 +15,10 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-CHI>=0.241:devel/p5-CHI \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-CHI>=0.241:devel/p5-CHI \ p5-DBI>=1.26:databases/p5-DBI \ p5-Moose>=0.66:devel/p5-Moose -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/devel/p5-CPAN-Checksums/Makefile b/devel/p5-CPAN-Checksums/Makefile index 5da4ce4e733..3c31fabd205 100644 --- a/devel/p5-CPAN-Checksums/Makefile +++ b/devel/p5-CPAN-Checksums/Makefile @@ -13,10 +13,10 @@ COMMENT= Perl module to write a CHECKSUMS file for a directory as on CPAN LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Data-Compare>=0:devel/p5-Data-Compare \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Data-Compare>=0:devel/p5-Data-Compare \ p5-Compress-Bzip2>=0:archivers/p5-Compress-Bzip2 \ p5-Module-Signature>=0:security/p5-Module-Signature -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/devel/p5-CPAN-Inject/Makefile b/devel/p5-CPAN-Inject/Makefile index 175a90fb39c..d8d4a14bc38 100644 --- a/devel/p5-CPAN-Inject/Makefile +++ b/devel/p5-CPAN-Inject/Makefile @@ -14,10 +14,10 @@ COMMENT= Base class for injecting distributions into CPAN sources LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-File-chmod>=0.30:devel/p5-File-chmod \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-File-chmod>=0.30:devel/p5-File-chmod \ p5-Params-Util>=0.21:devel/p5-Params-Util \ p5-CPAN-Checksums>=1.05:devel/p5-CPAN-Checksums -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Script-Run>=1.02:devel/p5-Test-Script-Run \ p5-File-Remove>=0.34:devel/p5-File-Remove \ p5-Compress-Bzip2>=0:archivers/p5-Compress-Bzip2 \ diff --git a/devel/p5-CPAN-Recent-Uploads/Makefile b/devel/p5-CPAN-Recent-Uploads/Makefile index 35c3d4c99b1..298d6ee5189 100644 --- a/devel/p5-CPAN-Recent-Uploads/Makefile +++ b/devel/p5-CPAN-Recent-Uploads/Makefile @@ -15,9 +15,9 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-URI>=1.56:net/p5-URI \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-URI>=1.56:net/p5-URI \ p5-YAML-LibYAML>=0.64:textproc/p5-YAML-LibYAML -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-HTTP-Daemon>=0:www/p5-HTTP-Daemon \ p5-HTTP-Message>=0:www/p5-HTTP-Message diff --git a/devel/p5-CPAN-Reporter-Smoker/Makefile b/devel/p5-CPAN-Reporter-Smoker/Makefile index 18883432519..e02c9f5544d 100644 --- a/devel/p5-CPAN-Reporter-Smoker/Makefile +++ b/devel/p5-CPAN-Reporter-Smoker/Makefile @@ -11,11 +11,11 @@ PKGNAMEPREFIX= p5- MAINTAINER= swills@FreeBSD.org COMMENT= Turnkey CPAN Testers smoking -BUILD_DEPENDS= p5-CPAN-Reporter>0:devel/p5-CPAN-Reporter \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-CPAN-Reporter>0:devel/p5-CPAN-Reporter \ p5-Probe-Perl>0:sysutils/p5-Probe-Perl \ p5-Test-Reporter>0:devel/p5-Test-Reporter \ p5-Term-Title>0:devel/p5-Term-Title -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-CPAN-Reporter/Makefile b/devel/p5-CPAN-Reporter/Makefile index 96917887dbb..8fb6e75e9a9 100644 --- a/devel/p5-CPAN-Reporter/Makefile +++ b/devel/p5-CPAN-Reporter/Makefile @@ -10,14 +10,14 @@ PKGNAMEPREFIX= p5- MAINTAINER= swills@FreeBSD.org COMMENT= Adds CPAN Testers reporting to CPAN.pm -BUILD_DEPENDS= p5-Capture-Tiny>0:devel/p5-Capture-Tiny \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Capture-Tiny>0:devel/p5-Capture-Tiny \ p5-Config-Tiny>=2.08:devel/p5-Config-Tiny \ p5-Devel-Autoflush>=0.04:devel/p5-Devel-Autoflush \ p5-File-HomeDir>0:devel/p5-File-HomeDir \ p5-IPC-Cmd>=0.76:devel/p5-IPC-Cmd \ p5-Probe-Perl>0:sysutils/p5-Probe-Perl \ p5-Test-Reporter>1.54:devel/p5-Test-Reporter -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-CPAN-SQLite/Makefile b/devel/p5-CPAN-SQLite/Makefile index 27304e264f4..cae8d018c18 100644 --- a/devel/p5-CPAN-SQLite/Makefile +++ b/devel/p5-CPAN-SQLite/Makefile @@ -15,12 +15,12 @@ COMMENT= Search CPAN using a SQLite database LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-DBD-SQLite>=0:databases/p5-DBD-SQLite \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-DBD-SQLite>=0:databases/p5-DBD-SQLite \ p5-File-HomeDir>=0:devel/p5-File-HomeDir \ p5-CPAN-DistnameInfo>=0:devel/p5-CPAN-DistnameInfo \ p5-libwww>=0:www/p5-libwww \ p5-PathTools>=0:devel/p5-PathTools -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/devel/p5-CPAN-Site/Makefile b/devel/p5-CPAN-Site/Makefile index 5a0a02aa3fa..76201a22018 100644 --- a/devel/p5-CPAN-Site/Makefile +++ b/devel/p5-CPAN-Site/Makefile @@ -14,13 +14,13 @@ COMMENT= Extend CPAN with private packages LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Archive-Zip>=0:archivers/p5-Archive-Zip \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Archive-Zip>=0:archivers/p5-Archive-Zip \ p5-Compress-Bzip2>=0:archivers/p5-Compress-Bzip2 \ p5-CPAN-Checksums>=0:devel/p5-CPAN-Checksums \ p5-HTTP-Date>=0:www/p5-HTTP-Date \ p5-libwww>=0:www/p5-libwww \ p5-Log-Report>=0.25:devel/p5-Log-Report -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/devel/p5-CPAN-Testers-Common-Client/Makefile b/devel/p5-CPAN-Testers-Common-Client/Makefile index 819e669256f..5ecc7558cee 100644 --- a/devel/p5-CPAN-Testers-Common-Client/Makefile +++ b/devel/p5-CPAN-Testers-Common-Client/Makefile @@ -13,12 +13,12 @@ COMMENT= Common class for CPAN::Testers clients LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Capture-Tiny>=0:devel/p5-Capture-Tiny \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Capture-Tiny>=0:devel/p5-Capture-Tiny \ p5-Config-Perl-V>=0:devel/p5-Config-Perl-V \ p5-Devel-Platform-Info>=0:devel/p5-Devel-Platform-Info \ p5-File-HomeDir>=0.58:devel/p5-File-HomeDir \ p5-Probe-Perl>=0:sysutils/p5-Probe-Perl -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/devel/p5-CPAN-Testers-Report/Makefile b/devel/p5-CPAN-Testers-Report/Makefile index 97d26aa4d0b..12ede9d9c1e 100644 --- a/devel/p5-CPAN-Testers-Report/Makefile +++ b/devel/p5-CPAN-Testers-Report/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= swills@FreeBSD.org COMMENT= CPAN Testers report object -BUILD_DEPENDS= p5-Metabase-Fact>0:devel/p5-Metabase-Fact -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Metabase-Fact>0:devel/p5-Metabase-Fact USES= perl5 USE_PERL5= configure diff --git a/devel/p5-CPAN-Uploader/Makefile b/devel/p5-CPAN-Uploader/Makefile index bf7b40f5cc7..58977f46806 100644 --- a/devel/p5-CPAN-Uploader/Makefile +++ b/devel/p5-CPAN-Uploader/Makefile @@ -14,12 +14,12 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Getopt-Long-Descriptive>=0.084:devel/p5-Getopt-Long-Descriptive \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Getopt-Long-Descriptive>=0.084:devel/p5-Getopt-Long-Descriptive \ p5-HTTP-Message>=0:www/p5-HTTP-Message \ p5-LWP-Protocol-https>=1:www/p5-LWP-Protocol-https \ p5-Term-ReadKey>=0:devel/p5-Term-ReadKey \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-File-HomeDir>=0:devel/p5-File-HomeDir NO_ARCH= yes diff --git a/devel/p5-CPANPLUS-Dist-Build/Makefile b/devel/p5-CPANPLUS-Dist-Build/Makefile index 88caf051429..2b898b66eda 100644 --- a/devel/p5-CPANPLUS-Dist-Build/Makefile +++ b/devel/p5-CPANPLUS-Dist-Build/Makefile @@ -14,9 +14,9 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-CPANPLUS>=0.84:devel/p5-CPANPLUS \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-CPANPLUS>=0.84:devel/p5-CPANPLUS \ p5-Module-Build>=0.32:devel/p5-Module-Build -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/devel/p5-CPANPLUS/Makefile b/devel/p5-CPANPLUS/Makefile index e8401514bc8..fb8621ecb0f 100644 --- a/devel/p5-CPANPLUS/Makefile +++ b/devel/p5-CPANPLUS/Makefile @@ -14,14 +14,14 @@ COMMENT= Ameliorated interface to the CPAN LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Archive-Extract>=0.16:archivers/p5-Archive-Extract \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Archive-Extract>=0.16:archivers/p5-Archive-Extract \ p5-Log-Message>=0.01:devel/p5-Log-Message \ p5-Module-Pluggable>=2.4:devel/p5-Module-Pluggable \ p5-Module-Signature>=0.06:security/p5-Module-Signature \ p5-Object-Accessor>=0.44:devel/p5-Object-Accessor \ p5-Package-Constants>=0.01:devel/p5-Package-Constants \ p5-Term-UI>=0.18:devel/p5-Term-UI -RUN_DEPENDS:= ${BUILD_DEPENDS} OPTIONS_DEFINE= TEST_REPORTER YAML TEST_REPORTER_DESC= Send reports to cpan-testers diff --git a/devel/p5-CPS/Makefile b/devel/p5-CPS/Makefile index 928cc1db81c..b69faacdb5a 100644 --- a/devel/p5-CPS/Makefile +++ b/devel/p5-CPS/Makefile @@ -15,8 +15,8 @@ COMMENT= Manage flow of control in Continuation-Passing Style LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Future>0:devel/p5-Future -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Future>0:devel/p5-Future TEST_DEPENDS= p5-Test-Identity>0:devel/p5-Test-Identity \ p5-Test-Pod>=1:devel/p5-Test-Pod \ p5-Test-Refcount>0:devel/p5-Test-Refcount \ diff --git a/devel/p5-Cache-AgainstFile/Makefile b/devel/p5-Cache-AgainstFile/Makefile index 669a993d343..bcf7865004c 100644 --- a/devel/p5-Cache-AgainstFile/Makefile +++ b/devel/p5-Cache-AgainstFile/Makefile @@ -13,8 +13,8 @@ COMMENT= Cache data structures parsed from files, watching for updates LICENSE= GPLv2 -BUILD_DEPENDS= p5-Log-Trace>=0:devel/p5-Log-Trace -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Log-Trace>=0:devel/p5-Log-Trace TEST_DEPENDS= p5-Test-Assertions>=0:devel/p5-Test-Assertions USES= perl5 diff --git a/devel/p5-Cache-Cache/Makefile b/devel/p5-Cache-Cache/Makefile index 9b60d87e77f..b975c0db7f0 100644 --- a/devel/p5-Cache-Cache/Makefile +++ b/devel/p5-Cache-Cache/Makefile @@ -13,11 +13,11 @@ COMMENT= Perl Cache interface LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Cache>=0:devel/p5-Cache \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Cache>=0:devel/p5-Cache \ p5-Digest-SHA1>=2.02:security/p5-Digest-SHA1 \ p5-Error>=0.15:lang/p5-Error \ p5-IPC-ShareLite>=0.09:devel/p5-IPC-ShareLite -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Cache-Memcached-Tie/Makefile b/devel/p5-Cache-Memcached-Tie/Makefile index 0fb88eb9c2c..22a12f31dbe 100644 --- a/devel/p5-Cache-Memcached-Tie/Makefile +++ b/devel/p5-Cache-Memcached-Tie/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Use Cache::Memcached::Fast like hash -BUILD_DEPENDS= p5-Cache-Memcached-Fast>=0:databases/p5-Cache-Memcached-Fast -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Cache-Memcached-Fast>=0:databases/p5-Cache-Memcached-Fast USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Carp-Always-Color/Makefile b/devel/p5-Carp-Always-Color/Makefile index 650a94df611..d94310d10e7 100644 --- a/devel/p5-Carp-Always-Color/Makefile +++ b/devel/p5-Carp-Always-Color/Makefile @@ -14,8 +14,8 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Carp-Always>=0.10:devel/p5-Carp-Always -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Carp-Always>=0.10:devel/p5-Carp-Always TEST_DEPENDS= p5-IO-Pty-Easy>=0:devel/p5-IO-Pty-Easy NO_ARCH= yes diff --git a/devel/p5-Carp-Assert-More/Makefile b/devel/p5-Carp-Assert-More/Makefile index b2cdb38894c..ec4ae8d8320 100644 --- a/devel/p5-Carp-Assert-More/Makefile +++ b/devel/p5-Carp-Assert-More/Makefile @@ -12,8 +12,8 @@ COMMENT= Convenience wrappers around Carp::Assert LICENSE= ART20 -BUILD_DEPENDS= p5-Carp-Assert>=0:devel/p5-Carp-Assert -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Carp-Assert>=0:devel/p5-Carp-Assert TEST_DEPENDS= p5-Test-Exception>=0:devel/p5-Test-Exception NO_ARCH= yes diff --git a/devel/p5-Carp-Clan-Share/Makefile b/devel/p5-Carp-Clan-Share/Makefile index 866ccd86246..f77a09c1be7 100644 --- a/devel/p5-Carp-Clan-Share/Makefile +++ b/devel/p5-Carp-Clan-Share/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Share your Carp::Clan settings with your whole Clan -BUILD_DEPENDS= p5-Carp-Clan>=0:devel/p5-Carp-Clan -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Carp-Clan>=0:devel/p5-Carp-Clan USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Carp-Datum/Makefile b/devel/p5-Carp-Datum/Makefile index cc9cf2aa9bf..ba1b7ae10d1 100644 --- a/devel/p5-Carp-Datum/Makefile +++ b/devel/p5-Carp-Datum/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= kuriyama@FreeBSD.org COMMENT= Debugging And Tracing Ultimate Module -BUILD_DEPENDS= p5-Log-Agent>=0:devel/p5-Log-Agent \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Log-Agent>=0:devel/p5-Log-Agent \ p5-Getargs-Long>=0:devel/p5-Getargs-Long -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Carp-REPL/Makefile b/devel/p5-Carp-REPL/Makefile index 7b10c77ad21..7f9097fc556 100644 --- a/devel/p5-Carp-REPL/Makefile +++ b/devel/p5-Carp-REPL/Makefile @@ -14,13 +14,13 @@ COMMENT= Read-Eval-Print-Loop on die and/or warn LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Data-Dump-Streamer>=0:devel/p5-Data-Dump-Streamer \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Data-Dump-Streamer>=0:devel/p5-Data-Dump-Streamer \ p5-Devel-LexAlias>=0:devel/p5-Devel-LexAlias \ p5-Devel-REPL>=0:devel/p5-Devel-REPL \ p5-Devel-StackTrace-WithLexicals>=0:devel/p5-Devel-StackTrace-WithLexicals \ p5-Lexical-Persistence>=0:devel/p5-Lexical-Persistence \ p5-namespace-autoclean>=0:devel/p5-namespace-autoclean -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Expect>=0:devel/p5-Test-Expect NO_ARCH= yes diff --git a/devel/p5-Class-Accessor-Children/Makefile b/devel/p5-Class-Accessor-Children/Makefile index ddf5499324c..cecb1a3265c 100644 --- a/devel/p5-Class-Accessor-Children/Makefile +++ b/devel/p5-Class-Accessor-Children/Makefile @@ -14,8 +14,8 @@ COMMENT= Automated child-class/accessor generation LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Class-Accessor>0:devel/p5-Class-Accessor -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Accessor>0:devel/p5-Class-Accessor NO_ARCH= yes USE_PERL5= configure diff --git a/devel/p5-Class-Accessor-Complex/Makefile b/devel/p5-Class-Accessor-Complex/Makefile index 664f8fd3af3..9e8589cbe2c 100644 --- a/devel/p5-Class-Accessor-Complex/Makefile +++ b/devel/p5-Class-Accessor-Complex/Makefile @@ -14,11 +14,11 @@ COMMENT= Arrays, hashes, booleans, integers, sets, and more LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Class-Accessor>=0:devel/p5-Class-Accessor \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Accessor>=0:devel/p5-Class-Accessor \ p5-Class-Accessor-Installer>=0:devel/p5-Class-Accessor-Installer \ p5-Data-Miscellany>=0:devel/p5-Data-Miscellany \ p5-List-MoreUtils>=0:lang/p5-List-MoreUtils -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USE_PERL5= configure diff --git a/devel/p5-Class-Accessor-Fast-Contained/Makefile b/devel/p5-Class-Accessor-Fast-Contained/Makefile index 53d14f95ab3..4ae7aa3a6b6 100644 --- a/devel/p5-Class-Accessor-Fast-Contained/Makefile +++ b/devel/p5-Class-Accessor-Fast-Contained/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Fast accessors with data containment -BUILD_DEPENDS= p5-Class-Accessor>=0:devel/p5-Class-Accessor -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Accessor>=0:devel/p5-Class-Accessor TEST_DEPENDS= p5-Test-Pod-Coverage>=0:devel/p5-Test-Pod-Coverage \ p5-Test-Pod>=0:devel/p5-Test-Pod diff --git a/devel/p5-Class-Accessor-Grouped/Makefile b/devel/p5-Class-Accessor-Grouped/Makefile index 94b7490d082..5bd6d865c6e 100644 --- a/devel/p5-Class-Accessor-Grouped/Makefile +++ b/devel/p5-Class-Accessor-Grouped/Makefile @@ -15,11 +15,11 @@ COMMENT= Lets you build groups of accessors LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Module-Runtime>=0.012:devel/p5-Module-Runtime \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Module-Runtime>=0.012:devel/p5-Module-Runtime \ p5-Class-XSAccessor>=1.19:devel/p5-Class-XSAccessor \ p5-MRO-Compat>=0:devel/p5-MRO-Compat \ p5-Sub-Name>=0.05:devel/p5-Sub-Name -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Exception>=0.31:devel/p5-Test-Exception USES= perl5 diff --git a/devel/p5-Class-Accessor-Installer/Makefile b/devel/p5-Class-Accessor-Installer/Makefile index 819edea2335..6d6df7a8d25 100644 --- a/devel/p5-Class-Accessor-Installer/Makefile +++ b/devel/p5-Class-Accessor-Installer/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Install an accessor subroutine -BUILD_DEPENDS= p5-Sub-Name>=0:devel/p5-Sub-Name \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Sub-Name>=0:devel/p5-Sub-Name \ p5-UNIVERSAL-require>=0:devel/p5-UNIVERSAL-require -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Class-Accessor-Lvalue/Makefile b/devel/p5-Class-Accessor-Lvalue/Makefile index c38269206f0..03c6506ebfd 100644 --- a/devel/p5-Class-Accessor-Lvalue/Makefile +++ b/devel/p5-Class-Accessor-Lvalue/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Create Lvalue accessors -BUILD_DEPENDS= p5-Want>=0:devel/p5-Want \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Want>=0:devel/p5-Want \ p5-Class-Accessor>=0:devel/p5-Class-Accessor -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= modbuild diff --git a/devel/p5-Class-AlzaboWrapper/Makefile b/devel/p5-Class-AlzaboWrapper/Makefile index 32d12709b01..1de57678fbe 100644 --- a/devel/p5-Class-AlzaboWrapper/Makefile +++ b/devel/p5-Class-AlzaboWrapper/Makefile @@ -11,10 +11,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Higher level wrapper around Alzabo Row and Table objects -BUILD_DEPENDS= p5-Params-Validate>=0:devel/p5-Params-Validate \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Params-Validate>=0:devel/p5-Params-Validate \ p5-Exception-Class>=0:devel/p5-Exception-Class \ p5-Alzabo>=0:devel/p5-Alzabo -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= modbuild diff --git a/devel/p5-Class-AutoClass/Makefile b/devel/p5-Class-AutoClass/Makefile index 220fb82514e..3d5a7a54121 100644 --- a/devel/p5-Class-AutoClass/Makefile +++ b/devel/p5-Class-AutoClass/Makefile @@ -14,9 +14,9 @@ COMMENT= Create get and set methods and simplify object initialization LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Hash-AutoHash>=1.17:devel/p5-Hash-AutoHash \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Hash-AutoHash>=1.17:devel/p5-Hash-AutoHash \ p5-Hash-AutoHash-Args>=1.18:devel/p5-Hash-AutoHash-Args -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-IO-stringy>=2.1:devel/p5-IO-stringy \ p5-Test-Deep>=0.110:devel/p5-Test-Deep \ p5-Test-Pod>=1.48:devel/p5-Test-Pod diff --git a/devel/p5-Class-Base/Makefile b/devel/p5-Class-Base/Makefile index beb3ca4902e..ae25cf2ed49 100644 --- a/devel/p5-Class-Base/Makefile +++ b/devel/p5-Class-Base/Makefile @@ -13,8 +13,8 @@ COMMENT= Useful base class for deriving other modules LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Clone>=0:devel/p5-Clone -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Clone>=0:devel/p5-Clone NO_ARCH= yes USES= perl5 diff --git a/devel/p5-Class-C3-Componentised/Makefile b/devel/p5-Class-C3-Componentised/Makefile index 6e560dc6685..b389f31b895 100644 --- a/devel/p5-Class-C3-Componentised/Makefile +++ b/devel/p5-Class-C3-Componentised/Makefile @@ -13,10 +13,10 @@ COMMENT= Load mix-ins or components to your C3-based class LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Class-C3>=0.20:devel/p5-Class-C3 \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-C3>=0.20:devel/p5-Class-C3 \ p5-Class-Inspector>=1.32:devel/p5-Class-Inspector \ p5-MRO-Compat>=0.09:devel/p5-MRO-Compat -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Exception>=0.31:devel/p5-Test-Exception NO_ARCH= yes diff --git a/devel/p5-Class-Closure/Makefile b/devel/p5-Class-Closure/Makefile index b575912dc13..2577f597a8c 100644 --- a/devel/p5-Class-Closure/Makefile +++ b/devel/p5-Class-Closure/Makefile @@ -10,10 +10,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Encapsulated, declarative classes in Perl -BUILD_DEPENDS= p5-PadWalker>=0:devel/p5-PadWalker \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-PadWalker>=0:devel/p5-PadWalker \ p5-Devel-Caller>=0:devel/p5-Devel-Caller \ p5-Sentinel>=0:devel/p5-Sentinel -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Class-CodeStyler/Makefile b/devel/p5-Class-CodeStyler/Makefile index 379d83f91e8..1c9f551b102 100644 --- a/devel/p5-Class-CodeStyler/Makefile +++ b/devel/p5-Class-CodeStyler/Makefile @@ -14,8 +14,8 @@ COMMENT= Perl extension for code generation program formatting and execution LICENSE= GPLv2 GPLv3 LICENSE_COMB= dual -BUILD_DEPENDS= p5-Class-STL-Containers>=0:devel/p5-Class-STL-Containers -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-STL-Containers>=0:devel/p5-Class-STL-Containers USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Class-Component/Makefile b/devel/p5-Class-Component/Makefile index bb49744d3be..f93a863eef0 100644 --- a/devel/p5-Class-Component/Makefile +++ b/devel/p5-Class-Component/Makefile @@ -11,12 +11,12 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Pluggable component framework -BUILD_DEPENDS= p5-Carp-Clan>0:devel/p5-Carp-Clan \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Carp-Clan>0:devel/p5-Carp-Clan \ p5-Class-Accessor>0:devel/p5-Class-Accessor \ p5-Class-Data-Inheritable>0:devel/p5-Class-Data-Inheritable \ p5-Class-Inspector>0:devel/p5-Class-Inspector \ p5-UNIVERSAL-require>0:devel/p5-UNIVERSAL-require -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Class-Container/Makefile b/devel/p5-Class-Container/Makefile index b9b970cb483..64d2c1cd526 100644 --- a/devel/p5-Class-Container/Makefile +++ b/devel/p5-Class-Container/Makefile @@ -14,8 +14,8 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Params-Validate>=0:devel/p5-Params-Validate -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Params-Validate>=0:devel/p5-Params-Validate NO_ARCH= yes USES= perl5 diff --git a/devel/p5-Class-Date/Makefile b/devel/p5-Class-Date/Makefile index 48ccba8682f..eb193b6aa3a 100644 --- a/devel/p5-Class-Date/Makefile +++ b/devel/p5-Class-Date/Makefile @@ -13,8 +13,8 @@ COMMENT= Perl class for easy date and time manipulation LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-TimeDate>0:devel/p5-TimeDate -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-TimeDate>0:devel/p5-TimeDate TEST_DEPENDS= p5-Test-Warnings>0:devel/p5-Test-Warnings NO_ARCH= yes diff --git a/devel/p5-Class-Default/Makefile b/devel/p5-Class-Default/Makefile index ec0aaf47e1f..6206ae5065e 100644 --- a/devel/p5-Class-Default/Makefile +++ b/devel/p5-Class-Default/Makefile @@ -14,8 +14,8 @@ COMMENT= Static calls apply to a default instantiation LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Class-Inspector>=0:devel/p5-Class-Inspector -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Inspector>=0:devel/p5-Class-Inspector USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Class-Fields/Makefile b/devel/p5-Class-Fields/Makefile index ee70eded1ac..ed215335116 100644 --- a/devel/p5-Class-Fields/Makefile +++ b/devel/p5-Class-Fields/Makefile @@ -13,8 +13,8 @@ COMMENT= Functions/methods for examining data members of a class LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Carp-Assert>=0:devel/p5-Carp-Assert -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Carp-Assert>=0:devel/p5-Carp-Assert NO_ARCH= yes USES= perl5 diff --git a/devel/p5-Class-Handle/Makefile b/devel/p5-Class-Handle/Makefile index 0d54b9de43d..091f0df659c 100644 --- a/devel/p5-Class-Handle/Makefile +++ b/devel/p5-Class-Handle/Makefile @@ -14,9 +14,9 @@ COMMENT= Create objects that are handles to classes LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Class-ISA>=0:devel/p5-Class-ISA \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-ISA>=0:devel/p5-Class-ISA \ p5-Class-Inspector>=0:devel/p5-Class-Inspector -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Class-Mix/Makefile b/devel/p5-Class-Mix/Makefile index a956e841eda..41b2eeff5ce 100644 --- a/devel/p5-Class-Mix/Makefile +++ b/devel/p5-Class-Mix/Makefile @@ -13,8 +13,8 @@ COMMENT= Perl module for dynamic class mixing LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Params-Classify>=0:devel/p5-Params-Classify -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Params-Classify>=0:devel/p5-Params-Classify NO_ARCH= yes USE_PERL5= modbuild diff --git a/devel/p5-Class-Observable/Makefile b/devel/p5-Class-Observable/Makefile index 08b9b5df3e2..0aa0007a746 100644 --- a/devel/p5-Class-Observable/Makefile +++ b/devel/p5-Class-Observable/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= hcoyote@ghostar.org COMMENT= Allow other classes and objects to respond to events in yours -BUILD_DEPENDS= p5-Class-ISA>=0:devel/p5-Class-ISA -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-ISA>=0:devel/p5-Class-ISA USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Class-ReturnValue/Makefile b/devel/p5-Class-ReturnValue/Makefile index 916d0a7e260..32838b1aee3 100644 --- a/devel/p5-Class-ReturnValue/Makefile +++ b/devel/p5-Class-ReturnValue/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Return-value object that can be treated as a boolean, array, or object -BUILD_DEPENDS= p5-Devel-StackTrace>=0:devel/p5-Devel-StackTrace -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Devel-StackTrace>=0:devel/p5-Devel-StackTrace USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Class-StateMachine/Makefile b/devel/p5-Class-StateMachine/Makefile index ced9139b2f7..74af069c085 100644 --- a/devel/p5-Class-StateMachine/Makefile +++ b/devel/p5-Class-StateMachine/Makefile @@ -13,10 +13,10 @@ COMMENT= Define classes for state machines LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-MRO-Define>=0.01:devel/p5-MRO-Define \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-MRO-Define>=0.01:devel/p5-MRO-Define \ p5-Package-Stash>=0.29:devel/p5-Package-Stash \ p5-Sub-Name>=0.05:devel/p5-Sub-Name -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Class-Std-Fast/Makefile b/devel/p5-Class-Std-Fast/Makefile index e14180386bd..9a575a62f21 100644 --- a/devel/p5-Class-Std-Fast/Makefile +++ b/devel/p5-Class-Std-Fast/Makefile @@ -15,8 +15,8 @@ COMMENT= Faster but less secure than Class::Std LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Class-Std>=0.0.9:devel/p5-Class-Std -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Std>=0.0.9:devel/p5-Class-Std USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Class-Tangram/Makefile b/devel/p5-Class-Tangram/Makefile index b6d1983b7d8..b4633c5b395 100644 --- a/devel/p5-Class-Tangram/Makefile +++ b/devel/p5-Class-Tangram/Makefile @@ -11,10 +11,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Create constructors, accessor, update methods for objects from Tangram -BUILD_DEPENDS= p5-Set-Object>=0:devel/p5-Set-Object \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Set-Object>=0:devel/p5-Set-Object \ p5-Date-Manip>=0:devel/p5-Date-Manip \ p5-Tangram>=0:databases/p5-Tangram -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Class-Unload/Makefile b/devel/p5-Class-Unload/Makefile index c6b20174b7f..5d3ebe276eb 100644 --- a/devel/p5-Class-Unload/Makefile +++ b/devel/p5-Class-Unload/Makefile @@ -13,8 +13,8 @@ COMMENT= Perl5 module for unloading classes LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Class-Inspector>=0:devel/p5-Class-Inspector -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Inspector>=0:devel/p5-Class-Inspector TEST_DEPENDS= p5-Test-Requires>=0:devel/p5-Test-Requires NO_ARCH= yes diff --git a/devel/p5-Class-Virtual/Makefile b/devel/p5-Class-Virtual/Makefile index b4fe3325cb7..d33c369aadb 100644 --- a/devel/p5-Class-Virtual/Makefile +++ b/devel/p5-Class-Virtual/Makefile @@ -13,10 +13,10 @@ COMMENT= Base class for virtual base classes in Perl LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Carp-Assert>=0:devel/p5-Carp-Assert \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Carp-Assert>=0:devel/p5-Carp-Assert \ p5-Class-Data-Inheritable>=0:devel/p5-Class-Data-Inheritable \ p5-Class-ISA>=0:devel/p5-Class-ISA -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Class-Workflow/Makefile b/devel/p5-Class-Workflow/Makefile index 7d45154d0cd..c3b002cbbea 100644 --- a/devel/p5-Class-Workflow/Makefile +++ b/devel/p5-Class-Workflow/Makefile @@ -14,12 +14,12 @@ COMMENT= Lightweight workflow system LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Data-Compare>=0:devel/p5-Data-Compare \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Data-Compare>=0:devel/p5-Data-Compare \ p5-Moose>=0.37:devel/p5-Moose \ p5-MooseX-Clone>=0.04:devel/p5-MooseX-Clone \ p5-Set-Object>=1.19:devel/p5-Set-Object \ p5-YAML-Syck>=0:textproc/p5-YAML-Syck -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Code-Perl/Makefile b/devel/p5-Code-Perl/Makefile index 48aaf7b24d8..cd6db7d759f 100644 --- a/devel/p5-Code-Perl/Makefile +++ b/devel/p5-Code-Perl/Makefile @@ -12,8 +12,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Produce Perl code from a tree -BUILD_DEPENDS= p5-Class-MethodMaker>=0:devel/p5-Class-MethodMaker -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-MethodMaker>=0:devel/p5-Class-MethodMaker TEST_DEPENDS= p5-Test-Deep>=0:devel/p5-Test-Deep USES= perl5 diff --git a/devel/p5-Config-ApacheFormat/Makefile b/devel/p5-Config-ApacheFormat/Makefile index 8fd1f613500..bffb4c83ddf 100644 --- a/devel/p5-Config-ApacheFormat/Makefile +++ b/devel/p5-Config-ApacheFormat/Makefile @@ -14,8 +14,8 @@ COMMENT= Parse a configuration file in the same syntax as the Apache web server LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Class-MethodMaker>=0:devel/p5-Class-MethodMaker -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-MethodMaker>=0:devel/p5-Class-MethodMaker USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Config-Auto/Makefile b/devel/p5-Config-Auto/Makefile index 632f9f6c637..02f2e7f68dd 100644 --- a/devel/p5-Config-Auto/Makefile +++ b/devel/p5-Config-Auto/Makefile @@ -15,9 +15,9 @@ COMMENT= Magical config file parser LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Config-IniFiles>=0:devel/p5-Config-IniFiles \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Config-IniFiles>=0:devel/p5-Config-IniFiles \ p5-YAML>=0.67:textproc/p5-YAML -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-IO-String>=0:devel/p5-IO-String USES= perl5 diff --git a/devel/p5-Config-AutoConf/Makefile b/devel/p5-Config-AutoConf/Makefile index f003b2f11ce..4dd18067191 100644 --- a/devel/p5-Config-AutoConf/Makefile +++ b/devel/p5-Config-AutoConf/Makefile @@ -13,8 +13,8 @@ COMMENT= Perl module to implement some of AutoConf macros LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Capture-Tiny>=0:devel/p5-Capture-Tiny -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Capture-Tiny>=0:devel/p5-Capture-Tiny NO_ARCH= yes USES= perl5 diff --git a/devel/p5-Config-GitLike/Makefile b/devel/p5-Config-GitLike/Makefile index ee1d2422f67..0286b8f018b 100644 --- a/devel/p5-Config-GitLike/Makefile +++ b/devel/p5-Config-GitLike/Makefile @@ -13,9 +13,9 @@ COMMENT= Simple git-compatible config file parser for Perl LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Moo>=0:devel/p5-Moo \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Moo>=0:devel/p5-Moo \ p5-MooX-Types-MooseLike>=0:devel/p5-MooX-Types-MooseLike -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Exception>=0:devel/p5-Test-Exception NO_ARCH= yes diff --git a/devel/p5-Config-INI-Reader-Ordered/Makefile b/devel/p5-Config-INI-Reader-Ordered/Makefile index 14725973d5c..80e26a02166 100644 --- a/devel/p5-Config-INI-Reader-Ordered/Makefile +++ b/devel/p5-Config-INI-Reader-Ordered/Makefile @@ -14,8 +14,8 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Config-INI>=0:devel/p5-Config-INI -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Config-INI>=0:devel/p5-Config-INI NO_ARCH= yes USES= perl5 diff --git a/devel/p5-Config-INI-Simple/Makefile b/devel/p5-Config-INI-Simple/Makefile index 033be2b2d57..6e06ccc478f 100644 --- a/devel/p5-Config-INI-Simple/Makefile +++ b/devel/p5-Config-INI-Simple/Makefile @@ -14,8 +14,8 @@ COMMENT= Simple reading and writing from an INI file LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-File-Slurp>=0:devel/p5-File-Slurp -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-File-Slurp>=0:devel/p5-File-Slurp NO_ARCH= yes USE_PERL5= configure diff --git a/devel/p5-Config-INI/Makefile b/devel/p5-Config-INI/Makefile index 4224ec8c93f..ff5df1633ef 100644 --- a/devel/p5-Config-INI/Makefile +++ b/devel/p5-Config-INI/Makefile @@ -12,8 +12,8 @@ COMMENT= Simple .ini files emitter and parser for Perl LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Mixin-Linewise>=0.100:devel/p5-Mixin-Linewise -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Mixin-Linewise>=0.100:devel/p5-Mixin-Linewise USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Config-Identity/Makefile b/devel/p5-Config-Identity/Makefile index 0f9041cd22d..9a0ad810d44 100644 --- a/devel/p5-Config-Identity/Makefile +++ b/devel/p5-Config-Identity/Makefile @@ -13,10 +13,10 @@ COMMENT= Load (and optionally decrypt via GnuPG) user/pass identity information LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-File-HomeDir>=0:devel/p5-File-HomeDir \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-File-HomeDir>=0:devel/p5-File-HomeDir \ p5-File-Which>=0:sysutils/p5-File-Which \ p5-IPC-Run>=0:devel/p5-IPC-Run -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Deep>=0:devel/p5-Test-Deep NO_ARCH= yes diff --git a/devel/p5-Config-IniFiles/Makefile b/devel/p5-Config-IniFiles/Makefile index 9a636e0eeef..0a7e44f1225 100644 --- a/devel/p5-Config-IniFiles/Makefile +++ b/devel/p5-Config-IniFiles/Makefile @@ -13,8 +13,8 @@ COMMENT= Read .ini-style configuration files LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-IO-stringy>0:devel/p5-IO-stringy -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-IO-stringy>0:devel/p5-IO-stringy NO_ARCH= yes USES= perl5 diff --git a/devel/p5-Config-IniHash/Makefile b/devel/p5-Config-IniHash/Makefile index 81e7b819815..72d63c6b2c5 100644 --- a/devel/p5-Config-IniHash/Makefile +++ b/devel/p5-Config-IniHash/Makefile @@ -14,10 +14,10 @@ COMMENT= Perl extension for reading and writing INI files LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Hash-Case>=0:devel/p5-Hash-Case \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Hash-Case>=0:devel/p5-Hash-Case \ p5-Hash-WithDefaults>=0.04:devel/p5-Hash-WithDefaults \ p5-IO-stringy>=0:devel/p5-IO-stringy -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= dos2unix perl5 USE_PERL5= configure diff --git a/devel/p5-Config-JFDI/Makefile b/devel/p5-Config-JFDI/Makefile index c44a4b199d1..bc4199e6496 100644 --- a/devel/p5-Config-JFDI/Makefile +++ b/devel/p5-Config-JFDI/Makefile @@ -15,7 +15,8 @@ COMMENT= Catalyst::Plugin::ConfigLoader-style layer over Config::Any LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Carp-Clan-Share>=0:devel/p5-Carp-Clan-Share \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Carp-Clan-Share>=0:devel/p5-Carp-Clan-Share \ p5-Hash-Merge-Simple>=0:devel/p5-Hash-Merge-Simple \ p5-Config-Any>=0:devel/p5-Config-Any \ p5-Config-General>=0:devel/p5-Config-General \ @@ -25,7 +26,6 @@ BUILD_DEPENDS= p5-Carp-Clan-Share>=0:devel/p5-Carp-Clan-Share \ p5-Path-Class>=0:devel/p5-Path-Class \ p5-Sub-Install>=0:devel/p5-Sub-Install \ p5-Data-Visitor>=0.24:devel/p5-Data-Visitor -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Most>=0:devel/p5-Test-Most USES= perl5 diff --git a/devel/p5-Config-JSON/Makefile b/devel/p5-Config-JSON/Makefile index a677b961884..6302d29e571 100644 --- a/devel/p5-Config-JSON/Makefile +++ b/devel/p5-Config-JSON/Makefile @@ -13,9 +13,9 @@ COMMENT= JSON based config file system LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-JSON>=2.16:converters/p5-JSON \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-JSON>=2.16:converters/p5-JSON \ p5-Moo>=0:devel/p5-Moo -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Deep>=0:devel/p5-Test-Deep USES= perl5 diff --git a/devel/p5-Config-MVP-Reader-INI/Makefile b/devel/p5-Config-MVP-Reader-INI/Makefile index 97c84d0b7b0..9aac70629c3 100644 --- a/devel/p5-Config-MVP-Reader-INI/Makefile +++ b/devel/p5-Config-MVP-Reader-INI/Makefile @@ -14,9 +14,9 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Config-INI>=0:devel/p5-Config-INI \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Config-INI>=0:devel/p5-Config-INI \ p5-Config-MVP>=2:devel/p5-Config-MVP -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/devel/p5-Config-MVP/Makefile b/devel/p5-Config-MVP/Makefile index 5c80425a5b7..e9e854a34d7 100644 --- a/devel/p5-Config-MVP/Makefile +++ b/devel/p5-Config-MVP/Makefile @@ -14,7 +14,8 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Class-Load>=0.17:devel/p5-Class-Load \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Load>=0.17:devel/p5-Class-Load \ p5-Module-Pluggable>=0:devel/p5-Module-Pluggable \ p5-Module-Runtime>=0:devel/p5-Module-Runtime \ p5-Moose>=0.91:devel/p5-Moose \ @@ -25,7 +26,6 @@ BUILD_DEPENDS= p5-Class-Load>=0.17:devel/p5-Class-Load \ p5-Throwable>=0:devel/p5-Throwable \ p5-Tie-IxHash>=0:devel/p5-Tie-IxHash \ p5-Try-Tiny>=0:lang/p5-Try-Tiny -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Fatal>=0:devel/p5-Test-Fatal NO_ARCH= yes diff --git a/devel/p5-Config-Merge/Makefile b/devel/p5-Config-Merge/Makefile index 24fd15dc449..59dc026f196 100644 --- a/devel/p5-Config-Merge/Makefile +++ b/devel/p5-Config-Merge/Makefile @@ -14,8 +14,8 @@ COMMENT= Load a configuration directory tree in a number of languages LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Config-Any>=0:devel/p5-Config-Any -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Config-Any>=0:devel/p5-Config-Any USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Config-Model-Tester/Makefile b/devel/p5-Config-Model-Tester/Makefile index 5e3c6a02ce5..1fa38d1761b 100644 --- a/devel/p5-Config-Model-Tester/Makefile +++ b/devel/p5-Config-Model-Tester/Makefile @@ -14,7 +14,8 @@ LICENSE= LGPL21 LICENSE_FILE= ${WRKSRC}/LICENSE # Do not add p5-Config-Model to TEST_DEPENDS to avoid cyclic dependency -BUILD_DEPENDS= p5-File-Copy-Recursive>=0:devel/p5-File-Copy-Recursive \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-File-Copy-Recursive>=0:devel/p5-File-Copy-Recursive \ p5-Log-Log4perl>=1.11:devel/p5-Log-Log4perl \ p5-Path-Tiny>=0:devel/p5-Path-Tiny \ p5-Test-Differences>=0:devel/p5-Test-Differences \ @@ -23,7 +24,6 @@ BUILD_DEPENDS= p5-File-Copy-Recursive>=0:devel/p5-File-Copy-Recursive \ p5-Test-Log-Log4perl>=0:devel/p5-Test-Log-Log4perl \ p5-Test-Memory-Cycle>=0:devel/p5-Test-Memory-Cycle \ p5-Test-Warn>=0:devel/p5-Test-Warn -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USE_PERL5= modbuild diff --git a/devel/p5-Config-Model/Makefile b/devel/p5-Config-Model/Makefile index 0fa521c0d58..a774c781154 100644 --- a/devel/p5-Config-Model/Makefile +++ b/devel/p5-Config-Model/Makefile @@ -13,7 +13,8 @@ COMMENT= Model to create configuration validation tool LICENSE= LGPL21 LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Carp-Assert-More>=0:devel/p5-Carp-Assert-More \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Carp-Assert-More>=0:devel/p5-Carp-Assert-More \ p5-File-HomeDir>=0:devel/p5-File-HomeDir \ p5-Hash-Merge>=0.12:textproc/p5-Hash-Merge \ p5-JSON>=0:converters/p5-JSON \ @@ -28,7 +29,6 @@ BUILD_DEPENDS= p5-Carp-Assert-More>=0:devel/p5-Carp-Assert-More \ p5-Regexp-Common>=0:textproc/p5-Regexp-Common \ p5-Term-ReadLine-Perl>=0:devel/p5-Term-ReadLine-Perl \ p5-Text-Levenshtein-Damerau>=0:devel/p5-Text-Levenshtein-Damerau -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Config-Model-Tester>=3.006:devel/p5-Config-Model-Tester \ p5-Test-Differences>=0:devel/p5-Test-Differences \ p5-Test-Exception>=0:devel/p5-Test-Exception \ diff --git a/devel/p5-Config-Objective/Makefile b/devel/p5-Config-Objective/Makefile index 5dcfc857515..90be11f2cc4 100644 --- a/devel/p5-Config-Objective/Makefile +++ b/devel/p5-Config-Objective/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= pirzyk@FreeBSD.org COMMENT= Configuration data as perl objects -BUILD_DEPENDS= p5-Parse-Yapp>=0:devel/p5-Parse-Yapp \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Parse-Yapp>=0:devel/p5-Parse-Yapp \ p5-ParseLex>=0:devel/p5-ParseLex -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Config-Validator/Makefile b/devel/p5-Config-Validator/Makefile index 6d5a6496055..470a35eccde 100644 --- a/devel/p5-Config-Validator/Makefile +++ b/devel/p5-Config-Validator/Makefile @@ -14,9 +14,9 @@ COMMENT= Schema based configuration validation LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-No-Worries>=1.0:devel/p5-No-Worries \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-No-Worries>=1.0:devel/p5-No-Worries \ p5-URI>=1.67:net/p5-URI -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Connector/Makefile b/devel/p5-Connector/Makefile index 29497025048..ba712b6cf73 100644 --- a/devel/p5-Connector/Makefile +++ b/devel/p5-Connector/Makefile @@ -13,7 +13,8 @@ COMMENT= Generic connection to a hierarchical-structured data set LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= bash:shells/bash \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= bash:shells/bash \ p5-AppConfig>=0:devel/p5-AppConfig \ p5-Config-GitLike>=0:devel/p5-Config-GitLike \ p5-Config-Merge>=0:devel/p5-Config-Merge \ @@ -29,7 +30,6 @@ BUILD_DEPENDS= bash:shells/bash \ p5-YAML>=1.06:textproc/p5-YAML \ p5-libwww>=0:www/p5-libwww \ p5-perl-ldap>=0:net/p5-perl-ldap -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-DBD-SQLite>=0:databases/p5-DBD-SQLite USES= perl5 diff --git a/devel/p5-Const-Exporter/Makefile b/devel/p5-Const-Exporter/Makefile index 54be0805c02..0b8b086690c 100644 --- a/devel/p5-Const-Exporter/Makefile +++ b/devel/p5-Const-Exporter/Makefile @@ -15,11 +15,11 @@ COMMENT= Declare constants for export LICENSE= ART20 LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Const-Fast>=0:devel/p5-Const-Fast \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Const-Fast>=0:devel/p5-Const-Fast \ p5-List-AllUtils>=0.10:devel/p5-List-AllUtils \ p5-Package-Stash>=0:devel/p5-Package-Stash \ p5-Ref-Util>=0:devel/p5-Ref-Util -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Hash-Objectify>=0:devel/p5-Hash-Objectify \ p5-Test-Most>=0:devel/p5-Test-Most diff --git a/devel/p5-Contextual-Return/Makefile b/devel/p5-Contextual-Return/Makefile index 4572d7137ad..244e6609d17 100644 --- a/devel/p5-Contextual-Return/Makefile +++ b/devel/p5-Contextual-Return/Makefile @@ -14,8 +14,8 @@ COMMENT= Create context-sensitive return values LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Want>=0:devel/p5-Want -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Want>=0:devel/p5-Want NO_ARCH= yes USES= perl5 diff --git a/devel/p5-Coro/Makefile b/devel/p5-Coro/Makefile index 1fcbdc9af80..1dbd2d9d310 100644 --- a/devel/p5-Coro/Makefile +++ b/devel/p5-Coro/Makefile @@ -13,15 +13,15 @@ COMMENT= Coroutine process abstraction for perl LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-AnyEvent>=7:devel/p5-AnyEvent \ +BUILD_DEPENDS= ${RUN_DEPENDS} \ + p5-Canary-Stability>=0:devel/p5-Canary-Stability +RUN_DEPENDS= p5-AnyEvent>=7:devel/p5-AnyEvent \ p5-AnyEvent-AIO>=1.0:devel/p5-AnyEvent-AIO \ p5-EV>=4:devel/p5-EV \ p5-Event>=1.08:devel/p5-Event \ p5-Guard>=0.5:devel/p5-Guard \ p5-IO-AIO>=3.1:devel/p5-IO-AIO \ p5-common-sense>=0:devel/p5-common-sense -RUN_DEPENDS:= ${BUILD_DEPENDS} -BUILD_DEPENDS+= p5-Canary-Stability>=0:devel/p5-Canary-Stability OPTIONS_DEFINE= DOCS EXAMPLES diff --git a/devel/p5-Curses-Application/Makefile b/devel/p5-Curses-Application/Makefile index fd0c9c1e6ed..618992d0c0e 100644 --- a/devel/p5-Curses-Application/Makefile +++ b/devel/p5-Curses-Application/Makefile @@ -14,8 +14,8 @@ COMMENT= Curses application development framework LICENSE= GPLv2 -BUILD_DEPENDS= p5-Curses-Forms>=0:devel/p5-Curses-Forms -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Curses-Forms>=0:devel/p5-Curses-Forms USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Curses-Forms/Makefile b/devel/p5-Curses-Forms/Makefile index c59514dc891..3f9ec1c7e2a 100644 --- a/devel/p5-Curses-Forms/Makefile +++ b/devel/p5-Curses-Forms/Makefile @@ -14,8 +14,8 @@ COMMENT= Provide high level APIs for rapid UI design on the console LICENSE= GPLv2 -BUILD_DEPENDS= p5-Curses-Widgets>=0:devel/p5-Curses-Widgets -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Curses-Widgets>=0:devel/p5-Curses-Widgets USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Curses-UI/Makefile b/devel/p5-Curses-UI/Makefile index 3eedd7f1ab2..6041fccdea2 100644 --- a/devel/p5-Curses-UI/Makefile +++ b/devel/p5-Curses-UI/Makefile @@ -14,9 +14,9 @@ COMMENT= Curses based OO user interface framework LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Curses>=0:devel/p5-Curses \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Curses>=0:devel/p5-Curses \ p5-Term-ReadKey>=0:devel/p5-Term-ReadKey -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Curses-Widgets/Makefile b/devel/p5-Curses-Widgets/Makefile index 630eecb147c..b16dd7e4148 100644 --- a/devel/p5-Curses-Widgets/Makefile +++ b/devel/p5-Curses-Widgets/Makefile @@ -14,8 +14,8 @@ COMMENT= Curses-based widgets and functions LICENSE= GPLv2 -BUILD_DEPENDS= p5-Curses>=0:devel/p5-Curses -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Curses>=0:devel/p5-Curses USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Dancer-Debug/Makefile b/devel/p5-Dancer-Debug/Makefile index 98963f0e8b6..ef5f69294b8 100644 --- a/devel/p5-Dancer-Debug/Makefile +++ b/devel/p5-Dancer-Debug/Makefile @@ -14,10 +14,10 @@ COMMENT= Dancer::Debug - Extend Plack::Middleware::Debug LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Class-Method-Modifiers>=0:devel/p5-Class-Method-Modifiers \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Method-Modifiers>=0:devel/p5-Class-Method-Modifiers \ p5-Dancer>=0:www/p5-Dancer \ p5-Plack-Middleware-Debug>=0:www/p5-Plack-Middleware-Debug -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/devel/p5-Danga-Socket/Makefile b/devel/p5-Danga-Socket/Makefile index d4a23980545..7dc9219ba33 100644 --- a/devel/p5-Danga-Socket/Makefile +++ b/devel/p5-Danga-Socket/Makefile @@ -14,9 +14,9 @@ COMMENT= Event loop and event-driven async socket base class LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-IO-KQueue>=0:devel/p5-IO-KQueue \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-IO-KQueue>=0:devel/p5-IO-KQueue \ p5-Sys-Syscall>=0:devel/p5-Sys-Syscall -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/devel/p5-Data-ACL/Makefile b/devel/p5-Data-ACL/Makefile index 0756ee07cab..09e6424effc 100644 --- a/devel/p5-Data-ACL/Makefile +++ b/devel/p5-Data-ACL/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Data::ACL - Perl extension for simple ACL lists -BUILD_DEPENDS= p5-Set-NestedGroups>=0:devel/p5-Set-NestedGroups -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Set-NestedGroups>=0:devel/p5-Set-NestedGroups USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Data-Bind/Makefile b/devel/p5-Data-Bind/Makefile index 2e723c6eed4..d4e6c8ab8f7 100644 --- a/devel/p5-Data-Bind/Makefile +++ b/devel/p5-Data-Bind/Makefile @@ -11,11 +11,11 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Perl module to bind and alias variables -BUILD_DEPENDS= p5-Class-Accessor>0:devel/p5-Class-Accessor \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Accessor>0:devel/p5-Class-Accessor \ p5-Devel-Caller>0:devel/p5-Devel-Caller \ p5-Devel-LexAlias>0:devel/p5-Devel-LexAlias \ p5-Data-Capture>0:devel/p5-Data-Capture -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Exception>0:devel/p5-Test-Exception USES= perl5 diff --git a/devel/p5-Data-ClearSilver-HDF/Makefile b/devel/p5-Data-ClearSilver-HDF/Makefile index fa801e5a9de..e520bed9b34 100644 --- a/devel/p5-Data-ClearSilver-HDF/Makefile +++ b/devel/p5-Data-ClearSilver-HDF/Makefile @@ -11,11 +11,11 @@ PKGNAMEPREFIX= p5- MAINTAINER= culot@FreeBSD.org COMMENT= Convert from Perl Data Structure to ClearSilver HDF -BUILD_DEPENDS= p5-ClearSilver>=0:www/p5-ClearSilver \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-ClearSilver>=0:www/p5-ClearSilver \ p5-Data-Structure-Util>=0:devel/p5-Data-Structure-Util \ p5-File-Slurp>=0:devel/p5-File-Slurp \ p5-Class-Accessor>=0:devel/p5-Class-Accessor -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Data-Compare/Makefile b/devel/p5-Data-Compare/Makefile index 031ea9d77ab..f4b4e3fb482 100644 --- a/devel/p5-Data-Compare/Makefile +++ b/devel/p5-Data-Compare/Makefile @@ -16,8 +16,8 @@ COMMENT= Data::Compare - compare perl data structures LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-File-Find-Rule>=0:devel/p5-File-Find-Rule -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-File-Find-Rule>=0:devel/p5-File-Find-Rule USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Data-Domain/Makefile b/devel/p5-Data-Domain/Makefile index 0b67d557a15..1acb1f033df 100644 --- a/devel/p5-Data-Domain/Makefile +++ b/devel/p5-Data-Domain/Makefile @@ -14,13 +14,13 @@ COMMENT= Data description and validation LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Date-Calc>=0:devel/p5-Date-Calc \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Date-Calc>=0:devel/p5-Date-Calc \ p5-List-MoreUtils>=0:lang/p5-List-MoreUtils \ p5-Scalar-Does>=0.007:devel/p5-Scalar-Does \ p5-Sub-Exporter>=0:devel/p5-Sub-Exporter \ p5-Try-Tiny>=0:lang/p5-Try-Tiny \ p5-experimental>=0:devel/p5-experimental -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Pod>=1.14:devel/p5-Test-Pod \ p5-Test-Pod-Coverage>=1.04:devel/p5-Test-Pod-Coverage diff --git a/devel/p5-Data-Dump-Streamer/Makefile b/devel/p5-Data-Dump-Streamer/Makefile index 2d7cc8d847f..d7584ee14ae 100644 --- a/devel/p5-Data-Dump-Streamer/Makefile +++ b/devel/p5-Data-Dump-Streamer/Makefile @@ -13,10 +13,10 @@ COMMENT= Stream a highly accurate breadth first data dump in Perl code LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Algorithm-Diff>=0:devel/p5-Algorithm-Diff \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Algorithm-Diff>=0:devel/p5-Algorithm-Diff \ p5-B-Utils>=0.05:devel/p5-B-Utils \ p5-PadWalker>=0.99:devel/p5-PadWalker -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-JSON-XS>=0:converters/p5-JSON-XS CONFIGURE_ARGS= DDS diff --git a/devel/p5-Data-HexDump-Range/Makefile b/devel/p5-Data-HexDump-Range/Makefile index 52e752d8293..ee658d1772f 100644 --- a/devel/p5-Data-HexDump-Range/Makefile +++ b/devel/p5-Data-HexDump-Range/Makefile @@ -11,14 +11,14 @@ PKGNAMEPREFIX= p5- MAINTAINER= gebhart@secnetix.de COMMENT= Hexadecimal Range Dumper with color, bitfields and skip ranges -BUILD_DEPENDS= p5-Readonly>=0:devel/p5-Readonly \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Readonly>=0:devel/p5-Readonly \ p5-Data-TreeDumper>=0:devel/p5-Data-TreeDumper \ p5-List-MoreUtils>=0:lang/p5-List-MoreUtils \ p5-Sub-Exporter>=0:devel/p5-Sub-Exporter \ p5-Text-Diff>=0:textproc/p5-Text-Diff \ p5-Text-Colorizer>=0:textproc/p5-Text-Colorizer \ p5-Term-Bash-Completion-Generator>=0:shells/p5-Term-Bash-Completion-Generator -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= modbuild diff --git a/devel/p5-Data-JavaScript-Anon/Makefile b/devel/p5-Data-JavaScript-Anon/Makefile index 94448a79efc..a397b0a6d7a 100644 --- a/devel/p5-Data-JavaScript-Anon/Makefile +++ b/devel/p5-Data-JavaScript-Anon/Makefile @@ -14,9 +14,9 @@ COMMENT= Dump big dumb Perl structs to anonymous JavaScript structs LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Class-Default>=1.51:devel/p5-Class-Default \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Default>=1.51:devel/p5-Class-Default \ p5-Params-Util>=0.01:devel/p5-Params-Util -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Data-Object/Makefile b/devel/p5-Data-Object/Makefile index 419a6517448..fa65d1bbe81 100644 --- a/devel/p5-Data-Object/Makefile +++ b/devel/p5-Data-Object/Makefile @@ -13,10 +13,10 @@ COMMENT= Data Type Objects for Perl 5 LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Moo>=2.000001:devel/p5-Moo \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Moo>=2.000001:devel/p5-Moo \ p5-Type-Tiny>=1.000005:devel/p5-Type-Tiny \ p5-Type-Tiny-Signatures>=0.05:devel/p5-Type-Tiny-Signatures -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/devel/p5-Data-ObjectDriver/Makefile b/devel/p5-Data-ObjectDriver/Makefile index f1d27867005..113566b1fa3 100644 --- a/devel/p5-Data-ObjectDriver/Makefile +++ b/devel/p5-Data-ObjectDriver/Makefile @@ -13,12 +13,12 @@ COMMENT= Simple, transparent data interface, with caching LICENSE= ART20 LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Class-Accessor>=0:devel/p5-Class-Accessor \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Accessor>=0:devel/p5-Class-Accessor \ p5-Class-Data-Inheritable>=0:devel/p5-Class-Data-Inheritable \ p5-Class-Trigger>=0:devel/p5-Class-Trigger \ p5-DBI>=0:databases/p5-DBI \ p5-Text-SimpleTable>=0:textproc/p5-Text-SimpleTable -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-DBD-SQLite>=0:databases/p5-DBD-SQLite \ p5-Test-Exception>=0:devel/p5-Test-Exception diff --git a/devel/p5-Data-Perl/Makefile b/devel/p5-Data-Perl/Makefile index 26a7c099c83..58626aec485 100644 --- a/devel/p5-Data-Perl/Makefile +++ b/devel/p5-Data-Perl/Makefile @@ -13,12 +13,12 @@ COMMENT= Base classes wrapping fundamental Perl data types LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Class-Method-Modifiers>=0:devel/p5-Class-Method-Modifiers \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Method-Modifiers>=0:devel/p5-Class-Method-Modifiers \ p5-List-MoreUtils>=0:lang/p5-List-MoreUtils \ p5-Module-Runtime>=0:devel/p5-Module-Runtime \ p5-Role-Tiny>=0:devel/p5-Role-Tiny \ p5-strictures>=1:devel/p5-strictures -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Data-Printer/Makefile b/devel/p5-Data-Printer/Makefile index 0631686214f..a7f9ac4ea41 100644 --- a/devel/p5-Data-Printer/Makefile +++ b/devel/p5-Data-Printer/Makefile @@ -13,11 +13,11 @@ COMMENT= Colored pretty-print of Perl data structures and objects LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Clone-PP>=0:devel/p5-Clone-PP \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Clone-PP>=0:devel/p5-Clone-PP \ p5-File-HomeDir>=0.91:devel/p5-File-HomeDir \ p5-Package-Stash>=0.30:devel/p5-Package-Stash \ p5-Sort-Naturally>=0:textproc/p5-Sort-Naturally -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Capture-Tiny>=0:devel/p5-Capture-Tiny \ p5-DBI>=0:databases/p5-DBI \ p5-IO-Pty-Easy>=0:devel/p5-IO-Pty-Easy \ diff --git a/devel/p5-Data-Rx/Makefile b/devel/p5-Data-Rx/Makefile index 2b9b31fec60..1a84b5196fd 100644 --- a/devel/p5-Data-Rx/Makefile +++ b/devel/p5-Data-Rx/Makefile @@ -13,10 +13,10 @@ COMMENT= Perl implementation of Rx schema system LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-File-Find-Rule>=0:devel/p5-File-Find-Rule \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-File-Find-Rule>=0:devel/p5-File-Find-Rule \ p5-JSON>=2:converters/p5-JSON \ p5-Number-Tolerant>=0:devel/p5-Number-Tolerant -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Deep>=0:devel/p5-Test-Deep \ p5-Try-Tiny>=0:lang/p5-Try-Tiny diff --git a/devel/p5-Data-Serializable/Makefile b/devel/p5-Data-Serializable/Makefile index f904678fd90..22696581083 100644 --- a/devel/p5-Data-Serializable/Makefile +++ b/devel/p5-Data-Serializable/Makefile @@ -14,10 +14,10 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-JSON>=0:converters/p5-JSON \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-JSON>=0:converters/p5-JSON \ p5-Module-Runtime>=0:devel/p5-Module-Runtime \ p5-Moose>=0:devel/p5-Moose -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Exception>=0:devel/p5-Test-Exception NO_ARCH= yes diff --git a/devel/p5-Data-Serializer-Sereal/Makefile b/devel/p5-Data-Serializer-Sereal/Makefile index 7d9e9795274..76254e2182d 100644 --- a/devel/p5-Data-Serializer-Sereal/Makefile +++ b/devel/p5-Data-Serializer-Sereal/Makefile @@ -10,10 +10,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= adamw@FreeBSD.org COMMENT= Creates bridge between Data::Serializer and Sereal -BUILD_DEPENDS= p5-Data-Serializer>=0:devel/p5-Data-Serializer \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Data-Serializer>=0:devel/p5-Data-Serializer \ p5-Sereal-Decoder>=0:converters/p5-Sereal-Decoder \ p5-Sereal-Encoder>=0:converters/p5-Sereal-Encoder -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Data-Stream-Bulk/Makefile b/devel/p5-Data-Stream-Bulk/Makefile index 45dbea32df5..8cc605bb481 100644 --- a/devel/p5-Data-Stream-Bulk/Makefile +++ b/devel/p5-Data-Stream-Bulk/Makefile @@ -14,11 +14,11 @@ COMMENT= N at a time iteration API LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Moose>=0.90:devel/p5-Moose \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Moose>=0.90:devel/p5-Moose \ p5-Path-Class>0:devel/p5-Path-Class \ p5-Sub-Exporter>0:devel/p5-Sub-Exporter \ p5-namespace-clean>0:devel/p5-namespace-clean -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Requires>0:devel/p5-Test-Requires diff --git a/devel/p5-Data-Throttler/Makefile b/devel/p5-Data-Throttler/Makefile index 11dee753cf6..b8dd2b24d39 100644 --- a/devel/p5-Data-Throttler/Makefile +++ b/devel/p5-Data-Throttler/Makefile @@ -13,11 +13,11 @@ COMMENT= Limit data throughput LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Log-Log4perl>=1:devel/p5-Log-Log4perl \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Log-Log4perl>=1:devel/p5-Log-Log4perl \ p5-Set-IntSpan>0:math/p5-Set-IntSpan \ p5-Text-ASCIITable>0:textproc/p5-Text-ASCIITable \ p5-YAML>=0.62:textproc/p5-YAML -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/devel/p5-Data-Thunk/Makefile b/devel/p5-Data-Thunk/Makefile index 86fdc9b83b0..350a09bd3f2 100644 --- a/devel/p5-Data-Thunk/Makefile +++ b/devel/p5-Data-Thunk/Makefile @@ -11,14 +11,14 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Lazy/deferred evaluation - a sneakier Scalar::Defer -BUILD_DEPENDS= p5-Check-ISA>=0:devel/p5-Check-ISA \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Check-ISA>=0:devel/p5-Check-ISA \ p5-Data-Swap>=0:devel/p5-Data-Swap \ p5-Devel-Refcount>=0:devel/p5-Devel-Refcount \ p5-Sub-Exporter>=0:devel/p5-Sub-Exporter \ p5-Try-Tiny>=0:lang/p5-Try-Tiny \ p5-UNIVERSAL-ref>=0:devel/p5-UNIVERSAL-ref \ p5-namespace-clean>=0:devel/p5-namespace-clean -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Data-TreeDumper-Renderer-GTK/Makefile b/devel/p5-Data-TreeDumper-Renderer-GTK/Makefile index 4510b3032da..486ec98112f 100644 --- a/devel/p5-Data-TreeDumper-Renderer-GTK/Makefile +++ b/devel/p5-Data-TreeDumper-Renderer-GTK/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= ehaupt@FreeBSD.org COMMENT= GTK renderer for Data::TreeDumper -BUILD_DEPENDS= p5-Data-TreeDumper>=0:devel/p5-Data-TreeDumper \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Data-TreeDumper>=0:devel/p5-Data-TreeDumper \ p5-Gtk2>=0:x11-toolkits/p5-Gtk2 -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 shebangfix SHEBANG_FILES= gtk_test.pl diff --git a/devel/p5-Data-TreeDumper/Makefile b/devel/p5-Data-TreeDumper/Makefile index 32d9872044a..b2e1c2d8ed0 100644 --- a/devel/p5-Data-TreeDumper/Makefile +++ b/devel/p5-Data-TreeDumper/Makefile @@ -14,12 +14,12 @@ COMMENT= Dumps a data structure in a tree fashion LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Check-ISA>=0:devel/p5-Check-ISA \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Check-ISA>=0:devel/p5-Check-ISA \ p5-Devel-Size>=0:devel/p5-Devel-Size \ p5-Sort-Naturally>=0:textproc/p5-Sort-Naturally \ p5-Term-Size>=0:devel/p5-Term-Size \ p5-Text-Tabs+Wrap>=0:textproc/p5-Text-Tabs+Wrap -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/devel/p5-Data-Validator/Makefile b/devel/p5-Data-Validator/Makefile index df472e74b09..2bb304c973a 100644 --- a/devel/p5-Data-Validator/Makefile +++ b/devel/p5-Data-Validator/Makefile @@ -14,8 +14,8 @@ COMMENT= Rule based validator on type constraint system LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Mouse>=0.93:devel/p5-Mouse -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Mouse>=0.93:devel/p5-Mouse TEST_DEPENDS= p5-Moose>=0:devel/p5-Moose \ p5-Test-Requires>=0:devel/p5-Test-Requires diff --git a/devel/p5-Data-Visitor/Makefile b/devel/p5-Data-Visitor/Makefile index 8b14c95ac92..b6c7db5eaa1 100644 --- a/devel/p5-Data-Visitor/Makefile +++ b/devel/p5-Data-Visitor/Makefile @@ -14,12 +14,12 @@ COMMENT= Visitor style traversal of Perl data structures LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Class-Load>=0.06:devel/p5-Class-Load \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Load>=0.06:devel/p5-Class-Load \ p5-Moose>=0.89:devel/p5-Moose \ p5-Task-Weaken>=0:devel/p5-Task-Weaken \ p5-Tie-ToObject>=0.01:devel/p5-Tie-ToObject \ p5-namespace-clean>=0.19:devel/p5-namespace-clean -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Data-Alias>=0:devel/p5-Data-Alias \ p5-Test-Requires>=0:devel/p5-Test-Requires diff --git a/devel/p5-Date-Calc-Iterator/Makefile b/devel/p5-Date-Calc-Iterator/Makefile index 4778f79dbc3..827989958f0 100644 --- a/devel/p5-Date-Calc-Iterator/Makefile +++ b/devel/p5-Date-Calc-Iterator/Makefile @@ -13,9 +13,9 @@ COMMENT= Iterate over a range of dates LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Date-Calc>=0:devel/p5-Date-Calc \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Date-Calc>=0:devel/p5-Date-Calc \ p5-Ref-Util>=0.202:devel/p5-Ref-Util -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/devel/p5-Date-Calc-XS/Makefile b/devel/p5-Date-Calc-XS/Makefile index f551c4442cb..a94181d24d2 100644 --- a/devel/p5-Date-Calc-XS/Makefile +++ b/devel/p5-Date-Calc-XS/Makefile @@ -10,10 +10,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= culot@FreeBSD.org COMMENT= XS wrapper and C library plug-in for Date::Calc -BUILD_DEPENDS= p5-Date-Calc>=6.4:devel/p5-Date-Calc \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Date-Calc>=6.4:devel/p5-Date-Calc \ p5-Bit-Vector>=7.4:math/p5-Bit-Vector \ p5-Carp-Clan>=5.3:devel/p5-Carp-Clan -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Date-Calc/Makefile b/devel/p5-Date-Calc/Makefile index 42e6a208eb5..2a2a3290e60 100644 --- a/devel/p5-Date-Calc/Makefile +++ b/devel/p5-Date-Calc/Makefile @@ -13,9 +13,9 @@ COMMENT= Gregorian calendar date calculations LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Bit-Vector>=7.4:math/p5-Bit-Vector \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Bit-Vector>=7.4:math/p5-Bit-Vector \ p5-Carp-Clan>=6.04:devel/p5-Carp-Clan -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/devel/p5-Date-DayOfWeek/Makefile b/devel/p5-Date-DayOfWeek/Makefile index d638e3216a8..88745edb8c7 100644 --- a/devel/p5-Date-DayOfWeek/Makefile +++ b/devel/p5-Date-DayOfWeek/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Determine the day of the week for any date -BUILD_DEPENDS= p5-Date-Leapyear>=0:devel/p5-Date-Leapyear \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Date-Leapyear>=0:devel/p5-Date-Leapyear \ p5-Test-Simple>=0:devel/p5-Test-Simple -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Date-Holidays-DK/Makefile b/devel/p5-Date-Holidays-DK/Makefile index 32b5591fc3c..bdcd8336b0f 100644 --- a/devel/p5-Date-Holidays-DK/Makefile +++ b/devel/p5-Date-Holidays-DK/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Determine Danish public holidays -BUILD_DEPENDS= p5-Date-Simple>=0:devel/p5-Date-Simple \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Date-Simple>=0:devel/p5-Date-Simple \ p5-Date-Easter>=0:devel/p5-Date-Easter -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Date-ISO/Makefile b/devel/p5-Date-ISO/Makefile index 193f5a3a6d2..8db4bc0337b 100644 --- a/devel/p5-Date-ISO/Makefile +++ b/devel/p5-Date-ISO/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= bofh@FreeBSD.org COMMENT= Converts dates between ISO and Gregorian formats -BUILD_DEPENDS= p5-Date-ICal>=1.54:devel/p5-Date-ICal \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Date-ICal>=1.54:devel/p5-Date-ICal \ p5-Date-Leapyear>=0:devel/p5-Date-Leapyear -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Date-Piece/Makefile b/devel/p5-Date-Piece/Makefile index 75944acae87..bdcfc70ef12 100644 --- a/devel/p5-Date-Piece/Makefile +++ b/devel/p5-Date-Piece/Makefile @@ -16,8 +16,8 @@ COMMENT= Perl5 module containing date manipulation routines LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Date-Simple>=3.03:devel/p5-Date-Simple -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Date-Simple>=3.03:devel/p5-Date-Simple NO_ARCH= yes USES= perl5 diff --git a/devel/p5-Date-Roman/Makefile b/devel/p5-Date-Roman/Makefile index 24f3f2e0913..4eec7ebcaf1 100644 --- a/devel/p5-Date-Roman/Makefile +++ b/devel/p5-Date-Roman/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= philip@FreeBSD.org COMMENT= Perl module to play with Roman dates -BUILD_DEPENDS= p5-Roman>=0:math/p5-Roman -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Roman>=0:math/p5-Roman USES= perl5 USE_PERL5= configure diff --git a/devel/p5-DateTime-Calendar-Christian/Makefile b/devel/p5-DateTime-Calendar-Christian/Makefile index 79d680204cc..1b5cc4a98cb 100644 --- a/devel/p5-DateTime-Calendar-Christian/Makefile +++ b/devel/p5-DateTime-Calendar-Christian/Makefile @@ -15,8 +15,8 @@ LICENSE_COMB= dual LICENSE_FILE_ART10= ${WRKSRC}/LICENSES/Artistic LICENSE_FILE_GPLv1+ = ${WRKSRC}/LICENSES/Copying -BUILD_DEPENDS= p5-DateTime-Calendar-Julian>=0.04:devel/p5-DateTime-Calendar-Julian -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-DateTime-Calendar-Julian>=0.04:devel/p5-DateTime-Calendar-Julian NO_ARCH= yes USES= perl5 diff --git a/devel/p5-DateTime-Calendar-Discordian/Makefile b/devel/p5-DateTime-Calendar-Discordian/Makefile index 81a6cb571c0..4b8842df7e1 100644 --- a/devel/p5-DateTime-Calendar-Discordian/Makefile +++ b/devel/p5-DateTime-Calendar-Discordian/Makefile @@ -15,10 +15,10 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-DateTime>=0:devel/p5-DateTime \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-DateTime>=0:devel/p5-DateTime \ p5-DateTime-Locale>=0:devel/p5-DateTime-Locale \ p5-Params-Validate>=0:devel/p5-Params-Validate -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/devel/p5-DateTime-Calendar-FrenchRevolutionary/Makefile b/devel/p5-DateTime-Calendar-FrenchRevolutionary/Makefile index f96677aff96..64c9b373d62 100644 --- a/devel/p5-DateTime-Calendar-FrenchRevolutionary/Makefile +++ b/devel/p5-DateTime-Calendar-FrenchRevolutionary/Makefile @@ -14,10 +14,10 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-DateTime>=0.14:devel/p5-DateTime \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-DateTime>=0.14:devel/p5-DateTime \ p5-Params-Validate>=0:devel/p5-Params-Validate \ p5-Roman>=1.22:math/p5-Roman -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/devel/p5-DateTime-Calendar-Hebrew/Makefile b/devel/p5-DateTime-Calendar-Hebrew/Makefile index 9bb72e80680..af84d68c30e 100644 --- a/devel/p5-DateTime-Calendar-Hebrew/Makefile +++ b/devel/p5-DateTime-Calendar-Hebrew/Makefile @@ -15,9 +15,9 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-DateTime>=0:devel/p5-DateTime \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-DateTime>=0:devel/p5-DateTime \ p5-DateTime-Event-Sunrise>=0:devel/p5-DateTime-Event-Sunrise -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/devel/p5-DateTime-Calendar-Julian/Makefile b/devel/p5-DateTime-Calendar-Julian/Makefile index ed62cc40306..8a4f988dcc1 100644 --- a/devel/p5-DateTime-Calendar-Julian/Makefile +++ b/devel/p5-DateTime-Calendar-Julian/Makefile @@ -15,8 +15,8 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-DateTime>=0:devel/p5-DateTime -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-DateTime>=0:devel/p5-DateTime NO_ARCH= yes USES= perl5 diff --git a/devel/p5-DateTime-Calendar-Pataphysical/Makefile b/devel/p5-DateTime-Calendar-Pataphysical/Makefile index 530a2d3ff60..9596b1a1817 100644 --- a/devel/p5-DateTime-Calendar-Pataphysical/Makefile +++ b/devel/p5-DateTime-Calendar-Pataphysical/Makefile @@ -14,9 +14,9 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-DateTime>=0:devel/p5-DateTime \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-DateTime>=0:devel/p5-DateTime \ p5-DateTime-Locale>=0:devel/p5-DateTime-Locale -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-MockTime>=0:devel/p5-Test-MockTime NO_ARCH= yes diff --git a/devel/p5-DateTime-Event-Cron/Makefile b/devel/p5-DateTime-Event-Cron/Makefile index 5cb290368c2..f33b5a83825 100644 --- a/devel/p5-DateTime-Event-Cron/Makefile +++ b/devel/p5-DateTime-Event-Cron/Makefile @@ -13,10 +13,10 @@ COMMENT= DateTime extension for generating recurrence sets from crontab LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-DateTime>=0:devel/p5-DateTime \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-DateTime>=0:devel/p5-DateTime \ p5-DateTime-Set>=0:devel/p5-DateTime-Set \ p5-Set-Crontab>=0:devel/p5-Set-Crontab -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/devel/p5-DateTime-Event-Easter/Makefile b/devel/p5-DateTime-Event-Easter/Makefile index 53f1975b98b..f28961b9110 100644 --- a/devel/p5-DateTime-Event-Easter/Makefile +++ b/devel/p5-DateTime-Event-Easter/Makefile @@ -11,11 +11,11 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Returns Easter events for DateTime objects -BUILD_DEPENDS= p5-DateTime>=0:devel/p5-DateTime \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-DateTime>=0:devel/p5-DateTime \ p5-DateTime-Calendar-Julian>=0:devel/p5-DateTime-Calendar-Julian \ p5-DateTime-Set>=0:devel/p5-DateTime-Set \ p5-Params-Validate>=0:devel/p5-Params-Validate -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-DateTime-Event-ICal/Makefile b/devel/p5-DateTime-Event-ICal/Makefile index f6f30000985..d0343b8077d 100644 --- a/devel/p5-DateTime-Event-ICal/Makefile +++ b/devel/p5-DateTime-Event-ICal/Makefile @@ -13,9 +13,9 @@ COMMENT= Perl DateTime extension for computing rfc2445 recurrences LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-DateTime>=0:devel/p5-DateTime \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-DateTime>=0:devel/p5-DateTime \ p5-DateTime-Event-Recurrence>=0.11:devel/p5-DateTime-Event-Recurrence -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/devel/p5-DateTime-Event-Lunar/Makefile b/devel/p5-DateTime-Event-Lunar/Makefile index 1bcc448267d..47bce308caf 100644 --- a/devel/p5-DateTime-Event-Lunar/Makefile +++ b/devel/p5-DateTime-Event-Lunar/Makefile @@ -12,11 +12,11 @@ PKGNAMEPREFIX= p5- MAINTAINER= markun@onohara.to COMMENT= Compute Lunar Events -BUILD_DEPENDS= p5-DateTime>=0:devel/p5-DateTime \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-DateTime>=0:devel/p5-DateTime \ p5-DateTime-Set>=0:devel/p5-DateTime-Set \ p5-DateTime-Astro>=1.00:devel/p5-DateTime-Astro \ p5-Math-Round>=0:math/p5-Math-Round -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-DateTime-Event-Random/Makefile b/devel/p5-DateTime-Event-Random/Makefile index 5c080b198cd..a0c2bcc9860 100644 --- a/devel/p5-DateTime-Event-Random/Makefile +++ b/devel/p5-DateTime-Event-Random/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= DateTime extension for creating random datetimes -BUILD_DEPENDS= p5-DateTime>=0:devel/p5-DateTime \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-DateTime>=0:devel/p5-DateTime \ p5-DateTime-Set>=0:devel/p5-DateTime-Set -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-DateTime-Event-Recurrence/Makefile b/devel/p5-DateTime-Event-Recurrence/Makefile index f69f452b226..3fd4ee04901 100644 --- a/devel/p5-DateTime-Event-Recurrence/Makefile +++ b/devel/p5-DateTime-Event-Recurrence/Makefile @@ -13,9 +13,9 @@ COMMENT= Perl DateTime extension for computing basic recurrences LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-DateTime>=0.27:devel/p5-DateTime \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-DateTime>=0.27:devel/p5-DateTime \ p5-DateTime-Set>=0.3600:devel/p5-DateTime-Set -RUN_DEPENDS:= ${BUILD_DEPENDS} OPTIONS_DEFINE= DOCS diff --git a/devel/p5-DateTime-Event-Sunrise/Makefile b/devel/p5-DateTime-Event-Sunrise/Makefile index c04f7e2a0e7..0be11ec5666 100644 --- a/devel/p5-DateTime-Event-Sunrise/Makefile +++ b/devel/p5-DateTime-Event-Sunrise/Makefile @@ -14,11 +14,11 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-DateTime>=0.21:devel/p5-DateTime \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-DateTime>=0.21:devel/p5-DateTime \ p5-DateTime-Set>=0.1600:devel/p5-DateTime-Set \ p5-Params-Validate>=0:devel/p5-Params-Validate \ p5-Set-Infinite>=0:devel/p5-Set-Infinite -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Exception>=0:devel/p5-Test-Exception NO_ARCH= yes diff --git a/devel/p5-DateTime-Fiscal-Year/Makefile b/devel/p5-DateTime-Fiscal-Year/Makefile index a6eb096c6db..acde8489fca 100644 --- a/devel/p5-DateTime-Fiscal-Year/Makefile +++ b/devel/p5-DateTime-Fiscal-Year/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Calculate the day or week of the Fiscal Year with an arbitrary start date -BUILD_DEPENDS= p5-DateTime>=0:devel/p5-DateTime -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-DateTime>=0:devel/p5-DateTime USES= perl5 USE_PERL5= modbuild diff --git a/devel/p5-DateTime-Format-Baby/Makefile b/devel/p5-DateTime-Format-Baby/Makefile index 9b839448fa8..18667be187d 100644 --- a/devel/p5-DateTime-Format-Baby/Makefile +++ b/devel/p5-DateTime-Format-Baby/Makefile @@ -14,9 +14,9 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-DateTime>=0.16:devel/p5-DateTime \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-DateTime>=0.16:devel/p5-DateTime \ p5-Params-Validate>=0:devel/p5-Params-Validate -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/devel/p5-DateTime-Format-DBI/Makefile b/devel/p5-DateTime-Format-DBI/Makefile index 93d71324761..72b6ed7eeaf 100644 --- a/devel/p5-DateTime-Format-DBI/Makefile +++ b/devel/p5-DateTime-Format-DBI/Makefile @@ -14,9 +14,9 @@ COMMENT= Find a parser class for a database connection LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-DBI>=1.21:databases/p5-DBI \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-DBI>=1.21:databases/p5-DBI \ p5-DateTime>=0.1:devel/p5-DateTime -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-NoWarnings>=0:devel/p5-Test-NoWarnings USES= perl5 diff --git a/devel/p5-DateTime-Format-DateParse/Makefile b/devel/p5-DateTime-Format-DateParse/Makefile index 0aa372424a3..d60222d036c 100644 --- a/devel/p5-DateTime-Format-DateParse/Makefile +++ b/devel/p5-DateTime-Format-DateParse/Makefile @@ -15,9 +15,9 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-DateTime>=0:devel/p5-DateTime \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-DateTime>=0:devel/p5-DateTime \ p5-TimeDate>=0:devel/p5-TimeDate -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= modbuild diff --git a/devel/p5-DateTime-Format-Duration/Makefile b/devel/p5-DateTime-Format-Duration/Makefile index cd0640fa8d7..d203a43dc33 100644 --- a/devel/p5-DateTime-Format-Duration/Makefile +++ b/devel/p5-DateTime-Format-Duration/Makefile @@ -13,8 +13,8 @@ COMMENT= Format and parse DateTime::Durations LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-DateTime>=0:devel/p5-DateTime -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-DateTime>=0:devel/p5-DateTime WRKSRC= ${WRKDIR}/${DISTNAME:C/a$//} diff --git a/devel/p5-DateTime-Format-Epoch/Makefile b/devel/p5-DateTime-Format-Epoch/Makefile index 4875a0439a2..60a0e81b1da 100644 --- a/devel/p5-DateTime-Format-Epoch/Makefile +++ b/devel/p5-DateTime-Format-Epoch/Makefile @@ -13,9 +13,9 @@ COMMENT= Convert DateTimes to/from epoch seconds LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-DateTime>=0.31:devel/p5-DateTime \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-DateTime>=0.31:devel/p5-DateTime \ p5-Params-Validate>=0:devel/p5-Params-Validate -RUN_DEPENDS:= ${BUILD_DEPENDS} PORTSCOUT= skipv:0.801 diff --git a/devel/p5-DateTime-Format-Excel/Makefile b/devel/p5-DateTime-Format-Excel/Makefile index 2f0ef835017..30b1c471fff 100644 --- a/devel/p5-DateTime-Format-Excel/Makefile +++ b/devel/p5-DateTime-Format-Excel/Makefile @@ -12,8 +12,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Convert between DateTime and Excel dates -BUILD_DEPENDS= p5-DateTime>=0:devel/p5-DateTime -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-DateTime>=0:devel/p5-DateTime USES= perl5 USE_PERL5= modbuild diff --git a/devel/p5-DateTime-Format-IBeat/Makefile b/devel/p5-DateTime-Format-IBeat/Makefile index fa5e7691b60..4ff6443ca3f 100644 --- a/devel/p5-DateTime-Format-IBeat/Makefile +++ b/devel/p5-DateTime-Format-IBeat/Makefile @@ -16,8 +16,8 @@ LICENSE_COMB= dual LICENSE_FILE_ART10= ${WRKSRC}/Artistic LICENSE_FILE_GPLv2= ${WRKSRC}/COPYING -BUILD_DEPENDS= p5-DateTime>=0:devel/p5-DateTime -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-DateTime>=0:devel/p5-DateTime NO_ARCH= yes USES= perl5 diff --git a/devel/p5-DateTime-Format-ISO8601/Makefile b/devel/p5-DateTime-Format-ISO8601/Makefile index 503010d7ae4..b430c000748 100644 --- a/devel/p5-DateTime-Format-ISO8601/Makefile +++ b/devel/p5-DateTime-Format-ISO8601/Makefile @@ -15,9 +15,9 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-DateTime>=0.18:devel/p5-DateTime \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-DateTime>=0.18:devel/p5-DateTime \ p5-DateTime-Format-Builder>=0.77:devel/p5-DateTime-Format-Builder -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/devel/p5-DateTime-Format-Natural/Makefile b/devel/p5-DateTime-Format-Natural/Makefile index a25adc5c033..98ea2777073 100644 --- a/devel/p5-DateTime-Format-Natural/Makefile +++ b/devel/p5-DateTime-Format-Natural/Makefile @@ -13,14 +13,14 @@ COMMENT= Create machine readable date/time with natural parsing logic LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-boolean>=0:devel/p5-boolean \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-boolean>=0:devel/p5-boolean \ p5-Clone>=0:devel/p5-Clone \ p5-Date-Calc>=0:devel/p5-Date-Calc \ p5-DateTime>=0:devel/p5-DateTime \ p5-List-MoreUtils>=0:lang/p5-List-MoreUtils \ p5-Params-Validate>=0:devel/p5-Params-Validate \ p5-Module-Util>=0:devel/p5-Module-Util -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-MockTime>=0:devel/p5-Test-MockTime USES= perl5 diff --git a/devel/p5-DateTime-Format-Oracle/Makefile b/devel/p5-DateTime-Format-Oracle/Makefile index b1272c24544..f7001b9ec36 100644 --- a/devel/p5-DateTime-Format-Oracle/Makefile +++ b/devel/p5-DateTime-Format-Oracle/Makefile @@ -14,10 +14,10 @@ COMMENT= Parse and format Oracle dates and timestamps LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Convert-NLS_DATE_FORMAT>=0.03:converters/p5-Convert-NLS_DATE_FORMAT \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Convert-NLS_DATE_FORMAT>=0.03:converters/p5-Convert-NLS_DATE_FORMAT \ p5-DateTime>=0:devel/p5-DateTime \ p5-DateTime-Format-Builder>=0:devel/p5-DateTime-Format-Builder -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USE_PERL5= configure diff --git a/devel/p5-DateTime-Format-Pg/Makefile b/devel/p5-DateTime-Format-Pg/Makefile index ad687b8ae03..d2194368f6d 100644 --- a/devel/p5-DateTime-Format-Pg/Makefile +++ b/devel/p5-DateTime-Format-Pg/Makefile @@ -14,10 +14,10 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-DateTime>=0.10:devel/p5-DateTime \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-DateTime>=0.10:devel/p5-DateTime \ p5-DateTime-Format-Builder>=0.72:devel/p5-DateTime-Format-Builder \ p5-DateTime-TimeZone>=0.05:devel/p5-DateTime-TimeZone -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/devel/p5-DateTime-Format-SQLite/Makefile b/devel/p5-DateTime-Format-SQLite/Makefile index efacf4dd283..f3045ad030a 100644 --- a/devel/p5-DateTime-Format-SQLite/Makefile +++ b/devel/p5-DateTime-Format-SQLite/Makefile @@ -15,8 +15,8 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE_ART10= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-DateTime-Format-Builder>=0:devel/p5-DateTime-Format-Builder -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-DateTime-Format-Builder>=0:devel/p5-DateTime-Format-Builder NO_ARCH= yes USES= perl5 diff --git a/devel/p5-DateTime-Functions/Makefile b/devel/p5-DateTime-Functions/Makefile index 306989521e3..bc4814202ca 100644 --- a/devel/p5-DateTime-Functions/Makefile +++ b/devel/p5-DateTime-Functions/Makefile @@ -10,8 +10,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Procedural interface to DateTime functions -BUILD_DEPENDS= p5-DateTime>=0:devel/p5-DateTime -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-DateTime>=0:devel/p5-DateTime USES= perl5 USE_PERL5= configure diff --git a/devel/p5-DateTime-Incomplete/Makefile b/devel/p5-DateTime-Incomplete/Makefile index 5608ba40b31..edf88eb362a 100644 --- a/devel/p5-DateTime-Incomplete/Makefile +++ b/devel/p5-DateTime-Incomplete/Makefile @@ -14,10 +14,10 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-DateTime>=0:devel/p5-DateTime \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-DateTime>=0:devel/p5-DateTime \ p5-DateTime-Set>=0.1400:devel/p5-DateTime-Set \ p5-DateTime-Event-Recurrence>=0:devel/p5-DateTime-Event-Recurrence -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/devel/p5-DateTime-Precise/Makefile b/devel/p5-DateTime-Precise/Makefile index 75bab82677f..e8adadfad37 100644 --- a/devel/p5-DateTime-Precise/Makefile +++ b/devel/p5-DateTime-Precise/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Perform common time and date operations with additional GPS operations -BUILD_DEPENDS= p5-DateTime>=0:devel/p5-DateTime -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-DateTime>=0:devel/p5-DateTime USES= perl5 USE_PERL5= configure diff --git a/devel/p5-DateTime-Set/Makefile b/devel/p5-DateTime-Set/Makefile index d5f1fbe1eb7..2ea24e31d78 100644 --- a/devel/p5-DateTime-Set/Makefile +++ b/devel/p5-DateTime-Set/Makefile @@ -13,10 +13,10 @@ COMMENT= Datetime sets and set math LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-DateTime>=0.12:devel/p5-DateTime \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-DateTime>=0.12:devel/p5-DateTime \ p5-Params-Validate>=0:devel/p5-Params-Validate \ p5-Set-Infinite>=0.59:devel/p5-Set-Infinite -RUN_DEPENDS:= ${BUILD_DEPENDS} OPTIONS_DEFINE= DOCS diff --git a/devel/p5-DateTime-TimeZone-LMT/Makefile b/devel/p5-DateTime-TimeZone-LMT/Makefile index 9b2e817e229..62b2e55a575 100644 --- a/devel/p5-DateTime-TimeZone-LMT/Makefile +++ b/devel/p5-DateTime-TimeZone-LMT/Makefile @@ -13,10 +13,10 @@ COMMENT= Local Mean Time time zone for DateTime LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-DateTime>=0.12:devel/p5-DateTime \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-DateTime>=0.12:devel/p5-DateTime \ p5-DateTime-TimeZone>=0.13:devel/p5-DateTime-TimeZone \ p5-Params-Validate>=0:devel/p5-Params-Validate -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Fatal>=0:devel/p5-Test-Fatal USES= perl5 diff --git a/devel/p5-DateTime-Util-Calc/Makefile b/devel/p5-DateTime-Util-Calc/Makefile index ce4f2681eba..71806006271 100644 --- a/devel/p5-DateTime-Util-Calc/Makefile +++ b/devel/p5-DateTime-Util-Calc/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= markun@onohara.to COMMENT= DateTime Calculation Utilities -BUILD_DEPENDS= p5-DateTime>=0:devel/p5-DateTime -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-DateTime>=0:devel/p5-DateTime NO_ARCH= yes USES= perl5 diff --git a/devel/p5-DateTimeX-Easy/Makefile b/devel/p5-DateTimeX-Easy/Makefile index 19dec513229..fa5c4c26670 100644 --- a/devel/p5-DateTimeX-Easy/Makefile +++ b/devel/p5-DateTimeX-Easy/Makefile @@ -14,13 +14,13 @@ COMMENT= Parse a date/time string using the best method available LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-DateTime>=0:devel/p5-DateTime \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-DateTime>=0:devel/p5-DateTime \ p5-DateTime-Format-DateParse>=0:devel/p5-DateTime-Format-DateParse \ p5-DateTime-Format-Flexible>=0:devel/p5-DateTime-Format-Flexible \ p5-DateTime-Format-ICal>=0:devel/p5-DateTime-Format-ICal \ p5-DateTime-Format-Natural>=0:devel/p5-DateTime-Format-Natural \ p5-TimeDate>=0:devel/p5-TimeDate -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Most>=0:devel/p5-Test-Most NO_ARCH= yes diff --git a/devel/p5-Debug-Client/Makefile b/devel/p5-Debug-Client/Makefile index 36b18d41822..a8b6a1bdcb9 100644 --- a/devel/p5-Debug-Client/Makefile +++ b/devel/p5-Debug-Client/Makefile @@ -13,9 +13,9 @@ COMMENT= Client for the standard Perl debugger LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-PadWalker>=1.98:devel/p5-PadWalker \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-PadWalker>=1.98:devel/p5-PadWalker \ p5-Term-ReadLine-Gnu>=1.20:devel/p5-Term-ReadLine-Gnu -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-File-HomeDir>=1:devel/p5-File-HomeDir \ p5-Test-CheckDeps>=0.010:devel/p5-Test-CheckDeps \ p5-Test-Class>=0.42:devel/p5-Test-Class \ diff --git a/devel/p5-Devel-ArgNames/Makefile b/devel/p5-Devel-ArgNames/Makefile index cc3243f2d36..07caa022f19 100644 --- a/devel/p5-Devel-ArgNames/Makefile +++ b/devel/p5-Devel-ArgNames/Makefile @@ -14,8 +14,8 @@ COMMENT= Figure out the names of variables passed into subroutines LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-PadWalker>=0:devel/p5-PadWalker -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-PadWalker>=0:devel/p5-PadWalker USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Devel-Autoflush/Makefile b/devel/p5-Devel-Autoflush/Makefile index 358a2fc0728..5c564bda4ae 100644 --- a/devel/p5-Devel-Autoflush/Makefile +++ b/devel/p5-Devel-Autoflush/Makefile @@ -12,8 +12,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= swills@FreeBSD.org COMMENT= Set autoflush from the command line -BUILD_DEPENDS= p5-IO-CaptureOutput>0:devel/p5-IO-CaptureOutput -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-IO-CaptureOutput>0:devel/p5-IO-CaptureOutput USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Devel-BeginLift/Makefile b/devel/p5-Devel-BeginLift/Makefile index f26c8f50dbe..28ea2e292e5 100644 --- a/devel/p5-Devel-BeginLift/Makefile +++ b/devel/p5-Devel-BeginLift/Makefile @@ -21,7 +21,7 @@ USE_PERL5= configure .include .if ${PERL_LEVEL} >= 502501 -BROKEN= Does not build, op_sibling usage. https://rt.cpan.org/Public/Bug/Display.html?id=115272 +EXTRA_PATCHES= ${PATCHDIR}/extra-patch-BeginLift.xs .endif .include diff --git a/devel/p5-Devel-BeginLift/files/extra-patch-BeginLift.xs b/devel/p5-Devel-BeginLift/files/extra-patch-BeginLift.xs new file mode 100644 index 00000000000..7dc3dcf08c7 --- /dev/null +++ b/devel/p5-Devel-BeginLift/files/extra-patch-BeginLift.xs @@ -0,0 +1,44 @@ +--- BeginLift.xs.orig 2010-05-11 06:01:00 UTC ++++ BeginLift.xs +@@ -8,10 +8,6 @@ + + #include "hook_op_check_entersubforcv.h" + +-/* lifted from op.c */ +- +-#define LINKLIST(o) ((o)->op_next ? (o)->op_next : linklist((OP*)o)) +- + #ifndef linklist + # define linklist(o) THX_linklist(aTHX_ o) + STATIC OP *THX_linklist(pTHX_ OP *o) { +@@ -24,9 +20,9 @@ STATIC OP *THX_linklist(pTHX_ OP *o) { + o->op_next = LINKLIST(first); + kid = first; + for (;;) { +- if (kid->op_sibling) { +- kid->op_next = LINKLIST(kid->op_sibling); +- kid = kid->op_sibling; ++ if (OpHAS_SIBLING(kid)) { ++ kid->op_next = LINKLIST(OpSIBLING(kid)); ++ kid = OpSIBLING(kid); + } else { + kid->op_next = o; + break; +@@ -61,7 +57,7 @@ STATIC OP *lift_cb(pTHX_ OP *o, CV *cv, + PUSHMARK(SP); /* push a mark for the arguments */ + + /* push an arg for every sibling op */ +- for ( arg = curop->op_sibling; arg->op_sibling; arg = arg->op_sibling ) { ++ for ( arg = OpSIBLING(arg); OpHAS_SIBLING(arg); arg = OpSIBLING(arg) ) { + XPUSHs(sv_bless(newRV_inc(newSViv(PTR2IV(arg))), gv_stashpv("B::LISTOP", 0))); + } + +@@ -96,7 +92,7 @@ STATIC OP *lift_cb(pTHX_ OP *o, CV *cv, + + if (SvROK(sv) && sv_derived_from(sv, "B::OP")) { + OP *new = INT2PTR(OP *,SvIV((SV *)SvRV(sv))); +- new->op_sibling = NULL; ++ new->op_sibparent = NULL; + + /* FIXME this is bullshit */ + if ( (PL_opargs[new->op_type] & OA_CLASS_MASK) != OA_SVOP ) { diff --git a/devel/p5-Devel-CallChecker/Makefile b/devel/p5-Devel-CallChecker/Makefile index cbf515a8ed1..7b4708a8c92 100644 --- a/devel/p5-Devel-CallChecker/Makefile +++ b/devel/p5-Devel-CallChecker/Makefile @@ -13,8 +13,8 @@ COMMENT= Custom op checking attached to subroutines LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-DynaLoader-Functions>=0.001:devel/p5-DynaLoader-Functions -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-DynaLoader-Functions>=0.001:devel/p5-DynaLoader-Functions TEST_DEPENDS= p5-Test-Pod>=1:devel/p5-Test-Pod \ p5-Test-Pod-Coverage>=0:devel/p5-Test-Pod-Coverage diff --git a/devel/p5-Devel-CheckOS/Makefile b/devel/p5-Devel-CheckOS/Makefile index 4fdd325b9d5..646d83cbd23 100644 --- a/devel/p5-Devel-CheckOS/Makefile +++ b/devel/p5-Devel-CheckOS/Makefile @@ -13,9 +13,9 @@ COMMENT= Check currently running OS LICENSE= ART10 GPLv2 LICENSE_COMB= dual -BUILD_DEPENDS= p5-Data-Compare>=1.2100:devel/p5-Data-Compare \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Data-Compare>=1.2100:devel/p5-Data-Compare \ p5-File-Find-Rule>=0.28:devel/p5-File-Find-Rule -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/devel/p5-Devel-Cover/Makefile b/devel/p5-Devel-Cover/Makefile index 95765a68568..6861622db6b 100644 --- a/devel/p5-Devel-Cover/Makefile +++ b/devel/p5-Devel-Cover/Makefile @@ -14,6 +14,7 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENCE +BUILD_DEPENDS= ${RUN_DEPENDS} TEST_DEPENDS= p5-Test-Differences>=0:devel/p5-Test-Differences USES= perl5 @@ -24,21 +25,17 @@ OPTIONS_DEFAULT=CPANCOVER HTML_REPORTS POD_COVERAGE OPTIONS_SUB= yes CPANCOVER_DESC= Coverage statistics on CPAN modules -CPANCOVER_BUILD_DEPENDS= p5-Parallel-Iterator>=0:devel/p5-Parallel-Iterator \ +CPANCOVER_RUN_DEPENDS= p5-Parallel-Iterator>=0:devel/p5-Parallel-Iterator \ p5-Template-Toolkit>=2:www/p5-Template-Toolkit -CPANCOVER_RUN_DEPENDS= ${CPANCOVER_BUILD_DEPENDS} HTML_REPORTS_DESC= Build HTML reports with p5-HTML-Parser -HTML_REPORTS_BUILD_DEPENDS= p5-HTML-Parser>=0:www/p5-HTML-Parser -HTML_REPORTS_RUN_DEPENDS= ${HTML_REPORTS_BUILD_DEPENDS} +HTML_REPORTS_RUN_DEPENDS= p5-HTML-Parser>=0:www/p5-HTML-Parser POD_COVERAGE_DESC= POD coverage via p5-Pod-Coverage -POD_COVERAGE_BUILD_DEPENDS= p5-Pod-Coverage>=0.06:devel/p5-Pod-Coverage -POD_COVERAGE_RUN_DEPENDS= ${POD_COVERAGE_BUILD_DEPENDS} +POD_COVERAGE_RUN_DEPENDS= p5-Pod-Coverage>=0.06:devel/p5-Pod-Coverage SYNTAX_HIGHLIGHTING_DESC= Syntax highlighting via p5-PPI-HTML -SYNTAX_HIGHLIGHTING_BUILD_DEPENDS= p5-PPI-HTML>=1.07:textproc/p5-PPI-HTML -SYNTAX_HIGHLIGHTING_RUN_DEPENDS= ${SYNTAX_HIGHLIGHTING_BUILD_DEPENDS} +SYNTAX_HIGHLIGHTING_RUN_DEPENDS= p5-PPI-HTML>=1.07:textproc/p5-PPI-HTML post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/${SITE_ARCH_REL}/auto/Devel/Cover/Cover.so diff --git a/devel/p5-Devel-Events-Objects/Makefile b/devel/p5-Devel-Events-Objects/Makefile index 86f99babf97..aa68eef63f1 100644 --- a/devel/p5-Devel-Events-Objects/Makefile +++ b/devel/p5-Devel-Events-Objects/Makefile @@ -11,11 +11,11 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Perl module providing object tracking support for Devel::Events -BUILD_DEPENDS= p5-Devel-Events>=0:devel/p5-Devel-Events \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Devel-Events>=0:devel/p5-Devel-Events \ p5-Task-Weaken>=0:devel/p5-Task-Weaken \ p5-Tie-RefHash-Weak>=0:devel/p5-Tie-RefHash-Weak \ p5-Variable-Magic>=0:devel/p5-Variable-Magic -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/devel/p5-Devel-Events/Makefile b/devel/p5-Devel-Events/Makefile index 013fe75abca..cc23a44e6b5 100644 --- a/devel/p5-Devel-Events/Makefile +++ b/devel/p5-Devel-Events/Makefile @@ -13,12 +13,12 @@ COMMENT= Perl5 module providing an extensible instrumentation framework LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Moose>=0:devel/p5-Moose \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Moose>=0:devel/p5-Moose \ p5-MooseX-AttributeHelpers>=0:devel/p5-MooseX-AttributeHelpers \ p5-Set-Object>=0:devel/p5-Set-Object \ p5-Sub-Uplevel>=0:devel/p5-Sub-Uplevel \ p5-Try-Tiny>=0:lang/p5-Try-Tiny -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Deep>=0:devel/p5-Test-Deep NO_ARCH= yes diff --git a/devel/p5-Devel-KYTProf/Makefile b/devel/p5-Devel-KYTProf/Makefile index 46f4b238c51..bffb148a7e9 100644 --- a/devel/p5-Devel-KYTProf/Makefile +++ b/devel/p5-Devel-KYTProf/Makefile @@ -10,9 +10,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= kuriyama@FreeBSD.org COMMENT= Perl extension for simple profiler -BUILD_DEPENDS= p5-Class-Data-Inheritable>0:devel/p5-Class-Data-Inheritable \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Data-Inheritable>0:devel/p5-Class-Data-Inheritable \ p5-UNIVERSAL-require>0:devel/p5-UNIVERSAL-require -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-DBI>0:databases/p5-DBI \ p5-DBD-SQLite>0:databases/p5-DBD-SQLite diff --git a/devel/p5-Devel-LeakGuard-Object/Makefile b/devel/p5-Devel-LeakGuard-Object/Makefile index c09cf2430fa..9b26bde5588 100644 --- a/devel/p5-Devel-LeakGuard-Object/Makefile +++ b/devel/p5-Devel-LeakGuard-Object/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= markun@onohara.to COMMENT= Scoped checks for object leaks -BUILD_DEPENDS= p5-Test-Differences>=0:devel/p5-Test-Differences -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Test-Differences>=0:devel/p5-Test-Differences TEST_DEPENDS= p5-latest>0:devel/p5-latest USES= perl5 diff --git a/devel/p5-Devel-NYTProf/Makefile b/devel/p5-Devel-NYTProf/Makefile index 8833fa245a8..2830b3a1b2d 100644 --- a/devel/p5-Devel-NYTProf/Makefile +++ b/devel/p5-Devel-NYTProf/Makefile @@ -13,9 +13,9 @@ COMMENT= Powerful feature-rich Perl source code profiler LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-File-Which>=0:sysutils/p5-File-Which \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-File-Which>=0:sysutils/p5-File-Which \ p5-JSON-MaybeXS>=0:converters/p5-JSON-MaybeXS -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Differences>=0.60:devel/p5-Test-Differences USES= perl5 diff --git a/devel/p5-Devel-PackagePath/Makefile b/devel/p5-Devel-PackagePath/Makefile index f579146b0ff..22dbdcf1c40 100644 --- a/devel/p5-Devel-PackagePath/Makefile +++ b/devel/p5-Devel-PackagePath/Makefile @@ -14,9 +14,9 @@ COMMENT= Inspect and manipulate a Path based on a Package name LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Moose>=0.64:devel/p5-Moose \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Moose>=0.64:devel/p5-Moose \ p5-MooseX-Types-Path-Class>=0.04:devel/p5-MooseX-Types-Path-Class -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USE_PERL5= configure diff --git a/devel/p5-Devel-PartialDump/Makefile b/devel/p5-Devel-PartialDump/Makefile index dc046fd2197..397e1040db5 100644 --- a/devel/p5-Devel-PartialDump/Makefile +++ b/devel/p5-Devel-PartialDump/Makefile @@ -14,10 +14,10 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENCE -BUILD_DEPENDS= p5-Class-Tiny>=0:devel/p5-Class-Tiny \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Tiny>=0:devel/p5-Class-Tiny \ p5-Sub-Exporter>=0:devel/p5-Sub-Exporter \ p5-namespace-clean>=0.20:devel/p5-namespace-clean -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Warnings>=0.009:devel/p5-Test-Warnings NO_ARCH= yes diff --git a/devel/p5-Devel-PatchPerl/Makefile b/devel/p5-Devel-PatchPerl/Makefile index 4f0ef700849..5ba2feb7d92 100644 --- a/devel/p5-Devel-PatchPerl/Makefile +++ b/devel/p5-Devel-PatchPerl/Makefile @@ -14,9 +14,9 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-File-pushd>=1:devel/p5-File-pushd \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-File-pushd>=1:devel/p5-File-pushd \ p5-Module-Pluggable>=0:devel/p5-Module-Pluggable -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/devel/p5-Devel-REPL/Makefile b/devel/p5-Devel-REPL/Makefile index fe3160defbf..b815e9cce0b 100644 --- a/devel/p5-Devel-REPL/Makefile +++ b/devel/p5-Devel-REPL/Makefile @@ -15,7 +15,8 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENCE -BUILD_DEPENDS= p5-Moose>=0.93:devel/p5-Moose \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Moose>=0.93:devel/p5-Moose \ p5-MooseX-Object-Pluggable>=0.0009:devel/p5-MooseX-Object-Pluggable \ p5-MooseX-Getopt>=0.18:devel/p5-MooseX-Getopt \ p5-namespace-autoclean>0:devel/p5-namespace-autoclean \ @@ -31,7 +32,6 @@ BUILD_DEPENDS= p5-Moose>=0.93:devel/p5-Moose \ p5-Module-Refresh>0:devel/p5-Module-Refresh \ p5-Module-Runtime>0:devel/p5-Module-Runtime \ p5-Sys-SigAction>0:devel/p5-Sys-SigAction -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/devel/p5-Devel-Size-Report/Makefile b/devel/p5-Devel-Size-Report/Makefile index fe2fc94e213..2d7feb312f6 100644 --- a/devel/p5-Devel-Size-Report/Makefile +++ b/devel/p5-Devel-Size-Report/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= ports@FreeBSD.org COMMENT= Extension to generate a size report for all elements in a structure -BUILD_DEPENDS= p5-Array-RefElem>=1.00:misc/p5-Array-RefElem \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Array-RefElem>=1.00:misc/p5-Array-RefElem \ p5-Devel-Size>=0.69:devel/p5-Devel-Size -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Devel-StealthDebug/Makefile b/devel/p5-Devel-StealthDebug/Makefile index ed8d98fab22..996c9ee5b41 100644 --- a/devel/p5-Devel-StealthDebug/Makefile +++ b/devel/p5-Devel-StealthDebug/Makefile @@ -14,8 +14,8 @@ COMMENT= Simple non-intrusive debug module LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Filter-Simple>=0:textproc/p5-Filter-Simple -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Filter-Simple>=0:textproc/p5-Filter-Simple USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Device-USB/Makefile b/devel/p5-Device-USB/Makefile index e43a0b2f9eb..c2298301e69 100644 --- a/devel/p5-Device-USB/Makefile +++ b/devel/p5-Device-USB/Makefile @@ -13,9 +13,9 @@ COMMENT= Perl wrapper for libusb LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Inline>=0:devel/p5-Inline \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Inline>=0:devel/p5-Inline \ p5-Inline-C>=0:devel/p5-Inline-C -RUN_DEPENDS:= ${BUILD_DEPENDS} MAKE_JOBS_UNSAFE=yes USES= perl5 diff --git a/devel/p5-Directory-Scratch-Structured/Makefile b/devel/p5-Directory-Scratch-Structured/Makefile index 88497fabccc..92f5eca696d 100644 --- a/devel/p5-Directory-Scratch-Structured/Makefile +++ b/devel/p5-Directory-Scratch-Structured/Makefile @@ -14,12 +14,12 @@ COMMENT= Creates temporary files and directories from a structured description LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Readonly>=0:devel/p5-Readonly \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Readonly>=0:devel/p5-Readonly \ p5-Sub-Exporter>=0:devel/p5-Sub-Exporter \ p5-Sub-Install>=0:devel/p5-Sub-Install \ p5-Data-TreeDumper>=0:devel/p5-Data-TreeDumper \ p5-Directory-Scratch>=0:devel/p5-Directory-Scratch -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Exception>=0:devel/p5-Test-Exception \ p5-Test-NoWarnings>=0:devel/p5-Test-NoWarnings \ p5-Test-Strict>=0:devel/p5-Test-Strict \ diff --git a/devel/p5-Dist-Zilla/Makefile b/devel/p5-Dist-Zilla/Makefile index 3eeb590a9ca..5423ee3756d 100644 --- a/devel/p5-Dist-Zilla/Makefile +++ b/devel/p5-Dist-Zilla/Makefile @@ -13,7 +13,8 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-App-Cmd>=0.330:devel/p5-App-Cmd \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-App-Cmd>=0.330:devel/p5-App-Cmd \ p5-CPAN-Uploader>=0.103004:devel/p5-CPAN-Uploader \ p5-Class-Load>=0.17:devel/p5-Class-Load \ p5-Config-MVP>=2.200011:devel/p5-Config-MVP \ @@ -54,7 +55,6 @@ BUILD_DEPENDS= p5-App-Cmd>=0.330:devel/p5-App-Cmd \ p5-Try-Tiny>=0:lang/p5-Try-Tiny \ p5-YAML-Tiny>=0:textproc/p5-YAML-Tiny \ p5-namespace-autoclean>=0:devel/p5-namespace-autoclean -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-CPAN-Meta-Check>=0.011:devel/p5-CPAN-Meta-Check \ p5-Test-Deep>=0:devel/p5-Test-Deep \ p5-Test-FailWarnings>=0:devel/p5-Test-FailWarnings \ @@ -68,7 +68,8 @@ USE_PERL5= configure .include .if ${PERL_LEVEL} < 502501 -BUILD_DEPENDS+= p5-Scalar-List-Utils>=1.45:lang/p5-Scalar-List-Utils +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS+= p5-Scalar-List-Utils>=1.45:lang/p5-Scalar-List-Utils RUN_DEPENDS+= p5-Scalar-List-Utils>=1.45:lang/p5-Scalar-List-Utils .endif diff --git a/devel/p5-Eval-Context/Makefile b/devel/p5-Eval-Context/Makefile index 2d1f7277959..47663fe7e97 100644 --- a/devel/p5-Eval-Context/Makefile +++ b/devel/p5-Eval-Context/Makefile @@ -15,12 +15,12 @@ COMMENT= Evaluate Perl code in context wrapper LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Package-Generator>=0:devel/p5-Package-Generator \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Package-Generator>=0:devel/p5-Package-Generator \ p5-Directory-Scratch-Structured>=0:devel/p5-Directory-Scratch-Structured \ p5-Data-TreeDumper>=0:devel/p5-Data-TreeDumper \ p5-Data-Compare>=0:devel/p5-Data-Compare \ p5-File-Slurp>=0:devel/p5-File-Slurp -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-NoWarnings>=0:devel/p5-Test-NoWarnings \ p5-Test-Output>=0:devel/p5-Test-Output \ p5-Test-Warn>=0:devel/p5-Test-Warn diff --git a/devel/p5-Event-ExecFlow/Makefile b/devel/p5-Event-ExecFlow/Makefile index c809d9aa36f..68e8e78b84b 100644 --- a/devel/p5-Event-ExecFlow/Makefile +++ b/devel/p5-Event-ExecFlow/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= API for complex flow controls with asynchronous execution of external programs -BUILD_DEPENDS= p5-AnyEvent>=0:devel/p5-AnyEvent \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-AnyEvent>=0:devel/p5-AnyEvent \ p5-Locale-libintl>=0:devel/p5-Locale-libintl -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Event-Join/Makefile b/devel/p5-Event-Join/Makefile index fa78c27d1a4..05f315d5a2d 100644 --- a/devel/p5-Event-Join/Makefile +++ b/devel/p5-Event-Join/Makefile @@ -14,8 +14,8 @@ COMMENT= Join multiple "events" into one LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Moose>=0.94:devel/p5-Moose -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Moose>=0.94:devel/p5-Moose TEST_DEPENDS= p5-Test-Exception>0:devel/p5-Test-Exception NO_ARCH= yes diff --git a/devel/p5-Every/Makefile b/devel/p5-Every/Makefile index 02676b1dac3..9760d5238cb 100644 --- a/devel/p5-Every/Makefile +++ b/devel/p5-Every/Makefile @@ -12,8 +12,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Return true every N cycles or S seconds -BUILD_DEPENDS= p5-Devel-Callsite>=0.04:devel/p5-Devel-Callsite -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Devel-Callsite>=0.04:devel/p5-Devel-Callsite USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Expect-Simple/Makefile b/devel/p5-Expect-Simple/Makefile index 9fa65b62c50..3731d69ac24 100644 --- a/devel/p5-Expect-Simple/Makefile +++ b/devel/p5-Expect-Simple/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Wrapper around the Expect module -BUILD_DEPENDS= p5-Expect>=0:lang/p5-Expect -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Expect>=0:lang/p5-Expect USES= perl5 USE_PERL5= configure diff --git a/devel/p5-ExtUtils-CChecker/Makefile b/devel/p5-ExtUtils-CChecker/Makefile index 08f1c03992e..97bdfef346c 100644 --- a/devel/p5-ExtUtils-CChecker/Makefile +++ b/devel/p5-ExtUtils-CChecker/Makefile @@ -15,8 +15,8 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Module-Build>=0:devel/p5-Module-Build -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Module-Build>=0:devel/p5-Module-Build TEST_DEPENDS= p5-Test-Fatal>=0:devel/p5-Test-Fatal NO_ARCH= yes diff --git a/devel/p5-ExtUtils-CppGuess/Makefile b/devel/p5-ExtUtils-CppGuess/Makefile index 4acd252130a..fbff2c17286 100644 --- a/devel/p5-ExtUtils-CppGuess/Makefile +++ b/devel/p5-ExtUtils-CppGuess/Makefile @@ -13,8 +13,8 @@ COMMENT= Guess C++ compiler and flags LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Capture-Tiny>=0:devel/p5-Capture-Tiny -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Capture-Tiny>=0:devel/p5-Capture-Tiny NO_ARCH= yes USE_PERL5= configure diff --git a/devel/p5-ExtUtils-MakeMaker-Coverage/Makefile b/devel/p5-ExtUtils-MakeMaker-Coverage/Makefile index 56bcb759ed0..bdb51cee061 100644 --- a/devel/p5-ExtUtils-MakeMaker-Coverage/Makefile +++ b/devel/p5-ExtUtils-MakeMaker-Coverage/Makefile @@ -14,9 +14,9 @@ COMMENT= Add a Makefile target to determine test coverage using Devel::Cover LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Devel-Cover>=0:devel/p5-Devel-Cover \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Devel-Cover>=0:devel/p5-Devel-Cover \ p5-Object-Accessor>=0:devel/p5-Object-Accessor -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-FSA-Rules/Makefile b/devel/p5-FSA-Rules/Makefile index ac88255bdb9..e8173e54f13 100644 --- a/devel/p5-FSA-Rules/Makefile +++ b/devel/p5-FSA-Rules/Makefile @@ -14,9 +14,9 @@ COMMENT= Build simple rules-based state machines in Perl LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-GraphViz>=2:graphics/p5-GraphViz \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-GraphViz>=2:graphics/p5-GraphViz \ p5-Text-Tabs+Wrap>=0:textproc/p5-Text-Tabs+Wrap -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-File-Attributes-Recursive/Makefile b/devel/p5-File-Attributes-Recursive/Makefile index 120af826e10..c4a4f1ce9c8 100644 --- a/devel/p5-File-Attributes-Recursive/Makefile +++ b/devel/p5-File-Attributes-Recursive/Makefile @@ -11,10 +11,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Inherit file attributes from parent directories -BUILD_DEPENDS= p5-Directory-Scratch>=0:devel/p5-Directory-Scratch \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Directory-Scratch>=0:devel/p5-Directory-Scratch \ p5-Path-Class>=0:devel/p5-Path-Class \ p5-File-Attributes>=0:devel/p5-File-Attributes -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-File-Attributes/Makefile b/devel/p5-File-Attributes/Makefile index 7278298d42d..ae5f10b393a 100644 --- a/devel/p5-File-Attributes/Makefile +++ b/devel/p5-File-Attributes/Makefile @@ -11,11 +11,11 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= File::Attributes - Manipulate file metadata -BUILD_DEPENDS= p5-YAML>=0:textproc/p5-YAML \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-YAML>=0:textproc/p5-YAML \ p5-Directory-Scratch>=0:devel/p5-Directory-Scratch \ p5-Best>=0:devel/p5-Best \ p5-YAML-Syck>0:textproc/p5-YAML-Syck -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-File-BOM/Makefile b/devel/p5-File-BOM/Makefile index 53765763a7e..8d728cc460e 100644 --- a/devel/p5-File-BOM/Makefile +++ b/devel/p5-File-BOM/Makefile @@ -13,9 +13,9 @@ COMMENT= Perl module to handle Unicode byte order marks LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Readonly>=0:devel/p5-Readonly \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Readonly>=0:devel/p5-Readonly \ p5-Test-Exception>=0:devel/p5-Test-Exception -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Exception>=0:devel/p5-Test-Exception USES= perl5 diff --git a/devel/p5-File-BaseDir/Makefile b/devel/p5-File-BaseDir/Makefile index 83bf166aefc..d0ca2d5524c 100644 --- a/devel/p5-File-BaseDir/Makefile +++ b/devel/p5-File-BaseDir/Makefile @@ -13,8 +13,8 @@ COMMENT= Use the freedesktop basedir spec LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-IPC-System-Simple>=0:devel/p5-IPC-System-Simple -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-IPC-System-Simple>=0:devel/p5-IPC-System-Simple TEST_DEPENDS= p5-File-Which>=0:sysutils/p5-File-Which \ p5-Test-Pod>=1.00:devel/p5-Test-Pod \ p5-Test-Pod-Coverage>=1.00:devel/p5-Test-Pod-Coverage diff --git a/devel/p5-File-Binary/Makefile b/devel/p5-File-Binary/Makefile index eb06ee24914..9406ce1a97d 100644 --- a/devel/p5-File-Binary/Makefile +++ b/devel/p5-File-Binary/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Perl interface to modify and read binary files -BUILD_DEPENDS= p5-IO-stringy>=0:devel/p5-IO-stringy -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-IO-stringy>=0:devel/p5-IO-stringy USES= perl5 USE_PERL5= configure diff --git a/devel/p5-File-ConfigDir/Makefile b/devel/p5-File-ConfigDir/Makefile index 67355fd453c..706c3866a30 100644 --- a/devel/p5-File-ConfigDir/Makefile +++ b/devel/p5-File-ConfigDir/Makefile @@ -13,11 +13,11 @@ COMMENT= Get directories of configuration files LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-File-HomeDir>=0.50:devel/p5-File-HomeDir \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-File-HomeDir>=0.50:devel/p5-File-HomeDir \ p5-List-MoreUtils>=0.419:lang/p5-List-MoreUtils \ p5-List-MoreUtils-XS>=0.418:lang/p5-List-MoreUtils-XS \ p5-local-lib>=1.008008:devel/p5-local-lib -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Without-Module>=0:devel/p5-Test-Without-Module NO_ARCH= yes diff --git a/devel/p5-File-CreationTime/Makefile b/devel/p5-File-CreationTime/Makefile index 3bcadea6136..4a60be1ecf1 100644 --- a/devel/p5-File-CreationTime/Makefile +++ b/devel/p5-File-CreationTime/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Keeps track of file creation times -BUILD_DEPENDS= p5-File-Attributes>=0:devel/p5-File-Attributes -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-File-Attributes>=0:devel/p5-File-Attributes USES= perl5 USE_PERL5= configure diff --git a/devel/p5-File-DesktopEntry/Makefile b/devel/p5-File-DesktopEntry/Makefile index 25a070cb182..21066f37220 100644 --- a/devel/p5-File-DesktopEntry/Makefile +++ b/devel/p5-File-DesktopEntry/Makefile @@ -13,8 +13,8 @@ COMMENT= Object to handle desktop files LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-File-BaseDir>=0.03:devel/p5-File-BaseDir -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-File-BaseDir>=0.03:devel/p5-File-BaseDir USES= perl5 USE_PERL5= configure diff --git a/devel/p5-File-Dir-Dumper/Makefile b/devel/p5-File-Dir-Dumper/Makefile index f4349708e75..88b9a970003 100644 --- a/devel/p5-File-Dir-Dumper/Makefile +++ b/devel/p5-File-Dir-Dumper/Makefile @@ -12,12 +12,12 @@ DISTNAME= ${PORTNAME}-v${PORTVERSION} MAINTAINER= tolid@tolid.eu.org COMMENT= Perl5 module to dump directory structures meta-data -BUILD_DEPENDS= p5-File-Find-Object>0:devel/p5-File-Find-Object \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-File-Find-Object>0:devel/p5-File-Find-Object \ p5-IO-String>0:devel/p5-IO-String \ p5-JSON>0:converters/p5-JSON \ p5-Class-Accessor>0:devel/p5-Class-Accessor \ p5-Devel-CheckOS>0:devel/p5-Devel-CheckOS -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= modbuild diff --git a/devel/p5-File-Find-Rule-Filesys-Virtual/Makefile b/devel/p5-File-Find-Rule-Filesys-Virtual/Makefile index b9217c02e02..e273ee85073 100644 --- a/devel/p5-File-Find-Rule-Filesys-Virtual/Makefile +++ b/devel/p5-File-Find-Rule-Filesys-Virtual/Makefile @@ -14,10 +14,10 @@ COMMENT= File::Find::Rule adapted to Filesys::Virtual LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-File-Find-Rule>=0:devel/p5-File-Find-Rule \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-File-Find-Rule>=0:devel/p5-File-Find-Rule \ p5-Filesys-Virtual>=0:devel/p5-Filesys-Virtual \ p5-Filesys-Virtual-Plain>=0:devel/p5-Filesys-Virtual-Plain -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USE_PERL5= configure diff --git a/devel/p5-File-Find-Rule-VCS/Makefile b/devel/p5-File-Find-Rule-VCS/Makefile index 0cf133e8d7c..5699966596e 100644 --- a/devel/p5-File-Find-Rule-VCS/Makefile +++ b/devel/p5-File-Find-Rule-VCS/Makefile @@ -14,9 +14,9 @@ COMMENT= Exclude files and directories for Version Control Systems LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-File-Find-Rule>=0.20:devel/p5-File-Find-Rule \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-File-Find-Rule>=0.20:devel/p5-File-Find-Rule \ p5-Text-Glob>=0.08:textproc/p5-Text-Glob -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-File-Flat/Makefile b/devel/p5-File-Flat/Makefile index 700271ff7be..52db4a8d2cb 100644 --- a/devel/p5-File-Flat/Makefile +++ b/devel/p5-File-Flat/Makefile @@ -11,12 +11,12 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Implements a flat filesystem -BUILD_DEPENDS= p5-File-NCopy>=0:devel/p5-File-NCopy \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-File-NCopy>=0:devel/p5-File-NCopy \ p5-File-Copy-Recursive>=0:devel/p5-File-Copy-Recursive \ p5-File-Remove>=0:devel/p5-File-Remove \ p5-Class-Autouse>=0:devel/p5-Class-Autouse \ p5-prefork>=0:devel/p5-prefork -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-ClassAPI>=0:devel/p5-Test-ClassAPI USES= perl5 diff --git a/devel/p5-File-Flock/Makefile b/devel/p5-File-Flock/Makefile index 571fd209b73..eff5d8400ee 100644 --- a/devel/p5-File-Flock/Makefile +++ b/devel/p5-File-Flock/Makefile @@ -14,10 +14,10 @@ COMMENT= Perl5 module for file locking with flock LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-AnyEvent>=0:devel/p5-AnyEvent \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-AnyEvent>=0:devel/p5-AnyEvent \ p5-Data-Structure-Util>=0:devel/p5-Data-Structure-Util \ p5-IO-Event>=0.812:devel/p5-IO-Event -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-File-Slurp>=0:devel/p5-File-Slurp \ p5-Test-SharedFork>=0:devel/p5-Test-SharedFork diff --git a/devel/p5-File-HomeDir-PathClass/Makefile b/devel/p5-File-HomeDir-PathClass/Makefile index 5e832aac4af..7bcb6b6d849 100644 --- a/devel/p5-File-HomeDir-PathClass/Makefile +++ b/devel/p5-File-HomeDir-PathClass/Makefile @@ -13,10 +13,10 @@ COMMENT= File::HomeDir returning Path::Class objects LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-File-HomeDir>=0.93:devel/p5-File-HomeDir \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-File-HomeDir>=0.93:devel/p5-File-HomeDir \ p5-Path-Class>=0:devel/p5-Path-Class \ p5-Sub-Exporter>=0:devel/p5-Sub-Exporter -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USE_PERL5= modbuild diff --git a/devel/p5-File-Map/Makefile b/devel/p5-File-Map/Makefile index 27cf10821f0..87f6a04b9b8 100644 --- a/devel/p5-File-Map/Makefile +++ b/devel/p5-File-Map/Makefile @@ -13,9 +13,9 @@ COMMENT= Memory mapping made simple and safe LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-PerlIO-Layers>=0:devel/p5-PerlIO-Layers \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-PerlIO-Layers>=0:devel/p5-PerlIO-Layers \ p5-Sub-Exporter-Progressive>=0.001005:devel/p5-Sub-Exporter-Progressive -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Exception>=0:devel/p5-Test-Exception \ p5-Test-Fatal>=0:devel/p5-Test-Fatal \ p5-Test-Warnings>=0:devel/p5-Test-Warnings diff --git a/devel/p5-File-MimeInfo/Makefile b/devel/p5-File-MimeInfo/Makefile index 191eb5b82e3..a583a18cb16 100644 --- a/devel/p5-File-MimeInfo/Makefile +++ b/devel/p5-File-MimeInfo/Makefile @@ -13,9 +13,9 @@ COMMENT= Determine file type LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-File-BaseDir>=0.03:devel/p5-File-BaseDir \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-File-BaseDir>=0.03:devel/p5-File-BaseDir \ p5-File-DesktopEntry>=0.04:devel/p5-File-DesktopEntry -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USE_PERL5= configure diff --git a/devel/p5-File-Modified/Makefile b/devel/p5-File-Modified/Makefile index 7f346e2c0ac..b9c675acc5b 100644 --- a/devel/p5-File-Modified/Makefile +++ b/devel/p5-File-Modified/Makefile @@ -13,8 +13,8 @@ COMMENT= Perl module for checking intelligently if files have changed LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Digest-SHA1>=0:security/p5-Digest-SHA1 -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Digest-SHA1>=0:security/p5-Digest-SHA1 NO_ARCH= yes USES= perl5 diff --git a/devel/p5-File-Pid/Makefile b/devel/p5-File-Pid/Makefile index 49887fb0ef8..2f3243d49a3 100644 --- a/devel/p5-File-Pid/Makefile +++ b/devel/p5-File-Pid/Makefile @@ -14,8 +14,8 @@ COMMENT= Pid File Manipulation LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Class-Accessor>=0:devel/p5-Class-Accessor -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Accessor>=0:devel/p5-Class-Accessor NO_ARCH= yes USE_PERL5= configure diff --git a/devel/p5-File-Policy/Makefile b/devel/p5-File-Policy/Makefile index 3f8896551f7..6d2460244b3 100644 --- a/devel/p5-File-Policy/Makefile +++ b/devel/p5-File-Policy/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Simple policy for file I/O functions -BUILD_DEPENDS= p5-Log-Trace>0:devel/p5-Log-Trace \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Log-Trace>0:devel/p5-Log-Trace \ p5-File-Slurp>0:devel/p5-File-Slurp -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Assertions>0:devel/p5-Test-Assertions USES= perl5 diff --git a/devel/p5-File-Random/Makefile b/devel/p5-File-Random/Makefile index 398caf4bc76..92b7c7e82df 100644 --- a/devel/p5-File-Random/Makefile +++ b/devel/p5-File-Random/Makefile @@ -13,9 +13,9 @@ COMMENT= Perl module for random selecting of a file LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Set-Scalar>0:devel/p5-Set-Scalar \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Set-Scalar>0:devel/p5-Set-Scalar \ p5-Want>=0:devel/p5-Want -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Class>=0.03:devel/p5-Test-Class \ p5-Test-Differences>=0.43:devel/p5-Test-Differences \ p5-Test-Exception>0.1:devel/p5-Test-Exception \ diff --git a/devel/p5-File-SearchPath/Makefile b/devel/p5-File-SearchPath/Makefile index c07ad6bdb45..fa86670e8a4 100644 --- a/devel/p5-File-SearchPath/Makefile +++ b/devel/p5-File-SearchPath/Makefile @@ -11,8 +11,8 @@ COMMENT= Search for a file in an environment variable path LICENSE= GPLv2 -BUILD_DEPENDS= p5-Env-Path>=0:devel/p5-Env-Path -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Env-Path>=0:devel/p5-Env-Path USES= perl5 USE_PERL5= modbuild diff --git a/devel/p5-File-Share/Makefile b/devel/p5-File-Share/Makefile index 03dc1503882..a2279eefc45 100644 --- a/devel/p5-File-Share/Makefile +++ b/devel/p5-File-Share/Makefile @@ -14,8 +14,8 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-File-ShareDir>=1.03:devel/p5-File-ShareDir -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-File-ShareDir>=1.03:devel/p5-File-ShareDir NO_ARCH= yes USE_PERL5= configure diff --git a/devel/p5-File-ShareDir-PAR/Makefile b/devel/p5-File-ShareDir-PAR/Makefile index 87eb8d0c5c9..7fb7d3751bd 100644 --- a/devel/p5-File-ShareDir-PAR/Makefile +++ b/devel/p5-File-ShareDir-PAR/Makefile @@ -14,11 +14,11 @@ COMMENT= Perl5 File::ShareDir module with PAR support LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Class-Inspector>=0:devel/p5-Class-Inspector \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Inspector>=0:devel/p5-Class-Inspector \ p5-File-ShareDir>=0:devel/p5-File-ShareDir \ p5-PAR>=0:devel/p5-PAR \ p5-Params-Util>=0:devel/p5-Params-Util -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-File-ShareDir-PathClass/Makefile b/devel/p5-File-ShareDir-PathClass/Makefile index 9be5ca903c8..8070eeff128 100644 --- a/devel/p5-File-ShareDir-PathClass/Makefile +++ b/devel/p5-File-ShareDir-PathClass/Makefile @@ -11,10 +11,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= wen@FreeBSD.org COMMENT= File::ShareDir returning Path::Class objects -BUILD_DEPENDS= p5-File-ShareDir>=0:devel/p5-File-ShareDir \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-File-ShareDir>=0:devel/p5-File-ShareDir \ p5-Path-Class>=0:devel/p5-Path-Class \ p5-Sub-Exporter>=0:devel/p5-Sub-Exporter -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= modbuild diff --git a/devel/p5-File-Slurp-Tree/Makefile b/devel/p5-File-Slurp-Tree/Makefile index 22696975fb6..053ac932d1c 100644 --- a/devel/p5-File-Slurp-Tree/Makefile +++ b/devel/p5-File-Slurp-Tree/Makefile @@ -14,9 +14,9 @@ COMMENT= Slurp and emit file trees as nested hashes LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-File-Find-Rule>=0:devel/p5-File-Find-Rule \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-File-Find-Rule>=0:devel/p5-File-Find-Rule \ p5-File-Slurp>=0:devel/p5-File-Slurp -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USE_PERL5= configure diff --git a/devel/p5-File-Tail-Scribe/Makefile b/devel/p5-File-Tail-Scribe/Makefile index 0d560f0bcd2..38e0eaf4050 100644 --- a/devel/p5-File-Tail-Scribe/Makefile +++ b/devel/p5-File-Tail-Scribe/Makefile @@ -14,10 +14,10 @@ COMMENT= Perl Module to tail file to Scribe server LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-File-Tail-Dir>=0:devel/p5-File-Tail-Dir \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-File-Tail-Dir>=0:devel/p5-File-Tail-Dir \ p5-Log-Dispatch-Scribe>=0:devel/p5-Log-Dispatch-Scribe \ p5-Moose>=0:devel/p5-Moose -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-MockObject>=0:devel/p5-Test-MockObject USES= perl5 diff --git a/devel/p5-File-Write-Rotate/Makefile b/devel/p5-File-Write-Rotate/Makefile index 06402a1696f..2d5c9911936 100644 --- a/devel/p5-File-Write-Rotate/Makefile +++ b/devel/p5-File-Write-Rotate/Makefile @@ -14,9 +14,9 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-File-Flock-Retry>=0:devel/p5-File-Flock-Retry \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-File-Flock-Retry>=0:devel/p5-File-Flock-Retry \ p5-Proc-PID-File>=0:devel/p5-Proc-PID-File -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-File-Slurper>=0:devel/p5-File-Slurper \ p5-File-chdir>=0:devel/p5-File-chdir \ p5-Taint-Runtime>=0:devel/p5-Taint-Runtime \ diff --git a/devel/p5-Filesys-Virtual-Plain/Makefile b/devel/p5-Filesys-Virtual-Plain/Makefile index cc3b2b1a36e..a62b8d5151e 100644 --- a/devel/p5-Filesys-Virtual-Plain/Makefile +++ b/devel/p5-Filesys-Virtual-Plain/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Plain virtual filesystem -BUILD_DEPENDS= p5-Filesys-Virtual>=0.05:devel/p5-Filesys-Virtual -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Filesys-Virtual>=0.05:devel/p5-Filesys-Virtual USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Filter-Template/Makefile b/devel/p5-Filter-Template/Makefile index caa56a9e563..9dfa766f11b 100644 --- a/devel/p5-Filter-Template/Makefile +++ b/devel/p5-Filter-Template/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Source filter for inline code templates (macros) -BUILD_DEPENDS= p5-Filter>=0:devel/p5-Filter -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Filter>=0:devel/p5-Filter USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Forest/Makefile b/devel/p5-Forest/Makefile index f2e18877e9e..30e7076fcc6 100644 --- a/devel/p5-Forest/Makefile +++ b/devel/p5-Forest/Makefile @@ -15,9 +15,9 @@ COMMENT= Collection of n-ary tree related modules LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Moose>=2:devel/p5-Moose \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Moose>=2:devel/p5-Moose \ p5-MooseX-Clone>=0.05:devel/p5-MooseX-Clone -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Path-Class>=0:devel/p5-Path-Class \ p5-Test-Exception>=0:devel/p5-Test-Exception diff --git a/devel/p5-Form-Sensible/Makefile b/devel/p5-Form-Sensible/Makefile index 46960de55e7..d2df3510bcd 100644 --- a/devel/p5-Form-Sensible/Makefile +++ b/devel/p5-Form-Sensible/Makefile @@ -13,14 +13,14 @@ COMMENT= Sensible way to handle form based user interface LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-DateTime>=0:devel/p5-DateTime \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-DateTime>=0:devel/p5-DateTime \ p5-DateTime-Format-Natural>=0:devel/p5-DateTime-Format-Natural \ p5-DateTime-Set>=0:devel/p5-DateTime-Set \ p5-File-ShareDir>=0:devel/p5-File-ShareDir \ p5-Moose>=2:devel/p5-Moose \ p5-Template-Toolkit>=0:www/p5-Template-Toolkit \ p5-namespace-autoclean>=0:devel/p5-namespace-autoclean -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USE_PERL5= configure diff --git a/devel/p5-Geo-JSON/Makefile b/devel/p5-Geo-JSON/Makefile index f1b7c50a524..9ff2e43b66c 100644 --- a/devel/p5-Geo-JSON/Makefile +++ b/devel/p5-Geo-JSON/Makefile @@ -13,10 +13,10 @@ COMMENT= Perl OO interface for geojson LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-JSON>=0:converters/p5-JSON \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-JSON>=0:converters/p5-JSON \ p5-Moo>=1.004003:devel/p5-Moo \ p5-Type-Tiny>=0:devel/p5-Type-Tiny -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Class-Load>=0:devel/p5-Class-Load \ p5-Path-Class>=0:devel/p5-Path-Class \ p5-Test-Fatal>=0:devel/p5-Test-Fatal \ diff --git a/devel/p5-Geo-ShapeFile/Makefile b/devel/p5-Geo-ShapeFile/Makefile index 7f791022a2f..768265d47ad 100644 --- a/devel/p5-Geo-ShapeFile/Makefile +++ b/devel/p5-Geo-ShapeFile/Makefile @@ -13,9 +13,9 @@ COMMENT= Extension for handling ESRI GIS Shapefiles LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Tree-R>0:devel/p5-Tree-R \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Tree-R>0:devel/p5-Tree-R \ p5-autovivification>0:devel/p5-autovivification -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= dos2unix perl5 diff --git a/devel/p5-Getargs-Long/Makefile b/devel/p5-Getargs-Long/Makefile index 51781346de0..b3a1d826fe6 100644 --- a/devel/p5-Getargs-Long/Makefile +++ b/devel/p5-Getargs-Long/Makefile @@ -13,9 +13,9 @@ COMMENT= Parse routine arguments LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Log-Agent>=0.105:devel/p5-Log-Agent \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Log-Agent>=0.105:devel/p5-Log-Agent \ p5-URI>=0:net/p5-URI -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Compile>=0:devel/p5-Test-Compile USES= perl5 diff --git a/devel/p5-Getopt-Compact-WithCmd/Makefile b/devel/p5-Getopt-Compact-WithCmd/Makefile index 95f622c39f0..1f00160c2c3 100644 --- a/devel/p5-Getopt-Compact-WithCmd/Makefile +++ b/devel/p5-Getopt-Compact-WithCmd/Makefile @@ -14,8 +14,8 @@ COMMENT= Sub-command friendly, like Getopt::Compact LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Text-Table>=0:textproc/p5-Text-Table -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Text-Table>=0:textproc/p5-Text-Table TEST_DEPENDS= p5-Test-Output>=0:devel/p5-Test-Output \ p5-Test-Requires>=0:devel/p5-Test-Requires diff --git a/devel/p5-Getopt-Long-Descriptive/Makefile b/devel/p5-Getopt-Long-Descriptive/Makefile index 82ce4ecad85..12e061d99fa 100644 --- a/devel/p5-Getopt-Long-Descriptive/Makefile +++ b/devel/p5-Getopt-Long-Descriptive/Makefile @@ -14,9 +14,9 @@ COMMENT= Getopt::Long with usage text LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Params-Validate>=0.97:devel/p5-Params-Validate \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Params-Validate>=0.97:devel/p5-Params-Validate \ p5-Sub-Exporter>=0.972:devel/p5-Sub-Exporter -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Fatal>=0:devel/p5-Test-Fatal \ p5-Test-Warnings>=0.005:devel/p5-Test-Warnings diff --git a/devel/p5-Git-PurePerl/Makefile b/devel/p5-Git-PurePerl/Makefile index c2771f7c83a..3bb152e593e 100644 --- a/devel/p5-Git-PurePerl/Makefile +++ b/devel/p5-Git-PurePerl/Makefile @@ -13,7 +13,8 @@ COMMENT= Pure Perl interface to Git repositories LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Archive-Extract>=0:archivers/p5-Archive-Extract \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Archive-Extract>=0:archivers/p5-Archive-Extract \ p5-Config-GitLike>=0:devel/p5-Config-GitLike \ p5-Data-Stream-Bulk>=0:devel/p5-Data-Stream-Bulk \ p5-DateTime>=0:devel/p5-DateTime \ @@ -23,7 +24,6 @@ BUILD_DEPENDS= p5-Archive-Extract>=0:archivers/p5-Archive-Extract \ p5-MooseX-StrictConstructor>=0:devel/p5-MooseX-StrictConstructor \ p5-MooseX-Types-Path-Class>=0:devel/p5-MooseX-Types-Path-Class \ p5-namespace-autoclean>=0:devel/p5-namespace-autoclean -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-utf8>=0:devel/p5-Test-utf8 USES= perl5 diff --git a/devel/p5-Git-Repository-Plugin-Log/Makefile b/devel/p5-Git-Repository-Plugin-Log/Makefile index 7c5b7eb49af..44e56202d13 100644 --- a/devel/p5-Git-Repository-Plugin-Log/Makefile +++ b/devel/p5-Git-Repository-Plugin-Log/Makefile @@ -14,8 +14,8 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Git-Repository>=1.309:devel/p5-Git-Repository -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Git-Repository>=1.309:devel/p5-Git-Repository TEST_DEPENDS= p5-Test-Requires-Git>=0:devel/p5-Test-Requires-Git NO_ARCH= yes diff --git a/devel/p5-Git-Repository/Makefile b/devel/p5-Git-Repository/Makefile index 02d64cd947d..0b920d69d02 100644 --- a/devel/p5-Git-Repository/Makefile +++ b/devel/p5-Git-Repository/Makefile @@ -14,11 +14,11 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= git:devel/git \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= git:devel/git \ p5-Git-Version-Compare>=1.001:devel/p5-Git-Version-Compare \ p5-System-Command>=1.118:devel/p5-System-Command \ p5-namespace-clean>=0:devel/p5-namespace-clean -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Requires-Git>=1.005:devel/p5-Test-Requires-Git NO_ARCH= yes diff --git a/devel/p5-Git-Sub/Makefile b/devel/p5-Git-Sub/Makefile index 9c17e3295fe..60eb880b655 100644 --- a/devel/p5-Git-Sub/Makefile +++ b/devel/p5-Git-Sub/Makefile @@ -13,9 +13,9 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-File-Which>=0:sysutils/p5-File-Which \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-File-Which>=0:sysutils/p5-File-Which \ p5-System-Sub>=0.162800:devel/p5-System-Sub -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/devel/p5-Glib2/Makefile b/devel/p5-Glib2/Makefile index a9fa2b13db1..e487c022e90 100644 --- a/devel/p5-Glib2/Makefile +++ b/devel/p5-Glib2/Makefile @@ -15,9 +15,9 @@ COMMENT= This module provides access to Glib and GObject libraries LICENSE= LGPL21 LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-ExtUtils-Depends>=0.300:devel/p5-ExtUtils-Depends \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-ExtUtils-Depends>=0.300:devel/p5-ExtUtils-Depends \ p5-ExtUtils-PkgConfig>=1:devel/p5-ExtUtils-PkgConfig -RUN_DEPENDS:= ${BUILD_DEPENDS} USE_GNOME= glib20 USES= perl5 diff --git a/devel/p5-Google-ProtocolBuffers/Makefile b/devel/p5-Google-ProtocolBuffers/Makefile index b7d06e4f20d..8dd7f7cf4d4 100644 --- a/devel/p5-Google-ProtocolBuffers/Makefile +++ b/devel/p5-Google-ProtocolBuffers/Makefile @@ -13,9 +13,9 @@ COMMENT= Simple interface to Google Protocol Buffers LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Class-Accessor>=0:devel/p5-Class-Accessor \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Accessor>=0:devel/p5-Class-Accessor \ p5-Parse-RecDescent>=1.94:devel/p5-Parse-RecDescent -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USE_PERL5= configure diff --git a/devel/p5-Gravatar-URL/Makefile b/devel/p5-Gravatar-URL/Makefile index 8e500ca0148..be510ed82af 100644 --- a/devel/p5-Gravatar-URL/Makefile +++ b/devel/p5-Gravatar-URL/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Make URLs for Gravatars from an email address -BUILD_DEPENDS= p5-Net-DNS>=0:dns/p5-Net-DNS \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Net-DNS>=0:dns/p5-Net-DNS \ p5-URI>=0:net/p5-URI -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Warn>=0:devel/p5-Test-Warn diff --git a/devel/p5-HOP-Lexer/Makefile b/devel/p5-HOP-Lexer/Makefile index 63c2a426d4e..46db460a281 100644 --- a/devel/p5-HOP-Lexer/Makefile +++ b/devel/p5-HOP-Lexer/Makefile @@ -12,8 +12,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= swills@FreeBSD.org COMMENT= Higher Order Perl Lexer -BUILD_DEPENDS= p5-HOP-Stream>=0.01:devel/p5-HOP-Stream -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HOP-Stream>=0.01:devel/p5-HOP-Stream USES= perl5 USE_PERL5= modbuild diff --git a/devel/p5-Hash-AutoHash-Args/Makefile b/devel/p5-Hash-AutoHash-Args/Makefile index 2e6cb692c5d..c8ff9b06137 100644 --- a/devel/p5-Hash-AutoHash-Args/Makefile +++ b/devel/p5-Hash-AutoHash-Args/Makefile @@ -14,8 +14,8 @@ COMMENT= Object-oriented processing of keyword-based argument lists LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Hash-AutoHash>=1.17:devel/p5-Hash-AutoHash -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Hash-AutoHash>=1.17:devel/p5-Hash-AutoHash TEST_DEPENDS= p5-Test-Deep>=0.110:devel/p5-Test-Deep \ p5-Test-Pod>=1.48:devel/p5-Test-Pod diff --git a/devel/p5-Hash-AutoHash/Makefile b/devel/p5-Hash-AutoHash/Makefile index c109e9d0559..2eb696852ca 100644 --- a/devel/p5-Hash-AutoHash/Makefile +++ b/devel/p5-Hash-AutoHash/Makefile @@ -14,9 +14,9 @@ COMMENT= Object-oriented access to real and tied hashes LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-List-MoreUtils>=0.33:lang/p5-List-MoreUtils \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-List-MoreUtils>=0.33:lang/p5-List-MoreUtils \ p5-Tie-ToObject>=0.03:devel/p5-Tie-ToObject -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Deep>=0.11:devel/p5-Test-Deep \ p5-Tie-Hash-MultiValue>=1.02:devel/p5-Tie-Hash-MultiValue diff --git a/devel/p5-Hash-Case/Makefile b/devel/p5-Hash-Case/Makefile index 5561b4655cf..454a64290e0 100644 --- a/devel/p5-Hash-Case/Makefile +++ b/devel/p5-Hash-Case/Makefile @@ -15,8 +15,8 @@ COMMENT= Base class for hashes with key-casing requirements LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Log-Report>=0.26:devel/p5-Log-Report -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Log-Report>=0.26:devel/p5-Log-Report NO_ARCH= yes USES= perl5 diff --git a/devel/p5-Hash-Objectify/Makefile b/devel/p5-Hash-Objectify/Makefile index da373653c57..764ba8a7b0e 100644 --- a/devel/p5-Hash-Objectify/Makefile +++ b/devel/p5-Hash-Objectify/Makefile @@ -13,8 +13,8 @@ COMMENT= Create objects from hashes on the fly LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Class-XSAccessor>=0:devel/p5-Class-XSAccessor -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-XSAccessor>=0:devel/p5-Class-XSAccessor TEST_DEPENDS= p5-Test-Fatal>=0:devel/p5-Test-Fatal NO_ARCH= yes diff --git a/devel/p5-Hash-Slice/Makefile b/devel/p5-Hash-Slice/Makefile index da6f5e0940b..95248d3b9e6 100644 --- a/devel/p5-Hash-Slice/Makefile +++ b/devel/p5-Hash-Slice/Makefile @@ -10,9 +10,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= ehaupt@FreeBSD.org COMMENT= Make a hash from a deep slice of another hash -BUILD_DEPENDS= p5-Carp-Clan>=0:devel/p5-Carp-Clan \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Carp-Clan>=0:devel/p5-Carp-Clan \ p5-Clone>=0.09:devel/p5-Clone -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Most>=0:devel/p5-Test-Most USES= perl5 diff --git a/devel/p5-Heap-Simple-Perl/Makefile b/devel/p5-Heap-Simple-Perl/Makefile index acd880705d5..43c1e5364db 100644 --- a/devel/p5-Heap-Simple-Perl/Makefile +++ b/devel/p5-Heap-Simple-Perl/Makefile @@ -14,8 +14,8 @@ COMMENT= Pure perl implementation of the Heap::Simple interface LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Heap-Simple>=0:devel/p5-Heap-Simple -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Heap-Simple>=0:devel/p5-Heap-Simple USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Heap-Simple-XS/Makefile b/devel/p5-Heap-Simple-XS/Makefile index 3e91400ca58..7e725b9f15c 100644 --- a/devel/p5-Heap-Simple-XS/Makefile +++ b/devel/p5-Heap-Simple-XS/Makefile @@ -14,8 +14,8 @@ COMMENT= XS implementation of the Heap::Simple interface LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Heap-Simple>=0:devel/p5-Heap-Simple -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Heap-Simple>=0:devel/p5-Heap-Simple USES= perl5 USE_PERL5= configure diff --git a/devel/p5-IO-All-LWP/Makefile b/devel/p5-IO-All-LWP/Makefile index d38206d82e0..6d4d8edb987 100644 --- a/devel/p5-IO-All-LWP/Makefile +++ b/devel/p5-IO-All-LWP/Makefile @@ -14,9 +14,9 @@ COMMENT= IO::All interface to LWP LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-IO-All>=0.30:devel/p5-IO-All \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-IO-All>=0.30:devel/p5-IO-All \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} USE_PERL5= configure USES= perl5 shebangfix diff --git a/devel/p5-IO-All/Makefile b/devel/p5-IO-All/Makefile index 30ac7e01a3e..6a8119c8e15 100644 --- a/devel/p5-IO-All/Makefile +++ b/devel/p5-IO-All/Makefile @@ -14,9 +14,9 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-File-ReadBackwards>=0:devel/p5-File-ReadBackwards \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-File-ReadBackwards>=0:devel/p5-File-ReadBackwards \ p5-IO-String>=1.08:devel/p5-IO-String -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-File-MimeInfo>=0:devel/p5-File-MimeInfo \ p5-MLDBM>=0:databases/p5-MLDBM diff --git a/devel/p5-IO-Any/Makefile b/devel/p5-IO-Any/Makefile index 4bc2c15f7bc..46a35947fc0 100644 --- a/devel/p5-IO-Any/Makefile +++ b/devel/p5-IO-Any/Makefile @@ -14,11 +14,11 @@ COMMENT= IO::Any opens anything LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-AnyEvent>=0:devel/p5-AnyEvent \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-AnyEvent>=0:devel/p5-AnyEvent \ p5-IO-String>=0:devel/p5-IO-String \ p5-IO-stringy>=0:devel/p5-IO-stringy \ p5-List-MoreUtils>=0:lang/p5-List-MoreUtils -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-File-Slurp>=0:devel/p5-File-Slurp \ p5-Test-Differences>=0:devel/p5-Test-Differences \ p5-Test-Distribution>=0:devel/p5-Test-Distribution \ diff --git a/devel/p5-IO-Async/Makefile b/devel/p5-IO-Async/Makefile index bd33aff7c2b..6a321627bfc 100644 --- a/devel/p5-IO-Async/Makefile +++ b/devel/p5-IO-Async/Makefile @@ -15,9 +15,9 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Future>=0.33:devel/p5-Future \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Future>=0.33:devel/p5-Future \ p5-Struct-Dumb>0:devel/p5-Struct-Dumb -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Fatal>=0:devel/p5-Test-Fatal \ p5-Test-Identity>=0:devel/p5-Test-Identity \ p5-Test-Pod>=1:devel/p5-Test-Pod \ diff --git a/devel/p5-IO-Digest/Makefile b/devel/p5-IO-Digest/Makefile index b5eaaf455a1..f895c93ff6a 100644 --- a/devel/p5-IO-Digest/Makefile +++ b/devel/p5-IO-Digest/Makefile @@ -14,8 +14,8 @@ COMMENT= Calculate digests while reading or writing LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-PerlIO-via-dynamic>=0:devel/p5-PerlIO-via-dynamic -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-PerlIO-via-dynamic>=0:devel/p5-PerlIO-via-dynamic USE_PERL5= configure USES= perl5 diff --git a/devel/p5-IO-Event/Makefile b/devel/p5-IO-Event/Makefile index 83a4365241e..8b073babed7 100644 --- a/devel/p5-IO-Event/Makefile +++ b/devel/p5-IO-Event/Makefile @@ -14,8 +14,8 @@ COMMENT= Tied Filehandles for Nonblocking IO with Object Callbacks LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-List-MoreUtils>=0:lang/p5-List-MoreUtils -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-List-MoreUtils>=0:lang/p5-List-MoreUtils TEST_DEPENDS= p5-AnyEvent>=0:devel/p5-AnyEvent OPTIONS_DEFINE= ANYEVENT EVENT diff --git a/devel/p5-IO-Pager/Makefile b/devel/p5-IO-Pager/Makefile index 8bd081427c8..30aba40bf7c 100644 --- a/devel/p5-IO-Pager/Makefile +++ b/devel/p5-IO-Pager/Makefile @@ -13,8 +13,8 @@ COMMENT= Select a pager, optionally pipe it output if destination is a TTY LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-File-Which>=0:sysutils/p5-File-Which -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-File-Which>=0:sysutils/p5-File-Which NO_ARCH= yes USE_PERL5= configure diff --git a/devel/p5-IO-Prompt/Makefile b/devel/p5-IO-Prompt/Makefile index e7844e56053..bb032c3a2ff 100644 --- a/devel/p5-IO-Prompt/Makefile +++ b/devel/p5-IO-Prompt/Makefile @@ -13,9 +13,9 @@ COMMENT= Interactively prompt for user input LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Term-ReadKey>0:devel/p5-Term-ReadKey \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Term-ReadKey>0:devel/p5-Term-ReadKey \ p5-Want>0:devel/p5-Want -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/devel/p5-IO-Prompter/Makefile b/devel/p5-IO-Prompter/Makefile index 0ef643f74dd..76ea156dc20 100644 --- a/devel/p5-IO-Prompter/Makefile +++ b/devel/p5-IO-Prompter/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= zi@FreeBSD.org COMMENT= Prompt for input, read it, clean it, return it -BUILD_DEPENDS= p5-Contextual-Return>0:devel/p5-Contextual-Return -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Contextual-Return>0:devel/p5-Contextual-Return USES= perl5 USE_PERL5= configure diff --git a/devel/p5-IO-Pty-Easy/Makefile b/devel/p5-IO-Pty-Easy/Makefile index 7a1616f0606..edd596da23d 100644 --- a/devel/p5-IO-Pty-Easy/Makefile +++ b/devel/p5-IO-Pty-Easy/Makefile @@ -14,8 +14,8 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-IO-Tty>=0:devel/p5-IO-Tty -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-IO-Tty>=0:devel/p5-IO-Tty NO_ARCH= yes USE_PERL5= configure diff --git a/devel/p5-IO-YAML/Makefile b/devel/p5-IO-YAML/Makefile index 1aafe87f724..0693de2883a 100644 --- a/devel/p5-IO-YAML/Makefile +++ b/devel/p5-IO-YAML/Makefile @@ -13,9 +13,9 @@ COMMENT= Read and write YAML streams incrementally LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-IO-stringy>=0:devel/p5-IO-stringy \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-IO-stringy>=0:devel/p5-IO-stringy \ p5-YAML-LibYAML>=0:textproc/p5-YAML-LibYAML -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= modbuild diff --git a/devel/p5-IOC/Makefile b/devel/p5-IOC/Makefile index 48c2645a9b8..85fcb5d8956 100644 --- a/devel/p5-IOC/Makefile +++ b/devel/p5-IOC/Makefile @@ -12,11 +12,11 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Lightweight IOC (Inversion of Control) framework -BUILD_DEPENDS= p5-Class-Throwable>=0:devel/p5-Class-Throwable \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Throwable>=0:devel/p5-Class-Throwable \ p5-XML-SAX>=0:textproc/p5-XML-SAX \ p5-Class-StrongSingleton>=0:devel/p5-Class-StrongSingleton \ p5-Class-Interfaces>=0:devel/p5-Class-Interfaces -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Exception>=0:devel/p5-Test-Exception USES= perl5 diff --git a/devel/p5-IPC-Cache/Makefile b/devel/p5-IPC-Cache/Makefile index 868ac7a70a4..9c6a3942aac 100644 --- a/devel/p5-IPC-Cache/Makefile +++ b/devel/p5-IPC-Cache/Makefile @@ -13,8 +13,8 @@ COMMENT= Persist data across processes via shared memory LICENSE= GPLv1 -BUILD_DEPENDS= p5-IPC-ShareLite>=0:devel/p5-IPC-ShareLite -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-IPC-ShareLite>=0:devel/p5-IPC-ShareLite USES= perl5 USE_PERL5= configure diff --git a/devel/p5-IPC-DirQueue/Makefile b/devel/p5-IPC-DirQueue/Makefile index bb2b013c525..e97e1a79995 100644 --- a/devel/p5-IPC-DirQueue/Makefile +++ b/devel/p5-IPC-DirQueue/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= IPC::DirQueue - disk-based many-to-many task queue -BUILD_DEPENDS= p5-POE>0:devel/p5-POE -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-POE>0:devel/p5-POE USES= perl5 USE_PERL5= configure diff --git a/devel/p5-IPC-Mmap-Share/Makefile b/devel/p5-IPC-Mmap-Share/Makefile index 9bac4bbf726..3280ca363de 100644 --- a/devel/p5-IPC-Mmap-Share/Makefile +++ b/devel/p5-IPC-Mmap-Share/Makefile @@ -14,8 +14,8 @@ COMMENT= Safely share structures among processes using anonymous mmap LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-IPC-Mmap>=0:devel/p5-IPC-Mmap -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-IPC-Mmap>=0:devel/p5-IPC-Mmap USE_PERL5= configure USES= perl5 diff --git a/devel/p5-IPC-PubSub/Makefile b/devel/p5-IPC-PubSub/Makefile index c45c21839a3..02ff41daae8 100644 --- a/devel/p5-IPC-PubSub/Makefile +++ b/devel/p5-IPC-PubSub/Makefile @@ -11,10 +11,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Interprocess Publish/Subscribe channels -BUILD_DEPENDS= p5-DBM-Deep>=1:databases/p5-DBM-Deep \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-DBM-Deep>=1:databases/p5-DBM-Deep \ p5-Class-Accessor>0:devel/p5-Class-Accessor \ p5-Data-UUID>0:devel/p5-Data-UUID -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-IPC-SharedCache/Makefile b/devel/p5-IPC-SharedCache/Makefile index 5f058c17fcc..e49019e7baa 100644 --- a/devel/p5-IPC-SharedCache/Makefile +++ b/devel/p5-IPC-SharedCache/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Perl module for managing a SysV IPC shared memory cache -BUILD_DEPENDS= p5-IPC-ShareLite>=0:devel/p5-IPC-ShareLite +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-IPC-ShareLite>=0:devel/p5-IPC-ShareLite -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-IPC-ShellCmd/Makefile b/devel/p5-IPC-ShellCmd/Makefile index 845b9edc696..09bf527478b 100644 --- a/devel/p5-IPC-ShellCmd/Makefile +++ b/devel/p5-IPC-ShellCmd/Makefile @@ -15,9 +15,9 @@ COMMENT= Run a command with a given environment and capture output LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-String-ShellQuote>=0:textproc/p5-String-ShellQuote \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-String-ShellQuote>=0:textproc/p5-String-ShellQuote \ sudo:security/sudo -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USE_PERL5= configure diff --git a/devel/p5-Import-Base/Makefile b/devel/p5-Import-Base/Makefile index 19b2639eeba..0b4eb4a92f7 100644 --- a/devel/p5-Import-Base/Makefile +++ b/devel/p5-Import-Base/Makefile @@ -15,9 +15,9 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Import-Into>=1.002005:devel/p5-Import-Into \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Import-Into>=1.002005:devel/p5-Import-Into \ p5-Module-Runtime>=0:devel/p5-Module-Runtime -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Dancer2-Plugin-Ajax>=0:www/p5-Dancer2-Plugin-Ajax \ p5-Dancer2>=0:www/p5-Dancer2 \ p5-Moo>=0:devel/p5-Moo diff --git a/devel/p5-Import-Into/Makefile b/devel/p5-Import-Into/Makefile index 3b94aee3e1a..446ac10b655 100644 --- a/devel/p5-Import-Into/Makefile +++ b/devel/p5-Import-Into/Makefile @@ -15,8 +15,8 @@ COMMENT= Import packages into other packages LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Module-Runtime>=0:devel/p5-Module-Runtime -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Module-Runtime>=0:devel/p5-Module-Runtime USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Inline-ASM/Makefile b/devel/p5-Inline-ASM/Makefile index 47343ef4bed..61246bcef54 100644 --- a/devel/p5-Inline-ASM/Makefile +++ b/devel/p5-Inline-ASM/Makefile @@ -14,8 +14,8 @@ COMMENT= Write Perl Subroutines in assembler LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Inline-C>=0.42:devel/p5-Inline-C -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Inline-C>=0.42:devel/p5-Inline-C USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Inline-Filters/Makefile b/devel/p5-Inline-Filters/Makefile index 601d1dcd28f..3411e9d95e0 100644 --- a/devel/p5-Inline-Filters/Makefile +++ b/devel/p5-Inline-Filters/Makefile @@ -14,9 +14,9 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Inline>=0.42:devel/p5-Inline \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Inline>=0.42:devel/p5-Inline \ p5-Inline-C>=0.76:devel/p5-Inline-C -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/devel/p5-Inline-Java/Makefile b/devel/p5-Inline-Java/Makefile index a2dac8869ef..de07ac7ef74 100644 --- a/devel/p5-Inline-Java/Makefile +++ b/devel/p5-Inline-Java/Makefile @@ -13,9 +13,9 @@ COMMENT= Write Perl subroutines and classes in Java LICENSE= ARTPERL10 -BUILD_DEPENDS= p5-Inline>=0.68:devel/p5-Inline \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Inline>=0.68:devel/p5-Inline \ p5-Inline-C>=0.62:devel/p5-Inline-C -RUN_DEPENDS:= ${BUILD_DEPENDS} USE_JAVA= yes JAVA_VERSION= 1.6+ diff --git a/devel/p5-Inline-Python/Makefile b/devel/p5-Inline-Python/Makefile index 16cd55d4e1d..cb6d88ad926 100644 --- a/devel/p5-Inline-Python/Makefile +++ b/devel/p5-Inline-Python/Makefile @@ -13,8 +13,8 @@ COMMENT= Write Perl Subroutines in Python LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Inline>=0.46:devel/p5-Inline -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Inline>=0.46:devel/p5-Inline TEST_DEPENDS= p5-Proc-ProcessTable>=0.53:devel/p5-Proc-ProcessTable \ p5-Test-Deep>=0:devel/p5-Test-Deep \ p5-Test-Number-Delta>=0:devel/p5-Test-Number-Delta diff --git a/devel/p5-Inline-TT/Makefile b/devel/p5-Inline-TT/Makefile index 00918d7f6e1..0b3e0cf8c38 100644 --- a/devel/p5-Inline-TT/Makefile +++ b/devel/p5-Inline-TT/Makefile @@ -14,9 +14,9 @@ COMMENT= Provides inline support for template toolkit 2.x LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Inline>=0.42:devel/p5-Inline \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Inline>=0.42:devel/p5-Inline \ p5-Template-Toolkit>=2:www/p5-Template-Toolkit -RUN_DEPENDS:= ${BUILD_DEPENDS} USE_PERL5= configure USES= perl5 diff --git a/devel/p5-Inline-Tcl/Makefile b/devel/p5-Inline-Tcl/Makefile index b7541f8c8c9..3c8a9361e38 100644 --- a/devel/p5-Inline-Tcl/Makefile +++ b/devel/p5-Inline-Tcl/Makefile @@ -13,8 +13,8 @@ COMMENT= Write Perl subroutines in Tcl LICENSE= ARTPERL10 -BUILD_DEPENDS= p5-Inline>=0:devel/p5-Inline -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Inline>=0:devel/p5-Inline USES= perl5 tcl USE_PERL5= configure diff --git a/devel/p5-InlineX-C2XS/Makefile b/devel/p5-InlineX-C2XS/Makefile index ed91f54b5dc..b7d2aa06caf 100644 --- a/devel/p5-InlineX-C2XS/Makefile +++ b/devel/p5-InlineX-C2XS/Makefile @@ -14,8 +14,8 @@ COMMENT= Perl module to create an XS file from an Inline C file LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Inline-C>=0.54:devel/p5-Inline-C -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Inline-C>=0.54:devel/p5-Inline-C TEST_DEPENDS= p5-Test-Warn>=0.23:devel/p5-Test-Warn NO_ARCH= yes diff --git a/devel/p5-InlineX-CPP2XS/Makefile b/devel/p5-InlineX-CPP2XS/Makefile index 73b8b4b04c1..d6876d49c03 100644 --- a/devel/p5-InlineX-CPP2XS/Makefile +++ b/devel/p5-InlineX-CPP2XS/Makefile @@ -14,9 +14,9 @@ COMMENT= Convert from Inline C++ code to XS LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Inline>=0.50:devel/p5-Inline \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Inline>=0.50:devel/p5-Inline \ p5-Inline-CPP>=0.39:devel/p5-Inline-CPP -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Warn>=0.24:devel/p5-Test-Warn NO_ARCH= yes diff --git a/devel/p5-Input-Validator/Makefile b/devel/p5-Input-Validator/Makefile index 267fa09ffbd..afd651d3b02 100644 --- a/devel/p5-Input-Validator/Makefile +++ b/devel/p5-Input-Validator/Makefile @@ -13,9 +13,9 @@ COMMENT= Input validator that just validates input LICENSE= ART20 -BUILD_DEPENDS= p5-Class-Load>=0:devel/p5-Class-Load \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Load>=0:devel/p5-Class-Load \ p5-String-CamelCase>=0:textproc/p5-String-CamelCase -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Iodef-Pb-Simple/Makefile b/devel/p5-Iodef-Pb-Simple/Makefile index 6efff6a841a..be00980ccd3 100644 --- a/devel/p5-Iodef-Pb-Simple/Makefile +++ b/devel/p5-Iodef-Pb-Simple/Makefile @@ -14,7 +14,8 @@ COMMENT= Perl extension providing high level API access to Iodef-Pb LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Class-Accessor>=0.34:devel/p5-Class-Accessor \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Accessor>=0.34:devel/p5-Class-Accessor \ p5-Compress-Snappy>=0.18:archivers/p5-Compress-Snappy \ p5-DateTime>=0.61:devel/p5-DateTime \ p5-DateTime-Format-DateParse>=0.05:devel/p5-DateTime-Format-DateParse \ @@ -29,7 +30,6 @@ BUILD_DEPENDS= p5-Class-Accessor>=0.34:devel/p5-Class-Accessor \ p5-Regexp-Common-net-CIDR>=0.02:textproc/p5-Regexp-Common-net-CIDR \ p5-Snort-Rule>=1.07:security/p5-Snort-Rule \ p5-Text-Table>=1.126:textproc/p5-Text-Table -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Iterator-IO/Makefile b/devel/p5-Iterator-IO/Makefile index b074ad6557c..d9d8ab89a04 100644 --- a/devel/p5-Iterator-IO/Makefile +++ b/devel/p5-Iterator-IO/Makefile @@ -14,8 +14,8 @@ COMMENT= Filesystem and stream iterators LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Iterator>=0:devel/p5-Iterator -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Iterator>=0:devel/p5-Iterator USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Iterator-Misc/Makefile b/devel/p5-Iterator-Misc/Makefile index 26f53574de9..cc23f85f780 100644 --- a/devel/p5-Iterator-Misc/Makefile +++ b/devel/p5-Iterator-Misc/Makefile @@ -14,8 +14,8 @@ COMMENT= Miscellaneous iterator functions LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Iterator>=0:devel/p5-Iterator -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Iterator>=0:devel/p5-Iterator USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Iterator-Util/Makefile b/devel/p5-Iterator-Util/Makefile index d99f7736b29..3481406c365 100644 --- a/devel/p5-Iterator-Util/Makefile +++ b/devel/p5-Iterator-Util/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Essential utilities for the Iterator class -BUILD_DEPENDS= p5-Iterator>=0:devel/p5-Iterator -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Iterator>=0:devel/p5-Iterator USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Iterator/Makefile b/devel/p5-Iterator/Makefile index 4ccde0a71ec..54928d02c6b 100644 --- a/devel/p5-Iterator/Makefile +++ b/devel/p5-Iterator/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= General-purpose iterator class -BUILD_DEPENDS= p5-Exception-Class>=0:devel/p5-Exception-Class -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Exception-Class>=0:devel/p5-Exception-Class USES= perl5 USE_PERL5= configure diff --git a/devel/p5-JIRA-REST/Makefile b/devel/p5-JIRA-REST/Makefile index fd68a09632d..cfb7f3b7490 100644 --- a/devel/p5-JIRA-REST/Makefile +++ b/devel/p5-JIRA-REST/Makefile @@ -14,13 +14,13 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Config-Identity>=0.0019:devel/p5-Config-Identity \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Config-Identity>=0.0019:devel/p5-Config-Identity \ p5-HTML-TreeBuilder-LibXML>=0:www/p5-HTML-TreeBuilder-LibXML \ p5-HTTP-Message>=0:www/p5-HTTP-Message \ p5-JSON>=0:converters/p5-JSON \ p5-REST-Client>=0:www/p5-REST-Client \ p5-URI>=0:net/p5-URI -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-JQuery/Makefile b/devel/p5-JQuery/Makefile index dd1eee0ac46..720a6f9d353 100644 --- a/devel/p5-JQuery/Makefile +++ b/devel/p5-JQuery/Makefile @@ -15,12 +15,12 @@ COMMENT= Interface to Jquery, a language based on JavaScript LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-CGI-Application>=0:www/p5-CGI-Application \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-CGI-Application>=0:www/p5-CGI-Application \ p5-CSS>=0:textproc/p5-CSS \ p5-HTML-Table>=0:www/p5-HTML-Table \ p5-IO-String>=0:devel/p5-IO-String \ p5-XML-Writer>=0:textproc/p5-XML-Writer -RUN_DEPENDS:= ${BUILD_DEPENDS} USE_PERL5= modbuild USES= perl5 shebangfix diff --git a/devel/p5-JSON-Hyper/Makefile b/devel/p5-JSON-Hyper/Makefile index 49973252196..1fb7a5a345b 100644 --- a/devel/p5-JSON-Hyper/Makefile +++ b/devel/p5-JSON-Hyper/Makefile @@ -13,11 +13,11 @@ COMMENT= Extract links from JSON objects LICENSE= MIT -BUILD_DEPENDS= p5-JSON>=2.0:converters/p5-JSON \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-JSON>=2.0:converters/p5-JSON \ p5-JSON-Path>=0:devel/p5-JSON-Path \ p5-URI>=1.30:net/p5-URI \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-JSON-Path/Makefile b/devel/p5-JSON-Path/Makefile index e4a3ffedac8..486ab00d45b 100644 --- a/devel/p5-JSON-Path/Makefile +++ b/devel/p5-JSON-Path/Makefile @@ -14,7 +14,8 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Carp-Assert>=0:devel/p5-Carp-Assert \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Carp-Assert>=0:devel/p5-Carp-Assert \ p5-Exporter-Easy>=0:devel/p5-Exporter-Easy \ p5-Exporter-Tiny>=0:devel/p5-Exporter-Tiny \ p5-JSON-MaybeXS>=0:converters/p5-JSON-MaybeXS \ @@ -22,7 +23,6 @@ BUILD_DEPENDS= p5-Carp-Assert>=0:devel/p5-Carp-Assert \ p5-Readonly>=0:devel/p5-Readonly \ p5-Scalar-List-Utils>=1.48:lang/p5-Scalar-List-Utils \ p5-Try-Tiny>=0:lang/p5-Try-Tiny -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-JSON>=0:converters/p5-JSON \ p5-Test-Deep>=0:devel/p5-Test-Deep \ p5-Test-Most>=0:devel/p5-Test-Most \ diff --git a/devel/p5-JSON-RPC-Common/Makefile b/devel/p5-JSON-RPC-Common/Makefile index 2bccc4bbb25..fa3ccf79787 100644 --- a/devel/p5-JSON-RPC-Common/Makefile +++ b/devel/p5-JSON-RPC-Common/Makefile @@ -15,14 +15,14 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-libwww>=5:www/p5-libwww \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-libwww>=5:www/p5-libwww \ p5-Moose>=0.81:devel/p5-Moose \ p5-JSON>=2.11:converters/p5-JSON \ p5-MooseX-Types>=0:devel/p5-MooseX-Types \ p5-Try-Tiny>0:lang/p5-Try-Tiny \ p5-URI>0:net/p5-URI \ p5-namespace-clean>=0.20:devel/p5-namespace-clean -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Exception>=0:devel/p5-Test-Exception NO_ARCH= yes diff --git a/devel/p5-JSON-RPC-Dispatcher/Makefile b/devel/p5-JSON-RPC-Dispatcher/Makefile index cb3ae4bb143..7506d2595c8 100644 --- a/devel/p5-JSON-RPC-Dispatcher/Makefile +++ b/devel/p5-JSON-RPC-Dispatcher/Makefile @@ -14,11 +14,11 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-JSON>=2.16:converters/p5-JSON \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-JSON>=2.16:converters/p5-JSON \ p5-Log-Any>=0.11:devel/p5-Log-Any \ p5-Moose>=0.93:devel/p5-Moose \ p5-Plack>=0.9913:www/p5-Plack -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-JSON-RPC/Makefile b/devel/p5-JSON-RPC/Makefile index 93586b25421..af59911ad63 100644 --- a/devel/p5-JSON-RPC/Makefile +++ b/devel/p5-JSON-RPC/Makefile @@ -15,14 +15,14 @@ COMMENT= Perl implementation of JSON-RPC 1.1 protocol LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Class-Accessor-Lite>=0:devel/p5-Class-Accessor-Lite \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Accessor-Lite>=0:devel/p5-Class-Accessor-Lite \ p5-HTTP-Message>=0:www/p5-HTTP-Message \ p5-JSON>=0:converters/p5-JSON \ p5-JSON-XS>=0:converters/p5-JSON-XS \ p5-Plack>=0:www/p5-Plack \ p5-Router-Simple>=0:www/p5-Router-Simple \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= modbuild diff --git a/devel/p5-JSON-Schema/Makefile b/devel/p5-JSON-Schema/Makefile index 75dfe794094..416a6ddc363 100644 --- a/devel/p5-JSON-Schema/Makefile +++ b/devel/p5-JSON-Schema/Makefile @@ -12,7 +12,8 @@ COMMENT= Validate JSON against a schema LICENSE= MIT -BUILD_DEPENDS= p5-Exporter-Tiny>=0:devel/p5-Exporter-Tiny \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Exporter-Tiny>=0:devel/p5-Exporter-Tiny \ p5-JSON>=2.0:converters/p5-JSON \ p5-JSON-Path>=0:devel/p5-JSON-Path \ p5-JSON-Hyper>=0:devel/p5-JSON-Hyper \ @@ -20,7 +21,6 @@ BUILD_DEPENDS= p5-Exporter-Tiny>=0:devel/p5-Exporter-Tiny \ p5-libwww>=0:www/p5-libwww \ p5-autovivification>=0:devel/p5-autovivification \ p5-match-simple>=0:devel/p5-match-simple -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Lexical-Import/Makefile b/devel/p5-Lexical-Import/Makefile index d6ca38ca78d..fda60a6751d 100644 --- a/devel/p5-Lexical-Import/Makefile +++ b/devel/p5-Lexical-Import/Makefile @@ -11,10 +11,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= sunpoet@FreeBSD.org COMMENT= Clean imports from package-exporting modules -BUILD_DEPENDS= p5-Lexical-Var>=0.006:devel/p5-Lexical-Var \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Lexical-Var>=0.006:devel/p5-Lexical-Var \ p5-Module-Runtime>=0.011:devel/p5-Module-Runtime \ p5-Params-Classify>=0:devel/p5-Params-Classify -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Pod>=1:devel/p5-Test-Pod \ p5-Test-Pod-Coverage>=0:devel/p5-Test-Pod-Coverage diff --git a/devel/p5-Lexical-Persistence/Makefile b/devel/p5-Lexical-Persistence/Makefile index 3aeaab0328a..bcb18c69f96 100644 --- a/devel/p5-Lexical-Persistence/Makefile +++ b/devel/p5-Lexical-Persistence/Makefile @@ -15,9 +15,9 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Devel-LexAlias>=0.04:devel/p5-Devel-LexAlias \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Devel-LexAlias>=0.04:devel/p5-Devel-LexAlias \ p5-PadWalker>=1.1:devel/p5-PadWalker -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-List-AllUtils/Makefile b/devel/p5-List-AllUtils/Makefile index 7665fa1c43c..0450b66896d 100644 --- a/devel/p5-List-AllUtils/Makefile +++ b/devel/p5-List-AllUtils/Makefile @@ -12,10 +12,10 @@ COMMENT= Combines List::Util and List::MoreUtils in one bite-sized package LICENSE= ART20 LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-List-SomeUtils>=0.50:devel/p5-List-SomeUtils \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-List-SomeUtils>=0.50:devel/p5-List-SomeUtils \ p5-List-UtilsBy>=0.10:devel/p5-List-UtilsBy \ p5-Scalar-List-Utils>=1.45:lang/p5-Scalar-List-Utils -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USE_PERL5= configure diff --git a/devel/p5-List-Objects-Types/Makefile b/devel/p5-List-Objects-Types/Makefile index ddc4ddce17d..fdc4e9daf2d 100644 --- a/devel/p5-List-Objects-Types/Makefile +++ b/devel/p5-List-Objects-Types/Makefile @@ -14,9 +14,9 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-List-Objects-WithUtils>=2:devel/p5-List-Objects-WithUtils \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-List-Objects-WithUtils>=2:devel/p5-List-Objects-WithUtils \ p5-Type-Tiny>=0.022:devel/p5-Type-Tiny -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USE_PERL5= configure diff --git a/devel/p5-List-Objects-WithUtils/Makefile b/devel/p5-List-Objects-WithUtils/Makefile index 12d0a4bb7ac..3423f1112b8 100644 --- a/devel/p5-List-Objects-WithUtils/Makefile +++ b/devel/p5-List-Objects-WithUtils/Makefile @@ -15,7 +15,8 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Class-Method-Modifiers>=0:devel/p5-Class-Method-Modifiers \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Method-Modifiers>=0:devel/p5-Class-Method-Modifiers \ p5-List-UtilsBy>=0.09:devel/p5-List-UtilsBy \ p5-List-UtilsBy-XS>=0.03:devel/p5-List-UtilsBy-XS \ p5-Module-Runtime>=0.013:devel/p5-Module-Runtime \ @@ -23,7 +24,6 @@ BUILD_DEPENDS= p5-Class-Method-Modifiers>=0:devel/p5-Class-Method-Modifiers \ p5-Type-Tie>=0.004:devel/p5-Type-Tie \ p5-autobox>=0:devel/p5-autobox \ p5-strictures>=2:devel/p5-strictures -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USE_PERL5= configure diff --git a/devel/p5-List-SomeUtils/Makefile b/devel/p5-List-SomeUtils/Makefile index eb3f30a7065..c5cdee0a485 100644 --- a/devel/p5-List-SomeUtils/Makefile +++ b/devel/p5-List-SomeUtils/Makefile @@ -14,9 +14,9 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-List-SomeUtils-XS>=0:devel/p5-List-SomeUtils-XS \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-List-SomeUtils-XS>=0:devel/p5-List-SomeUtils-XS \ p5-Module-Implementation>=0:devel/p5-Module-Implementation -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USE_PERL5= configure diff --git a/devel/p5-Log-Accounting-SVK/Makefile b/devel/p5-Log-Accounting-SVK/Makefile index 5d59aebe61e..154504aea15 100644 --- a/devel/p5-Log-Accounting-SVK/Makefile +++ b/devel/p5-Log-Accounting-SVK/Makefile @@ -14,12 +14,12 @@ COMMENT= Perl module for accounting SVK repository LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= svk>=0:devel/svk \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= svk>=0:devel/svk \ p5-Spiffy>=0:devel/p5-Spiffy \ p5-Graph-SocialMap>=0:graphics/p5-Graph-SocialMap \ p5-Graph-Writer-GraphViz>=0:graphics/p5-Graph-Writer-GraphViz \ p5-Algorithm-Accounting>=0:devel/p5-Algorithm-Accounting -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Log-Accounting-SVN/Makefile b/devel/p5-Log-Accounting-SVN/Makefile index 5c46b29b2e2..18115ba1cc8 100644 --- a/devel/p5-Log-Accounting-SVN/Makefile +++ b/devel/p5-Log-Accounting-SVN/Makefile @@ -14,11 +14,11 @@ COMMENT= Perl module for accounting SVN repository LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-subversion>=0:devel/p5-subversion \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-subversion>=0:devel/p5-subversion \ p5-SVN-Log>=0:devel/p5-SVN-Log \ p5-Algorithm-Accounting>=0:devel/p5-Algorithm-Accounting \ p5-Test-Simple>=0:devel/p5-Test-Simple -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Log-Agent-Logger/Makefile b/devel/p5-Log-Agent-Logger/Makefile index 122529f4895..1e292f90a7f 100644 --- a/devel/p5-Log-Agent-Logger/Makefile +++ b/devel/p5-Log-Agent-Logger/Makefile @@ -12,8 +12,8 @@ COMMENT= Log::Agent::Logger - a logging interface for perl LICENSE= ART20 -BUILD_DEPENDS= p5-Log-Agent>=0.208:devel/p5-Log-Agent -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Log-Agent>=0.208:devel/p5-Log-Agent NO_ARCH= yes USES= perl5 diff --git a/devel/p5-Log-Any-Adapter-Log4perl/Makefile b/devel/p5-Log-Any-Adapter-Log4perl/Makefile index f429453b907..5932c046419 100644 --- a/devel/p5-Log-Any-Adapter-Log4perl/Makefile +++ b/devel/p5-Log-Any-Adapter-Log4perl/Makefile @@ -14,9 +14,9 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Log-Any>=1.03:devel/p5-Log-Any \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Log-Any>=1.03:devel/p5-Log-Any \ p5-Log-Log4perl>=1.32:devel/p5-Log-Log4perl -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/devel/p5-Log-Any-App/Makefile b/devel/p5-Log-Any-App/Makefile index d318e8580cf..c4494ad2679 100644 --- a/devel/p5-Log-Any-App/Makefile +++ b/devel/p5-Log-Any-App/Makefile @@ -14,7 +14,8 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-File-HomeDir>=0:devel/p5-File-HomeDir \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-File-HomeDir>=0:devel/p5-File-HomeDir \ p5-File-Write-Rotate>=0.29:devel/p5-File-Write-Rotate \ p5-IO-Socket-UNIX-Util>=0:net/p5-IO-Socket-UNIX-Util \ p5-JSON-MaybeXS>=0:converters/p5-JSON-MaybeXS \ @@ -24,7 +25,6 @@ BUILD_DEPENDS= p5-File-HomeDir>=0:devel/p5-File-HomeDir \ p5-Log-Dispatch-ArrayWithLimits>=0:devel/p5-Log-Dispatch-ArrayWithLimits \ p5-Log-Dispatch-Dir>=0.08:devel/p5-Log-Dispatch-Dir \ p5-Log-Dispatch-FileWriteRotate>=0.04:devel/p5-Log-Dispatch-FileWriteRotate -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-File-Slurper>=0:devel/p5-File-Slurper NO_ARCH= yes diff --git a/devel/p5-Log-Any-IfLOG/Makefile b/devel/p5-Log-Any-IfLOG/Makefile index 9a980b621e5..3fa543ec75e 100644 --- a/devel/p5-Log-Any-IfLOG/Makefile +++ b/devel/p5-Log-Any-IfLOG/Makefile @@ -14,8 +14,8 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Log-Any>=0:devel/p5-Log-Any -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Log-Any>=0:devel/p5-Log-Any NO_ARCH= yes USE_PERL5= configure diff --git a/devel/p5-Log-Dispatch-Array/Makefile b/devel/p5-Log-Dispatch-Array/Makefile index 67151542878..0cc5d8d745f 100644 --- a/devel/p5-Log-Dispatch-Array/Makefile +++ b/devel/p5-Log-Dispatch-Array/Makefile @@ -14,8 +14,8 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Log-Dispatch>=0:devel/p5-Log-Dispatch -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Log-Dispatch>=0:devel/p5-Log-Dispatch TEST_DEPENDS= p5-Test-Deep>=0:devel/p5-Test-Deep NO_ARCH= yes diff --git a/devel/p5-Log-Dispatch-Colorful/Makefile b/devel/p5-Log-Dispatch-Colorful/Makefile index 649f1274947..81d55b50ec8 100644 --- a/devel/p5-Log-Dispatch-Colorful/Makefile +++ b/devel/p5-Log-Dispatch-Colorful/Makefile @@ -10,11 +10,11 @@ PKGNAMEPREFIX= p5- MAINTAINER= kuriyama@FreeBSD.org COMMENT= Perl extension for logging to screen -BUILD_DEPENDS= p5-Filter>0:devel/p5-Filter \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Filter>0:devel/p5-Filter \ p5-IO-stringy>=0:devel/p5-IO-stringy \ p5-Log-Dispatch>0:devel/p5-Log-Dispatch \ p5-Params-Validate>0:devel/p5-Params-Validate -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Log-Dispatch-Config/Makefile b/devel/p5-Log-Dispatch-Config/Makefile index 2dcc0dd905e..6fa98ee9523 100644 --- a/devel/p5-Log-Dispatch-Config/Makefile +++ b/devel/p5-Log-Dispatch-Config/Makefile @@ -14,10 +14,10 @@ COMMENT= Log4j equivalent for Perl LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-IO-stringy>=0:devel/p5-IO-stringy \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-IO-stringy>=0:devel/p5-IO-stringy \ p5-AppConfig>=1.52:devel/p5-AppConfig \ p5-Log-Dispatch>=2:devel/p5-Log-Dispatch -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Log-Dispatch-Configurator-Any/Makefile b/devel/p5-Log-Dispatch-Configurator-Any/Makefile index 78df9c4472c..6f489ced94c 100644 --- a/devel/p5-Log-Dispatch-Configurator-Any/Makefile +++ b/devel/p5-Log-Dispatch-Configurator-Any/Makefile @@ -13,10 +13,10 @@ COMMENT= Configurator implementation with Config::Any LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Config-Any>=0.15:devel/p5-Config-Any \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Config-Any>=0.15:devel/p5-Config-Any \ p5-Log-Dispatch>=2.23:devel/p5-Log-Dispatch \ p5-Log-Dispatch-Config>=0:devel/p5-Log-Dispatch-Config -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Config-Tiny>=0:devel/p5-Config-Tiny \ p5-Test-Pod>=1.14:devel/p5-Test-Pod \ p5-Test-Pod-Coverage>=1.04:devel/p5-Test-Pod-Coverage \ diff --git a/devel/p5-Log-Dispatch-DBI/Makefile b/devel/p5-Log-Dispatch-DBI/Makefile index dad43810086..90d291201cb 100644 --- a/devel/p5-Log-Dispatch-DBI/Makefile +++ b/devel/p5-Log-Dispatch-DBI/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= gebhart@secnetix.de COMMENT= Log::Dispatch output class for logging to database via DBI interface -BUILD_DEPENDS= p5-Log-Dispatch>=2.0:devel/p5-Log-Dispatch \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Log-Dispatch>=2.0:devel/p5-Log-Dispatch \ p5-DBI>0:databases/p5-DBI -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-DBD-CSV>0:databases/p5-DBD-CSV USES= perl5 diff --git a/devel/p5-Log-Dispatch-Dir/Makefile b/devel/p5-Log-Dispatch-Dir/Makefile index d50b74eb979..46d2d701cb6 100644 --- a/devel/p5-Log-Dispatch-Dir/Makefile +++ b/devel/p5-Log-Dispatch-Dir/Makefile @@ -14,11 +14,11 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-File-Slurper>=0:devel/p5-File-Slurper \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-File-Slurper>=0:devel/p5-File-Slurper \ p5-Log-Dispatch>=0:devel/p5-Log-Dispatch \ p5-Params-Validate>=0:devel/p5-Params-Validate \ p5-Probe-Perl>=0:sysutils/p5-Probe-Perl -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-File-LibMagic>=0:devel/p5-File-LibMagic \ p5-Media-Type-Simple>=0:devel/p5-Media-Type-Simple diff --git a/devel/p5-Log-Dispatch-Email-EmailSend/Makefile b/devel/p5-Log-Dispatch-Email-EmailSend/Makefile index ec1ab9e39af..22a6788b4e9 100644 --- a/devel/p5-Log-Dispatch-Email-EmailSend/Makefile +++ b/devel/p5-Log-Dispatch-Email-EmailSend/Makefile @@ -14,11 +14,11 @@ COMMENT= Subclass of Log-Dispatch-Email that uses Email-Send LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Email-Send>=2.0:mail/p5-Email-Send \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Email-Send>=2.0:mail/p5-Email-Send \ p5-Email-Simple>=2.100:mail/p5-Email-Simple \ p5-Log-Dispatch>=2.0:devel/p5-Log-Dispatch \ p5-Params-Validate>=0:devel/p5-Params-Validate -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= modbuild diff --git a/devel/p5-Log-Dispatch-File-Stamped/Makefile b/devel/p5-Log-Dispatch-File-Stamped/Makefile index e0fd403af14..856e40dffd9 100644 --- a/devel/p5-Log-Dispatch-File-Stamped/Makefile +++ b/devel/p5-Log-Dispatch-File-Stamped/Makefile @@ -14,10 +14,10 @@ COMMENT= Logging to date/time stamped files LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Log-Dispatch>=2.38:devel/p5-Log-Dispatch \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Log-Dispatch>=2.38:devel/p5-Log-Dispatch \ p5-Params-Validate>0:devel/p5-Params-Validate \ p5-namespace-clean>0:devel/p5-namespace-clean -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Path-Tiny>0:devel/p5-Path-Tiny \ p5-Test-CheckDeps>=0.002:devel/p5-Test-CheckDeps \ p5-Test-Deep>0:devel/p5-Test-Deep \ diff --git a/devel/p5-Log-Dispatch-FileRotate/Makefile b/devel/p5-Log-Dispatch-FileRotate/Makefile index ef39878c6e1..18ca1a54afa 100644 --- a/devel/p5-Log-Dispatch-FileRotate/Makefile +++ b/devel/p5-Log-Dispatch-FileRotate/Makefile @@ -14,9 +14,9 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Date-Manip>=0:devel/p5-Date-Manip \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Date-Manip>=0:devel/p5-Date-Manip \ p5-Log-Dispatch>=0:devel/p5-Log-Dispatch -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Path-Tiny>=0.018:devel/p5-Path-Tiny \ p5-Test-Warn>=0:devel/p5-Test-Warn diff --git a/devel/p5-Log-Dispatch-FileShared/Makefile b/devel/p5-Log-Dispatch-FileShared/Makefile index ef5d5fd6af2..a77aed387d8 100644 --- a/devel/p5-Log-Dispatch-FileShared/Makefile +++ b/devel/p5-Log-Dispatch-FileShared/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Log::Dispatch output class for logging to shared files -BUILD_DEPENDS= p5-Log-Dispatch>=0:devel/p5-Log-Dispatch \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Log-Dispatch>=0:devel/p5-Log-Dispatch \ p5-Params-Validate>=0:devel/p5-Params-Validate -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Log-Dispatch-FileWriteRotate/Makefile b/devel/p5-Log-Dispatch-FileWriteRotate/Makefile index 92bf63d9b08..be0f25d7304 100644 --- a/devel/p5-Log-Dispatch-FileWriteRotate/Makefile +++ b/devel/p5-Log-Dispatch-FileWriteRotate/Makefile @@ -14,9 +14,9 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-File-Write-Rotate>=0.29:devel/p5-File-Write-Rotate \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-File-Write-Rotate>=0.29:devel/p5-File-Write-Rotate \ p5-Log-Dispatch>=0:devel/p5-Log-Dispatch -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USE_PERL5= configure diff --git a/devel/p5-Log-Dispatch-Perl/Makefile b/devel/p5-Log-Dispatch-Perl/Makefile index 5b5ae920aaa..34145c705ae 100644 --- a/devel/p5-Log-Dispatch-Perl/Makefile +++ b/devel/p5-Log-Dispatch-Perl/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Log::Dispatch plug-in using core Perl functions for logging -BUILD_DEPENDS= p5-Log-Dispatch>=0:devel/p5-Log-Dispatch -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Log-Dispatch>=0:devel/p5-Log-Dispatch USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Log-Dispatch-Scribe/Makefile b/devel/p5-Log-Dispatch-Scribe/Makefile index 5018fd1812c..14590857aa3 100644 --- a/devel/p5-Log-Dispatch-Scribe/Makefile +++ b/devel/p5-Log-Dispatch-Scribe/Makefile @@ -13,8 +13,8 @@ COMMENT= Logging via Facebook's Scribe server software #' LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Log-Dispatch>0:devel/p5-Log-Dispatch -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Log-Dispatch>0:devel/p5-Log-Dispatch TEST_DEPENDS= p5-Test-MockObject>=0:devel/p5-Test-MockObject \ p5-Test-Timer>=0:devel/p5-Test-Timer diff --git a/devel/p5-Log-Dispatchouli/Makefile b/devel/p5-Log-Dispatchouli/Makefile index a7d8deda207..2ba79f5687c 100644 --- a/devel/p5-Log-Dispatchouli/Makefile +++ b/devel/p5-Log-Dispatchouli/Makefile @@ -16,14 +16,14 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Log-Dispatch>=0:devel/p5-Log-Dispatch \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Log-Dispatch>=0:devel/p5-Log-Dispatch \ p5-Log-Dispatch-Array>=0:devel/p5-Log-Dispatch-Array \ p5-Params-Util>=0:devel/p5-Params-Util \ p5-String-Flogger>=0:textproc/p5-String-Flogger \ p5-Sub-Exporter>=0:devel/p5-Sub-Exporter \ p5-Sub-Exporter-GlobExporter>=0.002:devel/p5-Sub-Exporter-GlobExporter \ p5-Try-Tiny>=0.04:lang/p5-Try-Tiny -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Deep>=0:devel/p5-Test-Deep \ p5-Test-Fatal>=0:devel/p5-Test-Fatal diff --git a/devel/p5-Log-Handler/Makefile b/devel/p5-Log-Handler/Makefile index 1e4bfcd9a89..54e95357c57 100644 --- a/devel/p5-Log-Handler/Makefile +++ b/devel/p5-Log-Handler/Makefile @@ -13,8 +13,8 @@ COMMENT= Object-oriented handler for logging, tracing, and debugging in Perl LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Params-Validate>=0:devel/p5-Params-Validate -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Params-Validate>=0:devel/p5-Params-Validate TEST_DEPENDS= p5-DBI>=0:databases/p5-DBI \ p5-Email-Date>=0:mail/p5-Email-Date diff --git a/devel/p5-Log-Log4perl-Appender-RabbitMQ/Makefile b/devel/p5-Log-Log4perl-Appender-RabbitMQ/Makefile index 5724790e81e..5bd63841e65 100644 --- a/devel/p5-Log-Log4perl-Appender-RabbitMQ/Makefile +++ b/devel/p5-Log-Log4perl-Appender-RabbitMQ/Makefile @@ -10,10 +10,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= swills@FreeBSD.org COMMENT= Perl module which allows logging to RabbitMQ via log4perl -BUILD_DEPENDS= ${LOCALBASE}/bin/l4p-tmpl:devel/p5-Log-Log4perl \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= ${LOCALBASE}/bin/l4p-tmpl:devel/p5-Log-Log4perl \ p5-Net-AMQP-RabbitMQ>=2.30000:net/p5-Net-AMQP-RabbitMQ \ p5-Readonly>0:devel/p5-Readonly -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Log-Message-Simple/Makefile b/devel/p5-Log-Message-Simple/Makefile index d8bedbae430..16c17df2b93 100644 --- a/devel/p5-Log-Message-Simple/Makefile +++ b/devel/p5-Log-Message-Simple/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Provides standardized logging facilities using the Log::Message module -BUILD_DEPENDS= p5-Log-Message>=0:devel/p5-Log-Message -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Log-Message>=0:devel/p5-Log-Message USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Log-Message/Makefile b/devel/p5-Log-Message/Makefile index b6d9876e52c..a48fbbc601e 100644 --- a/devel/p5-Log-Message/Makefile +++ b/devel/p5-Log-Message/Makefile @@ -15,10 +15,10 @@ COMMENT= Powerful and flexible message logging mechanism LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Params-Check>=0:devel/p5-Params-Check \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Params-Check>=0:devel/p5-Params-Check \ p5-Module-Load>=0:devel/p5-Module-Load \ p5-Locale-Maketext-Simple>=0:devel/p5-Locale-Maketext-Simple -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Log-Report-Optional/Makefile b/devel/p5-Log-Report-Optional/Makefile index 6f339ed8d48..17cab051270 100644 --- a/devel/p5-Log-Report-Optional/Makefile +++ b/devel/p5-Log-Report-Optional/Makefile @@ -13,8 +13,8 @@ COMMENT= Log::Report or ::Minimal LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-String-Print>=0.91:textproc/p5-String-Print -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-String-Print>=0.91:textproc/p5-String-Print NO_ARCH= yes USE_PERL5= configure diff --git a/devel/p5-Log-Report/Makefile b/devel/p5-Log-Report/Makefile index 9eaf411d9ec..9636f8afec7 100644 --- a/devel/p5-Log-Report/Makefile +++ b/devel/p5-Log-Report/Makefile @@ -13,10 +13,10 @@ COMMENT= Report a problem, pluggable handlers and language support LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Devel-GlobalDestruction>=0.09:devel/p5-Devel-GlobalDestruction \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Devel-GlobalDestruction>=0.09:devel/p5-Devel-GlobalDestruction \ p5-Log-Report-Optional>=1.03:devel/p5-Log-Report-Optional \ p5-String-Print>=0.91:textproc/p5-String-Print -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/devel/p5-Log-TraceMessages/Makefile b/devel/p5-Log-TraceMessages/Makefile index ed53e3db089..f11a3a7dd89 100644 --- a/devel/p5-Log-TraceMessages/Makefile +++ b/devel/p5-Log-TraceMessages/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Perl extension for trace messages used in debugging -BUILD_DEPENDS= p5-HTML-FromText>=0:www/p5-HTML-FromText -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTML-FromText>=0:www/p5-HTML-FromText USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Luka/Makefile b/devel/p5-Luka/Makefile index b1f3b825cb1..8a22bcf6869 100644 --- a/devel/p5-Luka/Makefile +++ b/devel/p5-Luka/Makefile @@ -15,7 +15,8 @@ COMMENT= Exception handling and reporting framework LICENSE= GPLv2 GPLv3 LICENSE_COMB= dual -BUILD_DEPENDS= p5-Class-Std>=0:devel/p5-Class-Std \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Std>=0:devel/p5-Class-Std \ p5-Config-IniFiles>=0:devel/p5-Config-IniFiles \ p5-Error>=0:lang/p5-Error \ p5-Exception-Class>=0:devel/p5-Exception-Class \ @@ -23,7 +24,6 @@ BUILD_DEPENDS= p5-Class-Std>=0:devel/p5-Class-Std \ p5-Sub-Uplevel>=0:devel/p5-Sub-Uplevel \ p5-Sys-Hostname-Long>=0:sysutils/p5-Sys-Hostname-Long \ p5-What>=0:net/p5-What -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Exception>=0:devel/p5-Test-Exception USE_PERL5= configure diff --git a/devel/p5-Mac-PropertyList/Makefile b/devel/p5-Mac-PropertyList/Makefile index 0de059dcb9a..dd1810cf907 100644 --- a/devel/p5-Mac-PropertyList/Makefile +++ b/devel/p5-Mac-PropertyList/Makefile @@ -13,8 +13,8 @@ COMMENT= Perl extension for parsing Mac OS X property lists LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-XML-Entities>=0:textproc/p5-XML-Entities -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-XML-Entities>=0:textproc/p5-XML-Entities NO_ARCH= yes USES= perl5 diff --git a/devel/p5-Media-Type-Simple/Makefile b/devel/p5-Media-Type-Simple/Makefile index 45f680c7c5e..a98ece290cb 100644 --- a/devel/p5-Media-Type-Simple/Makefile +++ b/devel/p5-Media-Type-Simple/Makefile @@ -14,10 +14,10 @@ COMMENT= MIME Media Types and their file extensions LICENSE= ART20 -BUILD_DEPENDS= p5-Exporter-Lite>=0:devel/p5-Exporter-Lite \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Exporter-Lite>=0:devel/p5-Exporter-Lite \ p5-File-Share>=0:devel/p5-File-Share \ p5-File-ShareDir>=0:devel/p5-File-ShareDir -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USE_PERL5= configure diff --git a/devel/p5-Meta-Builder/Makefile b/devel/p5-Meta-Builder/Makefile index 44798230d85..74523e752be 100644 --- a/devel/p5-Meta-Builder/Makefile +++ b/devel/p5-Meta-Builder/Makefile @@ -11,10 +11,14 @@ PKGNAMEPREFIX= p5- MAINTAINER= kuriyama@FreeBSD.org COMMENT= Perl extension for creating Meta objects to track custom metrics +LICENSE= ART10 GPLv1+ +LICENSE_COMB= dual + TEST_DEPENDS= p5-Test-Exception>=0:devel/p5-Test-Exception \ p5-Fennec-Lite>=0:devel/p5-Fennec-Lite USES= perl5 USE_PERL5= modbuild +NO_ARCH= yes .include diff --git a/devel/p5-Metabase-Fact/Makefile b/devel/p5-Metabase-Fact/Makefile index a348b8cdbd7..2847f0f9e77 100644 --- a/devel/p5-Metabase-Fact/Makefile +++ b/devel/p5-Metabase-Fact/Makefile @@ -11,11 +11,11 @@ PKGNAMEPREFIX= p5- MAINTAINER= swills@FreeBSD.org COMMENT= Metabase Facts -BUILD_DEPENDS= p5-JSON>=2.0:converters/p5-JSON \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-JSON>=2.0:converters/p5-JSON \ p5-Data-GUID>=0:devel/p5-Data-GUID \ p5-Test-Exception>=0:devel/p5-Test-Exception \ p5-CPAN-DistnameInfo>0:devel/p5-CPAN-DistnameInfo -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Method-Signatures-Simple/Makefile b/devel/p5-Method-Signatures-Simple/Makefile index 95c4e9c6eb4..482cd6cef82 100644 --- a/devel/p5-Method-Signatures-Simple/Makefile +++ b/devel/p5-Method-Signatures-Simple/Makefile @@ -12,8 +12,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Basic method declarations with signatures, without source filters -BUILD_DEPENDS= p5-Devel-Declare>=0:devel/p5-Devel-Declare -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Devel-Declare>=0:devel/p5-Devel-Declare USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Method-Signatures/Makefile b/devel/p5-Method-Signatures/Makefile index 848c84eb084..cf964911289 100644 --- a/devel/p5-Method-Signatures/Makefile +++ b/devel/p5-Method-Signatures/Makefile @@ -15,14 +15,14 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Any-Moose>=0.11:devel/p5-Any-Moose \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Any-Moose>=0.11:devel/p5-Any-Moose \ p5-Const-Fast>=0.006:devel/p5-Const-Fast \ p5-Devel-Declare>=0.006002:devel/p5-Devel-Declare \ p5-Lexical-SealRequireHints>=0.008:devel/p5-Lexical-SealRequireHints \ p5-Mouse>=0.64:devel/p5-Mouse \ p5-PPI>=1.203:textproc/p5-PPI \ p5-Sub-Name>=0.03:devel/p5-Sub-Name -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Exception>=0.29:devel/p5-Test-Exception \ p5-Test-Warn>=0.10:devel/p5-Test-Warn diff --git a/devel/p5-Minilla/Makefile b/devel/p5-Minilla/Makefile index 8f1b51c27bb..53df345208f 100644 --- a/devel/p5-Minilla/Makefile +++ b/devel/p5-Minilla/Makefile @@ -17,7 +17,8 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= git>=0:devel/git \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= git>=0:devel/git \ tree>=0:sysutils/tree \ p5-App-cpanminus>=1.6902:devel/p5-App-cpanminus \ p5-CPAN-Uploader>=0:devel/p5-CPAN-Uploader \ @@ -36,7 +37,6 @@ BUILD_DEPENDS= git>=0:devel/git \ p5-Try-Tiny>=0:lang/p5-Try-Tiny \ p5-URI>=0:net/p5-URI \ p5-Version-Next>=0:textproc/p5-Version-Next -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-File-Copy-Recursive>=0:devel/p5-File-Copy-Recursive \ p5-JSON>=0:converters/p5-JSON \ p5-Test-Output>=0:devel/p5-Test-Output \ diff --git a/devel/p5-Mixin-Event-Dispatch/Makefile b/devel/p5-Mixin-Event-Dispatch/Makefile index 723665520be..c620ad22dc8 100644 --- a/devel/p5-Mixin-Event-Dispatch/Makefile +++ b/devel/p5-Mixin-Event-Dispatch/Makefile @@ -14,8 +14,8 @@ COMMENT= Mixin methods for simple event/message dispatch framework LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-List-UtilsBy>=0:devel/p5-List-UtilsBy -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-List-UtilsBy>=0:devel/p5-List-UtilsBy TEST_DEPENDS= p5-Test-CheckDeps>=0.010:devel/p5-Test-CheckDeps \ p5-Test-Fatal>=0.010:devel/p5-Test-Fatal \ p5-Test-Refcount>=0.07:devel/p5-Test-Refcount diff --git a/devel/p5-Mixin-Linewise/Makefile b/devel/p5-Mixin-Linewise/Makefile index a06ebf255d4..a697a5a83ba 100644 --- a/devel/p5-Mixin-Linewise/Makefile +++ b/devel/p5-Mixin-Linewise/Makefile @@ -13,9 +13,9 @@ COMMENT= Write your linewise code for handles; this does the rest LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-PerlIO-utf8_strict>=0:devel/p5-PerlIO-utf8_strict \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-PerlIO-utf8_strict>=0:devel/p5-PerlIO-utf8_strict \ p5-Sub-Exporter>=0.900:devel/p5-Sub-Exporter -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Mock-Quick/Makefile b/devel/p5-Mock-Quick/Makefile index 30d6846ece7..bc9d38fd85b 100644 --- a/devel/p5-Mock-Quick/Makefile +++ b/devel/p5-Mock-Quick/Makefile @@ -14,8 +14,8 @@ COMMENT= Quickly mock objects and classes LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Exporter-Declare>=0.103:devel/p5-Exporter-Declare -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Exporter-Declare>=0.103:devel/p5-Exporter-Declare TEST_DEPENDS= p5-Fennec-Lite>=0.004:devel/p5-Fennec-Lite \ p5-Test-Exception>=0.29:devel/p5-Test-Exception diff --git a/devel/p5-Module-Build-Convert/Makefile b/devel/p5-Module-Build-Convert/Makefile index a5ed95dfd27..90c07d54c03 100644 --- a/devel/p5-Module-Build-Convert/Makefile +++ b/devel/p5-Module-Build-Convert/Makefile @@ -11,11 +11,11 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Makefile.PL to Build.PL converter -BUILD_DEPENDS= p5-File-HomeDir>=0:devel/p5-File-HomeDir \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-File-HomeDir>=0:devel/p5-File-HomeDir \ p5-File-Slurp>=0:devel/p5-File-Slurp \ p5-IO-Prompt>=0:devel/p5-IO-Prompt \ p5-PPI>=0:textproc/p5-PPI -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Pod>=1.14:devel/p5-Test-Pod \ p5-Test-Pod-Coverage>=1.04:devel/p5-Test-Pod-Coverage diff --git a/devel/p5-Module-Build-Pluggable-ReadmeMarkdownFromPod/Makefile b/devel/p5-Module-Build-Pluggable-ReadmeMarkdownFromPod/Makefile index a2433ba3f9a..7daa83eb3bd 100644 --- a/devel/p5-Module-Build-Pluggable-ReadmeMarkdownFromPod/Makefile +++ b/devel/p5-Module-Build-Pluggable-ReadmeMarkdownFromPod/Makefile @@ -13,10 +13,10 @@ COMMENT= Make README.mkdn from POD LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Class-Accessor-Lite>=0:devel/p5-Class-Accessor-Lite \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Accessor-Lite>=0:devel/p5-Class-Accessor-Lite \ p5-Module-Build-Pluggable>=0.09:devel/p5-Module-Build-Pluggable \ p5-Pod-Markdown>=0:textproc/p5-Pod-Markdown -RUN_DEPENDS:= ${BUILD_DEPENDS} USE_PERL5= modbuild USES= perl5 diff --git a/devel/p5-Module-Build-Pluggable/Makefile b/devel/p5-Module-Build-Pluggable/Makefile index ba263d8edb4..bc330ab0c33 100644 --- a/devel/p5-Module-Build-Pluggable/Makefile +++ b/devel/p5-Module-Build-Pluggable/Makefile @@ -13,11 +13,11 @@ COMMENT= Module::Build meets plugins LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Class-Accessor-Lite>=0:devel/p5-Class-Accessor-Lite \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Accessor-Lite>=0:devel/p5-Class-Accessor-Lite \ p5-Class-Method-Modifiers>=0:devel/p5-Class-Method-Modifiers \ p5-Data-OptList>=0:devel/p5-Data-OptList \ p5-Test-SharedFork>=0:devel/p5-Test-SharedFork -RUN_DEPENDS:= ${BUILD_DEPENDS} USE_PERL5= modbuild USES= perl5 diff --git a/devel/p5-Module-CheckDeps/Makefile b/devel/p5-Module-CheckDeps/Makefile index 687bb73f28c..593f07a48f8 100644 --- a/devel/p5-Module-CheckDeps/Makefile +++ b/devel/p5-Module-CheckDeps/Makefile @@ -15,8 +15,8 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-PPI>=0:textproc/p5-PPI -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-PPI>=0:textproc/p5-PPI NO_ARCH= yes USE_PERL5= configure diff --git a/devel/p5-Module-CheckVersion/Makefile b/devel/p5-Module-CheckVersion/Makefile index fd0e240ea5f..121fd09d73a 100644 --- a/devel/p5-Module-CheckVersion/Makefile +++ b/devel/p5-Module-CheckVersion/Makefile @@ -14,8 +14,8 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-JSON-MaybeXS>=0:converters/p5-JSON-MaybeXS -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-JSON-MaybeXS>=0:converters/p5-JSON-MaybeXS NO_ARCH= yes USE_PERL5= configure diff --git a/devel/p5-Module-Compile/Makefile b/devel/p5-Module-Compile/Makefile index 283cc9d00c1..3e686a1339c 100644 --- a/devel/p5-Module-Compile/Makefile +++ b/devel/p5-Module-Compile/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= snowfly@yuntech.edu.tw COMMENT= Provide a system for writing modules that compile other Perl modules -BUILD_DEPENDS= p5-Digest-SHA1>=0:security/p5-Digest-SHA1 -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Digest-SHA1>=0:security/p5-Digest-SHA1 USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Module-Extract-Use/Makefile b/devel/p5-Module-Extract-Use/Makefile index e5be00771c7..4b004d1e756 100644 --- a/devel/p5-Module-Extract-Use/Makefile +++ b/devel/p5-Module-Extract-Use/Makefile @@ -14,8 +14,8 @@ COMMENT= Pull out the modules a module explicitly uses LICENSE= ART20 LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-PPI>=0:textproc/p5-PPI -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-PPI>=0:textproc/p5-PPI TEST_DEPENDS= p5-Test-Pod>0:devel/p5-Test-Pod \ p5-Test-Pod-Coverage>0:devel/p5-Test-Pod-Coverage diff --git a/devel/p5-Module-Extract/Makefile b/devel/p5-Module-Extract/Makefile index 191a396c065..aa187f60e40 100644 --- a/devel/p5-Module-Extract/Makefile +++ b/devel/p5-Module-Extract/Makefile @@ -14,8 +14,8 @@ COMMENT= Base class for working with Perl distributions LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Archive-Extract>=0:archivers/p5-Archive-Extract -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Archive-Extract>=0:archivers/p5-Archive-Extract USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Module-Info-File/Makefile b/devel/p5-Module-Info-File/Makefile index b6478a8049e..7cd9363be0f 100644 --- a/devel/p5-Module-Info-File/Makefile +++ b/devel/p5-Module-Info-File/Makefile @@ -13,9 +13,9 @@ COMMENT= Retrieves module information from a file or script LICENSE= ART20 LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Module-Info>=0.20:devel/p5-Module-Info \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Module-Info>=0.20:devel/p5-Module-Info \ p5-Try-Tiny>=0:lang/p5-Try-Tiny -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/devel/p5-Module-Info/Makefile b/devel/p5-Module-Info/Makefile index eaaa411edc0..a5798fe83bf 100644 --- a/devel/p5-Module-Info/Makefile +++ b/devel/p5-Module-Info/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= demon@FreeBSD.org COMMENT= Provides information about Perl modules -BUILD_DEPENDS= p5-PathTools>=0:devel/p5-PathTools -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-PathTools>=0:devel/p5-PathTools USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Module-Inspector/Makefile b/devel/p5-Module-Inspector/Makefile index c0f92dc57bb..b653b2ad39b 100644 --- a/devel/p5-Module-Inspector/Makefile +++ b/devel/p5-Module-Inspector/Makefile @@ -11,7 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= bofh@FreeBSD.org COMMENT= Integrated API for inspecting Perl distributions -BUILD_DEPENDS= p5-File-Find-Rule-VCS>=0:devel/p5-File-Find-Rule-VCS \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-File-Find-Rule-VCS>=0:devel/p5-File-Find-Rule-VCS \ p5-File-Find-Rule-Perl>=0:devel/p5-File-Find-Rule-Perl \ p5-Module-Extract>=0:devel/p5-Module-Extract \ p5-Module-Manifest>=0:devel/p5-Module-Manifest \ @@ -19,7 +20,6 @@ BUILD_DEPENDS= p5-File-Find-Rule-VCS>=0:devel/p5-File-Find-Rule-VCS \ p5-PPI>=0:textproc/p5-PPI \ p5-YAML-Tiny>=0:textproc/p5-YAML-Tiny \ p5-Params-Util>=0:devel/p5-Params-Util -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Module-Install-ReadmeFromPod/Makefile b/devel/p5-Module-Install-ReadmeFromPod/Makefile index 3a7188dca46..abd3e8c26b9 100644 --- a/devel/p5-Module-Install-ReadmeFromPod/Makefile +++ b/devel/p5-Module-Install-ReadmeFromPod/Makefile @@ -12,10 +12,10 @@ COMMENT= Automatically generate README from POD during installation LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Module-Install>=1.00:devel/p5-Module-Install \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Module-Install>=1.00:devel/p5-Module-Install \ p5-IO-All>=0:devel/p5-IO-All \ p5-Pod-Markdown>=2.0:textproc/p5-Pod-Markdown -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Capture-Tiny>=0.05:devel/p5-Capture-Tiny \ p5-Test-InDistDir>=0:devel/p5-Test-InDistDir diff --git a/devel/p5-Module-Install-Template/Makefile b/devel/p5-Module-Install-Template/Makefile index 82965583608..b3d6dab40ef 100644 --- a/devel/p5-Module-Install-Template/Makefile +++ b/devel/p5-Module-Install-Template/Makefile @@ -11,10 +11,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Treat module source code as a template -BUILD_DEPENDS= p5-Template-Toolkit>=0:www/p5-Template-Toolkit \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Template-Toolkit>=0:www/p5-Template-Toolkit \ p5-Module-Install>=0:devel/p5-Module-Install \ p5-URI>=0:net/p5-URI -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Module-Install-TestBase/Makefile b/devel/p5-Module-Install-TestBase/Makefile index 39a4825df96..a97c45ab7cf 100644 --- a/devel/p5-Module-Install-TestBase/Makefile +++ b/devel/p5-Module-Install-TestBase/Makefile @@ -14,9 +14,9 @@ COMMENT= Module::Install Support for Test::Base LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Module-Install>=1.10:devel/p5-Module-Install \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Module-Install>=1.10:devel/p5-Module-Install \ p5-Test-Base>=0.86:devel/p5-Test-Base -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Module-Install-XSUtil/Makefile b/devel/p5-Module-Install-XSUtil/Makefile index 07c02c540e9..d227222266e 100644 --- a/devel/p5-Module-Install-XSUtil/Makefile +++ b/devel/p5-Module-Install-XSUtil/Makefile @@ -14,8 +14,8 @@ COMMENT= Utility functions for XS modules LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Module-Install>=0.91:devel/p5-Module-Install -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Module-Install>=0.91:devel/p5-Module-Install TEST_DEPENDS= p5-B-Hooks-OP-Annotation>=0.43:devel/p5-B-Hooks-OP-Annotation NO_ARCH= yes diff --git a/devel/p5-Module-Install/Makefile b/devel/p5-Module-Install/Makefile index 2bf84346dbc..ebad8eef9f2 100644 --- a/devel/p5-Module-Install/Makefile +++ b/devel/p5-Module-Install/Makefile @@ -13,12 +13,12 @@ COMMENT= Standalone, extensible Perl module installer LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-File-Remove>=1.42:devel/p5-File-Remove \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-File-Remove>=1.42:devel/p5-File-Remove \ p5-JSON>=2.14:converters/p5-JSON \ p5-Module-ScanDeps>=1.09:devel/p5-Module-ScanDeps \ p5-PAR-Dist>=0.29:devel/p5-PAR-Dist \ p5-YAML-Tiny>=1.38:textproc/p5-YAML-Tiny -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Module-Manifest/Makefile b/devel/p5-Module-Manifest/Makefile index 497af7df766..f4d1a17a3f4 100644 --- a/devel/p5-Module-Manifest/Makefile +++ b/devel/p5-Module-Manifest/Makefile @@ -13,9 +13,9 @@ COMMENT= Parse and examine a Perl distribution MANIFEST file LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Params-Util>=0:devel/p5-Params-Util \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Params-Util>=0:devel/p5-Params-Util \ p5-Test-Warn>=0:devel/p5-Test-Warn -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Exception>=0:devel/p5-Test-Exception USES= perl5 diff --git a/devel/p5-Module-Math-Depends/Makefile b/devel/p5-Module-Math-Depends/Makefile index 48832ae695e..c6500a5f11f 100644 --- a/devel/p5-Module-Math-Depends/Makefile +++ b/devel/p5-Module-Math-Depends/Makefile @@ -14,8 +14,8 @@ COMMENT= Convenience object for manipulating module dependencies LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Params-Util>=0:devel/p5-Params-Util -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Params-Util>=0:devel/p5-Params-Util USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Module-Pluggable-Fast/Makefile b/devel/p5-Module-Pluggable-Fast/Makefile index cfbd179aa9f..7fd1c0a74ec 100644 --- a/devel/p5-Module-Pluggable-Fast/Makefile +++ b/devel/p5-Module-Pluggable-Fast/Makefile @@ -12,8 +12,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Fast plugins with instantiation -BUILD_DEPENDS= p5-UNIVERSAL-require>=0:devel/p5-UNIVERSAL-require -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-UNIVERSAL-require>=0:devel/p5-UNIVERSAL-require USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Module-Release/Makefile b/devel/p5-Module-Release/Makefile index 5b6a24774af..90434a1f280 100644 --- a/devel/p5-Module-Release/Makefile +++ b/devel/p5-Module-Release/Makefile @@ -13,7 +13,8 @@ COMMENT= Upload files to CPAN and SourceForge LICENSE= ART20 LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-CACertOrg-CA>=0:security/p5-CACertOrg-CA \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-CACertOrg-CA>=0:security/p5-CACertOrg-CA \ p5-ConfigReader-Simple>=0:devel/p5-ConfigReader-Simple \ p5-DateTime>=0:devel/p5-DateTime \ p5-IO-Null>=0:devel/p5-IO-Null \ @@ -21,7 +22,6 @@ BUILD_DEPENDS= p5-CACertOrg-CA>=0:security/p5-CACertOrg-CA \ p5-Term-ReadKey>=0:devel/p5-Term-ReadKey \ p5-URI>=0:net/p5-URI \ p5-libwww>=6.02:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Capture-Tiny>=0:devel/p5-Capture-Tiny \ p5-Test-Output>=0:devel/p5-Test-Output \ p5-Test-Pod>=1:devel/p5-Test-Pod \ diff --git a/devel/p5-Module-Starter-PBP/Makefile b/devel/p5-Module-Starter-PBP/Makefile index 71619b362fd..e76f6dbc9f7 100644 --- a/devel/p5-Module-Starter-PBP/Makefile +++ b/devel/p5-Module-Starter-PBP/Makefile @@ -15,8 +15,8 @@ COMMENT= Create a module as recommended in "Perl Best Practices" LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Module-Starter>=0:devel/p5-Module-Starter -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Module-Starter>=0:devel/p5-Module-Starter USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Module-Starter/Makefile b/devel/p5-Module-Starter/Makefile index 567e8f66855..14ab8d7ac8e 100644 --- a/devel/p5-Module-Starter/Makefile +++ b/devel/p5-Module-Starter/Makefile @@ -14,8 +14,8 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Module-Runtime>=0:devel/p5-Module-Runtime -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Module-Runtime>=0:devel/p5-Module-Runtime PORTSCOUT= skipv:1.470 diff --git a/devel/p5-Mojolicious-Plugin-NYTProf/Makefile b/devel/p5-Mojolicious-Plugin-NYTProf/Makefile index 6a50c7664e8..d127d6405f6 100644 --- a/devel/p5-Mojolicious-Plugin-NYTProf/Makefile +++ b/devel/p5-Mojolicious-Plugin-NYTProf/Makefile @@ -13,10 +13,10 @@ COMMENT= Auto handling of Devel::NYTProf in your Mojolicious app LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Devel-NYTProf>=5.07:devel/p5-Devel-NYTProf \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Devel-NYTProf>=5.07:devel/p5-Devel-NYTProf \ p5-File-Which>=1.09:sysutils/p5-File-Which \ p5-Mojolicious>=6.00:www/p5-Mojolicious -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Algorithm-Combinatorics>=0:math/p5-Algorithm-Combinatorics \ p5-Test-Exception>=0:devel/p5-Test-Exception diff --git a/devel/p5-MooX-Cmd/Makefile b/devel/p5-MooX-Cmd/Makefile index bcea296977d..5e522be1b0d 100644 --- a/devel/p5-MooX-Cmd/Makefile +++ b/devel/p5-MooX-Cmd/Makefile @@ -13,13 +13,13 @@ COMMENT= Giving an easy Moo style way to make command organized CLI apps LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-IO-TieCombine>=0:devel/p5-IO-TieCombine \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-IO-TieCombine>=0:devel/p5-IO-TieCombine \ p5-Module-Pluggable>=4.8:devel/p5-Module-Pluggable \ p5-Moo>=0.009013:devel/p5-Moo \ p5-Package-Stash>=0.33:devel/p5-Package-Stash \ p5-Regexp-Common>=2011121001:textproc/p5-Regexp-Common \ p5-Test-LoadAllModules>=0.021:devel/p5-Test-LoadAllModules -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-IO-TieCombine>=0:devel/p5-IO-TieCombine USES= perl5 diff --git a/devel/p5-MooX-ConfigFromFile/Makefile b/devel/p5-MooX-ConfigFromFile/Makefile index 464c2891aca..c62afe3af22 100644 --- a/devel/p5-MooX-ConfigFromFile/Makefile +++ b/devel/p5-MooX-ConfigFromFile/Makefile @@ -13,12 +13,12 @@ COMMENT= Moo eXtension for initializing objects from config file LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Config-Any>=0:devel/p5-Config-Any \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Config-Any>=0:devel/p5-Config-Any \ p5-File-Find-Rule>=0.30:devel/p5-File-Find-Rule \ p5-Hash-Merge>=0:textproc/p5-Hash-Merge \ p5-Moo>=1.003000:devel/p5-Moo \ p5-MooX-File-ConfigDir>=0.002:devel/p5-MooX-File-ConfigDir -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USE_PERL5= configure diff --git a/devel/p5-MooX-File-ConfigDir/Makefile b/devel/p5-MooX-File-ConfigDir/Makefile index c03e97b4802..d36e878361d 100644 --- a/devel/p5-MooX-File-ConfigDir/Makefile +++ b/devel/p5-MooX-File-ConfigDir/Makefile @@ -13,9 +13,9 @@ COMMENT= Moo eXtension for File::ConfigDir LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-File-ConfigDir>=0.018:devel/p5-File-ConfigDir \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-File-ConfigDir>=0.018:devel/p5-File-ConfigDir \ p5-Moo>=1.003000:devel/p5-Moo -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USE_PERL5= configure diff --git a/devel/p5-MooX-HandlesVia/Makefile b/devel/p5-MooX-HandlesVia/Makefile index add79502c45..2dd87e80faf 100644 --- a/devel/p5-MooX-HandlesVia/Makefile +++ b/devel/p5-MooX-HandlesVia/Makefile @@ -12,9 +12,9 @@ COMMENT= NativeTrait-like behavior for Moo LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Data-Perl>=0.002006:devel/p5-Data-Perl \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Data-Perl>=0.002006:devel/p5-Data-Perl \ p5-Moo>=1.003000:devel/p5-Moo -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Fatal>=0:devel/p5-Test-Fatal \ p5-Test-Exception>=0:devel/p5-Test-Exception \ p5-MooX-Types-MooseLike>=0.23:devel/p5-MooX-Types-MooseLike diff --git a/devel/p5-MooX-Options/Makefile b/devel/p5-MooX-Options/Makefile index 4ebabff8036..19c9691b8f9 100644 --- a/devel/p5-MooX-Options/Makefile +++ b/devel/p5-MooX-Options/Makefile @@ -12,7 +12,8 @@ COMMENT= Option keywords to your object (Mo/Moo/Moose) LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Data-Record>=0:devel/p5-Data-Record \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Data-Record>=0:devel/p5-Data-Record \ p5-Getopt-Long-Descriptive>=0.091:devel/p5-Getopt-Long-Descriptive \ p5-JSON>=0:converters/p5-JSON \ p5-MRO-Compat>=0:devel/p5-MRO-Compat \ @@ -22,7 +23,6 @@ BUILD_DEPENDS= p5-Data-Record>=0:devel/p5-Data-Record \ p5-Regexp-Common>=0:textproc/p5-Regexp-Common \ p5-Term-Size-Any>=0:devel/p5-Term-Size-Any \ p5-Unicode-LineBreak>=0:textproc/p5-Unicode-LineBreak -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Capture-Tiny>=0:devel/p5-Capture-Tiny \ p5-Mo>=0:devel/p5-Mo \ p5-Moose>=0:devel/p5-Moose \ diff --git a/devel/p5-MooX-StrictConstructor/Makefile b/devel/p5-MooX-StrictConstructor/Makefile index 33035e7649d..24c20d22708 100644 --- a/devel/p5-MooX-StrictConstructor/Makefile +++ b/devel/p5-MooX-StrictConstructor/Makefile @@ -13,10 +13,10 @@ COMMENT= Make your Moo-based object constructors blow up on unknown attributes LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Class-Method-Modifiers>=0:devel/p5-Class-Method-Modifiers \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Method-Modifiers>=0:devel/p5-Class-Method-Modifiers \ p5-Moo>=1.001000:devel/p5-Moo \ p5-strictures>=1:devel/p5-strictures -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Fatal>=0:devel/p5-Test-Fatal NO_ARCH= yes diff --git a/devel/p5-MooX-Thunking/Makefile b/devel/p5-MooX-Thunking/Makefile index 18ef8039a09..544f8fa7286 100644 --- a/devel/p5-MooX-Thunking/Makefile +++ b/devel/p5-MooX-Thunking/Makefile @@ -12,9 +12,9 @@ COMMENT= Allow Moo attributes to be thunked LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Moo>=0:devel/p5-Moo \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Moo>=0:devel/p5-Moo \ p5-Type-Tiny>=0:devel/p5-Type-Tiny -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-MooX-TypeTiny/Makefile b/devel/p5-MooX-TypeTiny/Makefile index c7200d3e267..a9b0c013a24 100644 --- a/devel/p5-MooX-TypeTiny/Makefile +++ b/devel/p5-MooX-TypeTiny/Makefile @@ -13,9 +13,9 @@ COMMENT= Optimized type checks for Moo + Type::Tiny LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Moo>=1.004003:devel/p5-Moo \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Moo>=1.004003:devel/p5-Moo \ p5-Type-Tiny>=1.000002:devel/p5-Type-Tiny -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Fatal>=0:devel/p5-Test-Fatal USES= perl5 diff --git a/devel/p5-MooX-Types-MooseLike-Numeric/Makefile b/devel/p5-MooX-Types-MooseLike-Numeric/Makefile index 8de69f2648f..6de82938198 100644 --- a/devel/p5-MooX-Types-MooseLike-Numeric/Makefile +++ b/devel/p5-MooX-Types-MooseLike-Numeric/Makefile @@ -13,9 +13,9 @@ COMMENT= Moo types for numbers LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Moo>=1.004002:devel/p5-Moo \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Moo>=1.004002:devel/p5-Moo \ p5-MooX-Types-MooseLike>=0.23:devel/p5-MooX-Types-MooseLike -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Fatal>=0.003:devel/p5-Test-Fatal NO_ARCH= yes diff --git a/devel/p5-MooX-Types-MooseLike/Makefile b/devel/p5-MooX-Types-MooseLike/Makefile index 05c72d4aaf3..3ac0f3c8785 100644 --- a/devel/p5-MooX-Types-MooseLike/Makefile +++ b/devel/p5-MooX-Types-MooseLike/Makefile @@ -13,8 +13,8 @@ COMMENT= Some Moosish types and a typer builder LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Module-Runtime>=0.014:devel/p5-Module-Runtime -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Module-Runtime>=0.014:devel/p5-Module-Runtime TEST_DEPENDS= p5-Moo>=1.004002:devel/p5-Moo \ p5-Set-Object>=1:devel/p5-Set-Object \ p5-Test-Fatal>=0.003:devel/p5-Test-Fatal diff --git a/devel/p5-Moos/Makefile b/devel/p5-Moos/Makefile index a854f5f0f55..bceb33d2f4e 100644 --- a/devel/p5-Moos/Makefile +++ b/devel/p5-Moos/Makefile @@ -15,9 +15,9 @@ COMMENT= Moo s{imple,peedy,ingle} LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Class-XSAccessor>=1.07:devel/p5-Class-XSAccessor \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-XSAccessor>=1.07:devel/p5-Class-XSAccessor \ p5-Role-Tiny>=1.002.000:devel/p5-Role-Tiny -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Sub-Identify>=0.04:devel/p5-Sub-Identify \ p5-namespace-autoclean>=0:devel/p5-namespace-autoclean diff --git a/devel/p5-Moose-Autobox/Makefile b/devel/p5-Moose-Autobox/Makefile index 4175f987819..6e87d4673c9 100644 --- a/devel/p5-Moose-Autobox/Makefile +++ b/devel/p5-Moose-Autobox/Makefile @@ -15,10 +15,10 @@ COMMENT= Autoboxed wrappers for Native Perl datatypes LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-autobox>=2.23:devel/p5-autobox \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-autobox>=2.23:devel/p5-autobox \ p5-Moose>=0.42:devel/p5-Moose \ p5-Syntax-Keyword-Junction>=0:devel/p5-Syntax-Keyword-Junction -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Exception>=0.21:devel/p5-Test-Exception USES= perl5 diff --git a/devel/p5-Moose-Policy/Makefile b/devel/p5-Moose-Policy/Makefile index 0436635441b..702fa0b6539 100644 --- a/devel/p5-Moose-Policy/Makefile +++ b/devel/p5-Moose-Policy/Makefile @@ -12,8 +12,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Moose-mounted police -BUILD_DEPENDS= p5-Moose>=0:devel/p5-Moose -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Moose>=0:devel/p5-Moose TEST_DEPENDS= p5-Test-Exception>=0:devel/p5-Test-Exception USES= perl5 diff --git a/devel/p5-Moose-Test/Makefile b/devel/p5-Moose-Test/Makefile index f40a402a70e..75767970e12 100644 --- a/devel/p5-Moose-Test/Makefile +++ b/devel/p5-Moose-Test/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Test Runner for the Moose test suite -BUILD_DEPENDS= p5-Mouse>=0:devel/p5-Mouse \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Mouse>=0:devel/p5-Mouse \ p5-Path-Class>=0:devel/p5-Path-Class -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-MooseX-App-Cmd/Makefile b/devel/p5-MooseX-App-Cmd/Makefile index d83e499c5d5..b2c3f11b8bf 100644 --- a/devel/p5-MooseX-App-Cmd/Makefile +++ b/devel/p5-MooseX-App-Cmd/Makefile @@ -13,13 +13,13 @@ COMMENT= Mashes up MooseX::Getopt and App::Cmd LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-App-Cmd>=0.321:devel/p5-App-Cmd \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-App-Cmd>=0.321:devel/p5-App-Cmd \ p5-Getopt-Long-Descriptive>=0.091:devel/p5-Getopt-Long-Descriptive \ p5-Moose>=0:devel/p5-Moose \ p5-MooseX-Getopt>=0:devel/p5-MooseX-Getopt \ p5-MooseX-NonMoose>=0:devel/p5-MooseX-NonMoose \ p5-namespace-autoclean>=0:devel/p5-namespace-autoclean -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-MooseX-ConfigFromFile>=0:devel/p5-MooseX-ConfigFromFile \ p5-Test-Output>=0:devel/p5-Test-Output \ p5-YAML>=0:textproc/p5-YAML diff --git a/devel/p5-MooseX-App/Makefile b/devel/p5-MooseX-App/Makefile index 4c8c601b070..239a1e95358 100644 --- a/devel/p5-MooseX-App/Makefile +++ b/devel/p5-MooseX-App/Makefile @@ -13,14 +13,14 @@ COMMENT= Write user-friendly command line apps with even less suffering LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Config-Any>=0:devel/p5-Config-Any \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Config-Any>=0:devel/p5-Config-Any \ p5-IO-Interactive>=0:devel/p5-IO-Interactive \ p5-Moose>=2:devel/p5-Moose \ p5-MooseX-Types-Path-Class>=0:devel/p5-MooseX-Types-Path-Class \ p5-Path-Class>=0:devel/p5-Path-Class \ p5-Pod-Elemental>=0:textproc/p5-Pod-Elemental \ p5-namespace-autoclean>=0:devel/p5-namespace-autoclean -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Most>=0:devel/p5-Test-Most \ p5-Test-NoWarnings>=0:devel/p5-Test-NoWarnings @@ -31,7 +31,8 @@ USES= perl5 .include .if ${PERL_LEVEL} < 502502 -BUILD_DEPENDS+= p5-Scalar-List-Utils>=1.44:lang/p5-Scalar-List-Utils +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS+= p5-Scalar-List-Utils>=1.44:lang/p5-Scalar-List-Utils RUN_DEPENDS+= p5-Scalar-List-Utils>=1.44:lang/p5-Scalar-List-Utils .endif diff --git a/devel/p5-MooseX-ArrayRef/Makefile b/devel/p5-MooseX-ArrayRef/Makefile index b3114eb1bf0..0e4adc507ab 100644 --- a/devel/p5-MooseX-ArrayRef/Makefile +++ b/devel/p5-MooseX-ArrayRef/Makefile @@ -13,8 +13,8 @@ COMMENT= Moose blessed array references LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Moose>=2.00:devel/p5-Moose -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Moose>=2.00:devel/p5-Moose USES= perl5 USE_PERL5= configure diff --git a/devel/p5-MooseX-Attribute-Chained/Makefile b/devel/p5-MooseX-Attribute-Chained/Makefile index 2873c187e7a..c95d0f02cd7 100644 --- a/devel/p5-MooseX-Attribute-Chained/Makefile +++ b/devel/p5-MooseX-Attribute-Chained/Makefile @@ -14,9 +14,9 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Moose>=0:devel/p5-Moose \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Moose>=0:devel/p5-Moose \ p5-Try-Tiny>=0:lang/p5-Try-Tiny -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USE_PERL5= modbuild diff --git a/devel/p5-MooseX-Attribute-ENV/Makefile b/devel/p5-MooseX-Attribute-ENV/Makefile index bb3b0f2e7b5..af434519aa8 100644 --- a/devel/p5-MooseX-Attribute-ENV/Makefile +++ b/devel/p5-MooseX-Attribute-ENV/Makefile @@ -14,8 +14,8 @@ COMMENT= Set default of an attribute to a value from %ENV LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Moose>=1.19:devel/p5-Moose -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Moose>=1.19:devel/p5-Moose USES= perl5 USE_PERL5= configure diff --git a/devel/p5-MooseX-AttributeHelpers/Makefile b/devel/p5-MooseX-AttributeHelpers/Makefile index 366ced09fa6..81c0e49bf40 100644 --- a/devel/p5-MooseX-AttributeHelpers/Makefile +++ b/devel/p5-MooseX-AttributeHelpers/Makefile @@ -13,8 +13,8 @@ COMMENT= Extend your attribute interfaces LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Moose>=0.56:devel/p5-Moose -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Moose>=0.56:devel/p5-Moose TEST_DEPENDS= p5-Test-Exception>=0:devel/p5-Test-Exception NO_ARCH= yes diff --git a/devel/p5-MooseX-AttributeShortcuts/Makefile b/devel/p5-MooseX-AttributeShortcuts/Makefile index 371a3c7ffe0..46e4b639185 100644 --- a/devel/p5-MooseX-AttributeShortcuts/Makefile +++ b/devel/p5-MooseX-AttributeShortcuts/Makefile @@ -12,7 +12,8 @@ COMMENT= Shorthand for common attribute options LICENSE= LGPL21 LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Moose>=1.14:devel/p5-Moose \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Moose>=1.14:devel/p5-Moose \ p5-MooseX-Meta-TypeConstraint-Mooish>=0:devel/p5-MooseX-Meta-TypeConstraint-Mooish \ p5-MooseX-Role-Parameterized>=0:devel/p5-MooseX-Role-Parameterized \ p5-MooseX-Types>=0:devel/p5-MooseX-Types \ @@ -20,7 +21,6 @@ BUILD_DEPENDS= p5-Moose>=1.14:devel/p5-Moose \ p5-MooseX-Util>=0:devel/p5-MooseX-Util \ p5-aliased>=0:devel/p5-aliased \ p5-namespace-autoclean>=0.24:devel/p5-namespace-autoclean -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-MooseX-Types-Path-Class>=0:devel/p5-MooseX-Types-Path-Class \ p5-Path-Class>=0:devel/p5-Path-Class \ p5-Test-CheckDeps>=0.010:devel/p5-Test-CheckDeps \ diff --git a/devel/p5-MooseX-AuthorizedMethods/Makefile b/devel/p5-MooseX-AuthorizedMethods/Makefile index dfd79639f7e..ba3166a9aa9 100644 --- a/devel/p5-MooseX-AuthorizedMethods/Makefile +++ b/devel/p5-MooseX-AuthorizedMethods/Makefile @@ -14,9 +14,9 @@ COMMENT= Syntax sugar for authorized methods LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Moose>=1.21:devel/p5-Moose \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Moose>=1.21:devel/p5-Moose \ p5-aliased>=0:devel/p5-aliased -RUN_DEPENDS:= ${BUILD_DEPENDS} USE_PERL5= configure USES= perl5 diff --git a/devel/p5-MooseX-ClassAttribute/Makefile b/devel/p5-MooseX-ClassAttribute/Makefile index b088a36e47f..da800ca667a 100644 --- a/devel/p5-MooseX-ClassAttribute/Makefile +++ b/devel/p5-MooseX-ClassAttribute/Makefile @@ -14,11 +14,11 @@ COMMENT= Declare class attributes Moose-style LICENSE= ART20 LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Moose>=2:devel/p5-Moose \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Moose>=2:devel/p5-Moose \ p5-Scalar-List-Utils>=1.45:lang/p5-Scalar-List-Utils \ p5-namespace-autoclean>=0.11:devel/p5-namespace-autoclean \ p5-namespace-clean>=0.20:devel/p5-namespace-clean -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-MooseX-Role-Parameterized>=0:devel/p5-MooseX-Role-Parameterized \ p5-MooseX-Role-Strict>=0:devel/p5-MooseX-Role-Strict \ p5-Test-Requires>=0.05:devel/p5-Test-Requires \ diff --git a/devel/p5-MooseX-Daemonize/Makefile b/devel/p5-MooseX-Daemonize/Makefile index 66a817b2335..9c9ab5ab2e8 100644 --- a/devel/p5-MooseX-Daemonize/Makefile +++ b/devel/p5-MooseX-Daemonize/Makefile @@ -13,12 +13,12 @@ COMMENT= Role for daemonizing your Moose based application LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Moose>=0.33:devel/p5-Moose \ +BUILD_DEPENDS= ${RUN_DEPENDS} \ + p5-Devel-CheckOS>=1.63:devel/p5-Devel-CheckOS +RUN_DEPENDS= p5-Moose>=0.33:devel/p5-Moose \ p5-MooseX-Getopt>=0.07:devel/p5-MooseX-Getopt \ p5-MooseX-Types-Path-Class>=0:devel/p5-MooseX-Types-Path-Class -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Fatal>=0:devel/p5-Test-Fatal -BUILD_DEPENDS+= p5-Devel-CheckOS>=1.63:devel/p5-Devel-CheckOS NO_ARCH= yes USES= perl5 diff --git a/devel/p5-MooseX-Declare/Makefile b/devel/p5-MooseX-Declare/Makefile index d36c6b25662..57a5c8b8f04 100644 --- a/devel/p5-MooseX-Declare/Makefile +++ b/devel/p5-MooseX-Declare/Makefile @@ -13,7 +13,8 @@ COMMENT= Declarative syntax for Moose LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Devel-Declare>=0.005011:devel/p5-Devel-Declare \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Devel-Declare>=0.005011:devel/p5-Devel-Declare \ p5-Module-Runtime>=0:devel/p5-Module-Runtime \ p5-Moose>=0.90:devel/p5-Moose \ p5-MooseX-Method-Signatures>=0.36:devel/p5-MooseX-Method-Signatures \ @@ -25,7 +26,6 @@ BUILD_DEPENDS= p5-Devel-Declare>=0.005011:devel/p5-Devel-Declare \ p5-aliased>=0:devel/p5-aliased \ p5-namespace-autoclean>=0.16:devel/p5-namespace-autoclean \ p5-namespace-clean>=0.19:devel/p5-namespace-clean -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Fatal>=0:devel/p5-Test-Fatal USES= perl5 diff --git a/devel/p5-MooseX-FollowPBP/Makefile b/devel/p5-MooseX-FollowPBP/Makefile index a4283ad6d9b..5c97442464f 100644 --- a/devel/p5-MooseX-FollowPBP/Makefile +++ b/devel/p5-MooseX-FollowPBP/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= culot@FreeBSD.org COMMENT= Name your accessors get_foo() and set_foo() -BUILD_DEPENDS= p5-Moose>=1.16:devel/p5-Moose -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Moose>=1.16:devel/p5-Moose LICENSE= ART20 diff --git a/devel/p5-MooseX-Getopt/Makefile b/devel/p5-MooseX-Getopt/Makefile index dbd987a93b4..3e2ab2b500a 100644 --- a/devel/p5-MooseX-Getopt/Makefile +++ b/devel/p5-MooseX-Getopt/Makefile @@ -15,13 +15,13 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Getopt-Long-Descriptive>=0.081:devel/p5-Getopt-Long-Descriptive \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Getopt-Long-Descriptive>=0.081:devel/p5-Getopt-Long-Descriptive \ p5-Moose>=0.56:devel/p5-Moose \ p5-MooseX-ConfigFromFile>=0:devel/p5-MooseX-ConfigFromFile \ p5-MooseX-Role-Parameterized>=1.01:devel/p5-MooseX-Role-Parameterized \ p5-Try-Tiny>=0:lang/p5-Try-Tiny \ p5-namespace-autoclean>=0:devel/p5-namespace-autoclean -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-MooseX-SimpleConfig>=0.07:devel/p5-MooseX-SimpleConfig \ p5-Module-Runtime>=0:devel/p5-Module-Runtime \ p5-Path-Tiny>=0.009:devel/p5-Path-Tiny \ diff --git a/devel/p5-MooseX-Has-Options/Makefile b/devel/p5-MooseX-Has-Options/Makefile index ce8cd3a50dc..f0b4b052365 100644 --- a/devel/p5-MooseX-Has-Options/Makefile +++ b/devel/p5-MooseX-Has-Options/Makefile @@ -11,13 +11,13 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= MooseX::Has::Options - Succinct options for Moose -BUILD_DEPENDS= p5-Class-Load>=0:devel/p5-Class-Load \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Load>=0:devel/p5-Class-Load \ p5-List-MoreUtils>=0:lang/p5-List-MoreUtils \ p5-Package-Stash>=0.18:devel/p5-Package-Stash \ p5-String-RewritePrefix>=0:textproc/p5-String-RewritePrefix \ p5-Moose>=0:devel/p5-Moose \ p5-namespace-autoclean>=0:devel/p5-namespace-autoclean -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Most>=0:devel/p5-Test-Most USES= perl5 diff --git a/devel/p5-MooseX-Has-Sugar/Makefile b/devel/p5-MooseX-Has-Sugar/Makefile index 94fcd7e9eab..2a802964d21 100644 --- a/devel/p5-MooseX-Has-Sugar/Makefile +++ b/devel/p5-MooseX-Has-Sugar/Makefile @@ -14,8 +14,8 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Sub-Exporter-Progressive>=0:devel/p5-Sub-Exporter-Progressive -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Sub-Exporter-Progressive>=0:devel/p5-Sub-Exporter-Progressive TEST_DEPENDS= p5-MooseX-Types>=0.44:devel/p5-MooseX-Types \ p5-Test-Fatal>=0:devel/p5-Test-Fatal \ p5-namespace-clean>=0:devel/p5-namespace-clean diff --git a/devel/p5-MooseX-InsideOut/Makefile b/devel/p5-MooseX-InsideOut/Makefile index 71e1438ef1e..3c66ffa4250 100644 --- a/devel/p5-MooseX-InsideOut/Makefile +++ b/devel/p5-MooseX-InsideOut/Makefile @@ -11,10 +11,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Inside-out objects with Moose -BUILD_DEPENDS= p5-Hash-Util-FieldHash-Compat>=0:devel/p5-Hash-Util-FieldHash-Compat \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Hash-Util-FieldHash-Compat>=0:devel/p5-Hash-Util-FieldHash-Compat \ p5-Moose>=2:devel/p5-Moose \ p5-namespace-clean>=0.11:devel/p5-namespace-clean -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-MooseX-LazyRequire/Makefile b/devel/p5-MooseX-LazyRequire/Makefile index 97a611a77b4..e01c47583cf 100644 --- a/devel/p5-MooseX-LazyRequire/Makefile +++ b/devel/p5-MooseX-LazyRequire/Makefile @@ -12,10 +12,10 @@ COMMENT= Required attributes which fail only when trying to use them LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Moose>=0.94:devel/p5-Moose \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Moose>=0.94:devel/p5-Moose \ p5-aliased>=0.30:devel/p5-aliased \ p5-namespace-autoclean>=0:devel/p5-namespace-autoclean -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Fatal>=0:devel/p5-Test-Fatal USES= perl5 diff --git a/devel/p5-MooseX-Log-Log4perl/Makefile b/devel/p5-MooseX-Log-Log4perl/Makefile index 63b2ff92f42..098b73655ec 100644 --- a/devel/p5-MooseX-Log-Log4perl/Makefile +++ b/devel/p5-MooseX-Log-Log4perl/Makefile @@ -10,9 +10,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Logging role for Moose based on Log::Log4perl -BUILD_DEPENDS= p5-Any-Moose>=0.12:devel/p5-Any-Moose \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Any-Moose>=0.12:devel/p5-Any-Moose \ p5-Log-Log4perl>=1.13:devel/p5-Log-Log4perl -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-IO-stringy>=0:devel/p5-IO-stringy \ p5-Moose>=0.65:devel/p5-Moose diff --git a/devel/p5-MooseX-MarkAsMethods/Makefile b/devel/p5-MooseX-MarkAsMethods/Makefile index c19ede1aa14..21fc922ba8b 100644 --- a/devel/p5-MooseX-MarkAsMethods/Makefile +++ b/devel/p5-MooseX-MarkAsMethods/Makefile @@ -11,10 +11,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= sunpoet@FreeBSD.org COMMENT= Mark overload code symbols as methods -BUILD_DEPENDS= p5-B-Hooks-EndOfScope>=0:devel/p5-B-Hooks-EndOfScope \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-B-Hooks-EndOfScope>=0:devel/p5-B-Hooks-EndOfScope \ p5-Moose>=0.94:devel/p5-Moose \ p5-namespace-autoclean>=0.12:devel/p5-namespace-autoclean -RUN_DEPENDS:= ${BUILD_DEPENDS} USE_PERL5= configure USES= perl5 diff --git a/devel/p5-MooseX-Meta-TypeConstraint-ForceCoercion/Makefile b/devel/p5-MooseX-Meta-TypeConstraint-ForceCoercion/Makefile index 6d3d6b20fd1..3ad72915ddf 100644 --- a/devel/p5-MooseX-Meta-TypeConstraint-ForceCoercion/Makefile +++ b/devel/p5-MooseX-Meta-TypeConstraint-ForceCoercion/Makefile @@ -15,9 +15,9 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Moose>=0:devel/p5-Moose \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Moose>=0:devel/p5-Moose \ p5-namespace-autoclean>=0:devel/p5-namespace-autoclean -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-MooseX-Meta-TypeConstraint-Mooish/Makefile b/devel/p5-MooseX-Meta-TypeConstraint-Mooish/Makefile index 4b014eaa37e..7ac7a132c13 100644 --- a/devel/p5-MooseX-Meta-TypeConstraint-Mooish/Makefile +++ b/devel/p5-MooseX-Meta-TypeConstraint-Mooish/Makefile @@ -11,10 +11,10 @@ COMMENT= Translate Moo-style constraints to Moose-style LICENSE= LGPL21 -BUILD_DEPENDS= p5-Moose>=0:devel/p5-Moose \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Moose>=0:devel/p5-Moose \ p5-Try-Tiny>=0:lang/p5-Try-Tiny \ p5-namespace-autoclean>=0.24:devel/p5-namespace-autoclean -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-CheckDeps>=0.010:devel/p5-Test-CheckDeps \ p5-Test-Fatal>=0:devel/p5-Test-Fatal \ p5-Test-Moose-More>=0.028:devel/p5-Test-Moose-More \ diff --git a/devel/p5-MooseX-MetaDescription/Makefile b/devel/p5-MooseX-MetaDescription/Makefile index 19a35410f33..ca8da7fed99 100644 --- a/devel/p5-MooseX-MetaDescription/Makefile +++ b/devel/p5-MooseX-MetaDescription/Makefile @@ -14,8 +14,8 @@ COMMENT= Framework for adding additional metadata to Moose classes LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Moose>=0.4:devel/p5-Moose -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Moose>=0.4:devel/p5-Moose TEST_DEPENDS= p5-Test-Exception>=0:devel/p5-Test-Exception USE_PERL5= configure diff --git a/devel/p5-MooseX-Method-Signatures/Makefile b/devel/p5-MooseX-Method-Signatures/Makefile index d57353886b2..01298e50177 100644 --- a/devel/p5-MooseX-Method-Signatures/Makefile +++ b/devel/p5-MooseX-Method-Signatures/Makefile @@ -13,7 +13,8 @@ COMMENT= Method declarations with type constraints and no source filter LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-B-Hooks-EndOfScope>=0.10:devel/p5-B-Hooks-EndOfScope \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-B-Hooks-EndOfScope>=0.10:devel/p5-B-Hooks-EndOfScope \ p5-Devel-Declare>=0.005011:devel/p5-Devel-Declare \ p5-Context-Preserve>=0:devel/p5-Context-Preserve \ p5-Module-Runtime>=0.012:devel/p5-Module-Runtime \ @@ -28,7 +29,6 @@ BUILD_DEPENDS= p5-B-Hooks-EndOfScope>=0.10:devel/p5-B-Hooks-EndOfScope \ p5-aliased>=0:devel/p5-aliased \ p5-namespace-autoclean>=0:devel/p5-namespace-autoclean \ p5-namespace-clean>=0.19:devel/p5-namespace-clean -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Eval-Closure>=0:devel/p5-Eval-Closure \ p5-Test-Deep>=0:devel/p5-Test-Deep \ p5-Test-Fatal>=0:devel/p5-Test-Fatal diff --git a/devel/p5-MooseX-MethodAttributes/Makefile b/devel/p5-MooseX-MethodAttributes/Makefile index 7440544d3a2..3748838f347 100644 --- a/devel/p5-MooseX-MethodAttributes/Makefile +++ b/devel/p5-MooseX-MethodAttributes/Makefile @@ -13,10 +13,10 @@ COMMENT= Code attribute introspection LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Moose>=0.98:devel/p5-Moose \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Moose>=0.98:devel/p5-Moose \ p5-MooseX-Types>=0.21:devel/p5-MooseX-Types \ p5-namespace-autoclean>=0.08:devel/p5-namespace-autoclean -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-MooseX-Role-Parameterized>=0:devel/p5-MooseX-Role-Parameterized \ p5-Test-Fatal>=0:devel/p5-Test-Fatal \ p5-Test-Requires>=0:devel/p5-Test-Requires diff --git a/devel/p5-MooseX-NonMoose/Makefile b/devel/p5-MooseX-NonMoose/Makefile index 0470b91b180..50cf7943a95 100644 --- a/devel/p5-MooseX-NonMoose/Makefile +++ b/devel/p5-MooseX-NonMoose/Makefile @@ -15,11 +15,11 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-List-MoreUtils>=0:lang/p5-List-MoreUtils \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-List-MoreUtils>=0:lang/p5-List-MoreUtils \ p5-Module-Runtime>=0:devel/p5-Module-Runtime \ p5-Moose>=2:devel/p5-Moose \ p5-Try-Tiny>=0:lang/p5-Try-Tiny -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-MooseX-InsideOut>=0:devel/p5-MooseX-InsideOut \ p5-Test-Fatal>=0:devel/p5-Test-Fatal diff --git a/devel/p5-MooseX-Object-Pluggable/Makefile b/devel/p5-MooseX-Object-Pluggable/Makefile index 09e912eba7b..154021b3297 100644 --- a/devel/p5-MooseX-Object-Pluggable/Makefile +++ b/devel/p5-MooseX-Object-Pluggable/Makefile @@ -15,12 +15,12 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Moose>=0:devel/p5-Moose \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Moose>=0:devel/p5-Moose \ p5-Module-Runtime>=0:devel/p5-Module-Runtime \ p5-Try-Tiny>=0:lang/p5-Try-Tiny \ p5-Module-Pluggable>=0:devel/p5-Module-Pluggable \ p5-namespace-autoclean>=0:devel/p5-namespace-autoclean -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Fatal>=0:devel/p5-Test-Fatal USES= perl5 diff --git a/devel/p5-MooseX-OneArgNew/Makefile b/devel/p5-MooseX-OneArgNew/Makefile index 60c2588622a..8a8b0e6e36c 100644 --- a/devel/p5-MooseX-OneArgNew/Makefile +++ b/devel/p5-MooseX-OneArgNew/Makefile @@ -14,10 +14,10 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Moose>=0:devel/p5-Moose \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Moose>=0:devel/p5-Moose \ p5-MooseX-Role-Parameterized>=1.01:devel/p5-MooseX-Role-Parameterized \ p5-namespace-autoclean>=0:devel/p5-namespace-autoclean -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/devel/p5-MooseX-POE/Makefile b/devel/p5-MooseX-POE/Makefile index 9dcbf92cd19..ec778f3acbd 100644 --- a/devel/p5-MooseX-POE/Makefile +++ b/devel/p5-MooseX-POE/Makefile @@ -15,9 +15,9 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Moose>=2.0002:devel/p5-Moose \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Moose>=2.0002:devel/p5-Moose \ p5-POE>=1.310:devel/p5-POE -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-MooseX-Declare>=0:devel/p5-MooseX-Declare \ p5-Test-Fatal>=0.003:devel/p5-Test-Fatal diff --git a/devel/p5-MooseX-Params-Validate/Makefile b/devel/p5-MooseX-Params-Validate/Makefile index 5d620053032..264e7e6c9c7 100644 --- a/devel/p5-MooseX-Params-Validate/Makefile +++ b/devel/p5-MooseX-Params-Validate/Makefile @@ -13,11 +13,11 @@ COMMENT= Extension of Params::Validate for using Moose types LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Devel-Caller>=0:devel/p5-Devel-Caller \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Devel-Caller>=0:devel/p5-Devel-Caller \ p5-Moose>=0.58:devel/p5-Moose \ p5-Params-Validate>=0.88:devel/p5-Params-Validate \ p5-Sub-Exporter>=0:devel/p5-Sub-Exporter -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Fatal>=0:devel/p5-Test-Fatal USES= perl5 diff --git a/devel/p5-MooseX-RelatedClassRoles/Makefile b/devel/p5-MooseX-RelatedClassRoles/Makefile index 79b0eb2be3d..5ed22609e65 100644 --- a/devel/p5-MooseX-RelatedClassRoles/Makefile +++ b/devel/p5-MooseX-RelatedClassRoles/Makefile @@ -10,9 +10,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Apply roles to a class related to yours -BUILD_DEPENDS= p5-Moose>=2:devel/p5-Moose \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Moose>=2:devel/p5-Moose \ p5-MooseX-Role-Parameterized>=0.04:devel/p5-MooseX-Role-Parameterized -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-MooseX-Role-Loggable/Makefile b/devel/p5-MooseX-Role-Loggable/Makefile index 273e2721e66..ce25ec82c25 100644 --- a/devel/p5-MooseX-Role-Loggable/Makefile +++ b/devel/p5-MooseX-Role-Loggable/Makefile @@ -14,12 +14,12 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Log-Dispatchouli>=0:devel/p5-Log-Dispatchouli \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Log-Dispatchouli>=0:devel/p5-Log-Dispatchouli \ p5-Moo>=1.000001:devel/p5-Moo \ p5-MooX-Types-MooseLike>=0:devel/p5-MooX-Types-MooseLike \ p5-Safe-Isa>=0:devel/p5-Safe-Isa \ p5-namespace-autoclean>=0:devel/p5-namespace-autoclean -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Fatal>=0:devel/p5-Test-Fatal NO_ARCH= yes diff --git a/devel/p5-MooseX-Role-Matcher/Makefile b/devel/p5-MooseX-Role-Matcher/Makefile index eaf9a5a78c7..2e871e7eb03 100644 --- a/devel/p5-MooseX-Role-Matcher/Makefile +++ b/devel/p5-MooseX-Role-Matcher/Makefile @@ -14,9 +14,9 @@ COMMENT= Generic object matching based on attributes and methods LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-List-MoreUtils>=0:lang/p5-List-MoreUtils \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-List-MoreUtils>=0:lang/p5-List-MoreUtils \ p5-MooseX-Role-Parameterized>=0.03:devel/p5-MooseX-Role-Parameterized -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Deep>=0:devel/p5-Test-Deep USE_PERL5= configure diff --git a/devel/p5-MooseX-Role-Parameterized/Makefile b/devel/p5-MooseX-Role-Parameterized/Makefile index d5c556a8d51..734a6a1d5a7 100644 --- a/devel/p5-MooseX-Role-Parameterized/Makefile +++ b/devel/p5-MooseX-Role-Parameterized/Makefile @@ -14,11 +14,11 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Module-Runtime>=0:devel/p5-Module-Runtime \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Module-Runtime>=0:devel/p5-Module-Runtime \ p5-Moose>=2.0300:devel/p5-Moose \ p5-namespace-autoclean>=0:devel/p5-namespace-autoclean \ p5-namespace-clean>=0.19:devel/p5-namespace-clean -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-CPAN-Meta-Check>=0.011:devel/p5-CPAN-Meta-Check \ p5-Test-Fatal>=0:devel/p5-Test-Fatal \ p5-Test-Requires>=0:devel/p5-Test-Requires diff --git a/devel/p5-MooseX-Role-Strict/Makefile b/devel/p5-MooseX-Role-Strict/Makefile index 88a4381795b..75c097bc4ac 100644 --- a/devel/p5-MooseX-Role-Strict/Makefile +++ b/devel/p5-MooseX-Role-Strict/Makefile @@ -14,8 +14,8 @@ COMMENT= Use strict 'roles' LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Moose>=0.89:devel/p5-Moose -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Moose>=0.89:devel/p5-Moose USE_PERL5= configure USES= perl5 diff --git a/devel/p5-MooseX-Runnable/Makefile b/devel/p5-MooseX-Runnable/Makefile index 6ae39bd52fc..078869c3bf6 100644 --- a/devel/p5-MooseX-Runnable/Makefile +++ b/devel/p5-MooseX-Runnable/Makefile @@ -14,7 +14,8 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Class-Load>=0:devel/p5-Class-Load \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Load>=0:devel/p5-Class-Load \ p5-List-SomeUtils>=0:devel/p5-List-SomeUtils \ p5-Moose>=0:devel/p5-Moose \ p5-MooseX-Getopt>=0:devel/p5-MooseX-Getopt \ @@ -23,7 +24,6 @@ BUILD_DEPENDS= p5-Class-Load>=0:devel/p5-Class-Load \ p5-Params-Util>=0:devel/p5-Params-Util \ p5-Path-Tiny>=0:devel/p5-Path-Tiny \ p5-namespace-autoclean>=0:devel/p5-namespace-autoclean -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Fatal>=0:devel/p5-Test-Fatal \ p5-Test-TableDriven>=0:devel/p5-Test-TableDriven diff --git a/devel/p5-MooseX-SemiAffordanceAccessor/Makefile b/devel/p5-MooseX-SemiAffordanceAccessor/Makefile index 97b1f0bddd9..2d1f584443d 100644 --- a/devel/p5-MooseX-SemiAffordanceAccessor/Makefile +++ b/devel/p5-MooseX-SemiAffordanceAccessor/Makefile @@ -14,8 +14,8 @@ COMMENT= Name your accessors foo() and set_foo() LICENSE= ART20 LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Moose>=0.94:devel/p5-Moose -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Moose>=0.94:devel/p5-Moose NO_ARCH= yes USES= perl5 diff --git a/devel/p5-MooseX-SetOnce/Makefile b/devel/p5-MooseX-SetOnce/Makefile index 1cc4a3233e6..22c9234cc0f 100644 --- a/devel/p5-MooseX-SetOnce/Makefile +++ b/devel/p5-MooseX-SetOnce/Makefile @@ -14,8 +14,8 @@ COMMENT= Write-once, read-many attributes for Moose LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Moose>=0.90:devel/p5-Moose -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Moose>=0.90:devel/p5-Moose TEST_DEPENDS= p5-Test-Fatal>=0:devel/p5-Test-Fatal USES= perl5 diff --git a/devel/p5-MooseX-Singleton/Makefile b/devel/p5-MooseX-Singleton/Makefile index 038f1c40121..aaea353bd46 100644 --- a/devel/p5-MooseX-Singleton/Makefile +++ b/devel/p5-MooseX-Singleton/Makefile @@ -14,8 +14,8 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Moose>=1.10:devel/p5-Moose -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Moose>=1.10:devel/p5-Moose TEST_DEPENDS= p5-MooseX-StrictConstructor>=0:devel/p5-MooseX-StrictConstructor \ p5-Test-Fatal>=0:devel/p5-Test-Fatal \ p5-Test-Requires>=0:devel/p5-Test-Requires \ diff --git a/devel/p5-MooseX-Storage/Makefile b/devel/p5-MooseX-Storage/Makefile index 5912e042835..909619a5ddf 100644 --- a/devel/p5-MooseX-Storage/Makefile +++ b/devel/p5-MooseX-Storage/Makefile @@ -13,11 +13,11 @@ COMMENT= Serialization framework for Moose classes LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-JSON-MaybeXS>=1.001000:converters/p5-JSON-MaybeXS \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-JSON-MaybeXS>=1.001000:converters/p5-JSON-MaybeXS \ p5-Moose>=0.99:devel/p5-Moose \ p5-String-RewritePrefix>=0.004:textproc/p5-String-RewritePrefix \ p5-namespace-autoclean>=0:devel/p5-namespace-autoclean -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-IO-stringy>=0:devel/p5-IO-stringy \ p5-JSON-XS>=0:converters/p5-JSON-XS \ p5-Test-Deep>=0:devel/p5-Test-Deep \ diff --git a/devel/p5-MooseX-StrictConstructor/Makefile b/devel/p5-MooseX-StrictConstructor/Makefile index fadd60f5bf6..f9d61a8469d 100644 --- a/devel/p5-MooseX-StrictConstructor/Makefile +++ b/devel/p5-MooseX-StrictConstructor/Makefile @@ -12,9 +12,9 @@ COMMENT= Make your MooseX object constructors blow up on unknown attributes LICENSE= ART20 -BUILD_DEPENDS= p5-Moose>=0.94:devel/p5-Moose \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Moose>=0.94:devel/p5-Moose \ p5-namespace-autoclean>=0:devel/p5-namespace-autoclean -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Fatal>=0:devel/p5-Test-Fatal USES= perl5 diff --git a/devel/p5-MooseX-TraitFor-Meta-Class-BetterAnonClassNames/Makefile b/devel/p5-MooseX-TraitFor-Meta-Class-BetterAnonClassNames/Makefile index 99952689efb..21dc09d897a 100644 --- a/devel/p5-MooseX-TraitFor-Meta-Class-BetterAnonClassNames/Makefile +++ b/devel/p5-MooseX-TraitFor-Meta-Class-BetterAnonClassNames/Makefile @@ -13,10 +13,10 @@ COMMENT= Metaclass trait to demystify generated anonymous class names LICENSE= LGPL21 LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Moose>=0:devel/p5-Moose \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Moose>=0:devel/p5-Moose \ p5-autobox-Core>=0:devel/p5-autobox-Core \ p5-namespace-autoclean>=0:devel/p5-namespace-autoclean -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-CheckDeps>=0.010:devel/p5-Test-CheckDeps \ p5-Test-Moose-More>=0:devel/p5-Test-Moose-More diff --git a/devel/p5-MooseX-Traits-Pluggable/Makefile b/devel/p5-MooseX-Traits-Pluggable/Makefile index 33d07010b37..d79188e0116 100644 --- a/devel/p5-MooseX-Traits-Pluggable/Makefile +++ b/devel/p5-MooseX-Traits-Pluggable/Makefile @@ -14,12 +14,12 @@ COMMENT= Trait loading and resolution for Moose LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= \ p5-Moose>=0:devel/p5-Moose \ p5-Class-Load>=0:devel/p5-Class-Load \ p5-namespace-autoclean>=0:devel/p5-namespace-autoclean \ p5-List-MoreUtils>=0:lang/p5-List-MoreUtils -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Exception>=0:devel/p5-Test-Exception USES= perl5 diff --git a/devel/p5-MooseX-Traits/Makefile b/devel/p5-MooseX-Traits/Makefile index 8750fa811dc..e83b1efe4c8 100644 --- a/devel/p5-MooseX-Traits/Makefile +++ b/devel/p5-MooseX-Traits/Makefile @@ -13,11 +13,11 @@ COMMENT= Moose eXtension to automatically apply roles at object creation time LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Class-Load>=0:devel/p5-Class-Load \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Load>=0:devel/p5-Class-Load \ p5-Moose>=0:devel/p5-Moose \ p5-Sub-Exporter>=0:devel/p5-Sub-Exporter \ p5-namespace-autoclean>=0:devel/p5-namespace-autoclean -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-MooseX-Role-Parameterized>=0:devel/p5-MooseX-Role-Parameterized \ p5-Test-Fatal>=0:devel/p5-Test-Fatal \ p5-Test-Requires>=0:devel/p5-Test-Requires diff --git a/devel/p5-MooseX-TransactionalMethods/Makefile b/devel/p5-MooseX-TransactionalMethods/Makefile index 252ebbb77a3..95910ab07e8 100644 --- a/devel/p5-MooseX-TransactionalMethods/Makefile +++ b/devel/p5-MooseX-TransactionalMethods/Makefile @@ -13,10 +13,10 @@ COMMENT= Syntax sugar for transactional methods LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Moose>=1.21:devel/p5-Moose \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Moose>=1.21:devel/p5-Moose \ p5-Sub-Name>=0:devel/p5-Sub-Name \ p5-aliased>=0:devel/p5-aliased -RUN_DEPENDS:= ${BUILD_DEPENDS} USE_PERL5= configure USES= perl5 diff --git a/devel/p5-MooseX-Types-DateTime-ButMaintained/Makefile b/devel/p5-MooseX-Types-DateTime-ButMaintained/Makefile index 9c167dbd1d0..c880ad9b964 100644 --- a/devel/p5-MooseX-Types-DateTime-ButMaintained/Makefile +++ b/devel/p5-MooseX-Types-DateTime-ButMaintained/Makefile @@ -14,14 +14,14 @@ COMMENT= DateTime related constraints and coercions for Moose LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-DateTime>=0.43:devel/p5-DateTime \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-DateTime>=0.43:devel/p5-DateTime \ p5-DateTime-Locale>=0.40:devel/p5-DateTime-Locale \ p5-DateTime-TimeZone>=0.96:devel/p5-DateTime-TimeZone \ p5-Moose>=0.41:devel/p5-Moose \ p5-MooseX-Types>=0.04:devel/p5-MooseX-Types \ p5-Olson-Abbreviations>=0.03:devel/p5-Olson-Abbreviations \ p5-namespace-clean>=0.08:devel/p5-namespace-clean -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Exception>=0.27:devel/p5-Test-Exception NO_ARCH= yes diff --git a/devel/p5-MooseX-Types-DateTime-MoreCoercions/Makefile b/devel/p5-MooseX-Types-DateTime-MoreCoercions/Makefile index d617e47232d..ecffb8dd5c9 100644 --- a/devel/p5-MooseX-Types-DateTime-MoreCoercions/Makefile +++ b/devel/p5-MooseX-Types-DateTime-MoreCoercions/Makefile @@ -14,14 +14,14 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-DateTime>=0.43.02:devel/p5-DateTime \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-DateTime>=0.43.02:devel/p5-DateTime \ p5-DateTimeX-Easy>=0.085:devel/p5-DateTimeX-Easy \ p5-Moose>=0.41:devel/p5-Moose \ p5-MooseX-Types>=0.04:devel/p5-MooseX-Types \ p5-MooseX-Types-DateTime>=0.06:devel/p5-MooseX-Types-DateTime \ p5-Time-Duration-Parse>=0.06:devel/p5-Time-Duration-Parse \ p5-namespace-clean>=0.19:devel/p5-namespace-clean -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Fatal>=0:devel/p5-Test-Fatal NO_ARCH= yes diff --git a/devel/p5-MooseX-Types-DateTime/Makefile b/devel/p5-MooseX-Types-DateTime/Makefile index 3671390e7ca..38760f7311f 100644 --- a/devel/p5-MooseX-Types-DateTime/Makefile +++ b/devel/p5-MooseX-Types-DateTime/Makefile @@ -15,13 +15,13 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENCE -BUILD_DEPENDS= p5-DateTime>=0.43.02:devel/p5-DateTime \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-DateTime>=0.43.02:devel/p5-DateTime \ p5-DateTime-Locale>=0.40.01:devel/p5-DateTime-Locale \ p5-DateTime-TimeZone>=0.95:devel/p5-DateTime-TimeZone \ p5-Moose>=0.41:devel/p5-Moose \ p5-MooseX-Types>=0.30:devel/p5-MooseX-Types \ p5-namespace-clean>=0.19:devel/p5-namespace-clean -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Fatal>=0:devel/p5-Test-Fatal NO_ARCH= yes diff --git a/devel/p5-MooseX-Types-DateTimeX/Makefile b/devel/p5-MooseX-Types-DateTimeX/Makefile index b0b9fee88ae..f82d0cafe29 100644 --- a/devel/p5-MooseX-Types-DateTimeX/Makefile +++ b/devel/p5-MooseX-Types-DateTimeX/Makefile @@ -14,13 +14,13 @@ COMMENT= Extensions to MooseX::Types::DateTime::ButMaintained LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-DateTimeX-Easy>=0.085:devel/p5-DateTimeX-Easy \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-DateTimeX-Easy>=0.085:devel/p5-DateTimeX-Easy \ p5-Moose>=0.41:devel/p5-Moose \ p5-MooseX-Types>=0.04:devel/p5-MooseX-Types \ p5-MooseX-Types-DateTime-ButMaintained>=0.04:devel/p5-MooseX-Types-DateTime-ButMaintained \ p5-Time-Duration-Parse>=0.06:devel/p5-Time-Duration-Parse \ p5-namespace-clean>=0.08:devel/p5-namespace-clean -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-MooseX-Types-JSON/Makefile b/devel/p5-MooseX-Types-JSON/Makefile index 51acfc5fc39..0645e483005 100644 --- a/devel/p5-MooseX-Types-JSON/Makefile +++ b/devel/p5-MooseX-Types-JSON/Makefile @@ -15,10 +15,10 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-JSON>=2.00:converters/p5-JSON \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-JSON>=2.00:converters/p5-JSON \ p5-Moose>=0.82:devel/p5-Moose \ p5-MooseX-Types>=0.15:devel/p5-MooseX-Types -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Pod>=1.00:devel/p5-Test-Pod NO_ARCH= yes diff --git a/devel/p5-MooseX-Types-Perl/Makefile b/devel/p5-MooseX-Types-Perl/Makefile index 622334643be..1281d3c301a 100644 --- a/devel/p5-MooseX-Types-Perl/Makefile +++ b/devel/p5-MooseX-Types-Perl/Makefile @@ -14,9 +14,9 @@ COMMENT= Moose types that check against Perl syntax LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-MooseX-Types>=0:devel/p5-MooseX-Types \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-MooseX-Types>=0:devel/p5-MooseX-Types \ p5-Params-Util>=0:devel/p5-Params-Util -RUN_DEPENDS:= ${BUILD_DEPENDS} USE_PERL5= configure USES= perl5 diff --git a/devel/p5-MooseX-Types-Set-Object/Makefile b/devel/p5-MooseX-Types-Set-Object/Makefile index c9b12a0b6b5..eb0c1e91592 100644 --- a/devel/p5-MooseX-Types-Set-Object/Makefile +++ b/devel/p5-MooseX-Types-Set-Object/Makefile @@ -14,10 +14,10 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Moose>=0.50:devel/p5-Moose \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Moose>=0.50:devel/p5-Moose \ p5-MooseX-Types>=0:devel/p5-MooseX-Types \ p5-Set-Object>=0:devel/p5-Set-Object -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Fatal>=0:devel/p5-Test-Fatal NO_ARCH= yes diff --git a/devel/p5-MooseX-Types-Signal/Makefile b/devel/p5-MooseX-Types-Signal/Makefile index 2a05d0295ca..ca248f51024 100644 --- a/devel/p5-MooseX-Types-Signal/Makefile +++ b/devel/p5-MooseX-Types-Signal/Makefile @@ -14,8 +14,8 @@ COMMENT= Type to represent valid UNIX or Perl signals LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-MooseX-Types>0:devel/p5-MooseX-Types -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-MooseX-Types>0:devel/p5-MooseX-Types TEST_DEPENDS= p5-Test-Exception>0:devel/p5-Test-Exception \ p5-Moose>0:devel/p5-Moose diff --git a/devel/p5-MooseX-Types-Structured/Makefile b/devel/p5-MooseX-Types-Structured/Makefile index 7f5878cfd2b..a6300f6ed85 100644 --- a/devel/p5-MooseX-Types-Structured/Makefile +++ b/devel/p5-MooseX-Types-Structured/Makefile @@ -13,12 +13,12 @@ COMMENT= Moose Type Constraint classes for Structured Types LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Devel-PartialDump>=0.13:devel/p5-Devel-PartialDump \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Devel-PartialDump>=0.13:devel/p5-Devel-PartialDump \ p5-Moose>=1.08:devel/p5-Moose \ p5-MooseX-Types>=0.22:devel/p5-MooseX-Types \ p5-Sub-Exporter>=0.982:devel/p5-Sub-Exporter \ p5-namespace-clean>=0.19:devel/p5-namespace-clean -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-DateTime>=0:devel/p5-DateTime \ p5-Test-Fatal>=0:devel/p5-Test-Fatal \ p5-Test-Needs>=0:devel/p5-Test-Needs diff --git a/devel/p5-MooseX-Types-URI/Makefile b/devel/p5-MooseX-Types-URI/Makefile index 7a934c38387..557561e034c 100644 --- a/devel/p5-MooseX-Types-URI/Makefile +++ b/devel/p5-MooseX-Types-URI/Makefile @@ -14,13 +14,13 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Moose>=0:devel/p5-Moose \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Moose>=0:devel/p5-Moose \ p5-MooseX-Types>=0.40:devel/p5-MooseX-Types \ p5-MooseX-Types-Path-Class>=0:devel/p5-MooseX-Types-Path-Class \ p5-URI>=0:net/p5-URI \ p5-URI-FromHash>=0:net/p5-URI-FromHash \ p5-namespace-autoclean>=0:devel/p5-namespace-autoclean -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USE_PERL5= modbuildtiny diff --git a/devel/p5-MooseX-Util/Makefile b/devel/p5-MooseX-Util/Makefile index 267bd2dc874..a5e46a81689 100644 --- a/devel/p5-MooseX-Util/Makefile +++ b/devel/p5-MooseX-Util/Makefile @@ -14,11 +14,11 @@ COMMENT= Moose::Util extensions LICENSE= LGPL21 LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Moose>=0:devel/p5-Moose \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Moose>=0:devel/p5-Moose \ p5-MooseX-TraitFor-Meta-Class-BetterAnonClassNames>=0.002001:devel/p5-MooseX-TraitFor-Meta-Class-BetterAnonClassNames \ p5-Sub-Exporter-Progressive>=0:devel/p5-Sub-Exporter-Progressive \ p5-namespace-autoclean>=0:devel/p5-namespace-autoclean -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-CheckDeps>=0.010:devel/p5-Test-CheckDeps \ p5-Test-Moose-More>=0.016:devel/p5-Test-Moose-More \ p5-Test-Requires>=0:devel/p5-Test-Requires \ diff --git a/devel/p5-MouseX-App-Cmd/Makefile b/devel/p5-MouseX-App-Cmd/Makefile index 99313efbc10..a1798d4f9a1 100644 --- a/devel/p5-MouseX-App-Cmd/Makefile +++ b/devel/p5-MouseX-App-Cmd/Makefile @@ -13,14 +13,14 @@ COMMENT= Mashes up MouseX::Getopt and App::Cmd LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-App-Cmd>=0.321:devel/p5-App-Cmd \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-App-Cmd>=0.321:devel/p5-App-Cmd \ p5-Getopt-Long-Descriptive>=0.091:devel/p5-Getopt-Long-Descriptive \ p5-Mouse>=0:devel/p5-Mouse \ p5-MouseX-ConfigFromFile>=0:devel/p5-MouseX-ConfigFromFile \ p5-MouseX-Getopt>=0:devel/p5-MouseX-Getopt \ p5-YAML>=0:textproc/p5-YAML \ p5-namespace-autoclean>=0:devel/p5-namespace-autoclean -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Output>=0:devel/p5-Test-Output USE_PERL5= configure diff --git a/devel/p5-MouseX-ConfigFromFile/Makefile b/devel/p5-MouseX-ConfigFromFile/Makefile index 236734b25ae..4b4569c33a9 100644 --- a/devel/p5-MouseX-ConfigFromFile/Makefile +++ b/devel/p5-MouseX-ConfigFromFile/Makefile @@ -12,10 +12,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= markun@onohara.to COMMENT= Abstract Mouse role for setting attributes from a configfile -BUILD_DEPENDS= p5-Filter>=0:devel/p5-Filter \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Filter>=0:devel/p5-Filter \ p5-Mouse>=0.19:devel/p5-Mouse \ p5-MouseX-Types-Path-Class>=0.05:devel/p5-MouseX-Types-Path-Class -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-MouseX-Foreign/Makefile b/devel/p5-MouseX-Foreign/Makefile index 84a018d1706..acba2cb4e30 100644 --- a/devel/p5-MouseX-Foreign/Makefile +++ b/devel/p5-MouseX-Foreign/Makefile @@ -14,8 +14,8 @@ COMMENT= Extends non-Mouse classes as well as Mouse classes LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Mouse>=0.77:devel/p5-Mouse -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Mouse>=0.77:devel/p5-Mouse TEST_DEPENDS= p5-Any-Moose>=0.15:devel/p5-Any-Moose \ p5-Moose>=0:devel/p5-Moose \ p5-Test-Exception>=0:devel/p5-Test-Exception \ diff --git a/devel/p5-MouseX-NativeTraits/Makefile b/devel/p5-MouseX-NativeTraits/Makefile index 4e31d88ac05..c223a66802f 100644 --- a/devel/p5-MouseX-NativeTraits/Makefile +++ b/devel/p5-MouseX-NativeTraits/Makefile @@ -14,8 +14,8 @@ COMMENT= Extend your attribute interfaces for Mouse LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Mouse>=0.82:devel/p5-Mouse -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Mouse>=0.82:devel/p5-Mouse TEST_DEPENDS= p5-Any-Moose>=0.13:devel/p5-Any-Moose \ p5-Test-Fatal>=0.003:devel/p5-Test-Fatal diff --git a/devel/p5-MouseX-StrictConstructor/Makefile b/devel/p5-MouseX-StrictConstructor/Makefile index 8ec75ed6e53..6df17dcbee0 100644 --- a/devel/p5-MouseX-StrictConstructor/Makefile +++ b/devel/p5-MouseX-StrictConstructor/Makefile @@ -15,8 +15,8 @@ COMMENT= Make your object constructors blow up on unknown attributes LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Mouse>=0.62:devel/p5-Mouse -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Mouse>=0.62:devel/p5-Mouse USE_PERL5= configure USES= perl5 diff --git a/devel/p5-MouseX-Traits/Makefile b/devel/p5-MouseX-Traits/Makefile index 041c08ecbb7..ee92e9d1141 100644 --- a/devel/p5-MouseX-Traits/Makefile +++ b/devel/p5-MouseX-Traits/Makefile @@ -12,8 +12,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= sunpoet@FreeBSD.org COMMENT= Automatically apply roles at object creation time -BUILD_DEPENDS= p5-Mouse>=0.81:devel/p5-Mouse -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Mouse>=0.81:devel/p5-Mouse TEST_DEPENDS= p5-Test-Exception>=0:devel/p5-Test-Exception USE_PERL5= configure diff --git a/devel/p5-MouseX-Types-Path-Class/Makefile b/devel/p5-MouseX-Types-Path-Class/Makefile index d3dd57a119a..a478191895f 100644 --- a/devel/p5-MouseX-Types-Path-Class/Makefile +++ b/devel/p5-MouseX-Types-Path-Class/Makefile @@ -15,11 +15,11 @@ COMMENT= Path::Class type library for Mouse LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Mouse>=0.39:devel/p5-Mouse \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Mouse>=0.39:devel/p5-Mouse \ p5-MouseX-Types>=0.02:devel/p5-MouseX-Types \ p5-Path-Class>0:devel/p5-Path-Class \ p5-MouseX-Getopt>=0.22:devel/p5-MouseX-Getopt -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-UseAllModules>0:devel/p5-Test-UseAllModules diff --git a/devel/p5-Net-DBus/Makefile b/devel/p5-Net-DBus/Makefile index 9b5c0ec1a7a..f7b95ae885d 100644 --- a/devel/p5-Net-DBus/Makefile +++ b/devel/p5-Net-DBus/Makefile @@ -14,10 +14,10 @@ COMMENT= Perl extension for the DBus message system LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-XML-Grove>=0:textproc/p5-XML-Grove \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-XML-Grove>=0:textproc/p5-XML-Grove \ p5-XML-Twig>=0:textproc/p5-XML-Twig LIB_DEPENDS= libdbus-1.so:devel/dbus -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 pkgconfig USE_PERL5= configure diff --git a/devel/p5-Number-Tolerant/Makefile b/devel/p5-Number-Tolerant/Makefile index 52a85e0408b..c3e70569375 100644 --- a/devel/p5-Number-Tolerant/Makefile +++ b/devel/p5-Number-Tolerant/Makefile @@ -14,8 +14,8 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Sub-Exporter>=0.950:devel/p5-Sub-Exporter -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Sub-Exporter>=0.950:devel/p5-Sub-Exporter NO_ARCH= yes USES= perl5 diff --git a/devel/p5-OLE-Storage_Lite/Makefile b/devel/p5-OLE-Storage_Lite/Makefile index 1e055b99f56..3f63c2d85a0 100644 --- a/devel/p5-OLE-Storage_Lite/Makefile +++ b/devel/p5-OLE-Storage_Lite/Makefile @@ -14,8 +14,8 @@ COMMENT= Perl module for OLE document interface LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-IO-stringy>=0:devel/p5-IO-stringy -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-IO-stringy>=0:devel/p5-IO-stringy USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Object-Array/Makefile b/devel/p5-Object-Array/Makefile index 15f8219b443..4ad5c7a6e86 100644 --- a/devel/p5-Object-Array/Makefile +++ b/devel/p5-Object-Array/Makefile @@ -14,10 +14,10 @@ COMMENT= Array references with accessors LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-List-MoreUtils>=0:lang/p5-List-MoreUtils \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-List-MoreUtils>=0:lang/p5-List-MoreUtils \ p5-Sub-Exporter>=0:devel/p5-Sub-Exporter \ p5-Sub-Install>=0:devel/p5-Sub-Install -RUN_DEPENDS:= ${BUILD_DEPENDS} USE_PERL5= configure USES= perl5 diff --git a/devel/p5-Object-Authority/Makefile b/devel/p5-Object-Authority/Makefile index b168c3fe6eb..52283473fcb 100644 --- a/devel/p5-Object-Authority/Makefile +++ b/devel/p5-Object-Authority/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Perl module that adds an AUTHORITY method to your class -BUILD_DEPENDS= p5-Object-Role>=0:devel/p5-Object-Role -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Object-Role>=0:devel/p5-Object-Role TEST_DEPENDS= p5-Test-Exception>=0:devel/p5-Test-Exception USES= perl5 diff --git a/devel/p5-Object-Container/Makefile b/devel/p5-Object-Container/Makefile index 263beca90dd..0d5584c9a87 100644 --- a/devel/p5-Object-Container/Makefile +++ b/devel/p5-Object-Container/Makefile @@ -14,8 +14,8 @@ COMMENT= Simple object container LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Class-Accessor>=0:devel/p5-Class-Accessor -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Accessor>=0:devel/p5-Class-Accessor TEST_DEPENDS= p5-Test-Requires>=0:devel/p5-Test-Requires PORTSCOUT= limit:^[0-9]*.[0-9][0-9]$$ diff --git a/devel/p5-Object-Event/Makefile b/devel/p5-Object-Event/Makefile index 613ea8501e7..fa0c556ae39 100644 --- a/devel/p5-Object-Event/Makefile +++ b/devel/p5-Object-Event/Makefile @@ -15,9 +15,9 @@ COMMENT= Class that provides an event callback interface LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-AnyEvent>=3.5:devel/p5-AnyEvent \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-AnyEvent>=3.5:devel/p5-AnyEvent \ p5-common-sense>=0:devel/p5-common-sense -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Object-InsideOut/Makefile b/devel/p5-Object-InsideOut/Makefile index c5cfe00e566..7a032e98032 100644 --- a/devel/p5-Object-InsideOut/Makefile +++ b/devel/p5-Object-InsideOut/Makefile @@ -14,9 +14,9 @@ COMMENT= Comprehensive inside-out object support module LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Exception-Class>=1.32:devel/p5-Exception-Class \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Exception-Class>=1.32:devel/p5-Exception-Class \ p5-Want>=0.21:devel/p5-Want -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Object-Pluggable/Makefile b/devel/p5-Object-Pluggable/Makefile index 4c3b070ecaf..2dc2b990af2 100644 --- a/devel/p5-Object-Pluggable/Makefile +++ b/devel/p5-Object-Pluggable/Makefile @@ -15,8 +15,8 @@ COMMENT= Base class for creating plugin-enabled objects LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Task-Weaken>=0:devel/p5-Task-Weaken -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Task-Weaken>=0:devel/p5-Task-Weaken USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Object-Role/Makefile b/devel/p5-Object-Role/Makefile index d157b572cfd..1de50b86658 100644 --- a/devel/p5-Object-Role/Makefile +++ b/devel/p5-Object-Role/Makefile @@ -15,8 +15,8 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Sub-Name>=0:devel/p5-Sub-Name -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Sub-Name>=0:devel/p5-Sub-Name USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Olson-Abbreviations/Makefile b/devel/p5-Olson-Abbreviations/Makefile index b7c81fdcae1..46570a2f02e 100644 --- a/devel/p5-Olson-Abbreviations/Makefile +++ b/devel/p5-Olson-Abbreviations/Makefile @@ -15,10 +15,10 @@ COMMENT= Globally unique timezones abbreviation handling LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Moose>=0:devel/p5-Moose \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Moose>=0:devel/p5-Moose \ p5-MooseX-ClassAttribute>=0.25:devel/p5-MooseX-ClassAttribute \ p5-namespace-autoclean>=0:devel/p5-namespace-autoclean -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/devel/p5-PAR/Makefile b/devel/p5-PAR/Makefile index 96195002560..ab1f1dccbc0 100644 --- a/devel/p5-PAR/Makefile +++ b/devel/p5-PAR/Makefile @@ -14,9 +14,9 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Archive-Zip>=1:archivers/p5-Archive-Zip \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Archive-Zip>=1:archivers/p5-Archive-Zip \ p5-PAR-Dist>=0.32:devel/p5-PAR-Dist -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USE_PERL5= configure diff --git a/devel/p5-POE-API-Hooks/Makefile b/devel/p5-POE-API-Hooks/Makefile index 14122bc3b1a..fb7776ad8c9 100644 --- a/devel/p5-POE-API-Hooks/Makefile +++ b/devel/p5-POE-API-Hooks/Makefile @@ -15,9 +15,9 @@ COMMENT= Implement lightweight hooks into POE LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-POE>=0:devel/p5-POE \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-POE>=0:devel/p5-POE \ p5-Params-Validate>=0:devel/p5-Params-Validate -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-POE-API-Peek/Makefile b/devel/p5-POE-API-Peek/Makefile index 5696d1407b8..01d6b0f4e6d 100644 --- a/devel/p5-POE-API-Peek/Makefile +++ b/devel/p5-POE-API-Peek/Makefile @@ -16,9 +16,9 @@ COMMENT= Peek into the internals of a running POE environment LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-POE>=1.311:devel/p5-POE \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-POE>=1.311:devel/p5-POE \ p5-Devel-Size>0:devel/p5-Devel-Size -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-POE-Component-Daemon/Makefile b/devel/p5-POE-Component-Daemon/Makefile index bca490163d1..28cfedc4f98 100644 --- a/devel/p5-POE-Component-Daemon/Makefile +++ b/devel/p5-POE-Component-Daemon/Makefile @@ -14,8 +14,8 @@ COMMENT= Handles all the housework for a daemon in POE LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-POE>=1:devel/p5-POE -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-POE>=1:devel/p5-POE USES= perl5 shebangfix SHEBANG_FILES= eg/forking eg/preforking diff --git a/devel/p5-POE-Component-DebugShell/Makefile b/devel/p5-POE-Component-DebugShell/Makefile index 8de89bcd095..da6c90e981b 100644 --- a/devel/p5-POE-Component-DebugShell/Makefile +++ b/devel/p5-POE-Component-DebugShell/Makefile @@ -14,9 +14,9 @@ COMMENT= Interactive peeking into a running POE application LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-POE>=0:devel/p5-POE \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-POE>=0:devel/p5-POE \ p5-POE-API-Peek>=0:devel/p5-POE-API-Peek -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Distribution>=0:devel/p5-Test-Distribution USES= perl5 diff --git a/devel/p5-POE-Component-DirWatch/Makefile b/devel/p5-POE-Component-DirWatch/Makefile index 524420377c5..b7a9ab5cba4 100644 --- a/devel/p5-POE-Component-DirWatch/Makefile +++ b/devel/p5-POE-Component-DirWatch/Makefile @@ -13,11 +13,11 @@ COMMENT= POE directory watcher LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-POE>=0.12:devel/p5-POE \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-POE>=0.12:devel/p5-POE \ p5-Path-Class>0:devel/p5-Path-Class \ p5-MooseX-Types-Path-Class>0:devel/p5-MooseX-Types-Path-Class \ p5-File-Signature>0:sysutils/p5-File-Signature -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-POE-Component-Hailo/Makefile b/devel/p5-POE-Component-Hailo/Makefile index 07b2c55eb44..c3d990afc53 100644 --- a/devel/p5-POE-Component-Hailo/Makefile +++ b/devel/p5-POE-Component-Hailo/Makefile @@ -15,9 +15,9 @@ COMMENT= Non-blocking wrapper around Hailo LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-POE>=0:devel/p5-POE \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-POE>=0:devel/p5-POE \ p5-Hailo>=0:textproc/p5-Hailo -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-POE-Component-IKC/Makefile b/devel/p5-POE-Component-IKC/Makefile index 8f3a9132fa1..222de751857 100644 --- a/devel/p5-POE-Component-IKC/Makefile +++ b/devel/p5-POE-Component-IKC/Makefile @@ -13,10 +13,10 @@ COMMENT= POE Inter-Kernel Communication LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Devel-Size>=0.77:devel/p5-Devel-Size \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Devel-Size>=0.77:devel/p5-Devel-Size \ p5-POE>=1.311:devel/p5-POE \ p5-Data-Dump>=1:devel/p5-Data-Dump -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-POE-Component-JobQueue/Makefile b/devel/p5-POE-Component-JobQueue/Makefile index cae47badc46..aa9d9424488 100644 --- a/devel/p5-POE-Component-JobQueue/Makefile +++ b/devel/p5-POE-Component-JobQueue/Makefile @@ -12,8 +12,8 @@ DISTNAME= ${PORTNAME}-${PORTVERSION:C/0+$//} MAINTAINER= perl@FreeBSD.org COMMENT= POE component to manage queues and worker pools -BUILD_DEPENDS= p5-POE>=0:devel/p5-POE -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-POE>=0:devel/p5-POE USES= perl5 USE_PERL5= configure diff --git a/devel/p5-POE-Component-Logger/Makefile b/devel/p5-POE-Component-Logger/Makefile index 8721062db2f..13b602feed2 100644 --- a/devel/p5-POE-Component-Logger/Makefile +++ b/devel/p5-POE-Component-Logger/Makefile @@ -11,10 +11,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= POE logging class -BUILD_DEPENDS= p5-POE>=1.293:devel/p5-POE \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-POE>=1.293:devel/p5-POE \ p5-Log-Dispatch>=2.26:devel/p5-Log-Dispatch \ p5-Log-Dispatch-Config>=1.03:devel/p5-Log-Dispatch-Config -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-NoWarnings>=0:devel/p5-Test-NoWarnings USES= perl5 diff --git a/devel/p5-POE-Component-Pluggable/Makefile b/devel/p5-POE-Component-Pluggable/Makefile index 3c40c1a8b29..f2afa660e28 100644 --- a/devel/p5-POE-Component-Pluggable/Makefile +++ b/devel/p5-POE-Component-Pluggable/Makefile @@ -14,9 +14,9 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-POE>=1.004:devel/p5-POE \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-POE>=1.004:devel/p5-POE \ p5-Task-Weaken>=0:devel/p5-Task-Weaken -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/devel/p5-POE-Component-RSS/Makefile b/devel/p5-POE-Component-RSS/Makefile index dd7264e4ca3..9c267cfc254 100644 --- a/devel/p5-POE-Component-RSS/Makefile +++ b/devel/p5-POE-Component-RSS/Makefile @@ -14,9 +14,9 @@ COMMENT= Module for event based RSS parsing LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-POE>=0:devel/p5-POE \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-POE>=0:devel/p5-POE \ p5-XML-RSS>=0:textproc/p5-XML-RSS -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-POE-Component-RSSAggregator/Makefile b/devel/p5-POE-Component-RSSAggregator/Makefile index d75d008eccb..077db491b4e 100644 --- a/devel/p5-POE-Component-RSSAggregator/Makefile +++ b/devel/p5-POE-Component-RSSAggregator/Makefile @@ -14,11 +14,11 @@ COMMENT= Watch Muliple RSS Feeds for New Headlines LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-POE-Component-Client-DNS>=0.98:dns/p5-POE-Component-Client-DNS \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-POE-Component-Client-DNS>=0.98:dns/p5-POE-Component-Client-DNS \ p5-POE-Component-Client-HTTP>=0.51:www/p5-POE-Component-Client-HTTP \ p5-XML-RSS-Feed>=0:textproc/p5-XML-RSS-Feed \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-POE-Component-Schedule/Makefile b/devel/p5-POE-Component-Schedule/Makefile index 874711f262f..09cbb72832a 100644 --- a/devel/p5-POE-Component-Schedule/Makefile +++ b/devel/p5-POE-Component-Schedule/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Schedule POE Events using a cron spec -BUILD_DEPENDS= p5-POE>=0:devel/p5-POE \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-POE>=0:devel/p5-POE \ p5-DateTime-Set>=0:devel/p5-DateTime-Set -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= modbuild diff --git a/devel/p5-POE-Component-Server-XMLRPC/Makefile b/devel/p5-POE-Component-Server-XMLRPC/Makefile index 13fc7c01ab2..c53d5c34cc9 100644 --- a/devel/p5-POE-Component-Server-XMLRPC/Makefile +++ b/devel/p5-POE-Component-Server-XMLRPC/Makefile @@ -11,10 +11,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= jesper@jdn.dk COMMENT= POE Component to create XMLRPC Servers -BUILD_DEPENDS= p5-POE>=0:devel/p5-POE \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-POE>=0:devel/p5-POE \ p5-POE-Component-Server-HTTP>=0:www/p5-POE-Component-Server-HTTP \ p5-SOAP-Lite>=0:net/p5-SOAP-Lite -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-POE-Component-Syndicator/Makefile b/devel/p5-POE-Component-Syndicator/Makefile index faaf7e5d8a8..244866660ed 100644 --- a/devel/p5-POE-Component-Syndicator/Makefile +++ b/devel/p5-POE-Component-Syndicator/Makefile @@ -15,10 +15,10 @@ COMMENT= POE component base class which implements the Observer pattern LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-POE>=1.311:devel/p5-POE \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-POE>=1.311:devel/p5-POE \ p5-Object-Pluggable>=1.29:devel/p5-Object-Pluggable \ p5-Test-Simple>=0:devel/p5-Test-Simple -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-POE-Component-TSTP/Makefile b/devel/p5-POE-Component-TSTP/Makefile index 31aff41de5f..16f3e8d784e 100644 --- a/devel/p5-POE-Component-TSTP/Makefile +++ b/devel/p5-POE-Component-TSTP/Makefile @@ -14,8 +14,8 @@ COMMENT= POE component to correctly handle Ctrl-Z in your program LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-POE>=0:devel/p5-POE -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-POE>=0:devel/p5-POE USES= perl5 USE_PERL5= configure diff --git a/devel/p5-POE-Devel-Profiler/Makefile b/devel/p5-POE-Devel-Profiler/Makefile index 0752f38f9f5..9c1ea3a8668 100644 --- a/devel/p5-POE-Devel-Profiler/Makefile +++ b/devel/p5-POE-Devel-Profiler/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Profiles POE programs -BUILD_DEPENDS= p5-POE>=0:devel/p5-POE -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-POE>=0:devel/p5-POE USES= perl5 USE_PERL5= configure diff --git a/devel/p5-POE-Loop-Glib/Makefile b/devel/p5-POE-Loop-Glib/Makefile index ed228f326c9..65c7250a416 100644 --- a/devel/p5-POE-Loop-Glib/Makefile +++ b/devel/p5-POE-Loop-Glib/Makefile @@ -14,9 +14,9 @@ COMMENT= Bridge that supports Glib event loop from POE LICENSE= GPLv2 -BUILD_DEPENDS= p5-POE>=1.288:devel/p5-POE \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-POE>=1.288:devel/p5-POE \ p5-Glib2>=1.222:devel/p5-Glib2 -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 shebangfix SHEBANG_FILES= examples/gtk2_counter.pl diff --git a/devel/p5-POE-Loop-Tk/Makefile b/devel/p5-POE-Loop-Tk/Makefile index 2fd58642d7b..351968d1d59 100644 --- a/devel/p5-POE-Loop-Tk/Makefile +++ b/devel/p5-POE-Loop-Tk/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= sunpoet@FreeBSD.org COMMENT= Bridge that allows POE to be driven by Tk -BUILD_DEPENDS= p5-POE>=1.356:devel/p5-POE \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-POE>=1.356:devel/p5-POE \ p5-Tk>=804.031:x11-toolkits/p5-Tk -RUN_DEPENDS:= ${BUILD_DEPENDS} USE_PERL5= configure USES= perl5 diff --git a/devel/p5-POE-Quickie/Makefile b/devel/p5-POE-Quickie/Makefile index 059f761f27d..fbbb15e47fd 100644 --- a/devel/p5-POE-Quickie/Makefile +++ b/devel/p5-POE-Quickie/Makefile @@ -15,8 +15,8 @@ LICENSE= GPLv1 ART10 LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-POE>=1.350:devel/p5-POE -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-POE>=1.350:devel/p5-POE TEST_DEPENDS= p5-Capture-Tiny>=0.07:devel/p5-Capture-Tiny \ p5-Test-Deep>=0:devel/p5-Test-Deep diff --git a/devel/p5-POE-Stage/Makefile b/devel/p5-POE-Stage/Makefile index cf9b4d1a0ed..49c08253bdf 100644 --- a/devel/p5-POE-Stage/Makefile +++ b/devel/p5-POE-Stage/Makefile @@ -12,13 +12,13 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Base class for formalized POE components -BUILD_DEPENDS= p5-POE>=1.351:devel/p5-POE \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-POE>=1.351:devel/p5-POE \ p5-PadWalker>=1.93:devel/p5-PadWalker \ p5-Net-DNS>=0.68:dns/p5-Net-DNS \ p5-Devel-LexAlias>=0.04:devel/p5-Devel-LexAlias \ p5-Lexical-Persistence>=1.020:devel/p5-Lexical-Persistence \ p5-Attribute-Handlers>=0.93:devel/p5-Attribute-Handlers -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-POE-XS-Queue-Array/Makefile b/devel/p5-POE-XS-Queue-Array/Makefile index 957d4ec92f3..b5c2aff201a 100644 --- a/devel/p5-POE-XS-Queue-Array/Makefile +++ b/devel/p5-POE-XS-Queue-Array/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= XS implementation of POE::Queue::Array -BUILD_DEPENDS= p5-POE>=0:devel/p5-POE -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-POE>=0:devel/p5-POE USES= perl5 USE_PERL5= configure diff --git a/devel/p5-POE/Makefile b/devel/p5-POE/Makefile index 30ff4a79634..6a09421262a 100644 --- a/devel/p5-POE/Makefile +++ b/devel/p5-POE/Makefile @@ -13,7 +13,8 @@ COMMENT= Multitasking and networking framework for perl LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Curses>=1.08:devel/p5-Curses \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Curses>=1.08:devel/p5-Curses \ p5-HTTP-Message>=0:www/p5-HTTP-Message \ p5-IO-Pipely>=0.005:devel/p5-IO-Pipely \ p5-IO-Tty>=1.08:devel/p5-IO-Tty \ @@ -22,7 +23,6 @@ BUILD_DEPENDS= p5-Curses>=1.08:devel/p5-Curses \ p5-Term-ReadKey>=2.21:devel/p5-Term-ReadKey \ p5-URI>=1.30:net/p5-URI \ p5-libwww>=5.79:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} OPTIONS_DEFINE= EXAMPLES diff --git a/devel/p5-Package-Variant/Makefile b/devel/p5-Package-Variant/Makefile index d8a4223dcd2..3f5c32f37b0 100644 --- a/devel/p5-Package-Variant/Makefile +++ b/devel/p5-Package-Variant/Makefile @@ -14,10 +14,10 @@ COMMENT= Parameterizable packages LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Import-Into>=1:devel/p5-Import-Into \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Import-Into>=1:devel/p5-Import-Into \ p5-Module-Runtime>=0.013:devel/p5-Module-Runtime \ p5-strictures>=2:devel/p5-strictures -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Moo>=0:devel/p5-Moo \ p5-Test-Fatal>=0:devel/p5-Test-Fatal diff --git a/devel/p5-Paranoid-Log-Email/Makefile b/devel/p5-Paranoid-Log-Email/Makefile index 84ecf18c58a..14d21067f2a 100644 --- a/devel/p5-Paranoid-Log-Email/Makefile +++ b/devel/p5-Paranoid-Log-Email/Makefile @@ -12,8 +12,8 @@ COMMENT= SMTP support for Paranoid::Log LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Paranoid>=2:devel/p5-Paranoid -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Paranoid>=2:devel/p5-Paranoid NO_ARCH= YES USES= perl5 diff --git a/devel/p5-Paranoid-Log-Syslog/Makefile b/devel/p5-Paranoid-Log-Syslog/Makefile index ae339c672be..2c40905332d 100644 --- a/devel/p5-Paranoid-Log-Syslog/Makefile +++ b/devel/p5-Paranoid-Log-Syslog/Makefile @@ -12,9 +12,9 @@ COMMENT= Syslog support for Paranoid::Log LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Paranoid>=2:devel/p5-Paranoid \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Paranoid>=2:devel/p5-Paranoid \ p5-Unix-Syslog>0:sysutils/p5-Unix-Syslog -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= YES USES= perl5 diff --git a/devel/p5-Paranoid/Makefile b/devel/p5-Paranoid/Makefile index d2661bd30e8..aac13210b94 100644 --- a/devel/p5-Paranoid/Makefile +++ b/devel/p5-Paranoid/Makefile @@ -13,8 +13,8 @@ COMMENT= Paranoia support for safer programs LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Socket6>=0.23:net/p5-Socket6 -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Socket6>=0.23:net/p5-Socket6 NO_ARCH= yes USES= perl5 diff --git a/devel/p5-Parse-CPAN-Packages-Fast/Makefile b/devel/p5-Parse-CPAN-Packages-Fast/Makefile index 663284e6f5c..08cd1f8cb66 100644 --- a/devel/p5-Parse-CPAN-Packages-Fast/Makefile +++ b/devel/p5-Parse-CPAN-Packages-Fast/Makefile @@ -13,8 +13,8 @@ COMMENT= Parse CPAN package index LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-CPAN-DistnameInfo>=0:devel/p5-CPAN-DistnameInfo -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-CPAN-DistnameInfo>=0:devel/p5-CPAN-DistnameInfo NO_ARCH= yes USES= perl5 diff --git a/devel/p5-Parse-CPAN-Packages/Makefile b/devel/p5-Parse-CPAN-Packages/Makefile index 05d33c9318d..e3e0f72d49f 100644 --- a/devel/p5-Parse-CPAN-Packages/Makefile +++ b/devel/p5-Parse-CPAN-Packages/Makefile @@ -14,12 +14,12 @@ COMMENT= Parse 02packages.details.txt.gz from CPAN LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Archive-Peek>0:archivers/p5-Archive-Peek \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Archive-Peek>0:archivers/p5-Archive-Peek \ p5-CPAN-DistnameInfo>0:devel/p5-CPAN-DistnameInfo \ p5-Moo>=0:devel/p5-Moo \ p5-PPI>0:textproc/p5-PPI \ p5-Type-Tiny>0:devel/p5-Type-Tiny -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-InDistDir>0:devel/p5-Test-InDistDir \ p5-File-Slurp>0:devel/p5-File-Slurp diff --git a/devel/p5-Parse-ErrorString-Perl/Makefile b/devel/p5-Parse-ErrorString-Perl/Makefile index 0fd8673290e..3b5392abccf 100644 --- a/devel/p5-Parse-ErrorString-Perl/Makefile +++ b/devel/p5-Parse-ErrorString-Perl/Makefile @@ -13,10 +13,10 @@ COMMENT= Parse error messages from the Perl interpreter LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Class-XSAccessor>0:devel/p5-Class-XSAccessor \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-XSAccessor>0:devel/p5-Class-XSAccessor \ p5-Module-Install>0:devel/p5-Module-Install \ p5-Pod-POM>=0.27:textproc/p5-Pod-POM -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Differences>0:devel/p5-Test-Differences NO_ARCH= YES diff --git a/devel/p5-Parse-Method-Signatures/Makefile b/devel/p5-Parse-Method-Signatures/Makefile index f73620e4146..ecd28efea63 100644 --- a/devel/p5-Parse-Method-Signatures/Makefile +++ b/devel/p5-Parse-Method-Signatures/Makefile @@ -13,7 +13,8 @@ COMMENT= Perl6 like method signature parser LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Class-Load>=0.19:devel/p5-Class-Load \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Load>=0.19:devel/p5-Class-Load \ p5-List-MoreUtils>=0.20:lang/p5-List-MoreUtils \ p5-Moose>=0:devel/p5-Moose \ p5-MooseX-Traits>=0.06:devel/p5-MooseX-Traits \ @@ -21,7 +22,6 @@ BUILD_DEPENDS= p5-Class-Load>=0.19:devel/p5-Class-Load \ p5-MooseX-Types-Structured>=0:devel/p5-MooseX-Types-Structured \ p5-PPI>=1.203:textproc/p5-PPI \ p5-namespace-clean>=0.10:devel/p5-namespace-clean -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Differences>=0:devel/p5-Test-Differences \ p5-Test-Exception>=0:devel/p5-Test-Exception \ p5-aliased>=0:devel/p5-aliased diff --git a/devel/p5-Parse-PlainConfig/Makefile b/devel/p5-Parse-PlainConfig/Makefile index 34e9880a78a..1b307f8665c 100644 --- a/devel/p5-Parse-PlainConfig/Makefile +++ b/devel/p5-Parse-PlainConfig/Makefile @@ -14,9 +14,9 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE_ART10= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Class-EHierarchy>=2.00:devel/p5-Class-EHierarchy \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-EHierarchy>=2.00:devel/p5-Class-EHierarchy \ p5-Paranoid>=2.05:devel/p5-Paranoid -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/devel/p5-ParseLex/Makefile b/devel/p5-ParseLex/Makefile index 2b628df64b4..ad1cc73fd4b 100644 --- a/devel/p5-ParseLex/Makefile +++ b/devel/p5-ParseLex/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= pirzyk@FreeBSD.org COMMENT= Object-oriented generator of lexical analyzers -BUILD_DEPENDS= p5-ParseTemplate>=3.01:devel/p5-ParseTemplate -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-ParseTemplate>=3.01:devel/p5-ParseTemplate USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Path-Class-File-Lockable/Makefile b/devel/p5-Path-Class-File-Lockable/Makefile index 0b2fedf5bf9..9e1c7b2c3a4 100644 --- a/devel/p5-Path-Class-File-Lockable/Makefile +++ b/devel/p5-Path-Class-File-Lockable/Makefile @@ -15,9 +15,9 @@ COMMENT= Lock your files with Path::Class::File LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-File-NFSLock>0:devel/p5-File-NFSLock \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-File-NFSLock>0:devel/p5-File-NFSLock \ p5-Path-Class>0:devel/p5-Path-Class -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Path-Dispatcher-Declarative/Makefile b/devel/p5-Path-Dispatcher-Declarative/Makefile index 3d82a346552..13d71e4a0f9 100644 --- a/devel/p5-Path-Dispatcher-Declarative/Makefile +++ b/devel/p5-Path-Dispatcher-Declarative/Makefile @@ -14,10 +14,10 @@ COMMENT= Sugary dispatcher for perl LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Path-Dispatcher>=1.02:devel/p5-Path-Dispatcher \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Path-Dispatcher>=1.02:devel/p5-Path-Dispatcher \ p5-Any-Moose>=0:devel/p5-Any-Moose \ p5-Sub-Exporter>=0:devel/p5-Sub-Exporter -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Path-Dispatcher/Makefile b/devel/p5-Path-Dispatcher/Makefile index 732222daa26..23800efee2c 100644 --- a/devel/p5-Path-Dispatcher/Makefile +++ b/devel/p5-Path-Dispatcher/Makefile @@ -13,9 +13,9 @@ COMMENT= Perl flexible and extensible dispatch LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Any-Moose>=0.12:devel/p5-Any-Moose \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Any-Moose>=0.12:devel/p5-Any-Moose \ p5-Try-Tiny>=0.02:lang/p5-Try-Tiny -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Fatal>=0:devel/p5-Test-Fatal USES= perl5 diff --git a/devel/p5-Path-FindDev/Makefile b/devel/p5-Path-FindDev/Makefile index 0ad09bbb7b7..3e3bc56f18d 100644 --- a/devel/p5-Path-FindDev/Makefile +++ b/devel/p5-Path-FindDev/Makefile @@ -16,10 +16,10 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Class-Tiny>=0.010:devel/p5-Class-Tiny \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Tiny>=0.010:devel/p5-Class-Tiny \ p5-Path-IsDev>=0.2.2:devel/p5-Path-IsDev \ p5-Path-Tiny>=0.054:devel/p5-Path-Tiny -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/devel/p5-Perl-Critic-Deprecated/Makefile b/devel/p5-Perl-Critic-Deprecated/Makefile index 4fdf28d3f84..de352b2276c 100644 --- a/devel/p5-Perl-Critic-Deprecated/Makefile +++ b/devel/p5-Perl-Critic-Deprecated/Makefile @@ -14,8 +14,8 @@ COMMENT= Policies that are no longer included with Perl::Critic LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Perl-Critic>=0:textproc/p5-Perl-Critic -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Perl-Critic>=0:textproc/p5-Perl-Critic USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Perl-PrereqScanner/Makefile b/devel/p5-Perl-PrereqScanner/Makefile index c5c98718f99..5cd01670b0c 100644 --- a/devel/p5-Perl-PrereqScanner/Makefile +++ b/devel/p5-Perl-PrereqScanner/Makefile @@ -14,7 +14,8 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Getopt-Long-Descriptive>=0:devel/p5-Getopt-Long-Descriptive \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Getopt-Long-Descriptive>=0:devel/p5-Getopt-Long-Descriptive \ p5-List-MoreUtils>=0:lang/p5-List-MoreUtils \ p5-Module-Path>=0:devel/p5-Module-Path \ p5-Moose>=0:devel/p5-Moose \ @@ -22,7 +23,6 @@ BUILD_DEPENDS= p5-Getopt-Long-Descriptive>=0:devel/p5-Getopt-Long-Descriptive \ p5-Params-Util>=0:devel/p5-Params-Util \ p5-String-RewritePrefix>=0.005:textproc/p5-String-RewritePrefix \ p5-namespace-autoclean>=0:devel/p5-namespace-autoclean -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Try-Tiny>=0:lang/p5-Try-Tiny NO_ARCH= yes diff --git a/devel/p5-Perl6-Builtins/Makefile b/devel/p5-Perl6-Builtins/Makefile index 6ce396b03c7..7c4ddbe1e54 100644 --- a/devel/p5-Perl6-Builtins/Makefile +++ b/devel/p5-Perl6-Builtins/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Provide Perl 5 versions of the new Perl 6 builtins -BUILD_DEPENDS= p5-Contextual-Return>=0:devel/p5-Contextual-Return -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Contextual-Return>=0:devel/p5-Contextual-Return USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Perl6-Export-Attrs/Makefile b/devel/p5-Perl6-Export-Attrs/Makefile index 2bc49fa5cb3..533235f12bd 100644 --- a/devel/p5-Perl6-Export-Attrs/Makefile +++ b/devel/p5-Perl6-Export-Attrs/Makefile @@ -13,8 +13,8 @@ COMMENT= Perl 6 'is export(...)' trait as a Perl 5 attribute LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-PadWalker>=0:devel/p5-PadWalker -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-PadWalker>=0:devel/p5-PadWalker NO_ARCH= yes USES= perl5 diff --git a/devel/p5-Perl6-Form/Makefile b/devel/p5-Perl6-Form/Makefile index 98a3a398db1..a542e38e180 100644 --- a/devel/p5-Perl6-Form/Makefile +++ b/devel/p5-Perl6-Form/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= ychsiao@ychsiao.org COMMENT= Implements the Perl 6 'form' built-in -BUILD_DEPENDS= p5-Perl6-Export>=0:devel/p5-Perl6-Export -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Perl6-Export>=0:devel/p5-Perl6-Export USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Perl6-Rules/Makefile b/devel/p5-Perl6-Rules/Makefile index 0900988444f..b8e9cc0ae2f 100644 --- a/devel/p5-Perl6-Rules/Makefile +++ b/devel/p5-Perl6-Rules/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Implements (most of) the Perl 6 regex syntax -BUILD_DEPENDS= p5-Attribute-Handlers>=0:devel/p5-Attribute-Handlers \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Attribute-Handlers>=0:devel/p5-Attribute-Handlers \ p5-Filter-Simple>=0:textproc/p5-Filter-Simple -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Perl6-Slurp/Makefile b/devel/p5-Perl6-Slurp/Makefile index f5892d281d9..4d08af2e1f8 100644 --- a/devel/p5-Perl6-Slurp/Makefile +++ b/devel/p5-Perl6-Slurp/Makefile @@ -13,8 +13,8 @@ COMMENT= Implements the Perl6 'slurp' built-in LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Perl6-Export>=0.07:devel/p5-Perl6-Export -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Perl6-Export>=0.07:devel/p5-Perl6-Export USE_PERL5= configure USES= perl5 diff --git a/devel/p5-Pipeline/Makefile b/devel/p5-Pipeline/Makefile index 4113a60b4fa..74c2556824a 100644 --- a/devel/p5-Pipeline/Makefile +++ b/devel/p5-Pipeline/Makefile @@ -12,13 +12,13 @@ PKGNAMEPREFIX= p5- MAINTAINER= rouslan@rshell.net COMMENT= Pipeline - Generic pipeline interface -BUILD_DEPENDS= p5-Class-ISA>=0:devel/p5-Class-ISA \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-ISA>=0:devel/p5-Class-ISA \ p5-Error>=0:lang/p5-Error \ p5-IO-Null>=0:devel/p5-IO-Null \ p5-IO-String>=0:devel/p5-IO-String \ p5-Data-UUID>=0:devel/p5-Data-UUID \ p5-Data-Structure-Util>=0:devel/p5-Data-Structure-Util -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Pithub/Makefile b/devel/p5-Pithub/Makefile index 1766893afa8..d150a5a15fe 100644 --- a/devel/p5-Pithub/Makefile +++ b/devel/p5-Pithub/Makefile @@ -15,14 +15,14 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Array-Iterator>=0:devel/p5-Array-Iterator \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Array-Iterator>=0:devel/p5-Array-Iterator \ p5-Cache-LRU>=0:devel/p5-Cache-LRU \ p5-HTTP-Message>=0:www/p5-HTTP-Message \ p5-JSON-MaybeXS>=0:converters/p5-JSON-MaybeXS \ p5-LWP-Protocol-https>=0:www/p5-LWP-Protocol-https \ p5-Moo>=0:devel/p5-Moo \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Import-Into>=0:devel/p5-Import-Into \ p5-Path-Tiny>=0:devel/p5-Path-Tiny \ p5-Test-Most>=0:devel/p5-Test-Most diff --git a/devel/p5-Pod-Coverage-Moose/Makefile b/devel/p5-Pod-Coverage-Moose/Makefile index ff487f3e7ed..97a9d7dea6a 100644 --- a/devel/p5-Pod-Coverage-Moose/Makefile +++ b/devel/p5-Pod-Coverage-Moose/Makefile @@ -13,10 +13,10 @@ COMMENT= Pod::Coverage extension for Moose LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Moose>=2.1300:devel/p5-Moose \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Moose>=2.1300:devel/p5-Moose \ p5-Pod-Coverage>=0:devel/p5-Pod-Coverage \ p5-namespace-autoclean>=0.08:devel/p5-namespace-autoclean -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Requires>=0:devel/p5-Test-Requires NO_ARCH= yes diff --git a/devel/p5-Pod-Coverage-TrustPod/Makefile b/devel/p5-Pod-Coverage-TrustPod/Makefile index 30ebb1744dc..4e8b5980f4a 100644 --- a/devel/p5-Pod-Coverage-TrustPod/Makefile +++ b/devel/p5-Pod-Coverage-TrustPod/Makefile @@ -14,10 +14,10 @@ COMMENT= Declare trusted symbol names in POD LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Pod-Coverage>=0:devel/p5-Pod-Coverage \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Pod-Coverage>=0:devel/p5-Pod-Coverage \ p5-Pod-Eventual>=0:textproc/p5-Pod-Eventual TEST_DEPENDS= p5-Test-Pod>=1.41:devel/p5-Test-Pod -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/devel/p5-Pod-Usage/Makefile b/devel/p5-Pod-Usage/Makefile index c0abc7f498b..0cd8794cae2 100644 --- a/devel/p5-Pod-Usage/Makefile +++ b/devel/p5-Pod-Usage/Makefile @@ -13,8 +13,8 @@ COMMENT= Print a usage message from embedded pod documentation LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-podlators>=4:textproc/p5-podlators -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-podlators>=4:textproc/p5-podlators NO_ARCH= yes USE_PERL5= configure diff --git a/devel/p5-Proc-WaitStat/Makefile b/devel/p5-Proc-WaitStat/Makefile index 8fdd5cc88d0..6d335cbd29c 100644 --- a/devel/p5-Proc-WaitStat/Makefile +++ b/devel/p5-Proc-WaitStat/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= ports@FreeBSD.org COMMENT= Interpret and act on wait() status values -BUILD_DEPENDS= p5-IPC-Signal>=0:devel/p5-IPC-Signal -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-IPC-Signal>=0:devel/p5-IPC-Signal USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Progress-Any/Makefile b/devel/p5-Progress-Any/Makefile index ab387a6e95f..cb7f09097ac 100644 --- a/devel/p5-Progress-Any/Makefile +++ b/devel/p5-Progress-Any/Makefile @@ -15,8 +15,8 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Time-Duration>=0:devel/p5-Time-Duration -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Time-Duration>=0:devel/p5-Time-Duration TEST_DEPENDS= p5-Test-Exception>=0:devel/p5-Test-Exception NO_ARCH= yes diff --git a/devel/p5-Project-Gantt/Makefile b/devel/p5-Project-Gantt/Makefile index 0d45ad9dce3..46cfc0ba512 100644 --- a/devel/p5-Project-Gantt/Makefile +++ b/devel/p5-Project-Gantt/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Create Gantt charts to manage project scheduling -BUILD_DEPENDS= p5-Class-Date>=0:devel/p5-Class-Date \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Date>=0:devel/p5-Class-Date \ convert:graphics/ImageMagick -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-RPSL-Parser/Makefile b/devel/p5-RPSL-Parser/Makefile index 72e0e2150ec..8375fd8aaef 100644 --- a/devel/p5-RPSL-Parser/Makefile +++ b/devel/p5-RPSL-Parser/Makefile @@ -15,8 +15,8 @@ COMMENT= Router Policy Specification Language (RFC2622) Parser LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Class-Accessor>=0.31:devel/p5-Class-Accessor -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Accessor>=0.31:devel/p5-Class-Accessor PORTSCOUT= skipv:0.039001,0.039_001,0.19,0.28,0.29,0.32,0.38,0.39 diff --git a/devel/p5-RRDTool-OO/Makefile b/devel/p5-RRDTool-OO/Makefile index e71b0de6adc..d8ccf3f7946 100644 --- a/devel/p5-RRDTool-OO/Makefile +++ b/devel/p5-RRDTool-OO/Makefile @@ -14,9 +14,9 @@ COMMENT= RRDTool::OO - Object-oriented interface to RRDTool LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= rrdtool>=0:databases/rrdtool \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= rrdtool>=0:databases/rrdtool \ p5-Log-Log4perl>=0.40:devel/p5-Log-Log4perl -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Rcs-Agent/Makefile b/devel/p5-Rcs-Agent/Makefile index accc6967443..758520b967a 100644 --- a/devel/p5-Rcs-Agent/Makefile +++ b/devel/p5-Rcs-Agent/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= nick@foobar.org COMMENT= Perl module for RCS archive manipulation -BUILD_DEPENDS= p5-String-ShellQuote>1.00:textproc/p5-String-ShellQuote -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-String-ShellQuote>1.00:textproc/p5-String-ShellQuote USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Readonly-XS/Makefile b/devel/p5-Readonly-XS/Makefile index f8332cb6be7..4519361158d 100644 --- a/devel/p5-Readonly-XS/Makefile +++ b/devel/p5-Readonly-XS/Makefile @@ -14,8 +14,8 @@ COMMENT= Companion module for Readonly.pm, to speed up read-only scalar variable LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Readonly>=1.02:devel/p5-Readonly -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Readonly>=1.02:devel/p5-Readonly USE_PERL5= configure USES= perl5 diff --git a/devel/p5-Reflex/Makefile b/devel/p5-Reflex/Makefile index 2b9b45e9010..95c41972a25 100644 --- a/devel/p5-Reflex/Makefile +++ b/devel/p5-Reflex/Makefile @@ -15,10 +15,10 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Moose>=2.0203:devel/p5-Moose \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Moose>=2.0203:devel/p5-Moose \ p5-MooseX-Role-Parameterized>=0.23:devel/p5-MooseX-Role-Parameterized \ p5-POE>=1.294:devel/p5-POE -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 shebangfix diff --git a/devel/p5-Reply/Makefile b/devel/p5-Reply/Makefile index 09c053264ad..dd5a6561b7d 100644 --- a/devel/p5-Reply/Makefile +++ b/devel/p5-Reply/Makefile @@ -14,7 +14,8 @@ COMMENT= Lightweight, extensible REPL for Perl LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Config-INI-Reader-Ordered>=0:devel/p5-Config-INI-Reader-Ordered \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Config-INI-Reader-Ordered>=0:devel/p5-Config-INI-Reader-Ordered \ p5-Devel-LexAlias>=0:devel/p5-Devel-LexAlias \ p5-Eval-Closure>=0.11:devel/p5-Eval-Closure \ p5-File-HomeDir>=0:devel/p5-File-HomeDir \ @@ -22,7 +23,6 @@ BUILD_DEPENDS= p5-Config-INI-Reader-Ordered>=0:devel/p5-Config-INI-Reader-Ordere p5-Package-Stash>=0:devel/p5-Package-Stash \ p5-PadWalker>=0:devel/p5-PadWalker \ p5-Try-Tiny>=0:lang/p5-Try-Tiny -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/devel/p5-Return-MultiLevel/Makefile b/devel/p5-Return-MultiLevel/Makefile index fc679cfd733..f61c11c7b3f 100644 --- a/devel/p5-Return-MultiLevel/Makefile +++ b/devel/p5-Return-MultiLevel/Makefile @@ -14,9 +14,9 @@ COMMENT= Return across multiple call levels LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Data-Munge>=0.07:devel/p5-Data-Munge \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Data-Munge>=0.07:devel/p5-Data-Munge \ p5-Scope-Upper>=0.29:devel/p5-Scope-Upper -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Fatal>=0:devel/p5-Test-Fatal NO_ARCH= yes diff --git a/devel/p5-Return-Type/Makefile b/devel/p5-Return-Type/Makefile index 18c96310f66..e2c7c8a9028 100644 --- a/devel/p5-Return-Type/Makefile +++ b/devel/p5-Return-Type/Makefile @@ -16,8 +16,8 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Type-Tiny>=0:devel/p5-Type-Tiny -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Type-Tiny>=0:devel/p5-Type-Tiny TEST_DEPENDS= p5-Test-Fatal>=0:devel/p5-Test-Fatal NO_ARCH= yes diff --git a/devel/p5-Rinci/Makefile b/devel/p5-Rinci/Makefile index 0fe36f2ee5a..2634cc4048e 100644 --- a/devel/p5-Rinci/Makefile +++ b/devel/p5-Rinci/Makefile @@ -15,8 +15,8 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Data-Sah-Normalize>=0:devel/p5-Data-Sah-Normalize -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Data-Sah-Normalize>=0:devel/p5-Data-Sah-Normalize TEST_DEPENDS= p5-DefHash>=1.0.6:devel/p5-DefHash \ p5-Sah>=0.9.36:devel/p5-Sah diff --git a/devel/p5-Role-HasMessage/Makefile b/devel/p5-Role-HasMessage/Makefile index cf4c9ae2e38..2c5a91d7cbe 100644 --- a/devel/p5-Role-HasMessage/Makefile +++ b/devel/p5-Role-HasMessage/Makefile @@ -15,12 +15,12 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Moose>=0:devel/p5-Moose \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Moose>=0:devel/p5-Moose \ p5-MooseX-Role-Parameterized>=0:devel/p5-MooseX-Role-Parameterized \ p5-String-Errf>=0:devel/p5-String-Errf \ p5-Try-Tiny>=0:lang/p5-Try-Tiny \ p5-namespace-clean>=0:devel/p5-namespace-clean -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/devel/p5-Role-Identifiable/Makefile b/devel/p5-Role-Identifiable/Makefile index a7f23bd85f5..9bcaf5e44ca 100644 --- a/devel/p5-Role-Identifiable/Makefile +++ b/devel/p5-Role-Identifiable/Makefile @@ -15,8 +15,8 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Moose>=0:devel/p5-Moose -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Moose>=0:devel/p5-Moose NO_ARCH= yes USES= perl5 diff --git a/devel/p5-Rose-DateTime/Makefile b/devel/p5-Rose-DateTime/Makefile index e40ce7db15b..0a6f26cc3e9 100644 --- a/devel/p5-Rose-DateTime/Makefile +++ b/devel/p5-Rose-DateTime/Makefile @@ -15,9 +15,9 @@ COMMENT= DateTime helper functions and objects LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-DateTime>=0:devel/p5-DateTime \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-DateTime>=0:devel/p5-DateTime \ p5-Rose-Object>=0.82:devel/p5-Rose-Object -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-RunApp/Makefile b/devel/p5-RunApp/Makefile index 653bac6546b..eff9af20565 100644 --- a/devel/p5-RunApp/Makefile +++ b/devel/p5-RunApp/Makefile @@ -15,10 +15,10 @@ COMMENT= Generic module to run web-applications LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-App-Control>=0:devel/p5-App-Control \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-App-Control>=0:devel/p5-App-Control \ p5-Template-Toolkit>=0:www/p5-Template-Toolkit \ p5-YAML>=0:textproc/p5-YAML -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-SOAP-WSDL/Makefile b/devel/p5-SOAP-WSDL/Makefile index cd0917e55f1..ea184f623ad 100644 --- a/devel/p5-SOAP-WSDL/Makefile +++ b/devel/p5-SOAP-WSDL/Makefile @@ -13,7 +13,8 @@ COMMENT= Perl module for SOAP with WSDL support LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Class-Load>=0.20:devel/p5-Class-Load \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Load>=0.20:devel/p5-Class-Load \ p5-Class-Std-Fast>=0.0.5:devel/p5-Class-Std-Fast \ p5-Template-Toolkit>=2.18:www/p5-Template-Toolkit \ p5-Term-ReadKey>=0:devel/p5-Term-ReadKey \ @@ -21,7 +22,6 @@ BUILD_DEPENDS= p5-Class-Load>=0.20:devel/p5-Class-Load \ p5-URI>=0:net/p5-URI \ p5-XML-Parser>=0:textproc/p5-XML-Parser \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-SPOPS/Makefile b/devel/p5-SPOPS/Makefile index 69ac9726781..71d6906564d 100644 --- a/devel/p5-SPOPS/Makefile +++ b/devel/p5-SPOPS/Makefile @@ -15,7 +15,8 @@ LICENSE= ART10 GPLv2+ LICENSE_COMB= dual LICENSE_FILE_GPLv2= ${WRKSRC}/COPYING -BUILD_DEPENDS= p5-Class-Accessor>=0.17:devel/p5-Class-Accessor \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Accessor>=0.17:devel/p5-Class-Accessor \ p5-Class-Date>=1:devel/p5-Class-Date \ p5-Class-Factory>=1:devel/p5-Class-Factory \ p5-Class-Fields>=0.140:devel/p5-Class-Fields \ @@ -23,7 +24,6 @@ BUILD_DEPENDS= p5-Class-Accessor>=0.17:devel/p5-Class-Accessor \ p5-Devel-StackTrace>=0.90:devel/p5-Devel-StackTrace \ p5-Log-Dispatch>=2:devel/p5-Log-Dispatch \ p5-Log-Log4perl>=0.35:devel/p5-Log-Log4perl -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/devel/p5-SVN-ACL/Makefile b/devel/p5-SVN-ACL/Makefile index 18a7a703953..d9070f17cfc 100644 --- a/devel/p5-SVN-ACL/Makefile +++ b/devel/p5-SVN-ACL/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Simple ACL frontend for subversion -BUILD_DEPENDS= p5-subversion>=0:devel/p5-subversion \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-subversion>=0:devel/p5-subversion \ p5-YAML>=0:textproc/p5-YAML -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 tar:tgz USE_PERL5= configure diff --git a/devel/p5-SVN-Access/Makefile b/devel/p5-SVN-Access/Makefile index a86c233fd7d..f044747d7db 100644 --- a/devel/p5-SVN-Access/Makefile +++ b/devel/p5-SVN-Access/Makefile @@ -13,9 +13,9 @@ COMMENT= Perl extension to manipulate SVN Access files LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Tie-IxHash>=1.21:devel/p5-Tie-IxHash \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Tie-IxHash>=1.21:devel/p5-Tie-IxHash \ p5-subversion>=0:devel/p5-subversion -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-SVN-Agent/Makefile b/devel/p5-SVN-Agent/Makefile index 88b56f042c1..44aefcd324f 100644 --- a/devel/p5-SVN-Agent/Makefile +++ b/devel/p5-SVN-Agent/Makefile @@ -11,10 +11,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= ychsiao@ychsiao.org COMMENT= Simple svn manipulation -BUILD_DEPENDS= p5-subversion>=0:devel/p5-subversion \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-subversion>=0:devel/p5-subversion \ p5-Class-Accessor>=0:devel/p5-Class-Accessor \ p5-File-Slurp>=0:devel/p5-File-Slurp -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-SVN-Dumpfile/Makefile b/devel/p5-SVN-Dumpfile/Makefile index ef1dc772ee5..62b34da933b 100644 --- a/devel/p5-SVN-Dumpfile/Makefile +++ b/devel/p5-SVN-Dumpfile/Makefile @@ -11,10 +11,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Perl extension to access and manipulate Subversion dumpfiles -BUILD_DEPENDS= p5-Data-GUID>=0:devel/p5-Data-GUID \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Data-GUID>=0:devel/p5-Data-GUID \ p5-TimeDate>=2.27:devel/p5-TimeDate \ p5-Readonly>=1.03:devel/p5-Readonly -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-SVN-Hook/Makefile b/devel/p5-SVN-Hook/Makefile index 2fb50c677c4..9acfce94726 100644 --- a/devel/p5-SVN-Hook/Makefile +++ b/devel/p5-SVN-Hook/Makefile @@ -13,9 +13,9 @@ COMMENT= Perl module for managing Subversion hook scripts LICENSE= APACHE20 -BUILD_DEPENDS= p5-Class-Accessor>=0:devel/p5-Class-Accessor \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Accessor>=0:devel/p5-Class-Accessor \ p5-Path-Class>=0:devel/p5-Path-Class -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-SVN-Hooks/Makefile b/devel/p5-SVN-Hooks/Makefile index 5cf7f8d4cc1..f44bd3bcd35 100644 --- a/devel/p5-SVN-Hooks/Makefile +++ b/devel/p5-SVN-Hooks/Makefile @@ -13,13 +13,13 @@ COMMENT= Framework for implementing Subversion hooks LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Data-Util>=0:devel/p5-Data-Util \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Data-Util>=0:devel/p5-Data-Util \ p5-SVN-Look>=0:devel/p5-SVN-Look \ p5-SVN-Notify>=0:devel/p5-SVN-Notify \ p5-XMLRPC-Lite>0:net/p5-XMLRPC-Lite \ p5-JIRA-REST>0:devel/p5-JIRA-REST \ subversion>=1.4.0:devel/subversion -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-URI>=0:net/p5-URI USES= perl5 diff --git a/devel/p5-SVN-Log/Makefile b/devel/p5-SVN-Log/Makefile index 3be582a4e4c..c5e50afea7a 100644 --- a/devel/p5-SVN-Log/Makefile +++ b/devel/p5-SVN-Log/Makefile @@ -14,9 +14,9 @@ COMMENT= SVN::Log - Extract change logs from a Subversion server LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-subversion>=0:devel/p5-subversion \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-subversion>=0:devel/p5-subversion \ p5-Test-Simple>=0:devel/p5-Test-Simple -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/devel/p5-SVN-Look/Makefile b/devel/p5-SVN-Look/Makefile index 783db2931d3..c0c28b6241e 100644 --- a/devel/p5-SVN-Look/Makefile +++ b/devel/p5-SVN-Look/Makefile @@ -14,10 +14,10 @@ COMMENT= Caching wrapper around the svnlook command LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-List-MoreUtils>=0:lang/p5-List-MoreUtils \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-List-MoreUtils>=0:lang/p5-List-MoreUtils \ p5-XML-Simple>=0:textproc/p5-XML-Simple \ subversion>=1.7.0:devel/subversion -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-SVN-Mirror/Makefile b/devel/p5-SVN-Mirror/Makefile index 7cc2dce1fc1..e17fe5beaf2 100644 --- a/devel/p5-SVN-Mirror/Makefile +++ b/devel/p5-SVN-Mirror/Makefile @@ -14,7 +14,8 @@ COMMENT= Mirror remote subversion repository to local LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Class-Accessor>=0:devel/p5-Class-Accessor \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Accessor>=0:devel/p5-Class-Accessor \ p5-Data-UUID>=0:devel/p5-Data-UUID \ p5-File-chdir>=0:devel/p5-File-chdir \ p5-SVN-Simple>=0:devel/p5-SVN-Simple \ @@ -23,7 +24,6 @@ BUILD_DEPENDS= p5-Class-Accessor>=0:devel/p5-Class-Accessor \ p5-URI>=0:net/p5-URI \ p5-VCP-autrijus>=0:devel/p5-VCP-autrijus \ p5-subversion>=0:devel/p5-subversion -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-SVN-Notify-Config/Makefile b/devel/p5-SVN-Notify-Config/Makefile index fb027834735..eb6592a79ff 100644 --- a/devel/p5-SVN-Notify-Config/Makefile +++ b/devel/p5-SVN-Notify-Config/Makefile @@ -15,10 +15,10 @@ COMMENT= Perl module for config-driven Subversion notification LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= ${LOCALBASE}/bin/svnlook:devel/subversion \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= ${LOCALBASE}/bin/svnlook:devel/subversion \ p5-SVN-Notify>=2.70:devel/p5-SVN-Notify \ p5-YAML>=0.62:textproc/p5-YAML -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Deep>=0.1:devel/p5-Test-Deep USES= perl5 diff --git a/devel/p5-SVN-Notify-Mirror/Makefile b/devel/p5-SVN-Notify-Mirror/Makefile index af78240092a..6fd0428b9aa 100644 --- a/devel/p5-SVN-Notify-Mirror/Makefile +++ b/devel/p5-SVN-Notify-Mirror/Makefile @@ -15,9 +15,9 @@ COMMENT= Keep a mirrored working copy of a repository path LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-SVN-Notify>=2.83:devel/p5-SVN-Notify \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-SVN-Notify>=2.83:devel/p5-SVN-Notify \ p5-YAML>=0.81:textproc/p5-YAML -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= modbuild diff --git a/devel/p5-SVN-Notify/Makefile b/devel/p5-SVN-Notify/Makefile index 28d6a0881cb..552cc1ab78c 100644 --- a/devel/p5-SVN-Notify/Makefile +++ b/devel/p5-SVN-Notify/Makefile @@ -13,11 +13,11 @@ COMMENT= Subversion activity notification LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Email-Address-XS>=1.03:mail/p5-Email-Address-XS \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Email-Address-XS>=1.03:mail/p5-Email-Address-XS \ p5-HTML-Parser>=0:www/p5-HTML-Parser \ p5-Net-SMTP-TLS>=0:mail/p5-Net-SMTP-TLS \ p5-Text-Trac>=0.10:textproc/p5-Text-Trac -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/devel/p5-SVN-S4/Makefile b/devel/p5-SVN-S4/Makefile index eefe4834cd4..cc18e0a072f 100644 --- a/devel/p5-SVN-S4/Makefile +++ b/devel/p5-SVN-S4/Makefile @@ -13,11 +13,11 @@ COMMENT= Wrapper for subversion program LICENSE= ART20 LGPL3 LICENSE_COMB= dual -BUILD_DEPENDS= p5-Config-Tiny>=0:devel/p5-Config-Tiny \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Config-Tiny>=0:devel/p5-Config-Tiny \ p5-DBD-SQLite>=0:databases/p5-DBD-SQLite \ p5-IO-AIO>=0:devel/p5-IO-AIO \ p5-subversion>=0:devel/p5-subversion -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/devel/p5-SVN-Simple/Makefile b/devel/p5-SVN-Simple/Makefile index f74bb1fd7be..b4200d13955 100644 --- a/devel/p5-SVN-Simple/Makefile +++ b/devel/p5-SVN-Simple/Makefile @@ -14,8 +14,8 @@ COMMENT= Simple interface to SVN::Delta::Editor LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-subversion>=0:devel/p5-subversion -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-subversion>=0:devel/p5-subversion USES= perl5 USE_PERL5= configure diff --git a/devel/p5-SVN-Statistics/Makefile b/devel/p5-SVN-Statistics/Makefile index 81a519874de..8581d6fcb9d 100644 --- a/devel/p5-SVN-Statistics/Makefile +++ b/devel/p5-SVN-Statistics/Makefile @@ -15,11 +15,11 @@ COMMENT= SVN::Statistics - perl module to create subversion statistics LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-subversion>=0:devel/p5-subversion \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-subversion>=0:devel/p5-subversion \ p5-RRDTool-OO>=0:devel/p5-RRDTool-OO \ p5-Data-Dumper-Simple>=0:devel/p5-Data-Dumper-Simple \ p5-IO-Toolkit>=0:devel/p5-IO-Toolkit -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Scalar-Defer/Makefile b/devel/p5-Scalar-Defer/Makefile index ae68334d1e7..bbc6665998e 100644 --- a/devel/p5-Scalar-Defer/Makefile +++ b/devel/p5-Scalar-Defer/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Calculate values on demand -BUILD_DEPENDS= p5-Class-InsideOut>=0:devel/p5-Class-InsideOut \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-InsideOut>=0:devel/p5-Class-InsideOut \ p5-Exporter-Lite>=0:devel/p5-Exporter-Lite -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Scalar-Does/Makefile b/devel/p5-Scalar-Does/Makefile index bf6dcad98be..ab08646cfc5 100644 --- a/devel/p5-Scalar-Does/Makefile +++ b/devel/p5-Scalar-Does/Makefile @@ -14,12 +14,12 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Exporter-Tiny>=0.026:devel/p5-Exporter-Tiny \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Exporter-Tiny>=0.026:devel/p5-Exporter-Tiny \ p5-Type-Tiny>=0.004:devel/p5-Type-Tiny \ p5-URI>=0:net/p5-URI \ p5-lexical-underscore>=0:devel/p5-lexical-underscore \ p5-namespace-clean>=0.19:devel/p5-namespace-clean -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-IO-All>=0:devel/p5-IO-All \ p5-Moose>=0:devel/p5-Moose \ p5-MooseX-Types>=0:devel/p5-MooseX-Types \ diff --git a/devel/p5-Sepia/Makefile b/devel/p5-Sepia/Makefile index b13b46f9e0f..77274d6dc00 100644 --- a/devel/p5-Sepia/Makefile +++ b/devel/p5-Sepia/Makefile @@ -12,14 +12,14 @@ PKGNAMESUFFIX= ${EMACS_PKGNAMESUFFIX} MAINTAINER= ashish@FreeBSD.org COMMENT= Simple Emacs-Perl Interface -BUILD_DEPENDS= p5-Devel-Size>=0:devel/p5-Devel-Size \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Devel-Size>=0:devel/p5-Devel-Size \ p5-IO-stringy>=0:devel/p5-IO-stringy \ p5-PadWalker>=0:devel/p5-PadWalker \ p5-Devel-LexAlias>=0:devel/p5-Devel-LexAlias \ p5-libwww>=0:www/p5-libwww \ p5-Module-Info>=0:devel/p5-Module-Info \ p5-BSD-Resource>=0:devel/p5-BSD-Resource -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= emacs gmake makeinfo perl5 USE_PERL5= configure diff --git a/devel/p5-Set-Array/Makefile b/devel/p5-Set-Array/Makefile index bcda41b1425..3e3979279d3 100644 --- a/devel/p5-Set-Array/Makefile +++ b/devel/p5-Set-Array/Makefile @@ -14,9 +14,9 @@ COMMENT= Arrays as objects with set operations LICENSE= ART10 -BUILD_DEPENDS= p5-Try-Tiny>=0.11:lang/p5-Try-Tiny \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Try-Tiny>=0.11:lang/p5-Try-Tiny \ p5-Want>=0:devel/p5-Want -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Deep>=0:devel/p5-Test-Deep \ p5-Test-Pod>=0:devel/p5-Test-Pod diff --git a/devel/p5-Set-ConsistentHash/Makefile b/devel/p5-Set-ConsistentHash/Makefile index 3107a9bc60d..cc39a8c8866 100644 --- a/devel/p5-Set-ConsistentHash/Makefile +++ b/devel/p5-Set-ConsistentHash/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Library for doing consistent hashing -BUILD_DEPENDS= p5-Digest-SHA1>=0:security/p5-Digest-SHA1 -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Digest-SHA1>=0:security/p5-Digest-SHA1 USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Shell-Base/Makefile b/devel/p5-Shell-Base/Makefile index bf84198c23a..845e16b8ee4 100644 --- a/devel/p5-Shell-Base/Makefile +++ b/devel/p5-Shell-Base/Makefile @@ -14,9 +14,9 @@ COMMENT= Perl module implementing a simple command shell LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Term-Size>=0:devel/p5-Term-Size \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Term-Size>=0:devel/p5-Term-Size \ p5-Text-Shellwords>=0:textproc/p5-Text-Shellwords -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-ShipIt-Step-Manifest/Makefile b/devel/p5-ShipIt-Step-Manifest/Makefile index b8efbe7bc93..3e51e25568e 100644 --- a/devel/p5-ShipIt-Step-Manifest/Makefile +++ b/devel/p5-ShipIt-Step-Manifest/Makefile @@ -15,9 +15,9 @@ COMMENT= ShipIt step for recreating the MANIFEST LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Dist-Joseki>=0:devel/p5-Dist-Joseki \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Dist-Joseki>=0:devel/p5-Dist-Joseki \ p5-ShipIt>=0:devel/p5-ShipIt -RUN_DEPENDS:= ${BUILD_DEPENDS} USE_PERL5= configure USES= perl5 diff --git a/devel/p5-Spoon/Makefile b/devel/p5-Spoon/Makefile index 29326587cce..9b74658da07 100644 --- a/devel/p5-Spoon/Makefile +++ b/devel/p5-Spoon/Makefile @@ -12,11 +12,11 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Spiffy Application Building Framework -BUILD_DEPENDS= p5-Spiffy>=0:devel/p5-Spiffy \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Spiffy>=0:devel/p5-Spiffy \ p5-IO-All>=0:devel/p5-IO-All \ p5-Template-Toolkit>=0:www/p5-Template-Toolkit \ p5-URI>=0:net/p5-URI -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-String-Checker/Makefile b/devel/p5-String-Checker/Makefile index 3d4edaf04fc..dbcbe8d2ec3 100644 --- a/devel/p5-String-Checker/Makefile +++ b/devel/p5-String-Checker/Makefile @@ -14,8 +14,8 @@ COMMENT= Perl module implementing an extensible string validation interface LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Date-Manip>=0:devel/p5-Date-Manip -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Date-Manip>=0:devel/p5-Date-Manip USES= perl5 USE_PERL5= configure diff --git a/devel/p5-String-Diff/Makefile b/devel/p5-String-Diff/Makefile index e412209137b..ec803da5fa6 100644 --- a/devel/p5-String-Diff/Makefile +++ b/devel/p5-String-Diff/Makefile @@ -13,8 +13,8 @@ COMMENT= Simple diff to String LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Algorithm-Diff>=0:devel/p5-Algorithm-Diff -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Algorithm-Diff>=0:devel/p5-Algorithm-Diff TEST_DEPENDS= p5-Test-Base>=0:devel/p5-Test-Base \ p5-YAML>=0:textproc/p5-YAML diff --git a/devel/p5-Sub-Alias/Makefile b/devel/p5-Sub-Alias/Makefile index 2c34874a66d..f5a18b47928 100644 --- a/devel/p5-Sub-Alias/Makefile +++ b/devel/p5-Sub-Alias/Makefile @@ -14,10 +14,10 @@ COMMENT= Simple subroutine alias LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Devel-BeginLift>=0:devel/p5-Devel-BeginLift \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Devel-BeginLift>=0:devel/p5-Devel-BeginLift \ p5-Devel-Declare>=0:devel/p5-Devel-Declare \ p5-Sub-Exporter>=0:devel/p5-Sub-Exporter -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/devel/p5-Sub-Exporter-GlobExporter/Makefile b/devel/p5-Sub-Exporter-GlobExporter/Makefile index 88c501fbfa6..195bf1c2f06 100644 --- a/devel/p5-Sub-Exporter-GlobExporter/Makefile +++ b/devel/p5-Sub-Exporter-GlobExporter/Makefile @@ -15,8 +15,8 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Sub-Exporter>=0:devel/p5-Sub-Exporter -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Sub-Exporter>=0:devel/p5-Sub-Exporter NO_ARCH= yes USES= perl5 diff --git a/devel/p5-Sub-Multi/Makefile b/devel/p5-Sub-Multi/Makefile index 9166fbc0cf0..30da8e7f8ae 100644 --- a/devel/p5-Sub-Multi/Makefile +++ b/devel/p5-Sub-Multi/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Data::Bind-based multi-sub dispatch -BUILD_DEPENDS= p5-Class-Multimethods-Pure>=0.11:devel/p5-Class-Multimethods-Pure \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Multimethods-Pure>=0.11:devel/p5-Class-Multimethods-Pure \ p5-Data-Bind>=0.26:devel/p5-Data-Bind -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Exception>=0:devel/p5-Test-Exception USES= perl5 diff --git a/devel/p5-Sub-Signatures/Makefile b/devel/p5-Sub-Signatures/Makefile index 34caf3289b7..177e67e7db7 100644 --- a/devel/p5-Sub-Signatures/Makefile +++ b/devel/p5-Sub-Signatures/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Use proper signatures for subroutines, including dispatching -BUILD_DEPENDS= p5-Sub-Uplevel>=0.12:devel/p5-Sub-Uplevel -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Sub-Uplevel>=0.12:devel/p5-Sub-Uplevel TEST_DEPENDS= p5-Test-Exception>=0:devel/p5-Test-Exception USES= perl5 diff --git a/devel/p5-Sub-WrapPackages/Makefile b/devel/p5-Sub-WrapPackages/Makefile index 7d8cd5bb77d..679a797bcb1 100644 --- a/devel/p5-Sub-WrapPackages/Makefile +++ b/devel/p5-Sub-WrapPackages/Makefile @@ -13,10 +13,10 @@ COMMENT= Add pre- and post-execution wrappers LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Devel-Caller-IgnoreNamespaces>=1:devel/p5-Devel-Caller-IgnoreNamespaces \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Devel-Caller-IgnoreNamespaces>=1:devel/p5-Devel-Caller-IgnoreNamespaces \ p5-Hook-LexWrap>=0:devel/p5-Hook-LexWrap \ p5-Sub-Prototype>=0.02:devel/p5-Sub-Prototype -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Syntax-Keyword-Gather/Makefile b/devel/p5-Syntax-Keyword-Gather/Makefile index f25c07dd9a0..356ec1be3e6 100644 --- a/devel/p5-Syntax-Keyword-Gather/Makefile +++ b/devel/p5-Syntax-Keyword-Gather/Makefile @@ -14,8 +14,8 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Sub-Exporter-Progressive>=0:devel/p5-Sub-Exporter-Progressive -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Sub-Exporter-Progressive>=0:devel/p5-Sub-Exporter-Progressive NO_ARCH= yes USE_PERL5= configure diff --git a/devel/p5-Syntax-Keyword-Junction/Makefile b/devel/p5-Syntax-Keyword-Junction/Makefile index 695fde0e0bc..8fb4ecd58a5 100644 --- a/devel/p5-Syntax-Keyword-Junction/Makefile +++ b/devel/p5-Syntax-Keyword-Junction/Makefile @@ -12,9 +12,9 @@ COMMENT= Perl6 style Junction operators in Perl5 LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-syntax>=0:devel/p5-syntax \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-syntax>=0:devel/p5-syntax \ p5-Sub-Exporter-Progressive>=0.001006:devel/p5-Sub-Exporter-Progressive -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Sys-Info-Driver-BSD/Makefile b/devel/p5-Sys-Info-Driver-BSD/Makefile index 2edf1dd3d19..309ddc6f751 100644 --- a/devel/p5-Sys-Info-Driver-BSD/Makefile +++ b/devel/p5-Sys-Info-Driver-BSD/Makefile @@ -14,10 +14,10 @@ COMMENT= BSD driver for Sys::Info LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-BSD-Sysctl>=0.08:sysutils/p5-BSD-Sysctl \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-BSD-Sysctl>=0.08:sysutils/p5-BSD-Sysctl \ p5-Sys-Info-Base>=0.7801:devel/p5-Sys-Info-Base \ p5-Unix-Processors>=0:sysutils/p5-Unix-Processors -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Pod>=0:devel/p5-Test-Pod \ p5-Test-Pod-Coverage>=0:devel/p5-Test-Pod-Coverage \ p5-Test-Sys-Info>=0.20:devel/p5-Test-Sys-Info diff --git a/devel/p5-Sys-Info/Makefile b/devel/p5-Sys-Info/Makefile index 62cc74b5941..9651cffebf5 100644 --- a/devel/p5-Sys-Info/Makefile +++ b/devel/p5-Sys-Info/Makefile @@ -14,9 +14,9 @@ COMMENT= Fetch information from the host system LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Sys-Info-Base>=0.7800:devel/p5-Sys-Info-Base \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Sys-Info-Base>=0.7800:devel/p5-Sys-Info-Base \ p5-Sys-Info-Driver-BSD>=0.7800:devel/p5-Sys-Info-Driver-BSD -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Pod>=0:devel/p5-Test-Pod \ p5-Test-Pod-Coverage>=0:devel/p5-Test-Pod-Coverage \ p5-Test-Sys-Info>=0.20:devel/p5-Test-Sys-Info diff --git a/devel/p5-System-Info/Makefile b/devel/p5-System-Info/Makefile index 5ee2195fa3a..e346b312652 100644 --- a/devel/p5-System-Info/Makefile +++ b/devel/p5-System-Info/Makefile @@ -13,9 +13,9 @@ COMMENT= Extract system info for reporting LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Test-Simple>=0.88:devel/p5-Test-Simple \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Test-Simple>=0.88:devel/p5-Test-Simple \ p5-Test-NoWarnings>=0:devel/p5-Test-NoWarnings -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 tar:tgz diff --git a/devel/p5-TAP-SimpleOutput/Makefile b/devel/p5-TAP-SimpleOutput/Makefile index 17ca8fc1bd0..45dabc18be7 100644 --- a/devel/p5-TAP-SimpleOutput/Makefile +++ b/devel/p5-TAP-SimpleOutput/Makefile @@ -12,10 +12,10 @@ COMMENT= Simple closure-driven TAP generator LICENSE= LGPL21 LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Class-Load>=0:devel/p5-Class-Load \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Load>=0:devel/p5-Class-Load \ p5-Perl-Version>=0:devel/p5-Perl-Version \ p5-Sub-Exporter-Progressive>=0:devel/p5-Sub-Exporter-Progressive -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Term-Animation/Makefile b/devel/p5-Term-Animation/Makefile index d05336f3d65..87a4cf1f65e 100644 --- a/devel/p5-Term-Animation/Makefile +++ b/devel/p5-Term-Animation/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= fjoe@FreeBSD.org COMMENT= ASCII sprite animation framework -BUILD_DEPENDS= p5-Curses>=0:devel/p5-Curses -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Curses>=0:devel/p5-Curses USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Term-Clui/Makefile b/devel/p5-Term-Clui/Makefile index a9c5b83d690..52edb51d980 100644 --- a/devel/p5-Term-Clui/Makefile +++ b/devel/p5-Term-Clui/Makefile @@ -12,10 +12,10 @@ COMMENT= Perl module offering a Command-Line User Interface LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Term-Size>=0:devel/p5-Term-Size \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Term-Size>=0:devel/p5-Term-Size \ p5-Term-ReadKey>=2.14:devel/p5-Term-ReadKey \ p5-Term-ReadLine-Gnu>=0:devel/p5-Term-ReadLine-Gnu -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Term-Menus/Makefile b/devel/p5-Term-Menus/Makefile index fb8d67a48a4..bb165a7230d 100644 --- a/devel/p5-Term-Menus/Makefile +++ b/devel/p5-Term-Menus/Makefile @@ -13,13 +13,13 @@ COMMENT= Create Powerful Terminal, Console, and CMD Environment Menus LICENSE= AGPLv3 -BUILD_DEPENDS= p5-Capture-Tiny>0:devel/p5-Capture-Tiny \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Capture-Tiny>0:devel/p5-Capture-Tiny \ p5-Data-Dump-Streamer>0:devel/p5-Data-Dump-Streamer \ p5-Devel-Symdump>0:devel/p5-Devel-Symdump \ p5-PadWalker>0:devel/p5-PadWalker \ p5-Term-RawInput>=1.20:devel/p5-Term-RawInput \ p5-Term-ReadKey>0:devel/p5-Term-ReadKey -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/devel/p5-Term-ProgressBar-Quiet/Makefile b/devel/p5-Term-ProgressBar-Quiet/Makefile index 991ffe86c6f..6c9faf411b3 100644 --- a/devel/p5-Term-ProgressBar-Quiet/Makefile +++ b/devel/p5-Term-ProgressBar-Quiet/Makefile @@ -14,10 +14,10 @@ COMMENT= Perl extension to display a progress bar, if interactive LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Term-ProgressBar>=0:devel/p5-Term-ProgressBar \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Term-ProgressBar>=0:devel/p5-Term-ProgressBar \ p5-Test-MockObject>0:devel/p5-Test-MockObject \ p5-IO-Interactive>=0:devel/p5-IO-Interactive -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Term-ProgressBar-Simple/Makefile b/devel/p5-Term-ProgressBar-Simple/Makefile index e87275d8cac..457f4222aae 100644 --- a/devel/p5-Term-ProgressBar-Simple/Makefile +++ b/devel/p5-Term-ProgressBar-Simple/Makefile @@ -14,8 +14,8 @@ COMMENT= Simpler Term::ProgressBar interface LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Term-ProgressBar-Quiet>=0:devel/p5-Term-ProgressBar-Quiet -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Term-ProgressBar-Quiet>=0:devel/p5-Term-ProgressBar-Quiet USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Term-ProgressBar/Makefile b/devel/p5-Term-ProgressBar/Makefile index 13c696630d3..59d5c1e64c2 100644 --- a/devel/p5-Term-ProgressBar/Makefile +++ b/devel/p5-Term-ProgressBar/Makefile @@ -13,9 +13,9 @@ COMMENT= Perl extension to display a progress bar LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Class-MethodMaker>=1.02:devel/p5-Class-MethodMaker \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-MethodMaker>=1.02:devel/p5-Class-MethodMaker \ p5-Term-ReadKey>=2.14:devel/p5-Term-ReadKey -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Capture-Tiny>=0.13:devel/p5-Capture-Tiny \ p5-Test-Exception>=0.31:devel/p5-Test-Exception \ p5-Test-Warnings>=0:devel/p5-Test-Warnings diff --git a/devel/p5-Term-Prompt/Makefile b/devel/p5-Term-Prompt/Makefile index da2a6ac8679..e313c370f44 100644 --- a/devel/p5-Term-Prompt/Makefile +++ b/devel/p5-Term-Prompt/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Perl extension for prompting a user for information -BUILD_DEPENDS= p5-Term-ReadKey>=0:devel/p5-Term-ReadKey -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Term-ReadKey>=0:devel/p5-Term-ReadKey USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Term-Query/Makefile b/devel/p5-Term-Query/Makefile index 1a7fb7686b8..0980a870772 100644 --- a/devel/p5-Term-Query/Makefile +++ b/devel/p5-Term-Query/Makefile @@ -14,8 +14,8 @@ COMMENT= Interactive question-response user interface module LICENSE= GPLv2 GPLv3 LICENSE_COMB= dual -BUILD_DEPENDS= p5-Array-PrintCols>=0:misc/p5-Array-PrintCols -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Array-PrintCols>=0:misc/p5-Array-PrintCols USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Term-RawInput/Makefile b/devel/p5-Term-RawInput/Makefile index 6212f63a612..69adee6dc2e 100644 --- a/devel/p5-Term-RawInput/Makefile +++ b/devel/p5-Term-RawInput/Makefile @@ -13,8 +13,8 @@ COMMENT= Drop-in replacement for with handling of non-standard keys LICENSE= GPLv2 -BUILD_DEPENDS= p5-Term-ReadKey>=0:devel/p5-Term-ReadKey -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Term-ReadKey>=0:devel/p5-Term-ReadKey USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Term-ReadLine-Perl/Makefile b/devel/p5-Term-ReadLine-Perl/Makefile index da2a1c2ac36..2c3c45d8c9d 100644 --- a/devel/p5-Term-ReadLine-Perl/Makefile +++ b/devel/p5-Term-ReadLine-Perl/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Quick implementation of the minimal interface to Readline libraries -BUILD_DEPENDS= p5-Term-ReadKey>=0:devel/p5-Term-ReadKey -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Term-ReadKey>=0:devel/p5-Term-ReadKey USE_PERL5= configure USES= perl5 diff --git a/devel/p5-Term-ReadLine-Zoid/Makefile b/devel/p5-Term-ReadLine-Zoid/Makefile index b3278ede6ff..f8c6480dc1c 100644 --- a/devel/p5-Term-ReadLine-Zoid/Makefile +++ b/devel/p5-Term-ReadLine-Zoid/Makefile @@ -12,8 +12,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Provides an interactive input buffer written in plain PERL -BUILD_DEPENDS= p5-Term-ReadKey>=0:devel/p5-Term-ReadKey -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Term-ReadKey>=0:devel/p5-Term-ReadKey USES= perl5 USE_PERL5= modbuild diff --git a/devel/p5-Term-Shell/Makefile b/devel/p5-Term-Shell/Makefile index c3f2f1f6534..7fbd35584dd 100644 --- a/devel/p5-Term-Shell/Makefile +++ b/devel/p5-Term-Shell/Makefile @@ -13,9 +13,9 @@ COMMENT= Write command-line shells in Perl LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Term-ReadKey>=0:devel/p5-Term-ReadKey \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Term-ReadKey>=0:devel/p5-Term-ReadKey \ p5-Text-Autoformat>=0:textproc/p5-Text-Autoformat -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/devel/p5-Term-Size-Any/Makefile b/devel/p5-Term-Size-Any/Makefile index 626061543f9..0dd2ab07a61 100644 --- a/devel/p5-Term-Size-Any/Makefile +++ b/devel/p5-Term-Size-Any/Makefile @@ -14,9 +14,9 @@ COMMENT= Retrieve terminal size LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Devel-Hide>=0:devel/p5-Devel-Hide \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Devel-Hide>=0:devel/p5-Devel-Hide \ p5-Term-Size-Perl>=0:devel/p5-Term-Size-Perl -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Pod-Coverage>=1.04:devel/p5-Test-Pod-Coverage \ p5-Test-Pod>=1.18:devel/p5-Test-Pod diff --git a/devel/p5-Term-UI/Makefile b/devel/p5-Term-UI/Makefile index 6fbdeb8e16e..bfebd2bb44e 100644 --- a/devel/p5-Term-UI/Makefile +++ b/devel/p5-Term-UI/Makefile @@ -14,8 +14,8 @@ COMMENT= Term::ReadLine UI made easy LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Log-Message-Simple>=0:devel/p5-Log-Message-Simple -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Log-Message-Simple>=0:devel/p5-Log-Message-Simple NO_ARCH= yes USES= perl5 diff --git a/devel/p5-Term-VT102-Boundless/Makefile b/devel/p5-Term-VT102-Boundless/Makefile index 2b62ab4ba2e..c930e489a35 100644 --- a/devel/p5-Term-VT102-Boundless/Makefile +++ b/devel/p5-Term-VT102-Boundless/Makefile @@ -14,8 +14,8 @@ COMMENT= Subclass to emulate boundless DEC VT102 terminal LICENSE= ART10 GPLv1 MIT LICENSE_COMB= dual -BUILD_DEPENDS= p5-Term-VT102>=0:devel/p5-Term-VT102 -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Term-VT102>=0:devel/p5-Term-VT102 NO_ARCH= yes USES= perl5 diff --git a/devel/p5-Term-Visual/Makefile b/devel/p5-Term-Visual/Makefile index b1ddbcac4b1..e6ecd096476 100644 --- a/devel/p5-Term-Visual/Makefile +++ b/devel/p5-Term-Visual/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Split-terminal user interface -BUILD_DEPENDS= p5-POE>=0:devel/p5-POE \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-POE>=0:devel/p5-POE \ p5-Curses>=0:devel/p5-Curses -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Test-Able-Runner/Makefile b/devel/p5-Test-Able-Runner/Makefile index cf145955703..0de672cc6ee 100644 --- a/devel/p5-Test-Able-Runner/Makefile +++ b/devel/p5-Test-Able-Runner/Makefile @@ -14,10 +14,10 @@ COMMENT= Use Test::Able without a bunch of boilerplate LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Module-Pluggable>=3.6:devel/p5-Module-Pluggable \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Module-Pluggable>=3.6:devel/p5-Module-Pluggable \ p5-Moose>=0.94:devel/p5-Moose \ p5-Test-Able>=0.09:devel/p5-Test-Able -RUN_DEPENDS:= ${BUILD_DEPENDS} USE_PERL5= configure USES= perl5 diff --git a/devel/p5-Test-Able/Makefile b/devel/p5-Test-Able/Makefile index 029f5daec74..ebac0e9a730 100644 --- a/devel/p5-Test-Able/Makefile +++ b/devel/p5-Test-Able/Makefile @@ -14,8 +14,8 @@ COMMENT= Xunit with Moose LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Moose>=0.94:devel/p5-Moose -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Moose>=0.94:devel/p5-Moose USE_PERL5= configure USES= perl5 diff --git a/devel/p5-Test-Aggregate/Makefile b/devel/p5-Test-Aggregate/Makefile index 38740ea8bd0..2df43531fd1 100644 --- a/devel/p5-Test-Aggregate/Makefile +++ b/devel/p5-Test-Aggregate/Makefile @@ -13,10 +13,10 @@ COMMENT= Aggregate Perl tests for better performance LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Test-Most>=0.21:devel/p5-Test-Most \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Test-Most>=0.21:devel/p5-Test-Most \ p5-Test-NoWarnings>0:devel/p5-Test-NoWarnings \ p5-Test-Trap>0:devel/p5-Test-Trap -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/devel/p5-Test-Bits/Makefile b/devel/p5-Test-Bits/Makefile index 75c58a1f848..e17411da169 100644 --- a/devel/p5-Test-Bits/Makefile +++ b/devel/p5-Test-Bits/Makefile @@ -14,8 +14,8 @@ COMMENT= Provides a bits_is() subroutine for testing binary data LICENSE= ART20 LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-List-AllUtils>=0:devel/p5-List-AllUtils -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-List-AllUtils>=0:devel/p5-List-AllUtils TEST_DEPENDS= p5-Test-Fatal>=0:devel/p5-Test-Fatal NO_ARCH= yes diff --git a/devel/p5-Test-CPAN-Meta-YAML/Makefile b/devel/p5-Test-CPAN-Meta-YAML/Makefile index 0df4a4adce2..63cdbd42bde 100644 --- a/devel/p5-Test-CPAN-Meta-YAML/Makefile +++ b/devel/p5-Test-CPAN-Meta-YAML/Makefile @@ -12,8 +12,8 @@ COMMENT= Validate a META.yml file within a CPAN distribution LICENSE= ART20 -BUILD_DEPENDS= p5-Test-YAML-Valid>=0.03:devel/p5-Test-YAML-Valid -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Test-YAML-Valid>=0.03:devel/p5-Test-YAML-Valid USE_PERL5= configure USES= perl5 diff --git a/devel/p5-Test-Class-Most/Makefile b/devel/p5-Test-Class-Most/Makefile index 62c885b6c18..0a737f8d574 100644 --- a/devel/p5-Test-Class-Most/Makefile +++ b/devel/p5-Test-Class-Most/Makefile @@ -15,9 +15,9 @@ COMMENT= Test Classes the easy way LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Test-Class>=0.38:devel/p5-Test-Class \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Test-Class>=0.38:devel/p5-Test-Class \ p5-Test-Most>=0.31:devel/p5-Test-Most -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= modbuild diff --git a/devel/p5-Test-Class/Makefile b/devel/p5-Test-Class/Makefile index 83a484d0fa8..665880a94cb 100644 --- a/devel/p5-Test-Class/Makefile +++ b/devel/p5-Test-Class/Makefile @@ -13,8 +13,8 @@ COMMENT= Easily create test classes in an xUnit style LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-MRO-Compat>=0.11:devel/p5-MRO-Compat -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-MRO-Compat>=0.11:devel/p5-MRO-Compat TEST_DEPENDS= p5-Contextual-Return>=0:devel/p5-Contextual-Return \ p5-Test-Exception>=0.25:devel/p5-Test-Exception diff --git a/devel/p5-Test-ClassAPI/Makefile b/devel/p5-Test-ClassAPI/Makefile index 76f968db3dc..ad62ead855d 100644 --- a/devel/p5-Test-ClassAPI/Makefile +++ b/devel/p5-Test-ClassAPI/Makefile @@ -14,10 +14,10 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Class-Inspector>=1.12:devel/p5-Class-Inspector \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Inspector>=1.12:devel/p5-Class-Inspector \ p5-Config-Tiny>=2.00:devel/p5-Config-Tiny \ p5-Params-Util>=1.00:devel/p5-Params-Util -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/devel/p5-Test-Classy/Makefile b/devel/p5-Test-Classy/Makefile index 1e9ccf27306..1d6cb7605f2 100644 --- a/devel/p5-Test-Classy/Makefile +++ b/devel/p5-Test-Classy/Makefile @@ -15,13 +15,13 @@ COMMENT= Write your unit tests in other modules than *.t LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Class-Data-Inheritable>=0:devel/p5-Class-Data-Inheritable \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Data-Inheritable>=0:devel/p5-Class-Data-Inheritable \ p5-Class-Inspector>=0:devel/p5-Class-Inspector \ p5-Data-Dump>=0:devel/p5-Data-Dump \ p5-Module-Find>=0.05:devel/p5-Module-Find \ p5-Sub-Install>=0.920:devel/p5-Sub-Install \ p5-Term-Encoding>=0:devel/p5-Term-Encoding -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-UseAllModules>=0.09:devel/p5-Test-UseAllModules USES= perl5 diff --git a/devel/p5-Test-Compile/Makefile b/devel/p5-Test-Compile/Makefile index 17ee8457d70..6482ebd33ba 100644 --- a/devel/p5-Test-Compile/Makefile +++ b/devel/p5-Test-Compile/Makefile @@ -15,9 +15,9 @@ COMMENT= Check whether Perl module files compile correctly LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Devel-CheckOS>=0:devel/p5-Devel-CheckOS \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Devel-CheckOS>=0:devel/p5-Devel-CheckOS \ p5-UNIVERSAL-require>=0:devel/p5-UNIVERSAL-require -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Test-DBIx-Class/Makefile b/devel/p5-Test-DBIx-Class/Makefile index ea4d75a366f..f8b5404cc07 100644 --- a/devel/p5-Test-DBIx-Class/Makefile +++ b/devel/p5-Test-DBIx-Class/Makefile @@ -14,7 +14,8 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Config-Any>=0.19:devel/p5-Config-Any \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Config-Any>=0.19:devel/p5-Config-Any \ p5-DBIx-Class>=0.08123:databases/p5-DBIx-Class \ p5-DBIx-Class-Schema-PopulateMore>=0.16:databases/p5-DBIx-Class-Schema-PopulateMore \ p5-DBIx-Class-TimeStamp>=0.13:databases/p5-DBIx-Class-TimeStamp \ @@ -31,7 +32,6 @@ BUILD_DEPENDS= p5-Config-Any>=0.19:devel/p5-Config-Any \ p5-SQL-Translator>=0.11006:databases/p5-SQL-Translator \ p5-Sub-Exporter>=0.982:devel/p5-Sub-Exporter \ p5-Test-Deep>=0.106:devel/p5-Test-Deep -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-MooseX-Types-LoadableClass>=0:devel/p5-MooseX-Types-LoadableClass \ p5-Test-Differences>=0:devel/p5-Test-Differences \ p5-Test-mysqld>=0:databases/p5-Test-mysqld diff --git a/devel/p5-Test-Dependencies/Makefile b/devel/p5-Test-Dependencies/Makefile index 338c1e8dee5..6fd5eace01a 100644 --- a/devel/p5-Test-Dependencies/Makefile +++ b/devel/p5-Test-Dependencies/Makefile @@ -13,11 +13,11 @@ COMMENT= Ensure that your Makefile.PL specifies all module dependencies LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-File-Find-Rule-Perl>=0:devel/p5-File-Find-Rule-Perl \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-File-Find-Rule-Perl>=0:devel/p5-File-Find-Rule-Perl \ p5-IPC-Cmd>=0:devel/p5-IPC-Cmd \ p5-Pod-Strip>=0:textproc/p5-Pod-Strip \ p5-YAML>=0:textproc/p5-YAML -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Needs>=0:devel/p5-Test-Needs USES= perl5 diff --git a/devel/p5-Test-Differences/Makefile b/devel/p5-Test-Differences/Makefile index b77294a1766..3ccff890f7c 100644 --- a/devel/p5-Test-Differences/Makefile +++ b/devel/p5-Test-Differences/Makefile @@ -15,8 +15,8 @@ COMMENT= Test::Differences - Test strings and data structures for differences LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Text-Diff>=1.43:textproc/p5-Text-Diff -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Text-Diff>=1.43:textproc/p5-Text-Diff TEST_DEPENDS= p5-Capture-Tiny>=0.24:devel/p5-Capture-Tiny PORTSCOUT= skipv:0.4801 diff --git a/devel/p5-Test-Distribution/Makefile b/devel/p5-Test-Distribution/Makefile index 9e1acd2377d..c8cab4e0592 100644 --- a/devel/p5-Test-Distribution/Makefile +++ b/devel/p5-Test-Distribution/Makefile @@ -11,11 +11,11 @@ PKGNAMEPREFIX= p5- MAINTAINER= culot@FreeBSD.org COMMENT= Test::Distribution - Perform tests on all modules of a distribution -BUILD_DEPENDS+= p5-File-Find-Rule>=0:devel/p5-File-Find-Rule \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-File-Find-Rule>=0:devel/p5-File-Find-Rule \ p5-Pod-Coverage>=0:devel/p5-Pod-Coverage \ p5-Test-Pod>=0:devel/p5-Test-Pod \ p5-Test-Pod-Coverage>=0:devel/p5-Test-Pod-Coverage -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= modbuild diff --git a/devel/p5-Test-Expect/Makefile b/devel/p5-Test-Expect/Makefile index 19823c1c4e6..1648d3666f6 100644 --- a/devel/p5-Test-Expect/Makefile +++ b/devel/p5-Test-Expect/Makefile @@ -13,9 +13,9 @@ COMMENT= Automated driving and testing of terminal-based programs LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Class-Accessor-Chained>=0:devel/p5-Class-Accessor-Chained \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Accessor-Chained>=0:devel/p5-Class-Accessor-Chained \ p5-Expect-Simple>=0:devel/p5-Expect-Simple -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Test-Fake-HTTPD/Makefile b/devel/p5-Test-Fake-HTTPD/Makefile index 3b25c17c662..137ed2153bd 100644 --- a/devel/p5-Test-Fake-HTTPD/Makefile +++ b/devel/p5-Test-Fake-HTTPD/Makefile @@ -14,12 +14,12 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-HTTP-Daemon>=0:www/p5-HTTP-Daemon \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTTP-Daemon>=0:www/p5-HTTP-Daemon \ p5-Plack>=0:www/p5-Plack \ p5-Test-SharedFork>=0.29:devel/p5-Test-SharedFork \ p5-Test-TCP>=0:devel/p5-Test-TCP \ p5-URI>=0:net/p5-URI -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Exception>=0:devel/p5-Test-Exception \ p5-Test-TCP>=0:devel/p5-Test-TCP \ p5-Test-UseAllModules>=0:devel/p5-Test-UseAllModules \ diff --git a/devel/p5-Test-File-Contents/Makefile b/devel/p5-Test-File-Contents/Makefile index a2c2cdff9cc..000978687f5 100644 --- a/devel/p5-Test-File-Contents/Makefile +++ b/devel/p5-Test-File-Contents/Makefile @@ -13,8 +13,8 @@ COMMENT= Test routines for examining the contents of files LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Text-Diff>=0.35:textproc/p5-Text-Diff -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Text-Diff>=0.35:textproc/p5-Text-Diff USES= perl5 USE_PERL5= modbuild diff --git a/devel/p5-Test-Fixture-DBIC-Schema/Makefile b/devel/p5-Test-Fixture-DBIC-Schema/Makefile index 2a0585e2ae9..67c8e8cc053 100644 --- a/devel/p5-Test-Fixture-DBIC-Schema/Makefile +++ b/devel/p5-Test-Fixture-DBIC-Schema/Makefile @@ -11,11 +11,11 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Module providing a DBIx::Class::Schema fixture data loader -BUILD_DEPENDS= p5-DBIx-Class>=0.07005:databases/p5-DBIx-Class \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-DBIx-Class>=0.07005:databases/p5-DBIx-Class \ p5-Kwalify>=1.19:textproc/p5-Kwalify \ p5-Params-Validate>=0.15:devel/p5-Params-Validate \ p5-YAML-Syck>=0.95:textproc/p5-YAML-Syck -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-DBD-SQLite>0:databases/p5-DBD-SQLite USES= perl5 diff --git a/devel/p5-Test-Group/Makefile b/devel/p5-Test-Group/Makefile index fcc66982289..7bfcbf044eb 100644 --- a/devel/p5-Test-Group/Makefile +++ b/devel/p5-Test-Group/Makefile @@ -12,9 +12,9 @@ COMMENT= Group together related tests in a test suite LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-File-Slurp>0:devel/p5-File-Slurp \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-File-Slurp>0:devel/p5-File-Slurp \ p5-Test-Cmd>=0:devel/p5-Test-Cmd -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= modbuild diff --git a/devel/p5-Test-HTML-Tidy/Makefile b/devel/p5-Test-HTML-Tidy/Makefile index a1246b1e1e2..c8e967f9e21 100644 --- a/devel/p5-Test-HTML-Tidy/Makefile +++ b/devel/p5-Test-HTML-Tidy/Makefile @@ -14,8 +14,8 @@ COMMENT= Test::More-style wrapper around HTML::Tidy LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-HTML-Tidy>=0:textproc/p5-HTML-Tidy -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTML-Tidy>=0:textproc/p5-HTML-Tidy USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Test-HexDifferences/Makefile b/devel/p5-Test-HexDifferences/Makefile index ec9f9cbbb0a..9125223b3eb 100644 --- a/devel/p5-Test-HexDifferences/Makefile +++ b/devel/p5-Test-HexDifferences/Makefile @@ -13,11 +13,11 @@ COMMENT= Test binary as hexadecimal string LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Sub-Exporter>=0:devel/p5-Sub-Exporter \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Sub-Exporter>=0:devel/p5-Sub-Exporter \ p5-Test-Differences>=0.60:devel/p5-Test-Differences \ p5-Test-NoWarnings>=0:devel/p5-Test-NoWarnings \ p5-Text-Diff>=0:textproc/p5-Text-Diff -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USE_PERL5= configure diff --git a/devel/p5-Test-JSON/Makefile b/devel/p5-Test-JSON/Makefile index a65b923c2ff..f22ebcb1b9c 100644 --- a/devel/p5-Test-JSON/Makefile +++ b/devel/p5-Test-JSON/Makefile @@ -14,9 +14,9 @@ COMMENT= Test JSON data LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Test-Differences>=0.47:devel/p5-Test-Differences \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Test-Differences>=0.47:devel/p5-Test-Differences \ p5-JSON-Any>=1.20:converters/p5-JSON-Any -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/devel/p5-Test-Lazy/Makefile b/devel/p5-Test-Lazy/Makefile index 79757b44f88..376af293403 100644 --- a/devel/p5-Test-Lazy/Makefile +++ b/devel/p5-Test-Lazy/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Quick and easy way to compose and run tests with useful output -BUILD_DEPENDS= p5-Class-Accessor>=0:devel/p5-Class-Accessor \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Accessor>=0:devel/p5-Class-Accessor \ p5-Test-Deep>0:devel/p5-Test-Deep -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Test-Log-Log4perl/Makefile b/devel/p5-Test-Log-Log4perl/Makefile index 6509565fb0f..9a8ad2698f8 100644 --- a/devel/p5-Test-Log-Log4perl/Makefile +++ b/devel/p5-Test-Log-Log4perl/Makefile @@ -13,8 +13,8 @@ COMMENT= Test log4perl LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Log-Log4perl>=0:devel/p5-Log-Log4perl -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Log-Log4perl>=0:devel/p5-Log-Log4perl TEST_DEPENDS= p5-Test-Exception>=0:devel/p5-Test-Exception USE_PERL5= configure diff --git a/devel/p5-Test-Log4perl/Makefile b/devel/p5-Test-Log4perl/Makefile index a7b5c64afd6..9fca4ceb6a1 100644 --- a/devel/p5-Test-Log4perl/Makefile +++ b/devel/p5-Test-Log4perl/Makefile @@ -14,11 +14,11 @@ COMMENT= Test::Log4perl - test Log::Log4perl LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Test-Exception>=0:devel/p5-Test-Exception \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Test-Exception>=0:devel/p5-Test-Exception \ p5-Lingua-EN-Numbers-Ordinate>=0:textproc/p5-Lingua-EN-Numbers-Ordinate \ p5-Class-Accessor-Chained>=0:devel/p5-Class-Accessor-Chained \ p5-Log-Log4perl>=0:devel/p5-Log-Log4perl -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Test-ManyParams/Makefile b/devel/p5-Test-ManyParams/Makefile index dfd19d8d01c..f7afd784e23 100644 --- a/devel/p5-Test-ManyParams/Makefile +++ b/devel/p5-Test-ManyParams/Makefile @@ -14,10 +14,10 @@ COMMENT= Perl module to test many params as one test LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Set-CrossProduct>0:devel/p5-Set-CrossProduct \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Set-CrossProduct>0:devel/p5-Set-CrossProduct \ p5-Test-Differences>0:devel/p5-Test-Differences \ p5-Test-Exception>0:devel/p5-Test-Exception -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Test-Mini/Makefile b/devel/p5-Test-Mini/Makefile index 5064802bc40..cf4ed3ca07d 100644 --- a/devel/p5-Test-Mini/Makefile +++ b/devel/p5-Test-Mini/Makefile @@ -12,7 +12,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= kurt.lidl@cello.com COMMENT= Provides lightweight unit testing framework -BUILD_DEPENDS= p5-Data-Inspect>=0.03:devel/p5-Data-Inspect \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Data-Inspect>=0.03:devel/p5-Data-Inspect \ p5-Exception-Class>=1.30:devel/p5-Exception-Class \ p5-IO-stringy>=2.110:devel/p5-IO-stringy \ p5-MRO-Compat>=0.10:devel/p5-MRO-Compat \ @@ -20,7 +21,6 @@ BUILD_DEPENDS= p5-Data-Inspect>=0.03:devel/p5-Data-Inspect \ p5-Try-Tiny>=0.04:lang/p5-Try-Tiny \ p5-aliased>=0.30:devel/p5-aliased \ p5-namespace-clean>=0.14:devel/p5-namespace-clean -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Test-Mock-LWP-Dispatch/Makefile b/devel/p5-Test-Mock-LWP-Dispatch/Makefile index ce8c0f89e41..98562c9ab87 100644 --- a/devel/p5-Test-Mock-LWP-Dispatch/Makefile +++ b/devel/p5-Test-Mock-LWP-Dispatch/Makefile @@ -13,10 +13,10 @@ COMMENT= Mocks LWP::UserAgent and dispatches your requests/responses LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-HTTP-Message>=0:www/p5-HTTP-Message \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTTP-Message>=0:www/p5-HTTP-Message \ p5-Test-MockObject>=0:devel/p5-Test-MockObject \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Moose>=0:devel/p5-Moose \ p5-Test-Exception>=0:devel/p5-Test-Exception diff --git a/devel/p5-Test-Mock-LWP/Makefile b/devel/p5-Test-Mock-LWP/Makefile index b90d6f9ddbf..9d5cd83e361 100644 --- a/devel/p5-Test-Mock-LWP/Makefile +++ b/devel/p5-Test-Mock-LWP/Makefile @@ -14,8 +14,8 @@ COMMENT= Easy mocking of LWP packages LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Test-MockObject>=1.08:devel/p5-Test-MockObject -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Test-MockObject>=1.08:devel/p5-Test-MockObject USE_PERL5= configure USES= perl5 diff --git a/devel/p5-Test-MockDateTime/Makefile b/devel/p5-Test-MockDateTime/Makefile index 4b116585518..379f30b05c8 100644 --- a/devel/p5-Test-MockDateTime/Makefile +++ b/devel/p5-Test-MockDateTime/Makefile @@ -12,8 +12,8 @@ COMMENT= Mock DateTime->now calls during tests LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-DateTime-Format-DateParse>=0:devel/p5-DateTime-Format-DateParse -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-DateTime-Format-DateParse>=0:devel/p5-DateTime-Format-DateParse USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Test-Modern/Makefile b/devel/p5-Test-Modern/Makefile index f537f976883..0f192fbf1b7 100644 --- a/devel/p5-Test-Modern/Makefile +++ b/devel/p5-Test-Modern/Makefile @@ -14,14 +14,14 @@ COMMENT= Precision testing for modern perl LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Exporter-Tiny>=0:devel/p5-Exporter-Tiny \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Exporter-Tiny>=0:devel/p5-Exporter-Tiny \ p5-Import-Into>=1:devel/p5-Import-Into \ p5-Module-Runtime>=0.012:devel/p5-Module-Runtime \ p5-Test-API>=0.004:devel/p5-Test-API \ p5-Test-Deep>=0:devel/p5-Test-Deep \ p5-Test-Fatal>0:devel/p5-Test-Fatal \ p5-Test-Warnings>0:devel/p5-Test-Warnings -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Moose>=0:devel/p5-Moose USES= perl5 diff --git a/devel/p5-Test-Moose-More/Makefile b/devel/p5-Test-Moose-More/Makefile index f11060a031f..c145042442c 100644 --- a/devel/p5-Test-Moose-More/Makefile +++ b/devel/p5-Test-Moose-More/Makefile @@ -12,12 +12,12 @@ COMMENT= More tools for testing Moose packages LICENSE= LGPL21 LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Data-OptList>=0:devel/p5-Data-OptList \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Data-OptList>=0:devel/p5-Data-OptList \ p5-List-MoreUtils>=0:lang/p5-List-MoreUtils \ p5-Moose>=0:devel/p5-Moose \ p5-Sub-Exporter-Progressive>=0:devel/p5-Sub-Exporter-Progressive \ p5-Syntax-Keyword-Junction>=0:devel/p5-Syntax-Keyword-Junction -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-TAP-SimpleOutput>=0.009:devel/p5-TAP-SimpleOutput \ p5-Test-CheckDeps>=0.010:devel/p5-Test-CheckDeps \ p5-namespace-autoclean>=0:devel/p5-namespace-autoclean @@ -29,7 +29,8 @@ USE_PERL5= configure .include .if ${PERL_LEVEL} < 502501 -BUILD_DEPENDS+= p5-Scalar-List-Utils>=1.45:lang/p5-Scalar-List-Utils +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS+= p5-Scalar-List-Utils>=1.45:lang/p5-Scalar-List-Utils RUN_DEPENDS+= p5-Scalar-List-Utils>=1.45:lang/p5-Scalar-List-Utils .endif diff --git a/devel/p5-Test-Net-RabbitMQ/Makefile b/devel/p5-Test-Net-RabbitMQ/Makefile index eb1056b178d..fb8b1fdc82b 100644 --- a/devel/p5-Test-Net-RabbitMQ/Makefile +++ b/devel/p5-Test-Net-RabbitMQ/Makefile @@ -9,8 +9,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= swills@FreeBSD.org COMMENT= Perl mock RabbitMQ implementation for use when testing -BUILD_DEPENDS= p5-Moose>=0:devel/p5-Moose -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Moose>=0:devel/p5-Moose TEST_DEPENDS= p5-Test-Exception>=0:devel/p5-Test-Exception diff --git a/devel/p5-Test-POE-Server-TCP/Makefile b/devel/p5-Test-POE-Server-TCP/Makefile index 26429bd2fe5..0128033e2e4 100644 --- a/devel/p5-Test-POE-Server-TCP/Makefile +++ b/devel/p5-Test-POE-Server-TCP/Makefile @@ -13,8 +13,8 @@ COMMENT= POE Component providing TCP server services for test cases LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-POE>=1.004:devel/p5-POE -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-POE>=1.004:devel/p5-POE USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Test-Prereq/Makefile b/devel/p5-Test-Prereq/Makefile index e14a8ca3edc..8550cb57139 100644 --- a/devel/p5-Test-Prereq/Makefile +++ b/devel/p5-Test-Prereq/Makefile @@ -13,9 +13,9 @@ COMMENT= Check if Makefile.PL has the right pre-requisites LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Module-Extract-Use>0:devel/p5-Module-Extract-Use \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Module-Extract-Use>0:devel/p5-Module-Extract-Use \ p5-Module-Build>=0.4220:devel/p5-Module-Build -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Pod>0:devel/p5-Test-Pod \ p5-Test-Pod-Coverage>0:devel/p5-Test-Pod-Coverage diff --git a/devel/p5-Test-Refcount/Makefile b/devel/p5-Test-Refcount/Makefile index d8d1baf46b7..58b9b1dd78b 100644 --- a/devel/p5-Test-Refcount/Makefile +++ b/devel/p5-Test-Refcount/Makefile @@ -14,8 +14,8 @@ COMMENT= Assert reference counts on objects LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Devel-MAT>=0:devel/p5-Devel-MAT -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Devel-MAT>=0:devel/p5-Devel-MAT TEST_DEPENDS= p5-Test-Pod>=1:devel/p5-Test-Pod USE_PERL5= configure diff --git a/devel/p5-Test-Reporter-Transport-Metabase/Makefile b/devel/p5-Test-Reporter-Transport-Metabase/Makefile index 24fa68b1736..1ebb06f682f 100644 --- a/devel/p5-Test-Reporter-Transport-Metabase/Makefile +++ b/devel/p5-Test-Reporter-Transport-Metabase/Makefile @@ -11,13 +11,13 @@ PKGNAMEPREFIX= p5- MAINTAINER= swills@FreeBSD.org COMMENT= Metabase transport for Test::Reporter -BUILD_DEPENDS= p5-JSON>=0:converters/p5-JSON \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-JSON>=0:converters/p5-JSON \ p5-Config-Perl-V>0:devel/p5-Config-Perl-V \ p5-CPAN-Testers-Report>0:devel/p5-CPAN-Testers-Report \ p5-Metabase-Fact>0:devel/p5-Metabase-Fact \ p5-Metabase-Client-Simple>0:devel/p5-Metabase-Client-Simple \ p5-Test-Reporter>>1.54:devel/p5-Test-Reporter -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Test-Requires-Git/Makefile b/devel/p5-Test-Requires-Git/Makefile index 4b5b7cc5890..b222b8b2ddb 100644 --- a/devel/p5-Test-Requires-Git/Makefile +++ b/devel/p5-Test-Requires-Git/Makefile @@ -14,8 +14,8 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Git-Version-Compare>=1.003:devel/p5-Git-Version-Compare -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Git-Version-Compare>=1.003:devel/p5-Git-Version-Compare NO_ARCH= yes USE_PERL5= configure diff --git a/devel/p5-Test-Roo/Makefile b/devel/p5-Test-Roo/Makefile index c6ffbdd3fef..2742ccc3f15 100644 --- a/devel/p5-Test-Roo/Makefile +++ b/devel/p5-Test-Roo/Makefile @@ -11,8 +11,8 @@ COMMENT= Composable, reusable tests with roles and Moo LICENSE= APACHE20 -BUILD_DEPENDS= p5-Moo>=0:devel/p5-Moo -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Moo>=0:devel/p5-Moo NO_ARCH= yes USES= perl5 diff --git a/devel/p5-Test-Singleton/Makefile b/devel/p5-Test-Singleton/Makefile index faaa26c1e32..54505072b0d 100644 --- a/devel/p5-Test-Singleton/Makefile +++ b/devel/p5-Test-Singleton/Makefile @@ -15,8 +15,8 @@ COMMENT= Test for Singleton classes LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING -BUILD_DEPENDS= p5-Class-Singleton>=0:devel/p5-Class-Singleton -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Singleton>=0:devel/p5-Class-Singleton NO_ARCH= yes USE_PERL5= configure diff --git a/devel/p5-Test-Spec/Makefile b/devel/p5-Test-Spec/Makefile index 7d557e79d5b..d11137b3f3c 100644 --- a/devel/p5-Test-Spec/Makefile +++ b/devel/p5-Test-Spec/Makefile @@ -13,11 +13,11 @@ COMMENT= Write tests in a declarative specification style LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Package-Stash>=0.23:devel/p5-Package-Stash \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Package-Stash>=0.23:devel/p5-Package-Stash \ p5-Test-Deep>=0.103:devel/p5-Test-Deep \ p5-Test-Trap>=0:devel/p5-Test-Trap \ p5-Tie-IxHash>=0:devel/p5-Tie-IxHash -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USE_PERL5= configure diff --git a/devel/p5-Test-TAP-HTMLMatrix/Makefile b/devel/p5-Test-TAP-HTMLMatrix/Makefile index 7b07ac98920..0abfcac63b6 100644 --- a/devel/p5-Test-TAP-HTMLMatrix/Makefile +++ b/devel/p5-Test-TAP-HTMLMatrix/Makefile @@ -11,11 +11,11 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Creates colorful matrix of Test::Harness test run results -BUILD_DEPENDS= p5-Test-TAP-Model>=0:devel/p5-Test-TAP-Model \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Test-TAP-Model>=0:devel/p5-Test-TAP-Model \ p5-Petal>=0:textproc/p5-Petal \ p5-Petal-Utils>=0:textproc/p5-Petal-Utils \ p5-URI>=0:net/p5-URI -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Test-TAP-Model/Makefile b/devel/p5-Test-TAP-Model/Makefile index 8bab777e266..efc286faf63 100644 --- a/devel/p5-Test-TAP-Model/Makefile +++ b/devel/p5-Test-TAP-Model/Makefile @@ -14,9 +14,9 @@ COMMENT= Accessible result collector for Test::Harness::Straps runs LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Method-Alias>=0:devel/p5-Method-Alias \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Method-Alias>=0:devel/p5-Method-Alias \ p5-Test-Harness-Straps>=0.30:devel/p5-Test-Harness-Straps -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Test-TCP/Makefile b/devel/p5-Test-TCP/Makefile index 81ecb8436af..cfe472e238f 100644 --- a/devel/p5-Test-TCP/Makefile +++ b/devel/p5-Test-TCP/Makefile @@ -12,8 +12,8 @@ COMMENT= Perl extension for testing TCP program LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Test-SharedFork>=0.19:devel/p5-Test-SharedFork -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Test-SharedFork>=0.19:devel/p5-Test-SharedFork USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Test-Trap/Makefile b/devel/p5-Test-Trap/Makefile index 66d15e8f8ad..0175c840905 100644 --- a/devel/p5-Test-Trap/Makefile +++ b/devel/p5-Test-Trap/Makefile @@ -14,8 +14,8 @@ COMMENT= Trap exit codes, exceptions, output, etc LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Data-Dump>=0:devel/p5-Data-Dump -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Data-Dump>=0:devel/p5-Data-Dump TEST_DEPENDS= p5-Test-Refcount>=0:devel/p5-Test-Refcount NO_ARCH= yes diff --git a/devel/p5-Test-Unit/Makefile b/devel/p5-Test-Unit/Makefile index 2cc89ccfc16..f30cf7307da 100644 --- a/devel/p5-Test-Unit/Makefile +++ b/devel/p5-Test-Unit/Makefile @@ -11,10 +11,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= PerlUnit testing framework -BUILD_DEPENDS= p5-Class-Inner>=0:devel/p5-Class-Inner \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Inner>=0:devel/p5-Class-Inner \ p5-Devel-Symdump>=0:devel/p5-Devel-Symdump \ p5-Error>=0:lang/p5-Error -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 shebangfix SHEBANG_FILES= TestLister.pl diff --git a/devel/p5-Test-Version/Makefile b/devel/p5-Test-Version/Makefile index d8871a38840..223d43d7ab9 100644 --- a/devel/p5-Test-Version/Makefile +++ b/devel/p5-Test-Version/Makefile @@ -13,8 +13,8 @@ COMMENT= Check to see that version in modules are sane LICENSE= ART20 LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-File-Find-Rule-Perl>=0:devel/p5-File-Find-Rule-Perl -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-File-Find-Rule-Perl>=0:devel/p5-File-Find-Rule-Perl TEST_DEPENDS= p5-Test-Exception>=0:devel/p5-Test-Exception NO_ARCH= yes diff --git a/devel/p5-Test-WWW-Declare/Makefile b/devel/p5-Test-WWW-Declare/Makefile index 93202e28831..25b7af4560d 100644 --- a/devel/p5-Test-WWW-Declare/Makefile +++ b/devel/p5-Test-WWW-Declare/Makefile @@ -14,8 +14,8 @@ COMMENT= Declarative testing for your web app LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Test-WWW-Mechanize>=0:devel/p5-Test-WWW-Mechanize -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Test-WWW-Mechanize>=0:devel/p5-Test-WWW-Mechanize NO_ARCH= yes USES= perl5 diff --git a/devel/p5-Test-WWW-Mechanize-CGIApp/Makefile b/devel/p5-Test-WWW-Mechanize-CGIApp/Makefile index 81cfee9227d..35c62d47533 100644 --- a/devel/p5-Test-WWW-Mechanize-CGIApp/Makefile +++ b/devel/p5-Test-WWW-Mechanize-CGIApp/Makefile @@ -14,10 +14,10 @@ COMMENT= Test::WWW::Mechanize for CGIApp LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-CGI-Application>=0:www/p5-CGI-Application \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-CGI-Application>=0:www/p5-CGI-Application \ p5-HTTP-Request-AsCGI>=0:www/p5-HTTP-Request-AsCGI \ p5-Test-WWW-Mechanize>=1.14:devel/p5-Test-WWW-Mechanize -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Test-WWW-Mechanize-Catalyst/Makefile b/devel/p5-Test-WWW-Mechanize-Catalyst/Makefile index abf8956034d..977aa8b947c 100644 --- a/devel/p5-Test-WWW-Mechanize-Catalyst/Makefile +++ b/devel/p5-Test-WWW-Mechanize-Catalyst/Makefile @@ -13,12 +13,12 @@ COMMENT= Test::WWW::Mechanize for Catalyst LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Catalyst-Runtime>=5.9000:www/p5-Catalyst-Runtime \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Catalyst-Runtime>=5.9000:www/p5-Catalyst-Runtime \ p5-Moose>=0.67:devel/p5-Moose \ p5-Test-WWW-Mechanize>=1.14:devel/p5-Test-WWW-Mechanize \ p5-WWW-Mechanize>=1.54:www/p5-WWW-Mechanize \ p5-namespace-clean>=0.09:devel/p5-namespace-clean -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Catalyst-Plugin-Session>=0:www/p5-Catalyst-Plugin-Session \ p5-Catalyst-Plugin-Session-State-Cookie>=0:www/p5-Catalyst-Plugin-Session-State-Cookie \ p5-Test-Exception>=0:devel/p5-Test-Exception \ diff --git a/devel/p5-Test-WWW-Mechanize/Makefile b/devel/p5-Test-WWW-Mechanize/Makefile index cd8730f3997..12252258931 100644 --- a/devel/p5-Test-WWW-Mechanize/Makefile +++ b/devel/p5-Test-WWW-Mechanize/Makefile @@ -12,14 +12,14 @@ COMMENT= Testing-specific WWW::Mechanize subclass LICENSE= ART20 -BUILD_DEPENDS= p5-Carp-Assert-More>=0:devel/p5-Carp-Assert-More \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Carp-Assert-More>=0:devel/p5-Carp-Assert-More \ p5-HTML-Form>=0:www/p5-HTML-Form \ p5-HTTP-Server-Simple>=0.42:www/p5-HTTP-Server-Simple \ p5-Test-LongString>=0.15:devel/p5-Test-LongString \ p5-URI>=0:net/p5-URI \ p5-WWW-Mechanize>=1.68:www/p5-WWW-Mechanize \ p5-libwww>=6.02:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} PORTSCOUT= limit:^[0-9\.]*$$ diff --git a/devel/p5-Test-WWW-Selenium/Makefile b/devel/p5-Test-WWW-Selenium/Makefile index b92ea713e12..9583bc78211 100644 --- a/devel/p5-Test-WWW-Selenium/Makefile +++ b/devel/p5-Test-WWW-Selenium/Makefile @@ -14,9 +14,9 @@ COMMENT= Perl driver and test library for Selenium Remote Control (SRC) LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-libwww>=0:www/p5-libwww \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-libwww>=0:www/p5-libwww \ p5-Devel-REPL>=0:devel/p5-Devel-REPL -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Exception>=0:devel/p5-Test-Exception \ p5-Test-Mock-LWP>=0:devel/p5-Test-Mock-LWP \ diff --git a/devel/p5-Test-XML/Makefile b/devel/p5-Test-XML/Makefile index 3241efb0813..231b5a4c856 100644 --- a/devel/p5-Test-XML/Makefile +++ b/devel/p5-Test-XML/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Compare XML in perl tests -BUILD_DEPENDS= p5-XML-SemanticDiff>=0:textproc/p5-XML-SemanticDiff \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-XML-SemanticDiff>=0:textproc/p5-XML-SemanticDiff \ p5-XML-Parser>=0:textproc/p5-XML-Parser -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Test-YAML-Meta/Makefile b/devel/p5-Test-YAML-Meta/Makefile index 3be585060e1..73305564fc7 100644 --- a/devel/p5-Test-YAML-Meta/Makefile +++ b/devel/p5-Test-YAML-Meta/Makefile @@ -12,9 +12,9 @@ COMMENT= Validation of the META.yml file in a distribution LICENSE= ART20 -BUILD_DEPENDS= p5-Test-YAML-Valid>=0:devel/p5-Test-YAML-Valid \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Test-YAML-Valid>=0:devel/p5-Test-YAML-Valid \ p5-Test-CPAN-Meta-YAML>=0.17:devel/p5-Test-CPAN-Meta-YAML -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/devel/p5-Test-YAML/Makefile b/devel/p5-Test-YAML/Makefile index 99c5c85e1d7..28b4b4da541 100644 --- a/devel/p5-Test-YAML/Makefile +++ b/devel/p5-Test-YAML/Makefile @@ -13,9 +13,9 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= bash:shells/bash \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= bash:shells/bash \ p5-Test-Base>=0.89:devel/p5-Test-Base -RUN_DEPENDS:= ${BUILD_DEPENDS} CONFLICTS_INSTALL= p5-YAML-0.* diff --git a/devel/p5-Test2-Harness/Makefile b/devel/p5-Test2-Harness/Makefile index 7ec687dc8a8..3d55d4cc7f9 100644 --- a/devel/p5-Test2-Harness/Makefile +++ b/devel/p5-Test2-Harness/Makefile @@ -15,14 +15,14 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Data-UUID>=1.148:devel/p5-Data-UUID \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Data-UUID>=1.148:devel/p5-Data-UUID \ p5-Importer>=0.024:devel/p5-Importer \ p5-Module-Pluggable>=0:devel/p5-Module-Pluggable \ p5-Term-Table>=0.011:devel/p5-Term-Table \ p5-Test-Simple>=1.302133:devel/p5-Test-Simple \ p5-Test2-Suite>=0.000105:devel/p5-Test2-Suite \ p5-goto-file>=0.005:devel/p5-goto-file -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/devel/p5-TheSchwartz-Simple/Makefile b/devel/p5-TheSchwartz-Simple/Makefile index 71ae273767a..a37c91221e9 100644 --- a/devel/p5-TheSchwartz-Simple/Makefile +++ b/devel/p5-TheSchwartz-Simple/Makefile @@ -12,8 +12,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= DBI only job dispatcher for TheSchwartz -BUILD_DEPENDS= p5-DBI>=0:databases/p5-DBI -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-DBI>=0:databases/p5-DBI USES= perl5 USE_PERL5= configure diff --git a/devel/p5-TheSchwartz-Worker-SendEmail/Makefile b/devel/p5-TheSchwartz-Worker-SendEmail/Makefile index 0d777b31ba8..f5d17d06456 100644 --- a/devel/p5-TheSchwartz-Worker-SendEmail/Makefile +++ b/devel/p5-TheSchwartz-Worker-SendEmail/Makefile @@ -12,9 +12,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= TheSchwartz Worker Task to Send Email -BUILD_DEPENDS= p5-TheSchwartz>=1.10:devel/p5-TheSchwartz \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-TheSchwartz>=1.10:devel/p5-TheSchwartz \ p5-Net-DNS>=0.66_1:dns/p5-Net-DNS -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-TheSchwartz/Makefile b/devel/p5-TheSchwartz/Makefile index bece6710ab6..7196835108b 100644 --- a/devel/p5-TheSchwartz/Makefile +++ b/devel/p5-TheSchwartz/Makefile @@ -14,8 +14,8 @@ COMMENT= Reliable job queue LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Data-ObjectDriver>=0.04:devel/p5-Data-ObjectDriver -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Data-ObjectDriver>=0.04:devel/p5-Data-ObjectDriver OPTIONS_DEFINE= DOCS diff --git a/devel/p5-Thread-Apartment/Makefile b/devel/p5-Thread-Apartment/Makefile index bcddb86652a..d79cd6c3dbc 100644 --- a/devel/p5-Thread-Apartment/Makefile +++ b/devel/p5-Thread-Apartment/Makefile @@ -16,10 +16,10 @@ LICENSE_NAME= Academic Free License version 2.1 LICENSE_FILE= ${WRKSRC}/License.txt LICENSE_PERMS= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept -BUILD_DEPENDS= p5-Class-ISA>=0.32:devel/p5-Class-ISA \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-ISA>=0.32:devel/p5-Class-ISA \ p5-Class-Inspector>=1.08:devel/p5-Class-Inspector \ p5-Thread-Queue-Duplex>=0.92:devel/p5-Thread-Queue-Duplex -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Thrift-XS/Makefile b/devel/p5-Thrift-XS/Makefile index 838d1f3a18e..03f353c8aa8 100644 --- a/devel/p5-Thrift-XS/Makefile +++ b/devel/p5-Thrift-XS/Makefile @@ -12,11 +12,11 @@ PKGNAMEPREFIX= p5- MAINTAINER= sunpoet@FreeBSD.org COMMENT= Faster Thrift binary protocol encoding and decoding -BUILD_DEPENDS= p5-Bit-Vector>=0:math/p5-Bit-Vector \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Bit-Vector>=0:math/p5-Bit-Vector \ p5-HTTP-Message>=0:www/p5-HTTP-Message \ p5-IO-String>=0:devel/p5-IO-String \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Proc-ProcessTable>=0:devel/p5-Proc-ProcessTable \ p5-Test-BinaryData>=0:devel/p5-Test-BinaryData \ p5-Test-Pod>=1.14:devel/p5-Test-Pod \ diff --git a/devel/p5-Tie-DB_File-SplitHash/Makefile b/devel/p5-Tie-DB_File-SplitHash/Makefile index 07d139d05f6..6cd81f101b7 100644 --- a/devel/p5-Tie-DB_File-SplitHash/Makefile +++ b/devel/p5-Tie-DB_File-SplitHash/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Wrapper around the DB_File Berkeley database system -BUILD_DEPENDS= p5-Digest-SHA1>=0:security/p5-Digest-SHA1 -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Digest-SHA1>=0:security/p5-Digest-SHA1 USES= perl5 USE_PERL5= modbuild diff --git a/devel/p5-Tie-FileLRUCache/Makefile b/devel/p5-Tie-FileLRUCache/Makefile index e887b2785bf..135df3a9703 100644 --- a/devel/p5-Tie-FileLRUCache/Makefile +++ b/devel/p5-Tie-FileLRUCache/Makefile @@ -11,10 +11,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Lightweight but robust filesystem based persistent LRU cache -BUILD_DEPENDS= p5-Class-NamedParms>=0:devel/p5-Class-NamedParms \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-NamedParms>=0:devel/p5-Class-NamedParms \ p5-Digest-SHA1>=0:security/p5-Digest-SHA1 \ p5-Class-ParmList>=0:devel/p5-Class-ParmList -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Tie-Hash-Regex/Makefile b/devel/p5-Tie-Hash-Regex/Makefile index 3dd40702599..a35ed606d68 100644 --- a/devel/p5-Tie-Hash-Regex/Makefile +++ b/devel/p5-Tie-Hash-Regex/Makefile @@ -13,8 +13,8 @@ COMMENT= Match hash keys using Regular Expressions LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Attribute-Handlers>=0:devel/p5-Attribute-Handlers -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Attribute-Handlers>=0:devel/p5-Attribute-Handlers NO_ARCH= yes USES= perl5 diff --git a/devel/p5-Time-Duration-Parse/Makefile b/devel/p5-Time-Duration-Parse/Makefile index 98ebac141cd..32dff9a5148 100644 --- a/devel/p5-Time-Duration-Parse/Makefile +++ b/devel/p5-Time-Duration-Parse/Makefile @@ -14,8 +14,8 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Exporter-Lite>=0.02:devel/p5-Exporter-Lite -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Exporter-Lite>=0.02:devel/p5-Exporter-Lite TEST_DEPENDS= p5-Time-Duration>=1.0.6:devel/p5-Time-Duration NO_ARCH= yes diff --git a/devel/p5-Time-Piece-Range/Makefile b/devel/p5-Time-Piece-Range/Makefile index e273f3fd589..717b05aa1cf 100644 --- a/devel/p5-Time-Piece-Range/Makefile +++ b/devel/p5-Time-Piece-Range/Makefile @@ -13,8 +13,8 @@ COMMENT= Time::Piece::Range - deal with a range of Time::Piece objects LICENSE= GPLv2+ -BUILD_DEPENDS= p5-Date-Range>=0:devel/p5-Date-Range -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Date-Range>=0:devel/p5-Date-Range NO_ARCH= yes USES= perl5 diff --git a/devel/p5-Tree-DAG_Node/Makefile b/devel/p5-Tree-DAG_Node/Makefile index 979645ecfb9..8a570b3b789 100644 --- a/devel/p5-Tree-DAG_Node/Makefile +++ b/devel/p5-Tree-DAG_Node/Makefile @@ -14,8 +14,8 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE_ART10= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-File-Slurp-Tiny>=0.003:devel/p5-File-Slurp-Tiny -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-File-Slurp-Tiny>=0.003:devel/p5-File-Slurp-Tiny NO_ARCH= yes USES= perl5 tar:tgz diff --git a/devel/p5-Tree-Parser/Makefile b/devel/p5-Tree-Parser/Makefile index 55a627fb566..84d9d7db5e1 100644 --- a/devel/p5-Tree-Parser/Makefile +++ b/devel/p5-Tree-Parser/Makefile @@ -14,9 +14,9 @@ COMMENT= Module to parse formatted files into tree structures LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Array-Iterator>=0:devel/p5-Array-Iterator \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Array-Iterator>=0:devel/p5-Array-Iterator \ p5-Tree-Simple>=0:devel/p5-Tree-Simple -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Exception>=0:devel/p5-Test-Exception USES= perl5 diff --git a/devel/p5-Tree-Simple-View/Makefile b/devel/p5-Tree-Simple-View/Makefile index 605a1fde80f..7d58134c8ca 100644 --- a/devel/p5-Tree-Simple-View/Makefile +++ b/devel/p5-Tree-Simple-View/Makefile @@ -14,9 +14,9 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE_ART10= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Class-Throwable>=0.10:devel/p5-Class-Throwable \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Throwable>=0.10:devel/p5-Class-Throwable \ p5-Tree-Simple>=1.31:devel/p5-Tree-Simple -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Exception>=0.15:devel/p5-Test-Exception \ p5-Test-LongString>=0:devel/p5-Test-LongString diff --git a/devel/p5-Tree-Simple-VisitorFactory/Makefile b/devel/p5-Tree-Simple-VisitorFactory/Makefile index 54f242380ad..2a8820cf1b4 100644 --- a/devel/p5-Tree-Simple-VisitorFactory/Makefile +++ b/devel/p5-Tree-Simple-VisitorFactory/Makefile @@ -14,8 +14,8 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Tree-Simple>=1.22:devel/p5-Tree-Simple -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Tree-Simple>=1.22:devel/p5-Tree-Simple TEST_DEPENDS= p5-Test-Exception>=0.15:devel/p5-Test-Exception NO_ARCH= yes diff --git a/devel/p5-Type-Tiny-Signatures/Makefile b/devel/p5-Type-Tiny-Signatures/Makefile index 624ceb186fa..11b4776efb6 100644 --- a/devel/p5-Type-Tiny-Signatures/Makefile +++ b/devel/p5-Type-Tiny-Signatures/Makefile @@ -14,9 +14,9 @@ COMMENT= Method/Function Signatures w/Type::Tiny Constraints LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Type-Tiny>=1.000005:devel/p5-Type-Tiny \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Type-Tiny>=1.000005:devel/p5-Type-Tiny \ p5-Function-Parameters>=1.0605:devel/p5-Function-Parameters -RUN_DEPENDS:= ${BUILD_DEPENDS} USE_PERL5= configure USES= perl5 diff --git a/devel/p5-Types-Core/Makefile b/devel/p5-Types-Core/Makefile index ec3e03bfc89..9e12a6c7944 100644 --- a/devel/p5-Types-Core/Makefile +++ b/devel/p5-Types-Core/Makefile @@ -14,9 +14,9 @@ COMMENT= Core types defined as tests and literals LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Xporter>=0.0.8:devel/p5-Xporter \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Xporter>=0.0.8:devel/p5-Xporter \ p5-mem>=0.4.5:devel/p5-mem -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USE_PERL5= configure diff --git a/devel/p5-Types-Path-Tiny/Makefile b/devel/p5-Types-Path-Tiny/Makefile index 9fd64533775..be5e6419ec9 100644 --- a/devel/p5-Types-Path-Tiny/Makefile +++ b/devel/p5-Types-Path-Tiny/Makefile @@ -14,9 +14,9 @@ COMMENT= Path::Tiny types and coercions for Moose and Moo LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Path-Tiny>=0:devel/p5-Path-Tiny \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Path-Tiny>=0:devel/p5-Path-Tiny \ p5-Type-Tiny>=0.008:devel/p5-Type-Tiny -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-File-pushd>=0:devel/p5-File-pushd NO_ARCH= yes diff --git a/devel/p5-UI-Dialog/Makefile b/devel/p5-UI-Dialog/Makefile index bc8e1dec6af..83d6116c51d 100644 --- a/devel/p5-UI-Dialog/Makefile +++ b/devel/p5-UI-Dialog/Makefile @@ -14,9 +14,9 @@ COMMENT= Perl wrapper for the various dialog applications LICENSE= LGPL21+ LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-File-Slurp>=0:devel/p5-File-Slurp \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-File-Slurp>=0:devel/p5-File-Slurp \ p5-String-ShellQuote>=0:textproc/p5-String-ShellQuote -RUN_DEPENDS:= ${BUILD_DEPENDS} RUN_DEPENDS+= cdialog:devel/cdialog OPTIONS_DEFINE= KDE NEWT X11 ZENITY diff --git a/devel/p5-UNIVERSAL-ref/Makefile b/devel/p5-UNIVERSAL-ref/Makefile index 3a18a2e4969..14978d9477a 100644 --- a/devel/p5-UNIVERSAL-ref/Makefile +++ b/devel/p5-UNIVERSAL-ref/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Turns ref() into a multimethod -BUILD_DEPENDS= p5-B-Utils>=0:devel/p5-B-Utils -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-B-Utils>=0:devel/p5-B-Utils USES= perl5 USE_PERL5= configure diff --git a/devel/p5-UUID-Random-Patch-UseMRS/Makefile b/devel/p5-UUID-Random-Patch-UseMRS/Makefile index e61620c44d8..df75ffae5ce 100644 --- a/devel/p5-UUID-Random-Patch-UseMRS/Makefile +++ b/devel/p5-UUID-Random-Patch-UseMRS/Makefile @@ -14,9 +14,9 @@ COMMENT= Make UUID::Random use Math::Random::Secure::rand() LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Math-Random-Secure>=0:math/p5-Math-Random-Secure \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Math-Random-Secure>=0:math/p5-Math-Random-Secure \ p5-UUID-Random>=0:devel/p5-UUID-Random -RUN_DEPENDS:= ${BUILD_DEPENDS} USE_PERL5= modbuild USES= perl5 diff --git a/devel/p5-UUID-Tiny/Makefile b/devel/p5-UUID-Tiny/Makefile index e721f5c577e..d9f3d4ab14f 100644 --- a/devel/p5-UUID-Tiny/Makefile +++ b/devel/p5-UUID-Tiny/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= sunpoet@FreeBSD.org COMMENT= Pure Perl UUID Support With Functional Interface -BUILD_DEPENDS= p5-Digest-SHA1>=0:security/p5-Digest-SHA1 -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Digest-SHA1>=0:security/p5-Digest-SHA1 USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Unix-Groups-FFI/Makefile b/devel/p5-Unix-Groups-FFI/Makefile index 95212987682..f5980215b6e 100644 --- a/devel/p5-Unix-Groups-FFI/Makefile +++ b/devel/p5-Unix-Groups-FFI/Makefile @@ -13,8 +13,8 @@ COMMENT= Interface to Unix group syscalls LICENSE= ART20 LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-FFI-Platypus>=0.20:devel/p5-FFI-Platypus -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-FFI-Platypus>=0.20:devel/p5-FFI-Platypus NO_ARCH= yes USE_PERL5= configure diff --git a/devel/p5-VCP-Dest-svk/Makefile b/devel/p5-VCP-Dest-svk/Makefile index b4726b6b2d7..bfaf1ec62e3 100644 --- a/devel/p5-VCP-Dest-svk/Makefile +++ b/devel/p5-VCP-Dest-svk/Makefile @@ -15,11 +15,11 @@ COMMENT= VCP destination driver for svn/svk LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-VCP-autrijus>=0:devel/p5-VCP-autrijus \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-VCP-autrijus>=0:devel/p5-VCP-autrijus \ p5-YAML>=0:textproc/p5-YAML \ p5-subversion>=0:devel/p5-subversion \ svk>=0:devel/svk -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-VCP-Source-cvsbk/Makefile b/devel/p5-VCP-Source-cvsbk/Makefile index 80897e47013..0774e51cb3a 100644 --- a/devel/p5-VCP-Source-cvsbk/Makefile +++ b/devel/p5-VCP-Source-cvsbk/Makefile @@ -15,9 +15,9 @@ COMMENT= VCP source driver for bk exported cvs repository LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-VCP-autrijus>=0:devel/p5-VCP-autrijus \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-VCP-autrijus>=0:devel/p5-VCP-autrijus \ p5-Module-Install>0:devel/p5-Module-Install -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-VCP-autrijus/Makefile b/devel/p5-VCP-autrijus/Makefile index 0ea2e01d99d..ffce440c347 100644 --- a/devel/p5-VCP-autrijus/Makefile +++ b/devel/p5-VCP-autrijus/Makefile @@ -14,7 +14,8 @@ DISTNAME= ${PORTNAME}${PKGNAMESUFFIX}-snapshot-${PORTVERSION:C/\.([^.]*)$/-\1/} MAINTAINER= perl@FreeBSD.org COMMENT= Tool for copying files between various SCM repositories -BUILD_DEPENDS= p5-XML-Parser>=0:textproc/p5-XML-Parser \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-XML-Parser>=0:textproc/p5-XML-Parser \ p5-XML-AutoWriter>=0:textproc/p5-XML-AutoWriter \ p5-Text-Diff>=0:textproc/p5-Text-Diff \ p5-IPC-Run3>=0:devel/p5-IPC-Run3 \ @@ -22,7 +23,6 @@ BUILD_DEPENDS= p5-XML-Parser>=0:textproc/p5-XML-Parser \ p5-Regexp-Shellish>=0:devel/p5-Regexp-Shellish \ p5-BFD>=0:devel/p5-BFD \ p5-Text-Table>=0:textproc/p5-Text-Table -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-VCS-Lite/Makefile b/devel/p5-VCS-Lite/Makefile index dbdae219b37..9d550a52331 100644 --- a/devel/p5-VCS-Lite/Makefile +++ b/devel/p5-VCS-Lite/Makefile @@ -12,8 +12,8 @@ COMMENT= Minimal version control system LICENSE= ART20 -BUILD_DEPENDS= p5-Algorithm-Diff>=1.13:devel/p5-Algorithm-Diff -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Algorithm-Diff>=1.13:devel/p5-Algorithm-Diff USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Workflow/Makefile b/devel/p5-Workflow/Makefile index 81b086a758c..139231d0a48 100644 --- a/devel/p5-Workflow/Makefile +++ b/devel/p5-Workflow/Makefile @@ -14,7 +14,8 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Class-Accessor>=0.18:devel/p5-Class-Accessor \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Accessor>=0.18:devel/p5-Class-Accessor \ p5-Class-Factory>=1:devel/p5-Class-Factory \ p5-Class-Observable>=1.04:devel/p5-Class-Observable \ p5-DBI>=0:databases/p5-DBI \ @@ -27,7 +28,6 @@ BUILD_DEPENDS= p5-Class-Accessor>=0.18:devel/p5-Class-Accessor \ p5-Log-Log4perl>=0.34:devel/p5-Log-Log4perl \ p5-SPOPS>=0:devel/p5-SPOPS \ p5-XML-Simple>=2:textproc/p5-XML-Simple -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-DBD-Mock>=0.1:databases/p5-DBD-Mock \ p5-List-MoreUtils>=0:lang/p5-List-MoreUtils \ p5-Pod-Coverage-TrustPod>=0:devel/p5-Pod-Coverage-TrustPod \ diff --git a/devel/p5-XML-Pastor/Makefile b/devel/p5-XML-Pastor/Makefile index 92626796caa..d22df8d0e76 100644 --- a/devel/p5-XML-Pastor/Makefile +++ b/devel/p5-XML-Pastor/Makefile @@ -14,14 +14,14 @@ COMMENT= Generate Perl classes with XML bindings from a W3C XSD schema LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Class-Accessor>=0:devel/p5-Class-Accessor \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Accessor>=0:devel/p5-Class-Accessor \ p5-Class-Data-Inheritable>=0:devel/p5-Class-Data-Inheritable \ p5-Data-HashArray>=0:devel/p5-Data-HashArray \ p5-File-chdir>=0:devel/p5-File-chdir \ p5-URI>=0:net/p5-URI \ p5-XML-LibXML>=0:textproc/p5-XML-LibXML \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} WRKSRC= ${WRKDIR}/${PORTNAME} diff --git a/devel/p5-Xporter/Makefile b/devel/p5-Xporter/Makefile index 65032b60dce..0648143bc16 100644 --- a/devel/p5-Xporter/Makefile +++ b/devel/p5-Xporter/Makefile @@ -15,8 +15,8 @@ COMMENT= Alternative Exporter with persistant defaults and auto-ISA LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-mem>=0.4.5:devel/p5-mem -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-mem>=0.4.5:devel/p5-mem NO_ARCH= yes USE_PERL5= configure diff --git a/devel/p5-Yada-Yada-Yada/Makefile b/devel/p5-Yada-Yada-Yada/Makefile index 8c5ed900135..57c7ecce5a4 100644 --- a/devel/p5-Yada-Yada-Yada/Makefile +++ b/devel/p5-Yada-Yada-Yada/Makefile @@ -12,8 +12,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Adds a Yada-Yada-Yada operator (...) to Perl 5 -BUILD_DEPENDS= p5-Filter-Simple>=0:textproc/p5-Filter-Simple -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Filter-Simple>=0:textproc/p5-Filter-Simple USES= perl5 USE_PERL5= configure diff --git a/devel/p5-accessors-fast/Makefile b/devel/p5-accessors-fast/Makefile index b2562780d7d..0d5deb1d043 100644 --- a/devel/p5-accessors-fast/Makefile +++ b/devel/p5-accessors-fast/Makefile @@ -15,10 +15,10 @@ COMMENT= Wrap fastest Class::Accessor::* into pragma LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Class-Accessor-Fast-XS>=0:devel/p5-Class-Accessor-Fast-XS \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Accessor-Fast-XS>=0:devel/p5-Class-Accessor-Fast-XS \ p5-constant-def>=0.01:devel/p5-constant-def \ p5-Class-C3>=0:devel/p5-Class-C3 -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-NoWarnings>=0:devel/p5-Test-NoWarnings \ p5-lib-abs>=0.90:devel/p5-lib-abs diff --git a/devel/p5-autobox-Core/Makefile b/devel/p5-autobox-Core/Makefile index c78dd67a3c0..a445a20ff04 100644 --- a/devel/p5-autobox-Core/Makefile +++ b/devel/p5-autobox-Core/Makefile @@ -13,9 +13,9 @@ COMMENT= Core functions exposed as methods in primitive types LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Want>=0.26:devel/p5-Want \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Want>=0.26:devel/p5-Want \ p5-autobox>=2.71:devel/p5-autobox -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/devel/p5-autobox/Makefile b/devel/p5-autobox/Makefile index 980597e6598..4e9e481d13e 100644 --- a/devel/p5-autobox/Makefile +++ b/devel/p5-autobox/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= bill.brinzer@gmail.com COMMENT= Call methods on native Perl types -BUILD_DEPENDS= p5-Scope-Guard>=0.20:devel/p5-Scope-Guard -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Scope-Guard>=0.20:devel/p5-Scope-Guard USES= perl5 USE_PERL5= configure diff --git a/devel/p5-capitalization/Makefile b/devel/p5-capitalization/Makefile index db3ce53d516..0cd35f19658 100644 --- a/devel/p5-capitalization/Makefile +++ b/devel/p5-capitalization/Makefile @@ -12,9 +12,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= demon@FreeBSD.org COMMENT= Perl module which allows you to use familiar style on method naming -BUILD_DEPENDS= p5-Devel-Symdump>=0:devel/p5-Devel-Symdump \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Devel-Symdump>=0:devel/p5-Devel-Symdump \ p5-Test-Simple>=0:devel/p5-Test-Simple -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-constant-def/Makefile b/devel/p5-constant-def/Makefile index c64d72b80a0..b0d728e01cc 100644 --- a/devel/p5-constant-def/Makefile +++ b/devel/p5-constant-def/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= mons@cpan.org COMMENT= Declare only undeclared constants -BUILD_DEPENDS= p5-ex-lib>=0.06:devel/p5-ex-lib -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-ex-lib>=0.06:devel/p5-ex-lib USES= perl5 USE_PERL5= configure diff --git a/devel/p5-constant-lexical/Makefile b/devel/p5-constant-lexical/Makefile index f20ab853a5f..a196084b028 100644 --- a/devel/p5-constant-lexical/Makefile +++ b/devel/p5-constant-lexical/Makefile @@ -15,9 +15,9 @@ COMMENT= Perl pragma to declare lexical compile-time constants LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Lexical-Var>=0:devel/p5-Lexical-Var \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Lexical-Var>=0:devel/p5-Lexical-Var \ p5-Sub-Delete>=0:devel/p5-Sub-Delete -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-forks/Makefile b/devel/p5-forks/Makefile index a8a7adda3c8..54d5dd249c7 100644 --- a/devel/p5-forks/Makefile +++ b/devel/p5-forks/Makefile @@ -14,12 +14,12 @@ COMMENT= Drop-in replacement for Perl threads using fork() LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Acme-Damn>=0:devel/p5-Acme-Damn \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Acme-Damn>=0:devel/p5-Acme-Damn \ p5-Attribute-Handlers>=0:devel/p5-Attribute-Handlers \ p5-Devel-Symdump>=0:devel/p5-Devel-Symdump \ p5-List-MoreUtils>=:lang/p5-List-MoreUtils \ p5-Sys-SigAction>=0.11:devel/p5-Sys-SigAction -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-github_creator/Makefile b/devel/p5-github_creator/Makefile index 77e742b83d2..9ab4030af59 100644 --- a/devel/p5-github_creator/Makefile +++ b/devel/p5-github_creator/Makefile @@ -12,12 +12,12 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Create a Github repository for your Perl module -BUILD_DEPENDS= p5-Config-IniFiles>0:devel/p5-Config-IniFiles \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Config-IniFiles>0:devel/p5-Config-IniFiles \ p5-File-Find-Closures>0:devel/p5-File-Find-Closures \ p5-Log-Log4perl>0:devel/p5-Log-Log4perl \ p5-WWW-Mechanize>0:www/p5-WWW-Mechanize \ p5-YAML>0:textproc/p5-YAML -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Output>=0:devel/p5-Test-Output USES= perl5 diff --git a/devel/p5-iCal-Parser/Makefile b/devel/p5-iCal-Parser/Makefile index 4e496f62524..2b70b6ff2d4 100644 --- a/devel/p5-iCal-Parser/Makefile +++ b/devel/p5-iCal-Parser/Makefile @@ -10,11 +10,11 @@ PKGNAMEPREFIX= p5- MAINTAINER= kuriyama@FreeBSD.org COMMENT= Parse iCalendar files into a data structure -BUILD_DEPENDS= p5-IO-String>=0:devel/p5-IO-String \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-IO-String>=0:devel/p5-IO-String \ p5-FreezeThaw>=0.4300:devel/p5-FreezeThaw \ p5-DateTime-Format-ICal>=0.08:devel/p5-DateTime-Format-ICal \ p5-Text-vFile-asData>=0.02:devel/p5-Text-vFile-asData -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-lexical-underscore/Makefile b/devel/p5-lexical-underscore/Makefile index 6f3626b8b40..263363fa571 100644 --- a/devel/p5-lexical-underscore/Makefile +++ b/devel/p5-lexical-underscore/Makefile @@ -15,8 +15,8 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-PadWalker>=0:devel/p5-PadWalker -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-PadWalker>=0:devel/p5-PadWalker NO_ARCH= yes USE_PERL5= configure diff --git a/devel/p5-mocked/Makefile b/devel/p5-mocked/Makefile index ef66ccd1084..e922f1a36cc 100644 --- a/devel/p5-mocked/Makefile +++ b/devel/p5-mocked/Makefile @@ -12,8 +12,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= mocked - use mocked libraries in unit tests -BUILD_DEPENDS= p5-URI>=0:net/p5-URI -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-URI>=0:net/p5-URI TEST_DEPENDS= p5-Test-Exception>0:devel/p5-Test-Exception USES= perl5 diff --git a/devel/p5-namespace-sweep/Makefile b/devel/p5-namespace-sweep/Makefile index 7c9e11dcf7c..1ed3322986c 100644 --- a/devel/p5-namespace-sweep/Makefile +++ b/devel/p5-namespace-sweep/Makefile @@ -11,11 +11,11 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Sweep up imported subs in your classes -BUILD_DEPENDS= p5-B-Hooks-EndOfScope>=0.09:devel/p5-B-Hooks-EndOfScope \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-B-Hooks-EndOfScope>=0.09:devel/p5-B-Hooks-EndOfScope \ p5-Package-Stash>=0.33:devel/p5-Package-Stash \ p5-Sub-Identify>=0.04:devel/p5-Sub-Identify \ p5-Sub-Name>=0:devel/p5-Sub-Name -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/devel/p5-orz/Makefile b/devel/p5-orz/Makefile index 865efc29fca..d55668efd47 100644 --- a/devel/p5-orz/Makefile +++ b/devel/p5-orz/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= snowfly@yuntech.edu.tw COMMENT= Method of annotation as /* */ in perl -BUILD_DEPENDS= p5-Module-Compile>=0.21:devel/p5-Module-Compile -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Module-Compile>=0.21:devel/p5-Module-Compile USES= perl5 USE_PERL5= configure diff --git a/devel/p5-pip/Makefile b/devel/p5-pip/Makefile index 5f15b53c1e9..f78c0dd3a8b 100644 --- a/devel/p5-pip/Makefile +++ b/devel/p5-pip/Makefile @@ -15,7 +15,8 @@ COMMENT= Perl Installation Program LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Archive-Zip>=1.29:archivers/p5-Archive-Zip \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Archive-Zip>=1.29:archivers/p5-Archive-Zip \ p5-CPAN-Inject>=0.07:devel/p5-CPAN-Inject \ p5-File-Which>=1.08:sysutils/p5-File-Which \ p5-File-pushd>=0.32:devel/p5-File-pushd \ @@ -23,7 +24,6 @@ BUILD_DEPENDS= p5-Archive-Zip>=1.29:archivers/p5-Archive-Zip \ p5-Params-Util>=1.00:devel/p5-Params-Util \ p5-URI>=0:net/p5-URI \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-LWP-Online>=0:www/p5-LWP-Online \ p5-Test-Script>=0:devel/p5-Test-Script \ p5-Compress-Bzip2>=0:archivers/p5-Compress-Bzip2 diff --git a/devel/p5-self/Makefile b/devel/p5-self/Makefile index 321e008017c..1dfb13e56c2 100644 --- a/devel/p5-self/Makefile +++ b/devel/p5-self/Makefile @@ -14,11 +14,11 @@ COMMENT= Provides "self" and "args" keywords in your OO program LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-B-Hooks-Parser>=0.08:devel/p5-B-Hooks-Parser \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-B-Hooks-Parser>=0.08:devel/p5-B-Hooks-Parser \ p5-B-OPCheck>=0.27:devel/p5-B-OPCheck \ p5-Devel-Declare>=0.003004:devel/p5-Devel-Declare \ p5-Sub-Exporter>=0:devel/p5-Sub-Exporter -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/devel/p5-subatom/Makefile b/devel/p5-subatom/Makefile index e98bad7dd32..362bdf1c18e 100644 --- a/devel/p5-subatom/Makefile +++ b/devel/p5-subatom/Makefile @@ -14,8 +14,8 @@ COMMENT= Produce an atom feed from subversion commits LICENSE= BSD2CLAUSE LICENSE_FILE= ${WRKSRC}/README -BUILD_DEPENDS= p5-XML-Atom-SimpleFeed>=0.80:textproc/p5-XML-Atom-SimpleFeed -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-XML-Atom-SimpleFeed>=0.80:textproc/p5-XML-Atom-SimpleFeed NO_ARCH= yes USE_PERL5= modbuild diff --git a/devel/p5-syntax/Makefile b/devel/p5-syntax/Makefile index 96af3c50380..3e7e84fda36 100644 --- a/devel/p5-syntax/Makefile +++ b/devel/p5-syntax/Makefile @@ -15,9 +15,9 @@ COMMENT= Activate syntax extensions in Perl LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Data-OptList>=0.104:devel/p5-Data-OptList \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Data-OptList>=0.104:devel/p5-Data-OptList \ p5-namespace-clean>=0:devel/p5-namespace-clean -RUN_DEPENDS:= ${BUILD_DEPENDS} USE_PERL5= configure USES= perl5 diff --git a/devel/pcre2/Makefile b/devel/pcre2/Makefile index 198e0eb11dd..953aa6c3a99 100644 --- a/devel/pcre2/Makefile +++ b/devel/pcre2/Makefile @@ -9,7 +9,7 @@ MASTER_SITES= SF/pcre/${PORTNAME}/${PORTVERSION} \ ftp://ftp.fu-berlin.de/unix/misc/pcre/ \ ftp://ftp.tin.org/pub/libs/pcre/ -MAINTAINER= feld@FreeBSD.org +MAINTAINER= krion@FreeBSD.org COMMENT= Perl Compatible Regular Expressions library, version 2 LICENSE= BSD3CLAUSE diff --git a/devel/py-bluelet/Makefile b/devel/py-bluelet/Makefile index 65011135f4a..2a64afe0acd 100644 --- a/devel/py-bluelet/Makefile +++ b/devel/py-bluelet/Makefile @@ -7,7 +7,7 @@ CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -MAINTAINER= feld@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Pure-Python asynchronous I/O using coroutines LICENSE= MIT diff --git a/devel/py-btest/Makefile b/devel/py-btest/Makefile index 96b876fc2db..90bda83d9b8 100644 --- a/devel/py-btest/Makefile +++ b/devel/py-btest/Makefile @@ -2,7 +2,7 @@ PORTNAME= btest DISTVERSION= 0.58 -CATEGORIES= devel +CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/devel/py-certsrv/Makefile b/devel/py-certsrv/Makefile index 94b1c503e62..06c5aa7a528 100644 --- a/devel/py-certsrv/Makefile +++ b/devel/py-certsrv/Makefile @@ -7,7 +7,7 @@ CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -MAINTAINER= feld@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Python client for the Microsoft Certificate Authority LICENSE= MIT diff --git a/devel/py-cligj/Makefile b/devel/py-cligj/Makefile index 50f8a817c92..e8e0705045b 100644 --- a/devel/py-cligj/Makefile +++ b/devel/py-cligj/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= cligj -PORTVERSION= 0.4.0 +PORTVERSION= 0.5.0 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/devel/py-cligj/distinfo b/devel/py-cligj/distinfo index b3d8a93b5f7..0844d096200 100644 --- a/devel/py-cligj/distinfo +++ b/devel/py-cligj/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1527876764 -SHA256 (cligj-0.4.0.tar.gz) = 12ad07994f5c1173b06087ffbaacec52f9ebe4687926e5aacfc22b6b0c8b3f54 -SIZE (cligj-0.4.0.tar.gz) = 7281 +TIMESTAMP = 1538899383 +SHA256 (cligj-0.5.0.tar.gz) = 6c7d52d529a78712491974f975c33473f430c0f7beb18c0d7a402a743dcb460a +SIZE (cligj-0.5.0.tar.gz) = 5457 diff --git a/devel/py-darcsver/Makefile b/devel/py-darcsver/Makefile index 06c9290f85e..c0f6c54c935 100644 --- a/devel/py-darcsver/Makefile +++ b/devel/py-darcsver/Makefile @@ -11,8 +11,11 @@ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= wen@FreeBSD.org COMMENT= Generate a version number from darcs history +LICENSE= BSD + USES= python:2.7 USE_PYTHON= distutils autoplist +NO_ARCH= yes post-patch: @${REINPLACE_CMD} -e 's#(doc_loc, data_fnames)##g' ${WRKSRC}/setup.py diff --git a/devel/py-dateutils/Makefile b/devel/py-dateutils/Makefile index cc6fd46e6bf..73b3a91b595 100644 --- a/devel/py-dateutils/Makefile +++ b/devel/py-dateutils/Makefile @@ -7,7 +7,7 @@ CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -MAINTAINER= feld@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Various utilities for working with date and datetime objects LICENSE= BSD3CLAUSE diff --git a/devel/py-dbus/Makefile b/devel/py-dbus/Makefile index df0da43ebed..a0c61b9f7ae 100644 --- a/devel/py-dbus/Makefile +++ b/devel/py-dbus/Makefile @@ -1,20 +1,15 @@ # Created by: Joe Marcus Clarke # $FreeBSD$ -PORTREVISION= 1 - PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} PKGNAMESUFFIX= -COMMENT= Python2 bindings for the D-BUS messaging system +COMMENT= Python bindings for the D-BUS messaging system -SLAVE_PORT= python2 +SLAVE_PORT= python MASTERDIR= ${.CURDIR}/../../devel/pydbus-common -.if ${FLAVOR:U:Mpy3*} -PLIST= ${.CURDIR}/pkg-plist-py3 -.else + PLIST= ${.CURDIR}/pkg-plist -.endif .include "${MASTERDIR}/Makefile" diff --git a/devel/py-dbus/pkg-plist b/devel/py-dbus/pkg-plist index c6ef5aaf0ff..71d2a86a8dd 100644 --- a/devel/py-dbus/pkg-plist +++ b/devel/py-dbus/pkg-plist @@ -12,9 +12,6 @@ %%PYTHON_SITELIBDIR%%/dbus/_expat_introspect_parser.py %%PYTHON_SITELIBDIR%%/dbus/_expat_introspect_parser.pyc %%PYTHON_SITELIBDIR%%/dbus/_expat_introspect_parser.pyo -%%PYTHON_SITELIBDIR%%/dbus/_version.py -%%PYTHON_SITELIBDIR%%/dbus/_version.pyc -%%PYTHON_SITELIBDIR%%/dbus/_version.pyo %%PYTHON_SITELIBDIR%%/dbus/bus.py %%PYTHON_SITELIBDIR%%/dbus/bus.pyc %%PYTHON_SITELIBDIR%%/dbus/bus.pyo @@ -33,9 +30,9 @@ %%PYTHON_SITELIBDIR%%/dbus/glib.py %%PYTHON_SITELIBDIR%%/dbus/glib.pyc %%PYTHON_SITELIBDIR%%/dbus/glib.pyo -%%PYTHON_SITELIBDIR%%/dbus/gobject_service.py -%%PYTHON_SITELIBDIR%%/dbus/gobject_service.pyc -%%PYTHON_SITELIBDIR%%/dbus/gobject_service.pyo +%%PYTHON2%%%%PYTHON_SITELIBDIR%%/dbus/gobject_service.py +%%PYTHON2%%%%PYTHON_SITELIBDIR%%/dbus/gobject_service.pyc +%%PYTHON2%%%%PYTHON_SITELIBDIR%%/dbus/gobject_service.pyo %%PYTHON_SITELIBDIR%%/dbus/lowlevel.py %%PYTHON_SITELIBDIR%%/dbus/lowlevel.pyc %%PYTHON_SITELIBDIR%%/dbus/lowlevel.pyo diff --git a/devel/py-dbus/pkg-plist-py3 b/devel/py-dbus/pkg-plist-py3 deleted file mode 100644 index db23fd4a18c..00000000000 --- a/devel/py-dbus/pkg-plist-py3 +++ /dev/null @@ -1,56 +0,0 @@ -%%PYTHON_SITELIBDIR%%/_dbus_bindings.so -%%PYTHON_SITELIBDIR%%/_dbus_glib_bindings.so -%%PYTHON_SITELIBDIR%%/dbus/__init__.py -%%PYTHON_SITELIBDIR%%/dbus/__init__.pyc -%%PYTHON_SITELIBDIR%%/dbus/__init__.pyo -%%PYTHON_SITELIBDIR%%/dbus/_compat.py -%%PYTHON_SITELIBDIR%%/dbus/_compat.pyc -%%PYTHON_SITELIBDIR%%/dbus/_compat.pyo -%%PYTHON_SITELIBDIR%%/dbus/_dbus.py -%%PYTHON_SITELIBDIR%%/dbus/_dbus.pyc -%%PYTHON_SITELIBDIR%%/dbus/_dbus.pyo -%%PYTHON_SITELIBDIR%%/dbus/_expat_introspect_parser.py -%%PYTHON_SITELIBDIR%%/dbus/_expat_introspect_parser.pyc -%%PYTHON_SITELIBDIR%%/dbus/_expat_introspect_parser.pyo -%%PYTHON_SITELIBDIR%%/dbus/_version.py -%%PYTHON_SITELIBDIR%%/dbus/_version.pyc -%%PYTHON_SITELIBDIR%%/dbus/_version.pyo -%%PYTHON_SITELIBDIR%%/dbus/bus.py -%%PYTHON_SITELIBDIR%%/dbus/bus.pyc -%%PYTHON_SITELIBDIR%%/dbus/bus.pyo -%%PYTHON_SITELIBDIR%%/dbus/connection.py -%%PYTHON_SITELIBDIR%%/dbus/connection.pyc -%%PYTHON_SITELIBDIR%%/dbus/connection.pyo -%%PYTHON_SITELIBDIR%%/dbus/decorators.py -%%PYTHON_SITELIBDIR%%/dbus/decorators.pyc -%%PYTHON_SITELIBDIR%%/dbus/decorators.pyo -%%PYTHON_SITELIBDIR%%/dbus/exceptions.py -%%PYTHON_SITELIBDIR%%/dbus/exceptions.pyc -%%PYTHON_SITELIBDIR%%/dbus/exceptions.pyo -%%PYTHON_SITELIBDIR%%/dbus/gi_service.py -%%PYTHON_SITELIBDIR%%/dbus/gi_service.pyc -%%PYTHON_SITELIBDIR%%/dbus/gi_service.pyo -%%PYTHON_SITELIBDIR%%/dbus/glib.py -%%PYTHON_SITELIBDIR%%/dbus/glib.pyc -%%PYTHON_SITELIBDIR%%/dbus/glib.pyo -%%PYTHON_SITELIBDIR%%/dbus/lowlevel.py -%%PYTHON_SITELIBDIR%%/dbus/lowlevel.pyc -%%PYTHON_SITELIBDIR%%/dbus/lowlevel.pyo -%%PYTHON_SITELIBDIR%%/dbus/proxies.py -%%PYTHON_SITELIBDIR%%/dbus/proxies.pyc -%%PYTHON_SITELIBDIR%%/dbus/proxies.pyo -%%PYTHON_SITELIBDIR%%/dbus/server.py -%%PYTHON_SITELIBDIR%%/dbus/server.pyc -%%PYTHON_SITELIBDIR%%/dbus/server.pyo -%%PYTHON_SITELIBDIR%%/dbus/service.py -%%PYTHON_SITELIBDIR%%/dbus/service.pyc -%%PYTHON_SITELIBDIR%%/dbus/service.pyo -%%PYTHON_SITELIBDIR%%/dbus/types.py -%%PYTHON_SITELIBDIR%%/dbus/types.pyc -%%PYTHON_SITELIBDIR%%/dbus/types.pyo -%%PYTHON_SITELIBDIR%%/dbus/mainloop/__init__.py -%%PYTHON_SITELIBDIR%%/dbus/mainloop/__init__.pyc -%%PYTHON_SITELIBDIR%%/dbus/mainloop/__init__.pyo -%%PYTHON_SITELIBDIR%%/dbus/mainloop/glib.py -%%PYTHON_SITELIBDIR%%/dbus/mainloop/glib.pyc -%%PYTHON_SITELIBDIR%%/dbus/mainloop/glib.pyo diff --git a/devel/py-deepdiff/Makefile b/devel/py-deepdiff/Makefile new file mode 100644 index 00000000000..a6c99eebad2 --- /dev/null +++ b/devel/py-deepdiff/Makefile @@ -0,0 +1,20 @@ +# $FreeBSD$ + +PORTNAME= deepdiff +DISTVERSION= 3.3.0 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Deep difference and search of any Python object/data + +LICENSE= MIT + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}jsonpickle>0:devel/py-jsonpickle@${PY_FLAVOR} + +USES= python +USE_PYTHON= distutils autoplist +NO_ARCH= yes + +.include diff --git a/devel/py-deepdiff/distinfo b/devel/py-deepdiff/distinfo new file mode 100644 index 00000000000..d9e641610f8 --- /dev/null +++ b/devel/py-deepdiff/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1538892954 +SHA256 (deepdiff-3.3.0.tar.gz) = ecad8e16a96ffd27e8f40c9801a6ab16ec6a7e7e6e6859a7710ba4695f22702c +SIZE (deepdiff-3.3.0.tar.gz) = 27055 diff --git a/devel/py-deepdiff/pkg-descr b/devel/py-deepdiff/pkg-descr new file mode 100644 index 00000000000..4e5b4a8ab2d --- /dev/null +++ b/devel/py-deepdiff/pkg-descr @@ -0,0 +1,5 @@ +Deep difference of dictionaries, iterables, strings and other objects. It will +recursively look for all the changes. Tested on Python 2.7, 3.3, 3.4, 3.5, 3.6, +Pypy, Pypy3. + +WWW: https://github.com/seperman/deepdiff diff --git a/devel/py-distlib/Makefile b/devel/py-distlib/Makefile index 97b7015889d..42d8aafeab1 100644 --- a/devel/py-distlib/Makefile +++ b/devel/py-distlib/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= distlib -DISTVERSION= 0.2.7 +DISTVERSION= 0.2.8 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/devel/py-distlib/distinfo b/devel/py-distlib/distinfo index 3cc5132be62..3d129fabf69 100644 --- a/devel/py-distlib/distinfo +++ b/devel/py-distlib/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1530667208 -SHA256 (distlib-0.2.7.zip) = cd502c66fc27c535bab62dc4f482e403e2369c2c05281a79cc2d4e2f42a87f20 -SIZE (distlib-0.2.7.zip) = 560324 +TIMESTAMP = 1538516015 +SHA256 (distlib-0.2.8.zip) = 57977cd7d9ea27986ec62f425630e4ddb42efe651ff80bc58ed8dbc3c7c21f19 +SIZE (distlib-0.2.8.zip) = 561108 diff --git a/devel/py-fabric3/Makefile b/devel/py-fabric3/Makefile index 01e63d28e68..fdc7e343159 100644 --- a/devel/py-fabric3/Makefile +++ b/devel/py-fabric3/Makefile @@ -8,7 +8,7 @@ MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} DISTNAME= Fabric3-${DISTVERSION} -MAINTAINER= feld@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Python tool for remote execution and deployment LICENSE= BSD3CLAUSE diff --git a/devel/py-inflect/Makefile b/devel/py-inflect/Makefile index 934c79ab63d..060212c52e3 100644 --- a/devel/py-inflect/Makefile +++ b/devel/py-inflect/Makefile @@ -7,7 +7,7 @@ CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -MAINTAINER= feld@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Generate plurals, singular nouns, ordinals, indefinite articles LICENSE= AGPLv3+ diff --git a/devel/py-invoke/Makefile b/devel/py-invoke/Makefile index 298aef1fee7..e491e7ad130 100644 --- a/devel/py-invoke/Makefile +++ b/devel/py-invoke/Makefile @@ -8,7 +8,7 @@ CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -MAINTAINER= feld@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Python task execution tool & library LICENSE= BSD2CLAUSE diff --git a/devel/py-jaraco.classes/Makefile b/devel/py-jaraco.classes/Makefile index e058fe22d3c..f17830e2d84 100644 --- a/devel/py-jaraco.classes/Makefile +++ b/devel/py-jaraco.classes/Makefile @@ -7,7 +7,7 @@ CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -MAINTAINER= feld@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Python class routines LICENSE= MIT diff --git a/devel/py-jaraco.functools/Makefile b/devel/py-jaraco.functools/Makefile index 0a81ac10df6..c4527762a94 100644 --- a/devel/py-jaraco.functools/Makefile +++ b/devel/py-jaraco.functools/Makefile @@ -2,12 +2,12 @@ # $FreeBSD$ PORTNAME= jaraco.functools -PORTVERSION= 1.19 +PORTVERSION= 1.20 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -MAINTAINER= feld@FreeBSD.org +MAINTAINER= sunpoet@FreeBSD.org COMMENT= Additional functools for Python LICENSE= MIT @@ -17,11 +17,13 @@ BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}setuptools_scm>=1.15.0:devel/py-setuptools RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}more-itertools>=2.7:devel/py-more-itertools@${PY_FLAVOR} USES= python -USE_PYTHON= autoplist distutils +USE_PYTHON= autoplist concurrent distutils + +NO_ARCH= yes .include -.if ${PYTHON_VER} == "2.7" +.if ${PYTHON_REL} < 3000 RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}backports.functools_lru_cache>=1.0.3:devel/py-backports.functools_lru_cache@${PY_FLAVOR} .endif diff --git a/devel/py-jaraco.functools/distinfo b/devel/py-jaraco.functools/distinfo index f55125f49a3..fb00b828954 100644 --- a/devel/py-jaraco.functools/distinfo +++ b/devel/py-jaraco.functools/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1530209050 -SHA256 (jaraco.functools-1.19.tar.gz) = 60835b5fba2205d1cab2fd40884a0bb538693bc2f602d54c45ec3bab74c425fc -SIZE (jaraco.functools-1.19.tar.gz) = 10588 +TIMESTAMP = 1534007706 +SHA256 (jaraco.functools-1.20.tar.gz) = bad775f06e58bb8de5563bc2a8bf704168919e6779d6e849b1ca58b443e97f3b +SIZE (jaraco.functools-1.20.tar.gz) = 11063 diff --git a/devel/py-jaraco.itertools/Makefile b/devel/py-jaraco.itertools/Makefile index 94960614033..6576c6380e4 100644 --- a/devel/py-jaraco.itertools/Makefile +++ b/devel/py-jaraco.itertools/Makefile @@ -7,7 +7,7 @@ CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -MAINTAINER= feld@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Tools for working with iterables LICENSE= MIT diff --git a/devel/py-jaraco.logging/Makefile b/devel/py-jaraco.logging/Makefile index a1ce4e6b58a..0541285f4cc 100644 --- a/devel/py-jaraco.logging/Makefile +++ b/devel/py-jaraco.logging/Makefile @@ -7,7 +7,7 @@ CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -MAINTAINER= feld@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Additional facilities to supplement Python's stdlib logging module LICENSE= MIT diff --git a/devel/py-jsonpickle/Makefile b/devel/py-jsonpickle/Makefile new file mode 100644 index 00000000000..7fe44986e1a --- /dev/null +++ b/devel/py-jsonpickle/Makefile @@ -0,0 +1,19 @@ +# $FreeBSD$ + +PORTNAME= jsonpickle +DISTVERSION= 1.0 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Python library for serializing any arbitrary object graph into JSON + +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/COPYING + +USES= python +USE_PYTHON= distutils autoplist +NO_ARCH= yes + +.include diff --git a/devel/py-jsonpickle/distinfo b/devel/py-jsonpickle/distinfo new file mode 100644 index 00000000000..bacc568f450 --- /dev/null +++ b/devel/py-jsonpickle/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1538893231 +SHA256 (jsonpickle-1.0.tar.gz) = d43ede55b3d9b5524a8e11566ea0b11c9c8109116ef6a509a1b619d2041e7397 +SIZE (jsonpickle-1.0.tar.gz) = 70899 diff --git a/devel/py-jsonpickle/pkg-descr b/devel/py-jsonpickle/pkg-descr new file mode 100644 index 00000000000..fc62f19feb9 --- /dev/null +++ b/devel/py-jsonpickle/pkg-descr @@ -0,0 +1,10 @@ +jsonpickle is a Python library for serialization and deserialization of complex +Python objects to and from JSON. The standard Python libraries for encoding +Python into JSON, such as the stdlib's json, simplejson, and demjson, can only +handle Python primitives that have a direct JSON equivalent (e.g. dicts, lists, +strings, ints, etc.). jsonpickle builds on top of these libraries and allows +more complex data structures to be serialized to JSON. jsonpickle is highly +configurable and extendable-allowing the user to choose the JSON backend and add +additional backends. + +WWW: https://jsonpickle.github.io/ diff --git a/devel/py-libiocage/Makefile b/devel/py-libiocage/Makefile new file mode 100644 index 00000000000..cebe99b7480 --- /dev/null +++ b/devel/py-libiocage/Makefile @@ -0,0 +1,37 @@ +# $FreeBSD$ + +PORTNAME= libiocage +PORTVERSION= 0.3.1 +CATEGORIES= devel python +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= maintainers@iocage.io +COMMENT= Library to manage jails with iocage + +LICENSE= BSD2CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE.txt + +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pip>0:devel/py-pip@${PY_FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}GitPython>0:devel/py-gitpython@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}ucl>0:textproc/py-ucl@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}libzfs>0:devel/py-libzfs@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}sysctl>0:devel/py-sysctl@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}click>0:devel/py-click@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}texttable>0:textproc/py-texttable@${PY_FLAVOR} \ + ca_root_nss>0:security/ca_root_nss \ + rsync:net/rsync + +USE_GITHUB= yes +GH_ACCOUNT= iocage +GH_PROJECT= libiocage + +NO_ARCH= yes +USES= python:3.6+ +USE_PYTHON= distutils py3kplist + +PLIST_SUB+= PORTVERSION=${PORTVERSION} + +post-install: + ${INSTALL_SCRIPT} ${WRKSRC}/rc.d/ioc ${STAGEDIR}${PREFIX}/etc/rc.d/ioc + +.include diff --git a/devel/py-libiocage/distinfo b/devel/py-libiocage/distinfo new file mode 100644 index 00000000000..ca1e9005c3e --- /dev/null +++ b/devel/py-libiocage/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1538738179 +SHA256 (iocage-libiocage-0.3.1_GH0.tar.gz) = d479a7ddbf25df96055182f37b262cabdbcd0a0aa6d39b240dfb6d14136e4f65 +SIZE (iocage-libiocage-0.3.1_GH0.tar.gz) = 142018 diff --git a/devel/py-libiocage/files/patch-setup.py b/devel/py-libiocage/files/patch-setup.py new file mode 100644 index 00000000000..70addc83544 --- /dev/null +++ b/devel/py-libiocage/files/patch-setup.py @@ -0,0 +1,10 @@ +--- setup.py.orig 2018-10-04 10:36:15 UTC ++++ setup.py +@@ -94,7 +94,6 @@ setup( + include_package_data=True, + install_requires=iocage_requirements["install_requires"], + dependency_links=iocage_requirements["dependency_links"], +- setup_requires=['pytest-runner'], + tests_require=['pytest', 'pytest-cov', 'pytest-pep8'] + ) + diff --git a/devel/py-libiocage/pkg-descr b/devel/py-libiocage/pkg-descr new file mode 100644 index 00000000000..534a9d687d6 --- /dev/null +++ b/devel/py-libiocage/pkg-descr @@ -0,0 +1,4 @@ +Provides programmatic access to iocage features and jails, while aiming to be +compatible with iocage-legacy, and the current Python 3 version of iocage. + +WWW: https://github.com/iocage/libiocage diff --git a/devel/py-libiocage/pkg-plist b/devel/py-libiocage/pkg-plist new file mode 100644 index 00000000000..231f4c4d593 --- /dev/null +++ b/devel/py-libiocage/pkg-plist @@ -0,0 +1,105 @@ +bin/ioc +etc/rc.d/ioc +%%PYTHON_SITELIBDIR%%/ioc-%%PORTVERSION%%-py%%PYTHON_VER%%.egg-info/PKG-INFO +%%PYTHON_SITELIBDIR%%/ioc-%%PORTVERSION%%-py%%PYTHON_VER%%.egg-info/SOURCES.txt +%%PYTHON_SITELIBDIR%%/ioc-%%PORTVERSION%%-py%%PYTHON_VER%%.egg-info/dependency_links.txt +%%PYTHON_SITELIBDIR%%/ioc-%%PORTVERSION%%-py%%PYTHON_VER%%.egg-info/entry_points.txt +%%PYTHON_SITELIBDIR%%/ioc-%%PORTVERSION%%-py%%PYTHON_VER%%.egg-info/requires.txt +%%PYTHON_SITELIBDIR%%/ioc-%%PORTVERSION%%-py%%PYTHON_VER%%.egg-info/top_level.txt +%%PYTHON_SITELIBDIR%%/ioc/__init__.py +%%PYTHON_SITELIBDIR%%/ioc/activate.py +%%PYTHON_SITELIBDIR%%/ioc/clone.py +%%PYTHON_SITELIBDIR%%/ioc/console.py +%%PYTHON_SITELIBDIR%%/ioc/create.py +%%PYTHON_SITELIBDIR%%/ioc/deactivate.py +%%PYTHON_SITELIBDIR%%/ioc/destroy.py +%%PYTHON_SITELIBDIR%%/ioc/exec.py +%%PYTHON_SITELIBDIR%%/ioc/export.py +%%PYTHON_SITELIBDIR%%/ioc/fetch.py +%%PYTHON_SITELIBDIR%%/ioc/fstab.py +%%PYTHON_SITELIBDIR%%/ioc/get.py +%%PYTHON_SITELIBDIR%%/ioc/import.py +%%PYTHON_SITELIBDIR%%/ioc/list.py +%%PYTHON_SITELIBDIR%%/ioc/migrate.py +%%PYTHON_SITELIBDIR%%/ioc/pkg.py +%%PYTHON_SITELIBDIR%%/ioc/promote.py +%%PYTHON_SITELIBDIR%%/ioc/provision.py +%%PYTHON_SITELIBDIR%%/ioc/rename.py +%%PYTHON_SITELIBDIR%%/ioc/restart.py +%%PYTHON_SITELIBDIR%%/ioc/set.py +%%PYTHON_SITELIBDIR%%/ioc/shared/__init__.py +%%PYTHON_SITELIBDIR%%/ioc/shared/click.py +%%PYTHON_SITELIBDIR%%/ioc/shared/jail.py +%%PYTHON_SITELIBDIR%%/ioc/shared/output.py +%%PYTHON_SITELIBDIR%%/ioc/snapshot.py +%%PYTHON_SITELIBDIR%%/ioc/start.py +%%PYTHON_SITELIBDIR%%/ioc/stop.py +%%PYTHON_SITELIBDIR%%/ioc/update.py +%%PYTHON_SITELIBDIR%%/iocage-%%PORTVERSION%%-py%%PYTHON_VER%%.egg-info/PKG-INFO +%%PYTHON_SITELIBDIR%%/iocage-%%PORTVERSION%%-py%%PYTHON_VER%%.egg-info/SOURCES.txt +%%PYTHON_SITELIBDIR%%/iocage-%%PORTVERSION%%-py%%PYTHON_VER%%.egg-info/dependency_links.txt +%%PYTHON_SITELIBDIR%%/iocage-%%PORTVERSION%%-py%%PYTHON_VER%%.egg-info/requires.txt +%%PYTHON_SITELIBDIR%%/iocage-%%PORTVERSION%%-py%%PYTHON_VER%%.egg-info/top_level.txt +%%PYTHON_SITELIBDIR%%/iocage/BridgeInterface.py +%%PYTHON_SITELIBDIR%%/iocage/CommandQueue.py +%%PYTHON_SITELIBDIR%%/iocage/Config/Dataset.py +%%PYTHON_SITELIBDIR%%/iocage/Config/Jail/BaseConfig.py +%%PYTHON_SITELIBDIR%%/iocage/Config/Jail/Defaults.py +%%PYTHON_SITELIBDIR%%/iocage/Config/Jail/File/Fstab.py +%%PYTHON_SITELIBDIR%%/iocage/Config/Jail/File/RCConf.py +%%PYTHON_SITELIBDIR%%/iocage/Config/Jail/File/SysctlConf.py +%%PYTHON_SITELIBDIR%%/iocage/Config/Jail/File/__init__.py +%%PYTHON_SITELIBDIR%%/iocage/Config/Jail/JailConfig.py +%%PYTHON_SITELIBDIR%%/iocage/Config/Jail/Properties/Addresses.py +%%PYTHON_SITELIBDIR%%/iocage/Config/Jail/Properties/Defaultrouter.py +%%PYTHON_SITELIBDIR%%/iocage/Config/Jail/Properties/Interfaces.py +%%PYTHON_SITELIBDIR%%/iocage/Config/Jail/Properties/Resolver.py +%%PYTHON_SITELIBDIR%%/iocage/Config/Jail/Properties/ResourceLimit.py +%%PYTHON_SITELIBDIR%%/iocage/Config/Jail/Properties/__init__.py +%%PYTHON_SITELIBDIR%%/iocage/Config/Jail/__init__.py +%%PYTHON_SITELIBDIR%%/iocage/Config/Prototype.py +%%PYTHON_SITELIBDIR%%/iocage/Config/Type/JSON.py +%%PYTHON_SITELIBDIR%%/iocage/Config/Type/UCL.py +%%PYTHON_SITELIBDIR%%/iocage/Config/Type/ZFS.py +%%PYTHON_SITELIBDIR%%/iocage/Config/Type/__init__.py +%%PYTHON_SITELIBDIR%%/iocage/Config/__init__.py +%%PYTHON_SITELIBDIR%%/iocage/Datasets.py +%%PYTHON_SITELIBDIR%%/iocage/DevfsRules.py +%%PYTHON_SITELIBDIR%%/iocage/Distribution.py +%%PYTHON_SITELIBDIR%%/iocage/Filter.py +%%PYTHON_SITELIBDIR%%/iocage/Firewall.py +%%PYTHON_SITELIBDIR%%/iocage/Host.py +%%PYTHON_SITELIBDIR%%/iocage/IPAddress.py +%%PYTHON_SITELIBDIR%%/iocage/Jail.py +%%PYTHON_SITELIBDIR%%/iocage/JailState.py +%%PYTHON_SITELIBDIR%%/iocage/Jails.py +%%PYTHON_SITELIBDIR%%/iocage/LaunchableResource.py +%%PYTHON_SITELIBDIR%%/iocage/ListableResource.py +%%PYTHON_SITELIBDIR%%/iocage/Logger.py +%%PYTHON_SITELIBDIR%%/iocage/MacAddress.py +%%PYTHON_SITELIBDIR%%/iocage/Network.py +%%PYTHON_SITELIBDIR%%/iocage/NetworkInterface.py +%%PYTHON_SITELIBDIR%%/iocage/NullFSBasejailStorage.py +%%PYTHON_SITELIBDIR%%/iocage/Pkg.py +%%PYTHON_SITELIBDIR%%/iocage/Prompts.py +%%PYTHON_SITELIBDIR%%/iocage/Provisioning/__init__.py +%%PYTHON_SITELIBDIR%%/iocage/Provisioning/ix.py +%%PYTHON_SITELIBDIR%%/iocage/Release.py +%%PYTHON_SITELIBDIR%%/iocage/Releases.py +%%PYTHON_SITELIBDIR%%/iocage/Resource.py +%%PYTHON_SITELIBDIR%%/iocage/ResourceBackup.py +%%PYTHON_SITELIBDIR%%/iocage/ResourceSelector.py +%%PYTHON_SITELIBDIR%%/iocage/ResourceUpdater.py +%%PYTHON_SITELIBDIR%%/iocage/SecureTarfile.py +%%PYTHON_SITELIBDIR%%/iocage/StandaloneJailStorage.py +%%PYTHON_SITELIBDIR%%/iocage/Storage.py +%%PYTHON_SITELIBDIR%%/iocage/Types.py +%%PYTHON_SITELIBDIR%%/iocage/VersionedResource.py +%%PYTHON_SITELIBDIR%%/iocage/ZFS.py +%%PYTHON_SITELIBDIR%%/iocage/ZFSBasejailStorage.py +%%PYTHON_SITELIBDIR%%/iocage/ZFSShareStorage.py +%%PYTHON_SITELIBDIR%%/iocage/__init__.py +%%PYTHON_SITELIBDIR%%/iocage/errors.py +%%PYTHON_SITELIBDIR%%/iocage/events.py +%%PYTHON_SITELIBDIR%%/iocage/helpers.py +%%PYTHON_SITELIBDIR%%/iocage/helpers_object.py diff --git a/devel/py-libtaxii/Makefile b/devel/py-libtaxii/Makefile index c4e4f36dd64..832028e5ff8 100644 --- a/devel/py-libtaxii/Makefile +++ b/devel/py-libtaxii/Makefile @@ -7,7 +7,7 @@ CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -MAINTAINER= feld@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Python library for handling TAXII Messages and invoking TAXII Services LICENSE= BSD3CLAUSE diff --git a/devel/py-libvirt/Makefile b/devel/py-libvirt/Makefile index f893c6b5569..034e924f35d 100644 --- a/devel/py-libvirt/Makefile +++ b/devel/py-libvirt/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= libvirt -PORTVERSION= 4.7.0 +PORTVERSION= 4.8.0 CATEGORIES= devel MASTER_SITES= http://libvirt.org/sources/python/ \ ftp://libvirt.org/libvirt/python/ diff --git a/devel/py-libvirt/distinfo b/devel/py-libvirt/distinfo index 84107ab9065..6c5588bb9cb 100644 --- a/devel/py-libvirt/distinfo +++ b/devel/py-libvirt/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1536674532 -SHA256 (libvirt-python-4.7.0.tar.gz) = e36fee5898de3550ed7e63d5d0a8447f9d78f06574634855dee59eae27930908 -SIZE (libvirt-python-4.7.0.tar.gz) = 190330 +TIMESTAMP = 1538836164 +SHA256 (libvirt-python-4.8.0.tar.gz) = 05cc7d0fb0ef415cf9411bee43dde3fa3f08e43a70ca386b0727e2e97c7311ee +SIZE (libvirt-python-4.8.0.tar.gz) = 191575 diff --git a/devel/py-libzfs/Makefile b/devel/py-libzfs/Makefile index f680d571ca5..8337ad0258b 100644 --- a/devel/py-libzfs/Makefile +++ b/devel/py-libzfs/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= libzfs -PORTVERSION= 1.0.20171215 +PORTVERSION= 1.0.20181003 CATEGORIES= devel python PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -20,8 +20,9 @@ RUN_DEPENDS= ${PY_ENUM34} USE_GITHUB= yes GH_ACCOUNT= freenas GH_PROJECT= py-libzfs -GH_TAGNAME= e0b4b68 +GH_TAGNAME= 4cc2344 +HAS_CONFIGURE= yes USES= python USE_PYTHON= autoplist distutils cython diff --git a/devel/py-libzfs/distinfo b/devel/py-libzfs/distinfo index 8f78511dd21..45c4f4f539c 100644 --- a/devel/py-libzfs/distinfo +++ b/devel/py-libzfs/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1513364578 -SHA256 (freenas-py-libzfs-1.0.20171215-e0b4b68_GH0.tar.gz) = 6adfc97d7f3b31ede1efa6d403013bba601358d4bd66cca0fa1584a2dad01fbc -SIZE (freenas-py-libzfs-1.0.20171215-e0b4b68_GH0.tar.gz) = 29911 +TIMESTAMP = 1538657780 +SHA256 (freenas-py-libzfs-1.0.20181003-4cc2344_GH0.tar.gz) = 02c6ca40ebbf038e3b096bc18b9ef5856d323c72135ea5a8fba1ced1a5551169 +SIZE (freenas-py-libzfs-1.0.20181003-4cc2344_GH0.tar.gz) = 69540 diff --git a/devel/py-logutils/Makefile b/devel/py-logutils/Makefile index 606ee304ad9..04070e52e94 100644 --- a/devel/py-logutils/Makefile +++ b/devel/py-logutils/Makefile @@ -7,7 +7,7 @@ CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -MAINTAINER= feld@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Handlers for the Python standard library logging package LICENSE= BSD3CLAUSE diff --git a/devel/py-marshmallow/Makefile b/devel/py-marshmallow/Makefile index 85e04a9690e..1ff5c9d17e2 100644 --- a/devel/py-marshmallow/Makefile +++ b/devel/py-marshmallow/Makefile @@ -8,7 +8,7 @@ CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -MAINTAINER= feld@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Simplified object serialization for Python LICENSE= MIT diff --git a/devel/py-oslo.cache/Makefile b/devel/py-oslo.cache/Makefile index eb68869a121..a0bd901af75 100644 --- a/devel/py-oslo.cache/Makefile +++ b/devel/py-oslo.cache/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= oslo.cache -PORTVERSION= 1.30.1 +PORTVERSION= 1.31.0 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -21,8 +21,9 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}dogpile.cache>=0.6.2:devel/py-dogpile.cache@ ${PYTHON_PKGNAMEPREFIX}oslo.utils>=3.33.0:devel/py-oslo.utils@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}six>=1.10.0:devel/py-six@${PY_FLAVOR} -NO_ARCH= yes USES= python USE_PYTHON= autoplist concurrent distutils +NO_ARCH= yes + .include diff --git a/devel/py-oslo.cache/distinfo b/devel/py-oslo.cache/distinfo index b92b7f90cf8..219896e7735 100644 --- a/devel/py-oslo.cache/distinfo +++ b/devel/py-oslo.cache/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1525895079 -SHA256 (oslo.cache-1.30.1.tar.gz) = b9d5af6e5eba0a60526638c07c31d7fc20391e4e364a4f28f4802ce037de7981 -SIZE (oslo.cache-1.30.1.tar.gz) = 53406 +TIMESTAMP = 1538663013 +SHA256 (oslo.cache-1.31.0.tar.gz) = 44a781cc44fbd2525b31bd76c907f2e9e6f408f5a7c1d25641dc5db619afd85a +SIZE (oslo.cache-1.31.0.tar.gz) = 54215 diff --git a/devel/py-pid/Makefile b/devel/py-pid/Makefile index 511780fed0c..3911e6ecc74 100644 --- a/devel/py-pid/Makefile +++ b/devel/py-pid/Makefile @@ -7,7 +7,7 @@ CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -MAINTAINER= feld@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Pidfile management for Python LICENSE= APACHE20 diff --git a/devel/py-pybind11/Makefile b/devel/py-pybind11/Makefile index f7e42588eab..cffcb3b5ccb 100644 --- a/devel/py-pybind11/Makefile +++ b/devel/py-pybind11/Makefile @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= pybind11 -DISTVERSION= 2.2.1 -PORTREVISION= 1 +DISTVERSION= 2.2.4 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/devel/py-pybind11/distinfo b/devel/py-pybind11/distinfo index a38a9ef00b1..4407890db02 100644 --- a/devel/py-pybind11/distinfo +++ b/devel/py-pybind11/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1508993967 -SHA256 (pybind11-2.2.1.tar.gz) = a96a924fae6e2721efbf24f47561284fd1ea0b655619a8621c4423036183b824 -SIZE (pybind11-2.2.1.tar.gz) = 130770 +TIMESTAMP = 1538887825 +SHA256 (pybind11-2.2.4.tar.gz) = 642abbbd2948ed5af28e69adfae1535347c7aa9eb0cdab130e20e1f198f8e1cf +SIZE (pybind11-2.2.4.tar.gz) = 133197 diff --git a/devel/py-pyechonest/Makefile b/devel/py-pyechonest/Makefile index 45bbcbb3b66..31828d0a30a 100644 --- a/devel/py-pyechonest/Makefile +++ b/devel/py-pyechonest/Makefile @@ -7,7 +7,7 @@ CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -MAINTAINER= feld@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Python interface to The Echo Nest APIs LICENSE= MIT diff --git a/devel/py-pyhashxx/Makefile b/devel/py-pyhashxx/Makefile index c8dc4f9069c..9f3081d4cf5 100644 --- a/devel/py-pyhashxx/Makefile +++ b/devel/py-pyhashxx/Makefile @@ -7,7 +7,7 @@ CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -MAINTAINER= feld@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Python wrapper for xxHash algorithm LICENSE= BSD2CLAUSE diff --git a/devel/py-pyparsing/Makefile b/devel/py-pyparsing/Makefile index 47c6124adf3..4b30564fac4 100644 --- a/devel/py-pyparsing/Makefile +++ b/devel/py-pyparsing/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= pyparsing -PORTVERSION= 2.2.1 +PORTVERSION= 2.2.2 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/devel/py-pyparsing/distinfo b/devel/py-pyparsing/distinfo index d0c7a56adef..ad6a141a037 100644 --- a/devel/py-pyparsing/distinfo +++ b/devel/py-pyparsing/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1537366407 -SHA256 (pyparsing-2.2.1.tar.gz) = f493ee323be1e94929416b3585eefcc04943115cecbaaa35a8c86d1a2368af19 -SIZE (pyparsing-2.2.1.tar.gz) = 56197 +TIMESTAMP = 1538663062 +SHA256 (pyparsing-2.2.2.tar.gz) = bc6c7146b91af3f567cf6daeaec360bc07d45ffec4cf5353f4d7a208ce7ca30a +SIZE (pyparsing-2.2.2.tar.gz) = 837646 diff --git a/devel/py-pyral/Makefile b/devel/py-pyral/Makefile index 8162fde97c6..1f26ba04b5e 100644 --- a/devel/py-pyral/Makefile +++ b/devel/py-pyral/Makefile @@ -7,7 +7,7 @@ CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -MAINTAINER= feld@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Rally REST Tookit for Python LICENSE= BSD3CLAUSE diff --git a/devel/py-pystorm/Makefile b/devel/py-pystorm/Makefile index 9edd18c0641..5747d34267c 100644 --- a/devel/py-pystorm/Makefile +++ b/devel/py-pystorm/Makefile @@ -8,7 +8,7 @@ CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -MAINTAINER= feld@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Battle-tested Apache Storm Multi-Lang implementation for Python LICENSE= APACHE20 diff --git a/devel/py-pytvmaze/Makefile b/devel/py-pytvmaze/Makefile index 27b78a13104..df5ba00c1d6 100644 --- a/devel/py-pytvmaze/Makefile +++ b/devel/py-pytvmaze/Makefile @@ -6,7 +6,7 @@ PORTVERSION= 1.5.1 CATEGORIES= devel python PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -MAINTAINER= feld@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Python interface to the TV Maze API USES= python diff --git a/devel/py-ruamel.ordereddict/Makefile b/devel/py-ruamel.ordereddict/Makefile index 80a8cdcd302..d12095e6956 100644 --- a/devel/py-ruamel.ordereddict/Makefile +++ b/devel/py-ruamel.ordereddict/Makefile @@ -8,7 +8,7 @@ CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -MAINTAINER= feld@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Python dict that keeps keys in insertion sorted order LICENSE= MIT diff --git a/devel/py-streamparse/Makefile b/devel/py-streamparse/Makefile index fbb3297acd9..385533a7335 100644 --- a/devel/py-streamparse/Makefile +++ b/devel/py-streamparse/Makefile @@ -8,7 +8,7 @@ CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -MAINTAINER= feld@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Python analysis of Apache Storm streams LICENSE= APACHE20 diff --git a/devel/py-tempora/Makefile b/devel/py-tempora/Makefile index f1e89119307..ba696c91111 100644 --- a/devel/py-tempora/Makefile +++ b/devel/py-tempora/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= tempora -PORTVERSION= 1.12 +PORTVERSION= 1.13 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -14,7 +14,8 @@ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}setuptools_scm>=1.15.0:devel/py-setuptools_scm@${PY_FLAVOR} -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytz>=0:devel/py-pytz@${PY_FLAVOR} \ +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}jaraco.functools>=1.20:devel/py-jaraco.functools@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pytz>=0:devel/py-pytz@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}six>=0:devel/py-six@${PY_FLAVOR} TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>=3.5:devel/py-pytest@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}pytest-sugar>=0.9.1:devel/py-pytest-sugar@${PY_FLAVOR} diff --git a/devel/py-tempora/distinfo b/devel/py-tempora/distinfo index c77b4cb0f3d..a452e480d43 100644 --- a/devel/py-tempora/distinfo +++ b/devel/py-tempora/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1532817190 -SHA256 (tempora-1.12.tar.gz) = 2b6dbb8402804840022e6f375bd86845e38eca5515e1c5c267ea137ee4f43978 -SIZE (tempora-1.12.tar.gz) = 15208 +TIMESTAMP = 1532975167 +SHA256 (tempora-1.13.tar.gz) = 4848df474c9d7ad9515fbeaadc88e48843176b4b90393652156ccff613bcaeb1 +SIZE (tempora-1.13.tar.gz) = 15956 diff --git a/devel/py-thriftpy/Makefile b/devel/py-thriftpy/Makefile index ac006383281..d92e41d405f 100644 --- a/devel/py-thriftpy/Makefile +++ b/devel/py-thriftpy/Makefile @@ -8,7 +8,7 @@ CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -MAINTAINER= feld@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Pure python implementation of Apache Thrift LICENSE= MIT diff --git a/devel/py-unpaddedbase64/Makefile b/devel/py-unpaddedbase64/Makefile index d055ccd2371..61b1700b796 100644 --- a/devel/py-unpaddedbase64/Makefile +++ b/devel/py-unpaddedbase64/Makefile @@ -7,7 +7,7 @@ DISTVERSIONPREFIX= v CATEGORIES= devel python PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -MAINTAINER= feld@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Unpadded Base64 LICENSE= APACHE20 diff --git a/devel/py-zkpython/Makefile b/devel/py-zkpython/Makefile index 47dcd886c77..cdb2a1dd4d6 100644 --- a/devel/py-zkpython/Makefile +++ b/devel/py-zkpython/Makefile @@ -7,7 +7,7 @@ CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -MAINTAINER= feld@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Python bindings to Apache Zookeeper LICENSE= APACHE20 diff --git a/devel/pybind11/Makefile b/devel/pybind11/Makefile index dcf5e0d9172..428c91251ba 100644 --- a/devel/pybind11/Makefile +++ b/devel/pybind11/Makefile @@ -2,8 +2,7 @@ PORTNAME= pybind11 DISTVERSIONPREFIX= v -DISTVERSION= 2.2.2 -PORTREVISION= 1 +DISTVERSION= 2.2.4 CATEGORIES= devel python MAINTAINER= yuri@FreeBSD.org diff --git a/devel/pybind11/distinfo b/devel/pybind11/distinfo index 3247b0c0774..b0d3cbac2cb 100644 --- a/devel/pybind11/distinfo +++ b/devel/pybind11/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1518204875 -SHA256 (pybind-pybind11-v2.2.2_GH0.tar.gz) = b639a2b2cbf1c467849660801c4665ffc1a4d0a9e153ae1996ed6f21c492064e -SIZE (pybind-pybind11-v2.2.2_GH0.tar.gz) = 545041 +TIMESTAMP = 1538887790 +SHA256 (pybind-pybind11-v2.2.4_GH0.tar.gz) = b69e83658513215b8d1443544d0549b7d231b9f201f6fc787a2b2218b408181e +SIZE (pybind-pybind11-v2.2.4_GH0.tar.gz) = 548404 diff --git a/devel/pydbus-common/Makefile b/devel/pydbus-common/Makefile index de42985662e..4aad1771d22 100644 --- a/devel/pydbus-common/Makefile +++ b/devel/pydbus-common/Makefile @@ -2,8 +2,8 @@ # $FreeBSD$ PORTNAME= dbus -PORTVERSION= 1.2.0 -PORTREVISION?= 2 +PORTVERSION= 1.2.8 +PORTREVISION?= 0 CATEGORIES= devel gnome python MASTER_SITES= http://dbus.freedesktop.org/releases/dbus-python/ PKGNAMEPREFIX?= py @@ -34,21 +34,17 @@ OPTIONS_SUB= yes OPTIONS_DEFINE= HTMLDOCS DOCS EXAMPLES HTMLDOCS_DESC= build html documentation HTMLDOCS_IMPLIES= DOCS -HTMLDOCS_CONFIGURE_OFF= --disable-html-docs -HTMLDOCS_BUILD_DEPENDS= rst2html:textproc/py-docutils +HTMLDOCS_CONFIGURE_ENABLE= documentation +HTMLDOCS_BUILD_DEPENDS= sphinx-build:textproc/py-sphinx -.include - -post-patch: -.if ! ${PORT_OPTIONS:MDOCS} +post-patch-DOCS-on: @${REINPLACE_CMD} -e 's|HEADERS install-dist_docDATA|HEADERS|g ; \ s|PYTHON install-nodist_docDATA|PYTHON|g' \ ${WRKSRC}/Makefile.in -.endif do-install: ${MKDIR} ${STAGEDIR}${PREFIX}/include/dbus-1.0/dbus/ - ${INSTALL_DATA} ${WRKSRC}/include/dbus-python.h \ + ${INSTALL_DATA} ${WRKSRC}/include/dbus/dbus-python.h \ ${STAGEDIR}${PREFIX}/include/dbus-1.0/dbus/dbus-python.h ${INSTALL_DATA} ${WRKSRC}/dbus-python.pc \ ${STAGEDIR}${PREFIX}/libdata/pkgconfig/dbus-python.pc @@ -61,16 +57,15 @@ do-install: ${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${DOCSDIR} && \ ${INSTALL_DATA} ${WRKSRC}/NEWS ${STAGEDIR}${DOCSDIR} -.if ${PORT_OPTIONS:MHTMLDOCS} - ${INSTALL_DATA} ${WRKSRC}/*.html ${STAGEDIR}${DOCSDIR} && \ - ${INSTALL_DATA} ${WRKSRC}/doc/*.html ${STAGEDIR}${DOCSDIR} -.endif +do-install-HTMLDOCS-on: + ${INSTALL_DATA} ${WRKSRC}/doc/_build/*.html ${STAGEDIR}${DOCSDIR} + .else # slave is defined LIB_DEPENDS+= libdbus-glib-1.so:devel/dbus-glib RUN_DEPENDS+= pydbus-common>=0:devel/pydbus-common USE_LDCONFIG= yes USES+= python -USE_PYTHON= flavors +USE_PYTHON= flavors py3kplist post-install: @${RM} -r ${STAGEDIR}${PREFIX}/include/dbus-1.0 \ diff --git a/devel/pydbus-common/distinfo b/devel/pydbus-common/distinfo index 97612f4e39b..ab85f141ccd 100644 --- a/devel/pydbus-common/distinfo +++ b/devel/pydbus-common/distinfo @@ -1,2 +1,3 @@ -SHA256 (dbus-python-1.2.0.tar.gz) = e12c6c8b2bf3a9302f75166952cbe41d6b38c3441bbc6767dbd498942316c6df -SIZE (dbus-python-1.2.0.tar.gz) = 602426 +TIMESTAMP = 1529840338 +SHA256 (dbus-python-1.2.8.tar.gz) = abf12bbb765e300bf8e2a1b2f32f85949eab06998dbda127952c31cb63957b6f +SIZE (dbus-python-1.2.8.tar.gz) = 787426 diff --git a/devel/pydbus-common/pkg-plist b/devel/pydbus-common/pkg-plist index 0ee3f4e1cd6..3cec0831098 100644 --- a/devel/pydbus-common/pkg-plist +++ b/devel/pydbus-common/pkg-plist @@ -1,20 +1,41 @@ include/dbus-1.0/dbus/dbus-python.h libdata/pkgconfig/dbus-python.pc -%%PORTDOCS%%%%DOCSDIR%%/API_CHANGES.txt %%HTMLDOCS%%%%PORTDOCS%%%%DOCSDIR%%/API_CHANGES.html -%%PORTDOCS%%%%DOCSDIR%%/HACKING.txt +%%PORTDOCS%%%%DOCSDIR%%/API_CHANGES.txt %%HTMLDOCS%%%%PORTDOCS%%%%DOCSDIR%%/HACKING.html +%%PORTDOCS%%%%DOCSDIR%%/HACKING.txt %%PORTDOCS%%%%DOCSDIR%%/NEWS -%%HTMLDOCS%%%%PORTDOCS%%%%DOCSDIR%%/NEWS.html -%%PORTDOCS%%%%DOCSDIR%%/PY3PORT.txt %%HTMLDOCS%%%%PORTDOCS%%%%DOCSDIR%%/PY3PORT.html +%%PORTDOCS%%%%DOCSDIR%%/PY3PORT.txt %%PORTDOCS%%%%DOCSDIR%%/README -%%HTMLDOCS%%%%PORTDOCS%%%%DOCSDIR%%/README.html -%%PORTDOCS%%%%DOCSDIR%%/tutorial.txt +%%HTMLDOCS%%%%PORTDOCS%%%%DOCSDIR%%/dbus.bus.html +%%HTMLDOCS%%%%PORTDOCS%%%%DOCSDIR%%/dbus.connection.html +%%HTMLDOCS%%%%PORTDOCS%%%%DOCSDIR%%/dbus.decorators.html +%%HTMLDOCS%%%%PORTDOCS%%%%DOCSDIR%%/dbus.exceptions.html +%%HTMLDOCS%%%%PORTDOCS%%%%DOCSDIR%%/dbus.gi_service.html +%%HTMLDOCS%%%%PORTDOCS%%%%DOCSDIR%%/dbus.glib.html +%%HTMLDOCS%%%%PORTDOCS%%%%DOCSDIR%%/dbus.gobject_service.html +%%HTMLDOCS%%%%PORTDOCS%%%%DOCSDIR%%/dbus.html +%%HTMLDOCS%%%%PORTDOCS%%%%DOCSDIR%%/dbus.lowlevel.html +%%HTMLDOCS%%%%PORTDOCS%%%%DOCSDIR%%/dbus.mainloop.html +%%HTMLDOCS%%%%PORTDOCS%%%%DOCSDIR%%/dbus.proxies.html +%%HTMLDOCS%%%%PORTDOCS%%%%DOCSDIR%%/dbus.server.html +%%HTMLDOCS%%%%PORTDOCS%%%%DOCSDIR%%/dbus.service.html +%%HTMLDOCS%%%%PORTDOCS%%%%DOCSDIR%%/dbus.types.html +%%HTMLDOCS%%%%PORTDOCS%%%%DOCSDIR%%/genindex.html +%%HTMLDOCS%%%%PORTDOCS%%%%DOCSDIR%%/index.html +%%HTMLDOCS%%%%PORTDOCS%%%%DOCSDIR%%/news.html +%%HTMLDOCS%%%%PORTDOCS%%%%DOCSDIR%%/py-modindex.html +%%HTMLDOCS%%%%PORTDOCS%%%%DOCSDIR%%/search.html %%HTMLDOCS%%%%PORTDOCS%%%%DOCSDIR%%/tutorial.html +%%PORTDOCS%%%%DOCSDIR%%/tutorial.txt %%PORTEXAMPLES%%%%EXAMPLESDIR%%/example-async-client.py %%PORTEXAMPLES%%%%EXAMPLESDIR%%/example-client.py %%PORTEXAMPLES%%%%EXAMPLESDIR%%/example-service.py %%PORTEXAMPLES%%%%EXAMPLESDIR%%/example-signal-emitter.py %%PORTEXAMPLES%%%%EXAMPLESDIR%%/example-signal-recipient.py +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gconf-proxy-client.py +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gconf-proxy-service2.py %%PORTEXAMPLES%%%%EXAMPLESDIR%%/list-system-services.py +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/unix-fd-client.py +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/unix-fd-service.py diff --git a/devel/qjson/Makefile b/devel/qjson/Makefile index 6232cced2ce..4ec9d900090 100644 --- a/devel/qjson/Makefile +++ b/devel/qjson/Makefile @@ -26,7 +26,7 @@ USE_QT= corelib moc_build qmake_build rcc_build uic_build CMAKE_ON= QT4_BUILD PLIST_SUB= QT5="@comment " NO_QT5="" . else -USES+= qt:5 +USES+= compiler:c++11-lang qt:5 USE_QT= core buildtools_build qmake_build CMAKE_OFF= QT4_BUILD PLIST_SUB= QT5="" NO_QT5="@comment " diff --git a/devel/raylib/pkg-descr b/devel/raylib/pkg-descr index 2260b67ba75..6dee1393f02 100644 --- a/devel/raylib/pkg-descr +++ b/devel/raylib/pkg-descr @@ -2,7 +2,7 @@ Raylib is a programming library to learn videogames programming. It doesn't have a fancy interface, has no visual helpers, and no auto-debugging. It is created based on the believe that just coding is the best way to learn. -Raylib is highly inspired by Borland BGI graphics lib and by XNA framework. +Raylib is highly inspired by Borland BGI graphics lib and by XNA framework. Allegro and SDL have also been used as reference. -WWW: http://www.raylib.com/ +WWW: https://www.raylib.com/ diff --git a/devel/riscv64-gcc/Makefile b/devel/riscv64-gcc/Makefile index 91abb672c04..38cc7f6adce 100644 --- a/devel/riscv64-gcc/Makefile +++ b/devel/riscv64-gcc/Makefile @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= gcc -PORTVERSION= 7.2.0 -PORTREVISION= 5 +PORTVERSION= 8.1.0 CATEGORIES= devel PKGNAMEPREFIX= riscv64- @@ -25,7 +24,7 @@ USE_LDCONFIG= yes USE_GITHUB= yes GH_ACCOUNT= freebsd-riscv GH_PROJECT= riscv-gcc -GH_TAGNAME= 49b9ee4 +GH_TAGNAME= 7a5a908 GCC_TARGET= ${PKGNAMEPREFIX}unknown-${OPSYS:tl}${OSREL} diff --git a/devel/riscv64-gcc/distinfo b/devel/riscv64-gcc/distinfo index e07593d8c52..9440a59d5d3 100644 --- a/devel/riscv64-gcc/distinfo +++ b/devel/riscv64-gcc/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1530494043 -SHA256 (freebsd-riscv-riscv-gcc-7.2.0-49b9ee4_GH0.tar.gz) = f0f859b0455399f743345ff40720622056ccd9b291942320d52a6274e9f498d3 -SIZE (freebsd-riscv-riscv-gcc-7.2.0-49b9ee4_GH0.tar.gz) = 97775307 +TIMESTAMP = 1538090164 +SHA256 (freebsd-riscv-riscv-gcc-8.1.0-7a5a908_GH0.tar.gz) = 8c23b101d42bdb25b3863d397d532a2ea8af87974a9ba1f2ac359eaf738e9358 +SIZE (freebsd-riscv-riscv-gcc-8.1.0-7a5a908_GH0.tar.gz) = 102349687 diff --git a/devel/riscv64-gcc/pkg-plist b/devel/riscv64-gcc/pkg-plist index fcbc60821f1..45004ae6bdd 100644 --- a/devel/riscv64-gcc/pkg-plist +++ b/devel/riscv64-gcc/pkg-plist @@ -71,22 +71,18 @@ lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/cfgrtl.h lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/cgraph.h lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/chkp-builtins.def lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/cif-code.def -lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/cilk-builtins.def -lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/cilk.h -lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/cilkplus.def lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/collect-utils.h lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/collect2-aix.h lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/collect2.h +lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/color-macros.h lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/conditions.h lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/config.h -lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/config/dbxelf.h lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/config/elfos.h lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/config/freebsd-spec.h lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/config/freebsd-stdint.h lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/config/freebsd.h lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/config/initfini-array.h lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/config/riscv/freebsd.h -lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/config/riscv/freebsd64.h lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/config/riscv/riscv-opts.h lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/config/riscv/riscv-protos.h lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/config/riscv/riscv.h @@ -99,6 +95,7 @@ lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/cp/cp-tree.def lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/cp/cp-tree.h lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/cp/cxx-pretty-print.h lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/cp/name-lookup.h +lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/cp/operators.def lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/cp/type-utils.h lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/cppbuiltin.h lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/cppdefault.h @@ -135,6 +132,7 @@ lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/expmed.h lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/expr.h lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/fibonacci_heap.h lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/file-find.h +lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/file-prefix-map.h lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/filenames.h lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/fixed-value.h lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/flag-types.h @@ -164,6 +162,8 @@ lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/gimple-low.h lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/gimple-match.h lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/gimple-predict.h lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/gimple-pretty-print.h +lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/gimple-ssa-evrp-analyze.h +lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/gimple-ssa-warn-restrict.h lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/gimple-ssa.h lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/gimple-streamer.h lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/gimple-walk.h @@ -205,15 +205,20 @@ lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/insn-addr.h lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/insn-codes.h lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/insn-constants.h lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/insn-flags.h +lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/insn-modes-inline.h lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/insn-modes.h lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/insn-notes.def +lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/int-vector-builder.h lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/internal-fn.def lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/internal-fn.h lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/intl.h lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/ipa-chkp.h +lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/ipa-fnsummary.h lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/ipa-icf-gimple.h lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/ipa-icf.h lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/ipa-inline.h +lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/ipa-param-manipulation.h +lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/ipa-predicate.h lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/ipa-prop.h lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/ipa-ref.h lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/ipa-reference.h @@ -252,6 +257,7 @@ lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/omp-general.h lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/omp-grid.h lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/omp-low.h lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/omp-offload.h +lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/omp-simd-clone.h lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/optabs-libfuncs.h lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/optabs-query.h lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/optabs-tree.h @@ -274,12 +280,15 @@ lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/plugin-api.h lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/plugin-version.h lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/plugin.def lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/plugin.h +lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/poly-int-types.h +lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/poly-int.h lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/predict.def lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/predict.h lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/prefix.h lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/pretty-print.h lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/print-rtl.h lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/print-tree.h +lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/profile-count.h lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/profile.h lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/read-md.h lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/read-rtl-function.h @@ -300,15 +309,16 @@ lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/rtl.def lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/rtl.h lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/rtlhash.h lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/rtlhooks-def.h +lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/rtx-vector-builder.h lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/run-rtl-passes.h lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/safe-ctype.h lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/sanitizer.def lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/sbitmap.h lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/sched-int.h -lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/sdbout.h lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/sel-sched-dump.h lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/sel-sched-ir.h lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/sel-sched.h +lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/selftest-diagnostic.h lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/selftest-rtl.h lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/selftest.h lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/sese.h @@ -377,6 +387,7 @@ lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/tree-ssa-address.h lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/tree-ssa-alias.h lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/tree-ssa-ccp.h lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/tree-ssa-coalesce.h +lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/tree-ssa-dce.h lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/tree-ssa-dom.h lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/tree-ssa-live.h lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/tree-ssa-loop-ivopts.h @@ -387,14 +398,15 @@ lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/tree-ssa-operands.h lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/tree-ssa-propagate.h lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/tree-ssa-sccvn.h lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/tree-ssa-scopedtables.h +lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/tree-ssa-strlen.h lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/tree-ssa-ter.h -lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/tree-ssa-threadbackward.h lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/tree-ssa-threadedge.h lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/tree-ssa-threadupdate.h lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/tree-ssa.h lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/tree-ssanames.h lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/tree-stdarg.h lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/tree-streamer.h +lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/tree-vector-builder.h lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/tree-vectorizer.h lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/tree-vrp.h lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/tree.def @@ -408,10 +420,14 @@ lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/ubsan.h lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/valtrack.h lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/value-prof.h lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/varasm.h +lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/vec-perm-indices.h lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/vec.h +lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/vector-builder.h lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/version.h lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/vmsdbg.h +lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/vr-values.h lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/vtable-verify.h +lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/wide-int-bitmask.h lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/wide-int-print.h lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/wide-int.h lib/gcc/%%GCC_TARGET%%/%%GCC_VERSION%%/plugin/include/xcoff.h diff --git a/devel/rubygem-aws-sdk-core/Makefile b/devel/rubygem-aws-sdk-core/Makefile index 14b35af7ba2..0bb3918d889 100644 --- a/devel/rubygem-aws-sdk-core/Makefile +++ b/devel/rubygem-aws-sdk-core/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= aws-sdk-core -DISTVERSION= 2.11.138 +DISTVERSION= 2.11.140 CATEGORIES= devel rubygems MASTER_SITES= RG diff --git a/devel/rubygem-aws-sdk-core/distinfo b/devel/rubygem-aws-sdk-core/distinfo index e7f8da7a701..87d20e7f45d 100644 --- a/devel/rubygem-aws-sdk-core/distinfo +++ b/devel/rubygem-aws-sdk-core/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1538160023 -SHA256 (rubygem/aws-sdk-core-2.11.138.gem) = a5fb4c8d2d3bf26e8fd74dbad7e500cc9a1a3f1b0877551ab7295e88b760188a -SIZE (rubygem/aws-sdk-core-2.11.138.gem) = 1360384 +TIMESTAMP = 1538591960 +SHA256 (rubygem/aws-sdk-core-2.11.140.gem) = db56ee1897a91599eaa524f9540c14fd241c178a971c94752a77c216b757f9bc +SIZE (rubygem/aws-sdk-core-2.11.140.gem) = 1361408 diff --git a/devel/rubygem-aws-sdk-resources/Makefile b/devel/rubygem-aws-sdk-resources/Makefile index 2f9ab78bfbf..7ae880e8ad0 100644 --- a/devel/rubygem-aws-sdk-resources/Makefile +++ b/devel/rubygem-aws-sdk-resources/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= aws-sdk-resources -DISTVERSION= 2.11.138 +DISTVERSION= 2.11.140 CATEGORIES= devel rubygems MASTER_SITES= RG diff --git a/devel/rubygem-aws-sdk-resources/distinfo b/devel/rubygem-aws-sdk-resources/distinfo index 45a1ce01687..c92434fe10b 100644 --- a/devel/rubygem-aws-sdk-resources/distinfo +++ b/devel/rubygem-aws-sdk-resources/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1538160043 -SHA256 (rubygem/aws-sdk-resources-2.11.138.gem) = 712f1671aeb7be9b801810257feece33c7273a868bf0ba4640b3ce6462fdbc19 -SIZE (rubygem/aws-sdk-resources-2.11.138.gem) = 48640 +TIMESTAMP = 1538591982 +SHA256 (rubygem/aws-sdk-resources-2.11.140.gem) = a0f012f68735c6edf09eaba07d2cdfddafc508238cf129b8c57019ba460b7a40 +SIZE (rubygem/aws-sdk-resources-2.11.140.gem) = 48640 diff --git a/devel/rubygem-aws-sdk/Makefile b/devel/rubygem-aws-sdk/Makefile index 27b60abab15..d71c1224367 100644 --- a/devel/rubygem-aws-sdk/Makefile +++ b/devel/rubygem-aws-sdk/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= aws-sdk -DISTVERSION= 2.11.138 +DISTVERSION= 2.11.140 CATEGORIES= devel rubygems MASTER_SITES= RG diff --git a/devel/rubygem-aws-sdk/distinfo b/devel/rubygem-aws-sdk/distinfo index 18de728fbea..f99c37ec975 100644 --- a/devel/rubygem-aws-sdk/distinfo +++ b/devel/rubygem-aws-sdk/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1538160063 -SHA256 (rubygem/aws-sdk-2.11.138.gem) = a7d2c33d3cf4e99b602bfed8dc72d11c6cd827a31e1db5a999c1695ef1e1eb4d -SIZE (rubygem/aws-sdk-2.11.138.gem) = 4608 +TIMESTAMP = 1538592003 +SHA256 (rubygem/aws-sdk-2.11.140.gem) = 952f86c0fa9fee3fb45c96d3c9291ebf6678e88699657c5623dc1e1d9334470e +SIZE (rubygem/aws-sdk-2.11.140.gem) = 4608 diff --git a/devel/rubygem-c21e/Makefile b/devel/rubygem-c21e/Makefile new file mode 100644 index 00000000000..387e5c4392b --- /dev/null +++ b/devel/rubygem-c21e/Makefile @@ -0,0 +1,20 @@ +# Created by: Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= c21e +PORTVERSION= 1.1.5 +CATEGORIES= devel rubygems +MASTER_SITES= RG + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Run cross-platform executables + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +USES= gem +USE_RUBY= yes + +NO_ARCH= yes + +.include diff --git a/devel/rubygem-c21e/distinfo b/devel/rubygem-c21e/distinfo new file mode 100644 index 00000000000..c341741757b --- /dev/null +++ b/devel/rubygem-c21e/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1538665520 +SHA256 (rubygem/c21e-1.1.5.gem) = 2af4d8b6cd7ad64b4b233afed7ae60a6a7482dbf609af8c1441bbf6f3b2a7034 +SIZE (rubygem/c21e-1.1.5.gem) = 6656 diff --git a/devel/rubygem-c21e/pkg-descr b/devel/rubygem-c21e/pkg-descr new file mode 100644 index 00000000000..b2606b6e4d0 --- /dev/null +++ b/devel/rubygem-c21e/pkg-descr @@ -0,0 +1,11 @@ +Cross Platform Executable (c21e) + +This is a library for running cross-platform executables. + +Cucumber relies executables that are cross-compiled for various CPUs and +operating systems, resulting in 20 or so executables that are bundled inside +packages (gems, jars, npm modules etc). + +This library picks the right executable to run for the current CPU/OS. + +WWW: https://github.com/cucumber/c21e-ruby diff --git a/devel/rubygem-cucumber-formatter-dots/Makefile b/devel/rubygem-cucumber-formatter-dots/Makefile new file mode 100644 index 00000000000..d40f19671b7 --- /dev/null +++ b/devel/rubygem-cucumber-formatter-dots/Makefile @@ -0,0 +1,21 @@ +# Created by: Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= cucumber-formatter-dots +PORTVERSION= 1.1.0 +CATEGORIES= devel rubygems +MASTER_SITES= RG + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Dots formatter for Cucumber + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= rubygem-cucumber-messages>=0:devel/rubygem-cucumber-messages \ + rubygem-os>=0:devel/rubygem-os + +USES= gem +USE_RUBY= yes + +.include diff --git a/devel/rubygem-cucumber-formatter-dots/distinfo b/devel/rubygem-cucumber-formatter-dots/distinfo new file mode 100644 index 00000000000..dfdd9c2fcb6 --- /dev/null +++ b/devel/rubygem-cucumber-formatter-dots/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1538664254 +SHA256 (rubygem/cucumber-formatter-dots-1.1.0.gem) = 6dc8db4f49e9ff077816fa1757a575fc3d85e992e2427dd26e2bc800da425c75 +SIZE (rubygem/cucumber-formatter-dots-1.1.0.gem) = 38839296 diff --git a/devel/rubygem-cucumber-formatter-dots/pkg-descr b/devel/rubygem-cucumber-formatter-dots/pkg-descr new file mode 100644 index 00000000000..a02b85981a8 --- /dev/null +++ b/devel/rubygem-cucumber-formatter-dots/pkg-descr @@ -0,0 +1,5 @@ +Cucumber formatters are command line programs that read results from STDIN. They +are designed to work with any Cucumber implementation that supports Cucumber +Messages. + +WWW: https://github.com/cucumber/dots-formatter-ruby diff --git a/devel/rubygem-cucumber-messages/Makefile b/devel/rubygem-cucumber-messages/Makefile new file mode 100644 index 00000000000..640a1cea389 --- /dev/null +++ b/devel/rubygem-cucumber-messages/Makefile @@ -0,0 +1,22 @@ +# Created by: Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= cucumber-messages +PORTVERSION= 1.1.2 +CATEGORIES= devel rubygems +MASTER_SITES= RG + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Protocol Buffer messages for Cucumber + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= rubygem-google-protobuf>=3.6.1:devel/rubygem-google-protobuf + +USES= gem +USE_RUBY= yes + +NO_ARCH= yes + +.include diff --git a/devel/rubygem-cucumber-messages/distinfo b/devel/rubygem-cucumber-messages/distinfo new file mode 100644 index 00000000000..82776125fd3 --- /dev/null +++ b/devel/rubygem-cucumber-messages/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1538663518 +SHA256 (rubygem/cucumber-messages-1.1.2.gem) = 6203bb78adcaef97e7d41aab672dde59de1fd709e5b89f5018ab22947d1439e5 +SIZE (rubygem/cucumber-messages-1.1.2.gem) = 11776 diff --git a/devel/rubygem-cucumber-messages/pkg-descr b/devel/rubygem-cucumber-messages/pkg-descr new file mode 100644 index 00000000000..2e26ff640a9 --- /dev/null +++ b/devel/rubygem-cucumber-messages/pkg-descr @@ -0,0 +1,6 @@ +Cucumber Messages is a message protocol based on Protocol Buffers. It allows one +process to construct message objects and send them to another process. Protobuf +takes care of serialising those messages to a binary format, and deserialise +them on the other end. + +WWW: https://github.com/cucumber/cucumber-messages-ruby diff --git a/devel/rubygem-tty-prompt/Makefile b/devel/rubygem-tty-prompt/Makefile index 16bf674296c..d616bc8e324 100644 --- a/devel/rubygem-tty-prompt/Makefile +++ b/devel/rubygem-tty-prompt/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= tty-prompt -PORTVERSION= 0.17.0 +PORTVERSION= 0.17.1 CATEGORIES= devel rubygems MASTER_SITES= RG @@ -18,8 +18,9 @@ RUN_DEPENDS= rubygem-necromancer>=0.4.0:devel/rubygem-necromancer \ rubygem-tty-cursor>=0.6.0:devel/rubygem-tty-cursor \ rubygem-tty-reader>=0.4.0:devel/rubygem-tty-reader -NO_ARCH= yes -USE_RUBY= yes USES= gem +USE_RUBY= yes + +NO_ARCH= yes .include diff --git a/devel/rubygem-tty-prompt/distinfo b/devel/rubygem-tty-prompt/distinfo index 86fede3363e..c92fe647537 100644 --- a/devel/rubygem-tty-prompt/distinfo +++ b/devel/rubygem-tty-prompt/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1533567087 -SHA256 (rubygem/tty-prompt-0.17.0.gem) = 4bab345f9d991fc5f31626dab5d572c4f13e8cab1ded2355401f90ee87be73e3 -SIZE (rubygem/tty-prompt-0.17.0.gem) = 61440 +TIMESTAMP = 1538663236 +SHA256 (rubygem/tty-prompt-0.17.1.gem) = e0cc919edf3bf60f15fd6f277278a430a38d36815e2e5a70e657a827cabfd92e +SIZE (rubygem/tty-prompt-0.17.1.gem) = 65536 diff --git a/devel/rust-cbindgen/Makefile b/devel/rust-cbindgen/Makefile index 0981ca11075..50176cc7eb6 100644 --- a/devel/rust-cbindgen/Makefile +++ b/devel/rust-cbindgen/Makefile @@ -2,8 +2,7 @@ PORTNAME= cbindgen DISTVERSIONPREFIX= v -DISTVERSION= 0.6.3 -PORTREVISION= 1 +DISTVERSION= 0.6.4 CATEGORIES= devel PKGNAMEPREFIX= rust- @@ -31,8 +30,9 @@ CARGO_CRATES= ansi_term-0.11.0 \ itoa-0.4.1 \ libc-0.2.41 \ log-0.4.1 \ + proc-macro2-0.3.8 \ proc-macro2-0.4.4 \ - quote-0.3.15 \ + quote-0.5.2 \ quote-0.6.3 \ rand-0.5.5 \ rand_core-0.2.1 \ @@ -40,19 +40,16 @@ CARGO_CRATES= ansi_term-0.11.0 \ redox_termios-0.1.1 \ remove_dir_all-0.5.1 \ serde-1.0.64 \ - serde_derive-1.0.21 \ - serde_derive_internals-0.17.0 \ + serde_derive-1.0.58 \ serde_json-1.0.19 \ strsim-0.7.0 \ - syn-0.11.11 \ + syn-0.13.11 \ syn-0.14.1 \ - synom-0.11.3 \ tempfile-3.0.3 \ termion-1.5.1 \ textwrap-0.9.0 \ toml-0.4.6 \ unicode-width-0.1.5 \ - unicode-xid-0.0.4 \ unicode-xid-0.1.0 \ vec_map-0.8.1 \ winapi-0.3.4 \ diff --git a/devel/rust-cbindgen/distinfo b/devel/rust-cbindgen/distinfo index cef896bb3d6..33997a2936d 100644 --- a/devel/rust-cbindgen/distinfo +++ b/devel/rust-cbindgen/distinfo @@ -1,4 +1,4 @@ -TIMESTAMP = 1535498923 +TIMESTAMP = 1538679190 SHA256 (rust/crates/ansi_term-0.11.0.tar.gz) = ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b SIZE (rust/crates/ansi_term-0.11.0.tar.gz) = 17087 SHA256 (rust/crates/atty-0.2.10.tar.gz) = 2fc4a1aa4c24c0718a250f0681885c1af91419d242f29eb8f2ab28502d80dbd1 @@ -23,10 +23,12 @@ SHA256 (rust/crates/libc-0.2.41.tar.gz) = ac8ebf8343a981e2fa97042b14768f02ed3e1d SIZE (rust/crates/libc-0.2.41.tar.gz) = 333728 SHA256 (rust/crates/log-0.4.1.tar.gz) = 89f010e843f2b1a31dbd316b3b8d443758bc634bed37aabade59c686d644e0a2 SIZE (rust/crates/log-0.4.1.tar.gz) = 20731 +SHA256 (rust/crates/proc-macro2-0.3.8.tar.gz) = 1b06e2f335f48d24442b35a19df506a835fb3547bc3c06ef27340da9acf5cae7 +SIZE (rust/crates/proc-macro2-0.3.8.tar.gz) = 24412 SHA256 (rust/crates/proc-macro2-0.4.4.tar.gz) = 1fa93823f53cfd0f5ac117b189aed6cfdfb2cfc0a9d82e956dd7927595ed7d46 SIZE (rust/crates/proc-macro2-0.4.4.tar.gz) = 28564 -SHA256 (rust/crates/quote-0.3.15.tar.gz) = 7a6e920b65c65f10b2ae65c831a81a073a89edd28c7cce89475bff467ab4167a -SIZE (rust/crates/quote-0.3.15.tar.gz) = 12041 +SHA256 (rust/crates/quote-0.5.2.tar.gz) = 9949cfe66888ffe1d53e6ec9d9f3b70714083854be20fd5e271b232a017401e8 +SIZE (rust/crates/quote-0.5.2.tar.gz) = 14982 SHA256 (rust/crates/quote-0.6.3.tar.gz) = e44651a0dc4cdd99f71c83b561e221f714912d11af1a4dff0631f923d53af035 SIZE (rust/crates/quote-0.6.3.tar.gz) = 14154 SHA256 (rust/crates/rand-0.5.5.tar.gz) = e464cd887e869cddcae8792a4ee31d23c7edd516700695608f5b98c67ee0131c @@ -41,20 +43,16 @@ SHA256 (rust/crates/remove_dir_all-0.5.1.tar.gz) = 3488ba1b9a2084d38645c4c08276a SIZE (rust/crates/remove_dir_all-0.5.1.tar.gz) = 8726 SHA256 (rust/crates/serde-1.0.64.tar.gz) = fba5be06346c5200249c8c8ca4ccba4a09e8747c71c16e420bd359a0db4d8f91 SIZE (rust/crates/serde-1.0.64.tar.gz) = 71347 -SHA256 (rust/crates/serde_derive-1.0.21.tar.gz) = 652bc323d694dc925829725ec6c890156d8e70ae5202919869cb00fe2eff3788 -SIZE (rust/crates/serde_derive-1.0.21.tar.gz) = 25544 -SHA256 (rust/crates/serde_derive_internals-0.17.0.tar.gz) = 32f1926285523b2db55df263d2aa4eb69ddcfa7a7eade6430323637866b513ab -SIZE (rust/crates/serde_derive_internals-0.17.0.tar.gz) = 17674 +SHA256 (rust/crates/serde_derive-1.0.58.tar.gz) = ac38f51a52a556cd17545798e29536885fb1a3fa63d6399f5ef650f4a7d35901 +SIZE (rust/crates/serde_derive-1.0.58.tar.gz) = 45146 SHA256 (rust/crates/serde_json-1.0.19.tar.gz) = 93aee34bb692dde91e602871bc792dd319e489c7308cdbbe5f27cf27c64280f5 SIZE (rust/crates/serde_json-1.0.19.tar.gz) = 65039 SHA256 (rust/crates/strsim-0.7.0.tar.gz) = bb4f380125926a99e52bc279241539c018323fab05ad6368b56f93d9369ff550 SIZE (rust/crates/strsim-0.7.0.tar.gz) = 8435 -SHA256 (rust/crates/syn-0.11.11.tar.gz) = d3b891b9015c88c576343b9b3e41c2c11a51c219ef067b264bd9c8aa9b441dad -SIZE (rust/crates/syn-0.11.11.tar.gz) = 63309 +SHA256 (rust/crates/syn-0.13.11.tar.gz) = 14f9bf6292f3a61d2c716723fdb789a41bbe104168e6f496dc6497e531ea1b9b +SIZE (rust/crates/syn-0.13.11.tar.gz) = 134240 SHA256 (rust/crates/syn-0.14.1.tar.gz) = 6dfd71b2be5a58ee30a6f8ea355ba8290d397131c00dfa55c3d34e6e13db5101 SIZE (rust/crates/syn-0.14.1.tar.gz) = 133459 -SHA256 (rust/crates/synom-0.11.3.tar.gz) = a393066ed9010ebaed60b9eafa373d4b1baac186dd7e008555b0f702b51945b6 -SIZE (rust/crates/synom-0.11.3.tar.gz) = 17120 SHA256 (rust/crates/tempfile-3.0.3.tar.gz) = c4b103c6d08d323b92ff42c8ce62abcd83ca8efa7fd5bf7927efefec75f58c76 SIZE (rust/crates/tempfile-3.0.3.tar.gz) = 20806 SHA256 (rust/crates/termion-1.5.1.tar.gz) = 689a3bdfaab439fd92bc87df5c4c78417d3cbe537487274e9b0b2dce76e92096 @@ -65,8 +63,6 @@ SHA256 (rust/crates/toml-0.4.6.tar.gz) = a0263c6c02c4db6c8f7681f9fd35e90de799ebd SIZE (rust/crates/toml-0.4.6.tar.gz) = 40203 SHA256 (rust/crates/unicode-width-0.1.5.tar.gz) = 882386231c45df4700b275c7ff55b6f3698780a650026380e72dabe76fa46526 SIZE (rust/crates/unicode-width-0.1.5.tar.gz) = 15761 -SHA256 (rust/crates/unicode-xid-0.0.4.tar.gz) = 8c1f860d7d29cf02cb2f3f359fd35991af3d30bac52c57d265a3c461074cb4dc -SIZE (rust/crates/unicode-xid-0.0.4.tar.gz) = 16034 SHA256 (rust/crates/unicode-xid-0.1.0.tar.gz) = fc72304796d0818e357ead4e000d19c9c174ab23dc11093ac919054d20a6a7fc SIZE (rust/crates/unicode-xid-0.1.0.tar.gz) = 16000 SHA256 (rust/crates/vec_map-0.8.1.tar.gz) = 05c78687fb1a80548ae3250346c3db86a80a7cdd77bda190189f2d0a0987c81a @@ -77,5 +73,5 @@ SHA256 (rust/crates/winapi-i686-pc-windows-gnu-0.4.0.tar.gz) = ac3b87c63620426dd SIZE (rust/crates/winapi-i686-pc-windows-gnu-0.4.0.tar.gz) = 2918815 SHA256 (rust/crates/winapi-x86_64-pc-windows-gnu-0.4.0.tar.gz) = 712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f SIZE (rust/crates/winapi-x86_64-pc-windows-gnu-0.4.0.tar.gz) = 2947998 -SHA256 (eqrion-cbindgen-v0.6.3_GH0.tar.gz) = ca1cc7d269dad01dc330f936125dcc56000b2ac61e46737db57a1caba44c860f -SIZE (eqrion-cbindgen-v0.6.3_GH0.tar.gz) = 83699 +SHA256 (eqrion-cbindgen-v0.6.4_GH0.tar.gz) = 058a6b31c3559a20edec5ec383cbdd8b0a5ed0914579fddedd4d0454aaefd300 +SIZE (eqrion-cbindgen-v0.6.4_GH0.tar.gz) = 85437 diff --git a/devel/sccache/Makefile b/devel/sccache/Makefile new file mode 100644 index 00000000000..6486505068d --- /dev/null +++ b/devel/sccache/Makefile @@ -0,0 +1,290 @@ +# $FreeBSD$ + +PORTNAME= sccache +DISTVERSION= 2.8.0.alpha0 +CATEGORIES= devel + +MAINTAINER= pizzamig@FreeBSD.org +COMMENT= Like ccache with cloud storage support + +LICENSE= APACHE20 +LICENSE_FILE= ${WRKSRC}/LICENSE + +USES= cargo + +USE_GITHUB= yes +GH_ACCOUNT= mozilla +GH_TAGNAME= dda88a6 + +OPTIONS_DEFINE= DOCS +OPTIONS_DEFAULT= DOCS + +PLIST_FILES= bin/sccache +PORTDOCS= README.md + +CARGO_FEATURES= all +CARGO_CRATES= adler32-1.0.3 \ + aho-corasick-0.6.8 \ + ansi_term-0.11.0 \ + ar-0.6.0 \ + arraydeque-0.4.3 \ + arrayvec-0.4.7 \ + ascii-0.7.1 \ + ascii-0.8.7 \ + assert_cmd-0.9.1 \ + atty-0.2.11 \ + backtrace-0.3.9 \ + backtrace-sys-0.1.24 \ + base64-0.9.2 \ + bincode-0.8.0 \ + bincode-1.0.1 \ + bitflags-0.9.1 \ + bitflags-1.0.4 \ + buf_redux-0.6.3 \ + bufstream-0.1.3 \ + build_const-0.2.1 \ + byteorder-1.2.6 \ + bytes-0.4.9 \ + case-0.1.0 \ + cc-1.0.23 \ + cfg-if-0.1.5 \ + chrono-0.4.6 \ + chunked_transfer-0.3.1 \ + clap-2.32.0 \ + cloudabi-0.0.3 \ + combine-3.5.1 \ + conhash-0.4.0 \ + core-foundation-0.2.3 \ + core-foundation-sys-0.2.3 \ + crc-1.8.1 \ + crossbeam-deque-0.6.1 \ + crossbeam-epoch-0.5.2 \ + crossbeam-utils-0.5.0 \ + daemonize-0.3.0 \ + derive-error-0.0.3 \ + difference-2.0.0 \ + directories-1.0.1 \ + dtoa-0.4.3 \ + either-1.5.0 \ + encoding-0.2.33 \ + encoding-index-japanese-1.20141219.5 \ + encoding-index-korean-1.20141219.5 \ + encoding-index-simpchinese-1.20141219.5 \ + encoding-index-singlebyte-1.20141219.5 \ + encoding-index-tradchinese-1.20141219.5 \ + encoding_index_tests-0.1.4 \ + encoding_rs-0.8.6 \ + env_logger-0.5.13 \ + error-chain-0.12.0 \ + escargot-0.3.1 \ + failure-0.1.2 \ + failure_derive-0.1.2 \ + filetime-0.1.15 \ + filetime-0.2.1 \ + flate2-1.0.2 \ + float-cmp-0.4.0 \ + foreign-types-0.3.2 \ + foreign-types-shared-0.1.1 \ + fuchsia-zircon-0.3.3 \ + fuchsia-zircon-sys-0.3.3 \ + futures-0.1.23 \ + futures-cpupool-0.1.8 \ + gcc-0.3.54 \ + getopts-0.2.18 \ + httparse-1.3.2 \ + humantime-1.1.1 \ + hyper-0.11.27 \ + hyper-tls-0.1.4 \ + idna-0.1.5 \ + iovec-0.1.2 \ + itertools-0.7.8 \ + itoa-0.4.2 \ + jobserver-0.1.11 \ + jsonwebtoken-5.0.0 \ + kernel32-sys-0.2.2 \ + language-tags-0.2.2 \ + lazy_static-0.2.11 \ + lazy_static-1.1.0 \ + lazycell-0.6.0 \ + libc-0.2.43 \ + libflate-0.1.16 \ + libmount-0.1.11 \ + linked-hash-map-0.2.1 \ + local-encoding-0.2.0 \ + lock_api-0.1.3 \ + log-0.3.9 \ + log-0.4.4 \ + matches-0.1.8 \ + md5-0.3.8 \ + memcached-rs-0.3.0 \ + memchr-1.0.2 \ + memchr-2.0.2 \ + memoffset-0.2.1 \ + mime-0.2.6 \ + mime-0.3.9 \ + mime_guess-1.8.6 \ + mime_guess-2.0.0-alpha.6 \ + miniz_oxide-0.1.3 \ + miniz_oxide_c_api-0.1.3 \ + mio-0.6.15 \ + mio-named-pipes-0.1.6 \ + mio-uds-0.6.6 \ + miow-0.2.1 \ + miow-0.3.3 \ + msdos_time-0.1.6 \ + multipart-0.13.6 \ + native-tls-0.1.5 \ + net2-0.2.33 \ + nix-0.11.0 \ + nodrop-0.1.12 \ + normalize-line-endings-0.2.2 \ + num-integer-0.1.39 \ + num-traits-0.1.43 \ + num-traits-0.2.5 \ + num_cpus-1.8.0 \ + number_prefix-0.2.8 \ + openssl-0.10.11 \ + openssl-0.9.24 \ + openssl-sys-0.9.35 \ + owning_ref-0.3.3 \ + parking_lot-0.6.4 \ + parking_lot_core-0.3.0 \ + percent-encoding-1.0.1 \ + phf-0.7.23 \ + phf_codegen-0.7.23 \ + phf_generator-0.7.23 \ + phf_shared-0.7.23 \ + pkg-config-0.3.14 \ + podio-0.1.6 \ + predicates-0.9.0 \ + predicates-core-0.9.0 \ + predicates-tree-0.9.0 \ + proc-macro2-0.4.15 \ + pulldown-cmark-0.0.3 \ + quick-error-1.2.2 \ + quote-0.3.15 \ + quote-0.6.8 \ + rand-0.3.22 \ + rand-0.4.3 \ + rand-0.5.5 \ + rand_core-0.2.1 \ + redis-0.9.0 \ + redox_syscall-0.1.40 \ + redox_termios-0.1.1 \ + regex-1.0.4 \ + regex-syntax-0.6.2 \ + relay-0.1.1 \ + remove_dir_all-0.5.1 \ + reqwest-0.8.8 \ + retry-0.4.0 \ + ring-0.13.2 \ + rouille-2.2.0 \ + rust-crypto-0.2.36 \ + rustc-demangle-0.1.9 \ + rustc-serialize-0.3.24 \ + ryu-0.2.6 \ + safemem-0.2.0 \ + same-file-0.1.3 \ + schannel-0.1.13 \ + scoped-tls-0.1.2 \ + scopeguard-0.3.3 \ + security-framework-0.1.16 \ + security-framework-sys-0.1.16 \ + semver-0.9.0 \ + semver-parser-0.7.0 \ + serde-1.0.75 \ + serde_derive-1.0.75 \ + serde_json-1.0.26 \ + serde_urlencoded-0.5.3 \ + sha1-0.6.0 \ + siphasher-0.2.3 \ + skeptic-0.4.0 \ + slab-0.3.0 \ + slab-0.4.1 \ + smallvec-0.2.1 \ + smallvec-0.6.5 \ + socket2-0.3.8 \ + stable_deref_trait-1.1.1 \ + strip-ansi-escapes-0.1.0 \ + strsim-0.7.0 \ + syn-0.11.11 \ + syn-0.14.9 \ + synom-0.11.3 \ + synstructure-0.9.0 \ + take-0.1.0 \ + tar-0.4.16 \ + tempdir-0.3.7 \ + tempfile-3.0.3 \ + term-0.5.1 \ + termcolor-1.0.2 \ + termion-1.5.1 \ + textwrap-0.10.0 \ + thread_local-0.3.6 \ + threadpool-1.7.1 \ + time-0.1.40 \ + tiny_http-0.6.0 \ + tokio-0.1.8 \ + tokio-codec-0.1.0 \ + tokio-core-0.1.17 \ + tokio-current-thread-0.1.1 \ + tokio-executor-0.1.4 \ + tokio-fs-0.1.3 \ + tokio-io-0.1.8 \ + tokio-process-0.2.2 \ + tokio-proto-0.1.1 \ + tokio-reactor-0.1.5 \ + tokio-serde-0.1.0 \ + tokio-serde-bincode-0.1.1 \ + tokio-service-0.1.0 \ + tokio-signal-0.2.4 \ + tokio-tcp-0.1.1 \ + tokio-threadpool-0.1.6 \ + tokio-timer-0.2.6 \ + tokio-tls-0.1.4 \ + tokio-udp-0.1.2 \ + tokio-uds-0.2.1 \ + toml-0.4.6 \ + treeline-0.1.0 \ + try-lock-0.1.0 \ + twoway-0.1.8 \ + ucd-util-0.1.1 \ + unicase-1.4.2 \ + unicase-2.1.0 \ + unicode-bidi-0.3.4 \ + unicode-normalization-0.1.7 \ + unicode-width-0.1.5 \ + unicode-xid-0.0.4 \ + unicode-xid-0.1.0 \ + unix_socket-0.5.0 \ + unreachable-1.0.0 \ + untrusted-0.6.2 \ + url-1.7.1 \ + utf8-ranges-1.0.1 \ + utf8parse-0.1.0 \ + uuid-0.6.5 \ + vcpkg-0.2.6 \ + vec_map-0.8.1 \ + version_check-0.1.4 \ + void-1.0.2 \ + vte-0.3.3 \ + walkdir-1.0.7 \ + want-0.0.4 \ + which-2.0.0 \ + winapi-0.2.8 \ + winapi-0.3.5 \ + winapi-build-0.1.1 \ + winapi-i686-pc-windows-gnu-0.4.0 \ + winapi-util-0.1.1 \ + winapi-x86_64-pc-windows-gnu-0.4.0 \ + wincolor-1.0.1 \ + ws2_32-sys-0.2.1 \ + xattr-0.2.2 \ + zip-0.4.2 + +do-install-DOCS-on: + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/README.md ${STAGEDIR}${DOCSDIR} + +post-install: + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/sccache +.include diff --git a/devel/sccache/distinfo b/devel/sccache/distinfo new file mode 100644 index 00000000000..3168794b1eb --- /dev/null +++ b/devel/sccache/distinfo @@ -0,0 +1,517 @@ +TIMESTAMP = 1538657949 +SHA256 (rust/crates/adler32-1.0.3.tar.gz) = 7e522997b529f05601e05166c07ed17789691f562762c7f3b987263d2dedee5c +SIZE (rust/crates/adler32-1.0.3.tar.gz) = 5734 +SHA256 (rust/crates/aho-corasick-0.6.8.tar.gz) = 68f56c7353e5a9547cbd76ed90f7bb5ffc3ba09d4ea9bd1d8c06c8b1142eeb5a +SIZE (rust/crates/aho-corasick-0.6.8.tar.gz) = 26786 +SHA256 (rust/crates/ansi_term-0.11.0.tar.gz) = ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b +SIZE (rust/crates/ansi_term-0.11.0.tar.gz) = 17087 +SHA256 (rust/crates/ar-0.6.0.tar.gz) = 095515608290b62ac2427084f9ac3cfeb5dc76067f7d94564db9db1c46cc0a85 +SIZE (rust/crates/ar-0.6.0.tar.gz) = 12606 +SHA256 (rust/crates/arraydeque-0.4.3.tar.gz) = e300327073b806ffc81fccb228b2d4131ac7ef1b1a015f7b0c399c7f886cacc6 +SIZE (rust/crates/arraydeque-0.4.3.tar.gz) = 17884 +SHA256 (rust/crates/arrayvec-0.4.7.tar.gz) = a1e964f9e24d588183fcb43503abda40d288c8657dfc27311516ce2f05675aef +SIZE (rust/crates/arrayvec-0.4.7.tar.gz) = 22946 +SHA256 (rust/crates/ascii-0.7.1.tar.gz) = 3ae7d751998c189c1d4468cf0a39bb2eae052a9c58d50ebb3b9591ee3813ad50 +SIZE (rust/crates/ascii-0.7.1.tar.gz) = 13273 +SHA256 (rust/crates/ascii-0.8.7.tar.gz) = 97be891acc47ca214468e09425d02cef3af2c94d0d82081cd02061f996802f14 +SIZE (rust/crates/ascii-0.8.7.tar.gz) = 23773 +SHA256 (rust/crates/assert_cmd-0.9.1.tar.gz) = c5b60c276f334145cf2cec09c5bb6f63523f078c0c850909f66bca8f933cf809 +SIZE (rust/crates/assert_cmd-0.9.1.tar.gz) = 17844 +SHA256 (rust/crates/atty-0.2.11.tar.gz) = 9a7d5b8723950951411ee34d271d99dddcc2035a16ab25310ea2c8cfd4369652 +SIZE (rust/crates/atty-0.2.11.tar.gz) = 5916 +SHA256 (rust/crates/backtrace-0.3.9.tar.gz) = 89a47830402e9981c5c41223151efcced65a0510c13097c769cede7efb34782a +SIZE (rust/crates/backtrace-0.3.9.tar.gz) = 31054 +SHA256 (rust/crates/backtrace-sys-0.1.24.tar.gz) = c66d56ac8dabd07f6aacdaf633f4b8262f5b3601a810a0dcddffd5c22c69daa0 +SIZE (rust/crates/backtrace-sys-0.1.24.tar.gz) = 522332 +SHA256 (rust/crates/base64-0.9.2.tar.gz) = 85415d2594767338a74a30c1d370b2f3262ec1b4ed2d7bba5b3faf4de40467d9 +SIZE (rust/crates/base64-0.9.2.tar.gz) = 37967 +SHA256 (rust/crates/bincode-0.8.0.tar.gz) = e103c8b299b28a9c6990458b7013dc4a8356a9b854c51b9883241f5866fac36e +SIZE (rust/crates/bincode-0.8.0.tar.gz) = 71632 +SHA256 (rust/crates/bincode-1.0.1.tar.gz) = 9f2fb9e29e72fd6bc12071533d5dc7664cb01480c59406f656d7ac25c7bd8ff7 +SIZE (rust/crates/bincode-1.0.1.tar.gz) = 14071 +SHA256 (rust/crates/bitflags-0.9.1.tar.gz) = 4efd02e230a02e18f92fc2735f44597385ed02ad8f831e7c1c1156ee5e1ab3a5 +SIZE (rust/crates/bitflags-0.9.1.tar.gz) = 12406 +SHA256 (rust/crates/bitflags-1.0.4.tar.gz) = 228047a76f468627ca71776ecdebd732a3423081fcf5125585bcd7c49886ce12 +SIZE (rust/crates/bitflags-1.0.4.tar.gz) = 15282 +SHA256 (rust/crates/buf_redux-0.6.3.tar.gz) = b9279646319ff816b05fb5897883ece50d7d854d12b59992683d4f8a71b0f949 +SIZE (rust/crates/buf_redux-0.6.3.tar.gz) = 16159 +SHA256 (rust/crates/bufstream-0.1.3.tar.gz) = f2f382711e76b9de6c744cc00d0497baba02fb00a787f088c879f01d09468e32 +SIZE (rust/crates/bufstream-0.1.3.tar.gz) = 8375 +SHA256 (rust/crates/build_const-0.2.1.tar.gz) = 39092a32794787acd8525ee150305ff051b0aa6cc2abaf193924f5ab05425f39 +SIZE (rust/crates/build_const-0.2.1.tar.gz) = 4499 +SHA256 (rust/crates/byteorder-1.2.6.tar.gz) = 90492c5858dd7d2e78691cfb89f90d273a2800fc11d98f60786e5d87e2f83781 +SIZE (rust/crates/byteorder-1.2.6.tar.gz) = 19985 +SHA256 (rust/crates/bytes-0.4.9.tar.gz) = e178b8e0e239e844b083d5a0d4a156b2654e67f9f80144d48398fcd736a24fb8 +SIZE (rust/crates/bytes-0.4.9.tar.gz) = 44400 +SHA256 (rust/crates/case-0.1.0.tar.gz) = e88b166b48e29667f5443df64df3c61dc07dc2b1a0b0d231800e07f09a33ecc1 +SIZE (rust/crates/case-0.1.0.tar.gz) = 2629 +SHA256 (rust/crates/cc-1.0.23.tar.gz) = c37f0efaa4b9b001fa6f02d4b644dee4af97d3414df07c51e3e4f015f3a3e131 +SIZE (rust/crates/cc-1.0.23.tar.gz) = 43116 +SHA256 (rust/crates/cfg-if-0.1.5.tar.gz) = 0c4e7bb64a8ebb0d856483e1e682ea3422f883c5f5615a90d51a2c82fe87fdd3 +SIZE (rust/crates/cfg-if-0.1.5.tar.gz) = 7363 +SHA256 (rust/crates/chrono-0.4.6.tar.gz) = 45912881121cb26fad7c38c17ba7daa18764771836b34fab7d3fbd93ed633878 +SIZE (rust/crates/chrono-0.4.6.tar.gz) = 133108 +SHA256 (rust/crates/chunked_transfer-0.3.1.tar.gz) = 498d20a7aaf62625b9bf26e637cf7736417cde1d0c99f1d04d1170229a85cf87 +SIZE (rust/crates/chunked_transfer-0.3.1.tar.gz) = 7730 +SHA256 (rust/crates/clap-2.32.0.tar.gz) = b957d88f4b6a63b9d70d5f454ac8011819c6efa7727858f458ab71c756ce2d3e +SIZE (rust/crates/clap-2.32.0.tar.gz) = 196073 +SHA256 (rust/crates/cloudabi-0.0.3.tar.gz) = ddfc5b9aa5d4507acaf872de71051dfd0e309860e88966e1051e462a077aac4f +SIZE (rust/crates/cloudabi-0.0.3.tar.gz) = 22156 +SHA256 (rust/crates/combine-3.5.1.tar.gz) = 7e67be864b6450c26fdb9242dee53a46fb9648d0b1a65521a6a1947b54fa011e +SIZE (rust/crates/combine-3.5.1.tar.gz) = 100195 +SHA256 (rust/crates/conhash-0.4.0.tar.gz) = 99d6364d028778d0d98b6014fa5882da377cd10d3492b7734d266a428e9b1fca +SIZE (rust/crates/conhash-0.4.0.tar.gz) = 3548 +SHA256 (rust/crates/core-foundation-0.2.3.tar.gz) = 25bfd746d203017f7d5cbd31ee5d8e17f94b6521c7af77ece6c9e4b2d4b16c67 +SIZE (rust/crates/core-foundation-0.2.3.tar.gz) = 8323 +SHA256 (rust/crates/core-foundation-sys-0.2.3.tar.gz) = 065a5d7ffdcbc8fa145d6f0746f3555025b9097a9e9cda59f7467abae670c78d +SIZE (rust/crates/core-foundation-sys-0.2.3.tar.gz) = 9128 +SHA256 (rust/crates/crc-1.8.1.tar.gz) = d663548de7f5cca343f1e0a48d14dcfb0e9eb4e079ec58883b7251539fa10aeb +SIZE (rust/crates/crc-1.8.1.tar.gz) = 9114 +SHA256 (rust/crates/crossbeam-deque-0.6.1.tar.gz) = 3486aefc4c0487b9cb52372c97df0a48b8c249514af1ee99703bf70d2f2ceda1 +SIZE (rust/crates/crossbeam-deque-0.6.1.tar.gz) = 14343 +SHA256 (rust/crates/crossbeam-epoch-0.5.2.tar.gz) = 30fecfcac6abfef8771151f8be4abc9e4edc112c2bcb233314cafde2680536e9 +SIZE (rust/crates/crossbeam-epoch-0.5.2.tar.gz) = 34136 +SHA256 (rust/crates/crossbeam-utils-0.5.0.tar.gz) = 677d453a17e8bd2b913fa38e8b9cf04bcdbb5be790aa294f2389661d72036015 +SIZE (rust/crates/crossbeam-utils-0.5.0.tar.gz) = 12162 +SHA256 (rust/crates/daemonize-0.3.0.tar.gz) = 4093d27eb267d617f03c2ee25d4c3ca525b89a76154001954a11984508ffbde5 +SIZE (rust/crates/daemonize-0.3.0.tar.gz) = 14236 +SHA256 (rust/crates/derive-error-0.0.3.tar.gz) = 629f1bb3abce791912ca85a24676fff54464f7deb122906adabc90fb96e876d3 +SIZE (rust/crates/derive-error-0.0.3.tar.gz) = 8406 +SHA256 (rust/crates/difference-2.0.0.tar.gz) = 524cbf6897b527295dff137cec09ecf3a05f4fddffd7dfcd1585403449e74198 +SIZE (rust/crates/difference-2.0.0.tar.gz) = 147616 +SHA256 (rust/crates/directories-1.0.1.tar.gz) = b106a38a9bf6c763c6c2e2c3332ab7635da453a68a6babca776386b3b287d338 +SIZE (rust/crates/directories-1.0.1.tar.gz) = 15608 +SHA256 (rust/crates/dtoa-0.4.3.tar.gz) = 6d301140eb411af13d3115f9a562c85cc6b541ade9dfa314132244aaee7489dd +SIZE (rust/crates/dtoa-0.4.3.tar.gz) = 14456 +SHA256 (rust/crates/either-1.5.0.tar.gz) = 3be565ca5c557d7f59e7cfcf1844f9e3033650c929c6566f511e8005f205c1d0 +SIZE (rust/crates/either-1.5.0.tar.gz) = 10900 +SHA256 (rust/crates/encoding-0.2.33.tar.gz) = 6b0d943856b990d12d3b55b359144ff341533e516d94098b1d3fc1ac666d36ec +SIZE (rust/crates/encoding-0.2.33.tar.gz) = 88798 +SHA256 (rust/crates/encoding-index-japanese-1.20141219.5.tar.gz) = 04e8b2ff42e9a05335dbf8b5c6f7567e5591d0d916ccef4e0b1710d32a0d0c91 +SIZE (rust/crates/encoding-index-japanese-1.20141219.5.tar.gz) = 91495 +SHA256 (rust/crates/encoding-index-korean-1.20141219.5.tar.gz) = 4dc33fb8e6bcba213fe2f14275f0963fd16f0a02c878e3095ecfdf5bee529d81 +SIZE (rust/crates/encoding-index-korean-1.20141219.5.tar.gz) = 103230 +SHA256 (rust/crates/encoding-index-simpchinese-1.20141219.5.tar.gz) = d87a7194909b9118fc707194baa434a4e3b0fb6a5a757c73c3adb07aa25031f7 +SIZE (rust/crates/encoding-index-simpchinese-1.20141219.5.tar.gz) = 130962 +SHA256 (rust/crates/encoding-index-singlebyte-1.20141219.5.tar.gz) = 3351d5acffb224af9ca265f435b859c7c01537c0849754d3db3fdf2bfe2ae84a +SIZE (rust/crates/encoding-index-singlebyte-1.20141219.5.tar.gz) = 14950 +SHA256 (rust/crates/encoding-index-tradchinese-1.20141219.5.tar.gz) = fd0e20d5688ce3cab59eb3ef3a2083a5c77bf496cb798dc6fcdb75f323890c18 +SIZE (rust/crates/encoding-index-tradchinese-1.20141219.5.tar.gz) = 120862 +SHA256 (rust/crates/encoding_index_tests-0.1.4.tar.gz) = a246d82be1c9d791c5dfde9a2bd045fc3cbba3fa2b11ad558f27d01712f00569 +SIZE (rust/crates/encoding_index_tests-0.1.4.tar.gz) = 1631 +SHA256 (rust/crates/encoding_rs-0.8.6.tar.gz) = 2a91912d6f37c6a8fef8a2316a862542d036f13c923ad518b5aca7bcaac7544c +SIZE (rust/crates/encoding_rs-0.8.6.tar.gz) = 1242813 +SHA256 (rust/crates/env_logger-0.5.13.tar.gz) = 15b0a4d2e39f8420210be8b27eeda28029729e2fd4291019455016c348240c38 +SIZE (rust/crates/env_logger-0.5.13.tar.gz) = 25275 +SHA256 (rust/crates/error-chain-0.12.0.tar.gz) = 07e791d3be96241c77c43846b665ef1384606da2cd2a48730abe606a12906e02 +SIZE (rust/crates/error-chain-0.12.0.tar.gz) = 27056 +SHA256 (rust/crates/escargot-0.3.1.tar.gz) = 19db1f7e74438642a5018cdf263bb1325b2e792f02dd0a3ca6d6c0f0d7b1d5a5 +SIZE (rust/crates/escargot-0.3.1.tar.gz) = 12708 +SHA256 (rust/crates/failure-0.1.2.tar.gz) = 7efb22686e4a466b1ec1a15c2898f91fa9cb340452496dca654032de20ff95b9 +SIZE (rust/crates/failure-0.1.2.tar.gz) = 31820 +SHA256 (rust/crates/failure_derive-0.1.2.tar.gz) = 946d0e98a50d9831f5d589038d2ca7f8f455b1c21028c0db0e84116a12696426 +SIZE (rust/crates/failure_derive-0.1.2.tar.gz) = 4326 +SHA256 (rust/crates/filetime-0.1.15.tar.gz) = 714653f3e34871534de23771ac7b26e999651a0a228f47beb324dfdf1dd4b10f +SIZE (rust/crates/filetime-0.1.15.tar.gz) = 11211 +SHA256 (rust/crates/filetime-0.2.1.tar.gz) = da4b9849e77b13195302c174324b5ba73eec9b236b24c221a61000daefb95c5f +SIZE (rust/crates/filetime-0.2.1.tar.gz) = 11797 +SHA256 (rust/crates/flate2-1.0.2.tar.gz) = 37847f133aae7acf82bb9577ccd8bda241df836787642654286e79679826a54b +SIZE (rust/crates/flate2-1.0.2.tar.gz) = 65153 +SHA256 (rust/crates/float-cmp-0.4.0.tar.gz) = 134a8fa843d80a51a5b77d36d42bc2def9edcb0262c914861d08129fd1926600 +SIZE (rust/crates/float-cmp-0.4.0.tar.gz) = 8774 +SHA256 (rust/crates/foreign-types-0.3.2.tar.gz) = f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1 +SIZE (rust/crates/foreign-types-0.3.2.tar.gz) = 7504 +SHA256 (rust/crates/foreign-types-shared-0.1.1.tar.gz) = 00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b +SIZE (rust/crates/foreign-types-shared-0.1.1.tar.gz) = 5672 +SHA256 (rust/crates/fuchsia-zircon-0.3.3.tar.gz) = 2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82 +SIZE (rust/crates/fuchsia-zircon-0.3.3.tar.gz) = 22565 +SHA256 (rust/crates/fuchsia-zircon-sys-0.3.3.tar.gz) = 3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7 +SIZE (rust/crates/fuchsia-zircon-sys-0.3.3.tar.gz) = 7191 +SHA256 (rust/crates/futures-0.1.23.tar.gz) = 884dbe32a6ae4cd7da5c6db9b78114449df9953b8d490c9d7e1b51720b922c62 +SIZE (rust/crates/futures-0.1.23.tar.gz) = 156185 +SHA256 (rust/crates/futures-cpupool-0.1.8.tar.gz) = ab90cde24b3319636588d0c35fe03b1333857621051837ed769faefb4c2162e4 +SIZE (rust/crates/futures-cpupool-0.1.8.tar.gz) = 10583 +SHA256 (rust/crates/gcc-0.3.54.tar.gz) = 5e33ec290da0d127825013597dbdfc28bee4964690c7ce1166cbc2a7bd08b1bb +SIZE (rust/crates/gcc-0.3.54.tar.gz) = 37248 +SHA256 (rust/crates/getopts-0.2.18.tar.gz) = 0a7292d30132fb5424b354f5dc02512a86e4c516fe544bb7a25e7f266951b797 +SIZE (rust/crates/getopts-0.2.18.tar.gz) = 18416 +SHA256 (rust/crates/httparse-1.3.2.tar.gz) = 7b6288d7db100340ca12873fd4d08ad1b8f206a9457798dfb17c018a33fee540 +SIZE (rust/crates/httparse-1.3.2.tar.gz) = 19143 +SHA256 (rust/crates/humantime-1.1.1.tar.gz) = 0484fda3e7007f2a4a0d9c3a703ca38c71c54c55602ce4660c419fd32e188c9e +SIZE (rust/crates/humantime-1.1.1.tar.gz) = 16689 +SHA256 (rust/crates/hyper-0.11.27.tar.gz) = 34a590ca09d341e94cddf8e5af0bbccde205d5fbc2fa3c09dd67c7f85cea59d7 +SIZE (rust/crates/hyper-0.11.27.tar.gz) = 155617 +SHA256 (rust/crates/hyper-tls-0.1.4.tar.gz) = ffb1bd5e518d3065840ab315dbbf44e4420e5f7d80e2cb93fa6ffffc50522378 +SIZE (rust/crates/hyper-tls-0.1.4.tar.gz) = 8137 +SHA256 (rust/crates/idna-0.1.5.tar.gz) = 38f09e0f0b1fb55fdee1f17470ad800da77af5186a1a76c026b679358b7e844e +SIZE (rust/crates/idna-0.1.5.tar.gz) = 258735 +SHA256 (rust/crates/iovec-0.1.2.tar.gz) = dbe6e417e7d0975db6512b90796e8ce223145ac4e33c377e4a42882a0e88bb08 +SIZE (rust/crates/iovec-0.1.2.tar.gz) = 8565 +SHA256 (rust/crates/itertools-0.7.8.tar.gz) = f58856976b776fedd95533137617a02fb25719f40e7d9b01c7043cd65474f450 +SIZE (rust/crates/itertools-0.7.8.tar.gz) = 78831 +SHA256 (rust/crates/itoa-0.4.2.tar.gz) = 5adb58558dcd1d786b5f0bd15f3226ee23486e24b7b58304b60f64dc68e62606 +SIZE (rust/crates/itoa-0.4.2.tar.gz) = 10581 +SHA256 (rust/crates/jobserver-0.1.11.tar.gz) = 60af5f849e1981434e4a31d3d782c4774ae9b434ce55b101a96ecfd09147e8be +SIZE (rust/crates/jobserver-0.1.11.tar.gz) = 19687 +SHA256 (rust/crates/jsonwebtoken-5.0.0.tar.gz) = 3970fe7ab3ca69c22824dc98c3180f5a29fe74e627b7c74a60d6ae946e90f591 +SIZE (rust/crates/jsonwebtoken-5.0.0.tar.gz) = 16039 +SHA256 (rust/crates/kernel32-sys-0.2.2.tar.gz) = 7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d +SIZE (rust/crates/kernel32-sys-0.2.2.tar.gz) = 24537 +SHA256 (rust/crates/language-tags-0.2.2.tar.gz) = a91d884b6667cd606bb5a69aa0c99ba811a115fc68915e7056ec08a46e93199a +SIZE (rust/crates/language-tags-0.2.2.tar.gz) = 12754 +SHA256 (rust/crates/lazy_static-0.2.11.tar.gz) = 76f033c7ad61445c5b347c7382dd1237847eb1bce590fe50365dcb33d546be73 +SIZE (rust/crates/lazy_static-0.2.11.tar.gz) = 12361 +SHA256 (rust/crates/lazy_static-1.1.0.tar.gz) = ca488b89a5657b0a2ecd45b95609b3e848cf1755da332a0da46e2b2b1cb371a7 +SIZE (rust/crates/lazy_static-1.1.0.tar.gz) = 12317 +SHA256 (rust/crates/lazycell-0.6.0.tar.gz) = a6f08839bc70ef4a3fe1d566d5350f519c5912ea86be0df1740a7d247c7fc0ef +SIZE (rust/crates/lazycell-0.6.0.tar.gz) = 10099 +SHA256 (rust/crates/libc-0.2.43.tar.gz) = 76e3a3ef172f1a0b9a9ff0dd1491ae5e6c948b94479a3021819ba7d860c8645d +SIZE (rust/crates/libc-0.2.43.tar.gz) = 353810 +SHA256 (rust/crates/libflate-0.1.16.tar.gz) = 7d4b4c7aff5bac19b956f693d0ea0eade8066deb092186ae954fa6ba14daab98 +SIZE (rust/crates/libflate-0.1.16.tar.gz) = 33117 +SHA256 (rust/crates/libmount-0.1.11.tar.gz) = d9d45f88f32c57ebf3688ada41414dc700aab97ad58e26cbcda6af50da53559a +SIZE (rust/crates/libmount-0.1.11.tar.gz) = 20894 +SHA256 (rust/crates/linked-hash-map-0.2.1.tar.gz) = bda158e0dabeb97ee8a401f4d17e479d6b891a14de0bba79d5cc2d4d325b5e48 +SIZE (rust/crates/linked-hash-map-0.2.1.tar.gz) = 13672 +SHA256 (rust/crates/local-encoding-0.2.0.tar.gz) = e1ceb20f39ff7ae42f3ff9795f3986b1daad821caaa1e1732a0944103a5a1a66 +SIZE (rust/crates/local-encoding-0.2.0.tar.gz) = 10531 +SHA256 (rust/crates/lock_api-0.1.3.tar.gz) = 949826a5ccf18c1b3a7c3d57692778d21768b79e46eb9dd07bfc4c2160036c54 +SIZE (rust/crates/lock_api-0.1.3.tar.gz) = 12167 +SHA256 (rust/crates/log-0.3.9.tar.gz) = e19e8d5c34a3e0e2223db8e060f9e8264aeeb5c5fc64a4ee9965c062211c024b +SIZE (rust/crates/log-0.3.9.tar.gz) = 16686 +SHA256 (rust/crates/log-0.4.4.tar.gz) = cba860f648db8e6f269df990180c2217f333472b4a6e901e97446858487971e2 +SIZE (rust/crates/log-0.4.4.tar.gz) = 22031 +SHA256 (rust/crates/matches-0.1.8.tar.gz) = 7ffc5c5338469d4d3ea17d269fa8ea3512ad247247c30bd2df69e68309ed0a08 +SIZE (rust/crates/matches-0.1.8.tar.gz) = 2216 +SHA256 (rust/crates/md5-0.3.8.tar.gz) = 79c56d6a0b07f9e19282511c83fc5b086364cbae4ba8c7d5f190c3d9b0425a48 +SIZE (rust/crates/md5-0.3.8.tar.gz) = 6177 +SHA256 (rust/crates/memcached-rs-0.3.0.tar.gz) = 0f45690519137679de66b2bdb60e37a0d4f17adde980930a05eef66929394f73 +SIZE (rust/crates/memcached-rs-0.3.0.tar.gz) = 19015 +SHA256 (rust/crates/memchr-1.0.2.tar.gz) = 148fab2e51b4f1cfc66da2a7c32981d1d3c083a803978268bb11fe4b86925e7a +SIZE (rust/crates/memchr-1.0.2.tar.gz) = 8639 +SHA256 (rust/crates/memchr-2.0.2.tar.gz) = a3b4142ab8738a78c51896f704f83c11df047ff1bda9a92a661aa6361552d93d +SIZE (rust/crates/memchr-2.0.2.tar.gz) = 10092 +SHA256 (rust/crates/memoffset-0.2.1.tar.gz) = 0f9dc261e2b62d7a622bf416ea3c5245cdd5d9a7fcc428c0d06804dfce1775b3 +SIZE (rust/crates/memoffset-0.2.1.tar.gz) = 4618 +SHA256 (rust/crates/mime-0.2.6.tar.gz) = ba626b8a6de5da682e1caa06bdb42a335aee5a84db8e5046a3e8ab17ba0a3ae0 +SIZE (rust/crates/mime-0.2.6.tar.gz) = 6719 +SHA256 (rust/crates/mime-0.3.9.tar.gz) = 4b082692d3f6cf41b453af73839ce3dfc212c4411cbb2441dff80a716e38bd79 +SIZE (rust/crates/mime-0.3.9.tar.gz) = 14685 +SHA256 (rust/crates/mime_guess-1.8.6.tar.gz) = 2d4c0961143b8efdcfa29c3ae63281601b446a4a668165454b6c90f8024954c5 +SIZE (rust/crates/mime_guess-1.8.6.tar.gz) = 17437 +SHA256 (rust/crates/mime_guess-2.0.0-alpha.6.tar.gz) = 30de2e4613efcba1ec63d8133f344076952090c122992a903359be5a4f99c3ed +SIZE (rust/crates/mime_guess-2.0.0-alpha.6.tar.gz) = 17579 +SHA256 (rust/crates/miniz_oxide-0.1.3.tar.gz) = 9ba430291c9d6cedae28bcd2d49d1c32fc57d60cd49086646c5dd5673a870eb5 +SIZE (rust/crates/miniz_oxide-0.1.3.tar.gz) = 48669 +SHA256 (rust/crates/miniz_oxide_c_api-0.1.3.tar.gz) = 5a5b8234d6103ebfba71e29786da4608540f862de5ce980a1c94f86a40ca0d51 +SIZE (rust/crates/miniz_oxide_c_api-0.1.3.tar.gz) = 166029 +SHA256 (rust/crates/mio-0.6.15.tar.gz) = 4fcfcb32d63961fb6f367bfd5d21e4600b92cd310f71f9dca25acae196eb1560 +SIZE (rust/crates/mio-0.6.15.tar.gz) = 129497 +SHA256 (rust/crates/mio-named-pipes-0.1.6.tar.gz) = f5e374eff525ce1c5b7687c4cef63943e7686524a387933ad27ca7ec43779cb3 +SIZE (rust/crates/mio-named-pipes-0.1.6.tar.gz) = 14766 +SHA256 (rust/crates/mio-uds-0.6.6.tar.gz) = 84c7b5caa3a118a6e34dbac36504503b1e8dc5835e833306b9d6af0e05929f79 +SIZE (rust/crates/mio-uds-0.6.6.tar.gz) = 14449 +SHA256 (rust/crates/miow-0.2.1.tar.gz) = 8c1f2f3b1cf331de6896aabf6e9d55dca90356cc9960cca7eaaf408a355ae919 +SIZE (rust/crates/miow-0.2.1.tar.gz) = 21133 +SHA256 (rust/crates/miow-0.3.3.tar.gz) = 396aa0f2003d7df8395cb93e09871561ccc3e785f0acb369170e8cc74ddf9226 +SIZE (rust/crates/miow-0.3.3.tar.gz) = 22850 +SHA256 (rust/crates/msdos_time-0.1.6.tar.gz) = aad9dfe950c057b1bfe9c1f2aa51583a8468ef2a5baba2ebbe06d775efeb7729 +SIZE (rust/crates/msdos_time-0.1.6.tar.gz) = 8445 +SHA256 (rust/crates/multipart-0.13.6.tar.gz) = 92f54eb45230c3aa20864ccf0c277eeaeadcf5e437e91731db498dbf7fbe0ec6 +SIZE (rust/crates/multipart-0.13.6.tar.gz) = 46966 +SHA256 (rust/crates/native-tls-0.1.5.tar.gz) = f74dbadc8b43df7864539cedb7bc91345e532fdd913cfdc23ad94f4d2d40fbc0 +SIZE (rust/crates/native-tls-0.1.5.tar.gz) = 24838 +SHA256 (rust/crates/net2-0.2.33.tar.gz) = 42550d9fb7b6684a6d404d9fa7250c2eb2646df731d1c06afc06dcee9e1bcf88 +SIZE (rust/crates/net2-0.2.33.tar.gz) = 20936 +SHA256 (rust/crates/nix-0.11.0.tar.gz) = d37e713a259ff641624b6cb20e3b12b2952313ba36b6823c0f16e6cfd9e5de17 +SIZE (rust/crates/nix-0.11.0.tar.gz) = 162039 +SHA256 (rust/crates/nodrop-0.1.12.tar.gz) = 9a2228dca57108069a5262f2ed8bd2e82496d2e074a06d1ccc7ce1687b6ae0a2 +SIZE (rust/crates/nodrop-0.1.12.tar.gz) = 3033 +SHA256 (rust/crates/normalize-line-endings-0.2.2.tar.gz) = 2e0a1a39eab95caf4f5556da9289b9e68f0aafac901b2ce80daaf020d3b733a8 +SIZE (rust/crates/normalize-line-endings-0.2.2.tar.gz) = 5299 +SHA256 (rust/crates/num-integer-0.1.39.tar.gz) = e83d528d2677f0518c570baf2b7abdcf0cd2d248860b68507bdcb3e91d4c0cea +SIZE (rust/crates/num-integer-0.1.39.tar.gz) = 17881 +SHA256 (rust/crates/num-traits-0.1.43.tar.gz) = 92e5113e9fd4cc14ded8e499429f396a20f98c772a47cc8622a736e1ec843c31 +SIZE (rust/crates/num-traits-0.1.43.tar.gz) = 7659 +SHA256 (rust/crates/num-traits-0.2.5.tar.gz) = 630de1ef5cc79d0cdd78b7e33b81f083cbfe90de0f4b2b2f07f905867c70e9fe +SIZE (rust/crates/num-traits-0.2.5.tar.gz) = 39136 +SHA256 (rust/crates/num_cpus-1.8.0.tar.gz) = c51a3322e4bca9d212ad9a158a02abc6934d005490c054a2778df73a70aa0a30 +SIZE (rust/crates/num_cpus-1.8.0.tar.gz) = 10539 +SHA256 (rust/crates/number_prefix-0.2.8.tar.gz) = dbf9993e59c894e3c08aa1c2712914e9e6bf1fcbfc6bef283e2183df345a4fee +SIZE (rust/crates/number_prefix-0.2.8.tar.gz) = 5493 +SHA256 (rust/crates/openssl-0.10.11.tar.gz) = 6c24d3508b4fb6da175c10baac54c578b33f09c89ae90c6fe9788b3b4768efdc +SIZE (rust/crates/openssl-0.10.11.tar.gz) = 164328 +SHA256 (rust/crates/openssl-0.9.24.tar.gz) = a3605c298474a3aa69de92d21139fb5e2a81688d308262359d85cdd0d12a7985 +SIZE (rust/crates/openssl-0.9.24.tar.gz) = 149235 +SHA256 (rust/crates/openssl-sys-0.9.35.tar.gz) = 912f301a749394e1025d9dcddef6106ddee9252620e6d0a0e5f8d0681de9b129 +SIZE (rust/crates/openssl-sys-0.9.35.tar.gz) = 44854 +SHA256 (rust/crates/owning_ref-0.3.3.tar.gz) = cdf84f41639e037b484f93433aa3897863b561ed65c6e59c7073d7c561710f37 +SIZE (rust/crates/owning_ref-0.3.3.tar.gz) = 11710 +SHA256 (rust/crates/parking_lot-0.6.4.tar.gz) = f0802bff09003b291ba756dc7e79313e51cc31667e94afbe847def490424cde5 +SIZE (rust/crates/parking_lot-0.6.4.tar.gz) = 31890 +SHA256 (rust/crates/parking_lot_core-0.3.0.tar.gz) = 06a2b6aae052309c2fd2161ef58f5067bc17bb758377a0de9d4b279d603fdd8a +SIZE (rust/crates/parking_lot_core-0.3.0.tar.gz) = 21965 +SHA256 (rust/crates/percent-encoding-1.0.1.tar.gz) = 31010dd2e1ac33d5b46a5b413495239882813e0369f8ed8a5e266f173602f831 +SIZE (rust/crates/percent-encoding-1.0.1.tar.gz) = 10057 +SHA256 (rust/crates/phf-0.7.23.tar.gz) = cec29da322b242f4c3098852c77a0ca261c9c01b806cae85a5572a1eb94db9a6 +SIZE (rust/crates/phf-0.7.23.tar.gz) = 3841 +SHA256 (rust/crates/phf_codegen-0.7.23.tar.gz) = 7d187f00cd98d5afbcd8898f6cf181743a449162aeb329dcd2f3849009e605ad +SIZE (rust/crates/phf_codegen-0.7.23.tar.gz) = 2866 +SHA256 (rust/crates/phf_generator-0.7.23.tar.gz) = 03dc191feb9b08b0dc1330d6549b795b9d81aec19efe6b4a45aec8d4caee0c4b +SIZE (rust/crates/phf_generator-0.7.23.tar.gz) = 2219 +SHA256 (rust/crates/phf_shared-0.7.23.tar.gz) = b539898d22d4273ded07f64a05737649dc69095d92cb87c7097ec68e3f150b93 +SIZE (rust/crates/phf_shared-0.7.23.tar.gz) = 2084 +SHA256 (rust/crates/pkg-config-0.3.14.tar.gz) = 676e8eb2b1b4c9043511a9b7bea0915320d7e502b0a079fb03f9635a5252b18c +SIZE (rust/crates/pkg-config-0.3.14.tar.gz) = 13565 +SHA256 (rust/crates/podio-0.1.6.tar.gz) = 780fb4b6698bbf9cf2444ea5d22411cef2953f0824b98f33cf454ec5615645bd +SIZE (rust/crates/podio-0.1.6.tar.gz) = 10186 +SHA256 (rust/crates/predicates-0.9.0.tar.gz) = 799dc506006c16c25b28476046abfc20a95f71de59e95ebb8ee302e029a30173 +SIZE (rust/crates/predicates-0.9.0.tar.gz) = 23347 +SHA256 (rust/crates/predicates-core-0.9.0.tar.gz) = 85f80bc390d1c02a4cdaa63f27f05c3c426679eb65433d8dd65d392147e4e5c5 +SIZE (rust/crates/predicates-core-0.9.0.tar.gz) = 8053 +SHA256 (rust/crates/predicates-tree-0.9.0.tar.gz) = 2e86df9b81bdcb0a5141aca9d2b9c5e0c558ef6626d3ae2c12912f5c9df740bd +SIZE (rust/crates/predicates-tree-0.9.0.tar.gz) = 6240 +SHA256 (rust/crates/proc-macro2-0.4.15.tar.gz) = 295af93acfb1d5be29c16ca5b3f82d863836efd9cb0c14fd83811eb9a110e452 +SIZE (rust/crates/proc-macro2-0.4.15.tar.gz) = 28658 +SHA256 (rust/crates/pulldown-cmark-0.0.3.tar.gz) = 8361e81576d2e02643b04950e487ec172b687180da65c731c03cf336784e6c07 +SIZE (rust/crates/pulldown-cmark-0.0.3.tar.gz) = 44672 +SHA256 (rust/crates/quick-error-1.2.2.tar.gz) = 9274b940887ce9addde99c4eee6b5c44cc494b182b97e73dc8ffdcb3397fd3f0 +SIZE (rust/crates/quick-error-1.2.2.tar.gz) = 15132 +SHA256 (rust/crates/quote-0.3.15.tar.gz) = 7a6e920b65c65f10b2ae65c831a81a073a89edd28c7cce89475bff467ab4167a +SIZE (rust/crates/quote-0.3.15.tar.gz) = 12041 +SHA256 (rust/crates/quote-0.6.8.tar.gz) = dd636425967c33af890042c483632d33fa7a18f19ad1d7ea72e8998c6ef8dea5 +SIZE (rust/crates/quote-0.6.8.tar.gz) = 15530 +SHA256 (rust/crates/rand-0.3.22.tar.gz) = 15a732abf9d20f0ad8eeb6f909bf6868722d9a06e1e50802b6a70351f40b4eb1 +SIZE (rust/crates/rand-0.3.22.tar.gz) = 11318 +SHA256 (rust/crates/rand-0.4.3.tar.gz) = 8356f47b32624fef5b3301c1be97e5944ecdd595409cc5da11d05f211db6cfbd +SIZE (rust/crates/rand-0.4.3.tar.gz) = 76094 +SHA256 (rust/crates/rand-0.5.5.tar.gz) = e464cd887e869cddcae8792a4ee31d23c7edd516700695608f5b98c67ee0131c +SIZE (rust/crates/rand-0.5.5.tar.gz) = 137359 +SHA256 (rust/crates/rand_core-0.2.1.tar.gz) = edecf0f94da5551fc9b492093e30b041a891657db7940ee221f9d2f66e82eef2 +SIZE (rust/crates/rand_core-0.2.1.tar.gz) = 19262 +SHA256 (rust/crates/redis-0.9.0.tar.gz) = 2dde3e551c6f072b3c1feab259e2d85e5795dfb4a4e0dd1510f3a1269f3befcf +SIZE (rust/crates/redis-0.9.0.tar.gz) = 51986 +SHA256 (rust/crates/redox_syscall-0.1.40.tar.gz) = c214e91d3ecf43e9a4e41e578973adeb14b474f2bee858742d127af75a0112b1 +SIZE (rust/crates/redox_syscall-0.1.40.tar.gz) = 14745 +SHA256 (rust/crates/redox_termios-0.1.1.tar.gz) = 7e891cfe48e9100a70a3b6eb652fef28920c117d366339687bd5576160db0f76 +SIZE (rust/crates/redox_termios-0.1.1.tar.gz) = 3227 +SHA256 (rust/crates/regex-1.0.4.tar.gz) = 67d0301b0c6804eca7e3c275119d0b01ff3b7ab9258a65709e608a66312a1025 +SIZE (rust/crates/regex-1.0.4.tar.gz) = 245421 +SHA256 (rust/crates/regex-syntax-0.6.2.tar.gz) = 747ba3b235651f6e2f67dfa8bcdcd073ddb7c243cb21c442fc12395dfcac212d +SIZE (rust/crates/regex-syntax-0.6.2.tar.gz) = 238572 +SHA256 (rust/crates/relay-0.1.1.tar.gz) = 1576e382688d7e9deecea24417e350d3062d97e32e45d70b1cde65994ff1489a +SIZE (rust/crates/relay-0.1.1.tar.gz) = 7331 +SHA256 (rust/crates/remove_dir_all-0.5.1.tar.gz) = 3488ba1b9a2084d38645c4c08276a1752dcbf2c7130d74f1569681ad5d2799c5 +SIZE (rust/crates/remove_dir_all-0.5.1.tar.gz) = 8726 +SHA256 (rust/crates/reqwest-0.8.8.tar.gz) = 738769ec83daf6c1929dc9dae7d69ed3779b55ae5c356e989dcd3aa677d8486e +SIZE (rust/crates/reqwest-0.8.8.tar.gz) = 55825 +SHA256 (rust/crates/retry-0.4.0.tar.gz) = 29460f6011a25fc70b22010e796bd98330baccaa0005cba6f90b858a510dec0d +SIZE (rust/crates/retry-0.4.0.tar.gz) = 3875 +SHA256 (rust/crates/ring-0.13.2.tar.gz) = dbe642b9dd1ba0038d78c4a3999d1ee56178b4d415c1e1fbaba83b06dce012f0 +SIZE (rust/crates/ring-0.13.2.tar.gz) = 5422395 +SHA256 (rust/crates/rouille-2.2.0.tar.gz) = 0845b9c39ba772da769fe2aaa4d81bfd10695a7ea051d0510702260ff4159841 +SIZE (rust/crates/rouille-2.2.0.tar.gz) = 71003 +SHA256 (rust/crates/rust-crypto-0.2.36.tar.gz) = f76d05d3993fd5f4af9434e8e436db163a12a9d40e1a58a726f27a01dfd12a2a +SIZE (rust/crates/rust-crypto-0.2.36.tar.gz) = 857879 +SHA256 (rust/crates/rustc-demangle-0.1.9.tar.gz) = bcfe5b13211b4d78e5c2cadfebd7769197d95c639c35a50057eb4c05de811395 +SIZE (rust/crates/rustc-demangle-0.1.9.tar.gz) = 11463 +SHA256 (rust/crates/rustc-serialize-0.3.24.tar.gz) = dcf128d1287d2ea9d80910b5f1120d0b8eede3fbf1abe91c40d39ea7d51e6fda +SIZE (rust/crates/rustc-serialize-0.3.24.tar.gz) = 45926 +SHA256 (rust/crates/ryu-0.2.6.tar.gz) = 7153dd96dade874ab973e098cb62fcdbb89a03682e46b144fd09550998d4a4a7 +SIZE (rust/crates/ryu-0.2.6.tar.gz) = 39911 +SHA256 (rust/crates/safemem-0.2.0.tar.gz) = e27a8b19b835f7aea908818e871f5cc3a5a186550c30773be987e155e8163d8f +SIZE (rust/crates/safemem-0.2.0.tar.gz) = 6450 +SHA256 (rust/crates/same-file-0.1.3.tar.gz) = d931a44fdaa43b8637009e7632a02adc4f2b2e0733c08caa4cf00e8da4a117a7 +SIZE (rust/crates/same-file-0.1.3.tar.gz) = 7078 +SHA256 (rust/crates/schannel-0.1.13.tar.gz) = dc1fabf2a7b6483a141426e1afd09ad543520a77ac49bd03c286e7696ccfd77f +SIZE (rust/crates/schannel-0.1.13.tar.gz) = 38808 +SHA256 (rust/crates/scoped-tls-0.1.2.tar.gz) = 332ffa32bf586782a3efaeb58f127980944bbc8c4d6913a86107ac2a5ab24b28 +SIZE (rust/crates/scoped-tls-0.1.2.tar.gz) = 9079 +SHA256 (rust/crates/scopeguard-0.3.3.tar.gz) = 94258f53601af11e6a49f722422f6e3425c52b06245a5cf9bc09908b174f5e27 +SIZE (rust/crates/scopeguard-0.3.3.tar.gz) = 9605 +SHA256 (rust/crates/security-framework-0.1.16.tar.gz) = dfa44ee9c54ce5eecc9de7d5acbad112ee58755239381f687e564004ba4a2332 +SIZE (rust/crates/security-framework-0.1.16.tar.gz) = 38648 +SHA256 (rust/crates/security-framework-sys-0.1.16.tar.gz) = 5421621e836278a0b139268f36eee0dc7e389b784dc3f79d8f11aabadf41bead +SIZE (rust/crates/security-framework-sys-0.1.16.tar.gz) = 7754 +SHA256 (rust/crates/semver-0.9.0.tar.gz) = 1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403 +SIZE (rust/crates/semver-0.9.0.tar.gz) = 17344 +SHA256 (rust/crates/semver-parser-0.7.0.tar.gz) = 388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3 +SIZE (rust/crates/semver-parser-0.7.0.tar.gz) = 10268 +SHA256 (rust/crates/serde-1.0.75.tar.gz) = 22d340507cea0b7e6632900a176101fea959c7065d93ba555072da90aaaafc87 +SIZE (rust/crates/serde-1.0.75.tar.gz) = 72560 +SHA256 (rust/crates/serde_derive-1.0.75.tar.gz) = 234fc8b737737b148ccd625175fc6390f5e4dacfdaa543cb93a3430d984a9119 +SIZE (rust/crates/serde_derive-1.0.75.tar.gz) = 46215 +SHA256 (rust/crates/serde_json-1.0.26.tar.gz) = 44dd2cfde475037451fa99b7e5df77aa3cfd1536575fa8e7a538ab36dcde49ae +SIZE (rust/crates/serde_json-1.0.26.tar.gz) = 65286 +SHA256 (rust/crates/serde_urlencoded-0.5.3.tar.gz) = aaed41d9fb1e2f587201b863356590c90c1157495d811430a0c0325fe8169650 +SIZE (rust/crates/serde_urlencoded-0.5.3.tar.gz) = 12456 +SHA256 (rust/crates/sha1-0.6.0.tar.gz) = 2579985fda508104f7587689507983eadd6a6e84dd35d6d115361f530916fa0d +SIZE (rust/crates/sha1-0.6.0.tar.gz) = 9244 +SHA256 (rust/crates/siphasher-0.2.3.tar.gz) = 0b8de496cf83d4ed58b6be86c3a275b8602f6ffe98d3024a869e124147a9a3ac +SIZE (rust/crates/siphasher-0.2.3.tar.gz) = 8717 +SHA256 (rust/crates/skeptic-0.4.0.tar.gz) = 24ebf8a06f5f8bae61ae5bbc7af7aac4ef6907ae975130faba1199e5fe82256a +SIZE (rust/crates/skeptic-0.4.0.tar.gz) = 3166 +SHA256 (rust/crates/slab-0.3.0.tar.gz) = 17b4fcaed89ab08ef143da37bc52adbcc04d4a69014f4c1208d6b51f0c47bc23 +SIZE (rust/crates/slab-0.3.0.tar.gz) = 4807 +SHA256 (rust/crates/slab-0.4.1.tar.gz) = 5f9776d6b986f77b35c6cf846c11ad986ff128fe0b2b63a3628e3755e8d3102d +SIZE (rust/crates/slab-0.4.1.tar.gz) = 9479 +SHA256 (rust/crates/smallvec-0.2.1.tar.gz) = 4c8cbcd6df1e117c2210e13ab5109635ad68a929fcbb8964dc965b76cb5ee013 +SIZE (rust/crates/smallvec-0.2.1.tar.gz) = 6065 +SHA256 (rust/crates/smallvec-0.6.5.tar.gz) = 153ffa32fd170e9944f7e0838edf824a754ec4c1fc64746fcc9fe1f8fa602e5d +SIZE (rust/crates/smallvec-0.6.5.tar.gz) = 20238 +SHA256 (rust/crates/socket2-0.3.8.tar.gz) = c4d11a52082057d87cb5caa31ad812f4504b97ab44732cd8359df2e9ff9f48e7 +SIZE (rust/crates/socket2-0.3.8.tar.gz) = 30379 +SHA256 (rust/crates/stable_deref_trait-1.1.1.tar.gz) = dba1a27d3efae4351c8051072d619e3ade2820635c3958d826bfea39d59b54c8 +SIZE (rust/crates/stable_deref_trait-1.1.1.tar.gz) = 8007 +SHA256 (rust/crates/strip-ansi-escapes-0.1.0.tar.gz) = 9d63676e2abafa709460982ddc02a3bb586b6d15a49b75c212e06edd3933acee +SIZE (rust/crates/strip-ansi-escapes-0.1.0.tar.gz) = 7972 +SHA256 (rust/crates/strsim-0.7.0.tar.gz) = bb4f380125926a99e52bc279241539c018323fab05ad6368b56f93d9369ff550 +SIZE (rust/crates/strsim-0.7.0.tar.gz) = 8435 +SHA256 (rust/crates/syn-0.11.11.tar.gz) = d3b891b9015c88c576343b9b3e41c2c11a51c219ef067b264bd9c8aa9b441dad +SIZE (rust/crates/syn-0.11.11.tar.gz) = 63309 +SHA256 (rust/crates/syn-0.14.9.tar.gz) = 261ae9ecaa397c42b960649561949d69311f08eeaea86a65696e6e46517cf741 +SIZE (rust/crates/syn-0.14.9.tar.gz) = 135921 +SHA256 (rust/crates/synom-0.11.3.tar.gz) = a393066ed9010ebaed60b9eafa373d4b1baac186dd7e008555b0f702b51945b6 +SIZE (rust/crates/synom-0.11.3.tar.gz) = 17120 +SHA256 (rust/crates/synstructure-0.9.0.tar.gz) = 85bb9b7550d063ea184027c9b8c20ac167cd36d3e06b3a40bceb9d746dc1a7b7 +SIZE (rust/crates/synstructure-0.9.0.tar.gz) = 17651 +SHA256 (rust/crates/take-0.1.0.tar.gz) = b157868d8ac1f56b64604539990685fa7611d8fa9e5476cf0c02cf34d32917c5 +SIZE (rust/crates/take-0.1.0.tar.gz) = 5543 +SHA256 (rust/crates/tar-0.4.16.tar.gz) = e8f41ca4a5689f06998f0247fcb60da6c760f1950cc9df2a10d71575ad0b062a +SIZE (rust/crates/tar-0.4.16.tar.gz) = 43935 +SHA256 (rust/crates/tempdir-0.3.7.tar.gz) = 15f2b5fb00ccdf689e0149d1b1b3c03fead81c2b37735d812fa8bddbbf41b6d8 +SIZE (rust/crates/tempdir-0.3.7.tar.gz) = 11468 +SHA256 (rust/crates/tempfile-3.0.3.tar.gz) = c4b103c6d08d323b92ff42c8ce62abcd83ca8efa7fd5bf7927efefec75f58c76 +SIZE (rust/crates/tempfile-3.0.3.tar.gz) = 20806 +SHA256 (rust/crates/term-0.5.1.tar.gz) = 5e6b677dd1e8214ea1ef4297f85dbcbed8e8cdddb561040cc998ca2551c37561 +SIZE (rust/crates/term-0.5.1.tar.gz) = 39105 +SHA256 (rust/crates/termcolor-1.0.2.tar.gz) = 3390f44f1f706d8870297b6a2c4f92d9ab65a37c265fbbc6ac4ee72bcc2f3698 +SIZE (rust/crates/termcolor-1.0.2.tar.gz) = 14219 +SHA256 (rust/crates/termion-1.5.1.tar.gz) = 689a3bdfaab439fd92bc87df5c4c78417d3cbe537487274e9b0b2dce76e92096 +SIZE (rust/crates/termion-1.5.1.tar.gz) = 20659 +SHA256 (rust/crates/textwrap-0.10.0.tar.gz) = 307686869c93e71f94da64286f9a9524c0f308a9e1c87a583de8e9c9039ad3f6 +SIZE (rust/crates/textwrap-0.10.0.tar.gz) = 15986 +SHA256 (rust/crates/thread_local-0.3.6.tar.gz) = c6b53e329000edc2b34dbe8545fd20e55a333362d0a321909685a19bd28c3f1b +SIZE (rust/crates/thread_local-0.3.6.tar.gz) = 12388 +SHA256 (rust/crates/threadpool-1.7.1.tar.gz) = e2f0c90a5f3459330ac8bc0d2f879c693bb7a2f59689c1083fc4ef83834da865 +SIZE (rust/crates/threadpool-1.7.1.tar.gz) = 15756 +SHA256 (rust/crates/time-0.1.40.tar.gz) = d825be0eb33fda1a7e68012d51e9c7f451dc1a69391e7fdc197060bb8c56667b +SIZE (rust/crates/time-0.1.40.tar.gz) = 29518 +SHA256 (rust/crates/tiny_http-0.6.0.tar.gz) = a442681f9f72e440be192700eeb2861e4174b9983f16f4877c93a134cb5e5f63 +SIZE (rust/crates/tiny_http-0.6.0.tar.gz) = 36596 +SHA256 (rust/crates/tokio-0.1.8.tar.gz) = fbb6a6e9db2702097bfdfddcb09841211ad423b86c75b5ddaca1d62842ac492c +SIZE (rust/crates/tokio-0.1.8.tar.gz) = 58675 +SHA256 (rust/crates/tokio-codec-0.1.0.tar.gz) = 881e9645b81c2ce95fcb799ded2c29ffb9f25ef5bef909089a420e5961dd8ccb +SIZE (rust/crates/tokio-codec-0.1.0.tar.gz) = 5936 +SHA256 (rust/crates/tokio-core-0.1.17.tar.gz) = aeeffbbb94209023feaef3c196a41cbcdafa06b4a6f893f68779bb5e53796f71 +SIZE (rust/crates/tokio-core-0.1.17.tar.gz) = 73933 +SHA256 (rust/crates/tokio-current-thread-0.1.1.tar.gz) = 8fdfb899688ac16f618076bd09215edbfda0fd5dfecb375b6942636cb31fa8a7 +SIZE (rust/crates/tokio-current-thread-0.1.1.tar.gz) = 18152 +SHA256 (rust/crates/tokio-executor-0.1.4.tar.gz) = 84823b932d566bc3c6aa644df4ca36cb38593c50b7db06011fd4e12e31e4047e +SIZE (rust/crates/tokio-executor-0.1.4.tar.gz) = 10198 +SHA256 (rust/crates/tokio-fs-0.1.3.tar.gz) = b5cbe4ca6e71cb0b62a66e4e6f53a8c06a6eefe46cc5f665ad6f274c9906f135 +SIZE (rust/crates/tokio-fs-0.1.3.tar.gz) = 12719 +SHA256 (rust/crates/tokio-io-0.1.8.tar.gz) = 8d6cc2de7725863c86ac71b0b9068476fec50834f055a243558ef1655bbd34cb +SIZE (rust/crates/tokio-io-0.1.8.tar.gz) = 32375 +SHA256 (rust/crates/tokio-process-0.2.2.tar.gz) = 0832648d1ff7ca42c06ca45dc76797b92c56500de828e33c77276fa1449947b6 +SIZE (rust/crates/tokio-process-0.2.2.tar.gz) = 19077 +SHA256 (rust/crates/tokio-proto-0.1.1.tar.gz) = 8fbb47ae81353c63c487030659494b295f6cb6576242f907f203473b191b0389 +SIZE (rust/crates/tokio-proto-0.1.1.tar.gz) = 44268 +SHA256 (rust/crates/tokio-reactor-0.1.5.tar.gz) = 4bfbaf9f260635649ec26b6fb4aded03887295ffcd999f6e43fd2c4758f758ea +SIZE (rust/crates/tokio-reactor-0.1.5.tar.gz) = 23389 +SHA256 (rust/crates/tokio-serde-0.1.0.tar.gz) = 894168193c4f80862a2244ff953b69145a9961a9efba39500e0970b083d0649c +SIZE (rust/crates/tokio-serde-0.1.0.tar.gz) = 10150 +SHA256 (rust/crates/tokio-serde-bincode-0.1.1.tar.gz) = 02e35c8d60a5e87cfb30dd562a309e56f8a6d36617b0a76c87f04d5466607ca8 +SIZE (rust/crates/tokio-serde-bincode-0.1.1.tar.gz) = 3216 +SHA256 (rust/crates/tokio-service-0.1.0.tar.gz) = 24da22d077e0f15f55162bdbdc661228c1581892f52074fb242678d015b45162 +SIZE (rust/crates/tokio-service-0.1.0.tar.gz) = 8376 +SHA256 (rust/crates/tokio-signal-0.2.4.tar.gz) = 527342552ec4a6049f787ccc9e2d6e0eab77bfe6cb7ec7a05c0391e370f466c3 +SIZE (rust/crates/tokio-signal-0.2.4.tar.gz) = 20372 +SHA256 (rust/crates/tokio-tcp-0.1.1.tar.gz) = 5b4c329b47f071eb8a746040465fa751bd95e4716e98daef6a9b4e434c17d565 +SIZE (rust/crates/tokio-tcp-0.1.1.tar.gz) = 11448 +SHA256 (rust/crates/tokio-threadpool-0.1.6.tar.gz) = a5758cecb6e0633cea5d563ac07c975e04961690b946b04fd84e7d6445a8f6af +SIZE (rust/crates/tokio-threadpool-0.1.6.tar.gz) = 48778 +SHA256 (rust/crates/tokio-timer-0.2.6.tar.gz) = d03fa701f9578a01b7014f106b47f0a363b4727a7f3f75d666e312ab7acbbf1c +SIZE (rust/crates/tokio-timer-0.2.6.tar.gz) = 35177 +SHA256 (rust/crates/tokio-tls-0.1.4.tar.gz) = 772f4b04e560117fe3b0a53e490c16ddc8ba6ec437015d91fa385564996ed913 +SIZE (rust/crates/tokio-tls-0.1.4.tar.gz) = 25780 +SHA256 (rust/crates/tokio-udp-0.1.2.tar.gz) = da941144b816d0dcda4db3a1ba87596e4df5e860a72b70783fe435891f80601c +SIZE (rust/crates/tokio-udp-0.1.2.tar.gz) = 9765 +SHA256 (rust/crates/tokio-uds-0.2.1.tar.gz) = 424c1ed15a0132251813ccea50640b224c809d6ceafb88154c1a8775873a0e89 +SIZE (rust/crates/tokio-uds-0.2.1.tar.gz) = 9286 +SHA256 (rust/crates/toml-0.4.6.tar.gz) = a0263c6c02c4db6c8f7681f9fd35e90de799ebd4cfdeab77a38f4ff6b3d8c0d9 +SIZE (rust/crates/toml-0.4.6.tar.gz) = 40203 +SHA256 (rust/crates/treeline-0.1.0.tar.gz) = a7f741b240f1a48843f9b8e0444fb55fb2a4ff67293b50a9179dfd5ea67f8d41 +SIZE (rust/crates/treeline-0.1.0.tar.gz) = 3855 +SHA256 (rust/crates/try-lock-0.1.0.tar.gz) = ee2aa4715743892880f70885373966c83d73ef1b0838a664ef0c76fffd35e7c2 +SIZE (rust/crates/try-lock-0.1.0.tar.gz) = 3195 +SHA256 (rust/crates/twoway-0.1.8.tar.gz) = 59b11b2b5241ba34be09c3cc85a36e56e48f9888862e19cedf23336d35316ed1 +SIZE (rust/crates/twoway-0.1.8.tar.gz) = 31774 +SHA256 (rust/crates/ucd-util-0.1.1.tar.gz) = fd2be2d6639d0f8fe6cdda291ad456e23629558d466e2789d2c3e9892bda285d +SIZE (rust/crates/ucd-util-0.1.1.tar.gz) = 24221 +SHA256 (rust/crates/unicase-1.4.2.tar.gz) = 7f4765f83163b74f957c797ad9253caf97f103fb064d3999aea9568d09fc8a33 +SIZE (rust/crates/unicase-1.4.2.tar.gz) = 3907 +SHA256 (rust/crates/unicase-2.1.0.tar.gz) = 284b6d3db520d67fbe88fd778c21510d1b0ba4a551e5d0fbb023d33405f6de8a +SIZE (rust/crates/unicase-2.1.0.tar.gz) = 34880 +SHA256 (rust/crates/unicode-bidi-0.3.4.tar.gz) = 49f2bd0c6468a8230e1db229cff8029217cf623c767ea5d60bfbd42729ea54d5 +SIZE (rust/crates/unicode-bidi-0.3.4.tar.gz) = 32228 +SHA256 (rust/crates/unicode-normalization-0.1.7.tar.gz) = 6a0180bc61fc5a987082bfa111f4cc95c4caff7f9799f3e46df09163a937aa25 +SIZE (rust/crates/unicode-normalization-0.1.7.tar.gz) = 330545 +SHA256 (rust/crates/unicode-width-0.1.5.tar.gz) = 882386231c45df4700b275c7ff55b6f3698780a650026380e72dabe76fa46526 +SIZE (rust/crates/unicode-width-0.1.5.tar.gz) = 15761 +SHA256 (rust/crates/unicode-xid-0.0.4.tar.gz) = 8c1f860d7d29cf02cb2f3f359fd35991af3d30bac52c57d265a3c461074cb4dc +SIZE (rust/crates/unicode-xid-0.0.4.tar.gz) = 16034 +SHA256 (rust/crates/unicode-xid-0.1.0.tar.gz) = fc72304796d0818e357ead4e000d19c9c174ab23dc11093ac919054d20a6a7fc +SIZE (rust/crates/unicode-xid-0.1.0.tar.gz) = 16000 +SHA256 (rust/crates/unix_socket-0.5.0.tar.gz) = 6aa2700417c405c38f5e6902d699345241c28c0b7ade4abaad71e35a87eb1564 +SIZE (rust/crates/unix_socket-0.5.0.tar.gz) = 12261 +SHA256 (rust/crates/unreachable-1.0.0.tar.gz) = 382810877fe448991dfc7f0dd6e3ae5d58088fd0ea5e35189655f84e6814fa56 +SIZE (rust/crates/unreachable-1.0.0.tar.gz) = 6355 +SHA256 (rust/crates/untrusted-0.6.2.tar.gz) = 55cd1f4b4e96b46aeb8d4855db4a7a9bd96eeeb5c6a1ab54593328761642ce2f +SIZE (rust/crates/untrusted-0.6.2.tar.gz) = 7526 +SHA256 (rust/crates/url-1.7.1.tar.gz) = 2a321979c09843d272956e73700d12c4e7d3d92b2ee112b31548aef0d4efc5a6 +SIZE (rust/crates/url-1.7.1.tar.gz) = 68266 +SHA256 (rust/crates/utf8-ranges-1.0.1.tar.gz) = fd70f467df6810094968e2fce0ee1bd0e87157aceb026a8c083bcf5e25b9efe4 +SIZE (rust/crates/utf8-ranges-1.0.1.tar.gz) = 9247 +SHA256 (rust/crates/utf8parse-0.1.0.tar.gz) = a15ea87f3194a3a454c78d79082b4f5e85f6956ddb6cb86bbfbe4892aa3c0323 +SIZE (rust/crates/utf8parse-0.1.0.tar.gz) = 2927 +SHA256 (rust/crates/uuid-0.6.5.tar.gz) = e1436e58182935dcd9ce0add9ea0b558e8a87befe01c1a301e6020aeb0876363 +SIZE (rust/crates/uuid-0.6.5.tar.gz) = 26185 +SHA256 (rust/crates/vcpkg-0.2.6.tar.gz) = def296d3eb3b12371b2c7d0e83bfe1403e4db2d7a0bba324a12b21c4ee13143d +SIZE (rust/crates/vcpkg-0.2.6.tar.gz) = 9866 +SHA256 (rust/crates/vec_map-0.8.1.tar.gz) = 05c78687fb1a80548ae3250346c3db86a80a7cdd77bda190189f2d0a0987c81a +SIZE (rust/crates/vec_map-0.8.1.tar.gz) = 14959 +SHA256 (rust/crates/version_check-0.1.4.tar.gz) = 7716c242968ee87e5542f8021178248f267f295a5c4803beae8b8b7fd9bc6051 +SIZE (rust/crates/version_check-0.1.4.tar.gz) = 7946 +SHA256 (rust/crates/void-1.0.2.tar.gz) = 6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d +SIZE (rust/crates/void-1.0.2.tar.gz) = 2356 +SHA256 (rust/crates/vte-0.3.3.tar.gz) = 4f42f536e22f7fcbb407639765c8fd78707a33109301f834a594758bedd6e8cf +SIZE (rust/crates/vte-0.3.3.tar.gz) = 2397439 +SHA256 (rust/crates/walkdir-1.0.7.tar.gz) = bb08f9e670fab86099470b97cd2b252d6527f0b3cc1401acdb595ffc9dd288ff +SIZE (rust/crates/walkdir-1.0.7.tar.gz) = 17883 +SHA256 (rust/crates/want-0.0.4.tar.gz) = a05d9d966753fa4b5c8db73fcab5eed4549cfe0e1e4e66911e5564a0085c35d1 +SIZE (rust/crates/want-0.0.4.tar.gz) = 5357 +SHA256 (rust/crates/which-2.0.0.tar.gz) = 49c4f580e93079b70ac522e7bdebbe1568c8afa7d8d05ee534ee737ca37d2f51 +SIZE (rust/crates/which-2.0.0.tar.gz) = 6590 +SHA256 (rust/crates/winapi-0.2.8.tar.gz) = 167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a +SIZE (rust/crates/winapi-0.2.8.tar.gz) = 455145 +SHA256 (rust/crates/winapi-0.3.5.tar.gz) = 773ef9dcc5f24b7d850d0ff101e542ff24c3b090a9768e03ff889fdef41f00fd +SIZE (rust/crates/winapi-0.3.5.tar.gz) = 997942 +SHA256 (rust/crates/winapi-build-0.1.1.tar.gz) = 2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc +SIZE (rust/crates/winapi-build-0.1.1.tar.gz) = 669 +SHA256 (rust/crates/winapi-i686-pc-windows-gnu-0.4.0.tar.gz) = ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6 +SIZE (rust/crates/winapi-i686-pc-windows-gnu-0.4.0.tar.gz) = 2918815 +SHA256 (rust/crates/winapi-util-0.1.1.tar.gz) = afc5508759c5bf4285e61feb862b6083c8480aec864fa17a81fdec6f69b461ab +SIZE (rust/crates/winapi-util-0.1.1.tar.gz) = 7635 +SHA256 (rust/crates/winapi-x86_64-pc-windows-gnu-0.4.0.tar.gz) = 712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f +SIZE (rust/crates/winapi-x86_64-pc-windows-gnu-0.4.0.tar.gz) = 2947998 +SHA256 (rust/crates/wincolor-1.0.1.tar.gz) = 561ed901ae465d6185fa7864d63fbd5720d0ef718366c9a4dc83cf6170d7e9ba +SIZE (rust/crates/wincolor-1.0.1.tar.gz) = 4737 +SHA256 (rust/crates/ws2_32-sys-0.2.1.tar.gz) = d59cefebd0c892fa2dd6de581e937301d8552cb44489cdff035c6187cb63fa5e +SIZE (rust/crates/ws2_32-sys-0.2.1.tar.gz) = 4697 +SHA256 (rust/crates/xattr-0.2.2.tar.gz) = 244c3741f4240ef46274860397c7c74e50eb23624996930e484c16679633a54c +SIZE (rust/crates/xattr-0.2.2.tar.gz) = 11750 +SHA256 (rust/crates/zip-0.4.2.tar.gz) = 36b9e08fb518a65cf7e08a1e482573eb87a2f4f8c6619316612a3c1f162fe822 +SIZE (rust/crates/zip-0.4.2.tar.gz) = 25852 +SHA256 (mozilla-sccache-2.8.0.alpha0-dda88a6_GH0.tar.gz) = dd8d0b0c8f3c944e1267a0877a44c947b172023c246ea78c9a83d1d9cc4be6ea +SIZE (mozilla-sccache-2.8.0.alpha0-dda88a6_GH0.tar.gz) = 179656 diff --git a/devel/sccache/pkg-descr b/devel/sccache/pkg-descr new file mode 100644 index 00000000000..481dfd92478 --- /dev/null +++ b/devel/sccache/pkg-descr @@ -0,0 +1,5 @@ +A ccache with cloud storage support, written in Rust + +It supports local disk, memcache, redis, S3 bucket and GCS bucket. + +WWW: https://github.com/mozilla/sccache diff --git a/devel/simgear/Makefile b/devel/simgear/Makefile index 27acbe36396..cc188e8392d 100644 --- a/devel/simgear/Makefile +++ b/devel/simgear/Makefile @@ -16,7 +16,8 @@ RUN_DEPENDS= ${LOCALBASE}/lib/libplibsl.a:x11-toolkits/plib LIB_DEPENDS= libboost_thread.so:devel/boost-libs \ libosg.so:graphics/osg -USES= alias cmake compiler:c++11-lib cpe jpeg openal:al,alut tar:bzip2 +USES= alias cmake compiler:c++11-lib cpe gl jpeg openal:al,alut \ + tar:bzip2 USE_XORG= ice sm x11 xext xi xmu xt USE_GL= gl glu glut diff --git a/devel/stlink/Makefile b/devel/stlink/Makefile index 38c6aa53484..39c53a9e747 100644 --- a/devel/stlink/Makefile +++ b/devel/stlink/Makefile @@ -18,6 +18,8 @@ GTK3_USE= GNOME=gtk30 USE_GITHUB= yes GH_ACCOUNT= texane +USE_HARDENING= pie:off + USES= cmake pkgconfig USE_LDCONFIG= yes diff --git a/devel/tbb/Makefile b/devel/tbb/Makefile index b3c2c528e76..957a3c4878d 100644 --- a/devel/tbb/Makefile +++ b/devel/tbb/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= tbb -PORTVERSION= 2018.5 +PORTVERSION= 2019 CATEGORIES= devel MAINTAINER= martymac@FreeBSD.org @@ -25,9 +25,6 @@ SUB_LIST= prefix="${PREFIX}" \ description="${COMMENT}" \ version="${PORTVERSION}" -OPTIONS_DEFINE= DOCS -PORTDOCS= * - USE_LDCONFIG= yes ALL_TARGET= default @@ -58,9 +55,9 @@ do-install: ${LN} -sf libtbbmalloc.so.2 \ ${STAGEDIR}${PREFIX}/lib/libtbbmalloc.so; \ ${MKDIR} ${STAGEDIR}${PREFIX}/include/tbb/; \ - cd include/tbb/ && ${COPYTREE_SHARE} . ${STAGEDIR}${PREFIX}/include/tbb/ - ${MKDIR} ${STAGEDIR}${DOCSDIR} - cd ${WRKSRC}/doc/html && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR} + cd include/tbb/ && \ + ${COPYTREE_SHARE} \ + . ${STAGEDIR}${PREFIX}/include/tbb/ "! -name *\.html" post-install: ${INSTALL_DATA} ${WRKDIR}/tbb.pc ${STAGEDIR}${PREFIX}/libdata/pkgconfig diff --git a/devel/tbb/distinfo b/devel/tbb/distinfo index 71e6d2a0654..c3775e3b1ba 100644 --- a/devel/tbb/distinfo +++ b/devel/tbb/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1533445358 -SHA256 (01org-tbb-2018.5-2018_U5_GH0.tar.gz) = c4c2896af527392496c5e01ef8579058a71b6eebbd695924cd138841c13f07be -SIZE (01org-tbb-2018.5-2018_U5_GH0.tar.gz) = 2922517 +TIMESTAMP = 1537472031 +SHA256 (01org-tbb-2019_GH0.tar.gz) = 4d149895826cea785cd3b9a14f4aa743b6ef0df520eca7ee27d438fdc3d73399 +SIZE (01org-tbb-2019_GH0.tar.gz) = 2507754 diff --git a/devel/tbb/files/patch-build-FreeBSD.inc b/devel/tbb/files/patch-build-BSD.inc similarity index 94% rename from devel/tbb/files/patch-build-FreeBSD.inc rename to devel/tbb/files/patch-build-BSD.inc index 791b687a581..f776c4f1c67 100644 --- a/devel/tbb/files/patch-build-FreeBSD.inc +++ b/devel/tbb/files/patch-build-BSD.inc @@ -1,5 +1,5 @@ ---- build/FreeBSD.inc.orig 2018-06-19 16:04:20 UTC -+++ build/FreeBSD.inc +--- build/BSD.inc.orig 2018-06-19 16:04:20 UTC ++++ build/BSD.inc @@ -26,17 +26,23 @@ ifndef arch ifeq ($(shell uname -m),amd64) export arch:=intel64 diff --git a/devel/tbb/pkg-plist b/devel/tbb/pkg-plist index 1c2129575c3..cfcb918425a 100644 --- a/devel/tbb/pkg-plist +++ b/devel/tbb/pkg-plist @@ -25,7 +25,6 @@ include/tbb/flow_graph_abstractions.h include/tbb/flow_graph_opencl_node.h include/tbb/global_control.h include/tbb/gfx_factory.h -include/tbb/index.html include/tbb/internal/_aggregator_impl.h include/tbb/internal/_concurrent_queue_impl.h include/tbb/internal/_concurrent_unordered_impl.h @@ -50,6 +49,7 @@ include/tbb/internal/_tbb_windef.h include/tbb/internal/_template_helpers.h include/tbb/internal/_x86_eliding_mutex_impl.h include/tbb/internal/_x86_rtm_rw_mutex_impl.h +include/tbb/iterators.h include/tbb/machine/gcc_arm.h include/tbb/machine/gcc_generic.h include/tbb/machine/gcc_ia32_common.h diff --git a/dns/bundy/Makefile b/dns/bundy/Makefile index 03a4307125c..ace8c487c6f 100644 --- a/dns/bundy/Makefile +++ b/dns/bundy/Makefile @@ -17,8 +17,6 @@ LICENSE_NAME= ISC License LICENSE_FILE= ${WRKSRC}/COPYING LICENSE_PERMS= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept -BROKEN_FreeBSD_12= error: called object type nullptr_t is not a function or function pointer - BUILD_DEPENDS= ${LOCALBASE}/include/log4cplus/logger.h:devel/log4cplus \ sqlite3>=3.3.9:databases/sqlite3 \ ${PYTHON_PKGNAMEPREFIX}sqlite3>0:databases/py-sqlite3@${PY_FLAVOR} @@ -32,12 +30,13 @@ BROKEN_armv6 = fails to build: Child process terminated abnormally: Segmentatio BROKEN_armv7 = fails to build: Child process terminated abnormally: Segmentation fault BROKEN_powerpc64= fails to configure: checking for botan/botan.h... no +USES= compiler:c++11-lang pathfix pkgconfig libtool python:3.4+ autoreconf ssl +USE_CSTD= gnu99 +USE_CXXSTD= gnu++98 USE_GITHUB= yes GH_ACCOUNT= bundy-dns GH_TAGNAME= e640032 -USES= compiler:c++11-lang pathfix pkgconfig libtool python:3.4+ autoreconf ssl - USE_LDCONFIG= yes GNU_CONFIGURE= yes CONFIGURE_ARGS= --localstatedir=/var \ diff --git a/dns/dnsmasq-devel/Makefile b/dns/dnsmasq-devel/Makefile index f8353813d54..dfabe7467b5 100644 --- a/dns/dnsmasq-devel/Makefile +++ b/dns/dnsmasq-devel/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= dnsmasq -DISTVERSION= 2.80test6 +DISTVERSION= 2.80test8 PORTEPOCH= 2 CATEGORIES= dns ipv6 #MASTER_SITES= http://www.thekelleys.org.uk/dnsmasq/release-candidates/ diff --git a/dns/dnsmasq-devel/distinfo b/dns/dnsmasq-devel/distinfo index 46552fcebc6..639ee43b39f 100644 --- a/dns/dnsmasq-devel/distinfo +++ b/dns/dnsmasq-devel/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1536487363 -SHA256 (dnsmasq-2.80test6.tar.xz) = aa74384f4ee6941d7785db79cf50fd6399cb992d219fc07ea6affeabe63b0190 -SIZE (dnsmasq-2.80test6.tar.xz) = 517044 +TIMESTAMP = 1538922049 +SHA256 (dnsmasq-2.80test8.tar.xz) = 918fbcf385f37df020b23388f3559797b88ca4f4f9e524e31526002fb8de7ccf +SIZE (dnsmasq-2.80test8.tar.xz) = 517760 diff --git a/dns/nsd/Makefile b/dns/nsd/Makefile index 48960c086c8..630a939eacf 100644 --- a/dns/nsd/Makefile +++ b/dns/nsd/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= nsd -PORTVERSION= 4.1.24 +PORTVERSION= 4.1.25 CATEGORIES= dns ipv6 MASTER_SITES= http://www.nlnetlabs.nl/downloads/nsd/ \ ftp://ftp.rhnet.is/pub/nsd/ diff --git a/dns/nsd/distinfo b/dns/nsd/distinfo index 8f62ee9ec5a..0ddeb214b89 100644 --- a/dns/nsd/distinfo +++ b/dns/nsd/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1534374861 -SHA256 (nsd-4.1.24.tar.gz) = 4fb687c8e494610ad8692a127ac101ed73df851142a42766c33de06e54449311 -SIZE (nsd-4.1.24.tar.gz) = 1107574 +TIMESTAMP = 1538488121 +SHA256 (nsd-4.1.25.tar.gz) = 8f5bff5abbbb03c396afd7be575806cde1217e884c189fa34445e0ca4793df7f +SIZE (nsd-4.1.25.tar.gz) = 1108285 diff --git a/dns/p5-AnyEvent-CacheDNS/Makefile b/dns/p5-AnyEvent-CacheDNS/Makefile index f2ee2ca62da..4de0b49d1dc 100644 --- a/dns/p5-AnyEvent-CacheDNS/Makefile +++ b/dns/p5-AnyEvent-CacheDNS/Makefile @@ -13,8 +13,8 @@ COMMENT= Simple DNS resolver with caching LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-AnyEvent>=0:devel/p5-AnyEvent -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-AnyEvent>=0:devel/p5-AnyEvent NO_ARCH= yes USE_PERL5= modbuild diff --git a/dns/p5-BIND-Config-Parser/Makefile b/dns/p5-BIND-Config-Parser/Makefile index 2867086561d..5f48ca51613 100644 --- a/dns/p5-BIND-Config-Parser/Makefile +++ b/dns/p5-BIND-Config-Parser/Makefile @@ -12,8 +12,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Parse BIND Config files -BUILD_DEPENDS= p5-Parse-RecDescent>=0:devel/p5-Parse-RecDescent -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Parse-RecDescent>=0:devel/p5-Parse-RecDescent USES= perl5 USE_PERL5= configure diff --git a/dns/p5-DNS-EasyDNS/Makefile b/dns/p5-DNS-EasyDNS/Makefile index 099237bda3a..60ab938cdc7 100644 --- a/dns/p5-DNS-EasyDNS/Makefile +++ b/dns/p5-DNS-EasyDNS/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Update your EasyDNS dynamic DNS entries -BUILD_DEPENDS= p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-libwww>=0:www/p5-libwww USES= perl5 USE_PERL5= configure diff --git a/dns/p5-DSC/Makefile b/dns/p5-DSC/Makefile index fa921d55af0..82ca9dc5316 100644 --- a/dns/p5-DSC/Makefile +++ b/dns/p5-DSC/Makefile @@ -12,7 +12,8 @@ COMMENT= DNS Statistics Presenter Perl Library LICENSE= BSD3CLAUSE -BUILD_DEPENDS= ploticus>=2.40:math/ploticus \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= ploticus>=2.40:math/ploticus \ p5-CGI-Untaint>=1.26:www/p5-CGI-Untaint \ p5-File-NFSLock>=1.21:devel/p5-File-NFSLock \ p5-Hash-Merge>=0.299:textproc/p5-Hash-Merge \ @@ -24,7 +25,6 @@ BUILD_DEPENDS= ploticus>=2.40:math/ploticus \ p5-URI>=1.73:net/p5-URI \ p5-XML-Simple>=2.24:textproc/p5-XML-Simple -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/dns/p5-Data-Validate-Domain/Makefile b/dns/p5-Data-Validate-Domain/Makefile index e3f4cea0a52..27f6ac57c97 100644 --- a/dns/p5-Data-Validate-Domain/Makefile +++ b/dns/p5-Data-Validate-Domain/Makefile @@ -12,8 +12,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Data::Validate::Domain - domain validation methods -BUILD_DEPENDS= p5-Net-Domain-TLD>=0:dns/p5-Net-Domain-TLD -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Net-Domain-TLD>=0:dns/p5-Net-Domain-TLD USES= perl5 USE_PERL5= configure diff --git a/dns/p5-IO-Async-Resolver-DNS/Makefile b/dns/p5-IO-Async-Resolver-DNS/Makefile index fdbb91cd3b7..e4960ad6678 100644 --- a/dns/p5-IO-Async-Resolver-DNS/Makefile +++ b/dns/p5-IO-Async-Resolver-DNS/Makefile @@ -13,11 +13,11 @@ COMMENT= Resolve DNS queries using IO::Async LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Future>=0:devel/p5-Future \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Future>=0:devel/p5-Future \ p5-IO-Async>=0.52:devel/p5-IO-Async \ p5-List-UtilsBy>=0.07:devel/p5-List-UtilsBy \ p5-Net-DNS>=0:dns/p5-Net-DNS -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USE_PERL5= configure diff --git a/dns/p5-Mozilla-PublicSuffix/Makefile b/dns/p5-Mozilla-PublicSuffix/Makefile index 871f27307f1..86a5649e656 100644 --- a/dns/p5-Mozilla-PublicSuffix/Makefile +++ b/dns/p5-Mozilla-PublicSuffix/Makefile @@ -15,8 +15,8 @@ COMMENT= Get public suffix of domain name via Mozilla Public Suffix List LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= ${RUN_DEPENDS} PATCH_DEPENDS= public_suffix_list>=0:dns/public_suffix_list +BUILD_DEPENDS= ${RUN_DEPENDS} RUN_DEPENDS= p5-URI>=0:net/p5-URI USES= perl5 diff --git a/dns/p5-Net-Amazon-Route53/Makefile b/dns/p5-Net-Amazon-Route53/Makefile index dbc902622af..3f0671cba91 100644 --- a/dns/p5-Net-Amazon-Route53/Makefile +++ b/dns/p5-Net-Amazon-Route53/Makefile @@ -14,13 +14,13 @@ COMMENT= Manage your DNS entries on Amazon's Route53 service LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Crypt-SSLeay>=0:security/p5-Crypt-SSLeay \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Crypt-SSLeay>=0:security/p5-Crypt-SSLeay \ p5-Digest-HMAC>=0:security/p5-Digest-HMAC \ p5-HTML-Parser>=0:www/p5-HTML-Parser \ p5-Mouse>=0:devel/p5-Mouse \ p5-XML-Bare>=0:textproc/p5-XML-Bare \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} CONFLICTS= py[23][0-9]-boto-devel-[0-9]* diff --git a/dns/p5-Net-Bonjour/Makefile b/dns/p5-Net-Bonjour/Makefile index 1848ac6b4a8..ba0d3de8f16 100644 --- a/dns/p5-Net-Bonjour/Makefile +++ b/dns/p5-Net-Bonjour/Makefile @@ -14,8 +14,8 @@ COMMENT= Module for DNS service discovery LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Net-DNS>=0.5:dns/p5-Net-DNS -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Net-DNS>=0.5:dns/p5-Net-DNS USES= perl5 USE_PERL5= configure diff --git a/dns/p5-Net-DNS-Async/Makefile b/dns/p5-Net-DNS-Async/Makefile index 110c06fa748..44ed8a954d8 100644 --- a/dns/p5-Net-DNS-Async/Makefile +++ b/dns/p5-Net-DNS-Async/Makefile @@ -14,8 +14,8 @@ COMMENT= Asynchronous DNS helper for high volume applications LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Net-DNS>=0:dns/p5-Net-DNS -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Net-DNS>=0:dns/p5-Net-DNS USES= perl5 USE_PERL5= configure diff --git a/dns/p5-Net-DNS-Lite/Makefile b/dns/p5-Net-DNS-Lite/Makefile index fa2a8876645..97a36866dc1 100644 --- a/dns/p5-Net-DNS-Lite/Makefile +++ b/dns/p5-Net-DNS-Lite/Makefile @@ -14,8 +14,8 @@ COMMENT= Pure-Perl DNS resolver with support for timeout LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-List-MoreUtils>=0:lang/p5-List-MoreUtils -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-List-MoreUtils>=0:lang/p5-List-MoreUtils TEST_DEPENDS= p5-Cache-LRU>=0:devel/p5-Cache-LRU \ p5-Test-Requires>=0:devel/p5-Test-Requires diff --git a/dns/p5-Net-DNS-RR-SRV-Helper/Makefile b/dns/p5-Net-DNS-RR-SRV-Helper/Makefile index 7f3b373d756..7b818e97bfd 100644 --- a/dns/p5-Net-DNS-RR-SRV-Helper/Makefile +++ b/dns/p5-Net-DNS-RR-SRV-Helper/Makefile @@ -12,9 +12,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= vvelox@vvelox.net COMMENT= Orders SRV records by priority and weight for Net::DNS -BUILD_DEPENDS= p5-Net-DNS>=0.68:dns/p5-Net-DNS \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Net-DNS>=0.68:dns/p5-Net-DNS \ p5-Sort-Naturally>=1.03:textproc/p5-Sort-Naturally -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/dns/p5-Net-DNS-Resolver-Mock/Makefile b/dns/p5-Net-DNS-Resolver-Mock/Makefile index 768b64511c8..b70608e3e24 100644 --- a/dns/p5-Net-DNS-Resolver-Mock/Makefile +++ b/dns/p5-Net-DNS-Resolver-Mock/Makefile @@ -14,8 +14,8 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Net-DNS>=0:dns/p5-Net-DNS -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Net-DNS>=0:dns/p5-Net-DNS NO_ARCH= yes USE_PERL5= configure diff --git a/dns/p5-Net-DNS-Resolver-Programmable/Makefile b/dns/p5-Net-DNS-Resolver-Programmable/Makefile index eec132b8647..7235bddfd38 100644 --- a/dns/p5-Net-DNS-Resolver-Programmable/Makefile +++ b/dns/p5-Net-DNS-Resolver-Programmable/Makefile @@ -14,8 +14,8 @@ LICENSE= ART10 GPLv2+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Net-DNS>=0.69:dns/p5-Net-DNS -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Net-DNS>=0.69:dns/p5-Net-DNS NO_ARCH= yes USES= perl5 diff --git a/dns/p5-Net-DNS-TestNS/Makefile b/dns/p5-Net-DNS-TestNS/Makefile index 80139f40468..98f11f78f33 100644 --- a/dns/p5-Net-DNS-TestNS/Makefile +++ b/dns/p5-Net-DNS-TestNS/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= sunpoet@FreeBSD.org COMMENT= Perl extension for simulating simple Nameservers -BUILD_DEPENDS= p5-Net-DNS>=0.64:dns/p5-Net-DNS \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Net-DNS>=0.64:dns/p5-Net-DNS \ p5-XML-LibXML>=1.53:textproc/p5-XML-LibXML -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USE_PERL5= configure diff --git a/dns/p5-Net-DNS-ToolKit/Makefile b/dns/p5-Net-DNS-ToolKit/Makefile index 530ef817a51..f82e6085d4f 100644 --- a/dns/p5-Net-DNS-ToolKit/Makefile +++ b/dns/p5-Net-DNS-ToolKit/Makefile @@ -14,9 +14,9 @@ COMMENT= Tools for working with DNS packets LICENSE= ART10 GPLv2 GPLv3 LICENSE_COMB= dual -BUILD_DEPENDS= p5-Net-DNS-Codes>=0.09:dns/p5-Net-DNS-Codes \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Net-DNS-Codes>=0.09:dns/p5-Net-DNS-Codes \ p5-NetAddr-IP>=1.30:net-mgmt/p5-NetAddr-IP -RUN_DEPENDS:= ${BUILD_DEPENDS} MAKE_JOBS_UNSAFE= yes USES= perl5 diff --git a/dns/p5-Net-DNS-ZoneFile-Fast/Makefile b/dns/p5-Net-DNS-ZoneFile-Fast/Makefile index b773ef3e783..453681ca960 100644 --- a/dns/p5-Net-DNS-ZoneFile-Fast/Makefile +++ b/dns/p5-Net-DNS-ZoneFile-Fast/Makefile @@ -12,9 +12,9 @@ COMMENT= Perl module to parse BIND8/9 zone files LICENSE= BSD3CLAUSE -BUILD_DEPENDS= p5-Net-DNS>=0.65:dns/p5-Net-DNS \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Net-DNS>=0.65:dns/p5-Net-DNS \ p5-Net-DNS-SEC>=0.15:dns/p5-Net-DNS-SEC -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/dns/p5-Net-DNSBL-MultiDaemon/Makefile b/dns/p5-Net-DNSBL-MultiDaemon/Makefile index 715324f7c67..1091766d7f2 100644 --- a/dns/p5-Net-DNSBL-MultiDaemon/Makefile +++ b/dns/p5-Net-DNSBL-MultiDaemon/Makefile @@ -14,14 +14,14 @@ COMMENT= Net::DNSBL::MultiDaemon - multi DNSBL prioritization LICENSE= ART10 GPLv1 GPLv2 GPLv3 LICENSE_COMB= dual -BUILD_DEPENDS= p5-File-SafeDO>=0.12:devel/p5-File-SafeDO \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-File-SafeDO>=0.12:devel/p5-File-SafeDO \ p5-Geo-IP-PurePerl>=1.10:net/p5-Geo-IP-PurePerl \ p5-Net-DNS-Codes>=0.09:dns/p5-Net-DNS-Codes \ p5-Net-DNS-ToolKit>=0.47:dns/p5-Net-DNS-ToolKit \ p5-Net-NBsocket>=0.23:net/p5-Net-NBsocket \ p5-NetAddr-IP>=4.067:net-mgmt/p5-NetAddr-IP \ p5-Unix-Syslog>=0.97:sysutils/p5-Unix-Syslog -RUN_DEPENDS:= ${BUILD_DEPENDS} OPTIONS_DEFINE= RHBL OPTIONS_DEFAULT=RHBL diff --git a/dns/p5-Net-DNSBL-Statistics/Makefile b/dns/p5-Net-DNSBL-Statistics/Makefile index 1ab45a8a82b..512e7545525 100644 --- a/dns/p5-Net-DNSBL-Statistics/Makefile +++ b/dns/p5-Net-DNSBL-Statistics/Makefile @@ -14,10 +14,10 @@ COMMENT= Gather DNSBL Statistics LICENSE= GPLv2 GPLv3 LICENSE_COMB= dual -BUILD_DEPENDS= p5-Net-DNS-Codes>=0.09:dns/p5-Net-DNS-Codes \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Net-DNS-Codes>=0.09:dns/p5-Net-DNS-Codes \ p5-Net-DNS-ToolKit>=0.41:dns/p5-Net-DNS-ToolKit \ p5-Net-DNSBL-MultiDaemon>=0.26:dns/p5-Net-DNSBL-MultiDaemon -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USE_PERL5= configure diff --git a/dns/p5-Net-Domain-ExpireDate/Makefile b/dns/p5-Net-Domain-ExpireDate/Makefile index ccd1bb23aba..0bd613cd245 100644 --- a/dns/p5-Net-Domain-ExpireDate/Makefile +++ b/dns/p5-Net-Domain-ExpireDate/Makefile @@ -10,8 +10,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Perl module obtain expiration date of domain names -BUILD_DEPENDS= p5-Net-Whois-Raw>=0:net/p5-Net-Whois-Raw -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Net-Whois-Raw>=0:net/p5-Net-Whois-Raw NO_ARCH= yes USES= perl5 diff --git a/dns/p5-Net-Nslookup/Makefile b/dns/p5-Net-Nslookup/Makefile index ac2a394e0ce..91a0868a1eb 100644 --- a/dns/p5-Net-Nslookup/Makefile +++ b/dns/p5-Net-Nslookup/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Provides the capabilities of the standard tool nslookup(1) -BUILD_DEPENDS= p5-Net-DNS>=0:dns/p5-Net-DNS -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Net-DNS>=0:dns/p5-Net-DNS USES= perl5 USE_PERL5= configure diff --git a/dns/p5-Net-RBLClient/Makefile b/dns/p5-Net-RBLClient/Makefile index f669e690796..f973afffdca 100644 --- a/dns/p5-Net-RBLClient/Makefile +++ b/dns/p5-Net-RBLClient/Makefile @@ -14,8 +14,8 @@ COMMENT= Queries multiple Realtime Blackhole Lists in parallel LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Net-DNS>=0:dns/p5-Net-DNS -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Net-DNS>=0:dns/p5-Net-DNS NO_ARCH= yes USE_PERL5= configure diff --git a/dns/p5-POE-Component-Client-DNS-Recursive/Makefile b/dns/p5-POE-Component-Client-DNS-Recursive/Makefile index 8662d5aface..16730b1b689 100644 --- a/dns/p5-POE-Component-Client-DNS-Recursive/Makefile +++ b/dns/p5-POE-Component-Client-DNS-Recursive/Makefile @@ -14,10 +14,10 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Net-DNS>=0:dns/p5-Net-DNS \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Net-DNS>=0:dns/p5-Net-DNS \ p5-Net-IP-Minimal>=0:net/p5-Net-IP-Minimal \ p5-POE>=1.004:devel/p5-POE -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/dns/p5-POE-Component-Client-DNS/Makefile b/dns/p5-POE-Component-Client-DNS/Makefile index 68c26e1f7c0..cc8f49fa77a 100644 --- a/dns/p5-POE-Component-Client-DNS/Makefile +++ b/dns/p5-POE-Component-Client-DNS/Makefile @@ -15,9 +15,9 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Net-DNS>=0.65:dns/p5-Net-DNS \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Net-DNS>=0.65:dns/p5-Net-DNS \ p5-POE>=1.249:devel/p5-POE -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-NoWarnings>=1.02:devel/p5-Test-NoWarnings NO_ARCH= yes diff --git a/dns/p5-POE-Component-Client-DNSBL/Makefile b/dns/p5-POE-Component-Client-DNSBL/Makefile index 12b0914ecbb..7a81ffa817e 100644 --- a/dns/p5-POE-Component-Client-DNSBL/Makefile +++ b/dns/p5-POE-Component-Client-DNSBL/Makefile @@ -11,10 +11,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Perl POE component that provides non-blocking DNSBL lookups -BUILD_DEPENDS= p5-POE>=1.004:devel/p5-POE \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-POE>=1.004:devel/p5-POE \ p5-Net-IP-Minimal>=0:net/p5-Net-IP-Minimal \ p5-POE-Component-Client-DNS>=0:dns/p5-POE-Component-Client-DNS -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/dns/p5-POE-Component-Resolver/Makefile b/dns/p5-POE-Component-Resolver/Makefile index 8270e031149..f408f1f594a 100644 --- a/dns/p5-POE-Component-Resolver/Makefile +++ b/dns/p5-POE-Component-Resolver/Makefile @@ -16,8 +16,8 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-POE>=1.311:devel/p5-POE -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-POE>=1.311:devel/p5-POE NO_ARCH= yes USES= perl5 diff --git a/dns/p5-POE-Component-Server-DNS/Makefile b/dns/p5-POE-Component-Server-DNS/Makefile index dfc5182d125..baae718d444 100644 --- a/dns/p5-POE-Component-Server-DNS/Makefile +++ b/dns/p5-POE-Component-Server-DNS/Makefile @@ -14,13 +14,13 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Net-DNS>=0.58:dns/p5-Net-DNS \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Net-DNS>=0.58:dns/p5-Net-DNS \ p5-POE>=0.38:devel/p5-POE \ p5-POE-Component-Client-DNS>=1.051:dns/p5-POE-Component-Client-DNS \ p5-POE-Component-Client-DNS-Recursive>=1.04:dns/p5-POE-Component-Client-DNS-Recursive \ p5-POE-Component-Generic>=0.0910:net/p5-POE-Component-Generic \ p5-POE-Filter-DNS-TCP>=0.04:dns/p5-POE-Filter-DNS-TCP -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/dns/p5-Tie-DNS/Makefile b/dns/p5-Tie-DNS/Makefile index f78ac5c6b9c..72b2f5d568e 100644 --- a/dns/p5-Tie-DNS/Makefile +++ b/dns/p5-Tie-DNS/Makefile @@ -14,9 +14,9 @@ COMMENT= Tie interface to Net::DNS LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Net-DNS>=0:dns/p5-Net-DNS \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Net-DNS>=0:dns/p5-Net-DNS \ p5-Tie-Cache>=0:devel/p5-Tie-Cache -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-CheckManifest>=0:devel/p5-Test-CheckManifest \ p5-Test-Perl-Critic>=0:textproc/p5-Test-Perl-Critic diff --git a/dns/p5-pgeodns/Makefile b/dns/p5-pgeodns/Makefile index 4a51db74b73..7d9955b328c 100644 --- a/dns/p5-pgeodns/Makefile +++ b/dns/p5-pgeodns/Makefile @@ -10,10 +10,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Geographic NameServer -BUILD_DEPENDS= p5-Geo-IP>=0:net/p5-Geo-IP \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Geo-IP>=0:net/p5-Geo-IP \ p5-JSON>=0:converters/p5-JSON \ p5-Net-DNS>=0:dns/p5-Net-DNS -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Warn>=0:devel/p5-Test-Warn USES= perl5 diff --git a/dns/powerdns-recursor/Makefile b/dns/powerdns-recursor/Makefile index b407f194094..ce42a55a808 100644 --- a/dns/powerdns-recursor/Makefile +++ b/dns/powerdns-recursor/Makefile @@ -3,6 +3,7 @@ PORTNAME= recursor DISTVERSION= 4.1.4 +PORTREVISION= 1 CATEGORIES= dns ipv6 MASTER_SITES= http://downloads.powerdns.com/releases/ PKGNAMEPREFIX= powerdns- diff --git a/dns/powerdns-recursor40/Makefile b/dns/powerdns-recursor40/Makefile index 2d4e2fb4f02..62a7c895bba 100644 --- a/dns/powerdns-recursor40/Makefile +++ b/dns/powerdns-recursor40/Makefile @@ -3,7 +3,7 @@ PORTNAME= recursor DISTVERSION= 4.0.8 -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= dns ipv6 MASTER_SITES= http://downloads.powerdns.com/releases/ PKGNAMEPREFIX= powerdns- diff --git a/dns/powerdns/Makefile b/dns/powerdns/Makefile index cea6cb79407..e7a01e69d1f 100644 --- a/dns/powerdns/Makefile +++ b/dns/powerdns/Makefile @@ -2,6 +2,7 @@ PORTNAME= powerdns DISTVERSION= 4.1.4 +PORTREVISION= 1 CATEGORIES= dns ipv6 MASTER_SITES= http://downloads.powerdns.com/releases/ DISTNAME= pdns-${DISTVERSION} diff --git a/dns/py-adns/Makefile b/dns/py-adns/Makefile index 176a0d71333..e0fd6ed53f7 100644 --- a/dns/py-adns/Makefile +++ b/dns/py-adns/Makefile @@ -8,7 +8,7 @@ CATEGORIES= dns python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -MAINTAINER= lebarondemerde@privacychain.ch +MAINTAINER= rigoletto@FreeBSD.org COMMENT= Python module to resolve IPs to host names LICENSE= GPLv2+ diff --git a/dns/py-dns-lexicon/Makefile b/dns/py-dns-lexicon/Makefile index 4774cdbce56..dbfde6003c7 100644 --- a/dns/py-dns-lexicon/Makefile +++ b/dns/py-dns-lexicon/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= dns-lexicon -DISTVERSION= 2.7.0 +DISTVERSION= 2.7.9 CATEGORIES= dns python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/dns/py-dns-lexicon/distinfo b/dns/py-dns-lexicon/distinfo index a7081142359..05e5a6960ac 100644 --- a/dns/py-dns-lexicon/distinfo +++ b/dns/py-dns-lexicon/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1532164313 -SHA256 (dns-lexicon-2.7.0.tar.gz) = 1ff9b720d15f07712388d5df95853dc5fe3ee4c870398ee312c310f941fd809a -SIZE (dns-lexicon-2.7.0.tar.gz) = 67613 +TIMESTAMP = 1538742750 +SHA256 (dns-lexicon-2.7.9.tar.gz) = 897178b2c00c6c34403a0441bc1df9763a1d2dd8f8db52486a9ac6a102d2242e +SIZE (dns-lexicon-2.7.9.tar.gz) = 72697 diff --git a/editors/Makefile b/editors/Makefile index 4f01d9fbcf6..f0cc24d524c 100644 --- a/editors/Makefile +++ b/editors/Makefile @@ -51,6 +51,7 @@ SUBDIR += ghex SUBDIR += ghostwriter SUBDIR += gmanedit + SUBDIR += gnome-latex SUBDIR += gnotepad+ SUBDIR += gobby SUBDIR += gomate @@ -77,7 +78,6 @@ SUBDIR += kile-kde4 SUBDIR += klat4 SUBDIR += komodo-edit - SUBDIR += latexila SUBDIR += lazarus SUBDIR += lazarus-qt4 SUBDIR += lazarus-qt5 diff --git a/editors/encryptpad/Makefile b/editors/encryptpad/Makefile index ca69604c623..157a2e662be 100644 --- a/editors/encryptpad/Makefile +++ b/editors/encryptpad/Makefile @@ -4,6 +4,7 @@ PORTNAME= encryptpad DISTVERSIONPREFIX= v DISTVERSION= 0.4.0.4 +PORTREVISION= 1 CATEGORIES= editors security MAINTAINER= dg@syrec.org diff --git a/editors/latexila/Makefile b/editors/gnome-latex/Makefile similarity index 59% rename from editors/latexila/Makefile rename to editors/gnome-latex/Makefile index b571be00de4..9cf88caec33 100644 --- a/editors/latexila/Makefile +++ b/editors/gnome-latex/Makefile @@ -1,14 +1,13 @@ # Created by: Olivier Duchateau # $FreeBSD$ -PORTNAME= latexila -PORTVERSION= 3.22.1 -PORTREVISION= 2 +PORTNAME= gnome-latex +PORTVERSION= 3.28.1 CATEGORIES= editors MASTER_SITES= GNOME -DIST_SUBDIR= gnome3 +DIST_SUBDIR= gnome -MAINTAINER= ports@FreeBSD.org +MAINTAINER= gnome@FreeBSD.org COMMENT= Integrated LaTeX environment LICENSE= GPLv3 @@ -17,12 +16,15 @@ BUILD_DEPENDS= valac:lang/vala \ itstool:textproc/itstool \ gsettings-desktop-schemas>=0:devel/gsettings-desktop-schemas LIB_DEPENDS= libgee-0.8.so:devel/libgee \ + libfribidi.so:converters/fribidi \ + libenchant-2.so:textproc/enchant2 \ + libtepl-4.so:x11-toolkits/tepl \ libgspell-1.so:textproc/gspell -USES= compiler:c11 desktop-file-utils gettext-tools gmake pkgconfig \ - tar:xz +USES= compiler:c11 desktop-file-utils gettext gmake gnome \ + pkgconfig tar:xz GNU_CONFIGURE= yes -USE_GNOME= cairo glib20 gtk30 gtksourceview3 intltool intlhack libxml2 +USE_GNOME= cairo dconf intltool gtksourceview4 USE_TEX= latex dvipsk INSTALLS_ICONS= yes INSTALL_TARGET= install-strip @@ -32,6 +34,6 @@ NLS_USES= gettext-runtime NLS_CONFIGURE_ENABLE= nls OPTIONS_SUB= yes -GLIB_SCHEMAS= org.gnome.latexila.gschema.xml +GLIB_SCHEMAS= org.gnome.gnome-latex.gschema.xml .include diff --git a/editors/gnome-latex/distinfo b/editors/gnome-latex/distinfo new file mode 100644 index 00000000000..a606b0e2146 --- /dev/null +++ b/editors/gnome-latex/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1527915639 +SHA256 (gnome/gnome-latex-3.28.1.tar.xz) = 02105e81765388faa9f75ccb43b745b1d66bfb14285b7855e6a7809e7f0c88fc +SIZE (gnome/gnome-latex-3.28.1.tar.xz) = 1082708 diff --git a/editors/latexila/pkg-descr b/editors/gnome-latex/pkg-descr similarity index 100% rename from editors/latexila/pkg-descr rename to editors/gnome-latex/pkg-descr diff --git a/editors/gnome-latex/pkg-plist b/editors/gnome-latex/pkg-plist new file mode 100644 index 00000000000..98c961084f3 --- /dev/null +++ b/editors/gnome-latex/pkg-plist @@ -0,0 +1,181 @@ +bin/gnome-latex +man/man1/gnome-latex.1.gz +share/applications/org.gnome.gnome-latex.desktop +share/dbus-1/services/org.gnome.gnome-latex.service +%%DATADIR%%/build_tools.xml +%%DATADIR%%/completion.xml +%%DATADIR%%/latexhelp.html +%%DATADIR%%/templates/article.xml +%%DATADIR%%/templates/beamer.xml +%%DATADIR%%/templates/book.xml +%%DATADIR%%/templates/letter.xml +%%DATADIR%%/templates/report.xml +%%DATADIR%%/ui/preferences_dialog.ui +%%DATADIR%%/ui/ui.xml +share/gtk-doc/html/gnome-latex/LatexilaBuildJob.html +share/gtk-doc/html/gnome-latex/LatexilaBuildTool.html +share/gtk-doc/html/gnome-latex/LatexilaBuildTools.html +share/gtk-doc/html/gnome-latex/LatexilaBuildToolsDefault.html +share/gtk-doc/html/gnome-latex/LatexilaBuildToolsPersonal.html +share/gtk-doc/html/gnome-latex/LatexilaBuildView.html +share/gtk-doc/html/gnome-latex/LatexilaPostProcessor.html +share/gtk-doc/html/gnome-latex/LatexilaPostProcessorAllOutput.html +share/gtk-doc/html/gnome-latex/LatexilaPostProcessorLatex.html +share/gtk-doc/html/gnome-latex/LatexilaPostProcessorLatexmk.html +share/gtk-doc/html/gnome-latex/LatexilaSynctex.html +share/gtk-doc/html/gnome-latex/LatexilaTemplatesDefault.html +share/gtk-doc/html/gnome-latex/LatexilaTemplatesManageDialog.html +share/gtk-doc/html/gnome-latex/LatexilaTemplatesPersonal.html +share/gtk-doc/html/gnome-latex/annexes.html +share/gtk-doc/html/gnome-latex/annotation-glossary.html +share/gtk-doc/html/gnome-latex/api-reference.html +share/gtk-doc/html/gnome-latex/ch01.html +share/gtk-doc/html/gnome-latex/ch02.html +share/gtk-doc/html/gnome-latex/ch03.html +share/gtk-doc/html/gnome-latex/ch04.html +share/gtk-doc/html/gnome-latex/gnome-latex-LaTeX-commands.html +share/gtk-doc/html/gnome-latex/gnome-latex-LatexilaTemplatesDialogs.html +share/gtk-doc/html/gnome-latex/gnome-latex-LatexilaUtils.html +share/gtk-doc/html/gnome-latex/gnome-latex-LatexilaView.html +share/gtk-doc/html/gnome-latex/gnome-latex.devhelp2 +share/gtk-doc/html/gnome-latex/home.png +share/gtk-doc/html/gnome-latex/index.html +share/gtk-doc/html/gnome-latex/ix01.html +share/gtk-doc/html/gnome-latex/left-insensitive.png +share/gtk-doc/html/gnome-latex/left.png +share/gtk-doc/html/gnome-latex/object-tree.html +share/gtk-doc/html/gnome-latex/right-insensitive.png +share/gtk-doc/html/gnome-latex/right.png +share/gtk-doc/html/gnome-latex/style.css +share/gtk-doc/html/gnome-latex/up-insensitive.png +share/gtk-doc/html/gnome-latex/up.png +share/help/C/gnome-latex/build_tools.page +share/help/C/gnome-latex/completion.page +share/help/C/gnome-latex/index.page +share/help/C/gnome-latex/projects.page +share/help/C/gnome-latex/spell_checking.page +share/help/C/gnome-latex/structure.page +share/help/C/gnome-latex/synctex.page +share/help/cs/gnome-latex/build_tools.page +share/help/cs/gnome-latex/completion.page +share/help/cs/gnome-latex/index.page +share/help/cs/gnome-latex/projects.page +share/help/cs/gnome-latex/spell_checking.page +share/help/cs/gnome-latex/structure.page +share/help/cs/gnome-latex/synctex.page +share/help/de/gnome-latex/build_tools.page +share/help/de/gnome-latex/completion.page +share/help/de/gnome-latex/index.page +share/help/de/gnome-latex/projects.page +share/help/de/gnome-latex/spell_checking.page +share/help/de/gnome-latex/structure.page +share/help/de/gnome-latex/synctex.page +share/help/el/gnome-latex/build_tools.page +share/help/el/gnome-latex/completion.page +share/help/el/gnome-latex/index.page +share/help/el/gnome-latex/projects.page +share/help/el/gnome-latex/spell_checking.page +share/help/el/gnome-latex/structure.page +share/help/el/gnome-latex/synctex.page +share/help/es/gnome-latex/build_tools.page +share/help/es/gnome-latex/completion.page +share/help/es/gnome-latex/index.page +share/help/es/gnome-latex/projects.page +share/help/es/gnome-latex/spell_checking.page +share/help/es/gnome-latex/structure.page +share/help/es/gnome-latex/synctex.page +share/help/fr/gnome-latex/build_tools.page +share/help/fr/gnome-latex/completion.page +share/help/fr/gnome-latex/index.page +share/help/fr/gnome-latex/projects.page +share/help/fr/gnome-latex/spell_checking.page +share/help/fr/gnome-latex/structure.page +share/help/fr/gnome-latex/synctex.page +share/help/gl/gnome-latex/build_tools.page +share/help/gl/gnome-latex/completion.page +share/help/gl/gnome-latex/index.page +share/help/gl/gnome-latex/projects.page +share/help/gl/gnome-latex/spell_checking.page +share/help/gl/gnome-latex/structure.page +share/help/gl/gnome-latex/synctex.page +share/help/hu/gnome-latex/build_tools.page +share/help/hu/gnome-latex/completion.page +share/help/hu/gnome-latex/index.page +share/help/hu/gnome-latex/projects.page +share/help/hu/gnome-latex/spell_checking.page +share/help/hu/gnome-latex/structure.page +share/help/hu/gnome-latex/synctex.page +share/help/pl/gnome-latex/build_tools.page +share/help/pl/gnome-latex/completion.page +share/help/pl/gnome-latex/index.page +share/help/pl/gnome-latex/projects.page +share/help/pl/gnome-latex/spell_checking.page +share/help/pl/gnome-latex/structure.page +share/help/pl/gnome-latex/synctex.page +share/help/pt_BR/gnome-latex/build_tools.page +share/help/pt_BR/gnome-latex/completion.page +share/help/pt_BR/gnome-latex/index.page +share/help/pt_BR/gnome-latex/projects.page +share/help/pt_BR/gnome-latex/spell_checking.page +share/help/pt_BR/gnome-latex/structure.page +share/help/pt_BR/gnome-latex/synctex.page +share/help/ru/gnome-latex/build_tools.page +share/help/ru/gnome-latex/completion.page +share/help/ru/gnome-latex/index.page +share/help/ru/gnome-latex/projects.page +share/help/ru/gnome-latex/spell_checking.page +share/help/ru/gnome-latex/structure.page +share/help/ru/gnome-latex/synctex.page +share/help/sv/gnome-latex/build_tools.page +share/help/sv/gnome-latex/completion.page +share/help/sv/gnome-latex/index.page +share/help/sv/gnome-latex/projects.page +share/help/sv/gnome-latex/spell_checking.page +share/help/sv/gnome-latex/structure.page +share/help/sv/gnome-latex/synctex.page +share/help/uk/gnome-latex/build_tools.page +share/help/uk/gnome-latex/completion.page +share/help/uk/gnome-latex/index.page +share/help/uk/gnome-latex/projects.page +share/help/uk/gnome-latex/spell_checking.page +share/help/uk/gnome-latex/structure.page +share/help/uk/gnome-latex/synctex.page +share/icons/hicolor/128x128/apps/gnome-latex.png +share/icons/hicolor/16x16/apps/gnome-latex.png +share/icons/hicolor/22x22/apps/gnome-latex.png +share/icons/hicolor/24x24/apps/gnome-latex.png +share/icons/hicolor/256x256/apps/gnome-latex.png +share/icons/hicolor/32x32/apps/gnome-latex.png +share/icons/hicolor/48x48/apps/gnome-latex.png +share/icons/hicolor/scalable/apps/gnome-latex.svg +%%NLS%%share/locale/bs/LC_MESSAGES/gnome-latex.mo +%%NLS%%share/locale/ca/LC_MESSAGES/gnome-latex.mo +%%NLS%%share/locale/cs/LC_MESSAGES/gnome-latex.mo +%%NLS%%share/locale/de/LC_MESSAGES/gnome-latex.mo +%%NLS%%share/locale/el/LC_MESSAGES/gnome-latex.mo +%%NLS%%share/locale/eo/LC_MESSAGES/gnome-latex.mo +%%NLS%%share/locale/es/LC_MESSAGES/gnome-latex.mo +%%NLS%%share/locale/eu/LC_MESSAGES/gnome-latex.mo +%%NLS%%share/locale/fr/LC_MESSAGES/gnome-latex.mo +%%NLS%%share/locale/gl/LC_MESSAGES/gnome-latex.mo +%%NLS%%share/locale/he/LC_MESSAGES/gnome-latex.mo +%%NLS%%share/locale/hu/LC_MESSAGES/gnome-latex.mo +%%NLS%%share/locale/id/LC_MESSAGES/gnome-latex.mo +%%NLS%%share/locale/it/LC_MESSAGES/gnome-latex.mo +%%NLS%%share/locale/lt/LC_MESSAGES/gnome-latex.mo +%%NLS%%share/locale/lv/LC_MESSAGES/gnome-latex.mo +%%NLS%%share/locale/nb/LC_MESSAGES/gnome-latex.mo +%%NLS%%share/locale/nl/LC_MESSAGES/gnome-latex.mo +%%NLS%%share/locale/oc/LC_MESSAGES/gnome-latex.mo +%%NLS%%share/locale/pl/LC_MESSAGES/gnome-latex.mo +%%NLS%%share/locale/pt/LC_MESSAGES/gnome-latex.mo +%%NLS%%share/locale/pt_BR/LC_MESSAGES/gnome-latex.mo +%%NLS%%share/locale/ru/LC_MESSAGES/gnome-latex.mo +%%NLS%%share/locale/sl/LC_MESSAGES/gnome-latex.mo +%%NLS%%share/locale/sr/LC_MESSAGES/gnome-latex.mo +%%NLS%%share/locale/sr@latin/LC_MESSAGES/gnome-latex.mo +%%NLS%%share/locale/sv/LC_MESSAGES/gnome-latex.mo +%%NLS%%share/locale/tr/LC_MESSAGES/gnome-latex.mo +%%NLS%%share/locale/uk/LC_MESSAGES/gnome-latex.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/gnome-latex.mo +share/metainfo/org.gnome.gnome-latex.appdata.xml diff --git a/editors/latexila/distinfo b/editors/latexila/distinfo deleted file mode 100644 index 94571ae4007..00000000000 --- a/editors/latexila/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -TIMESTAMP = 1494145558 -SHA256 (gnome3/latexila-3.22.1.tar.xz) = 41692d850a48521d2a700ae296680464078ef0bef1c1383383b433c5ecdf2719 -SIZE (gnome3/latexila-3.22.1.tar.xz) = 1111820 diff --git a/editors/latexila/pkg-plist b/editors/latexila/pkg-plist deleted file mode 100644 index b1c096556ec..00000000000 --- a/editors/latexila/pkg-plist +++ /dev/null @@ -1,168 +0,0 @@ -bin/latexila -man/man1/latexila.1.gz -share/appdata/org.gnome.latexila.appdata.xml -share/applications/org.gnome.latexila.desktop -share/dbus-1/services/org.gnome.latexila.service -share/gtk-doc/html/latexila/LatexilaBuildJob.html -share/gtk-doc/html/latexila/LatexilaBuildTool.html -share/gtk-doc/html/latexila/LatexilaBuildTools.html -share/gtk-doc/html/latexila/LatexilaBuildToolsDefault.html -share/gtk-doc/html/latexila/LatexilaBuildToolsPersonal.html -share/gtk-doc/html/latexila/LatexilaBuildView.html -share/gtk-doc/html/latexila/LatexilaPostProcessor.html -share/gtk-doc/html/latexila/LatexilaPostProcessorAllOutput.html -share/gtk-doc/html/latexila/LatexilaPostProcessorLatex.html -share/gtk-doc/html/latexila/LatexilaPostProcessorLatexmk.html -share/gtk-doc/html/latexila/LatexilaSynctex.html -share/gtk-doc/html/latexila/LatexilaTemplatesDefault.html -share/gtk-doc/html/latexila/LatexilaTemplatesManageDialog.html -share/gtk-doc/html/latexila/LatexilaTemplatesPersonal.html -share/gtk-doc/html/latexila/annotation-glossary.html -share/gtk-doc/html/latexila/ch01.html -share/gtk-doc/html/latexila/home.png -share/gtk-doc/html/latexila/index.html -share/gtk-doc/html/latexila/ix01.html -share/gtk-doc/html/latexila/latexila-LatexilaTemplatesDialogs.html -share/gtk-doc/html/latexila/latexila-LatexilaUtils.html -share/gtk-doc/html/latexila/latexila.devhelp2 -share/gtk-doc/html/latexila/left-insensitive.png -share/gtk-doc/html/latexila/left.png -share/gtk-doc/html/latexila/object-tree.html -share/gtk-doc/html/latexila/right-insensitive.png -share/gtk-doc/html/latexila/right.png -share/gtk-doc/html/latexila/style.css -share/gtk-doc/html/latexila/up-insensitive.png -share/gtk-doc/html/latexila/up.png -share/help/C/latexila/build_tools.page -share/help/C/latexila/completion.page -share/help/C/latexila/index.page -share/help/C/latexila/projects.page -share/help/C/latexila/spell_checking.page -share/help/C/latexila/structure.page -share/help/C/latexila/synctex.page -share/help/cs/latexila/build_tools.page -share/help/cs/latexila/completion.page -share/help/cs/latexila/index.page -share/help/cs/latexila/projects.page -share/help/cs/latexila/spell_checking.page -share/help/cs/latexila/structure.page -share/help/cs/latexila/synctex.page -share/help/de/latexila/build_tools.page -share/help/de/latexila/completion.page -share/help/de/latexila/index.page -share/help/de/latexila/projects.page -share/help/de/latexila/spell_checking.page -share/help/de/latexila/structure.page -share/help/de/latexila/synctex.page -share/help/el/latexila/build_tools.page -share/help/el/latexila/completion.page -share/help/el/latexila/index.page -share/help/el/latexila/projects.page -share/help/el/latexila/spell_checking.page -share/help/el/latexila/structure.page -share/help/el/latexila/synctex.page -share/help/es/latexila/build_tools.page -share/help/es/latexila/completion.page -share/help/es/latexila/index.page -share/help/es/latexila/projects.page -share/help/es/latexila/spell_checking.page -share/help/es/latexila/structure.page -share/help/es/latexila/synctex.page -share/help/fr/latexila/build_tools.page -share/help/fr/latexila/completion.page -share/help/fr/latexila/index.page -share/help/fr/latexila/projects.page -share/help/fr/latexila/spell_checking.page -share/help/fr/latexila/structure.page -share/help/fr/latexila/synctex.page -share/help/gl/latexila/build_tools.page -share/help/gl/latexila/completion.page -share/help/gl/latexila/index.page -share/help/gl/latexila/projects.page -share/help/gl/latexila/spell_checking.page -share/help/gl/latexila/structure.page -share/help/gl/latexila/synctex.page -share/help/hu/latexila/build_tools.page -share/help/hu/latexila/completion.page -share/help/hu/latexila/index.page -share/help/hu/latexila/projects.page -share/help/hu/latexila/spell_checking.page -share/help/hu/latexila/structure.page -share/help/hu/latexila/synctex.page -share/help/pt_BR/latexila/build_tools.page -share/help/pt_BR/latexila/completion.page -share/help/pt_BR/latexila/index.page -share/help/pt_BR/latexila/projects.page -share/help/pt_BR/latexila/spell_checking.page -share/help/pt_BR/latexila/structure.page -share/help/pt_BR/latexila/synctex.page -share/help/ru/latexila/build_tools.page -share/help/ru/latexila/completion.page -share/help/ru/latexila/index.page -share/help/ru/latexila/projects.page -share/help/ru/latexila/spell_checking.page -share/help/ru/latexila/structure.page -share/help/ru/latexila/synctex.page -share/help/sv/latexila/build_tools.page -share/help/sv/latexila/completion.page -share/help/sv/latexila/index.page -share/help/sv/latexila/projects.page -share/help/sv/latexila/spell_checking.page -share/help/sv/latexila/structure.page -share/help/sv/latexila/synctex.page -share/help/uk/latexila/build_tools.page -share/help/uk/latexila/completion.page -share/help/uk/latexila/index.page -share/help/uk/latexila/projects.page -share/help/uk/latexila/spell_checking.page -share/help/uk/latexila/structure.page -share/help/uk/latexila/synctex.page -share/icons/hicolor/128x128/apps/latexila.png -share/icons/hicolor/16x16/apps/latexila.png -share/icons/hicolor/22x22/apps/latexila.png -share/icons/hicolor/24x24/apps/latexila.png -share/icons/hicolor/256x256/apps/latexila.png -share/icons/hicolor/32x32/apps/latexila.png -share/icons/hicolor/48x48/apps/latexila.png -share/icons/hicolor/scalable/apps/latexila.svg -%%DATADIR%%/build_tools.xml -%%DATADIR%%/completion.xml -%%DATADIR%%/images/app/logo.png -%%DATADIR%%/latexhelp.html -%%DATADIR%%/templates/article.xml -%%DATADIR%%/templates/beamer.xml -%%DATADIR%%/templates/book.xml -%%DATADIR%%/templates/letter.xml -%%DATADIR%%/templates/report.xml -%%DATADIR%%/ui/preferences_dialog.ui -%%DATADIR%%/ui/ui.xml -%%NLS%%share/locale/bs/LC_MESSAGES/latexila.mo -%%NLS%%share/locale/ca/LC_MESSAGES/latexila.mo -%%NLS%%share/locale/cs/LC_MESSAGES/latexila.mo -%%NLS%%share/locale/de/LC_MESSAGES/latexila.mo -%%NLS%%share/locale/el/LC_MESSAGES/latexila.mo -%%NLS%%share/locale/eo/LC_MESSAGES/latexila.mo -%%NLS%%share/locale/es/LC_MESSAGES/latexila.mo -%%NLS%%share/locale/eu/LC_MESSAGES/latexila.mo -%%NLS%%share/locale/fr/LC_MESSAGES/latexila.mo -%%NLS%%share/locale/gl/LC_MESSAGES/latexila.mo -%%NLS%%share/locale/he/LC_MESSAGES/latexila.mo -%%NLS%%share/locale/hu/LC_MESSAGES/latexila.mo -%%NLS%%share/locale/id/LC_MESSAGES/latexila.mo -%%NLS%%share/locale/it/LC_MESSAGES/latexila.mo -%%NLS%%share/locale/lt/LC_MESSAGES/latexila.mo -%%NLS%%share/locale/lv/LC_MESSAGES/latexila.mo -%%NLS%%share/locale/nb/LC_MESSAGES/latexila.mo -%%NLS%%share/locale/nl/LC_MESSAGES/latexila.mo -%%NLS%%share/locale/oc/LC_MESSAGES/latexila.mo -%%NLS%%share/locale/pl/LC_MESSAGES/latexila.mo -%%NLS%%share/locale/pt/LC_MESSAGES/latexila.mo -%%NLS%%share/locale/pt_BR/LC_MESSAGES/latexila.mo -%%NLS%%share/locale/ru/LC_MESSAGES/latexila.mo -%%NLS%%share/locale/sl/LC_MESSAGES/latexila.mo -%%NLS%%share/locale/sr/LC_MESSAGES/latexila.mo -%%NLS%%share/locale/sr@latin/LC_MESSAGES/latexila.mo -%%NLS%%share/locale/sv/LC_MESSAGES/latexila.mo -%%NLS%%share/locale/tr/LC_MESSAGES/latexila.mo -%%NLS%%share/locale/uk/LC_MESSAGES/latexila.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/latexila.mo diff --git a/editors/p5-Padre/Makefile b/editors/p5-Padre/Makefile index 7d847df9781..689c0d28489 100644 --- a/editors/p5-Padre/Makefile +++ b/editors/p5-Padre/Makefile @@ -17,7 +17,9 @@ LICENSE_COMB= dual LICENSE_FILE_ART10= ${WRKSRC}/Artistic LICENSE_FILE_GPLv1+ = ${WRKSRC}/COPYING -BUILD_DEPENDS= p5-Algorithm-Diff>=1.19:devel/p5-Algorithm-Diff \ +BUILD_DEPENDS= ${RUN_DEPENDS} \ + p5-Module-Build>=0.36:devel/p5-Module-Build +RUN_DEPENDS= p5-Algorithm-Diff>=1.19:devel/p5-Algorithm-Diff \ p5-App-cpanminus>=0.9923:devel/p5-App-cpanminus \ p5-CGI>=3.47:www/p5-CGI \ p5-Capture-Tiny>0:devel/p5-Capture-Tiny \ @@ -64,8 +66,6 @@ BUILD_DEPENDS= p5-Algorithm-Diff>=1.19:devel/p5-Algorithm-Diff \ p5-Wx>=0.9700:x11-toolkits/p5-Wx \ p5-YAML-Tiny>=1.32:textproc/p5-YAML-Tiny \ p5-libwww>=5.815:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} -BUILD_DEPENDS+= p5-Module-Build>=0.36:devel/p5-Module-Build USES= compiler:c++11-lib dos2unix gettext perl5 USE_PERL5= configure diff --git a/editors/p5-Proc-InvokeEditor/Makefile b/editors/p5-Proc-InvokeEditor/Makefile index 78c6d39c665..581f73a77e5 100644 --- a/editors/p5-Proc-InvokeEditor/Makefile +++ b/editors/p5-Proc-InvokeEditor/Makefile @@ -14,8 +14,8 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Carp-Assert>=0:devel/p5-Carp-Assert -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Carp-Assert>=0:devel/p5-Carp-Assert NO_ARCH= yes USES= perl5 diff --git a/emulators/citra/Makefile b/emulators/citra/Makefile index ac0d4450a3f..6daafaa21b3 100644 --- a/emulators/citra/Makefile +++ b/emulators/citra/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= citra -PORTVERSION= s20181001 +PORTVERSION= s20181005 PORTREVISION?= 0 CATEGORIES= emulators @@ -23,7 +23,7 @@ BUILD_DEPENDS= boost-libs>=1.66:devel/boost-libs USE_GITHUB= yes GH_ACCOUNT= citra-emu -GH_TAGNAME= fceec3494 +GH_TAGNAME= b16350274 GH_TUPLE= citra-emu:ext-libressl-portable:7d01cb0:libressl/externals/libressl \ citra-emu:ext-soundtouch:060181e:soundtouch/externals/soundtouch \ MerryMage:dynarmic:r1-992-g4e6848d1:dynarmic/externals/dynarmic \ diff --git a/emulators/citra/distinfo b/emulators/citra/distinfo index e0c99af95ff..f72bc884b41 100644 --- a/emulators/citra/distinfo +++ b/emulators/citra/distinfo @@ -1,6 +1,6 @@ -TIMESTAMP = 1538433163 -SHA256 (citra-emu-citra-s20181001-fceec3494_GH0.tar.gz) = e6c02be3d8772459b40dd44c464190f70d6592e9121b1e64cd13461da991c3c8 -SIZE (citra-emu-citra-s20181001-fceec3494_GH0.tar.gz) = 4486762 +TIMESTAMP = 1538751583 +SHA256 (citra-emu-citra-s20181005-b16350274_GH0.tar.gz) = 2d4ab9d4a35f364c03e939bb5fee221d5c03e91bf72986d0f9c6768ad78dc055 +SIZE (citra-emu-citra-s20181005-b16350274_GH0.tar.gz) = 4489802 SHA256 (citra-emu-ext-libressl-portable-7d01cb0_GH0.tar.gz) = f3fc8c9d4991b05ca1e1c8f5907ecd3ffd9724a8dccf328087b4784cda5c7db3 SIZE (citra-emu-ext-libressl-portable-7d01cb0_GH0.tar.gz) = 1762942 SHA256 (citra-emu-ext-soundtouch-060181e_GH0.tar.gz) = a593ab188e4feaeef8376c27b554cc413986efc777c195e44c6d3d223de9a63c diff --git a/emulators/dolphin-emu/Makefile b/emulators/dolphin-emu/Makefile index a6021eab16d..a37e7daa02d 100644 --- a/emulators/dolphin-emu/Makefile +++ b/emulators/dolphin-emu/Makefile @@ -42,8 +42,8 @@ LIB_DEPENDS= libpulse.so:audio/pulseaudio \ libcurl.so:ftp/curl \ libhidapi.so:comms/hidapi -USES= cmake compiler:c++17-lang desktop-file-utils iconv pkgconfig \ - qmake qt:5 +USES= cmake compiler:c++17-lang desktop-file-utils gl iconv \ + pkgconfig qmake qt:5 USE_GITHUB= yes GH_PROJECT= dolphin diff --git a/emulators/pcsxr/Makefile b/emulators/pcsxr/Makefile index adf6f13301f..6a4740cd0fe 100644 --- a/emulators/pcsxr/Makefile +++ b/emulators/pcsxr/Makefile @@ -18,8 +18,8 @@ LIB_DEPENDS= libvorbis.so:audio/libvorbis \ WRKSRC_SUBDIR= ${PORTNAME} -USES= cmake desktop-file-utils dos2unix gettext gnome iconv libarchive \ - libtool pkgconfig tar:bzip2 +USES= cmake desktop-file-utils dos2unix gettext gl gnome iconv \ + libarchive libtool pkgconfig tar:bzip2 USE_GITHUB= yes GH_ACCOUNT= martymac diff --git a/emulators/riscv-fesvr/Makefile b/emulators/riscv-fesvr/Makefile index 83003361d8b..cf1cf7988c2 100644 --- a/emulators/riscv-fesvr/Makefile +++ b/emulators/riscv-fesvr/Makefile @@ -2,7 +2,7 @@ PORTNAME= riscv-fesvr DISTVERSION= git -PORTREVISION= 20180103 +PORTREVISION= 20181005 CATEGORIES= emulators MAINTAINER= lwhsu@FreeBSD.org @@ -12,11 +12,11 @@ LICENSE= BSD3CLAUSE ONLY_FOR_ARCHS= amd64 -GH_ACCOUNT= freebsd-riscv -GH_TAGNAME= 07fbcd5 - USES= gmake +GH_ACCOUNT= freebsd-riscv +GH_TAGNAME= 8c831dc + HAS_CONFIGURE= yes USE_GITHUB= yes USE_LDCONFIG= yes diff --git a/emulators/riscv-fesvr/distinfo b/emulators/riscv-fesvr/distinfo index 7e955b12e5c..b5a5f0a29ac 100644 --- a/emulators/riscv-fesvr/distinfo +++ b/emulators/riscv-fesvr/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1515149839 -SHA256 (freebsd-riscv-riscv-fesvr-git-07fbcd5_GH0.tar.gz) = fee2b793245a6893cda2835637f04873babb6b2a0ec10cd615eaf51861a6e0a7 -SIZE (freebsd-riscv-riscv-fesvr-git-07fbcd5_GH0.tar.gz) = 119891 +TIMESTAMP = 1538736336 +SHA256 (freebsd-riscv-riscv-fesvr-git-8c831dc_GH0.tar.gz) = 60a514952642daf532fdb31488f16a34336c301a5f6020ed1558e03bd4e258a9 +SIZE (freebsd-riscv-riscv-fesvr-git-8c831dc_GH0.tar.gz) = 120946 diff --git a/emulators/riscv-isa-sim/Makefile b/emulators/riscv-isa-sim/Makefile index e461759c287..7f41205a585 100644 --- a/emulators/riscv-isa-sim/Makefile +++ b/emulators/riscv-isa-sim/Makefile @@ -2,7 +2,7 @@ PORTNAME= riscv-isa-sim DISTVERSION= git -PORTREVISION= 20180104 +PORTREVISION= 20181005 CATEGORIES= emulators MAINTAINER= lwhsu@FreeBSD.org @@ -10,15 +10,15 @@ COMMENT= Spike, a RISC-V ISA Simulator LICENSE= BSD3CLAUSE -LIB_DEPENDS= libfesvr.so:emulators/riscv-fesvr - ONLY_FOR_ARCHS= amd64 -GH_ACCOUNT= freebsd-riscv -GH_TAGNAME= acf9589 +LIB_DEPENDS= libfesvr.so:emulators/riscv-fesvr USES= compiler:c++11-lang gmake shebangfix +GH_ACCOUNT= freebsd-riscv +GH_TAGNAME= aae60e0 + HAS_CONFIGURE= yes SHEBANG_FILES= scripts/vcs-version.sh USE_GITHUB= yes diff --git a/emulators/riscv-isa-sim/distinfo b/emulators/riscv-isa-sim/distinfo index 1c2eacdad85..0fbb2b24760 100644 --- a/emulators/riscv-isa-sim/distinfo +++ b/emulators/riscv-isa-sim/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1515149913 -SHA256 (freebsd-riscv-riscv-isa-sim-git-acf9589_GH0.tar.gz) = 163689110e1742271b02984f378974418d23d69e7c1943b75ebca0761769693b -SIZE (freebsd-riscv-riscv-isa-sim-git-acf9589_GH0.tar.gz) = 227934 +TIMESTAMP = 1538736497 +SHA256 (freebsd-riscv-riscv-isa-sim-git-aae60e0_GH0.tar.gz) = 423005144e71b272fad7f13b57af7de561a178af096a71d304e0a3c590520195 +SIZE (freebsd-riscv-riscv-isa-sim-git-aae60e0_GH0.tar.gz) = 232817 diff --git a/emulators/riscv-isa-sim/files/patch-Makefile.in b/emulators/riscv-isa-sim/files/patch-Makefile.in index 8e36466eb10..ff0a1707e95 100644 --- a/emulators/riscv-isa-sim/files/patch-Makefile.in +++ b/emulators/riscv-isa-sim/files/patch-Makefile.in @@ -1,6 +1,6 @@ ---- Makefile.in.orig 2017-08-08 20:00:25.889361000 +0100 -+++ Makefile.in 2017-08-08 20:06:41.633896000 +0100 -@@ -187,13 +187,13 @@ +--- Makefile.in.orig 2018-10-05 10:52:51 UTC ++++ Makefile.in +@@ -187,13 +187,13 @@ _$(1).cc : # Build the object files for this subproject diff --git a/emulators/riscv-isa-sim/files/patch-riscv_insn__template.cc b/emulators/riscv-isa-sim/files/patch-riscv_insn__template.cc index 8cb0f8c4573..eb5c15c16fa 100644 --- a/emulators/riscv-isa-sim/files/patch-riscv_insn__template.cc +++ b/emulators/riscv-isa-sim/files/patch-riscv_insn__template.cc @@ -1,4 +1,4 @@ ---- riscv/insn_template.cc.orig 2016-08-01 15:40:47 UTC +--- riscv/insn_template.cc.orig 2018-10-05 10:52:33 UTC +++ riscv/insn_template.cc @@ -1,6 +1,6 @@ // See LICENSE for license details. diff --git a/emulators/riscv-isa-sim/files/patch-riscv_riscv.mk.in b/emulators/riscv-isa-sim/files/patch-riscv_riscv.mk.in index 70a43a88b59..12ad5138cb0 100644 --- a/emulators/riscv-isa-sim/files/patch-riscv_riscv.mk.in +++ b/emulators/riscv-isa-sim/files/patch-riscv_riscv.mk.in @@ -1,6 +1,6 @@ ---- riscv/riscv.mk.in.orig 2017-07-11 13:58:22.000000000 +0100 -+++ riscv/riscv.mk.in 2017-08-08 20:08:06.247906000 +0100 -@@ -21,14 +21,14 @@ +--- riscv/riscv.mk.in.orig 2018-10-05 10:52:11 UTC ++++ riscv/riscv.mk.in +@@ -23,7 +23,7 @@ riscv_hdrs = \ tracer.h \ extension.h \ rocc.h \ @@ -8,7 +8,8 @@ + insn_template.hpp \ mulhi.h \ debug_module.h \ - remote_bitbang.h \ + debug_rom_defines.h \ +@@ -31,7 +31,7 @@ riscv_hdrs = \ jtag_dtm.h \ riscv_precompiled_hdrs = \ diff --git a/emulators/riscv-isa-sim/pkg-plist b/emulators/riscv-isa-sim/pkg-plist index d6f1d660816..aa6b308340c 100644 --- a/emulators/riscv-isa-sim/pkg-plist +++ b/emulators/riscv-isa-sim/pkg-plist @@ -6,9 +6,11 @@ include/spike/cachesim.h include/spike/common.h include/spike/config.h include/spike/debug_module.h +include/spike/debug_rom_defines.h include/spike/decode.h include/spike/devices.h include/spike/disasm.h +include/spike/dts.h include/spike/encoding.h include/spike/extension.h include/spike/icache.h @@ -19,12 +21,14 @@ include/spike/jtag_dtm.h include/spike/memtracer.h include/spike/mmu.h include/spike/mulhi.h +include/spike/platform.h include/spike/primitiveTypes.h include/spike/primitives.h include/spike/processor.h include/spike/remote_bitbang.h include/spike/rocc.h include/spike/sim.h +include/spike/simif.h include/spike/softfloat.h include/spike/softfloat_types.h include/spike/specialize.h diff --git a/emulators/rpcs3/Makefile b/emulators/rpcs3/Makefile index 948e46dff2f..ed6a5940149 100644 --- a/emulators/rpcs3/Makefile +++ b/emulators/rpcs3/Makefile @@ -2,8 +2,8 @@ PORTNAME= rpcs3 DISTVERSIONPREFIX= v -DISTVERSION= 0.0.5-951 -DISTVERSIONSUFFIX= -g145667831 +DISTVERSION= 0.0.5-968 +DISTVERSIONSUFFIX= -gcc846eb67 CATEGORIES= emulators PATCH_SITES= https://github.com/${GH_ACCOUNT}/${GH_PROJECT}/commit/ diff --git a/emulators/rpcs3/distinfo b/emulators/rpcs3/distinfo index 43695e04cd3..da037090f0b 100644 --- a/emulators/rpcs3/distinfo +++ b/emulators/rpcs3/distinfo @@ -1,6 +1,6 @@ -TIMESTAMP = 1538436146 -SHA256 (RPCS3-rpcs3-v0.0.5-951-g145667831_GH0.tar.gz) = fa9ae34567264d9d8e65cae88cb219b8736d643e7539ff405642c4a6eeb57f74 -SIZE (RPCS3-rpcs3-v0.0.5-951-g145667831_GH0.tar.gz) = 5011601 +TIMESTAMP = 1538603359 +SHA256 (RPCS3-rpcs3-v0.0.5-968-gcc846eb67_GH0.tar.gz) = af50ba73838a6ea7d97302af0517f2a10fc52c744e180c386aaf7c64a160925e +SIZE (RPCS3-rpcs3-v0.0.5-968-gcc846eb67_GH0.tar.gz) = 5013046 SHA256 (RPCS3-hidapi-hidapi-0.8.0-rc1-26-g4c27501_GH0.tar.gz) = 4f58ba2a51136cc6af0f1d833688b55f78468c4f5429a4bf9b38bb51c9d212b1 SIZE (RPCS3-hidapi-hidapi-0.8.0-rc1-26-g4c27501_GH0.tar.gz) = 105372 SHA256 (RPCS3-llvm-5c906fd1694e_GH0.tar.gz) = 8bbe95fbbea545ebb03e73d526add64e2853f86176ad42690f8ce5846bd419ce diff --git a/finance/cointop/Makefile b/finance/cointop/Makefile index b61575730ad..a433436ab24 100644 --- a/finance/cointop/Makefile +++ b/finance/cointop/Makefile @@ -4,7 +4,7 @@ PORTNAME= cointop PORTVERSION= 1.0.6 CATEGORIES= finance -MAINTAINER= ndowens.fbsd@yandex.com +MAINTAINER= ndowens@yahoo.com COMMENT= Light cryptocurrency coin stats LICENSE= APACHE20 diff --git a/finance/gnucash-docs/Makefile b/finance/gnucash-docs/Makefile index 280e239b5dd..9c421851bb0 100644 --- a/finance/gnucash-docs/Makefile +++ b/finance/gnucash-docs/Makefile @@ -3,12 +3,9 @@ # $MCom: ports/finance/gnucash-docs/Makefile,v 1.7 2007/08/04 03:51:29 marcus Exp $ PORTNAME= gnucash-docs -PORTVERSION= 3.2 +PORTVERSION= 3.3 CATEGORIES= finance gnome -MASTER_SITES= SF/gnucash/${PORTNAME}/${PORTVERSION} \ - http://www.gnucash.org/pub/gnucash/sources/stable/ \ - ftp://ftp.gnucash.org/pub/gnucash/sources/stable/ \ - http://www.linas.org/pub/ +MASTER_SITES= SF/gnucash/gnucash%20%28stable%29/${PORTVERSION} MAINTAINER= madpilot@FreeBSD.org COMMENT= Documentation for gnucash diff --git a/finance/gnucash-docs/distinfo b/finance/gnucash-docs/distinfo index b3335bfed35..42f370cdbb9 100644 --- a/finance/gnucash-docs/distinfo +++ b/finance/gnucash-docs/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1529916216 -SHA256 (gnucash-docs-3.2.tar.gz) = 469a524352a3b0e5308ba68a3c0fac79a501998b29db9c16a714ce879aa9c39c -SIZE (gnucash-docs-3.2.tar.gz) = 92315385 +TIMESTAMP = 1538390171 +SHA256 (gnucash-docs-3.3.tar.gz) = cc84ca9b45c8e691347c5a9859156fe849f777c6771cb23dca08214809876483 +SIZE (gnucash-docs-3.3.tar.gz) = 92348594 diff --git a/finance/gnucash/Makefile b/finance/gnucash/Makefile index ca396b49fe3..88ac7fb52f2 100644 --- a/finance/gnucash/Makefile +++ b/finance/gnucash/Makefile @@ -2,8 +2,7 @@ # $MCom: ports/finance/gnucash/Makefile,v 1.26 2008/12/31 03:25:18 mezz Exp $ PORTNAME= gnucash -PORTVERSION= 3.2 -PORTREVISION= 5 +PORTVERSION= 3.3 CATEGORIES= finance gnome MASTER_SITES= SF/${PORTNAME}/${PORTNAME}%20%28stable%29/${PORTVERSION} @@ -101,7 +100,11 @@ post-patch-TEST-off: post-install: @(cd ${STAGEDIR}${DATADIR}/icons/hicolor && \ - ${RMDIR} 22x22 32x32 48x48 64x64 96x96 128x128 256x256 scalable) + ${RMDIR} 16x16/apps 22x22/apps 22x22 24x24/apps 32x32/apps 32x32\ + 48x48/apps 48x48 64x64/apps 64x64 96x96/apps 96x96 \ + 128x128/apps 128x128 256x256/apps 256x256 scalable/apps scalable) + @(cd ${STAGEDIR}${PREFIX}/share/icons/hicolor && \ + ${RMDIR} 24x24/actions 16x16/actions) post-install-PYTHON-on: @(cd ${STAGEDIR}${PREFIX} \ diff --git a/finance/gnucash/distinfo b/finance/gnucash/distinfo index 802c677923e..70059306c0c 100644 --- a/finance/gnucash/distinfo +++ b/finance/gnucash/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1529915625 -SHA256 (gnucash-3.2.tar.bz2) = 63e5b00c148ed0f7021ebc03e4e70c4a9c549feb3ea49d6c810f2abaaf592452 -SIZE (gnucash-3.2.tar.bz2) = 13384008 +TIMESTAMP = 1538344925 +SHA256 (gnucash-3.3.tar.bz2) = 8396ed8d2a88ac358ecf458c253cf38f55a13aaba7958e4fde3dd85c222e393f +SIZE (gnucash-3.3.tar.bz2) = 13440713 diff --git a/finance/gnucash/files/patch-CMakeLists.txt b/finance/gnucash/files/patch-CMakeLists.txt index b79b636afb1..856ba520df0 100644 --- a/finance/gnucash/files/patch-CMakeLists.txt +++ b/finance/gnucash/files/patch-CMakeLists.txt @@ -1,4 +1,4 @@ ---- CMakeLists.txt.orig 2018-06-24 21:43:51 UTC +--- CMakeLists.txt.orig 2018-09-29 21:16:50 UTC +++ CMakeLists.txt @@ -43,6 +43,7 @@ include (MacroAppendForeach) include (MacroAddSourceFileCompileFlags) @@ -8,14 +8,15 @@ include (GncAddSchemeTargets) include (GncAddGSchemaTargets) include (GncAddTest) -@@ -560,8 +561,8 @@ set(CMAKE_CXX_FLAGS "-std=gnu++11 ${CMAKE_CXX_FLAGS}") +@@ -573,9 +574,9 @@ set(CMAKE_CXX_FLAGS "-std=gnu++11 ${CMAKE_CXX_FLAGS}") if (UNIX) - set( CMAKE_C_FLAGS "-Werror -Wdeclaration-after-statement -Wno-pointer-sign -Wall -Wmissing-prototypes -Wmissing-declarations -Wno-unused ${CMAKE_C_FLAGS}") -- set( CMAKE_CXX_FLAGS "-Werror -Wall -Wmissing-declarations -Wno-unused -Wno-error=parentheses ${CMAKE_CXX_FLAGS}") + set( CMAKE_C_FLAGS "-Wdeclaration-after-statement -Wno-pointer-sign -Wall -Wmissing-prototypes -Wmissing-declarations -Wno-unused ${CMAKE_C_FLAGS}") -+ set( CMAKE_CXX_FLAGS "-Wall -Wmissing-declarations -Wno-unused -Wno-error=parentheses ${CMAKE_CXX_FLAGS}") set( CMAKE_C_FLAGS "-Wno-deprecated-declarations -std=gnu11 -Wno-error=parentheses ${CMAKE_C_FLAGS}") +- set( CMAKE_CXX_FLAGS "-Werror -Wall -Wmissing-declarations -Wno-unused -Wno-error=parentheses ${CMAKE_CXX_FLAGS}") ++ set( CMAKE_CXX_FLAGS "-Wall -Wmissing-declarations -Wno-unused -Wno-error=parentheses ${CMAKE_CXX_FLAGS}") + set( CMAKE_CXX_FLAGS "-Wno-deprecated-declarations -Wno-register ${CMAKE_CXX_FLAGS}") set( CMAKE_C_FLAGS_RELEASE "-O3 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 ${CMAKE_C_FLAGS}") endif (UNIX) diff --git a/finance/gnucash/files/patch-libgnucash_app-utils_guile-util.c b/finance/gnucash/files/patch-libgnucash_app-utils_guile-util.c index cdc44f7b581..d25074ee41d 100644 --- a/finance/gnucash/files/patch-libgnucash_app-utils_guile-util.c +++ b/finance/gnucash/files/patch-libgnucash_app-utils_guile-util.c @@ -1,6 +1,6 @@ ---- libgnucash/app-utils/guile-util.c.orig 2018-03-31 22:46:38 UTC +--- libgnucash/app-utils/guile-util.c.orig 2018-09-04 21:53:12 UTC +++ libgnucash/app-utils/guile-util.c -@@ -1095,6 +1095,8 @@ gnc_parse_time_to_time64 (const gchar *s, const gchar +@@ -996,6 +996,8 @@ gnc_parse_time_to_time64 (const gchar *s, const gchar g_return_val_if_fail(s && format, -1); diff --git a/finance/gnucash/files/patch-missing-files b/finance/gnucash/files/patch-missing-files deleted file mode 100644 index 3a6f90e6646..00000000000 --- a/finance/gnucash/files/patch-missing-files +++ /dev/null @@ -1,1372 +0,0 @@ ---- src/optional/python-bindings/__init__.py.orig 2018-04-04 21:00:06 UTC -+++ src/optional/python-bindings/__init__.py -@@ -0,0 +1,11 @@ -+# import all the symbols from gnucash_core, so basic gnucash stuff can be -+# loaded with: -+# >>> from gnucash import thingy -+# instead of -+# >>> from gnucash.gnucash_core import thingy -+from gnucash_core import * -+## @file -+# @brief helper file for the importing of gnucash -+# @author Mark Jenkins, ParIT Worker Co-operative -+# @author Jeff Green, ParIT Worker Co-operative -+# @ingroup python_bindings ---- src/optional/python-bindings/function_class.py.orig 2018-04-04 21:44:51 UTC -+++ src/optional/python-bindings/function_class.py -@@ -0,0 +1,227 @@ -+# function_class.py -- Library for making python classes from a set -+# of functions. -+# -+# Copyright (C) 2008 ParIT Worker Co-operative -+# This program is free software; you can redistribute it and/or -+# modify it under the terms of the GNU General Public License as -+# published by the Free Software Foundation; either version 2 of -+# the License, or (at your option) any later version. -+# -+# This program is distributed in the hope that it will be useful, -+# but WITHOUT ANY WARRANTY; without even the implied warranty of -+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -+# GNU General Public License for more details. -+# -+# You should have received a copy of the GNU General Public License -+# along with this program; if not, contact: -+# Free Software Foundation Voice: +1-617-542-5942 -+# 51 Franklin Street, Fifth Floor Fax: +1-617-542-2652 -+# Boston, MA 02110-1301, USA gnu@gnu.org -+# -+# @author Mark Jenkins, ParIT Worker Co-operative -+ -+## @file -+# @brief Library for making python classes from a set of functions. -+# @author Mark Jenkins, ParIT Worker Co-operative -+# @author Jeff Green, ParIT Worker Co-operative -+# @ingroup python_bindings -+ -+INSTANCE_ARGUMENT = "instance" -+ -+class ClassFromFunctions(object): -+ """Inherit this class to give yourself a python class that wraps a set of -+ functions that together constitute the methods of the class. -+ -+ The method functions must all have as a first argument an object -+ holding the instance data. There must also be a function that -+ returns a new instance of the class, the constructor. -+ -+ Your subclass must define -+ _module - The module where the method functions, including the -+ constructor can be found -+ _new_instance - The name of a function that serves as a constructor, -+ returning the instance data. -+ -+ To access the instance data, use the read-only property instance. -+ -+ To add some functions from _module as methods, call classmethods like -+ add_method and add_methods_with_prefix. -+ """ -+ def __new__(cls, *args, **kargs): -+ # why reimpliment __new__? Because later on we're going to -+ # use new to avoid creating new instances when existing instances -+ # already exist with the same __instance value, or equivalent __instance -+ # values, where this is desirable... -+ return super(ClassFromFunctions, cls).__new__(cls) -+ -+ def __init__(self, *args, **kargs): -+ """Construct a new instance, using either the function -+ self._module[self._new_instance] or using existing instance -+ data. (specified with the keyword argument, instance) -+ -+ Pass the arguments that should be passed on to -+ self._module[self._new_instance] . Any arguments of that -+ are instances of ClassFromFunctions will be switched with the instance -+ data. (by calling the .instance property) -+ """ -+ if INSTANCE_ARGUMENT in kargs: -+ self.__instance = kargs[INSTANCE_ARGUMENT] -+ else: -+ self.__instance = getattr(self._module, self._new_instance)( -+ *process_list_convert_to_instance(args) ) -+ -+ def get_instance(self): -+ """Get the instance data. -+ -+ You can also call the instance property -+ """ -+ return self.__instance -+ -+ instance = property(get_instance) -+ -+ # CLASS METHODS -+ -+ @classmethod -+ def add_method(cls, function_name, method_name): -+ """Add the function, method_name to this class as a method named name -+ """ -+ def method_function(self, *meth_func_args): -+ return getattr(self._module, function_name)( -+ self.instance, -+ *process_list_convert_to_instance(meth_func_args) ) -+ -+ setattr(cls, method_name, method_function) -+ setattr(method_function, "__name__", method_name) -+ return method_function -+ -+ @classmethod -+ def ya_add_classmethod(cls, function_name, method_name): -+ """Add the function, method_name to this class as a classmethod named name -+ -+ Taken from function_class and slightly modified. -+ """ -+ def method_function(self, *meth_func_args): -+ return getattr(self._module, function_name)( -+ self, -+ *process_list_convert_to_instance(meth_func_args) ) -+ -+ setattr(cls, method_name, classmethod(method_function)) -+ setattr(method_function, "__name__", method_name) -+ return method_function -+ -+ @classmethod -+ def ya_add_method(cls, function_name, method_name): -+ """Add the function, method_name to this class as a method named name -+ -+ Taken from function_class and slightly modified. -+ """ -+ def method_function(self, *meth_func_args): -+ return getattr(self._module, function_name)( -+ self, -+ *process_list_convert_to_instance(meth_func_args) ) -+ -+ setattr(cls, method_name, method_function) -+ setattr(method_function, "__name__", method_name) -+ return method_function -+ -+ @classmethod -+ def add_methods_with_prefix(cls, prefix): -+ """Add a group of functions with the same prefix -+ """ -+ for function_name, function_value, after_prefix in \ -+ extract_attributes_with_prefix(cls._module, prefix): -+ cls.add_method(function_name, after_prefix) -+ -+ @classmethod -+ def add_constructor_and_methods_with_prefix(cls, prefix, constructor): -+ """Add a group of functions with the same prefix, and set the -+ _new_instance attribute to prefix + constructor -+ """ -+ cls.add_methods_with_prefix(prefix) -+ cls._new_instance = prefix + constructor -+ -+ @classmethod -+ def decorate_functions(cls, decorator, *args): -+ for function_name in args: -+ setattr( cls, function_name, -+ decorator( getattr(cls, function_name) ) ) -+ -+def method_function_returns_instance(method_function, cls): -+ """A function decorator that is used to decorate method functions that -+ return instance data, to return instances instead. -+ -+ You can't use this decorator with @, because this function has a second -+ argument. -+ """ -+ assert( 'instance' == INSTANCE_ARGUMENT ) -+ def new_function(*args): -+ kargs = { INSTANCE_ARGUMENT : method_function(*args) } -+ if kargs['instance'] == None: -+ return None -+ else: -+ return cls( **kargs ) -+ -+ return new_function -+ -+def method_function_returns_instance_list(method_function, cls): -+ def new_function(*args): -+ return [ cls( **{INSTANCE_ARGUMENT: item} ) -+ for item in method_function(*args) ] -+ return new_function -+ -+def methods_return_instance_lists(cls, function_dict): -+ for func_name, instance_name in function_dict.iteritems(): -+ setattr(cls, func_name, -+ method_function_returns_instance_list( -+ getattr(cls, func_name), instance_name)) -+ -+def default_arguments_decorator(function, *args): -+ """Decorates a function to give it default, positional arguments -+ -+ You can't use this decorator with @, because this function has more -+ than one argument. -+ """ -+ def new_function(*function_args): -+ new_argset = list(function_args) -+ new_argset.extend( args[ len(function_args): ] ) -+ return function( *new_argset ) -+ return new_function -+ -+def return_instance_if_value_has_it(value): -+ """Return value.instance if value is an instance of ClassFromFunctions, -+ else return value -+ """ -+ if isinstance(value, ClassFromFunctions): -+ return value.instance -+ else: -+ return value -+ -+def process_list_convert_to_instance( value_list ): -+ """Return a list built from value_list, where if a value is in an instance -+ of ClassFromFunctions, we put value.instance in the list instead. -+ -+ Things that are not instances of ClassFromFunctions are returned to -+ the new list unchanged. -+ """ -+ return [ return_instance_if_value_has_it(value) -+ for value in value_list ] -+ -+def extract_attributes_with_prefix(obj, prefix): -+ """Generator that iterates through the attributes of an object and -+ for any attribute that matches a prefix, this yields -+ the attribute name, the attribute value, and the text that appears -+ after the prefix in the name -+ """ -+ for attr_name, attr_value in obj.__dict__.iteritems(): -+ if attr_name.startswith(prefix): -+ after_prefix = attr_name[ len(prefix): ] -+ yield attr_name, attr_value, after_prefix -+ -+def methods_return_instance(cls, function_dict): -+ """Iterates through a dictionary of function name strings and instance names -+ and sets the function to return the associated instance -+ """ -+ for func_name, instance_name in function_dict.iteritems(): -+ setattr(cls, func_name, -+ method_function_returns_instance( getattr(cls, func_name), instance_name)) -+ ---- src/optional/python-bindings/gnucash_business.py.orig 2018-04-04 23:06:43 UTC -+++ src/optional/python-bindings/gnucash_business.py -@@ -0,0 +1,370 @@ -+# gnucash_business.py -- High level python wrapper classes for the business -+# parts of GnuCash -+# -+# Copyright (C) 2008,2010 ParIT Worker Co-operative -+# This program is free software; you can redistribute it and/or -+# modify it under the terms of the GNU General Public License as -+# published by the Free Software Foundation; either version 2 of -+# the License, or (at your option) any later version. -+# -+# This program is distributed in the hope that it will be useful, -+# but WITHOUT ANY WARRANTY; without even the implied warranty of -+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -+# GNU General Public License for more details. -+# -+# You should have received a copy of the GNU General Public License -+# along with this program; if not, contact: -+# Free Software Foundation Voice: +1-617-542-5942 -+# 51 Franklin Street, Fifth Floor Fax: +1-617-542-2652 -+# Boston, MA 02110-1301, USA gnu@gnu.org -+# -+# @author Mark Jenkins, ParIT Worker Co-operative -+# @author Jeff Green, ParIT Worker Co-operative -+## @file -+# @brief High level python wrapper classes for the business parts of GnuCash -+# @author Mark Jenkins, ParIT Worker Co-operative -+# @author Jeff Green, ParIT Worker Co-operative -+# @ingroup python_bindings -+ -+import gnucash_core_c -+ -+from function_class import \ -+ ClassFromFunctions, extract_attributes_with_prefix, \ -+ default_arguments_decorator, method_function_returns_instance, \ -+ methods_return_instance, methods_return_instance_lists -+ -+from gnucash_core import \ -+ GnuCashCoreClass, GncNumeric, GncCommodity, Transaction, \ -+ Split, Book, GncLot, Account -+ -+from gnucash_core_c import GNC_OWNER_CUSTOMER, GNC_OWNER_JOB, \ -+ GNC_OWNER_EMPLOYEE, GNC_OWNER_VENDOR, \ -+ GNC_PAYMENT_CASH, GNC_PAYMENT_CARD, \ -+ GNC_DISC_PRETAX, GNC_DISC_SAMETIME, GNC_DISC_POSTTAX, \ -+ GNC_TAXINCLUDED_YES, GNC_TAXINCLUDED_NO, GNC_TAXINCLUDED_USEGLOBAL, \ -+ GNC_AMT_TYPE_VALUE, GNC_AMT_TYPE_PERCENT, GNC_ID_INVOICE -+ -+import datetime -+ -+class GnuCashBusinessEntity(GnuCashCoreClass): -+ def __init__(self, book=None, id=None, currency=None, name=None, -+ instance=None): -+ if instance == None: -+ if book==None or id==None or currency==None: -+ raise Exception( -+ "you must call GnuCashBusinessEntity.__init__ " -+ "with either a book, id, and currency, or an existing " -+ "low level swig proxy in the argument instance") -+ GnuCashCoreClass.__init__(self, book) -+ self.BeginEdit() -+ self.SetID(id) -+ self.SetCurrency(currency) -+ if name != None: -+ self.SetName(name) -+ self.CommitEdit() -+ else: -+ GnuCashCoreClass.__init__(self, instance=instance) -+ -+class Customer(GnuCashBusinessEntity): pass -+ -+class Employee(GnuCashBusinessEntity): pass -+ -+class Vendor(GnuCashBusinessEntity): pass -+ -+class Job(GnuCashBusinessEntity): -+ # override the superclass constructor, as Job doesn't require -+ # a currency but it does require an owner -+ def __init__(self, book=None, id=None, owner=None, name=None, -+ instance=None): -+ if instance == None: -+ if book==None or id==None or owner==None: -+ raise Exception( -+ "you must call Job.__init__ " -+ "with either a book, id, and owner or an existing " -+ "low level swig proxy in the argument instance") -+ GnuCashCoreClass.__init__(self, book) -+ self.SetID(id) -+ self.SetOwner(owner) -+ if name != None: -+ self.SetName(name) -+ else: -+ GnuCashCoreClass.__init__(self, instance=instance) -+ -+class Address(GnuCashCoreClass): pass -+ -+class BillTerm(GnuCashCoreClass): pass -+ -+class TaxTable(GnuCashCoreClass): -+ def __init__(self, book=None, name=None, first_entry=None, instance=None): -+ if instance == None: -+ if book==None or name==None or first_entry==None: -+ raise Exception( -+ "you must call TaxTable.__init__ with either a " -+ "book, name, and first_entry, or an existing " -+ "low level swig proxy in the argument instance") -+ GnuCashCoreClass.__init__(self, book) -+ self.SetName(name) -+ self.AddEntry(first_entry) -+ else: -+ GnuCashCoreClass.__init__(self, instance=instance) -+ -+class TaxTableEntry(GnuCashCoreClass): -+ def __init__(self, account=None, percent=True, amount=None, instance=None): -+ """TaxTableEntry constructor -+ -+ You must provide an account, or be initizing this with an existing -+ swig proxy object via the instance keyword argument. -+ -+ You may also optionally set the percent keyword argument to False to get -+ a fixed value instead of percentage based tax (which is the default, or -+ when percent=True). -+ -+ The tax will be zero percent or zero unless you set the amount keyword -+ argument to a GncNumeric value as well. -+ """ -+ -+ if instance == None: -+ if account==None: -+ raise Exception( -+ "you must call TaxTableEntry.__init__ with either a " -+ "account or an existing " -+ "low level swig proxy in the argument instance") -+ GnuCashCoreClass.__init__(self) -+ self.SetAccount(account) -+ if percent: -+ self.SetType(GNC_AMT_TYPE_PERCENT) -+ else: -+ self.SetType(GNC_AMT_TYPE_VALUE) -+ if amount != None: -+ self.SetAmount(amount) -+ else: -+ GnuCashCoreClass.__init__(self, instance=instance) -+ -+class Invoice(GnuCashCoreClass): -+ def __init__(self, book=None, id=None, currency=None, owner=None, -+ date_opened=None, instance=None): -+ """Invoice Contstructor -+ -+ You must provide a book, id, currency and owner -+ (Customer, Job, Employee, Vendor) or an existing swig proxy object -+ in the keyword argument instance. -+ -+ Optionally, you may provide a date the invoice is opened on -+ (datetime.date or datetime.datetime), otherwise today's date is used. -+ """ -+ if instance == None: -+ if book==None or id==None or currency==None or owner==None: -+ raise Exception( -+ "you must call Invoice.__init__ " -+ "with either a book, id, currency and owner, or an existing" -+ "low level swig proxy in the argument instance") -+ GnuCashCoreClass.__init__(self, book) -+ self.BeginEdit() -+ self.SetID(id) -+ self.SetCurrency(currency) -+ self.SetOwner(owner) -+ if date_opened == None: -+ date_opened = datetime.date.today() -+ self.SetDateOpened(date_opened) -+ self.CommitEdit() -+ else: -+ GnuCashCoreClass.__init__(self, instance=instance) -+ -+class Bill(Invoice): -+ pass -+ -+def decorate_to_return_instance_instead_of_owner(dec_function): -+ def new_get_owner_function(self): -+ (owner_type, instance) = dec_function(self) -+ if owner_type == GNC_OWNER_CUSTOMER: -+ return Customer(instance=instance) -+ elif owner_type == GNC_OWNER_JOB: -+ return Job(instance=instance) -+ elif owner_type == GNC_OWNER_EMPLOYEE: -+ return Employee(instance=instance) -+ elif owner_type == GNC_OWNER_VENDOR: -+ return Vendor(instance=instance) -+ else: -+ return None -+ return new_get_owner_function -+ -+class Entry(GnuCashCoreClass): -+ def __init__(self, book=None, invoice=None, date=None, instance=None): -+ """Invoice Entry constructor -+ -+ You must provide a book or be initizing this with an existing -+ swig proxy object via the instance keyword argument. -+ -+ The optional invoice argument can be set to a Bill or Invoice -+ that you would like to associate the entry with. You might as well -+ assign one now, as an Entry can't exist without one, but you can -+ always use Invoice.AddEntry or Bill.AddEntry later on. -+ -+ By default, the entry will be set to today's date unless you -+ override with the date argument. -+ """ -+ if instance == None: -+ if book==None: -+ raise Exception( -+ "you must call Entry.__init__ with either a " -+ "book or an existing " -+ "low level swig proxy in the argument instance") -+ GnuCashCoreClass.__init__(self, book) -+ -+ if date == None: -+ date = datetime.date.today() -+ self.SetDate(date) -+ if invoice != None: -+ invoice.AddEntry(self) -+ else: -+ -+ GnuCashCoreClass.__init__(self, instance=instance) -+ -+ def test_type(self, invoice): -+ if invoice.GetTypeString() == "Invoice" and self.GetInvoice() == None: -+ raise Exception("Entry type error. Check that Entry type matches Invoice.") -+ if invoice.GetTypeString() == "Bill" and self.GetBill() == None: -+ raise Exception("Entry type error. Check that Entry type matches Bill.") -+ -+ -+# Owner -+GnuCashBusinessEntity.add_methods_with_prefix('gncOwner') -+ -+owner_dict = { -+ 'GetCustomer' : Customer, -+ 'GetVendor' : Vendor, -+ 'GetEmployee' : Employee, -+ 'GetJob' : Job, -+ 'GetAddr' : Address, -+ 'GetCurrency' : GncCommodity, -+ 'GetEndOwner': GnuCashBusinessEntity, -+ 'GetBalanceInCurrency': GncNumeric, -+ } -+methods_return_instance(GnuCashBusinessEntity, owner_dict) -+ -+methods_return_instance_lists( -+ GnuCashBusinessEntity, { -+ 'GetCommoditiesList': GncCommodity -+ }) -+ -+# Customer -+Customer.add_constructor_and_methods_with_prefix('gncCustomer', 'Create') -+ -+customer_dict = { -+ 'GetAddr' : Address, -+ 'GetShipAddr' : Address, -+ 'GetDiscount' : GncNumeric, -+ 'GetCredit' : GncNumeric, -+ 'GetTerms' : BillTerm, -+ 'GetCurrency' : GncCommodity, -+ 'GetTaxTable': TaxTable, -+ } -+methods_return_instance(Customer, customer_dict) -+ -+# Employee -+Employee.add_constructor_and_methods_with_prefix('gncEmployee', 'Create') -+ -+employee_dict = { -+ 'GetBook' : Book, -+ 'GetAddr' : Address, -+ 'GetWorkday' : GncNumeric, -+ 'GetRate' : GncNumeric, -+ 'GetCurrency' : GncCommodity -+ } -+methods_return_instance(Employee, employee_dict) -+ -+# Vendor -+Vendor.add_constructor_and_methods_with_prefix('gncVendor', 'Create') -+ -+vendor_dict = { -+ 'GetAddr' : Address, -+ 'GetTerms' : BillTerm, -+ 'GetCurrency' : GncCommodity, -+ 'GetTaxTable': TaxTable, -+ } -+methods_return_instance(Vendor, vendor_dict) -+ -+# Job -+Job.add_constructor_and_methods_with_prefix('gncJob', 'Create') -+Job.decorate_functions( -+ decorate_to_return_instance_instead_of_owner, -+ 'GetOwner') -+ -+# Address -+Address.add_constructor_and_methods_with_prefix('gncAddress', 'Create') -+ -+# BillTerm -+BillTerm.add_constructor_and_methods_with_prefix('gncBillTerm', 'Create') -+ -+billterm_dict = { -+ 'LookupByName' : BillTerm, -+ 'GetDiscount' : GncNumeric, -+ 'GetParent' : BillTerm, -+ 'ReturnChild' : BillTerm -+ } -+methods_return_instance(BillTerm, billterm_dict) -+ -+# TaxTable -+TaxTable.add_constructor_and_methods_with_prefix('gncTaxTable', 'Create') -+ -+taxtable_dict = { -+ 'GetParent': TaxTable, -+ } -+methods_return_instance(TaxTable, taxtable_dict) -+ -+# TaxTableEntry -+TaxTableEntry.add_constructor_and_methods_with_prefix( -+ 'gncTaxTableEntry', 'Create') -+ -+taxtableentry_dict = { -+ 'GetAccount': Account, -+ 'GetAmount': GncNumeric, -+ } -+ -+# Invoice -+Invoice.add_constructor_and_methods_with_prefix('gncInvoice', 'Create') -+methods_return_instance_lists( -+ Invoice, { 'GetEntries': Entry }) -+ -+# Bill -+Bill.add_methods_with_prefix('gncBill') -+ -+invoice_dict = { -+ 'GetTerms': BillTerm, -+ 'GetCurrency': GncCommodity, -+ 'GetToChargeAmount': GncNumeric, -+ 'GetPostedLot': GncLot, -+ 'GetPostedTxn': Transaction, -+ 'GetPostedAcc': Account, -+ 'GetTotal': GncNumeric, -+ 'GetTotalOf': GncNumeric, -+ 'GetTotalSubtotal': GncNumeric, -+ 'GetTotalTax': GncNumeric, -+ 'PostToAccount': Transaction, -+ 'GetBook': Book, -+ } -+methods_return_instance(Invoice, invoice_dict) -+Invoice.decorate_functions( -+ decorate_to_return_instance_instead_of_owner, -+ 'GetOwner', 'GetBillTo') -+ -+# Entry -+Entry.add_constructor_and_methods_with_prefix('gncEntry', 'Create') -+ -+entry_dict = { -+ 'GetQuantity': GncNumeric, -+ 'GetInvAccount': Account, -+ 'GetInvPrice': GncNumeric, -+ 'GetInvDiscount': GncNumeric, -+ 'GetInvTaxTable': TaxTable, -+ 'GetBillAccount': Account, -+ 'GetBillPrice': GncNumeric, -+ 'GetBillTaxTable': TaxTable, -+ 'Copy': Entry, -+ 'GetInvoice': Invoice, -+ 'GetBill': Invoice -+ } -+methods_return_instance(Entry, entry_dict) -+Entry.decorate_functions( -+ decorate_to_return_instance_instead_of_owner, -+ 'GetBillTo' ) ---- src/optional/python-bindings/gnucash_core.py.orig 2018-04-04 22:55:00 UTC -+++ src/optional/python-bindings/gnucash_core.py -@@ -0,0 +1,752 @@ -+# gnucash_core.py -- High level python wrapper classes for the core parts -+# of GnuCash -+# -+# Copyright (C) 2008 ParIT Worker Co-operative -+# This program is free software; you can redistribute it and/or -+# modify it under the terms of the GNU General Public License as -+# published by the Free Software Foundation; either version 2 of -+# the License, or (at your option) any later version. -+# -+# This program is distributed in the hope that it will be useful, -+# but WITHOUT ANY WARRANTY; without even the implied warranty of -+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -+# GNU General Public License for more details. -+# -+# You should have received a copy of the GNU General Public License -+# along with this program; if not, contact: -+# Free Software Foundation Voice: +1-617-542-5942 -+# 51 Franklin Street, Fifth Floor Fax: +1-617-542-2652 -+# Boston, MA 02110-1301, USA gnu@gnu.org -+# -+# @author Mark Jenkins, ParIT Worker Co-operative -+# @author Jeff Green, ParIT Worker Co-operative -+ -+# The following is for doxygen -+## @file -+# @brief High level python wrapper classes for the core parts of GnuCash -+# @author Mark Jenkins, ParIT Worker Co-operative -+# @author Jeff Green, ParIT Worker Co-operative -+# @ingroup python_bindings -+ -+import gnucash_core_c -+ -+from function_class import \ -+ ClassFromFunctions, extract_attributes_with_prefix, \ -+ default_arguments_decorator, method_function_returns_instance, \ -+ methods_return_instance, process_list_convert_to_instance, \ -+ method_function_returns_instance_list, methods_return_instance_lists -+ -+from gnucash_core_c import gncInvoiceLookup, gncInvoiceGetInvoiceFromTxn, \ -+ gncInvoiceGetInvoiceFromLot, gncEntryLookup, gncInvoiceLookup, \ -+ gncCustomerLookup, gncVendorLookup, gncJobLookup, gncEmployeeLookup, \ -+ gncTaxTableLookup, gncTaxTableLookupByName, gnc_search_invoice_on_id, \ -+ gnc_search_customer_on_id, gnc_search_bill_on_id , gnc_search_vendor_on_id, \ -+ gncInvoiceNextID, gncCustomerNextID, gncTaxTableGetTables, gncVendorNextID -+ -+class GnuCashCoreClass(ClassFromFunctions): -+ _module = gnucash_core_c -+ -+ def do_lookup_create_oo_instance(self, lookup_function, cls, *args): -+ thing = lookup_function(self.get_instance(), *args) -+ if thing != None: -+ thing = cls(instance=thing) -+ return thing -+ -+ -+class GnuCashBackendException(Exception): -+ def __init__(self, msg, errors): -+ Exception.__init__(self, msg) -+ self.errors = errors -+ -+class Session(GnuCashCoreClass): -+ """A GnuCash book editing session -+ -+ To commit changes to the session you may need to call save, -+ (this is always the case with the file backend). -+ -+ When you're down with a session you may need to call end() -+ -+ Every Session has a Book in the book attribute, which you'll definitely -+ be interested in, as every GnuCash entity (Transaction, Split, Vendor, -+ Invoice..) is associated with a particular book where it is stored. -+ """ -+ -+ def __init__(self, book_uri=None, ignore_lock=False, is_new=False, -+ force_new= False): -+ """A convenient constructor that allows you to specify a book URI, -+ begin the session, and load the book. -+ -+ This can give you the power of calling -+ qof_session_new, qof_session_begin, and qof_session_load all in one! -+ -+ book_uri can be None to skip the calls to qof_session_begin and -+ qof_session_load, or it can be a string like "file:/test.xac" -+ -+ qof_session_load is only called if is_new is set to False -+ -+ is_new is passed to qof_session_begin as the argument create, -+ and force_new as the argument force. Is_new will create a new -+ database or file; force will force creation even if it will -+ destroy an existing dataset. -+ -+ ignore_lock is passed to qof_session_begin's argument of the -+ same name and is used to break an existing lock on a dataset. -+ -+ -+ -+ This function can raise a GnuCashBackendException. If it does, -+ you don't need to cleanup and call end() and destroy(), that is handled -+ for you, and the exception is raised. -+ """ -+ GnuCashCoreClass.__init__(self) -+ if book_uri is not None: -+ try: -+ self.begin(book_uri, ignore_lock, is_new, force_new) -+ # Take care of backend inconsistency -+ # New xml file can't be loaded, new sql store -+ # has to be loaded before it can be altered -+ # Any existing store obviously has to be loaded -+ # More background: https://bugzilla.gnome.org/show_bug.cgi?id=726891 -+ if book_uri[:3] != "xml" or not is_new: -+ self.load() -+ except GnuCashBackendException, backend_exception: -+ self.end() -+ self.destroy() -+ raise -+ -+ def raise_backend_errors(self, called_function="qof_session function"): -+ """Raises a GnuCashBackendException if there are outstanding -+ QOF_BACKEND errors. -+ -+ set called_function to name the function that was last called -+ """ -+ errors = self.pop_all_errors() -+ if errors != (): -+ raise GnuCashBackendException( -+ "call to %s resulted in the " -+ "following errors, %s" % (called_function, backend_error_dict[errors[0]]), -+ errors ) -+ -+ def generate_errors(self): -+ """A generator that yields any outstanding QofBackend errors -+ """ -+ while self.get_error() is not ERR_BACKEND_NO_ERR: -+ error = self.pop_error() -+ yield error -+ -+ def pop_all_errors(self): -+ """Returns any accumulated qof backend errors as a tuple -+ """ -+ return tuple( self.generate_errors() ) -+ -+ # STATIC METHODS -+ @staticmethod -+ def raise_backend_errors_after_call(function): -+ """A function decorator that results in a call to -+ raise_backend_errors after execution. -+ """ -+ def new_function(self, *args): -+ return_value = function(self, *args) -+ self.raise_backend_errors(function.__name__) -+ return return_value -+ return new_function -+ -+class Book(GnuCashCoreClass): -+ """A Book encapsulates all of the GnuCash data, it is the place where -+ all GnuCash entities (Transaction, Split, Vendor, Invoice...), are -+ stored. You'll notice that all of the constructors for those entities -+ need a book to be associated with. -+ -+ The most common way to get a book is through the book property in the -+ Session class, that is, create a session that connects to some storage, -+ such as through 'my_session = Session('file:my_books.xac')', and access -+ the book via the book property, 'my_session.book' -+ -+ If you would like to create a Book without any backing storage, call the -+ Book constructor without any parameters, 'Book()'. You can later merge -+ such a book into a book with actual store by using merge_init. -+ -+ Methods of interest -+ get_root_account -- Returns the root level Account -+ get_table -- Returns a commodity lookup table, of type GncCommodityTable -+ """ -+ def InvoiceLookup(self, guid): -+ from gnucash_business import Invoice -+ return self.do_lookup_create_oo_instance( -+ gncInvoiceLookup, Invoice, guid.get_instance() ) -+ -+ def EntryLookup(self, guid): -+ from gnucash_business import Entr -+ return self.do_lookup_create_oo_instance( -+ gncEntryLookup, Entry, guid.get_instance() ) -+ -+ def CustomerLookup(self, guid): -+ from gnucash_business import Customer -+ return self.do_lookup_create_oo_instance( -+ gncCustomerLookup, Customer, guid.get_instance()) -+ -+ def JobLookup(self, guid): -+ from gnucash_business import Job -+ return self.do_lookup_create_oo_instance( -+ gncJobLookup, Job, guid.get_instance() ) -+ -+ def VendorLookup(self, guid): -+ from gnucash_business import Vendor -+ return self.do_lookup_create_oo_instance( -+ gncVendorLookup, Vendor, guid.get_instance() ) -+ -+ def EmployeeLookup(self, guid): -+ from gnucash_business import Employee -+ return self.do_lookup_create_oo_instance( -+ gncEmployeeLookup, Employee, guid.get_instance() ) -+ -+ def TaxTableLookup(self, guid): -+ from gnucash_business import TaxTable -+ return self.do_lookup_create_oo_instance( -+ gncTaxTableLookup, TaxTable, guid.get_instance() ) -+ -+ def TaxTableLookupByName(self, name): -+ from gnucash_business import TaxTable -+ return self.do_lookup_create_oo_instance( -+ gncTaxTableLookupByName, TaxTable, name) -+ -+ def TaxTableGetTables(self): -+ from gnucash_business import TaxTable -+ return [ TaxTable(instance=item) for item in gncTaxTableGetTables(self.instance) ] -+ -+ def BillLoookupByID(self, id): -+ from gnucash_business import Bill -+ return self.do_lookup_create_oo_instance( -+ gnc_search_bill_on_id, Bill, id) -+ -+ def InvoiceLookupByID(self, id): -+ from gnucash_business import Invoice -+ return self.do_lookup_create_oo_instance( -+ gnc_search_invoice_on_id, Invoice, id) -+ -+ def CustomerLookupByID(self, id): -+ from gnucash_business import Customer -+ return self.do_lookup_create_oo_instance( -+ gnc_search_customer_on_id, Customer, id) -+ -+ def VendorLookupByID(self, id): -+ from gnucash_business import Vendor -+ return self.do_lookup_create_oo_instance( -+ gnc_search_vendor_on_id, Vendor, id) -+ -+ def InvoiceNextID(self, customer): -+ ''' Return the next invoice ID. -+ This works but I'm not entirely happy with it. FIX ME''' -+ from gnucash.gnucash_core_c import gncInvoiceNextID -+ return gncInvoiceNextID(self.get_instance(),customer.GetEndOwner().get_instance()[1]) -+ -+ def BillNextID(self, vendor): -+ ''' Return the next Bill ID. ''' -+ from gnucash.gnucash_core_c import gncInvoiceNextID -+ return gncInvoiceNextID(self.get_instance(),vendor.GetEndOwner().get_instance()[1]) -+ -+ def CustomerNextID(self): -+ ''' Return the next Customer ID. ''' -+ from gnucash.gnucash_core_c import gncCustomerNextID -+ return gncCustomerNextID(self.get_instance()) -+ -+ def VendorNextID(self): -+ ''' Return the next Vendor ID. ''' -+ from gnucash.gnucash_core_c import gncVendorNextID -+ return gncVendorNextID(self.get_instance()) -+ -+class GncNumeric(GnuCashCoreClass): -+ """Object used by GnuCash to store all numbers. Always consists of a -+ numerator and denominator. -+ -+ The constants GNC_DENOM_AUTO, -+ GNC_HOW_RND_FLOOR, GNC_HOW_RND_CEIL, GNC_HOW_RND_TRUNC, -+ GNC_HOW_RND_PROMOTE, GNC_HOW_RND_ROUND_HALF_DOWN, -+ GNC_HOW_RND_ROUND_HALF_UP, GNC_HOW_RND_ROUND, GNC_HOW_RND_NEVER, -+ GNC_HOW_DENOM_EXACT, GNC_HOW_DENOM_REDUCE, GNC_HOW_DENOM_LCD, -+ and GNC_HOW_DENOM_FIXED are available for arithmetic -+ functions like GncNumeric.add -+ -+ Look at gnc-numeric.h to see how to use these -+ """ -+ -+ def __init__(self, num=0, denom=1, **kargs): -+ """Constructor that allows you to set the numerator and denominator or -+ leave them blank with a default value of 0 (not a good idea since there -+ is currently no way to alter the value after instantiation) -+ """ -+ GnuCashCoreClass.__init__(self, num, denom, **kargs) -+ #if INSTANCE_ARG in kargs: -+ # GnuCashCoreClass.__init__(**kargs) -+ #else: -+ # self.set_denom(denom) # currently undefined -+ # self.set_num(num) # currently undefined -+ -+ def __unicode__(self): -+ """Returns a human readable numeric value string as UTF8.""" -+ if self.denom() == 0: -+ return "Division by zero" -+ else: -+ value_float = self.to_double() -+ value_str = u"{0:.{1}f}".format(value_float,2) ## The second argument is the precision. It would be nice to be able to make it configurable. -+ return value_str -+ -+ def __str__(self): -+ """returns a human readable numeric value string as bytes.""" -+ return unicode(self).encode('utf-8') -+ -+class GncPrice(GnuCashCoreClass): -+ ''' -+ Each priceEach price in the database represents an "instantaneous" -+ quote for a given commodity with respect to another commodity. -+ For example, a given price might represent the value of LNUX in USD on 2001-02-03. -+ -+ Fields: -+ * commodity: the item being priced. -+ * currency: the denomination of the value of the item being priced. -+ * value: the value of the item being priced. -+ * time: the time the price was valid. -+ * source: a string describing the source of the quote. These strings will be something like this: -+ "Finance::Quote", "user:misc", "user:foo", etc. If the quote came from a user, as a matter of policy, -+ you *must* prefix the string you give with "user:". For now, the only other reserved values are -+ "Finance::Quote" and "old-file-import". Any string used must be added to the source_list array in -+ dialog-price-edit-db.c so that it can be properly translated. (There are unfortunately many strings -+ in users' databases, so this string must be translated on output instead of always being used in untranslated form). -+ * type: the type of quote - types possible right now are bid, ask, last, nav, and -+ unknown.Each price in the database represents an "instantaneous" quote for a given -+ commodity with respect to another commodity. -+ For example, a given price might represent the value of LNUX in USD on 2001-02-03. -+ -+ See also http://code.gnucash.org/docs/head/group__Price.html -+ ''' -+ pass -+GncPrice.add_methods_with_prefix('gnc_price_') -+ -+ -+class GncPriceDB(GnuCashCoreClass): -+ ''' -+ a simple price database for gnucash. -+ The PriceDB is intended to be a database of price quotes, or more specifically, -+ a database of GNCPrices. For the time being, it is still a fairly simple -+ database supporting only fairly simple queries. It is expected that new -+ queries will be added as needed, and that there is some advantage to delaying -+ complex queries for now in the hope that we get a real DB implementation -+ before they're really needed. -+ -+ Every QofBook contains a GNCPriceDB, accessible via gnc_pricedb_get_db. -+ -+ Definition in file gnc-pricedb.h. -+ See also http://code.gnucash.org/docs/head/gnc-pricedb_8h.html -+ ''' -+ -+GncPriceDB.add_methods_with_prefix('gnc_pricedb_') -+PriceDB_dict = { -+ 'lookup_latest' : GncPrice, -+ 'lookup_nearest_in_time' : GncPrice, -+ 'lookup_latest_before' : GncPrice, -+ 'convert_balance_latest_price' : GncNumeric, -+ 'convert_balance_nearest_price' : GncNumeric, -+ } -+methods_return_instance(GncPriceDB,PriceDB_dict) -+GncPriceDB.get_prices = method_function_returns_instance_list( -+ GncPriceDB.get_prices, GncPrice ) -+ -+ -+class GncCommodity(GnuCashCoreClass): pass -+ -+class GncCommodityTable(GnuCashCoreClass): -+ """A CommodityTable provides a way to store and lookup commodities. -+ Commodities are primarily currencies, but other tradable things such as -+ stocks, mutual funds, and material substances are possible. -+ -+ Users of this library should not create their own CommodityTable, instead -+ the get_table method from the Book class should be used. -+ -+ This table is automatically populated with the GnuCash default commodity's -+ which includes most of the world's currencies. -+ """ -+ -+ pass -+ -+class GncCommodityNamespace(GnuCashCoreClass): -+ pass -+ -+class GncLot(GnuCashCoreClass): -+ def GetInvoiceFromLot(self): -+ from gnucash_business import Invoice -+ return self.do_lookup_create_oo_instance( -+ gncInvoiceGetInvoiceFromLot, Invoice ) -+ -+class Transaction(GnuCashCoreClass): -+ """A GnuCash Transaction -+ -+ Consists of at least one (generally two) splits to represent a transaction -+ between two accounts. -+ -+ -+ Has a GetImbalance() method that returns a list of all the imbalanced -+ currencies. Each list item is a two element tuple, the first element is -+ the imbalanced commodity, the second element is the value. -+ -+ Warning, the commodity.get_instance() value can be None when there -+ is no currency set for the transaction. -+ """ -+ _new_instance = 'xaccMallocTransaction' -+ def GetNthSplit(self, n): -+ return self.GetSplitList().pop(n) -+ -+ def GetInvoiceFromTxn(self): -+ from gnucash_business import Transaction -+ return self.do_lookup_create_oo_instance( -+ gncInvoiceGetInvoiceFromTxn, Transaction ) -+ -+def decorate_monetary_list_returning_function(orig_function): -+ def new_function(self): -+ # warning, item.commodity has been shown to be None -+ # when the transaction doesn't have a currency -+ return [(GncCommodity(instance=item.commodity), -+ GncNumeric(instance=item.value)) -+ for item in orig_function(self) ] -+ return new_function -+ -+class Split(GnuCashCoreClass): -+ """A GnuCash Split -+ -+ The most basic representation of a movement of currency from one account to -+ another. -+ """ -+ _new_instance = 'xaccMallocSplit' -+ -+class Account(GnuCashCoreClass): -+ """A GnuCash Account. -+ -+ A fundamental entity in accounting, an Account provides representation -+ for a financial object, such as a ACCT_TYPE_BANK account, an -+ ACCT_TYPE_ASSET (like a building), -+ a ACCT_TYPE_LIABILITY (such as a bank loan), a summary of some type of -+ ACCT_TYPE_EXPENSE, or a summary of some source of ACCT_TYPE_INCOME . -+ -+ The words in upper case are the constants that GnuCash and this library uses -+ to describe account type. Here is the full list: -+ ACCT_TYPE_ASSET, ACCT_TYPE_BANK, ACCT_TYPE_CASH, ACCT_TYPE_CHECKING, \ -+ ACCT_TYPE_CREDIT, ACCT_TYPE_EQUITY, ACCT_TYPE_EXPENSE, ACCT_TYPE_INCOME, \ -+ ACCT_TYPE_LIABILITY, ACCT_TYPE_MUTUAL, ACCT_TYPE_PAYABLE, \ -+ ACCT_TYPE_RECEIVABLE, ACCT_TYPE_STOCK, ACCT_TYPE_ROOT, ACCT_TYPE_TRADING -+ -+ These are not strings, they are attributes you can import from this -+ module -+ """ -+ _new_instance = 'xaccMallocAccount' -+ -+class GUID(GnuCashCoreClass): -+ _new_instance = 'guid_new_return' -+ -+# Session -+Session.add_constructor_and_methods_with_prefix('qof_session_', 'new') -+ -+def one_arg_default_none(function): -+ return default_arguments_decorator(function, None, None) -+Session.decorate_functions(one_arg_default_none, "load", "save") -+ -+Session.decorate_functions( Session.raise_backend_errors_after_call, -+ "begin", "load", "save", "end") -+Session.get_book = method_function_returns_instance( -+ Session.get_book, Book ) -+ -+Session.book = property( Session.get_book ) -+ -+# import all of the session backend error codes into this module -+this_module_dict = globals() -+for error_name, error_value, error_name_after_prefix in \ -+ extract_attributes_with_prefix(gnucash_core_c, 'ERR_'): -+ this_module_dict[ error_name ] = error_value -+ -+#backend error codes used for reverse lookup -+backend_error_dict = {} -+for error_name, error_value, error_name_after_prefix in \ -+ extract_attributes_with_prefix(gnucash_core_c, 'ERR_'): -+ backend_error_dict[ error_value ] = error_name -+ -+# GncNumeric denominator computation schemes -+# Used for the denom argument in arithmetic functions like GncNumeric.add -+from gnucash.gnucash_core_c import GNC_DENOM_AUTO -+ -+# GncNumeric rounding instructions -+# used for the how argument in arithmetic functions like GncNumeric.add -+from gnucash.gnucash_core_c import \ -+ GNC_HOW_RND_FLOOR, GNC_HOW_RND_CEIL, GNC_HOW_RND_TRUNC, \ -+ GNC_HOW_RND_PROMOTE, GNC_HOW_RND_ROUND_HALF_DOWN, \ -+ GNC_HOW_RND_ROUND_HALF_UP, GNC_HOW_RND_ROUND, GNC_HOW_RND_NEVER -+ -+# GncNumeric denominator types -+# used for the how argument in arithmetic functions like GncNumeric.add -+from gnucash.gnucash_core_c import \ -+ GNC_HOW_DENOM_EXACT, GNC_HOW_DENOM_REDUCE, GNC_HOW_DENOM_LCD, \ -+ GNC_HOW_DENOM_FIXED -+ -+# import account types -+from gnucash.gnucash_core_c import \ -+ ACCT_TYPE_ASSET, ACCT_TYPE_BANK, ACCT_TYPE_CASH, ACCT_TYPE_CHECKING, \ -+ ACCT_TYPE_CREDIT, ACCT_TYPE_EQUITY, ACCT_TYPE_EXPENSE, ACCT_TYPE_INCOME, \ -+ ACCT_TYPE_LIABILITY, ACCT_TYPE_MUTUAL, ACCT_TYPE_PAYABLE, \ -+ ACCT_TYPE_RECEIVABLE, ACCT_TYPE_STOCK, ACCT_TYPE_ROOT, ACCT_TYPE_TRADING -+ -+#Book -+Book.add_constructor_and_methods_with_prefix('qof_book_', 'new') -+Book.add_method('gnc_book_get_root_account', 'get_root_account') -+Book.add_method('gnc_book_set_root_account', 'set_root_account') -+Book.add_method('gnc_commodity_table_get_table', 'get_table') -+Book.add_method('gnc_pricedb_get_db', 'get_price_db') -+Book.add_method('qof_book_increment_and_format_counter', 'increment_and_format_counter') -+ -+#Functions that return Account -+Book.get_root_account = method_function_returns_instance( -+ Book.get_root_account, Account ) -+#Functions that return GncCommodityTable -+Book.get_table = method_function_returns_instance( -+ Book.get_table, GncCommodityTable ) -+#Functions that return GNCPriceDB -+Book.get_price_db = method_function_returns_instance( -+ Book.get_price_db, GncPriceDB) -+ -+# GncNumeric -+GncNumeric.add_constructor_and_methods_with_prefix('gnc_numeric_', 'create') -+ -+gncnumeric_dict = { -+ 'same' : GncNumeric, -+ 'add' : GncNumeric, -+ 'sub' : GncNumeric, -+ 'mul' : GncNumeric, -+ 'div' : GncNumeric, -+ 'neg' : GncNumeric, -+ 'abs' : GncNumeric, -+ 'add_fixed' : GncNumeric, -+ 'sub_fixed' : GncNumeric, -+ 'add_with_error' : GncNumeric, -+ 'sub_with_error' : GncNumeric, -+ 'mul_with_error' : GncNumeric, -+ 'div_with_error' : GncNumeric, -+ 'convert' : GncNumeric, -+ 'reduce' : GncNumeric -+ } -+methods_return_instance(GncNumeric, gncnumeric_dict) -+ -+# GncCommodity -+GncCommodity.add_constructor_and_methods_with_prefix('gnc_commodity_', 'new') -+#Functions that return GncCommodity -+GncCommodity.clone = method_function_returns_instance( -+ GncCommodity.clone, GncCommodity ) -+ -+# GncCommodityTable -+GncCommodityTable.add_methods_with_prefix('gnc_commodity_table_') -+commoditytable_dict = { -+ 'lookup' : GncCommodity, -+ 'lookup_unique' : GncCommodity, -+ 'find_full' : GncCommodity, -+ 'insert' : GncCommodity, -+ 'add_namespace': GncCommodityNamespace, -+ 'find_namespace': GncCommodityNamespace, -+ } -+methods_return_instance(GncCommodityTable, commoditytable_dict) -+ -+methods_return_instance_lists( -+ GncCommodityTable, { 'get_namespaces': GncCommodityNamespace, -+ 'get_namespaces_list': GncCommodityNamespace, -+ 'get_commodities': GncCommodity, -+ 'get_quotable_commodities': GncCommodity, -+ -+ } ) -+ -+# GncCommodityNamespace -+GncCommodityNamespace.add_methods_with_prefix('gnc_commodity_namespace_') -+GncCommodityNamespace.get_commodity_list = \ -+ method_function_returns_instance_list( -+ GncCommodityNamespace.get_commodity_list, GncCommodity ) -+ -+# GncLot -+GncLot.add_constructor_and_methods_with_prefix('gnc_lot_', 'new') -+ -+gnclot_dict = { -+ 'get_account' : Account, -+ 'get_book' : Book, -+ 'get_earliest_split' : Split, -+ 'get_latest_split' : Split, -+ 'get_balance' : GncNumeric, -+ 'lookup' : GncLot, -+ 'make_default' : GncLot -+ } -+methods_return_instance(GncLot, gnclot_dict) -+ -+# Transaction -+Transaction.add_methods_with_prefix('xaccTrans') -+Transaction.add_method('gncTransGetGUID', 'GetGUID'); -+ -+trans_dict = { -+ 'GetSplit': Split, -+ 'FindSplitByAccount': Split, -+ 'Clone': Transaction, -+ 'Reverse': Transaction, -+ 'GetReversedBy': Transaction, -+ 'GetImbalanceValue': GncNumeric, -+ 'GetAccountValue': GncNumeric, -+ 'GetAccountAmount': GncNumeric, -+ 'GetAccountConvRate': GncNumeric, -+ 'GetAccountBalance': GncNumeric, -+ 'GetCurrency': GncCommodity, -+ 'GetGUID': GUID -+ } -+ -+methods_return_instance(Transaction, trans_dict) -+methods_return_instance_lists( -+ Transaction, { 'GetSplitList': Split, -+ }) -+Transaction.decorate_functions( -+ decorate_monetary_list_returning_function, 'GetImbalance') -+ -+# Split -+Split.add_methods_with_prefix('xaccSplit') -+Split.add_method('gncSplitGetGUID', 'GetGUID'); -+ -+split_dict = { -+ 'GetBook': Book, -+ 'GetAccount': Account, -+ 'GetParent': Transaction, -+ 'Lookup': Split, -+ 'GetOtherSplit': Split, -+ 'GetAmount': GncNumeric, -+ 'GetValue': GncNumeric, -+ 'GetSharePrice': GncNumeric, -+ 'ConvertAmount': GncNumeric, -+ 'GetBaseValue': GncNumeric, -+ 'GetBalance': GncNumeric, -+ 'GetClearedBalance': GncNumeric, -+ 'GetReconciledBalance': GncNumeric, -+ 'VoidFormerAmount': GncNumeric, -+ 'VoidFormerValue': GncNumeric, -+ 'GetGUID': GUID -+ } -+methods_return_instance(Split, split_dict) -+ -+Split.account = property( Split.GetAccount, Split.SetAccount ) -+Split.parent = property( Split.GetParent, Split.SetParent ) -+ -+# Account -+Account.add_methods_with_prefix('xaccAccount') -+Account.add_methods_with_prefix('gnc_account_') -+Account.add_method('gncAccountGetGUID', 'GetGUID'); -+ -+account_dict = { -+ 'get_book' : Book, -+ 'Lookup' : Account, -+ 'get_parent' : Account, -+ 'get_root' : Account, -+ 'nth_child' : Account, -+ 'lookup_by_code' : Account, -+ 'lookup_by_name' : Account, -+ 'lookup_by_full_name' : Account, -+ 'FindTransByDesc' : Transaction, -+ 'FindSplitByDesc' : Split, -+ 'GetBalance' : GncNumeric, -+ 'GetClearedBalance' : GncNumeric, -+ 'GetReconciledBalance' : GncNumeric, -+ 'GetPresentBalance' : GncNumeric, -+ 'GetProjectedMinimumBalance' : GncNumeric, -+ 'GetBalanceAsOfDate' : GncNumeric, -+ 'ConvertBalanceToCurrency' : GncNumeric, -+ 'ConvertBalanceToCurrencyAsOfDate' : GncNumeric, -+ 'GetBalanceInCurrency' : GncNumeric, -+ 'GetClearedBalanceInCurrency' : GncNumeric, -+ 'GetReconciledBalanceInCurrency' : GncNumeric, -+ 'GetPresentBalanceInCurrency' : GncNumeric, -+ 'GetProjectedMinimumBalanceInCurrency' : GncNumeric, -+ 'GetBalanceAsOfDateInCurrency' : GncNumeric, -+ 'GetBalanceChangeForPeriod' : GncNumeric, -+ 'GetCommodity' : GncCommodity, -+ 'GetGUID': GUID -+ } -+methods_return_instance(Account, account_dict) -+methods_return_instance_lists( -+ Account, { 'GetSplitList': Split, -+ 'get_children': Account, -+ 'get_children_sorted': Account, -+ 'get_descendants': Account, -+ 'get_descendants_sorted': Account -+ }) -+Account.name = property( Account.GetName, Account.SetName ) -+ -+#GUID -+GUID.add_methods_with_prefix('guid_') -+GUID.add_method('xaccAccountLookup', 'AccountLookup') -+GUID.add_method('xaccTransLookup', 'TransLookup') -+GUID.add_method('xaccSplitLookup', 'SplitLookup') -+ -+## define addition methods for GUID object - do we need these -+GUID.add_method('guid_to_string', 'to_string') -+#GUID.add_method('string_to_guid', 'string_to_guid') -+ -+guid_dict = { -+ 'copy' : GUID, -+ 'TransLookup': Transaction, -+ 'AccountLookup': Account, -+ 'SplitLookup': Split -+ } -+methods_return_instance(GUID, guid_dict) -+ -+#GUIDString -+class GUIDString(GnuCashCoreClass): -+ pass -+ -+GUIDString.add_constructor_and_methods_with_prefix('string_', 'to_guid') -+ -+#Query -+from gnucash_core_c import \ -+ QOF_QUERY_AND, \ -+ QOF_QUERY_OR, \ -+ QOF_QUERY_NAND, \ -+ QOF_QUERY_NOR, \ -+ QOF_QUERY_XOR -+ -+from gnucash_core_c import \ -+ QOF_STRING_MATCH_NORMAL, \ -+ QOF_STRING_MATCH_CASEINSENSITIVE -+ -+from gnucash_core_c import \ -+ QOF_COMPARE_LT, \ -+ QOF_COMPARE_LTE, \ -+ QOF_COMPARE_EQUAL, \ -+ QOF_COMPARE_GT, \ -+ QOF_COMPARE_GTE, \ -+ QOF_COMPARE_NEQ -+ -+from gnucash_core_c import \ -+ INVOICE_TYPE -+ -+from gnucash_core_c import \ -+ INVOICE_IS_PAID -+ -+class Query(GnuCashCoreClass): -+ pass -+ -+Query.add_constructor_and_methods_with_prefix('qof_query_', 'create') -+ -+Query.add_method('qof_query_set_book', 'set_book') -+Query.add_method('qof_query_search_for', 'search_for') -+Query.add_method('qof_query_run', 'run') -+Query.add_method('qof_query_add_term', 'add_term') -+Query.add_method('qof_query_add_boolean_match', 'add_boolean_match') -+Query.add_method('qof_query_destroy', 'destroy') -+ -+class QueryStringPredicate(GnuCashCoreClass): -+ pass -+ -+QueryStringPredicate.add_constructor_and_methods_with_prefix('qof_query_', 'string_predicate') -+ -+class QueryBooleanPredicate(GnuCashCoreClass): -+ pass -+ -+QueryBooleanPredicate.add_constructor_and_methods_with_prefix('qof_query_', 'boolean_predicate') -+ -+class QueryInt32Predicate(GnuCashCoreClass): -+ pass -+ -+QueryInt32Predicate.add_constructor_and_methods_with_prefix('qof_query_', 'int32_predicate') diff --git a/finance/gnucash/pkg-plist b/finance/gnucash/pkg-plist index 9ddd17da7f6..3421f518107 100644 --- a/finance/gnucash/pkg-plist +++ b/finance/gnucash/pkg-plist @@ -243,6 +243,7 @@ lib/gnucash/libgncmod-ledger-core.so lib/gnucash/libgncmod-locale-reports-us.so lib/gnucash/libgncmod-log-replay.so %%OFX%%lib/gnucash/libgncmod-ofx.so +%%PYTHON%%lib/gnucash/libgncmod-python.so lib/gnucash/libgncmod-qif-import.so lib/gnucash/libgncmod-register-core.so lib/gnucash/libgncmod-register-gnome.so @@ -287,11 +288,9 @@ lib/gnucash/scm/ccache/2.0/gnucash/report/aging.go lib/gnucash/scm/ccache/2.0/gnucash/report/balsheet-eg.go lib/gnucash/scm/ccache/2.0/gnucash/report/business-reports.go lib/gnucash/scm/ccache/2.0/gnucash/report/customer-summary.go -lib/gnucash/scm/ccache/2.0/gnucash/report/easy-invoice.go lib/gnucash/scm/ccache/2.0/gnucash/report/eguile-gnc.go lib/gnucash/scm/ccache/2.0/gnucash/report/eguile-html-utilities.go lib/gnucash/scm/ccache/2.0/gnucash/report/eguile-utilities.go -lib/gnucash/scm/ccache/2.0/gnucash/report/fancy-invoice.go lib/gnucash/scm/ccache/2.0/gnucash/report/hello-world.go lib/gnucash/scm/ccache/2.0/gnucash/report/invoice.go lib/gnucash/scm/ccache/2.0/gnucash/report/job-report.go @@ -308,7 +307,6 @@ lib/gnucash/scm/ccache/2.0/gnucash/report/report-system/report-collectors.go %%TEST%%lib/gnucash/scm/ccache/2.0/gnucash/report/report-system/test/test-collectors.go %%TEST%%lib/gnucash/scm/ccache/2.0/gnucash/report/report-system/test/test-extras.go %%TEST%%lib/gnucash/scm/ccache/2.0/gnucash/report/report-system/test/test-load-report-system-module.go -%%TEST%%lib/gnucash/scm/ccache/2.0/gnucash/report/report-system/test/test-report-utilities.go %%TEST%%lib/gnucash/scm/ccache/2.0/gnucash/report/report-system/test/test-test-extras.go lib/gnucash/scm/ccache/2.0/gnucash/report/standard-reports.go lib/gnucash/scm/ccache/2.0/gnucash/report/standard-reports/account-piecharts.go @@ -1060,11 +1058,9 @@ share/applications/gnucash.desktop %%DATADIR%%/scm/gnucash/report/balsheet-eg.scm %%DATADIR%%/scm/gnucash/report/business-reports.scm %%DATADIR%%/scm/gnucash/report/customer-summary.scm -%%DATADIR%%/scm/gnucash/report/easy-invoice.scm %%DATADIR%%/scm/gnucash/report/eguile-gnc.scm %%DATADIR%%/scm/gnucash/report/eguile-html-utilities.scm %%DATADIR%%/scm/gnucash/report/eguile-utilities.scm -%%DATADIR%%/scm/gnucash/report/fancy-invoice.scm %%DATADIR%%/scm/gnucash/report/hello-world.scm %%DATADIR%%/scm/gnucash/report/invoice.scm %%DATADIR%%/scm/gnucash/report/job-report.scm @@ -1083,7 +1079,6 @@ share/applications/gnucash.desktop %%TEST%%%%DATADIR%%/scm/gnucash/report/report-system/test/test-collectors.scm %%TEST%%%%DATADIR%%/scm/gnucash/report/report-system/test/test-extras.scm %%TEST%%%%DATADIR%%/scm/gnucash/report/report-system/test/test-load-report-system-module.scm -%%TEST%%%%DATADIR%%/scm/gnucash/report/report-system/test/test-report-utilities.scm %%TEST%%%%DATADIR%%/scm/gnucash/report/report-system/test/test-test-extras.scm %%DATADIR%%/scm/gnucash/report/standard-reports.scm %%DATADIR%%/scm/gnucash/report/standard-reports/account-piecharts.scm diff --git a/finance/p5-Business-OnlinePayment-2CheckOut/Makefile b/finance/p5-Business-OnlinePayment-2CheckOut/Makefile index c36a4eadb72..2bdaf0347e3 100644 --- a/finance/p5-Business-OnlinePayment-2CheckOut/Makefile +++ b/finance/p5-Business-OnlinePayment-2CheckOut/Makefile @@ -11,10 +11,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Business::OnlinePayment backend module for 2CheckOut authorization service -BUILD_DEPENDS= p5-Business-CreditCard>=0:finance/p5-Business-CreditCard \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Business-CreditCard>=0:finance/p5-Business-CreditCard \ p5-Business-OnlinePayment>=0:finance/p5-Business-OnlinePayment \ p5-Text-CSV_XS>=0:textproc/p5-Text-CSV_XS -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure patch diff --git a/finance/p5-Business-OnlinePayment-AuthorizeNet/Makefile b/finance/p5-Business-OnlinePayment-AuthorizeNet/Makefile index cb5dda9873e..2c7429b60fa 100644 --- a/finance/p5-Business-OnlinePayment-AuthorizeNet/Makefile +++ b/finance/p5-Business-OnlinePayment-AuthorizeNet/Makefile @@ -13,13 +13,13 @@ COMMENT= Business::OnlinePayment backend module for Authorize.Net LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Business-OnlinePayment>=3:finance/p5-Business-OnlinePayment \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Business-OnlinePayment>=3:finance/p5-Business-OnlinePayment \ p5-Net-SSLeay>=0:security/p5-Net-SSLeay \ p5-Text-CSV_XS>=0:textproc/p5-Text-CSV_XS \ p5-Tie-IxHash>=0:devel/p5-Tie-IxHash \ p5-XML-Simple>=0:textproc/p5-XML-Simple \ p5-XML-Writer>=0:textproc/p5-XML-Writer -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/finance/p5-Business-OnlinePayment-BankOfAmerica/Makefile b/finance/p5-Business-OnlinePayment-BankOfAmerica/Makefile index e6015a8f55d..a20942801c1 100644 --- a/finance/p5-Business-OnlinePayment-BankOfAmerica/Makefile +++ b/finance/p5-Business-OnlinePayment-BankOfAmerica/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Business::OnlinePayment backend module for Bank of America eStores -BUILD_DEPENDS= p5-Business-CreditCard>=0:finance/p5-Business-CreditCard \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Business-CreditCard>=0:finance/p5-Business-CreditCard \ p5-Business-OnlinePayment>=0:finance/p5-Business-OnlinePayment -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/finance/p5-Business-OnlinePayment-Cardstream/Makefile b/finance/p5-Business-OnlinePayment-Cardstream/Makefile index 9d06108b9c9..d8419f93132 100644 --- a/finance/p5-Business-OnlinePayment-Cardstream/Makefile +++ b/finance/p5-Business-OnlinePayment-Cardstream/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Business::OnlinePayment backend module for Cardstream -BUILD_DEPENDS= p5-Business-CreditCard>=0:finance/p5-Business-CreditCard \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Business-CreditCard>=0:finance/p5-Business-CreditCard \ p5-Business-OnlinePayment>=0:finance/p5-Business-OnlinePayment -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/finance/p5-Business-OnlinePayment-Jettis/Makefile b/finance/p5-Business-OnlinePayment-Jettis/Makefile index 05ee34cab87..2118d2f638e 100644 --- a/finance/p5-Business-OnlinePayment-Jettis/Makefile +++ b/finance/p5-Business-OnlinePayment-Jettis/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Business::OnlinePayment backend module for Jettis -BUILD_DEPENDS= p5-Business-CreditCard>=0:finance/p5-Business-CreditCard \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Business-CreditCard>=0:finance/p5-Business-CreditCard \ p5-Business-OnlinePayment>=0:finance/p5-Business-OnlinePayment -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/finance/p5-Business-OnlinePayment-LinkPoint/Makefile b/finance/p5-Business-OnlinePayment-LinkPoint/Makefile index bc6a97b1f46..983eacdd91e 100644 --- a/finance/p5-Business-OnlinePayment-LinkPoint/Makefile +++ b/finance/p5-Business-OnlinePayment-LinkPoint/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Business::OnlinePayment backend module for LinkPoint -BUILD_DEPENDS= p5-Business-CreditCard>=0:finance/p5-Business-CreditCard \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Business-CreditCard>=0:finance/p5-Business-CreditCard \ p5-Business-OnlinePayment>=0:finance/p5-Business-OnlinePayment -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/finance/p5-Business-OnlinePayment-MerchantCommerce/Makefile b/finance/p5-Business-OnlinePayment-MerchantCommerce/Makefile index 6fdb124dfcc..b50658f7043 100644 --- a/finance/p5-Business-OnlinePayment-MerchantCommerce/Makefile +++ b/finance/p5-Business-OnlinePayment-MerchantCommerce/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Business::OnlinePayment backend module for MerchantCommerce authorization service -BUILD_DEPENDS= p5-Business-OnlinePayment>=0:finance/p5-Business-OnlinePayment -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Business-OnlinePayment>=0:finance/p5-Business-OnlinePayment USES= perl5 USE_PERL5= configure diff --git a/finance/p5-Business-OnlinePayment-Network1Financial/Makefile b/finance/p5-Business-OnlinePayment-Network1Financial/Makefile index 5bab6fcefdf..086a33f4cae 100644 --- a/finance/p5-Business-OnlinePayment-Network1Financial/Makefile +++ b/finance/p5-Business-OnlinePayment-Network1Financial/Makefile @@ -14,9 +14,9 @@ COMMENT= Business::OnlinePayment backend module for Network1 Financial LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Business-CreditCard>=0:finance/p5-Business-CreditCard \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Business-CreditCard>=0:finance/p5-Business-CreditCard \ p5-Business-OnlinePayment>=0:finance/p5-Business-OnlinePayment -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/finance/p5-Business-OnlinePayment-OCV/Makefile b/finance/p5-Business-OnlinePayment-OCV/Makefile index 7770a13709a..3396d8d2c30 100644 --- a/finance/p5-Business-OnlinePayment-OCV/Makefile +++ b/finance/p5-Business-OnlinePayment-OCV/Makefile @@ -14,9 +14,9 @@ COMMENT= Business::OnlinePayment backend module for OCV LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Business-OCV>=0:finance/p5-Business-OCV \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Business-OCV>=0:finance/p5-Business-OCV \ p5-Business-OnlinePayment>=0:finance/p5-Business-OnlinePayment -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/finance/p5-Business-OnlinePayment-PayConnect/Makefile b/finance/p5-Business-OnlinePayment-PayConnect/Makefile index 1ed2d6ece8d..76da44e5266 100644 --- a/finance/p5-Business-OnlinePayment-PayConnect/Makefile +++ b/finance/p5-Business-OnlinePayment-PayConnect/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Business::OnlinePayment backend module for PaymentOne PayConnect -BUILD_DEPENDS= p5-Business-CreditCard>=0:finance/p5-Business-CreditCard \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Business-CreditCard>=0:finance/p5-Business-CreditCard \ p5-Business-OnlinePayment>=0:finance/p5-Business-OnlinePayment -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/finance/p5-Business-OnlinePayment-PaymenTech/Makefile b/finance/p5-Business-OnlinePayment-PaymenTech/Makefile index d289ce5a600..0e28414e998 100644 --- a/finance/p5-Business-OnlinePayment-PaymenTech/Makefile +++ b/finance/p5-Business-OnlinePayment-PaymenTech/Makefile @@ -13,11 +13,11 @@ COMMENT= PaymenTech backend for Business::OnlinePayment LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Business-OnlinePayment>=0:finance/p5-Business-OnlinePayment \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Business-OnlinePayment>=0:finance/p5-Business-OnlinePayment \ p5-Module-Install>=0:devel/p5-Module-Install \ p5-Net-HTTPS-Any>=0.10:net/p5-Net-HTTPS-Any \ p5-XML-Simple>=0:textproc/p5-XML-Simple -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/finance/p5-Business-OnlinePayment-PaymentsGateway/Makefile b/finance/p5-Business-OnlinePayment-PaymentsGateway/Makefile index e1158f44f34..ebe9cec43ef 100644 --- a/finance/p5-Business-OnlinePayment-PaymentsGateway/Makefile +++ b/finance/p5-Business-OnlinePayment-PaymentsGateway/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Business::OnlinePayment backend module for PaymentsGateway.net ACH Direct -BUILD_DEPENDS= p5-Business-CreditCard>=0:finance/p5-Business-CreditCard \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Business-CreditCard>=0:finance/p5-Business-CreditCard \ p5-Business-OnlinePayment>=0:finance/p5-Business-OnlinePayment -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/finance/p5-Business-OnlinePayment-SurePay/Makefile b/finance/p5-Business-OnlinePayment-SurePay/Makefile index 0e8aec2f09a..fca290c2a7d 100644 --- a/finance/p5-Business-OnlinePayment-SurePay/Makefile +++ b/finance/p5-Business-OnlinePayment-SurePay/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Business::OnlinePayment backend module for SurePay authorization service -BUILD_DEPENDS= p5-Business-CreditCard>=0:finance/p5-Business-CreditCard \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Business-CreditCard>=0:finance/p5-Business-CreditCard \ p5-Business-OnlinePayment>=0:finance/p5-Business-OnlinePayment -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure patch diff --git a/finance/p5-Business-OnlinePayment-TCLink/Makefile b/finance/p5-Business-OnlinePayment-TCLink/Makefile index 2617e105d8b..57839d4b0be 100644 --- a/finance/p5-Business-OnlinePayment-TCLink/Makefile +++ b/finance/p5-Business-OnlinePayment-TCLink/Makefile @@ -11,10 +11,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Business::OnlinePayment backend module for TrustCommerce -BUILD_DEPENDS= p5-Business-CreditCard>=0:finance/p5-Business-CreditCard \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Business-CreditCard>=0:finance/p5-Business-CreditCard \ p5-Business-OnlinePayment>=0:finance/p5-Business-OnlinePayment \ p5-Net-TCLink>=0:net/p5-Net-TCLink -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/finance/p5-Business-OnlinePayment-VirtualNet/Makefile b/finance/p5-Business-OnlinePayment-VirtualNet/Makefile index 12fdff292ff..eda67e59449 100644 --- a/finance/p5-Business-OnlinePayment-VirtualNet/Makefile +++ b/finance/p5-Business-OnlinePayment-VirtualNet/Makefile @@ -11,13 +11,13 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Business::OnlinePayment backend module for Vital VirtualNet -BUILD_DEPENDS= p5-Business-CreditCard>=0:finance/p5-Business-CreditCard \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Business-CreditCard>=0:finance/p5-Business-CreditCard \ p5-Business-OnlinePayment>=0:finance/p5-Business-OnlinePayment \ p5-TimeDate>=0:devel/p5-TimeDate \ p5-File-CounterFile>=0:misc/p5-File-CounterFile \ p5-String-Parity>=0:devel/p5-String-Parity \ p5-String-LRC>=0:devel/p5-String-LRC -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/finance/p5-Business-OnlinePayment-eSec/Makefile b/finance/p5-Business-OnlinePayment-eSec/Makefile index 6133dbc7ea3..35c6b390133 100644 --- a/finance/p5-Business-OnlinePayment-eSec/Makefile +++ b/finance/p5-Business-OnlinePayment-eSec/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Business::OnlinePayment backend module for eSec -BUILD_DEPENDS= p5-Business-CreditCard>=0:finance/p5-Business-CreditCard \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Business-CreditCard>=0:finance/p5-Business-CreditCard \ p5-Business-OnlinePayment>=0:finance/p5-Business-OnlinePayment -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/finance/p5-Business-OnlinePayment-iAuthorizer/Makefile b/finance/p5-Business-OnlinePayment-iAuthorizer/Makefile index 85176d45188..f4f6ef48949 100644 --- a/finance/p5-Business-OnlinePayment-iAuthorizer/Makefile +++ b/finance/p5-Business-OnlinePayment-iAuthorizer/Makefile @@ -14,8 +14,8 @@ COMMENT= Business::OnlinePayment backend module for iAuthorizer LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Business-OnlinePayment>=0:finance/p5-Business-OnlinePayment -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Business-OnlinePayment>=0:finance/p5-Business-OnlinePayment WRKSRC= ${WRKDIR}/${PORTNAME} diff --git a/finance/p5-Business-OnlinePayment/Makefile b/finance/p5-Business-OnlinePayment/Makefile index ebd30c08b20..e8c22670cca 100644 --- a/finance/p5-Business-OnlinePayment/Makefile +++ b/finance/p5-Business-OnlinePayment/Makefile @@ -14,9 +14,9 @@ COMMENT= Generic interface for processing online credit card payments LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Net-HTTPS-Any>=0:net/p5-Net-HTTPS-Any \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Net-HTTPS-Any>=0:net/p5-Net-HTTPS-Any \ p5-Tie-IxHash>=0:devel/p5-Tie-IxHash -RUN_DEPENDS:= ${BUILD_DEPENDS} PORTSCOUT= limit:^[0-9\.]*$$ diff --git a/finance/p5-Business-Stripe/Makefile b/finance/p5-Business-Stripe/Makefile index ca4387f1ebc..57045ebaa4c 100644 --- a/finance/p5-Business-Stripe/Makefile +++ b/finance/p5-Business-Stripe/Makefile @@ -13,10 +13,10 @@ COMMENT= Perl5 module interface for the Stripe.com payment system LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-HTTP-Message>=0.0:www/p5-HTTP-Message \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTTP-Message>=0.0:www/p5-HTTP-Message \ p5-JSON>=0.0:converters/p5-JSON \ p5-libwww>0.0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/finance/p5-Business-TW-Invoice-U420/Makefile b/finance/p5-Business-TW-Invoice-U420/Makefile index 4573fa898ac..b34cecebee0 100644 --- a/finance/p5-Business-TW-Invoice-U420/Makefile +++ b/finance/p5-Business-TW-Invoice-U420/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Print Taiwan Unified Invoice with U420 printer -BUILD_DEPENDS= p5-Class-Accessor>=0:devel/p5-Class-Accessor -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Accessor>=0:devel/p5-Class-Accessor USES= perl5 USE_PERL5= configure diff --git a/finance/p5-Business-TW-TSIB-CStorePayment/Makefile b/finance/p5-Business-TW-TSIB-CStorePayment/Makefile index f5c95ec571b..e571049385d 100644 --- a/finance/p5-Business-TW-TSIB-CStorePayment/Makefile +++ b/finance/p5-Business-TW-TSIB-CStorePayment/Makefile @@ -11,10 +11,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Module for Taishin Bank Convenient Store Payment Management -BUILD_DEPENDS= p5-Class-Accessor>=0:devel/p5-Class-Accessor \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Accessor>=0:devel/p5-Class-Accessor \ p5-DateTime>=0:devel/p5-DateTime \ p5-List-MoreUtils>=0:lang/p5-List-MoreUtils -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/finance/p5-Business-TW-TSIB-VirtualAccount/Makefile b/finance/p5-Business-TW-TSIB-VirtualAccount/Makefile index 8b8331bbb96..1b022ee02cb 100644 --- a/finance/p5-Business-TW-TSIB-VirtualAccount/Makefile +++ b/finance/p5-Business-TW-TSIB-VirtualAccount/Makefile @@ -14,9 +14,9 @@ COMMENT= Module for Taishin Bank Virtual Account Management LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Class-Accessor>=0:devel/p5-Class-Accessor \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Accessor>=0:devel/p5-Class-Accessor \ p5-DateTime>=0:devel/p5-DateTime -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/finance/p5-Business-WorldPay-Junior/Makefile b/finance/p5-Business-WorldPay-Junior/Makefile index acb00a9309a..5be61809602 100644 --- a/finance/p5-Business-WorldPay-Junior/Makefile +++ b/finance/p5-Business-WorldPay-Junior/Makefile @@ -13,10 +13,10 @@ COMMENT= Perl module to handle WorldPay Junior for payment services LICENSE= GPLv2 -BUILD_DEPENDS= p5-Business-CreditCard>=0:finance/p5-Business-CreditCard \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Business-CreditCard>=0:finance/p5-Business-CreditCard \ p5-Business-OnlinePayment>=0:finance/p5-Business-OnlinePayment \ p5-DBI>=0:databases/p5-DBI -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure patch diff --git a/finance/p5-Data-Currency/Makefile b/finance/p5-Data-Currency/Makefile index 6854b130b97..8cfc43e3198 100644 --- a/finance/p5-Data-Currency/Makefile +++ b/finance/p5-Data-Currency/Makefile @@ -11,12 +11,12 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Container class for currency conversion/formatting -BUILD_DEPENDS= p5-Class-Accessor-Grouped>=0:devel/p5-Class-Accessor-Grouped \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Accessor-Grouped>=0:devel/p5-Class-Accessor-Grouped \ p5-Class-Inspector>=0:devel/p5-Class-Inspector \ p5-Finance-Currency-Convert-WebserviceX>=0:finance/p5-Finance-Currency-Convert-WebserviceX \ p5-Locale-Codes>=0:misc/p5-Locale-Codes \ p5-Locale-Currency-Format>=0:finance/p5-Locale-Currency-Format -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/finance/p5-Finance-Bitcoin/Makefile b/finance/p5-Finance-Bitcoin/Makefile index b6bf30d23bc..c2384072ee5 100644 --- a/finance/p5-Finance-Bitcoin/Makefile +++ b/finance/p5-Finance-Bitcoin/Makefile @@ -10,12 +10,12 @@ PKGNAMEPREFIX= p5- MAINTAINER= skreuzer@FreeBSD.org COMMENT= Perl interface to a bitcoin instance -BUILD_DEPENDS= p5-JSON-RPC>=0.96:devel/p5-JSON-RPC \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-JSON-RPC>=0.96:devel/p5-JSON-RPC \ p5-Class-Accessor>=0.34:devel/p5-Class-Accessor \ p5-Module-Signature>=0.66:security/p5-Module-Signature \ p5-Any-Moose>=0:devel/p5-Any-Moose \ p5-Object-AUTHORITY>=0:devel/p5-Object-Authority -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/finance/p5-Finance-Currency-Convert-WebserviceX/Makefile b/finance/p5-Finance-Currency-Convert-WebserviceX/Makefile index 50473841765..c1a2cede80d 100644 --- a/finance/p5-Finance-Currency-Convert-WebserviceX/Makefile +++ b/finance/p5-Finance-Currency-Convert-WebserviceX/Makefile @@ -14,9 +14,9 @@ COMMENT= Lightweight currency conversion using WebserviceX.NET LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-libwww>=0:www/p5-libwww \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-libwww>=0:www/p5-libwww \ p5-Module-Install>=0.65:devel/p5-Module-Install -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/finance/p5-Finance-Quote/Makefile b/finance/p5-Finance-Quote/Makefile index e8e8a093fe6..f7e11997cd5 100644 --- a/finance/p5-Finance-Quote/Makefile +++ b/finance/p5-Finance-Quote/Makefile @@ -13,7 +13,8 @@ COMMENT= Get stock and mutual fund quotes from various exchanges LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-CGI>=0:www/p5-CGI \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-CGI>=0:www/p5-CGI \ p5-DateTime>=0:devel/p5-DateTime \ p5-HTML-Parser>=0:www/p5-HTML-Parser \ p5-HTML-TableExtract>=0:www/p5-HTML-TableExtract \ @@ -25,7 +26,6 @@ BUILD_DEPENDS= p5-CGI>=0:www/p5-CGI \ p5-Mozilla-CA>=0:www/p5-Mozilla-CA \ p5-URI>=0:net/p5-URI \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Kwalitee>=0:devel/p5-Test-Kwalitee \ p5-Test-Perl-Critic>=0:textproc/p5-Test-Perl-Critic diff --git a/finance/p5-Finance-QuoteHist/Makefile b/finance/p5-Finance-QuoteHist/Makefile index 5063d3a99b7..626ec412037 100644 --- a/finance/p5-Finance-QuoteHist/Makefile +++ b/finance/p5-Finance-QuoteHist/Makefile @@ -14,13 +14,13 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Date-Manip>=0:devel/p5-Date-Manip \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Date-Manip>=0:devel/p5-Date-Manip \ p5-HTML-TableExtract>=2.07:www/p5-HTML-TableExtract \ p5-HTTP-Message>=0:www/p5-HTTP-Message \ p5-Regexp-Common>=0:textproc/p5-Regexp-Common \ p5-Text-CSV>=0:textproc/p5-Text-CSV \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/finance/p5-Finance-TW-EmergingQuote/Makefile b/finance/p5-Finance-TW-EmergingQuote/Makefile index eed9261df59..bccde2e5521 100644 --- a/finance/p5-Finance-TW-EmergingQuote/Makefile +++ b/finance/p5-Finance-TW-EmergingQuote/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Check stock quotes from Taiwan Emerging Stock -BUILD_DEPENDS= p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-libwww>=0:www/p5-libwww USES= perl5 USE_PERL5= configure diff --git a/finance/p5-Finance-TW-TSEQuote/Makefile b/finance/p5-Finance-TW-TSEQuote/Makefile index 45c709f6e4c..5f843aba35c 100644 --- a/finance/p5-Finance-TW-TSEQuote/Makefile +++ b/finance/p5-Finance-TW-TSEQuote/Makefile @@ -13,13 +13,13 @@ COMMENT= Check stock quotes from Taiwan Security Exchange LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-App-Cache>=0:devel/p5-App-Cache \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-App-Cache>=0:devel/p5-App-Cache \ p5-HTML-TableExtract>=0:www/p5-HTML-TableExtract \ p5-UNIVERSAL-require>=0:devel/p5-UNIVERSAL-require \ p5-URI>=0:net/p5-URI \ p5-YAML>=0:textproc/p5-YAML \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/finance/p5-Finance-YahooQuote/Makefile b/finance/p5-Finance-YahooQuote/Makefile index ad7aa998d55..4b0688e4cf0 100644 --- a/finance/p5-Finance-YahooQuote/Makefile +++ b/finance/p5-Finance-YahooQuote/Makefile @@ -12,9 +12,9 @@ COMMENT= Get stock quotes from Yahoo! Finance LICENSE= GPLv2+ -BUILD_DEPENDS= p5-HTML-Parser>=2.2:www/p5-HTML-Parser \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTML-Parser>=2.2:www/p5-HTML-Parser \ p5-libwww>=1.62:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/finance/prestashop/Makefile b/finance/prestashop/Makefile index acb9ab93c76..6c61a40d28c 100644 --- a/finance/prestashop/Makefile +++ b/finance/prestashop/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= prestashop -PORTVERSION= 1.7.4.2 +PORTVERSION= 1.7.4.3 CATEGORIES= finance www MASTER_SITES= http://www.prestashop.com/download/old/ DISTNAME= ${PORTNAME}_${PORTVERSION} diff --git a/finance/prestashop/distinfo b/finance/prestashop/distinfo index 7b8f1cac4cc..fc6e5f3c6b8 100644 --- a/finance/prestashop/distinfo +++ b/finance/prestashop/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1534563619 -SHA256 (prestashop_1.7.4.2.zip) = 53cc08be336a856ffc0dccf5458acbce2e6436b4bb9212f880c6c192cfd9bb9a -SIZE (prestashop_1.7.4.2.zip) = 68170647 +TIMESTAMP = 1538700917 +SHA256 (prestashop_1.7.4.3.zip) = d08ae23b78213399e9a9971609e89f8a094185e486a41d9b8e1335fa6cb6206b +SIZE (prestashop_1.7.4.3.zip) = 68155220 diff --git a/ftp/p5-Net-FTPSSL/Makefile b/ftp/p5-Net-FTPSSL/Makefile index a97fe14d3c0..75cb060b6f1 100644 --- a/ftp/p5-Net-FTPSSL/Makefile +++ b/ftp/p5-Net-FTPSSL/Makefile @@ -14,9 +14,9 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-IO-Socket-SSL>=1.26:security/p5-IO-Socket-SSL \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-IO-Socket-SSL>=1.26:security/p5-IO-Socket-SSL \ p5-Net-SSLeay>=0:security/p5-Net-SSLeay -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/ftp/p5-POE-Component-Client-FTP/Makefile b/ftp/p5-POE-Component-Client-FTP/Makefile index e9c1e6cb7c6..8cd11435c89 100644 --- a/ftp/p5-POE-Component-Client-FTP/Makefile +++ b/ftp/p5-POE-Component-Client-FTP/Makefile @@ -14,8 +14,8 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-POE>=0.38:devel/p5-POE -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-POE>=0.38:devel/p5-POE TEST_DEPENDS= p5-Test-POE-Client-TCP>=0.1:devel/p5-Test-POE-Client-TCP \ p5-Test-POE-Server-TCP>=0.16:devel/p5-Test-POE-Server-TCP diff --git a/ftp/p5-SOAP-Transport-FTP/Makefile b/ftp/p5-SOAP-Transport-FTP/Makefile index 57e996568db..f98c6eb6f38 100644 --- a/ftp/p5-SOAP-Transport-FTP/Makefile +++ b/ftp/p5-SOAP-Transport-FTP/Makefile @@ -13,8 +13,8 @@ COMMENT= FTP Client support for SOAP::Lite LICENSE= ART10 -BUILD_DEPENDS= p5-SOAP-Lite>=0.711:net/p5-SOAP-Lite -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-SOAP-Lite>=0.711:net/p5-SOAP-Lite NO_ARCH= yes USE_PERL5= modbuild diff --git a/games/blobby/Makefile b/games/blobby/Makefile index ceec14a5b16..ac1f12f7e7a 100644 --- a/games/blobby/Makefile +++ b/games/blobby/Makefile @@ -22,7 +22,8 @@ LIB_DEPENDS= libphysfs.so:devel/physfs BUILD_DEPENDS= zip:archivers/zip \ ${LOCALBASE}/include/boost/crc.hpp:devel/boost-libs -USES= cmake compiler:c++11-lang dos2unix localbase:ldflags pkgconfig +USES= cmake compiler:c++11-lang dos2unix gl localbase:ldflags \ + pkgconfig DOS2UNIX_REGEX= .*\.(c|h|cpp) CMAKE_ARGS= -DDATADIR:PATH="${DATADIR}" WRKSRC= ${WRKDIR}/blobby-${PORTVERSION} diff --git a/games/briquolo/Makefile b/games/briquolo/Makefile index 56060342ae8..720b2d6d897 100644 --- a/games/briquolo/Makefile +++ b/games/briquolo/Makefile @@ -14,7 +14,7 @@ LICENSE= GPLv2 LIB_DEPENDS= libpng.so:graphics/png -USES= tar:bzip2 gmake iconv desktop-file-utils +USES= tar:bzip2 gl gmake iconv desktop-file-utils USE_GL= gl USE_SDL= mixer sdl ttf USE_XORG= x11 diff --git a/games/flightgear/Makefile b/games/flightgear/Makefile index f5f7cef5e64..36890370330 100644 --- a/games/flightgear/Makefile +++ b/games/flightgear/Makefile @@ -28,8 +28,8 @@ RUN_DEPENDS= ${LOCALBASE}/lib/libplibsl.a:x11-toolkits/plib \ ${LOCALBASE}/share/flightgear/version:games/flightgear-data LLD_UNSAFE= yes -USES= alias cmake compiler cpe dos2unix jpeg openal:al,alut sqlite \ - tar:bzip2 +USES= alias cmake compiler cpe dos2unix gl jpeg openal:al,alut \ + sqlite tar:bzip2 USE_XORG= ice sm x11 xext xft xi xinerama xmu xt USE_GL= gl glew glu glut diff --git a/games/gnubg/Makefile b/games/gnubg/Makefile index 8177d3c9dd5..1fbcac2bda0 100644 --- a/games/gnubg/Makefile +++ b/games/gnubg/Makefile @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= gnubg -PORTVERSION= 1.06.001 -PORTREVISION= 1 +PORTVERSION= 1.06.002 CATEGORIES= games MASTER_SITES= http://files.gnubg.org/media/sources/ DISTFILES= gnubg-release-${PORTVERSION}-sources.tar.gz @@ -13,7 +12,6 @@ COMMENT= GNU Backgammon LICENSE= GPLv3 -BUILD_DEPENDS= bison:devel/bison RUN_DEPENDS= sqlite3:databases/sqlite3 LIB_DEPENDS= libpng.so:graphics/png \ libgtkglext-x11-1.0.so:x11-toolkits/gtkglext \ @@ -23,6 +21,11 @@ LIB_DEPENDS= libpng.so:graphics/png \ libfontconfig.so:x11-fonts/fontconfig \ libfreetype.so:print/freetype2 +USES= bison gmake libtool pathfix shebangfix python pkgconfig compiler:c++11-lang readline gnome gl +USE_GNOME= glib20 gtk20 cairo pangox-compat +USE_XORG+= xmu xt sm ice x11 +USE_GL+= glu gl + USE_HARDENING= pie:off relro:off CONFIGURE_ARGS= --with-board3d --with-sqlite --with-python=${PYTHON_CMD} @@ -32,10 +35,6 @@ LDFLAGS+= -L${LOCALBASE}/lib GNU_CONFIGURE= yes INSTALLS_ICONS= yes INSTALL_TARGET= install-strip -USES= gmake libtool pathfix shebangfix python pkgconfig compiler:c++11-lang readline -USE_GNOME= glib20 gtk20 cairo pangox-compat -USE_XORG+= xmu xt sm ice x11 -USE_GL+= glu gl OPTIONS_DEFINE= NLS DOCS OPTIONS_SUB= yes diff --git a/games/gnubg/distinfo b/games/gnubg/distinfo index ccd0ce189fc..cf06c012a44 100644 --- a/games/gnubg/distinfo +++ b/games/gnubg/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1517079255 -SHA256 (gnubg-release-1.06.001-sources.tar.gz) = eb70460ec5e03fca20e0711f76334d5d68519fa04ba0474f9445e4bd821cdf6a -SIZE (gnubg-release-1.06.001-sources.tar.gz) = 15123038 +TIMESTAMP = 1538690278 +SHA256 (gnubg-release-1.06.002-sources.tar.gz) = ce1b0b0c1900717cc598032a14cf8c0ee60faf24d84368b39922c0102983bc87 +SIZE (gnubg-release-1.06.002-sources.tar.gz) = 13163681 diff --git a/games/gtkevemon/Makefile b/games/gtkevemon/Makefile index d5ccef627b6..8e05cd7d12a 100644 --- a/games/gtkevemon/Makefile +++ b/games/gtkevemon/Makefile @@ -5,7 +5,7 @@ PORTVERSION= 1.10.2016.02.17 PORTREVISION= 2 CATEGORIES= games -MAINTAINER= feld@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Skill monitoring standalone application for EVE Online LIB_DEPENDS= libgtkmm-3.0.so:x11-toolkits/gtkmm30 \ diff --git a/games/jfsw/Makefile b/games/jfsw/Makefile index 48048c7c29a..1a308b68557 100644 --- a/games/jfsw/Makefile +++ b/games/jfsw/Makefile @@ -17,7 +17,7 @@ LICENSE_PERMS_BuildLic= dist-mirror no-dist-sell pkg-mirror no-pkg-sell auto-acc LIB_DEPENDS= libvorbisfile.so:audio/libvorbis -USES= alias dos2unix gmake gnome pkgconfig:build +USES= alias dos2unix gl gmake gnome pkgconfig:build DOS2UNIX_REGEX= .*(\.(c|h)|Makefile)(\.deps)? USE_GITHUB= yes diff --git a/games/openalchemist/Makefile b/games/openalchemist/Makefile index 7718848da01..427816bd1a0 100644 --- a/games/openalchemist/Makefile +++ b/games/openalchemist/Makefile @@ -23,7 +23,8 @@ CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -lpthread -L${LOCALBASE}/lib GNU_CONFIGURE= yes -USES= autoreconf gmake gnome iconv jpeg pkgconfig python:2.7,run shebangfix +USES= autoreconf gl gmake gnome iconv jpeg pkgconfig python:2.7,run \ + shebangfix SHEBANG_FILES= openalchemist-config USE_GNOME= pygtk2 diff --git a/games/p5-Baseball-Sabermetrics/Makefile b/games/p5-Baseball-Sabermetrics/Makefile index e16b22d44ef..7042524e406 100644 --- a/games/p5-Baseball-Sabermetrics/Makefile +++ b/games/p5-Baseball-Sabermetrics/Makefile @@ -11,10 +11,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Baseball Statistics Module -BUILD_DEPENDS= p5-Data-Serializer>=0.29:devel/p5-Data-Serializer \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Data-Serializer>=0.29:devel/p5-Data-Serializer \ p5-HTML-TableExtract>=2.08:www/p5-HTML-TableExtract \ p5-libwww>=5.801:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/games/p5-Games-Bingo-Bot/Makefile b/games/p5-Games-Bingo-Bot/Makefile index 61fae013216..c2e2762a6fd 100644 --- a/games/p5-Games-Bingo-Bot/Makefile +++ b/games/p5-Games-Bingo-Bot/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Simple class holding IRC related methods for bingo -BUILD_DEPENDS= p5-Games-Bingo>=0:games/p5-Games-Bingo -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Games-Bingo>=0:games/p5-Games-Bingo USES= perl5 shebangfix SHEBANG_FILES= bin/bingobot.pl diff --git a/games/p5-Games-Bingo-Print/Makefile b/games/p5-Games-Bingo-Print/Makefile index a4901218401..35dc64bd474 100644 --- a/games/p5-Games-Bingo-Print/Makefile +++ b/games/p5-Games-Bingo-Print/Makefile @@ -13,9 +13,9 @@ COMMENT= Games::Bingo::Print - PDF Generation Class LICENSE= ART10 -BUILD_DEPENDS= p5-Games-Bingo>=0:games/p5-Games-Bingo \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Games-Bingo>=0:games/p5-Games-Bingo \ p5-PDFLib>=0:print/p5-PDFLib -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Perl-Critic>=0:textproc/p5-Test-Perl-Critic \ p5-Test-Pod>=0:devel/p5-Test-Pod \ p5-Test-Pod-Coverage>=0:devel/p5-Test-Pod-Coverage diff --git a/games/sgt-puzzles/Makefile b/games/sgt-puzzles/Makefile index 0b8a19e4178..0e0d8021541 100644 --- a/games/sgt-puzzles/Makefile +++ b/games/sgt-puzzles/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= puzzles -PORTVERSION= 20180725 +PORTVERSION= 20180924 CATEGORIES= games MASTER_SITES= http://www.chiark.greenend.org.uk/~sgtatham/puzzles/ \ http://mirror.amdmi3.ru/distfiles/ @@ -15,7 +15,7 @@ COMMENT= Simon Tatham's Portable Puzzle Collection LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENCE -COMMITHASH= 1db5961 +COMMITHASH= d8d5064 USES= autoreconf gmake pkgconfig GNU_CONFIGURE= yes diff --git a/games/sgt-puzzles/distinfo b/games/sgt-puzzles/distinfo index 253f206c8a0..4e8e2298ceb 100644 --- a/games/sgt-puzzles/distinfo +++ b/games/sgt-puzzles/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1533046907 -SHA256 (puzzles-20180725.1db5961.tar.gz) = 8be48ff12294686a82f62f4cacd5d278a47be352cd56586a8ebfa893197d92b6 -SIZE (puzzles-20180725.1db5961.tar.gz) = 3271001 +TIMESTAMP = 1538674549 +SHA256 (puzzles-20180924.d8d5064.tar.gz) = e040e965c52dd7b60603737e2530dda654b2d25f79d2a0a4ee06ab757e62ac6d +SIZE (puzzles-20180924.d8d5064.tar.gz) = 3271485 diff --git a/games/trackballs/Makefile b/games/trackballs/Makefile index a15a163fa3a..d13c6e6e714 100644 --- a/games/trackballs/Makefile +++ b/games/trackballs/Makefile @@ -16,7 +16,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libguile-2.0.so:lang/guile2 \ libgc.so:devel/boehm-gc -USES= cmake desktop-file-utils gettext-runtime gnome pkgconfig +USES= cmake desktop-file-utils gettext-runtime gl gnome pkgconfig USE_GITHUB= yes diff --git a/german/mediathekview/Makefile b/german/mediathekview/Makefile index 076b774572c..6c02fec2bb5 100644 --- a/german/mediathekview/Makefile +++ b/german/mediathekview/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= mediathekview -PORTVERSION= 13.2.0 +PORTVERSION= 13.2.1 CATEGORIES= german java MASTER_SITES= https://download.mediathekview.de/stabil/ DISTNAME= MediathekView-${PORTVERSION} diff --git a/german/mediathekview/distinfo b/german/mediathekview/distinfo index d1bb2968b28..933f729ff89 100644 --- a/german/mediathekview/distinfo +++ b/german/mediathekview/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1535716360 -SHA256 (MediathekView-13.2.0.tar.gz) = 16843db4c783736a4a7aa73e49644182f82a2f759181163fe75de662a884ec5b -SIZE (MediathekView-13.2.0.tar.gz) = 32910141 +TIMESTAMP = 1538753952 +SHA256 (MediathekView-13.2.1.tar.gz) = 4ad0314031c64ce55ef7440b95716e27e3a7ab7a5eb97cef81e0c5b8e9348f87 +SIZE (MediathekView-13.2.1.tar.gz) = 32909789 diff --git a/german/mythes/Makefile b/german/mythes/Makefile index 652fd7f30ae..854fe27a300 100644 --- a/german/mythes/Makefile +++ b/german/mythes/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= mythes -PORTVERSION= 2018.09.23 +PORTVERSION= 2018.09.30 CATEGORIES= german textproc MASTER_SITES= LOCAL/sunpoet/${PORTNAME}/ DISTNAME= Deutscher-Thesaurus-${PORTVERSION:C/\.//g} diff --git a/german/mythes/distinfo b/german/mythes/distinfo index b67c2277177..9989ac1b9eb 100644 --- a/german/mythes/distinfo +++ b/german/mythes/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1537766800 -SHA256 (mythes/Deutscher-Thesaurus-20180923.oxt) = 967a331839c2f4ea84d617076e2c023cbfba951ab5e6d3b65d8a1e38d42cedad -SIZE (mythes/Deutscher-Thesaurus-20180923.oxt) = 8998326 +TIMESTAMP = 1538504090 +SHA256 (mythes/Deutscher-Thesaurus-20180930.oxt) = c5212dbeddb37b51dd8ce6e640d71e0008b8b4a83a307e4743e22d43f6f97d79 +SIZE (mythes/Deutscher-Thesaurus-20180930.oxt) = 9001563 diff --git a/german/tipp10/Makefile b/german/tipp10/Makefile index 63ec717bca3..0988e0c7fff 100644 --- a/german/tipp10/Makefile +++ b/german/tipp10/Makefile @@ -2,11 +2,11 @@ # $FreeBSD$ PORTNAME= tipp10 -PORTVERSION= 2.1.0 -PORTREVISION= 2 +DISTVERSION= 2-1-0 +PORTREVISION= 3 CATEGORIES= german MASTER_SITES= http://www.tipp10.com/en/download/ -DISTNAME= tipp10_source_v2-1-0 +DISTNAME= tipp10_source_v${DISTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= 10-finger touch typing learning program @@ -16,15 +16,13 @@ LICENSE_FILE= ${WRKSRC}/license_en.txt USES= qmake dos2unix qt:4 zip DOS2UNIX_GLOB= *.pro *.cpp -USE_QT= gui sql corelib network script qtestlib \ - rcc_build uic_build moc_build \ - sql-sqlite2_run sql-sqlite3_run -QMAKE_ARGS+= DATADIR="${DATADIR}" -WRKSRC= ${WRKDIR}/tipp10_source_v2-1-0 +USE_QT= corelib gui network sql rcc_build uic_build moc_build \ + sql-sqlite3_run pre-configure: - @cd ${WRKSRC} \ - && for i in `grep -lR 'QCoreApplication::applicationDirPath()' *`; do ${REINPLACE_CMD} -e 's/QCoreApplication::applicationDirPath()/QString(DATADIR)/g' $$i ; done + cd ${WRKSRC} \ + && for i in `grep -lR 'QCoreApplication::applicationDirPath()' *`; do \ + ${REINPLACE_CMD} -e 's,QCoreApplication::applicationDirPath(),QString("${DATADIR}"),g' $$i ; done do-install: ${INSTALL_PROGRAM} ${WRKSRC}/tipp10 ${STAGEDIR}${PREFIX}/bin diff --git a/german/tipp10/files/patch-tipp10.pro b/german/tipp10/files/patch-tipp10.pro deleted file mode 100644 index 05e36237773..00000000000 --- a/german/tipp10/files/patch-tipp10.pro +++ /dev/null @@ -1,8 +0,0 @@ ---- tipp10.pro 2011-03-12 20:22:32.000000000 +0100 -+++ tipp10.pro 2011-07-24 14:24:03.000000000 +0200 -@@ -88,3 +88,5 @@ - sql/startsql.cpp \ - games/abcrainwidget.cpp \ - games/charball.cpp -+ -+DEFINES += "DATADIR=\"\\\"$$(DATADIR)\\\"\"" diff --git a/graphics/Makefile b/graphics/Makefile index cf780666ae2..ccb6cecb054 100644 --- a/graphics/Makefile +++ b/graphics/Makefile @@ -239,7 +239,6 @@ SUBDIR += gdtclft SUBDIR += geeqie SUBDIR += gegl - SUBDIR += gegl3 SUBDIR += generic_image_decoder SUBDIR += geoapi SUBDIR += geomorph diff --git a/graphics/dspdfviewer/Makefile b/graphics/dspdfviewer/Makefile index 0ab295899fc..463878caa67 100644 --- a/graphics/dspdfviewer/Makefile +++ b/graphics/dspdfviewer/Makefile @@ -3,7 +3,7 @@ PORTNAME= dspdfviewer PORTVERSION= 1.15.1 DISTVERSIONPREFIX=v -PORTREVISION= 8 +PORTREVISION= 9 CATEGORIES= graphics MAINTAINER= santhosh.raju@gmail.com @@ -43,7 +43,7 @@ CFLAGS+= -Wno-error=undefined-func-template CFLAGS+= -Wno-error=zero-as-null-pointer-constant .endif -.if ${OPSYS} == FreeBSD && ${OSVERSION} >= 1200056 +.if ${OPSYS} == FreeBSD && ${OSVERSION} >= 1102000 CFLAGS+= -Wno-error=redundant-parens .endif diff --git a/graphics/gdk-pixbuf2/pkg-plist b/graphics/gdk-pixbuf2/pkg-plist index 9ece07ce49f..2f04b84c4b1 100644 --- a/graphics/gdk-pixbuf2/pkg-plist +++ b/graphics/gdk-pixbuf2/pkg-plist @@ -2,8 +2,8 @@ bin/gdk-pixbuf-csource bin/gdk-pixbuf-pixdata bin/gdk-pixbuf-query-loaders bin/gdk-pixbuf-thumbnailer -include/gdk-pixbuf-2.0/gdk-pixbuf-xlib/gdk-pixbuf-xlib.h -include/gdk-pixbuf-2.0/gdk-pixbuf-xlib/gdk-pixbuf-xlibrgb.h +%%X11%%include/gdk-pixbuf-2.0/gdk-pixbuf-xlib/gdk-pixbuf-xlib.h +%%X11%%include/gdk-pixbuf-2.0/gdk-pixbuf-xlib/gdk-pixbuf-xlibrgb.h include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-animation.h include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-autocleanups.h include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-core.h @@ -34,11 +34,11 @@ lib/girepository-1.0/GdkPixbuf-2.0.typelib lib/libgdk_pixbuf-2.0.so lib/libgdk_pixbuf-2.0.so.0 lib/libgdk_pixbuf-2.0.so.0.3600.12 -lib/libgdk_pixbuf_xlib-2.0.so -lib/libgdk_pixbuf_xlib-2.0.so.0 -lib/libgdk_pixbuf_xlib-2.0.so.0.3600.12 +%%X11%%lib/libgdk_pixbuf_xlib-2.0.so +%%X11%%lib/libgdk_pixbuf_xlib-2.0.so.0 +%%X11%%lib/libgdk_pixbuf_xlib-2.0.so.0.3600.12 libdata/pkgconfig/gdk-pixbuf-2.0.pc -libdata/pkgconfig/gdk-pixbuf-xlib-2.0.pc +%%X11%%libdata/pkgconfig/gdk-pixbuf-xlib-2.0.pc man/man1/gdk-pixbuf-csource.1.gz man/man1/gdk-pixbuf-query-loaders.1.gz share/gir-1.0/GdkPixbuf-2.0.gir diff --git a/graphics/gegl/Makefile b/graphics/gegl/Makefile index e8cea978cc6..c5af7cc594e 100644 --- a/graphics/gegl/Makefile +++ b/graphics/gegl/Makefile @@ -2,83 +2,126 @@ # $FreeBSD$ PORTNAME= gegl -PORTVERSION= 0.2.0 -PORTREVISION= 25 +PORTVERSION= 0.4.8 CATEGORIES= graphics MASTER_SITES= GIMP MAINTAINER= gnome@FreeBSD.org COMMENT= Graph based image processing framework -LICENSE= GPLv3+ LGPL20+ LGPL3+ +LICENSE= BSD3CLAUSE GPLv3+ LGPL3+ LICENSE_COMB= multi LICENSE_FILE_GPLv3+ = ${WRKSRC}/COPYING LICENSE_FILE_LGPL3+ = ${WRKSRC}/COPYING.LESSER -BROKEN_aarch64= fails to build: gmake index.html: Segmentation fault in docs/gallery/ +LIB_DEPENDS= libbabl-0.1.so:x11/babl \ + libjson-glib-1.0.so:devel/json-glib \ + libfribidi.so:converters/fribidi \ + libpng.so:graphics/png -LIB_DEPENDS= libbabl-0.1.so:x11/babl +USES= compiler:c11 cpe gettext gmake gnome jpeg libtool localbase \ + pathfix pkgconfig shebangfix uniquefiles tar:bzip2 +USE_GNOME= glib20 intltool introspection:build +USE_LDCONFIG= yes +GNU_CONFIGURE= yes +CONFIGURE_ENV= ac_cv_header_execinfo_h=no +CONFIGURE_ARGS= --without-vala --disable-docs +CONFIGURE_ARGS+=--without-mrg --without-lensfun +INSTALL_TARGET= install-strip -# ignore new versions until we can replace this version with gegl 3.x -PORTSCOUT= ignore:1 +GEGL_MINOR= 408 +GEGL_VER= 0.4 +PLIST_SUB+= GEGL_MINOR="${GEGL_MINOR}" GEGL_VER=${GEGL_VER} -OPTIONS_DEFINE= CAIRO ENSCRIPT EXIV2 FFMPEG PIXBUF GRAPHVIZ JASPER JPEG \ - LUA OPENEXR OPENRAW SIMD PANGO PNG LIBRSVG2 SDL SPIRO V4L \ - DOCS EXAMPLES -OPTIONS_DEFAULT=CAIRO ENSCRIPT EXIV2 PIXBUF GRAPHVIZ JASPER JPEG LUA \ - OPENEXR OPENRAW PANGO PNG LIBRSVG2 SDL SPIRO V4L +EXAMPLES= 2geglbuffer \ + gegl-convert gegl-slicer geglbuffer-add-image \ + geglbuffer-clock hello-world sdl-draw + +SHEBANG_FILES= tools/xml_insert.sh + +# Fix conflicts with graphics/gegl and sysutils/coreutils +EXAMPLESDIR= ${PREFIX}/share/examples/gegl${PKGNAMESUFFIX} +UNIQUE_SUFFIX_FILES= bin/gcut + +OPTIONS_SUB= yes +OPTIONS_DEFINE= CAIRO ENSCRIPT EXIV2 FFMPEG PIXBUF GRAPHVIZ JASPER \ + LUA OPENEXR RAW PANGO LIBRSVG2 SDL SPIRO V4L \ + EXAMPLES LCMS2 WEBP TIFF GEXIV2 +OPTIONS_DEFAULT=CAIRO ENSCRIPT EXIV2 PIXBUF GRAPHVIZ JASPER LCMS2 LUA \ + OPENEXR RAW PANGO LIBRSVG2 SDL SPIRO V4L WEBP TIFF ENSCRIPT_DESC= Enscript support SPIRO_DESC= Spiro support #UMFPACK_DESC= UMFpack support +GEXIV2_DESC= EXIF and IPTC metadata support via gexiv2 -USES= cpe gettext gmake libtool pathfix pkgconfig shebangfix tar:bzip2 -USE_GNOME= glib20 intltool -USE_LDCONFIG= ${PREFIX}/lib/gegl-0.2 -GNU_CONFIGURE= yes -CONFIGURE_ENV= ac_cv_header_execinfo_h=no -CONFIGURE_ARGS= --without-vala --disable-docs -INSTALL_TARGET= install-strip +PIXBUF_USE= GNOME=gdkpixbuf2 +PIXBUF_CONFIGURE_WITH= gdk-pixbuf -CPPFLAGS+= -I${LOCALBASE}/include -LDFLAGS+= -L${LOCALBASE}/lib -lintl -lm +CAIRO_USE= GNOME=cairo +CAIRO_CONFIGURE_WITH= cairo -GEGL_MINOR= 199 -GEGL_VER= 0.2 -PLIST_SUB+= GEGL_MINOR="${GEGL_MINOR}" GEGL_VER=${GEGL_VER} +PANGO_USE= GNOME=pango +PANGO_CONFIGURE_WITH= pango -EXAMPLES= 2geglbuffer csugar float-lookup \ - gegl-convert gegl-slicer geglbuffer-add-image \ - geglbuffer-clock hello-world-video hello-world +ENSCRIPT_BUILD_DEPENDS= enscript:print/enscript-a4 -SHEBANG_FILES= tools/xml_insert.sh +FFMPEG_LIB_DEPENDS= libavformat.so:multimedia/ffmpeg +FFMPEG_CONFIGURE_WITH= libavformat + +GRAPHVIZ_LIB_DEPENDS= libcgraph.so:graphics/graphviz +GRAPHVIZ_CONFIGURE_WITH= graphviz + +JASPER_LIB_DEPENDS= libjasper.so:graphics/jasper +JASPER_CONFIGURE_WITH= jasper + +LCMS2_LIB_DEPENDS= liblcms2.so:graphics/lcms2 +LCMS2_CONFIGURE_OFF= --without-lcms + +LUA_USES= lua +LUA_CONFIGURE_WITH= lua + +OPENEXR_LIB_DEPENDS= libIlmImf.so:graphics/openexr \ + libImath.so:graphics/ilmbase +OPENEXR_CONFIGURE_WITH= openexr + +RAW_LIB_DEPENDS= libraw.so:graphics/libraw +RAW_CONFIGURE_WITH= libraw + +LIBRSVG2_USE= GNOME=librsvg2 +LIBRSVG2_CONFIGURE_OFF= --without-librsvg + +SDL_USE= SDL=sdl +SDL_CONFIGURE_WITH= sdl + +SPIRO_LIB_DEPENDS= libspiro.so:graphics/libspiro +SPIRO_CONFIGURE_WITH= libspiro + +V4L_BUILD_DEPENDS= v4l_compat>=0:multimedia/v4l_compat +V4L_LIB_DEPENDS= libv4l2.so:multimedia/libv4l +V4L_CONFIGURE_WITH= libv4l +V4L_VARS= LICENSE+=LGPL20+ + +WEBP_LIB_DEPENDS= libwebp.so:graphics/webp +WEBP_CONFIGURE_WITH= webp + +# UMFPACK has two "problems" +# 1) it build with port gcc 2) needed libs aren't recorded in the libraries. +#UMFPACK_LIB_DEPENDS= libumfpack.so:math/suitesparse +#UMFPACK_CONFIGURE_WITH= umfpack +CONFIGURE_ARGS+= --without-umfpack + +EXIV2_LIB_DEPENDS= libexiv2.so:graphics/exiv2 +EXIV2_CONFIGURE_WITH= exiv2 + +GEXIV2_LIB_DEPENDS= libgexiv2.so:graphics/gexiv2 +GEXIV2_CONFIGURE_WITH= gexiv2 + +TIFF_LIB_DEPENDS= libtiff.so:graphics/tiff +TIFF_CONFIGURE_WITH= libtiff .include -.if ${PORT_OPTIONS:MPIXBUF} -USE_GNOME+= gdkpixbuf2 -PLIST_SUB+= GDK="" -.else -CONFIGURE_ARGS+=--without-gdk-pixbuf -PLIST_SUB+= GDK="@comment " -.endif - -.if ${PORT_OPTIONS:MCAIRO} -LIB_DEPENDS+= libcairo.so:graphics/cairo -PLIST_SUB+= CAIRO="" -.else -CONFIGURE_ARGS+=--without-cairo -PLIST_SUB+= CAIRO="@comment " -.endif - -.if ${PORT_OPTIONS:MPANGO} -USE_GNOME+= pango -PLIST_SUB+= PANGO="" -.else -CONFIGURE_ARGS+=--without-pango -PLIST_SUB+= PANGO="@comment " -.endif - .if ${PORT_OPTIONS:MPANGO} && ${PORT_OPTIONS:MCAIRO} PLIST_SUB+= PANGOCAIRO="" .else @@ -86,173 +129,20 @@ CONFIGURE_ARGS+=--without-pangocairo PLIST_SUB+= PANGOCAIRO="@comment " .endif -.if ${PORT_OPTIONS:MENSCRIPT} -BUILD_DEPENDS+= enscript:print/enscript-a4 -.endif - -.if ${PORT_OPTIONS:MFFMPEG} -LIB_DEPENDS+= libavformat.so:multimedia/ffmpeg -PLIST_SUB+= FFMPEG="" -.else -CONFIGURE_ARGS+=--without-libavformat -PLIST_SUB+= FFMPEG="@comment " -.endif - -.if ${PORT_OPTIONS:MGRAPHVIZ} -LIB_DEPENDS+= libcgraph.so:graphics/graphviz -.else -CONFIGURE_ARGS+=--without-graphviz -.endif - -.if ${PORT_OPTIONS:MJASPER} -LIB_DEPENDS+= libjasper.so:graphics/jasper -PLIST_SUB+= JP2="" -.else -CONFIGURE_ARGS+=--without-jasper -PLIST_SUB+= JP2="@comment " -.endif - -.if ${PORT_OPTIONS:MJPEG} -USES+= jpeg -PLIST_SUB+= JPEG="" -.else -CONFIGURE_ARGS+=--without-libjpeg -PLIST_SUB+= JPEG="@comment " -.endif - -.if ${PORT_OPTIONS:MLUA} -USES+= lua -.else -CONFIGURE_ARGS+=--without-lua -.endif - -.if ${PORT_OPTIONS:MOPENEXR} -LIB_DEPENDS+= libIlmImf.so:graphics/openexr -PLIST_SUB+= OPENEXR="" -.else -CONFIGURE_ARGS+=--without-openexr -PLIST_SUB+= OPENEXR="@comment " -.endif - -.if ${PORT_OPTIONS:MOPENRAW} -LIB_DEPENDS+= libopenraw.so:graphics/libopenraw -PLIST_SUB+= OPENRAW="" -.else -CONFIGURE_ARGS+=--without-libopenraw -PLIST_SUB+= OPENRAW="@comment " -.endif - -.if ! ${PORT_OPTIONS:MSIMD} -CONFIGURE_ARGS+=--disable-mmx \ - --disable-sse -.endif - -.if ${PORT_OPTIONS:MPNG} -LIB_DEPENDS+= libpng.so:graphics/png -PLIST_SUB+= PNG="" -.else -CONFIGURE_ARGS+=--without-libpng -PLIST_SUB+= PNG="@comment " -.endif - -.if ${PORT_OPTIONS:MLIBRSVG2} -LIB_DEPENDS+= librsvg-2.so:graphics/librsvg2 -PLIST_SUB+= RSVG="" -.else -CONFIGURE_ARGS+=--without-librsvg -PLIST_SUB+= RSVG="@comment " -.endif - -.if ${PORT_OPTIONS:MSDL} -USE_SDL= sdl -PLIST_SUB+= SDL="" -.else -CONFIGURE_ARGS+=--without-sdl -PLIST_SUB+= SDL="@comment " -.endif - -.if ${PORT_OPTIONS:MSPIRO} -LIB_DEPENDS+= libspiro.so:graphics/libspiro -.else -CONFIGURE_ARGS+=--without-libspiro -.endif - -.if ${PORT_OPTIONS:MV4L} -BUILD_DEPENDS+= ${LOCALBASE}/include/linux/videodev.h:multimedia/v4l_compat -PLIST_SUB+= V4L="" -.else -CONFIGURE_ARGS+=--without-libv4l -PLIST_SUB+= V4L="@comment " -.endif - -# umfpack library is broken -#.if ${PORT_OPTIONS:MUMFPACK} -#LIB_DEPENDS+= umfpack:math/suitesparse -#PLIST_SUB+= UMFPACK="" -#.else -CONFIGURE_ARGS+=--without-umfpack -PLIST_SUB+= UMFPACK="@comment " -#.endif - -.if ${PORT_OPTIONS:MEXIV2} -LIB_DEPENDS+= libexiv2.so:graphics/exiv2 -PLIST_SUB+= EXIV2="" -.else -CONFIGURE_ARGS+=--without-exiv2 -PLIST_SUB+= EXIV2="@comment " -.endif - -.if ${PORT_OPTIONS:MDOCS} -BUILD_DEPENDS+= a2x:textproc/asciidoc \ - ${LOCALBASE}/bin/bash:shells/bash \ - vimdot:graphics/graphviz -USE_RUBY= yes -RUBY_NO_RUN_DEPENDS=yes -.else -CONFIGURE_ARGS+=--disable-docs -.endif - post-patch: - ${REINPLACE_CMD} "s/lua >/lua-${LUA_VER} >/g" ${WRKSRC}/configure -.if ! ${PORT_OPTIONS:MDOCS} - ${REINPLACE_CMD} -e 's|tools examples|tools|g' \ - ${WRKSRC}/Makefile.in -.endif - ${REINPLACE_CMD} -e 's|\(lua\)\(5\.1\)|\1-\2|g ; s|x86_64|amd64|g ; s|libopenraw-1.0|libopenraw-0.1|g' \ + ${REINPLACE_CMD} -e "s/lua >/lua-${LUA_VER} >/g" \ + -e 's|\(lua\)\(5\.1\)|\1-\2|g ; s|x86_64|amd64|g' \ ${WRKSRC}/configure -.if ${PORT_OPTIONS:MDOCS} -pre-configure: -# .if !exists() evaluates too early before graphviz has a chance to be installed - @if ! hash vimdot 2>/dev/null; then \ - ${ECHO_MSG} "${PKGNAME}: Needs graphics/graphviz with PANGOCAIRO support enabled."; \ - ${FALSE}; \ - fi -.endif +post-patch-EXAMPLES-off: + ${REINPLACE_CMD} -e 's|tools examples|tools|g' \ + ${WRKSRC}/Makefile.in -post-build: -.if ${PORT_OPTIONS:MDOCS} - cd ${WRKSRC}/docs && ${MAKE_CMD} index.html - cd ${WRKSRC}/docs/gallery && ${MAKE_CMD} index.html -.endif - -post-install: -.if ${PORT_OPTIONS:MDOCS} - ${MKDIR} ${STAGEDIR}${DOCSDIR}/gallery - (cd ${WRKSRC}/docs && \ - ${COPYTREE_SHARE} \*.html ${STAGEDIR}${DOCSDIR} && \ - ${INSTALL_DATA} ChangeLog gegl.css gegl.devhelp devhelp.css ${STAGEDIR}${DOCSDIR} && \ - ${INSTALL_DATA} gallery/OpenRaster* ${STAGEDIR}${DOCSDIR}/gallery && \ - ${INSTALL_DATA} gallery/clones* ${STAGEDIR}${DOCSDIR}/gallery && \ - ${INSTALL_DATA} gallery/index.html ${STAGEDIR}${DOCSDIR}/gallery ) -.endif -.if ${PORT_OPTIONS:MEXAMPLES} +post-install-EXAMPLES-on: ${MKDIR} ${STAGEDIR}${EXAMPLESDIR}/data ${INSTALL_DATA} ${WRKSRC}/examples/data/surfer.png ${STAGEDIR}${EXAMPLESDIR}/data .for ex in ${EXAMPLES} ${INSTALL_DATA} ${WRKSRC}/examples/${ex}.c ${STAGEDIR}${EXAMPLESDIR} .endfor -.endif - @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/gegl-0.2/*.so .include diff --git a/graphics/gegl/distinfo b/graphics/gegl/distinfo index d42bc9cbd7d..89b6bc50b7a 100644 --- a/graphics/gegl/distinfo +++ b/graphics/gegl/distinfo @@ -1,2 +1,3 @@ -SHA256 (gegl-0.2.0.tar.bz2) = df2e6a0d9499afcbc4f9029c18d9d1e0dd5e8710a75e17c9b1d9a6480dd8d426 -SIZE (gegl-0.2.0.tar.bz2) = 7502040 +TIMESTAMP = 1537606982 +SHA256 (gegl-0.4.8.tar.bz2) = 719468eec56ac5b191626a0cb6238f3abe9117e80594890c246acdc89183ae49 +SIZE (gegl-0.4.8.tar.bz2) = 7017022 diff --git a/graphics/gegl/files/patch-operations_external_exr-save.cc b/graphics/gegl/files/patch-operations_external_exr-save.cc new file mode 100644 index 00000000000..d7972d254fa --- /dev/null +++ b/graphics/gegl/files/patch-operations_external_exr-save.cc @@ -0,0 +1,36 @@ +Upstream: https://gitlab.gnome.org/GNOME/gegl/commit/c1c3541caab485384087bbbcf1c83ef2d5bd4d43 + +diff --git a/operations/external/exr-save.cc b/operations/external/exr-save.cc +index b2032046ccf69f645e52e908bf4fe58ab2b85c6e..018e5d9af0469cc082d12a27af9377ec9b553322 100644 +--- operations/external/exr-save.cc ++++ operations/external/exr-save.cc +@@ -145,10 +145,10 @@ write_tiled_exr (const float *pixels, + &blue[0], &blue[1], + NULL, NULL, NULL); + { +- Imf::Chromaticities c1 (Imath_2_2::V2f(red[0],red[1]), +- Imath_2_2::V2f(green[0],green[1]), +- Imath_2_2::V2f(blue[0],blue[1]), +- Imath_2_2::V2f(wp[0],wp[1])); ++ Imf::Chromaticities c1 (Imath::V2f(red[0],red[1]), ++ Imath::V2f(green[0],green[1]), ++ Imath::V2f(blue[0],blue[1]), ++ Imath::V2f(wp[0],wp[1])); + Imf::addChromaticities (header, c1); + } + } +@@ -184,10 +184,10 @@ write_scanline_exr (const float *pixels, + &green[0], &green[1], + &blue[0], &blue[1], + NULL, NULL, NULL); +- Imf::Chromaticities c1 (Imath_2_2::V2f(red[0],red[1]), +- Imath_2_2::V2f(green[0],green[1]), +- Imath_2_2::V2f(blue[0],blue[1]), +- Imath_2_2::V2f(wp[0],wp[1])); ++ Imf::Chromaticities c1 (Imath::V2f(red[0],red[1]), ++ Imath::V2f(green[0],green[1]), ++ Imath::V2f(blue[0],blue[1]), ++ Imath::V2f(wp[0],wp[1])); + Imf::addChromaticities (header, c1); + } + diff --git a/graphics/gegl/files/patch-operations_external_ff-load.c b/graphics/gegl/files/patch-operations_external_ff-load.c deleted file mode 100644 index 96d60708d5e..00000000000 --- a/graphics/gegl/files/patch-operations_external_ff-load.c +++ /dev/null @@ -1,65 +0,0 @@ -https://git.gnome.org/browse/gegl/commit/?id=97067622352e -https://git.gnome.org/browse/gegl/commit/?id=6d50c42e2c9a -https://git.gnome.org/browse/gegl/commit/?id=67f14cbbc5d1 - ---- operations/external/ff-load.c.orig 2012-04-01 11:17:57 UTC -+++ operations/external/ff-load.c -@@ -137,7 +137,7 @@ ff_cleanup (GeglChantO *o) - if (p->enc) - avcodec_close (p->enc); - if (p->ic) -- av_close_input_file (p->ic); -+ avformat_close_input(&p->ic); - if (p->lavc_frame) - av_free (p->lavc_frame); - -@@ -216,9 +216,9 @@ decode_frame (GeglOperation *operation, - { - do - { -- if (av_read_packet (p->ic, &p->pkt) < 0) -+ if (av_read_frame (p->ic, &p->pkt) < 0) - { -- fprintf (stderr, "av_read_packet failed for %s\n", -+ fprintf (stderr, "av_read_frame failed for %s\n", - o->path); - return -1; - } -@@ -271,12 +271,12 @@ prepare (GeglOperation *operation) - gint err; - - ff_cleanup (o); -- err = av_open_input_file (&p->ic, o->path, NULL, 0, NULL); -+ err = avformat_open_input(&p->ic, o->path, NULL, 0); - if (err < 0) - { - print_error (o->path, err); - } -- err = av_find_stream_info (p->ic); -+ err = avformat_find_stream_info (p->ic, NULL); - if (err < 0) - { - g_warning ("ff-load: error finding stream info for %s", o->path); -@@ -309,10 +309,10 @@ prepare (GeglOperation *operation) - g_warning ("codec not found"); - } - -- if (p->codec->capabilities & CODEC_CAP_TRUNCATED) -- p->enc->flags |= CODEC_FLAG_TRUNCATED; -+ if (p->codec->capabilities & AV_CODEC_CAP_TRUNCATED) -+ p->enc->flags |= AV_CODEC_FLAG_TRUNCATED; - -- if (avcodec_open (p->enc, p->codec) < 0) -+ if (avcodec_open2 (p->enc, p->codec, NULL) < 0) - { - g_warning ("error opening codec %s", p->enc->codec->name); - return; -@@ -321,7 +321,7 @@ prepare (GeglOperation *operation) - p->width = p->enc->width; - p->height = p->enc->height; - p->frames = 10000000; -- p->lavc_frame = avcodec_alloc_frame (); -+ p->lavc_frame = av_frame_alloc (); - - if (p->fourcc) - g_free (p->fourcc); diff --git a/graphics/gegl/files/patch-operations_external_openraw.c b/graphics/gegl/files/patch-operations_external_openraw.c deleted file mode 100644 index 8cd62e3c9ad..00000000000 --- a/graphics/gegl/files/patch-operations_external_openraw.c +++ /dev/null @@ -1,13 +0,0 @@ -OR_DATA_TYPE_CFA was replaced by OR_DATA_TYPE_RAW in libopenraw-0.1.0 - ---- operations/external/openraw.c.orig 2016-12-01 05:57:23 UTC -+++ operations/external/openraw.c -@@ -116,7 +116,7 @@ load_buffer (GeglOperation *operation) - goto clean_file; - } - -- if(or_rawdata_format (rawdata) != OR_DATA_TYPE_CFA) -+ if(or_rawdata_format (rawdata) != OR_DATA_TYPE_RAW) - { - goto clean_file; - } diff --git a/graphics/gegl/files/patch-tools_create-reference.rb b/graphics/gegl/files/patch-tools_create-reference.rb deleted file mode 100644 index 9f3cc579a83..00000000000 --- a/graphics/gegl/files/patch-tools_create-reference.rb +++ /dev/null @@ -1,14 +0,0 @@ ---- tools/create-reference.rb.orig 2013-06-17 14:02:54.000000000 +0000 -+++ tools/create-reference.rb 2013-06-17 14:03:31.000000000 +0000 -@@ -5,6 +5,11 @@ - # Use under a public domain license. - # - -+if RUBY_VERSION != /^1.8/ -+ Encoding.default_external = Encoding::UTF_8 -+ Encoding.default_internal = Encoding::UTF_8 -+end -+ - class Argument - attr_accessor :name, :data_type, :doc - def initialize diff --git a/graphics/gegl/files/patch-tools_exp_combine.cpp b/graphics/gegl/files/patch-tools_exp_combine.cpp deleted file mode 100644 index 19fe993dae9..00000000000 --- a/graphics/gegl/files/patch-tools_exp_combine.cpp +++ /dev/null @@ -1,14 +0,0 @@ ---- tools/exp_combine.cpp.orig 2011-03-02 09:30:13.000000000 +0100 -+++ tools/exp_combine.cpp 2011-03-02 09:27:16.000000000 +0100 -@@ -6,6 +6,11 @@ - #include - #include - -+#include -+#if __FreeBSD_version <= 704100 || (__FreeBSD_version >= 800000 && __FreeBSD_version < 802502) || (__FreeBSD_version >= 900000 && __FreeBSD_version < 900027) -+#define log2f(x) (logf(x) / logf(2)) -+#endif -+ - #include - - #include diff --git a/graphics/gegl/pkg-descr b/graphics/gegl/pkg-descr index 2298a1a0e8a..0e5e89cf0f8 100644 --- a/graphics/gegl/pkg-descr +++ b/graphics/gegl/pkg-descr @@ -6,4 +6,6 @@ non destructive image editing on larger than RAM buffers. Through babl it provides support for a wide range of color models and pixel storage formats for input and output. +This port is a development snapshot until gegl 0.3.0 is released. + WWW: http://gegl.org/ diff --git a/graphics/gegl/pkg-plist b/graphics/gegl/pkg-plist index 5a96a13e79d..d13da942e3a 100644 --- a/graphics/gegl/pkg-plist +++ b/graphics/gegl/pkg-plist @@ -1,23 +1,45 @@ +bin/gcut bin/gegl +bin/gegl-imgcmp +include/gegl-%%GEGL_VER%%/gegl-apply.h +include/gegl-%%GEGL_VER%%/gegl-audio-fragment.h include/gegl-%%GEGL_VER%%/gegl-buffer-backend.h +include/gegl-%%GEGL_VER%%/gegl-buffer-cl-iterator.h include/gegl-%%GEGL_VER%%/gegl-buffer-iterator.h include/gegl-%%GEGL_VER%%/gegl-buffer.h -include/gegl-%%GEGL_VER%%/gegl-chant.h include/gegl-%%GEGL_VER%%/gegl-color.h +include/gegl-%%GEGL_VER%%/gegl-cpuaccel.h include/gegl-%%GEGL_VER%%/gegl-curve.h +include/gegl-%%GEGL_VER%%/gegl-debug.h include/gegl-%%GEGL_VER%%/gegl-enums.h +include/gegl-%%GEGL_VER%%/gegl-graph-debug.h +include/gegl-%%GEGL_VER%%/gegl-init.h include/gegl-%%GEGL_VER%%/gegl-lookup.h include/gegl-%%GEGL_VER%%/gegl-matrix.h +include/gegl-%%GEGL_VER%%/gegl-node.h +include/gegl-%%GEGL_VER%%/gegl-op.h +include/gegl-%%GEGL_VER%%/gegl-operations-util.h include/gegl-%%GEGL_VER%%/gegl-paramspecs.h include/gegl-%%GEGL_VER%%/gegl-path.h include/gegl-%%GEGL_VER%%/gegl-plugin.h +include/gegl-%%GEGL_VER%%/gegl-processor.h +include/gegl-%%GEGL_VER%%/gegl-random.h include/gegl-%%GEGL_VER%%/gegl-tile-backend.h +include/gegl-%%GEGL_VER%%/gegl-tile-handler.h include/gegl-%%GEGL_VER%%/gegl-tile-source.h include/gegl-%%GEGL_VER%%/gegl-tile.h include/gegl-%%GEGL_VER%%/gegl-types.h include/gegl-%%GEGL_VER%%/gegl-utils.h include/gegl-%%GEGL_VER%%/gegl-version.h include/gegl-%%GEGL_VER%%/gegl.h +include/gegl-%%GEGL_VER%%/npd/deformation.h +include/gegl-%%GEGL_VER%%/npd/graphics.h +include/gegl-%%GEGL_VER%%/npd/lattice_cut.h +include/gegl-%%GEGL_VER%%/npd/npd.h +include/gegl-%%GEGL_VER%%/npd/npd_common.h +include/gegl-%%GEGL_VER%%/npd/npd_debug.h +include/gegl-%%GEGL_VER%%/npd/npd_gegl.h +include/gegl-%%GEGL_VER%%/npd/npd_math.h include/gegl-%%GEGL_VER%%/opencl/cl.h include/gegl-%%GEGL_VER%%/opencl/cl_d3d10.h include/gegl-%%GEGL_VER%%/opencl/cl_ext.h @@ -26,195 +48,114 @@ include/gegl-%%GEGL_VER%%/opencl/cl_gl_ext.h include/gegl-%%GEGL_VER%%/opencl/cl_platform.h include/gegl-%%GEGL_VER%%/opencl/gegl-cl-color.h include/gegl-%%GEGL_VER%%/opencl/gegl-cl-init.h +include/gegl-%%GEGL_VER%%/opencl/gegl-cl-random.h include/gegl-%%GEGL_VER%%/opencl/gegl-cl-types.h include/gegl-%%GEGL_VER%%/opencl/gegl-cl.h include/gegl-%%GEGL_VER%%/opencl/opencl.h +include/gegl-%%GEGL_VER%%/operation/gegl-extension-handler.h include/gegl-%%GEGL_VER%%/operation/gegl-operation-area-filter.h include/gegl-%%GEGL_VER%%/operation/gegl-operation-composer.h include/gegl-%%GEGL_VER%%/operation/gegl-operation-composer3.h +include/gegl-%%GEGL_VER%%/operation/gegl-operation-context.h +include/gegl-%%GEGL_VER%%/operation/gegl-operation-handlers.h include/gegl-%%GEGL_VER%%/operation/gegl-operation-filter.h +include/gegl-%%GEGL_VER%%/operation/gegl-operation-meta-json.h include/gegl-%%GEGL_VER%%/operation/gegl-operation-meta.h include/gegl-%%GEGL_VER%%/operation/gegl-operation-point-composer.h include/gegl-%%GEGL_VER%%/operation/gegl-operation-point-composer3.h include/gegl-%%GEGL_VER%%/operation/gegl-operation-point-filter.h include/gegl-%%GEGL_VER%%/operation/gegl-operation-point-render.h +include/gegl-%%GEGL_VER%%/operation/gegl-operation-property-keys.h include/gegl-%%GEGL_VER%%/operation/gegl-operation-sink.h include/gegl-%%GEGL_VER%%/operation/gegl-operation-source.h include/gegl-%%GEGL_VER%%/operation/gegl-operation-temporal.h include/gegl-%%GEGL_VER%%/operation/gegl-operation.h -%%CAIRO%%lib/gegl-%%GEGL_VER%%/vector-fill.so -%%CAIRO%%lib/gegl-%%GEGL_VER%%/vector-stroke.so -%%CAIRO%%lib/gegl-%%GEGL_VER%%/path.so -%%FFMPEG%%lib/gegl-%%GEGL_VER%%/ff-load.so -%%JPEG%%lib/gegl-%%GEGL_VER%%/jpg-load.so -%%JPEG%%lib/gegl-%%GEGL_VER%%/jpg-save.so +include/gegl-%%GEGL_VER%%/sc/sc-common.h +include/gegl-%%GEGL_VER%%/sc/sc-context.h +include/gegl-%%GEGL_VER%%/sc/sc-outline.h +include/gegl-%%GEGL_VER%%/sc/sc-sample.h %%OPENEXR%%lib/gegl-%%GEGL_VER%%/exr-load.so %%OPENEXR%%lib/gegl-%%GEGL_VER%%/exr-save.so -%%OPENRAW%%lib/gegl-%%GEGL_VER%%/openraw.so -%%PANGOCAIRO%%lib/gegl-%%GEGL_VER%%/text.so -%%PNG%%lib/gegl-%%GEGL_VER%%/png-load.so -%%PNG%%lib/gegl-%%GEGL_VER%%/png-save.so -%%RSVG%%lib/gegl-%%GEGL_VER%%/svg-load.so -%%SDL%%lib/gegl-%%GEGL_VER%%/sdl-display.so -%%V4L%%lib/gegl-%%GEGL_VER%%/v4l.so -lib/gegl-%%GEGL_VER%%/add.so -lib/gegl-%%GEGL_VER%%/bilateral-filter.so -lib/gegl-%%GEGL_VER%%/box-blur.so -lib/gegl-%%GEGL_VER%%/brightness-contrast.so -lib/gegl-%%GEGL_VER%%/buffer-sink.so -lib/gegl-%%GEGL_VER%%/buffer-source.so -lib/gegl-%%GEGL_VER%%/c2g.so -lib/gegl-%%GEGL_VER%%/checkerboard.so -lib/gegl-%%GEGL_VER%%/clear.so -lib/gegl-%%GEGL_VER%%/clone.so -lib/gegl-%%GEGL_VER%%/color-burn.so -lib/gegl-%%GEGL_VER%%/color-dodge.so -lib/gegl-%%GEGL_VER%%/color-temperature.so -lib/gegl-%%GEGL_VER%%/color-to-alpha.so -lib/gegl-%%GEGL_VER%%/color.so -lib/gegl-%%GEGL_VER%%/contrast-curve.so -lib/gegl-%%GEGL_VER%%/convert-format.so -lib/gegl-%%GEGL_VER%%/crop.so -lib/gegl-%%GEGL_VER%%/darken.so -lib/gegl-%%GEGL_VER%%/difference-of-gaussians.so -lib/gegl-%%GEGL_VER%%/difference.so -lib/gegl-%%GEGL_VER%%/display.so -lib/gegl-%%GEGL_VER%%/divide.so -lib/gegl-%%GEGL_VER%%/dropshadow.so -lib/gegl-%%GEGL_VER%%/dst-atop.so -lib/gegl-%%GEGL_VER%%/dst-in.so -lib/gegl-%%GEGL_VER%%/dst-out.so -lib/gegl-%%GEGL_VER%%/dst-over.so -lib/gegl-%%GEGL_VER%%/dst.so -lib/gegl-%%GEGL_VER%%/edge-laplace.so -lib/gegl-%%GEGL_VER%%/edge-sobel.so -lib/gegl-%%GEGL_VER%%/exclusion.so -lib/gegl-%%GEGL_VER%%/exp-combine.so -lib/gegl-%%GEGL_VER%%/fattal02.so -lib/gegl-%%GEGL_VER%%/fractal-explorer.so -lib/gegl-%%GEGL_VER%%/gamma.so -lib/gegl-%%GEGL_VER%%/gaussian-blur.so -lib/gegl-%%GEGL_VER%%/gegl-buffer-load-op.so -lib/gegl-%%GEGL_VER%%/gegl-buffer-save-op.so -lib/gegl-%%GEGL_VER%%/grey.so -lib/gegl-%%GEGL_VER%%/grid.so -lib/gegl-%%GEGL_VER%%/hard-light.so -lib/gegl-%%GEGL_VER%%/introspect.so -lib/gegl-%%GEGL_VER%%/invert.so -%%JP2%%lib/gegl-%%GEGL_VER%%/jp2-load.so -lib/gegl-%%GEGL_VER%%/layer.so -lib/gegl-%%GEGL_VER%%/lens-distortion.so -lib/gegl-%%GEGL_VER%%/levels.so -lib/gegl-%%GEGL_VER%%/lighten.so -lib/gegl-%%GEGL_VER%%/load.so -lib/gegl-%%GEGL_VER%%/magick-load.so -lib/gegl-%%GEGL_VER%%/mantiuk06.so -lib/gegl-%%GEGL_VER%%/map-absolute.so -lib/gegl-%%GEGL_VER%%/map-relative.so -lib/gegl-%%GEGL_VER%%/matting-global.so -lib/gegl-%%GEGL_VER%%/mblur.so -lib/gegl-%%GEGL_VER%%/mirrors.so -lib/gegl-%%GEGL_VER%%/mono-mixer.so -lib/gegl-%%GEGL_VER%%/motion-blur.so -lib/gegl-%%GEGL_VER%%/multiply.so -lib/gegl-%%GEGL_VER%%/noise-reduction.so -lib/gegl-%%GEGL_VER%%/noise.so -lib/gegl-%%GEGL_VER%%/nop.so -lib/gegl-%%GEGL_VER%%/opacity.so -lib/gegl-%%GEGL_VER%%/open-buffer.so -lib/gegl-%%GEGL_VER%%/over.so -lib/gegl-%%GEGL_VER%%/overlay.so -%%GDK%%lib/gegl-%%GEGL_VER%%/pixbuf.so -lib/gegl-%%GEGL_VER%%/pixelize.so -lib/gegl-%%GEGL_VER%%/plus.so -lib/gegl-%%GEGL_VER%%/polar-coordinates.so -lib/gegl-%%GEGL_VER%%/posterize.so +%%FFMPEG%%lib/gegl-%%GEGL_VER%%/ff-load.so +%%FFMPEG%%lib/gegl-%%GEGL_VER%%/ff-save.so +lib/gegl-%%GEGL_VER%%/gegl-common-gpl3.so +lib/gegl-%%GEGL_VER%%/gegl-common.so +lib/gegl-%%GEGL_VER%%/gegl-core.so +lib/gegl-%%GEGL_VER%%/gegl-generated.so +lib/gegl-%%GEGL_VER%%/grey2.json +%%JASPER%%lib/gegl-%%GEGL_VER%%/jp2-load.so +lib/gegl-%%GEGL_VER%%/jpg-load.so +lib/gegl-%%GEGL_VER%%/jpg-save.so +%%LCMS2%%lib/gegl-%%GEGL_VER%%/lcms-from-profile.so +%%CAIRO%%lib/gegl-%%GEGL_VER%%/npd.so +lib/gegl-%%GEGL_VER%%/npy-save.so +%%CAIRO%%lib/gegl-%%GEGL_VER%%/path.so +%%PIXBUF%%lib/gegl-%%GEGL_VER%%/pixbuf.so +lib/gegl-%%GEGL_VER%%/png-load.so +lib/gegl-%%GEGL_VER%%/png-save.so lib/gegl-%%GEGL_VER%%/ppm-load.so lib/gegl-%%GEGL_VER%%/ppm-save.so -lib/gegl-%%GEGL_VER%%/raw-load.so -lib/gegl-%%GEGL_VER%%/rectangle.so -lib/gegl-%%GEGL_VER%%/reinhard05.so -lib/gegl-%%GEGL_VER%%/remap.so +%%RAW%%lib/gegl-%%GEGL_VER%%/raw-load.so lib/gegl-%%GEGL_VER%%/rgbe-load.so lib/gegl-%%GEGL_VER%%/rgbe-save.so -lib/gegl-%%GEGL_VER%%/ripple.so -%%GDK%%lib/gegl-%%GEGL_VER%%/save-pixbuf.so -lib/gegl-%%GEGL_VER%%/save.so -lib/gegl-%%GEGL_VER%%/screen.so -lib/gegl-%%GEGL_VER%%/snn-mean.so -lib/gegl-%%GEGL_VER%%/soft-light.so -lib/gegl-%%GEGL_VER%%/src-atop.so -lib/gegl-%%GEGL_VER%%/src-in.so -lib/gegl-%%GEGL_VER%%/src-out.so -lib/gegl-%%GEGL_VER%%/src-over.so -lib/gegl-%%GEGL_VER%%/src.so -lib/gegl-%%GEGL_VER%%/stress.so -lib/gegl-%%GEGL_VER%%/stretch-contrast.so -lib/gegl-%%GEGL_VER%%/subtract.so -lib/gegl-%%GEGL_VER%%/svg-huerotate.so -lib/gegl-%%GEGL_VER%%/svg-luminancetoalpha.so -lib/gegl-%%GEGL_VER%%/svg-matrix.so -lib/gegl-%%GEGL_VER%%/svg-multiply.so -lib/gegl-%%GEGL_VER%%/svg-saturate.so -lib/gegl-%%GEGL_VER%%/threshold.so +%%PIXBUF%%lib/gegl-%%GEGL_VER%%/save-pixbuf.so +%%SDL%%lib/gegl-%%GEGL_VER%%/sdl-display.so +lib/gegl-%%GEGL_VER%%/seamless-clone-compose.so +lib/gegl-%%GEGL_VER%%/seamless-clone.so +%%LIBRSVG2%%lib/gegl-%%GEGL_VER%%/svg-load.so +%%PANGOCAIRO%%lib/gegl-%%GEGL_VER%%/text.so +%%TIFF%%lib/gegl-%%GEGL_VER%%/tiff-load.so +%%TIFF%%lib/gegl-%%GEGL_VER%%/tiff-save.so lib/gegl-%%GEGL_VER%%/transformops.so -lib/gegl-%%GEGL_VER%%/unsharp-mask.so -lib/gegl-%%GEGL_VER%%/value-invert.so -lib/gegl-%%GEGL_VER%%/vignette.so -lib/gegl-%%GEGL_VER%%/waves.so -lib/gegl-%%GEGL_VER%%/weighted-blend.so -lib/gegl-%%GEGL_VER%%/write-buffer.so -lib/gegl-%%GEGL_VER%%/xor.so +%%V4L%%lib/gegl-%%GEGL_VER%%/v4l.so +%%CAIRO%%lib/gegl-%%GEGL_VER%%/vector-fill.so +%%CAIRO%%lib/gegl-%%GEGL_VER%%/vector-stroke.so +%%WEBP%%lib/gegl-%%GEGL_VER%%/webp-load.so +%%WEBP%%lib/gegl-%%GEGL_VER%%/webp-save.so +lib/girepository-1.0/Gegl-%%GEGL_VER%%.typelib lib/libgegl-%%GEGL_VER%%.so lib/libgegl-%%GEGL_VER%%.so.0 -lib/libgegl-%%GEGL_VER%%.so.0.199.1 +lib/libgegl-%%GEGL_VER%%.so.0.%%GEGL_MINOR%%.0 +lib/libgegl-npd-%%GEGL_VER%%.so +lib/libgegl-sc-%%GEGL_VER%%.so libdata/pkgconfig/gegl-%%GEGL_VER%%.pc -%%PORTDOCS%%%%DOCSDIR%%/ChangeLog -%%PORTDOCS%%%%DOCSDIR%%/api.html -%%PORTDOCS%%%%DOCSDIR%%/brightness-contrast.c.html -%%PORTDOCS%%%%DOCSDIR%%/devhelp.css -%%PNG%%%%PORTDOCS%%%%DOCSDIR%%/gallery/OpenRaster-00.png -%%PORTDOCS%%%%DOCSDIR%%/gallery/OpenRaster-00.txt -%%PORTDOCS%%%%DOCSDIR%%/gallery/OpenRaster-00.xml -%%PNG%%%%PORTDOCS%%%%DOCSDIR%%/gallery/OpenRaster-01.png -%%PORTDOCS%%%%DOCSDIR%%/gallery/OpenRaster-01.txt -%%PORTDOCS%%%%DOCSDIR%%/gallery/OpenRaster-01.xml -%%PNG%%%%PORTDOCS%%%%DOCSDIR%%/gallery/OpenRaster-04.png -%%PORTDOCS%%%%DOCSDIR%%/gallery/OpenRaster-04.txt -%%PORTDOCS%%%%DOCSDIR%%/gallery/OpenRaster-04.xml -%%PNG%%%%PORTDOCS%%%%DOCSDIR%%/gallery/clones.png -%%PORTDOCS%%%%DOCSDIR%%/gallery/clones.txt -%%PORTDOCS%%%%DOCSDIR%%/gallery/clones.xml -%%PORTDOCS%%%%DOCSDIR%%/gallery/index.html -%%PORTDOCS%%%%DOCSDIR%%/gegl-operation-area-filter.h.html -%%PORTDOCS%%%%DOCSDIR%%/gegl-operation-composer.h.html -%%PORTDOCS%%%%DOCSDIR%%/gegl-operation-filter.h.html -%%PORTDOCS%%%%DOCSDIR%%/gegl-operation-meta.h.html -%%PORTDOCS%%%%DOCSDIR%%/gegl-operation-point-composer.h.html -%%PORTDOCS%%%%DOCSDIR%%/gegl-operation-point-filter.h.html -%%PORTDOCS%%%%DOCSDIR%%/gegl-operation-point-render.h.html -%%PORTDOCS%%%%DOCSDIR%%/gegl-operation-sink.h.html -%%PORTDOCS%%%%DOCSDIR%%/gegl-operation-source.h.html -%%PORTDOCS%%%%DOCSDIR%%/gegl-operation-temporal.h.html -%%PORTDOCS%%%%DOCSDIR%%/gegl-operation.h.html -%%PORTDOCS%%%%DOCSDIR%%/gegl-plugin.h.html -%%PORTDOCS%%%%DOCSDIR%%/gegl.css -%%PORTDOCS%%%%DOCSDIR%%/gegl.devhelp -%%PORTDOCS%%%%DOCSDIR%%/gegl.h.html -%%PORTDOCS%%%%DOCSDIR%%/index.html -%%PORTDOCS%%%%DOCSDIR%%/operations.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/data/surfer.png +libdata/pkgconfig/gegl-sc-%%GEGL_VER%%.pc %%PORTEXAMPLES%%%%EXAMPLESDIR%%/2geglbuffer.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/csugar.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/float-lookup.c +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/data/surfer.png %%PORTEXAMPLES%%%%EXAMPLESDIR%%/gegl-convert.c %%PORTEXAMPLES%%%%EXAMPLESDIR%%/gegl-slicer.c %%PORTEXAMPLES%%%%EXAMPLESDIR%%/geglbuffer-add-image.c %%PORTEXAMPLES%%%%EXAMPLESDIR%%/geglbuffer-clock.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hello-world-video.c %%PORTEXAMPLES%%%%EXAMPLESDIR%%/hello-world.c +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sdl-draw.c +share/gir-1.0/Gegl-%%GEGL_VER%%.gir +share/locale/bs/LC_MESSAGES/gegl-%%GEGL_VER%%.mo +share/locale/ca/LC_MESSAGES/gegl-%%GEGL_VER%%.mo +share/locale/da/LC_MESSAGES/gegl-%%GEGL_VER%%.mo +share/locale/de/LC_MESSAGES/gegl-%%GEGL_VER%%.mo +share/locale/el/LC_MESSAGES/gegl-%%GEGL_VER%%.mo +share/locale/en_GB/LC_MESSAGES/gegl-%%GEGL_VER%%.mo +share/locale/eo/LC_MESSAGES/gegl-%%GEGL_VER%%.mo share/locale/es/LC_MESSAGES/gegl-%%GEGL_VER%%.mo +share/locale/eu/LC_MESSAGES/gegl-%%GEGL_VER%%.mo share/locale/fr/LC_MESSAGES/gegl-%%GEGL_VER%%.mo +share/locale/gl/LC_MESSAGES/gegl-%%GEGL_VER%%.mo +share/locale/id/LC_MESSAGES/gegl-%%GEGL_VER%%.mo +share/locale/is/LC_MESSAGES/gegl-%%GEGL_VER%%.mo +share/locale/it/LC_MESSAGES/gegl-%%GEGL_VER%%.mo +share/locale/ko/LC_MESSAGES/gegl-%%GEGL_VER%%.mo +share/locale/lv/LC_MESSAGES/gegl-%%GEGL_VER%%.mo +share/locale/mr/LC_MESSAGES/gegl-%%GEGL_VER%%.mo +share/locale/nb/LC_MESSAGES/gegl-%%GEGL_VER%%.mo +share/locale/oc/LC_MESSAGES/gegl-%%GEGL_VER%%.mo share/locale/pl/LC_MESSAGES/gegl-%%GEGL_VER%%.mo +share/locale/pt_BR/LC_MESSAGES/gegl-%%GEGL_VER%%.mo +share/locale/pt/LC_MESSAGES/gegl-%%GEGL_VER%%.mo share/locale/ru/LC_MESSAGES/gegl-%%GEGL_VER%%.mo +share/locale/sk/LC_MESSAGES/gegl-%%GEGL_VER%%.mo share/locale/sl/LC_MESSAGES/gegl-%%GEGL_VER%%.mo +share/locale/sr/LC_MESSAGES/gegl-%%GEGL_VER%%.mo +share/locale/sv/LC_MESSAGES/gegl-%%GEGL_VER%%.mo +share/locale/tr/LC_MESSAGES/gegl-%%GEGL_VER%%.mo +share/locale/uk/LC_MESSAGES/gegl-%%GEGL_VER%%.mo +share/locale/zh_CN/LC_MESSAGES/gegl-%%GEGL_VER%%.mo diff --git a/graphics/gegl3/Makefile b/graphics/gegl3/Makefile deleted file mode 100644 index b069ae26cbf..00000000000 --- a/graphics/gegl3/Makefile +++ /dev/null @@ -1,149 +0,0 @@ -# Created by: Pietro Cerutti -# $FreeBSD$ - -PORTNAME= gegl -PORTVERSION= 0.3.34 -PORTREVISION= 2 -CATEGORIES= graphics -MASTER_SITES= GIMP -PKGNAMESUFFIX= 3 - -MAINTAINER= gnome@FreeBSD.org -COMMENT= Graph based image processing framework - -LICENSE= BSD3CLAUSE GPLv3+ LGPL3+ -LICENSE_COMB= multi -LICENSE_FILE_GPLv3+ = ${WRKSRC}/COPYING -LICENSE_FILE_LGPL3+ = ${WRKSRC}/COPYING.LESSER - -LIB_DEPENDS= libbabl-0.1.so:x11/babl \ - libjson-glib-1.0.so:devel/json-glib \ - libpng.so:graphics/png - -USES= compiler:c11 cpe gettext gmake jpeg libtool localbase \ - pathfix pkgconfig shebangfix uniquefiles tar:bzip2 -USE_GNOME= glib20 intltool introspection:build -USE_LDCONFIG= yes -GNU_CONFIGURE= yes -CONFIGURE_ENV= ac_cv_header_execinfo_h=no -CONFIGURE_ARGS= --without-vala --disable-docs -CONFIGURE_ARGS+=--without-mrg --without-lensfun -INSTALL_TARGET= install-strip - -GEGL_MINOR= 334 -GEGL_VER= 0.3 -PLIST_SUB+= GEGL_MINOR="${GEGL_MINOR}" GEGL_VER=${GEGL_VER} - -EXAMPLES= 2geglbuffer \ - gegl-convert gegl-slicer geglbuffer-add-image \ - geglbuffer-clock hello-world sdl-draw - -SHEBANG_FILES= tools/xml_insert.sh - -# Fix conflicts with graphics/gegl and sysutils/coreutils -EXAMPLESDIR= ${PREFIX}/share/examples/gegl${PKGNAMESUFFIX} -UNIQUE_SUFFIX_FILES= bin/gcut bin/gegl - -OPTIONS_SUB= yes -OPTIONS_DEFINE= CAIRO ENSCRIPT EXIV2 FFMPEG PIXBUF GRAPHVIZ JASPER \ - LUA OPENEXR RAW PANGO LIBRSVG2 SDL SPIRO V4L \ - EXAMPLES LCMS2 WEBP TIFF GEXIV2 -OPTIONS_DEFAULT=CAIRO ENSCRIPT EXIV2 PIXBUF GRAPHVIZ JASPER LCMS2 LUA \ - OPENEXR RAW PANGO LIBRSVG2 SDL SPIRO V4L WEBP TIFF - -ENSCRIPT_DESC= Enscript support -SPIRO_DESC= Spiro support -#UMFPACK_DESC= UMFpack support -GEXIV2_DESC= EXIF and IPTC metadata support via gexiv2 - -PIXBUF_USE= GNOME=gdkpixbuf2 -PIXBUF_CONFIGURE_WITH= gdk-pixbuf - -CAIRO_USE= GNOME=cairo -CAIRO_CONFIGURE_WITH= cairo - -PANGO_USE= GNOME=pango -PANGO_CONFIGURE_WITH= pango - -ENSCRIPT_BUILD_DEPENDS= enscript:print/enscript-a4 - -FFMPEG_LIB_DEPENDS= libavformat.so:multimedia/ffmpeg -FFMPEG_CONFIGURE_WITH= libavformat - -GRAPHVIZ_LIB_DEPENDS= libcgraph.so:graphics/graphviz -GRAPHVIZ_CONFIGURE_WITH= graphviz - -JASPER_LIB_DEPENDS= libjasper.so:graphics/jasper -JASPER_CONFIGURE_WITH= jasper - -LCMS2_LIB_DEPENDS= liblcms2.so:graphics/lcms2 -LCMS2_CONFIGURE_OFF= --without-lcms - -LUA_USES= lua -LUA_CONFIGURE_WITH= lua - -OPENEXR_LIB_DEPENDS= libIlmImf.so:graphics/openexr \ - libImath.so:graphics/ilmbase -OPENEXR_CONFIGURE_WITH= openexr - -RAW_LIB_DEPENDS= libraw.so:graphics/libraw -RAW_CONFIGURE_WITH= libraw - -LIBRSVG2_USE= GNOME=librsvg2 -LIBRSVG2_CONFIGURE_OFF= --without-librsvg - -SDL_USE= SDL=sdl -SDL_CONFIGURE_WITH= sdl - -SPIRO_LIB_DEPENDS= libspiro.so:graphics/libspiro -SPIRO_CONFIGURE_WITH= libspiro - -V4L_BUILD_DEPENDS= v4l_compat>=0:multimedia/v4l_compat -V4L_LIB_DEPENDS= libv4l2.so:multimedia/libv4l -V4L_CONFIGURE_WITH= libv4l -V4L_VARS= LICENSE+=LGPL20+ - -WEBP_LIB_DEPENDS= libwebp.so:graphics/webp -WEBP_CONFIGURE_WITH= webp - -# UMFPACK has two "problems" -# 1) it build with port gcc 2) needed libs aren't recorded in the libraries. -#UMFPACK_LIB_DEPENDS= libumfpack.so:math/suitesparse -#UMFPACK_CONFIGURE_WITH= umfpack -CONFIGURE_ARGS+= --without-umfpack - -EXIV2_LIB_DEPENDS= libexiv2.so:graphics/exiv2 -EXIV2_CONFIGURE_WITH= exiv2 - -GEXIV2_LIB_DEPENDS= libgexiv2.so:graphics/gexiv2 -GEXIV2_CONFIGURE_WITH= gexiv2 - -TIFF_LIB_DEPENDS= libtiff.so:graphics/tiff -TIFF_CONFIGURE_WITH= libtiff - -.include - -.if ${PORT_OPTIONS:MPANGO} && ${PORT_OPTIONS:MCAIRO} -PLIST_SUB+= PANGOCAIRO="" -.else -CONFIGURE_ARGS+=--without-pangocairo -PLIST_SUB+= PANGOCAIRO="@comment " -.endif - -post-patch: - ${REINPLACE_CMD} -e "s/lua >/lua-${LUA_VER} >/g" \ - -e 's|\(lua\)\(5\.1\)|\1-\2|g ; s|x86_64|amd64|g' \ - ${WRKSRC}/configure - -post-patch-EXAMPLES-off: - ${REINPLACE_CMD} -e 's|tools examples|tools|g' \ - ${WRKSRC}/Makefile.in - -post-install-EXAMPLES-on: - ${MKDIR} ${STAGEDIR}${EXAMPLESDIR}/data - ${INSTALL_DATA} ${WRKSRC}/examples/data/surfer.png ${STAGEDIR}${EXAMPLESDIR}/data -.for ex in ${EXAMPLES} - ${INSTALL_DATA} ${WRKSRC}/examples/${ex}.c ${STAGEDIR}${EXAMPLESDIR} -.endfor - -.include diff --git a/graphics/gegl3/distinfo b/graphics/gegl3/distinfo deleted file mode 100644 index 2481b739bf4..00000000000 --- a/graphics/gegl3/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -TIMESTAMP = 1526313999 -SHA256 (gegl-0.3.34.tar.bz2) = 5ca2227655ebf1ab2e252cee3eede219c758336394288ef301b93264b9411304 -SIZE (gegl-0.3.34.tar.bz2) = 6707964 diff --git a/graphics/gegl3/files/patch-operations_external_ff-save.c b/graphics/gegl3/files/patch-operations_external_ff-save.c deleted file mode 100644 index 79a512e212e..00000000000 --- a/graphics/gegl3/files/patch-operations_external_ff-save.c +++ /dev/null @@ -1,46 +0,0 @@ ---- operations/external/ff-save.c.orig 2017-07-01 17:19:54 UTC -+++ operations/external/ff-save.c -@@ -290,7 +290,7 @@ add_audio_stream (GeglProperties *o, AVFormatContext * - c->codec_type = AVMEDIA_TYPE_AUDIO; - - if (oc->oformat->flags & AVFMT_GLOBALHEADER) -- c->flags |= CODEC_FLAG_GLOBAL_HEADER; -+ c->flags |= AV_CODEC_FLAG_GLOBAL_HEADER; - - return st; - } -@@ -631,7 +631,7 @@ add_video_stream (GeglProperties *o, AVFormatContext * - #endif - - if (oc->oformat->flags & AVFMT_GLOBALHEADER) -- c->flags |= CODEC_FLAG_GLOBAL_HEADER; -+ c->flags |= AV_CODEC_FLAG_GLOBAL_HEADER; - - return st; - } -@@ -699,7 +699,9 @@ open_video (GeglProperties *o, AVFormatContext * oc, A - } - - p->video_outbuf = NULL; -+#ifdef AVFMT_RAWPICTURE - if (!(oc->oformat->flags & AVFMT_RAWPICTURE)) -+#endif - { - /* allocate output buffer, 1 mb / frame, might fail for some codecs on UHD - but works for now */ - p->video_outbuf_size = 1024 * 1024; -@@ -803,6 +805,7 @@ write_video_frame (GeglProperties *o, - picture_ptr = p->picture; - picture_ptr->pts = p->frame_count; - -+#ifdef AVFMT_RAWPICTURE - if (oc->oformat->flags & AVFMT_RAWPICTURE) - { - /* raw video case. The API will change slightly in the near -@@ -821,6 +824,7 @@ write_video_frame (GeglProperties *o, - ret = av_write_frame (oc, &pkt); - } - else -+#endif - { - /* encode the image */ - AVPacket pkt2; diff --git a/graphics/gegl3/pkg-descr b/graphics/gegl3/pkg-descr deleted file mode 100644 index 0e5e89cf0f8..00000000000 --- a/graphics/gegl3/pkg-descr +++ /dev/null @@ -1,11 +0,0 @@ -GEGL (Generic Graphics Library) is a graph based image -processing framework. - -GEGL provides infrastructure to do demand based cached -non destructive image editing on larger than RAM buffers. -Through babl it provides support for a wide range of color -models and pixel storage formats for input and output. - -This port is a development snapshot until gegl 0.3.0 is released. - -WWW: http://gegl.org/ diff --git a/graphics/gegl3/pkg-plist b/graphics/gegl3/pkg-plist deleted file mode 100644 index 5db69a02604..00000000000 --- a/graphics/gegl3/pkg-plist +++ /dev/null @@ -1,159 +0,0 @@ -bin/gcut -bin/gegl -bin/gegl-imgcmp -include/gegl-%%GEGL_VER%%/gegl-apply.h -include/gegl-%%GEGL_VER%%/gegl-audio-fragment.h -include/gegl-%%GEGL_VER%%/gegl-buffer-backend.h -include/gegl-%%GEGL_VER%%/gegl-buffer-cl-iterator.h -include/gegl-%%GEGL_VER%%/gegl-buffer-iterator.h -include/gegl-%%GEGL_VER%%/gegl-buffer.h -include/gegl-%%GEGL_VER%%/gegl-color.h -include/gegl-%%GEGL_VER%%/gegl-cpuaccel.h -include/gegl-%%GEGL_VER%%/gegl-curve.h -include/gegl-%%GEGL_VER%%/gegl-debug.h -include/gegl-%%GEGL_VER%%/gegl-enums.h -include/gegl-%%GEGL_VER%%/gegl-graph-debug.h -include/gegl-%%GEGL_VER%%/gegl-init.h -include/gegl-%%GEGL_VER%%/gegl-lookup.h -include/gegl-%%GEGL_VER%%/gegl-matrix.h -include/gegl-%%GEGL_VER%%/gegl-node.h -include/gegl-%%GEGL_VER%%/gegl-op.h -include/gegl-%%GEGL_VER%%/gegl-operations-util.h -include/gegl-%%GEGL_VER%%/gegl-paramspecs.h -include/gegl-%%GEGL_VER%%/gegl-path.h -include/gegl-%%GEGL_VER%%/gegl-plugin.h -include/gegl-%%GEGL_VER%%/gegl-processor.h -include/gegl-%%GEGL_VER%%/gegl-random.h -include/gegl-%%GEGL_VER%%/gegl-tile-backend.h -include/gegl-%%GEGL_VER%%/gegl-tile-handler.h -include/gegl-%%GEGL_VER%%/gegl-tile-source.h -include/gegl-%%GEGL_VER%%/gegl-tile.h -include/gegl-%%GEGL_VER%%/gegl-types.h -include/gegl-%%GEGL_VER%%/gegl-utils.h -include/gegl-%%GEGL_VER%%/gegl-version.h -include/gegl-%%GEGL_VER%%/gegl.h -include/gegl-%%GEGL_VER%%/npd/deformation.h -include/gegl-%%GEGL_VER%%/npd/graphics.h -include/gegl-%%GEGL_VER%%/npd/lattice_cut.h -include/gegl-%%GEGL_VER%%/npd/npd.h -include/gegl-%%GEGL_VER%%/npd/npd_common.h -include/gegl-%%GEGL_VER%%/npd/npd_debug.h -include/gegl-%%GEGL_VER%%/npd/npd_gegl.h -include/gegl-%%GEGL_VER%%/npd/npd_math.h -include/gegl-%%GEGL_VER%%/opencl/cl.h -include/gegl-%%GEGL_VER%%/opencl/cl_d3d10.h -include/gegl-%%GEGL_VER%%/opencl/cl_ext.h -include/gegl-%%GEGL_VER%%/opencl/cl_gl.h -include/gegl-%%GEGL_VER%%/opencl/cl_gl_ext.h -include/gegl-%%GEGL_VER%%/opencl/cl_platform.h -include/gegl-%%GEGL_VER%%/opencl/gegl-cl-color.h -include/gegl-%%GEGL_VER%%/opencl/gegl-cl-init.h -include/gegl-%%GEGL_VER%%/opencl/gegl-cl-random.h -include/gegl-%%GEGL_VER%%/opencl/gegl-cl-types.h -include/gegl-%%GEGL_VER%%/opencl/gegl-cl.h -include/gegl-%%GEGL_VER%%/opencl/opencl.h -include/gegl-%%GEGL_VER%%/operation/gegl-extension-handler.h -include/gegl-%%GEGL_VER%%/operation/gegl-operation-area-filter.h -include/gegl-%%GEGL_VER%%/operation/gegl-operation-composer.h -include/gegl-%%GEGL_VER%%/operation/gegl-operation-composer3.h -include/gegl-%%GEGL_VER%%/operation/gegl-operation-context.h -include/gegl-%%GEGL_VER%%/operation/gegl-operation-handlers.h -include/gegl-%%GEGL_VER%%/operation/gegl-operation-filter.h -include/gegl-%%GEGL_VER%%/operation/gegl-operation-meta-json.h -include/gegl-%%GEGL_VER%%/operation/gegl-operation-meta.h -include/gegl-%%GEGL_VER%%/operation/gegl-operation-point-composer.h -include/gegl-%%GEGL_VER%%/operation/gegl-operation-point-composer3.h -include/gegl-%%GEGL_VER%%/operation/gegl-operation-point-filter.h -include/gegl-%%GEGL_VER%%/operation/gegl-operation-point-render.h -include/gegl-%%GEGL_VER%%/operation/gegl-operation-property-keys.h -include/gegl-%%GEGL_VER%%/operation/gegl-operation-sink.h -include/gegl-%%GEGL_VER%%/operation/gegl-operation-source.h -include/gegl-%%GEGL_VER%%/operation/gegl-operation-temporal.h -include/gegl-%%GEGL_VER%%/operation/gegl-operation.h -include/gegl-%%GEGL_VER%%/sc/sc-common.h -include/gegl-%%GEGL_VER%%/sc/sc-context.h -include/gegl-%%GEGL_VER%%/sc/sc-outline.h -include/gegl-%%GEGL_VER%%/sc/sc-sample.h -%%OPENEXR%%lib/gegl-%%GEGL_VER%%/exr-load.so -%%OPENEXR%%lib/gegl-%%GEGL_VER%%/exr-save.so -%%FFMPEG%%lib/gegl-%%GEGL_VER%%/ff-load.so -%%FFMPEG%%lib/gegl-%%GEGL_VER%%/ff-save.so -lib/gegl-%%GEGL_VER%%/gegl-common-gpl3.so -lib/gegl-%%GEGL_VER%%/gegl-common.so -lib/gegl-%%GEGL_VER%%/gegl-core.so -lib/gegl-%%GEGL_VER%%/gegl-generated.so -lib/gegl-%%GEGL_VER%%/grey2.json -%%JASPER%%lib/gegl-%%GEGL_VER%%/jp2-load.so -lib/gegl-%%GEGL_VER%%/jpg-load.so -lib/gegl-%%GEGL_VER%%/jpg-save.so -%%LCMS2%%lib/gegl-%%GEGL_VER%%/lcms-from-profile.so -%%CAIRO%%lib/gegl-%%GEGL_VER%%/npd.so -lib/gegl-%%GEGL_VER%%/npy-save.so -%%CAIRO%%lib/gegl-%%GEGL_VER%%/path.so -%%PIXBUF%%lib/gegl-%%GEGL_VER%%/pixbuf.so -lib/gegl-%%GEGL_VER%%/png-load.so -lib/gegl-%%GEGL_VER%%/png-save.so -lib/gegl-%%GEGL_VER%%/ppm-load.so -lib/gegl-%%GEGL_VER%%/ppm-save.so -%%RAW%%lib/gegl-%%GEGL_VER%%/raw-load.so -lib/gegl-%%GEGL_VER%%/rgbe-load.so -lib/gegl-%%GEGL_VER%%/rgbe-save.so -%%PIXBUF%%lib/gegl-%%GEGL_VER%%/save-pixbuf.so -%%SDL%%lib/gegl-%%GEGL_VER%%/sdl-display.so -lib/gegl-%%GEGL_VER%%/seamless-clone-compose.so -lib/gegl-%%GEGL_VER%%/seamless-clone.so -%%LIBRSVG2%%lib/gegl-%%GEGL_VER%%/svg-load.so -%%PANGOCAIRO%%lib/gegl-%%GEGL_VER%%/text.so -%%TIFF%%lib/gegl-%%GEGL_VER%%/tiff-load.so -%%TIFF%%lib/gegl-%%GEGL_VER%%/tiff-save.so -lib/gegl-%%GEGL_VER%%/transformops.so -%%V4L%%lib/gegl-%%GEGL_VER%%/v4l.so -%%CAIRO%%lib/gegl-%%GEGL_VER%%/vector-fill.so -%%CAIRO%%lib/gegl-%%GEGL_VER%%/vector-stroke.so -%%WEBP%%lib/gegl-%%GEGL_VER%%/webp-load.so -%%WEBP%%lib/gegl-%%GEGL_VER%%/webp-save.so -lib/girepository-1.0/Gegl-%%GEGL_VER%%.typelib -lib/libgegl-%%GEGL_VER%%.so -lib/libgegl-%%GEGL_VER%%.so.0 -lib/libgegl-%%GEGL_VER%%.so.0.%%GEGL_MINOR%%.0 -lib/libgegl-npd-%%GEGL_VER%%.so -lib/libgegl-sc-%%GEGL_VER%%.so -libdata/pkgconfig/gegl-%%GEGL_VER%%.pc -libdata/pkgconfig/gegl-sc-%%GEGL_VER%%.pc -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/2geglbuffer.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/data/surfer.png -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gegl-convert.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gegl-slicer.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/geglbuffer-add-image.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/geglbuffer-clock.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hello-world.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sdl-draw.c -share/gir-1.0/Gegl-%%GEGL_VER%%.gir -share/locale/bs/LC_MESSAGES/gegl-%%GEGL_VER%%.mo -share/locale/ca/LC_MESSAGES/gegl-%%GEGL_VER%%.mo -share/locale/da/LC_MESSAGES/gegl-%%GEGL_VER%%.mo -share/locale/de/LC_MESSAGES/gegl-%%GEGL_VER%%.mo -share/locale/el/LC_MESSAGES/gegl-%%GEGL_VER%%.mo -share/locale/en_GB/LC_MESSAGES/gegl-%%GEGL_VER%%.mo -share/locale/eo/LC_MESSAGES/gegl-%%GEGL_VER%%.mo -share/locale/es/LC_MESSAGES/gegl-%%GEGL_VER%%.mo -share/locale/eu/LC_MESSAGES/gegl-%%GEGL_VER%%.mo -share/locale/fr/LC_MESSAGES/gegl-%%GEGL_VER%%.mo -share/locale/gl/LC_MESSAGES/gegl-%%GEGL_VER%%.mo -share/locale/id/LC_MESSAGES/gegl-%%GEGL_VER%%.mo -share/locale/is/LC_MESSAGES/gegl-%%GEGL_VER%%.mo -share/locale/it/LC_MESSAGES/gegl-%%GEGL_VER%%.mo -share/locale/ko/LC_MESSAGES/gegl-%%GEGL_VER%%.mo -share/locale/lv/LC_MESSAGES/gegl-%%GEGL_VER%%.mo -share/locale/nb/LC_MESSAGES/gegl-%%GEGL_VER%%.mo -share/locale/oc/LC_MESSAGES/gegl-%%GEGL_VER%%.mo -share/locale/pl/LC_MESSAGES/gegl-%%GEGL_VER%%.mo -share/locale/pt_BR/LC_MESSAGES/gegl-%%GEGL_VER%%.mo -share/locale/pt/LC_MESSAGES/gegl-%%GEGL_VER%%.mo -share/locale/ru/LC_MESSAGES/gegl-%%GEGL_VER%%.mo -share/locale/sk/LC_MESSAGES/gegl-%%GEGL_VER%%.mo -share/locale/sl/LC_MESSAGES/gegl-%%GEGL_VER%%.mo -share/locale/sr/LC_MESSAGES/gegl-%%GEGL_VER%%.mo -share/locale/sv/LC_MESSAGES/gegl-%%GEGL_VER%%.mo -share/locale/tr/LC_MESSAGES/gegl-%%GEGL_VER%%.mo -share/locale/zh_CN/LC_MESSAGES/gegl-%%GEGL_VER%%.mo diff --git a/graphics/gimp-app/Makefile b/graphics/gimp-app/Makefile index eea44786663..23875b53354 100644 --- a/graphics/gimp-app/Makefile +++ b/graphics/gimp-app/Makefile @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME?= gimp-app -PORTVERSION= 2.8.22 -PORTREVISION= 1 +PORTVERSION= 2.10.6 PORTEPOCH?= 1 CATEGORIES?= graphics gnome MASTER_SITES= GIMP/gimp/v${PORTVERSION:R} @@ -15,24 +14,36 @@ COMMENT= GNU Image Manipulation Program LICENSE= GPLv3 LGPL3 LICENSE_COMB= multi -BUILD_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/iso-codes.pc:misc/iso-codes +BUILD_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/iso-codes.pc:misc/iso-codes \ + mypaint-brushes>0:graphics/mypaint-brushes LIB_DEPENDS= libpng.so:graphics/png \ libtiff.so:graphics/tiff \ + libwebp.so:graphics/webp \ + libIex-2_3.so:graphics/ilmbase \ + libasound.so:audio/alsa-lib \ liblcms2.so:graphics/lcms2 \ - libgegl-0.2.so:graphics/gegl \ + libgegl-0.4.so:graphics/gegl \ libbabl-0.1.so:x11/babl \ + libharfbuzz.so:print/harfbuzz \ libfontconfig.so:x11-fonts/fontconfig \ libdbus-1.so:devel/dbus \ + libgexiv2.so:graphics/gexiv2 \ + libjson-c.so:devel/json-c \ + libIlmImf.so:graphics/openexr \ + libjson-glib-1.0.so:devel/json-glib \ + libfribidi.so:converters/fribidi \ + libmypaint.so:graphics/libmypaint \ libfreetype.so:print/freetype2 -RUN_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/iso-codes.pc:misc/iso-codes +RUN_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/iso-codes.pc:misc/iso-codes \ + mypaint-brushes>0:graphics/mypaint-brushes USE_HARDENING= relro:off GNU_CONFIGURE= yes -USES+= cpe gettext gmake jpeg libtool \ +USES+= compiler:c++14-lang cpe gettext gmake gnome jpeg libtool \ localbase pathfix pkgconfig shebangfix tar:bzip2 USE_XORG= ice sm xcursor xext xfixes xmu xpm xt x11 -USE_GNOME+= cairo gtk20 intlhack +USE_GNOME+= cairo gtk20 intlhack librsvg2 USE_LDCONFIG= yes INSTALLS_ICONS= yes INSTALL_TARGET= install-strip @@ -45,11 +56,12 @@ CONFIGURE_ARGS?=--with-html-dir=${PREFIX}/share/doc/gimp \ --without-linux-input \ --with-print \ --enable-default-binary \ - --with-lcms=lcms2 \ --disable-gimp-console \ --disable-python \ + --without-appdata-test \ --with-desktop-dir=${PREFIX}/share \ --docdir=${PREFIX}/share/doc/gimp \ + --with-icc-directory=${LOCALBASE}/share/color/icc \ --enable-default-binary CONFIGURE_ENV= GIMP_THREAD_LIBS=-lpthread LIBS+= -lexecinfo @@ -58,17 +70,17 @@ CPE_VENDOR= gnu SHEBANG_FILES= plug-ins/pygimp/plug-ins/*.py -PLIST_SUB+= LIBVER=0.800.${PORTVERSION:E} +PLIST_SUB+= LIBVER=0.1000.${PORTVERSION:E} .if !defined(GIMP_SLAVE) USES+= desktop-file-utils -OPTIONS_DEFINE?= AA DBUS LIBEXIF GHOSTSCRIPT GVFS HELPBROWSER JASPER \ - LIBMNG LIBRSVG2 POPPLER SIMD WMF -OPTIONS_DEFAULT= AA DBUS LIBEXIF GVFS HELPBROWSER LIBMNG LIBRSVG2 \ - POPPLER WMF +OPTIONS_DEFINE?= AA LIBEXIF GHOSTSCRIPT GVFS HELPBROWSER \ + LIBHEIF LIBMNG OPENJPEG POPPLER SIMD WMF +OPTIONS_DEFAULT= AA LIBEXIF GVFS LIBMNG OPENJPEG POPPLER WMF OPTIONS_SUB= yes + AA_DESC= Ascii-art Plug-in HELPBROWSER_DESC= Internal help browser @@ -89,8 +101,9 @@ DEBUG_CONFIGURE_ON= --enable-debug AA_LIB_DEPENDS= libaa.so:graphics/aalib AA_CONFIGURE_OFF= --without-aa -DBUS_LIB_DEPENDS= libdbus-glib-1.so:devel/dbus-glib -DBUS_CONFIGURE_WITH= dbus +# libheif +LIBHEIF_LIB_DEPENDS= libheif.so:graphics/libheif +LIBHEIF_CONFIGURE_WITH= libheif GHOSTSCRIPT_USES= ghostscript GHOSTSCRIPT_CONFIGURE_WITH= gs @@ -103,17 +116,14 @@ HELPBROWSER_LIB_DEPENDS= libwebkitgtk-1.0.so:www/webkit-gtk2 \ libsoup-2.4.so:devel/libsoup HELPBROWSER_CONFIGURE_WITH= webkit -JASPER_LIB_DEPENDS= libjasper.so:graphics/jasper -JASPER_CONFIGURE_WITH= libjasper - LIBEXIF_LIB_DEPENDS= libexif.so:graphics/libexif LIBEXIF_CONFIGURE_OFF= --without-libexif LIBMNG_LIB_DEPENDS= libmng.so:graphics/libmng LIBMNG_CONFIGURE_OFF= --without-libmng -LIBRSVG2_USE= GNOME=librsvg2 -LIBRSVG2_CONFIGURE_WITH=librsvg +OPENJPEG_LIB_DEPENDS= libopenjp2.so:graphics/openjpeg +OPENJPEG_CONFIGURE_WITH=jpeg2000 POPPLER_LIB_DEPENDS= libpoppler-glib.so:graphics/poppler-glib POPPLER_CONFIGURE_OFF= --without-poppler @@ -132,8 +142,6 @@ post-patch: s|%%GIMP_THUMB_LIBS%%|${GIMP_THUMB_LIBS}|; \ s|%%GIMP_UI_LIBS%%|${GIMP_UI_LIBS}|' \ ${WRKSRC}/plug-ins/pygimp/Makefile.in - @${REINPLACE_CMD} -e 's/-u /-Wl,-u,/' \ - ${WRKSRC}/app/Makefile.in @${REINPLACE_CMD} -e 's|"libpng"|"libpng15"|' \ -e 's|x86_64|amd64|g' \ ${WRKSRC}/configure diff --git a/graphics/gimp-app/distinfo b/graphics/gimp-app/distinfo index d978576f31b..2c4e7767792 100644 --- a/graphics/gimp-app/distinfo +++ b/graphics/gimp-app/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1494885183 -SHA256 (gimp-2.8.22.tar.bz2) = 9187a35cc52b110d78124d7b27b68a68ade14a794c2721314bac6134d2a5638a -SIZE (gimp-2.8.22.tar.bz2) = 20873278 +TIMESTAMP = 1537606601 +SHA256 (gimp-2.10.6.tar.bz2) = 4ec8071f828e918384cf7bc7d1219210467c84655123f802bc55a8bf2415101f +SIZE (gimp-2.10.6.tar.bz2) = 31447973 diff --git a/graphics/gimp-app/files/patch-libgimp_gimp.c b/graphics/gimp-app/files/patch-libgimp_gimp.c index a1bb86bbfda..cd695da587e 100644 --- a/graphics/gimp-app/files/patch-libgimp_gimp.c +++ b/graphics/gimp-app/files/patch-libgimp_gimp.c @@ -1,6 +1,8 @@ ---- libgimp/gimp.c.orig Fri Sep 1 06:14:32 2006 -+++ libgimp/gimp.c Sun Dec 31 15:56:37 2006 -@@ -29,6 +29,7 @@ +Why is this patch needed? + +--- libgimp/gimp.c.orig 2018-03-25 14:35:18.000000000 +0200 ++++ libgimp/gimp.c 2018-04-14 18:55:00.422346000 +0200 +@@ -28,6 +28,7 @@ #include #include #include @@ -8,10 +10,10 @@ #ifdef HAVE_SYS_TIME_H #include -@@ -291,6 +292,9 @@ +@@ -425,6 +426,9 @@ gimp_main (const GimpPlugInInfo *info, gimp_env_init (TRUE); - progname = argv[0]; + progname = argv[ARG_PROGNAME]; + + /* Ignore floating point exceptions */ + fpsetmask(0); diff --git a/graphics/gimp-app/files/patch-plug-ins_pygimp_Makefile.in b/graphics/gimp-app/files/patch-plug-ins_pygimp_Makefile.in index 42cfaafab59..e55f6cce81c 100644 --- a/graphics/gimp-app/files/patch-plug-ins_pygimp_Makefile.in +++ b/graphics/gimp-app/files/patch-plug-ins_pygimp_Makefile.in @@ -1,6 +1,6 @@ ---- plug-ins/pygimp/Makefile.in.orig 2012-05-05 10:19:33.000000000 +0200 -+++ plug-ins/pygimp/Makefile.in 2012-05-05 10:22:53.000000000 +0200 -@@ -99,7 +99,7 @@ +--- plug-ins/pygimp/Makefile.in.orig 2018-07-15 19:04:00.269226000 +0200 ++++ plug-ins/pygimp/Makefile.in 2018-07-15 19:07:22.157457000 +0200 +@@ -146,7 +146,7 @@ am__installdirs = "$(DESTDIR)$(pygimpdir)" "$(DESTDIR) "$(DESTDIR)$(pygimpdir)" LTLIBRARIES = $(pygimp_LTLIBRARIES) am__DEPENDENCIES_1 = @@ -9,7 +9,7 @@ $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ $(am__DEPENDENCIES_1) am__gimpenums_la_OBJECTS = gimpenumsmodule.lo -@@ -110,16 +110,15 @@ +@@ -158,17 +158,16 @@ am__v_lt_1 = _gimpenums_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(_gimpenums_la_LDFLAGS) $(LDFLAGS) -o $@ @@ -25,11 +25,13 @@ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(_gimpui_la_LDFLAGS) $(LDFLAGS) -o $@ -gimp_la_DEPENDENCIES = $(libgimp) $(libgimpcolor) $(libgimpbase) \ +- $(libgimpui) $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ +gimp_la_DEPENDENCIES = \ - $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ - $(am__DEPENDENCIES_1) ++ $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ + $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) am_gimp_la_OBJECTS = gimpmodule.lo pygimp-item.lo pygimp-display.lo \ -@@ -129,14 +128,14 @@ + pygimp-drawable.lo pygimp-image.lo pygimp-parasite.lo \ +@@ -177,14 +176,14 @@ gimp_la_OBJECTS = $(am_gimp_la_OBJECTS) gimp_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(gimp_la_LDFLAGS) $(LDFLAGS) -o $@ @@ -46,18 +48,19 @@ $(am__DEPENDENCIES_1) am_gimpthumb_la_OBJECTS = gimpthumbmodule.lo gimpthumb.lo gimpthumb_la_OBJECTS = $(am_gimpthumb_la_OBJECTS) -@@ -588,9 +587,7 @@ +@@ -761,10 +760,7 @@ gimp_la_LDFLAGS = -module -avoid-version $(no_undefine -export-symbols-regex initgimp gimp_la_LIBADD = \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ +- $(libgimpui) \ + %%GIMP_LIBS%% \ $(GLIB_LIBS) \ + $(GEGL_LIBS) \ $(PYLINK_LIBS) \ - $(RT_LIBS) -@@ -602,9 +599,7 @@ +@@ -777,9 +773,7 @@ _gimpenums_la_LDFLAGS = -module -avoid-version $(no_un -export-symbols-regex init_gimpenums _gimpenums_la_LIBADD = \ @@ -68,7 +71,7 @@ $(GLIB_LIBS) \ $(PYLINK_LIBS) \ $(RT_LIBS) -@@ -619,7 +614,7 @@ +@@ -794,7 +788,7 @@ gimpcolor_la_LDFLAGS = -module -avoid-version $(no_und -export-symbols-regex initgimpcolor gimpcolor_la_LIBADD = \ @@ -77,7 +80,7 @@ $(GLIB_LIBS) \ $(PYLINK_LIBS) -@@ -631,13 +626,7 @@ +@@ -806,13 +800,7 @@ _gimpui_la_LDFLAGS = -module -avoid-version $(no_undef -export-symbols-regex init_gimpui _gimpui_la_LIBADD = \ @@ -92,7 +95,7 @@ $(GTK_LIBS) \ $(PYLINK_LIBS) \ $(RT_LIBS) \ -@@ -651,7 +640,7 @@ +@@ -826,7 +814,7 @@ gimpthumb_la_LDFLAGS = -module -avoid-version $(no_und -export-symbols-regex initgimpthumb gimpthumb_la_LIBADD = \ diff --git a/graphics/gimp-app/pkg-message b/graphics/gimp-app/pkg-message index ba168380714..b7f8044b0ba 100644 --- a/graphics/gimp-app/pkg-message +++ b/graphics/gimp-app/pkg-message @@ -1,4 +1,4 @@ -On FreeBSD 10.3 gimp can cause the following error. +On FreeBSD 10.4 gimp can cause the following error. (script-fu:3985): LibGimp-ERROR **: shmat() failed: Invalid argument Could not attach to gimp shared memory segment diff --git a/graphics/gimp-app/pkg-plist b/graphics/gimp-app/pkg-plist index d631b8ff892..a82c24fb930 100644 --- a/graphics/gimp-app/pkg-plist +++ b/graphics/gimp-app/pkg-plist @@ -1,5 +1,6 @@ bin/gimp -bin/gimp-2.8 +bin/gimp-2.10 +bin/gimp-test-clipboard-2.0 bin/gimptool-2.0 etc/gimp/2.2/controllerrc etc/gimp/2.2/gimprc @@ -23,15 +24,17 @@ include/gimp-2.0/libgimp/gimpbuffer_pdb.h include/gimp-2.0/libgimp/gimpchannel.h include/gimp-2.0/libgimp/gimpchannel_pdb.h include/gimp-2.0/libgimp/gimpcolor_pdb.h -include/gimp-2.0/libgimp/gimpcompat.h include/gimp-2.0/libgimp/gimpcontext_pdb.h -include/gimp-2.0/libgimp/gimpconvert_pdb.h +include/gimp-2.0/libgimp/gimpdebug_pdb.h include/gimp-2.0/libgimp/gimpdisplay_pdb.h include/gimp-2.0/libgimp/gimpdrawable.h include/gimp-2.0/libgimp/gimpdrawable_pdb.h +include/gimp-2.0/libgimp/gimpdrawablecolor_pdb.h +include/gimp-2.0/libgimp/gimpdrawableedit_pdb.h include/gimp-2.0/libgimp/gimpdrawablepreview.h include/gimp-2.0/libgimp/gimpdrawabletransform_pdb.h include/gimp-2.0/libgimp/gimpdynamics_pdb.h +include/gimp-2.0/libgimp/gimpedit.h include/gimp-2.0/libgimp/gimpedit_pdb.h include/gimp-2.0/libgimp/gimpenums.h include/gimp-2.0/libgimp/gimpexport.h @@ -51,13 +54,20 @@ include/gimp-2.0/libgimp/gimpgradients_pdb.h include/gimp-2.0/libgimp/gimpgradientselect.h include/gimp-2.0/libgimp/gimpgradientselect_pdb.h include/gimp-2.0/libgimp/gimpgradientselectbutton.h -include/gimp-2.0/libgimp/gimpgrid_pdb.h -include/gimp-2.0/libgimp/gimpguides_pdb.h include/gimp-2.0/libgimp/gimphelp_pdb.h include/gimp-2.0/libgimp/gimpimage.h include/gimp-2.0/libgimp/gimpimage_pdb.h +include/gimp-2.0/libgimp/gimpimagecolorprofile.h +include/gimp-2.0/libgimp/gimpimagecolorprofile_pdb.h include/gimp-2.0/libgimp/gimpimagecombobox.h +include/gimp-2.0/libgimp/gimpimageconvert_pdb.h +include/gimp-2.0/libgimp/gimpimagegrid_pdb.h +include/gimp-2.0/libgimp/gimpimageguides_pdb.h +include/gimp-2.0/libgimp/gimpimagemetadata.h +include/gimp-2.0/libgimp/gimpimagesamplepoints_pdb.h include/gimp-2.0/libgimp/gimpimageselect_pdb.h +include/gimp-2.0/libgimp/gimpimagetransform_pdb.h +include/gimp-2.0/libgimp/gimpimageundo_pdb.h include/gimp-2.0/libgimp/gimpitem_pdb.h include/gimp-2.0/libgimp/gimpitemcombobox.h include/gimp-2.0/libgimp/gimpitemtransform_pdb.h @@ -106,7 +116,6 @@ include/gimp-2.0/libgimp/gimptransformtools_pdb.h include/gimp-2.0/libgimp/gimptypes.h include/gimp-2.0/libgimp/gimpui.h include/gimp-2.0/libgimp/gimpuitypes.h -include/gimp-2.0/libgimp/gimpundo_pdb.h include/gimp-2.0/libgimp/gimpunit_pdb.h include/gimp-2.0/libgimp/gimpvectors.h include/gimp-2.0/libgimp/gimpvectors_pdb.h @@ -120,6 +129,7 @@ include/gimp-2.0/libgimpbase/gimpdatafiles.h include/gimp-2.0/libgimpbase/gimpenv.h include/gimp-2.0/libgimpbase/gimplimits.h include/gimp-2.0/libgimpbase/gimpmemsize.h +include/gimp-2.0/libgimpbase/gimpmetadata.h include/gimp-2.0/libgimpbase/gimpparam.h include/gimp-2.0/libgimpbase/gimpparasite.h include/gimp-2.0/libgimpbase/gimpparasiteio.h @@ -127,19 +137,22 @@ include/gimp-2.0/libgimpbase/gimprectangle.h include/gimp-2.0/libgimpbase/gimpsignal.h include/gimp-2.0/libgimpbase/gimpunit.h include/gimp-2.0/libgimpbase/gimputils.h +include/gimp-2.0/libgimpbase/gimpvaluearray.h include/gimp-2.0/libgimpbase/gimpversion.h include/gimp-2.0/libgimpcolor/gimpadaptivesupersample.h include/gimp-2.0/libgimpcolor/gimpbilinear.h -include/gimp-2.0/libgimpcolor/gimpcairocolor.h +include/gimp-2.0/libgimpcolor/gimpcairo.h include/gimp-2.0/libgimpcolor/gimpcmyk.h include/gimp-2.0/libgimpcolor/gimpcolor.h include/gimp-2.0/libgimpcolor/gimpcolormanaged.h +include/gimp-2.0/libgimpcolor/gimpcolorprofile.h include/gimp-2.0/libgimpcolor/gimpcolorspace.h +include/gimp-2.0/libgimpcolor/gimpcolortransform.h include/gimp-2.0/libgimpcolor/gimpcolortypes.h include/gimp-2.0/libgimpcolor/gimphsl.h include/gimp-2.0/libgimpcolor/gimphsv.h +include/gimp-2.0/libgimpcolor/gimppixbuf.h include/gimp-2.0/libgimpcolor/gimprgb.h -include/gimp-2.0/libgimpconfig/gimpcolorconfig-enums.h include/gimp-2.0/libgimpconfig/gimpcolorconfig.h include/gimp-2.0/libgimpconfig/gimpconfig-deserialize.h include/gimp-2.0/libgimpconfig/gimpconfig-error.h @@ -149,6 +162,7 @@ include/gimp-2.0/libgimpconfig/gimpconfig-path.h include/gimp-2.0/libgimpconfig/gimpconfig-serialize.h include/gimp-2.0/libgimpconfig/gimpconfig-utils.h include/gimp-2.0/libgimpconfig/gimpconfig.h +include/gimp-2.0/libgimpconfig/gimpconfigenums.h include/gimp-2.0/libgimpconfig/gimpconfigtypes.h include/gimp-2.0/libgimpconfig/gimpconfigwriter.h include/gimp-2.0/libgimpconfig/gimpscanner.h @@ -168,6 +182,7 @@ include/gimp-2.0/libgimpthumb/gimpthumb.h include/gimp-2.0/libgimpthumb/gimpthumbnail.h include/gimp-2.0/libgimpwidgets/gimp3migration.h include/gimp-2.0/libgimpwidgets/gimpbrowser.h +include/gimp-2.0/libgimpwidgets/gimpbusybox.h include/gimp-2.0/libgimpwidgets/gimpbutton.h include/gimp-2.0/libgimpwidgets/gimpcairo-utils.h include/gimp-2.0/libgimpwidgets/gimpcellrenderercolor.h @@ -179,8 +194,10 @@ include/gimp-2.0/libgimpwidgets/gimpcolordisplay.h include/gimp-2.0/libgimpwidgets/gimpcolordisplaystack.h include/gimp-2.0/libgimpwidgets/gimpcolorhexentry.h include/gimp-2.0/libgimpwidgets/gimpcolornotebook.h +include/gimp-2.0/libgimpwidgets/gimpcolorprofilechooserdialog.h include/gimp-2.0/libgimpwidgets/gimpcolorprofilecombobox.h include/gimp-2.0/libgimpwidgets/gimpcolorprofilestore.h +include/gimp-2.0/libgimpwidgets/gimpcolorprofileview.h include/gimp-2.0/libgimpwidgets/gimpcolorscale.h include/gimp-2.0/libgimpwidgets/gimpcolorscales.h include/gimp-2.0/libgimpwidgets/gimpcolorselect.h @@ -196,6 +213,7 @@ include/gimp-2.0/libgimpwidgets/gimpfileentry.h include/gimp-2.0/libgimpwidgets/gimpframe.h include/gimp-2.0/libgimpwidgets/gimphelpui.h include/gimp-2.0/libgimpwidgets/gimphintbox.h +include/gimp-2.0/libgimpwidgets/gimpicons.h include/gimp-2.0/libgimpwidgets/gimpintcombobox.h include/gimp-2.0/libgimpwidgets/gimpintstore.h include/gimp-2.0/libgimpwidgets/gimpmemsizeentry.h @@ -214,7 +232,6 @@ include/gimp-2.0/libgimpwidgets/gimpruler.h include/gimp-2.0/libgimpwidgets/gimpscaleentry.h include/gimp-2.0/libgimpwidgets/gimpscrolledpreview.h include/gimp-2.0/libgimpwidgets/gimpsizeentry.h -include/gimp-2.0/libgimpwidgets/gimpstock.h include/gimp-2.0/libgimpwidgets/gimpstringcombobox.h include/gimp-2.0/libgimpwidgets/gimpunitcombobox.h include/gimp-2.0/libgimpwidgets/gimpunitmenu.h @@ -223,6 +240,7 @@ include/gimp-2.0/libgimpwidgets/gimpwidgets-error.h include/gimp-2.0/libgimpwidgets/gimpwidgets.h include/gimp-2.0/libgimpwidgets/gimpwidgetsenums.h include/gimp-2.0/libgimpwidgets/gimpwidgetstypes.h +include/gimp-2.0/libgimpwidgets/gimpwidgetsutils.h include/gimp-2.0/libgimpwidgets/gimpzoommodel.h lib/libgimp-2.0.so lib/libgimp-2.0.so.0 @@ -254,199 +272,146 @@ lib/libgimpwidgets-2.0.so.%%LIBVER%% libdata/pkgconfig/gimp-2.0.pc libdata/pkgconfig/gimpthumb-2.0.pc libdata/pkgconfig/gimpui-2.0.pc +libexec/gimp-debug-tool-2.0 libexec/gimp/2.2/environ/default.env libexec/gimp/2.2/interpreters/default.interp libexec/gimp/2.2/modules/libcolor-selector-cmyk.so libexec/gimp/2.2/modules/libcolor-selector-water.so libexec/gimp/2.2/modules/libcolor-selector-wheel.so libexec/gimp/2.2/modules/libcontroller-midi.so +libexec/gimp/2.2/modules/libdisplay-filter-clip-warning.so libexec/gimp/2.2/modules/libdisplay-filter-color-blind.so libexec/gimp/2.2/modules/libdisplay-filter-gamma.so libexec/gimp/2.2/modules/libdisplay-filter-high-contrast.so -libexec/gimp/2.2/modules/libdisplay-filter-lcms.so -libexec/gimp/2.2/modules/libdisplay-filter-proof.so -libexec/gimp/2.2/plug-ins/alien-map -libexec/gimp/2.2/plug-ins/align-layers -libexec/gimp/2.2/plug-ins/animation-optimize -libexec/gimp/2.2/plug-ins/animation-play -libexec/gimp/2.2/plug-ins/antialias -libexec/gimp/2.2/plug-ins/apply-canvas -libexec/gimp/2.2/plug-ins/blinds -libexec/gimp/2.2/plug-ins/blur -libexec/gimp/2.2/plug-ins/blur-gauss -libexec/gimp/2.2/plug-ins/blur-gauss-selective -libexec/gimp/2.2/plug-ins/blur-motion -libexec/gimp/2.2/plug-ins/border-average -libexec/gimp/2.2/plug-ins/bump-map -libexec/gimp/2.2/plug-ins/cartoon -libexec/gimp/2.2/plug-ins/channel-mixer -libexec/gimp/2.2/plug-ins/checkerboard -libexec/gimp/2.2/plug-ins/cml-explorer -libexec/gimp/2.2/plug-ins/color-cube-analyze -libexec/gimp/2.2/plug-ins/color-enhance -libexec/gimp/2.2/plug-ins/color-exchange -libexec/gimp/2.2/plug-ins/color-rotate -libexec/gimp/2.2/plug-ins/color-to-alpha -libexec/gimp/2.2/plug-ins/colorify -libexec/gimp/2.2/plug-ins/colormap-remap -libexec/gimp/2.2/plug-ins/compose -libexec/gimp/2.2/plug-ins/contrast-normalize -libexec/gimp/2.2/plug-ins/contrast-retinex -libexec/gimp/2.2/plug-ins/contrast-stretch -libexec/gimp/2.2/plug-ins/contrast-stretch-hsv -libexec/gimp/2.2/plug-ins/convolution-matrix -libexec/gimp/2.2/plug-ins/crop-auto -libexec/gimp/2.2/plug-ins/crop-zealous -libexec/gimp/2.2/plug-ins/cubism -libexec/gimp/2.2/plug-ins/curve-bend -libexec/gimp/2.2/plug-ins/decompose -libexec/gimp/2.2/plug-ins/deinterlace -libexec/gimp/2.2/plug-ins/depth-merge -libexec/gimp/2.2/plug-ins/despeckle -libexec/gimp/2.2/plug-ins/destripe -libexec/gimp/2.2/plug-ins/diffraction -libexec/gimp/2.2/plug-ins/displace -libexec/gimp/2.2/plug-ins/edge -libexec/gimp/2.2/plug-ins/edge-dog -libexec/gimp/2.2/plug-ins/edge-laplace -libexec/gimp/2.2/plug-ins/edge-neon -libexec/gimp/2.2/plug-ins/edge-sobel -libexec/gimp/2.2/plug-ins/emboss -libexec/gimp/2.2/plug-ins/engrave -%%AA%%libexec/gimp/2.2/plug-ins/file-aa -libexec/gimp/2.2/plug-ins/file-bmp -libexec/gimp/2.2/plug-ins/file-cel -libexec/gimp/2.2/plug-ins/file-compressor -libexec/gimp/2.2/plug-ins/file-csource -libexec/gimp/2.2/plug-ins/file-desktop-link -libexec/gimp/2.2/plug-ins/file-dicom -libexec/gimp/2.2/plug-ins/file-faxg3 -libexec/gimp/2.2/plug-ins/file-fits -libexec/gimp/2.2/plug-ins/file-fli -libexec/gimp/2.2/plug-ins/file-gbr -libexec/gimp/2.2/plug-ins/file-gif-load -libexec/gimp/2.2/plug-ins/file-gif-save -libexec/gimp/2.2/plug-ins/file-gih -libexec/gimp/2.2/plug-ins/file-glob -libexec/gimp/2.2/plug-ins/file-header -libexec/gimp/2.2/plug-ins/file-html-table -libexec/gimp/2.2/plug-ins/file-ico -%%JASPER%%libexec/gimp/2.2/plug-ins/file-jp2-load -libexec/gimp/2.2/plug-ins/file-jpeg -%%LIBMNG%%libexec/gimp/2.2/plug-ins/file-mng -libexec/gimp/2.2/plug-ins/file-pat -libexec/gimp/2.2/plug-ins/file-pcx -%%POPPLER%%libexec/gimp/2.2/plug-ins/file-pdf-load -libexec/gimp/2.2/plug-ins/file-pdf-save -libexec/gimp/2.2/plug-ins/file-pix -libexec/gimp/2.2/plug-ins/file-png -libexec/gimp/2.2/plug-ins/file-pnm -%%GHOSTSCRIPT%%libexec/gimp/2.2/plug-ins/file-ps -libexec/gimp/2.2/plug-ins/file-psd-load -libexec/gimp/2.2/plug-ins/file-psd-save -libexec/gimp/2.2/plug-ins/file-psp -libexec/gimp/2.2/plug-ins/file-raw -libexec/gimp/2.2/plug-ins/file-sgi -libexec/gimp/2.2/plug-ins/file-sunras -%%LIBRSVG2%%libexec/gimp/2.2/plug-ins/file-svg -libexec/gimp/2.2/plug-ins/file-tga -libexec/gimp/2.2/plug-ins/file-tiff-load -libexec/gimp/2.2/plug-ins/file-tiff-save -libexec/gimp/2.2/plug-ins/file-uri -%%WMF%%libexec/gimp/2.2/plug-ins/file-wmf -libexec/gimp/2.2/plug-ins/file-xbm -libexec/gimp/2.2/plug-ins/file-xjt -libexec/gimp/2.2/plug-ins/file-xmc -libexec/gimp/2.2/plug-ins/file-xpm -libexec/gimp/2.2/plug-ins/file-xwd -libexec/gimp/2.2/plug-ins/film -libexec/gimp/2.2/plug-ins/filter-pack -libexec/gimp/2.2/plug-ins/flame -libexec/gimp/2.2/plug-ins/fractal-explorer -libexec/gimp/2.2/plug-ins/fractal-trace -libexec/gimp/2.2/plug-ins/gfig -libexec/gimp/2.2/plug-ins/gimpressionist -libexec/gimp/2.2/plug-ins/gradient-flare -libexec/gimp/2.2/plug-ins/gradient-map -libexec/gimp/2.2/plug-ins/grid -libexec/gimp/2.2/plug-ins/guillotine -libexec/gimp/2.2/plug-ins/help +libexec/gimp/2.2/plug-ins/align-layers/align-layers +libexec/gimp/2.2/plug-ins/animation-optimize/animation-optimize +libexec/gimp/2.2/plug-ins/animation-play/animation-play +libexec/gimp/2.2/plug-ins/blinds/blinds +libexec/gimp/2.2/plug-ins/blur/blur +libexec/gimp/2.2/plug-ins/border-average/border-average +libexec/gimp/2.2/plug-ins/busy-dialog/busy-dialog +libexec/gimp/2.2/plug-ins/cartoon/cartoon +libexec/gimp/2.2/plug-ins/checkerboard/checkerboard +libexec/gimp/2.2/plug-ins/cml-explorer/cml-explorer +libexec/gimp/2.2/plug-ins/color-cube-analyze/color-cube-analyze +libexec/gimp/2.2/plug-ins/color-enhance/color-enhance +libexec/gimp/2.2/plug-ins/colorify/colorify +libexec/gimp/2.2/plug-ins/colormap-remap/colormap-remap +libexec/gimp/2.2/plug-ins/compose/compose +libexec/gimp/2.2/plug-ins/contrast-normalize/contrast-normalize +libexec/gimp/2.2/plug-ins/contrast-retinex/contrast-retinex +libexec/gimp/2.2/plug-ins/crop-zealous/crop-zealous +libexec/gimp/2.2/plug-ins/curve-bend/curve-bend +libexec/gimp/2.2/plug-ins/decompose/decompose +libexec/gimp/2.2/plug-ins/depth-merge/depth-merge +libexec/gimp/2.2/plug-ins/despeckle/despeckle +libexec/gimp/2.2/plug-ins/destripe/destripe +libexec/gimp/2.2/plug-ins/edge-dog/edge-dog +libexec/gimp/2.2/plug-ins/edge-neon/edge-neon +libexec/gimp/2.2/plug-ins/emboss/emboss +%%AA%%libexec/gimp/2.2/plug-ins/file-aa/file-aa +libexec/gimp/2.2/plug-ins/file-bmp/file-bmp +libexec/gimp/2.2/plug-ins/file-cel/file-cel +libexec/gimp/2.2/plug-ins/file-compressor/file-compressor +libexec/gimp/2.2/plug-ins/file-csource/file-csource +libexec/gimp/2.2/plug-ins/file-darktable/file-darktable +libexec/gimp/2.2/plug-ins/file-desktop-link/file-desktop-link +libexec/gimp/2.2/plug-ins/file-dicom/file-dicom +libexec/gimp/2.2/plug-ins/file-exr/file-exr +libexec/gimp/2.2/plug-ins/file-faxg3/file-faxg3 +libexec/gimp/2.2/plug-ins/file-fits/file-fits +libexec/gimp/2.2/plug-ins/file-fli/file-fli +libexec/gimp/2.2/plug-ins/file-gbr/file-gbr +libexec/gimp/2.2/plug-ins/file-gegl/file-gegl +libexec/gimp/2.2/plug-ins/file-gif-load/file-gif-load +libexec/gimp/2.2/plug-ins/file-gif-save/file-gif-save +libexec/gimp/2.2/plug-ins/file-gih/file-gih +libexec/gimp/2.2/plug-ins/file-glob/file-glob +libexec/gimp/2.2/plug-ins/file-header/file-header +%%LIBHEIF%%libexec/gimp/2.2/plug-ins/file-heif/file-heif +libexec/gimp/2.2/plug-ins/file-html-table/file-html-table +libexec/gimp/2.2/plug-ins/file-ico/file-ico +%%OPENJPEG%%libexec/gimp/2.2/plug-ins/file-jp2-load/file-jp2-load +libexec/gimp/2.2/plug-ins/file-jpeg/file-jpeg +%%LIBMNG%%libexec/gimp/2.2/plug-ins/file-mng/file-mng +libexec/gimp/2.2/plug-ins/file-pat/file-pat +libexec/gimp/2.2/plug-ins/file-pcx/file-pcx +%%POPPLER%%libexec/gimp/2.2/plug-ins/file-pdf-load/file-pdf-load +libexec/gimp/2.2/plug-ins/file-pdf-save/file-pdf-save +libexec/gimp/2.2/plug-ins/file-pix/file-pix +libexec/gimp/2.2/plug-ins/file-png/file-png +libexec/gimp/2.2/plug-ins/file-pnm/file-pnm +libexec/gimp/2.2/plug-ins/file-psd/file-psd +libexec/gimp/2.2/plug-ins/file-psp/file-psp +libexec/gimp/2.2/plug-ins/file-raw-data/file-raw-data +libexec/gimp/2.2/plug-ins/file-raw-placeholder/file-raw-placeholder +libexec/gimp/2.2/plug-ins/file-rawtherapee/file-rawtherapee +libexec/gimp/2.2/plug-ins/file-sgi/file-sgi +libexec/gimp/2.2/plug-ins/file-sunras/file-sunras +libexec/gimp/2.2/plug-ins/file-svg/file-svg +libexec/gimp/2.2/plug-ins/file-tga/file-tga +libexec/gimp/2.2/plug-ins/file-tiff/file-tiff +libexec/gimp/2.2/plug-ins/file-webp/file-webp +%%WMF%%libexec/gimp/2.2/plug-ins/file-wmf/file-wmf +libexec/gimp/2.2/plug-ins/file-xbm/file-xbm +libexec/gimp/2.2/plug-ins/file-xmc/file-xmc +libexec/gimp/2.2/plug-ins/file-xpm/file-xpm +libexec/gimp/2.2/plug-ins/file-xwd/file-xwd +libexec/gimp/2.2/plug-ins/film/film +libexec/gimp/2.2/plug-ins/filter-pack/filter-pack +libexec/gimp/2.2/plug-ins/flame/flame +libexec/gimp/2.2/plug-ins/fractal-explorer/fractal-explorer +libexec/gimp/2.2/plug-ins/fractal-trace/fractal-trace +libexec/gimp/2.2/plug-ins/gfig/gfig +libexec/gimp/2.2/plug-ins/gimpressionist/gimpressionist +libexec/gimp/2.2/plug-ins/goat-exercise/goat-exercise +libexec/gimp/2.2/plug-ins/gradient-flare/gradient-flare +libexec/gimp/2.2/plug-ins/gradient-map/gradient-map +libexec/gimp/2.2/plug-ins/grid/grid +libexec/gimp/2.2/plug-ins/guillotine/guillotine +libexec/gimp/2.2/plug-ins/help/help %%HELPBROWSER%%libexec/gimp/2.2/plug-ins/help-browser -libexec/gimp/2.2/plug-ins/hot -libexec/gimp/2.2/plug-ins/ifs-compose -libexec/gimp/2.2/plug-ins/illusion -libexec/gimp/2.2/plug-ins/imagemap -libexec/gimp/2.2/plug-ins/iwarp -libexec/gimp/2.2/plug-ins/jigsaw -libexec/gimp/2.2/plug-ins/lcms -libexec/gimp/2.2/plug-ins/lens-apply -libexec/gimp/2.2/plug-ins/lens-distortion -libexec/gimp/2.2/plug-ins/lens-flare -libexec/gimp/2.2/plug-ins/lighting -libexec/gimp/2.2/plug-ins/mail -libexec/gimp/2.2/plug-ins/map-object -libexec/gimp/2.2/plug-ins/max-rgb -libexec/gimp/2.2/plug-ins/maze -%%LIBEXIF%%libexec/gimp/2.2/plug-ins/metadata -libexec/gimp/2.2/plug-ins/mosaic -libexec/gimp/2.2/plug-ins/newsprint -libexec/gimp/2.2/plug-ins/nl-filter -libexec/gimp/2.2/plug-ins/noise-hsv -libexec/gimp/2.2/plug-ins/noise-randomize -libexec/gimp/2.2/plug-ins/noise-rgb -libexec/gimp/2.2/plug-ins/noise-solid -libexec/gimp/2.2/plug-ins/noise-spread -libexec/gimp/2.2/plug-ins/nova -libexec/gimp/2.2/plug-ins/oilify -libexec/gimp/2.2/plug-ins/pagecurl -libexec/gimp/2.2/plug-ins/photocopy -libexec/gimp/2.2/plug-ins/pixelize -libexec/gimp/2.2/plug-ins/plasma -libexec/gimp/2.2/plug-ins/plugin-browser -libexec/gimp/2.2/plug-ins/polar-coords -libexec/gimp/2.2/plug-ins/print -libexec/gimp/2.2/plug-ins/procedure-browser -libexec/gimp/2.2/plug-ins/qbist -libexec/gimp/2.2/plug-ins/red-eye-removal -libexec/gimp/2.2/plug-ins/ripple -libexec/gimp/2.2/plug-ins/rotate -libexec/gimp/2.2/plug-ins/sample-colorize -libexec/gimp/2.2/plug-ins/screenshot -libexec/gimp/2.2/plug-ins/script-fu -libexec/gimp/2.2/plug-ins/selection-to-path -libexec/gimp/2.2/plug-ins/semi-flatten -libexec/gimp/2.2/plug-ins/sharpen -libexec/gimp/2.2/plug-ins/shift -libexec/gimp/2.2/plug-ins/sinus -libexec/gimp/2.2/plug-ins/smooth-palette -libexec/gimp/2.2/plug-ins/softglow -libexec/gimp/2.2/plug-ins/sparkle -libexec/gimp/2.2/plug-ins/sphere-designer -libexec/gimp/2.2/plug-ins/threshold-alpha -libexec/gimp/2.2/plug-ins/tile -libexec/gimp/2.2/plug-ins/tile-glass -libexec/gimp/2.2/plug-ins/tile-paper -libexec/gimp/2.2/plug-ins/tile-seamless -libexec/gimp/2.2/plug-ins/tile-small -libexec/gimp/2.2/plug-ins/unit-editor -libexec/gimp/2.2/plug-ins/unsharp-mask -libexec/gimp/2.2/plug-ins/value-invert -libexec/gimp/2.2/plug-ins/value-propagate -libexec/gimp/2.2/plug-ins/van-gogh-lic -libexec/gimp/2.2/plug-ins/video -libexec/gimp/2.2/plug-ins/warp -libexec/gimp/2.2/plug-ins/waves -libexec/gimp/2.2/plug-ins/web-browser -%%HELPBROWSER%%libexec/gimp/2.2/plug-ins/web-page -libexec/gimp/2.2/plug-ins/whirl-pinch -libexec/gimp/2.2/plug-ins/wind -man/man1/gimp-2.8.1.gz +libexec/gimp/2.2/plug-ins/hot/hot +libexec/gimp/2.2/plug-ins/ifs-compose/ifs-compose +libexec/gimp/2.2/plug-ins/imagemap/imagemap +libexec/gimp/2.2/plug-ins/jigsaw/jigsaw +libexec/gimp/2.2/plug-ins/lighting/lighting +libexec/gimp/2.2/plug-ins/mail/mail +libexec/gimp/2.2/plug-ins/map-object/map-object +libexec/gimp/2.2/plug-ins/max-rgb/max-rgb +libexec/gimp/2.2/plug-ins/metadata-editor/metadata-editor +libexec/gimp/2.2/plug-ins/metadata-viewer/metadata-viewer +libexec/gimp/2.2/plug-ins/newsprint/newsprint +libexec/gimp/2.2/plug-ins/nl-filter/nl-filter +libexec/gimp/2.2/plug-ins/oilify/oilify +libexec/gimp/2.2/plug-ins/pagecurl/pagecurl +libexec/gimp/2.2/plug-ins/photocopy/photocopy +libexec/gimp/2.2/plug-ins/plugin-browser/plugin-browser +libexec/gimp/2.2/plug-ins/print/print +libexec/gimp/2.2/plug-ins/procedure-browser/procedure-browser +libexec/gimp/2.2/plug-ins/qbist/qbist +libexec/gimp/2.2/plug-ins/sample-colorize/sample-colorize +libexec/gimp/2.2/plug-ins/screenshot/screenshot +libexec/gimp/2.2/plug-ins/script-fu/script-fu +libexec/gimp/2.2/plug-ins/selection-to-path/selection-to-path +libexec/gimp/2.2/plug-ins/sharpen/sharpen +libexec/gimp/2.2/plug-ins/smooth-palette/smooth-palette +libexec/gimp/2.2/plug-ins/softglow/softglow +libexec/gimp/2.2/plug-ins/sparkle/sparkle +libexec/gimp/2.2/plug-ins/sphere-designer/sphere-designer +libexec/gimp/2.2/plug-ins/tile-small/tile-small +libexec/gimp/2.2/plug-ins/tile/tile +libexec/gimp/2.2/plug-ins/unit-editor/unit-editor +libexec/gimp/2.2/plug-ins/van-gogh-lic/van-gogh-lic +libexec/gimp/2.2/plug-ins/warp/warp +libexec/gimp/2.2/plug-ins/wavelet-decompose/wavelet-decompose +libexec/gimp/2.2/plug-ins/web-browser/web-browser +man/man1/gimp-2.10.1.gz man/man1/gimp.1.gz man/man1/gimptool-2.0.1.gz -man/man5/gimprc-2.8.5.gz +man/man5/gimprc-2.10.5.gz man/man5/gimprc.5.gz share/aclocal/gimp-2.0.m4 -share/appdata/gimp.appdata.xml share/applications/gimp.desktop share/doc/gimp/libgimp/GimpAspectPreview.html share/doc/gimp/libgimp/GimpBrushSelectButton.html @@ -460,6 +425,16 @@ share/doc/gimp/libgimp/GimpProcBrowserDialog.html share/doc/gimp/libgimp/GimpProgressBar.html share/doc/gimp/libgimp/GimpSelectButton.html share/doc/gimp/libgimp/GimpZoomPreview.html +share/doc/gimp/libgimp/api-index-2-10-2.html +share/doc/gimp/libgimp/api-index-2-10-4.html +share/doc/gimp/libgimp/api-index-2-10-6.html +share/doc/gimp/libgimp/api-index-2-10.html +share/doc/gimp/libgimp/api-index-2-2.html +share/doc/gimp/libgimp/api-index-2-4.html +share/doc/gimp/libgimp/api-index-2-6.html +share/doc/gimp/libgimp/api-index-2-8.html +share/doc/gimp/libgimp/api-index-deprecated.html +share/doc/gimp/libgimp/api-index-full.html share/doc/gimp/libgimp/home.png share/doc/gimp/libgimp/index.html share/doc/gimp/libgimp/left-insensitive.png @@ -477,9 +452,11 @@ share/doc/gimp/libgimp/libgimp-gimpbuffer.html share/doc/gimp/libgimp/libgimp-gimpchannel.html share/doc/gimp/libgimp/libgimp-gimpcolor.html share/doc/gimp/libgimp/libgimp-gimpcontext.html -share/doc/gimp/libgimp/libgimp-gimpconvert.html +share/doc/gimp/libgimp/libgimp-gimpdebug.html share/doc/gimp/libgimp/libgimp-gimpdisplay.html share/doc/gimp/libgimp/libgimp-gimpdrawable.html +share/doc/gimp/libgimp/libgimp-gimpdrawablecolor.html +share/doc/gimp/libgimp/libgimp-gimpdrawableedit.html share/doc/gimp/libgimp/libgimp-gimpdrawabletransform.html share/doc/gimp/libgimp/libgimp-gimpdynamics.html share/doc/gimp/libgimp/libgimp-gimpedit.html @@ -495,16 +472,22 @@ share/doc/gimp/libgimp/libgimp-gimpgradient.html share/doc/gimp/libgimp/libgimp-gimpgradientmenu.html share/doc/gimp/libgimp/libgimp-gimpgradients.html share/doc/gimp/libgimp/libgimp-gimpgradientselect.html -share/doc/gimp/libgimp/libgimp-gimpgrid.html -share/doc/gimp/libgimp/libgimp-gimpguides.html share/doc/gimp/libgimp/libgimp-gimphelp.html share/doc/gimp/libgimp/libgimp-gimpimage.html +share/doc/gimp/libgimp/libgimp-gimpimagecolorprofile.html +share/doc/gimp/libgimp/libgimp-gimpimageconvert.html +share/doc/gimp/libgimp/libgimp-gimpimagegrid.html +share/doc/gimp/libgimp/libgimp-gimpimageguides.html +share/doc/gimp/libgimp/libgimp-gimpimagesamplepoints.html share/doc/gimp/libgimp/libgimp-gimpimageselect.html +share/doc/gimp/libgimp/libgimp-gimpimagetransform.html +share/doc/gimp/libgimp/libgimp-gimpimageundo.html share/doc/gimp/libgimp/libgimp-gimpitem.html share/doc/gimp/libgimp/libgimp-gimpitemtransform.html share/doc/gimp/libgimp/libgimp-gimplayer.html share/doc/gimp/libgimp/libgimp-gimpmenu.html share/doc/gimp/libgimp/libgimp-gimpmessage.html +share/doc/gimp/libgimp/libgimp-gimpmetadata.html share/doc/gimp/libgimp/libgimp-gimppainttools.html share/doc/gimp/libgimp/libgimp-gimppalette.html share/doc/gimp/libgimp/libgimp-gimppalettemenu.html @@ -529,15 +512,8 @@ share/doc/gimp/libgimp/libgimp-gimptexttool.html share/doc/gimp/libgimp/libgimp-gimptile.html share/doc/gimp/libgimp/libgimp-gimptransformtools.html share/doc/gimp/libgimp/libgimp-gimpui.html -share/doc/gimp/libgimp/libgimp-gimpundo.html share/doc/gimp/libgimp/libgimp-gimpvectors.html share/doc/gimp/libgimp/libgimp-image.html -share/doc/gimp/libgimp/libgimp-index-deprecated.html -share/doc/gimp/libgimp/libgimp-index-new-in-2-2.html -share/doc/gimp/libgimp/libgimp-index-new-in-2-4.html -share/doc/gimp/libgimp/libgimp-index-new-in-2-6.html -share/doc/gimp/libgimp/libgimp-index-new-in-2-8.html -share/doc/gimp/libgimp/libgimp-index.html share/doc/gimp/libgimp/libgimp-selectors.html share/doc/gimp/libgimp/libgimp.devhelp2 share/doc/gimp/libgimp/libgimp.html @@ -548,10 +524,17 @@ share/doc/gimp/libgimp/right.png share/doc/gimp/libgimp/style.css share/doc/gimp/libgimp/up-insensitive.png share/doc/gimp/libgimp/up.png +share/doc/gimp/libgimpbase/api-index-2-10.html +share/doc/gimp/libgimpbase/api-index-2-2.html +share/doc/gimp/libgimpbase/api-index-2-4.html +share/doc/gimp/libgimpbase/api-index-2-8.html +share/doc/gimp/libgimpbase/api-index-deprecated.html +share/doc/gimp/libgimpbase/api-index-full.html share/doc/gimp/libgimpbase/home.png share/doc/gimp/libgimpbase/index.html share/doc/gimp/libgimpbase/left-insensitive.png share/doc/gimp/libgimpbase/left.png +share/doc/gimp/libgimpbase/libgimpbase-GimpValueArray.html share/doc/gimp/libgimpbase/libgimpbase-gimpbaseenums.html share/doc/gimp/libgimpbase/libgimpbase-gimpbasetypes.html share/doc/gimp/libgimpbase/libgimpbase-gimpchecks.html @@ -560,6 +543,7 @@ share/doc/gimp/libgimpbase/libgimpbase-gimpdatafiles.html share/doc/gimp/libgimpbase/libgimpbase-gimpenv.html share/doc/gimp/libgimpbase/libgimpbase-gimplimits.html share/doc/gimp/libgimpbase/libgimpbase-gimpmemsize.html +share/doc/gimp/libgimpbase/libgimpbase-gimpmetadata.html share/doc/gimp/libgimpbase/libgimpbase-gimpparam.html share/doc/gimp/libgimpbase/libgimpbase-gimpparasite.html share/doc/gimp/libgimpbase/libgimpbase-gimpparasiteio.html @@ -568,19 +552,20 @@ share/doc/gimp/libgimpbase/libgimpbase-gimpsignal.html share/doc/gimp/libgimpbase/libgimpbase-gimpunit.html share/doc/gimp/libgimpbase/libgimpbase-gimputils.html share/doc/gimp/libgimpbase/libgimpbase-gimpversion.html -share/doc/gimp/libgimpbase/libgimpbase-index-deprecated.html -share/doc/gimp/libgimpbase/libgimpbase-index-new-in-2-2.html -share/doc/gimp/libgimpbase/libgimpbase-index-new-in-2-4.html -share/doc/gimp/libgimpbase/libgimpbase-index-new-in-2-6.html -share/doc/gimp/libgimpbase/libgimpbase-index-new-in-2-8.html -share/doc/gimp/libgimpbase/libgimpbase-index.html share/doc/gimp/libgimpbase/libgimpbase.devhelp2 -share/doc/gimp/libgimpbase/libgimpbase.html +share/doc/gimp/libgimpbase/pt01.html share/doc/gimp/libgimpbase/right-insensitive.png share/doc/gimp/libgimpbase/right.png share/doc/gimp/libgimpbase/style.css share/doc/gimp/libgimpbase/up-insensitive.png share/doc/gimp/libgimpbase/up.png +share/doc/gimp/libgimpcolor/api-index-2-10.html +share/doc/gimp/libgimpcolor/api-index-2-2.html +share/doc/gimp/libgimpcolor/api-index-2-4.html +share/doc/gimp/libgimpcolor/api-index-2-6.html +share/doc/gimp/libgimpcolor/api-index-2-8.html +share/doc/gimp/libgimpcolor/api-index-deprecated.html +share/doc/gimp/libgimpcolor/api-index-full.html share/doc/gimp/libgimpcolor/home.png share/doc/gimp/libgimpcolor/index.html share/doc/gimp/libgimpcolor/left-insensitive.png @@ -588,25 +573,28 @@ share/doc/gimp/libgimpcolor/left.png share/doc/gimp/libgimpcolor/libgimpcolor-GimpAdaptiveSupersample.html share/doc/gimp/libgimpcolor/libgimpcolor-GimpBilinear.html share/doc/gimp/libgimpcolor/libgimpcolor-GimpCMYK.html -share/doc/gimp/libgimpcolor/libgimpcolor-GimpCairoColor.html +share/doc/gimp/libgimpcolor/libgimpcolor-GimpCairo.html share/doc/gimp/libgimpcolor/libgimpcolor-GimpColorManaged.html +share/doc/gimp/libgimpcolor/libgimpcolor-GimpColorProfile.html share/doc/gimp/libgimpcolor/libgimpcolor-GimpColorSpace.html +share/doc/gimp/libgimpcolor/libgimpcolor-GimpColorTransform.html share/doc/gimp/libgimpcolor/libgimpcolor-GimpHSV.html +share/doc/gimp/libgimpcolor/libgimpcolor-GimpPixbuf.html share/doc/gimp/libgimpcolor/libgimpcolor-GimpRGB.html -share/doc/gimp/libgimpcolor/libgimpcolor-index-deprecated.html -share/doc/gimp/libgimpcolor/libgimpcolor-index-new-in-2-2.html -share/doc/gimp/libgimpcolor/libgimpcolor-index-new-in-2-4.html -share/doc/gimp/libgimpcolor/libgimpcolor-index-new-in-2-6.html -share/doc/gimp/libgimpcolor/libgimpcolor-index-new-in-2-8.html -share/doc/gimp/libgimpcolor/libgimpcolor-index.html share/doc/gimp/libgimpcolor/libgimpcolor.devhelp2 -share/doc/gimp/libgimpcolor/libgimpcolor.html +share/doc/gimp/libgimpcolor/pt01.html share/doc/gimp/libgimpcolor/right-insensitive.png share/doc/gimp/libgimpcolor/right.png share/doc/gimp/libgimpcolor/style.css share/doc/gimp/libgimpcolor/up-insensitive.png share/doc/gimp/libgimpcolor/up.png share/doc/gimp/libgimpconfig/GimpColorConfig.html +share/doc/gimp/libgimpconfig/api-index-2-10.html +share/doc/gimp/libgimpconfig/api-index-2-4.html +share/doc/gimp/libgimpconfig/api-index-2-6.html +share/doc/gimp/libgimpconfig/api-index-2-8.html +share/doc/gimp/libgimpconfig/api-index-deprecated.html +share/doc/gimp/libgimpconfig/api-index-full.html share/doc/gimp/libgimpconfig/home.png share/doc/gimp/libgimpconfig/index.html share/doc/gimp/libgimpconfig/left-insensitive.png @@ -621,18 +609,18 @@ share/doc/gimp/libgimpconfig/libgimpconfig-GimpConfigError.html share/doc/gimp/libgimpconfig/libgimpconfig-GimpConfigWriter.html share/doc/gimp/libgimpconfig/libgimpconfig-GimpScanner.html share/doc/gimp/libgimpconfig/libgimpconfig-hierarchy.html -share/doc/gimp/libgimpconfig/libgimpconfig-index-deprecated.html -share/doc/gimp/libgimpconfig/libgimpconfig-index-new-in-2-4.html -share/doc/gimp/libgimpconfig/libgimpconfig-index-new-in-2-6.html -share/doc/gimp/libgimpconfig/libgimpconfig-index-new-in-2-8.html -share/doc/gimp/libgimpconfig/libgimpconfig-index.html share/doc/gimp/libgimpconfig/libgimpconfig.devhelp2 -share/doc/gimp/libgimpconfig/libgimpconfig.html +share/doc/gimp/libgimpconfig/pt01.html share/doc/gimp/libgimpconfig/right-insensitive.png share/doc/gimp/libgimpconfig/right.png share/doc/gimp/libgimpconfig/style.css share/doc/gimp/libgimpconfig/up-insensitive.png share/doc/gimp/libgimpconfig/up.png +share/doc/gimp/libgimpmath/api-index-2-10.html +share/doc/gimp/libgimpmath/api-index-2-4.html +share/doc/gimp/libgimpmath/api-index-2-8.html +share/doc/gimp/libgimpmath/api-index-deprecated.html +share/doc/gimp/libgimpmath/api-index-full.html share/doc/gimp/libgimpmath/home.png share/doc/gimp/libgimpmath/index.html share/doc/gimp/libgimpmath/left-insensitive.png @@ -641,13 +629,8 @@ share/doc/gimp/libgimpmath/libgimpmath-GimpMD5.html share/doc/gimp/libgimpmath/libgimpmath-GimpMath.html share/doc/gimp/libgimpmath/libgimpmath-GimpMatrix.html share/doc/gimp/libgimpmath/libgimpmath-GimpVector.html -share/doc/gimp/libgimpmath/libgimpmath-index-deprecated.html -share/doc/gimp/libgimpmath/libgimpmath-index-new-in-2-2.html -share/doc/gimp/libgimpmath/libgimpmath-index-new-in-2-4.html -share/doc/gimp/libgimpmath/libgimpmath-index-new-in-2-6.html -share/doc/gimp/libgimpmath/libgimpmath-index.html share/doc/gimp/libgimpmath/libgimpmath.devhelp2 -share/doc/gimp/libgimpmath/libgimpmath.html +share/doc/gimp/libgimpmath/pt01.html share/doc/gimp/libgimpmath/right-insensitive.png share/doc/gimp/libgimpmath/right.png share/doc/gimp/libgimpmath/style.css @@ -655,24 +638,26 @@ share/doc/gimp/libgimpmath/up-insensitive.png share/doc/gimp/libgimpmath/up.png share/doc/gimp/libgimpmodule/GimpModule.html share/doc/gimp/libgimpmodule/GimpModuleDB.html +share/doc/gimp/libgimpmodule/api-index-2-10.html +share/doc/gimp/libgimpmodule/api-index-2-8.html +share/doc/gimp/libgimpmodule/api-index-deprecated.html +share/doc/gimp/libgimpmodule/api-index-full.html share/doc/gimp/libgimpmodule/home.png share/doc/gimp/libgimpmodule/index.html share/doc/gimp/libgimpmodule/left-insensitive.png share/doc/gimp/libgimpmodule/left.png -share/doc/gimp/libgimpmodule/libgimpmodule-index-deprecated.html -share/doc/gimp/libgimpmodule/libgimpmodule-index-new-in-2-2.html -share/doc/gimp/libgimpmodule/libgimpmodule-index-new-in-2-4.html -share/doc/gimp/libgimpmodule/libgimpmodule-index-new-in-2-6.html -share/doc/gimp/libgimpmodule/libgimpmodule-index-new-in-2-8.html -share/doc/gimp/libgimpmodule/libgimpmodule-index.html share/doc/gimp/libgimpmodule/libgimpmodule.devhelp2 -share/doc/gimp/libgimpmodule/libgimpmodule.html +share/doc/gimp/libgimpmodule/pt01.html share/doc/gimp/libgimpmodule/right-insensitive.png share/doc/gimp/libgimpmodule/right.png share/doc/gimp/libgimpmodule/style.css share/doc/gimp/libgimpmodule/up-insensitive.png share/doc/gimp/libgimpmodule/up.png share/doc/gimp/libgimpthumb/GimpThumbnail.html +share/doc/gimp/libgimpthumb/api-index-2-10.html +share/doc/gimp/libgimpthumb/api-index-2-2.html +share/doc/gimp/libgimpthumb/api-index-deprecated.html +share/doc/gimp/libgimpthumb/api-index-full.html share/doc/gimp/libgimpthumb/home.png share/doc/gimp/libgimpthumb/index.html share/doc/gimp/libgimpthumb/left-insensitive.png @@ -680,13 +665,8 @@ share/doc/gimp/libgimpthumb/left.png share/doc/gimp/libgimpthumb/libgimpthumb-GimpThumb-enums.html share/doc/gimp/libgimpthumb/libgimpthumb-GimpThumb-error.html share/doc/gimp/libgimpthumb/libgimpthumb-GimpThumb-utils.html -share/doc/gimp/libgimpthumb/libgimpthumb-index-deprecated.html -share/doc/gimp/libgimpthumb/libgimpthumb-index-new-in-2-2.html -share/doc/gimp/libgimpthumb/libgimpthumb-index-new-in-2-4.html -share/doc/gimp/libgimpthumb/libgimpthumb-index-new-in-2-6.html -share/doc/gimp/libgimpthumb/libgimpthumb-index.html share/doc/gimp/libgimpthumb/libgimpthumb.devhelp2 -share/doc/gimp/libgimpthumb/libgimpthumb.html +share/doc/gimp/libgimpthumb/pt01.html share/doc/gimp/libgimpthumb/right-insensitive.png share/doc/gimp/libgimpthumb/right.png share/doc/gimp/libgimpthumb/style.css @@ -703,8 +683,10 @@ share/doc/gimp/libgimpwidgets/GimpColorDisplay.html share/doc/gimp/libgimpwidgets/GimpColorDisplayStack.html share/doc/gimp/libgimpwidgets/GimpColorHexEntry.html share/doc/gimp/libgimpwidgets/GimpColorNotebook.html +share/doc/gimp/libgimpwidgets/GimpColorProfileChooserDialog.html share/doc/gimp/libgimpwidgets/GimpColorProfileComboBox.html share/doc/gimp/libgimpwidgets/GimpColorProfileStore.html +share/doc/gimp/libgimpwidgets/GimpColorProfileView.html share/doc/gimp/libgimpwidgets/GimpColorScale.html share/doc/gimp/libgimpwidgets/GimpColorScales.html share/doc/gimp/libgimpwidgets/GimpColorSelect.html @@ -736,31 +718,312 @@ share/doc/gimp/libgimpwidgets/GimpUnitComboBox.html share/doc/gimp/libgimpwidgets/GimpUnitMenu.html share/doc/gimp/libgimpwidgets/GimpUnitStore.html share/doc/gimp/libgimpwidgets/GimpZoomModel.html -share/doc/gimp/libgimpwidgets/gimp-browser.png -share/doc/gimp/libgimpwidgets/gimp-button.png -share/doc/gimp/libgimpwidgets/gimp-chain-button.png -share/doc/gimp/libgimpwidgets/gimp-color-area.png -share/doc/gimp/libgimpwidgets/gimp-color-button.png -share/doc/gimp/libgimpwidgets/gimp-color-hex-entry.png -share/doc/gimp/libgimpwidgets/gimp-color-profile-combo-box.png -share/doc/gimp/libgimpwidgets/gimp-color-scale.png -share/doc/gimp/libgimpwidgets/gimp-color-selection.png -share/doc/gimp/libgimpwidgets/gimp-dialog.png -share/doc/gimp/libgimpwidgets/gimp-enum-combo-box.png -share/doc/gimp/libgimpwidgets/gimp-enum-label.png -share/doc/gimp/libgimpwidgets/gimp-file-entry.png +share/doc/gimp/libgimpwidgets/api-index-2-10-4.html +share/doc/gimp/libgimpwidgets/api-index-2-10.html +share/doc/gimp/libgimpwidgets/api-index-2-2.html +share/doc/gimp/libgimpwidgets/api-index-2-4.html +share/doc/gimp/libgimpwidgets/api-index-2-6.html +share/doc/gimp/libgimpwidgets/api-index-2-8.html +share/doc/gimp/libgimpwidgets/api-index-deprecated.html +share/doc/gimp/libgimpwidgets/api-index-full.html +share/doc/gimp/libgimpwidgets/gimp-anchor.png +share/doc/gimp/libgimpwidgets/gimp-attach.png +share/doc/gimp/libgimpwidgets/gimp-business-card.png +share/doc/gimp/libgimpwidgets/gimp-cap-butt.png +share/doc/gimp/libgimpwidgets/gimp-cap-round.png +share/doc/gimp/libgimpwidgets/gimp-cap-square.png +share/doc/gimp/libgimpwidgets/gimp-center.png +share/doc/gimp/libgimpwidgets/gimp-channel-alpha.png +share/doc/gimp/libgimpwidgets/gimp-channel-blue.png +share/doc/gimp/libgimpwidgets/gimp-channel-gray.png +share/doc/gimp/libgimpwidgets/gimp-channel-green.png +share/doc/gimp/libgimpwidgets/gimp-channel-indexed.png +share/doc/gimp/libgimpwidgets/gimp-channel-red.png +share/doc/gimp/libgimpwidgets/gimp-channel.png +share/doc/gimp/libgimpwidgets/gimp-channels.png +share/doc/gimp/libgimpwidgets/gimp-char-picker.png +share/doc/gimp/libgimpwidgets/gimp-clipboard.png +share/doc/gimp/libgimpwidgets/gimp-close-all.png +share/doc/gimp/libgimpwidgets/gimp-close.png +share/doc/gimp/libgimpwidgets/gimp-color-cmyk.png +share/doc/gimp/libgimpwidgets/gimp-color-pick-from-screen.png +share/doc/gimp/libgimpwidgets/gimp-color-picker-black.png +share/doc/gimp/libgimpwidgets/gimp-color-picker-gray.png +share/doc/gimp/libgimpwidgets/gimp-color-picker-white.png +share/doc/gimp/libgimpwidgets/gimp-color-space-linear.png +share/doc/gimp/libgimpwidgets/gimp-color-space-non-linear.png +share/doc/gimp/libgimpwidgets/gimp-color-space-perceptual.png +share/doc/gimp/libgimpwidgets/gimp-color-triangle.png +share/doc/gimp/libgimpwidgets/gimp-color-water.png +share/doc/gimp/libgimpwidgets/gimp-colormap.png +share/doc/gimp/libgimpwidgets/gimp-controller-keyboard.png +share/doc/gimp/libgimpwidgets/gimp-controller-linux-input.png +share/doc/gimp/libgimpwidgets/gimp-controller-midi.png +share/doc/gimp/libgimpwidgets/gimp-controller-wheel.png +share/doc/gimp/libgimpwidgets/gimp-controller.png +share/doc/gimp/libgimpwidgets/gimp-convert-grayscale.png +share/doc/gimp/libgimpwidgets/gimp-convert-indexed.png +share/doc/gimp/libgimpwidgets/gimp-convert-rgb.png +share/doc/gimp/libgimpwidgets/gimp-cursor.png +share/doc/gimp/libgimpwidgets/gimp-curve-free.png +share/doc/gimp/libgimpwidgets/gimp-curve-smooth.png +share/doc/gimp/libgimpwidgets/gimp-dashboard.png +share/doc/gimp/libgimpwidgets/gimp-default-colors.png +share/doc/gimp/libgimpwidgets/gimp-detach.png +share/doc/gimp/libgimpwidgets/gimp-device-status.png +share/doc/gimp/libgimpwidgets/gimp-display-filter-clip-warning.png +share/doc/gimp/libgimpwidgets/gimp-display-filter-colorblind.png +share/doc/gimp/libgimpwidgets/gimp-display-filter-contrast.png +share/doc/gimp/libgimpwidgets/gimp-display-filter-gamma.png +share/doc/gimp/libgimpwidgets/gimp-display-filter-lcms.png +share/doc/gimp/libgimpwidgets/gimp-display-filter-proof.png +share/doc/gimp/libgimpwidgets/gimp-display-filter.png +share/doc/gimp/libgimpwidgets/gimp-display.png +share/doc/gimp/libgimpwidgets/gimp-duplicate.png +share/doc/gimp/libgimpwidgets/gimp-dynamics.png +share/doc/gimp/libgimpwidgets/gimp-error.png +share/doc/gimp/libgimpwidgets/gimp-file-manager.png +share/doc/gimp/libgimpwidgets/gimp-flip-horizontal.png +share/doc/gimp/libgimpwidgets/gimp-flip-vertical.png +share/doc/gimp/libgimpwidgets/gimp-floating-selection.png share/doc/gimp/libgimpwidgets/gimp-frame.png -share/doc/gimp/libgimpwidgets/gimp-hint-box.png -share/doc/gimp/libgimpwidgets/gimp-int-combo-box.png -share/doc/gimp/libgimpwidgets/gimp-memsize-entry.png -share/doc/gimp/libgimpwidgets/gimp-number-pair-entry.png -share/doc/gimp/libgimpwidgets/gimp-offset-area.png -share/doc/gimp/libgimpwidgets/gimp-page-selector.png -share/doc/gimp/libgimpwidgets/gimp-path-editor.png -share/doc/gimp/libgimpwidgets/gimp-pick-button.png -share/doc/gimp/libgimpwidgets/gimp-preview-area.png -share/doc/gimp/libgimpwidgets/gimp-string-combo-box.png -share/doc/gimp/libgimpwidgets/gimp-unit-menu.png +share/doc/gimp/libgimpwidgets/gimp-gegl.png +share/doc/gimp/libgimpwidgets/gimp-gradient-bilinear.png +share/doc/gimp/libgimpwidgets/gimp-gradient-conical-asymmetric.png +share/doc/gimp/libgimpwidgets/gimp-gradient-conical-symmetric.png +share/doc/gimp/libgimpwidgets/gimp-gradient-linear.png +share/doc/gimp/libgimpwidgets/gimp-gradient-radial.png +share/doc/gimp/libgimpwidgets/gimp-gradient-shapeburst-angular.png +share/doc/gimp/libgimpwidgets/gimp-gradient-shapeburst-dimpled.png +share/doc/gimp/libgimpwidgets/gimp-gradient-shapeburst-spherical.png +share/doc/gimp/libgimpwidgets/gimp-gradient-spiral-anticlockwise.png +share/doc/gimp/libgimpwidgets/gimp-gradient-spiral-clockwise.png +share/doc/gimp/libgimpwidgets/gimp-gradient-square.png +share/doc/gimp/libgimpwidgets/gimp-gravity-east.png +share/doc/gimp/libgimpwidgets/gimp-gravity-north-east.png +share/doc/gimp/libgimpwidgets/gimp-gravity-north-west.png +share/doc/gimp/libgimpwidgets/gimp-gravity-north.png +share/doc/gimp/libgimpwidgets/gimp-gravity-south-east.png +share/doc/gimp/libgimpwidgets/gimp-gravity-south-west.png +share/doc/gimp/libgimpwidgets/gimp-gravity-south.png +share/doc/gimp/libgimpwidgets/gimp-gravity-west.png +share/doc/gimp/libgimpwidgets/gimp-grid.png +share/doc/gimp/libgimpwidgets/gimp-group-layer.png +share/doc/gimp/libgimpwidgets/gimp-hcenter.png +share/doc/gimp/libgimpwidgets/gimp-hchain-broken.png +share/doc/gimp/libgimpwidgets/gimp-hchain.png +share/doc/gimp/libgimpwidgets/gimp-hfill.png +share/doc/gimp/libgimpwidgets/gimp-histogram-linear.png +share/doc/gimp/libgimpwidgets/gimp-histogram-logarithmic.png +share/doc/gimp/libgimpwidgets/gimp-histogram.png +share/doc/gimp/libgimpwidgets/gimp-image-open.png +share/doc/gimp/libgimpwidgets/gimp-image-reload.png +share/doc/gimp/libgimpwidgets/gimp-image.png +share/doc/gimp/libgimpwidgets/gimp-images.png +share/doc/gimp/libgimpwidgets/gimp-info.png +share/doc/gimp/libgimpwidgets/gimp-input-device.png +share/doc/gimp/libgimpwidgets/gimp-invert.png +share/doc/gimp/libgimpwidgets/gimp-join-bevel.png +share/doc/gimp/libgimpwidgets/gimp-join-miter.png +share/doc/gimp/libgimpwidgets/gimp-join-round.png +share/doc/gimp/libgimpwidgets/gimp-landscape.png +share/doc/gimp/libgimpwidgets/gimp-layer-mask.png +share/doc/gimp/libgimpwidgets/gimp-layer-to-imagesize.png +share/doc/gimp/libgimpwidgets/gimp-layer.png +share/doc/gimp/libgimpwidgets/gimp-layers.png +share/doc/gimp/libgimpwidgets/gimp-letter-spacing.png +share/doc/gimp/libgimpwidgets/gimp-line-spacing.png +share/doc/gimp/libgimpwidgets/gimp-linked.png +share/doc/gimp/libgimpwidgets/gimp-list.png +share/doc/gimp/libgimpwidgets/gimp-menu-left.png +share/doc/gimp/libgimpwidgets/gimp-menu-right.png +share/doc/gimp/libgimpwidgets/gimp-merge-down.png +share/doc/gimp/libgimpwidgets/gimp-move-to-screen.png +share/doc/gimp/libgimpwidgets/gimp-navigation.png +share/doc/gimp/libgimpwidgets/gimp-paste-as-new.png +share/doc/gimp/libgimpwidgets/gimp-paste-into.png +share/doc/gimp/libgimpwidgets/gimp-path-stroke.png +share/doc/gimp/libgimpwidgets/gimp-path.png +share/doc/gimp/libgimpwidgets/gimp-paths.png +share/doc/gimp/libgimpwidgets/gimp-pattern.png +share/doc/gimp/libgimpwidgets/gimp-plugin.png +share/doc/gimp/libgimpwidgets/gimp-portrait.png +share/doc/gimp/libgimpwidgets/gimp-prefs-color-management.png +share/doc/gimp/libgimpwidgets/gimp-prefs-controllers.png +share/doc/gimp/libgimpwidgets/gimp-prefs-default-comment.png +share/doc/gimp/libgimpwidgets/gimp-prefs-default-grid.png +share/doc/gimp/libgimpwidgets/gimp-prefs-display.png +share/doc/gimp/libgimpwidgets/gimp-prefs-folders-brushes.png +share/doc/gimp/libgimpwidgets/gimp-prefs-folders-dynamics.png +share/doc/gimp/libgimpwidgets/gimp-prefs-folders-environ.png +share/doc/gimp/libgimpwidgets/gimp-prefs-folders-fonts.png +share/doc/gimp/libgimpwidgets/gimp-prefs-folders-gradients.png +share/doc/gimp/libgimpwidgets/gimp-prefs-folders-icon-themes.png +share/doc/gimp/libgimpwidgets/gimp-prefs-folders-interp.png +share/doc/gimp/libgimpwidgets/gimp-prefs-folders-modules.png +share/doc/gimp/libgimpwidgets/gimp-prefs-folders-mypaint-brushes.png +share/doc/gimp/libgimpwidgets/gimp-prefs-folders-palettes.png +share/doc/gimp/libgimpwidgets/gimp-prefs-folders-patterns.png +share/doc/gimp/libgimpwidgets/gimp-prefs-folders-plug-ins.png +share/doc/gimp/libgimpwidgets/gimp-prefs-folders-scripts.png +share/doc/gimp/libgimpwidgets/gimp-prefs-folders-themes.png +share/doc/gimp/libgimpwidgets/gimp-prefs-folders-tool-plug-ins.png +share/doc/gimp/libgimpwidgets/gimp-prefs-folders-tool-presets.png +share/doc/gimp/libgimpwidgets/gimp-prefs-folders-tools.png +share/doc/gimp/libgimpwidgets/gimp-prefs-folders.png +share/doc/gimp/libgimpwidgets/gimp-prefs-help-system.png +share/doc/gimp/libgimpwidgets/gimp-prefs-icon-theme.png +share/doc/gimp/libgimpwidgets/gimp-prefs-image-title.png +share/doc/gimp/libgimpwidgets/gimp-prefs-image-windows-appearance.png +share/doc/gimp/libgimpwidgets/gimp-prefs-image-windows-snapping.png +share/doc/gimp/libgimpwidgets/gimp-prefs-image-windows.png +share/doc/gimp/libgimpwidgets/gimp-prefs-import-export.png +share/doc/gimp/libgimpwidgets/gimp-prefs-input-devices.png +share/doc/gimp/libgimpwidgets/gimp-prefs-interface.png +share/doc/gimp/libgimpwidgets/gimp-prefs-new-image.png +share/doc/gimp/libgimpwidgets/gimp-prefs-playground.png +share/doc/gimp/libgimpwidgets/gimp-prefs-session.png +share/doc/gimp/libgimpwidgets/gimp-prefs-system-resources.png +share/doc/gimp/libgimpwidgets/gimp-prefs-theme.png +share/doc/gimp/libgimpwidgets/gimp-prefs-tool-options.png +share/doc/gimp/libgimpwidgets/gimp-prefs-toolbox.png +share/doc/gimp/libgimpwidgets/gimp-prefs-window-management.png +share/doc/gimp/libgimpwidgets/gimp-question.png +share/doc/gimp/libgimpwidgets/gimp-quick-mask-off.png +share/doc/gimp/libgimpwidgets/gimp-quick-mask-on.png +share/doc/gimp/libgimpwidgets/gimp-reset.png +share/doc/gimp/libgimpwidgets/gimp-reshow-filter.png +share/doc/gimp/libgimpwidgets/gimp-resize.png +share/doc/gimp/libgimpwidgets/gimp-rotate-180.png +share/doc/gimp/libgimpwidgets/gimp-rotate-270.png +share/doc/gimp/libgimpwidgets/gimp-rotate-90.png +share/doc/gimp/libgimpwidgets/gimp-sample-point.png +share/doc/gimp/libgimpwidgets/gimp-scale.png +share/doc/gimp/libgimpwidgets/gimp-selection-add.png +share/doc/gimp/libgimpwidgets/gimp-selection-all.png +share/doc/gimp/libgimpwidgets/gimp-selection-border.png +share/doc/gimp/libgimpwidgets/gimp-selection-grow.png +share/doc/gimp/libgimpwidgets/gimp-selection-intersect.png +share/doc/gimp/libgimpwidgets/gimp-selection-none.png +share/doc/gimp/libgimpwidgets/gimp-selection-replace.png +share/doc/gimp/libgimpwidgets/gimp-selection-shrink.png +share/doc/gimp/libgimpwidgets/gimp-selection-stroke.png +share/doc/gimp/libgimpwidgets/gimp-selection-subtract.png +share/doc/gimp/libgimpwidgets/gimp-selection-to-channel.png +share/doc/gimp/libgimpwidgets/gimp-selection-to-path.png +share/doc/gimp/libgimpwidgets/gimp-selection.png +share/doc/gimp/libgimpwidgets/gimp-shape-circle.png +share/doc/gimp/libgimpwidgets/gimp-shape-diamond.png +share/doc/gimp/libgimpwidgets/gimp-shape-square.png +share/doc/gimp/libgimpwidgets/gimp-shred.png +share/doc/gimp/libgimpwidgets/gimp-smartphone.png +share/doc/gimp/libgimpwidgets/gimp-swap-colors.png +share/doc/gimp/libgimpwidgets/gimp-symmetry.png +share/doc/gimp/libgimpwidgets/gimp-template.png +share/doc/gimp/libgimpwidgets/gimp-text-dir-ltr.png +share/doc/gimp/libgimpwidgets/gimp-text-dir-rtl.png +share/doc/gimp/libgimpwidgets/gimp-text-dir-ttb-ltr-upright.png +share/doc/gimp/libgimpwidgets/gimp-text-dir-ttb-ltr.png +share/doc/gimp/libgimpwidgets/gimp-text-dir-ttb-rtl-upright.png +share/doc/gimp/libgimpwidgets/gimp-text-dir-ttb-rtl.png +share/doc/gimp/libgimpwidgets/gimp-text-layer.png +share/doc/gimp/libgimpwidgets/gimp-texture.png +share/doc/gimp/libgimpwidgets/gimp-toilet-paper.png +share/doc/gimp/libgimpwidgets/gimp-tool-airbrush.png +share/doc/gimp/libgimpwidgets/gimp-tool-align.png +share/doc/gimp/libgimpwidgets/gimp-tool-blur.png +share/doc/gimp/libgimpwidgets/gimp-tool-brightness-contrast.png +share/doc/gimp/libgimpwidgets/gimp-tool-bucket-fill.png +share/doc/gimp/libgimpwidgets/gimp-tool-by-color-select.png +share/doc/gimp/libgimpwidgets/gimp-tool-cage.png +share/doc/gimp/libgimpwidgets/gimp-tool-clone.png +share/doc/gimp/libgimpwidgets/gimp-tool-color-balance.png +share/doc/gimp/libgimpwidgets/gimp-tool-color-picker.png +share/doc/gimp/libgimpwidgets/gimp-tool-color-temperature.png +share/doc/gimp/libgimpwidgets/gimp-tool-colorize.png +share/doc/gimp/libgimpwidgets/gimp-tool-crop.png +share/doc/gimp/libgimpwidgets/gimp-tool-curves.png +share/doc/gimp/libgimpwidgets/gimp-tool-desaturate.png +share/doc/gimp/libgimpwidgets/gimp-tool-dodge.png +share/doc/gimp/libgimpwidgets/gimp-tool-ellipse-select.png +share/doc/gimp/libgimpwidgets/gimp-tool-eraser.png +share/doc/gimp/libgimpwidgets/gimp-tool-exposure.png +share/doc/gimp/libgimpwidgets/gimp-tool-flip.png +share/doc/gimp/libgimpwidgets/gimp-tool-foreground-select.png +share/doc/gimp/libgimpwidgets/gimp-tool-free-select.png +share/doc/gimp/libgimpwidgets/gimp-tool-fuzzy-select.png +share/doc/gimp/libgimpwidgets/gimp-tool-gradient.png +share/doc/gimp/libgimpwidgets/gimp-tool-handle-transform.png +share/doc/gimp/libgimpwidgets/gimp-tool-heal.png +share/doc/gimp/libgimpwidgets/gimp-tool-hue-saturation.png +share/doc/gimp/libgimpwidgets/gimp-tool-ink.png +share/doc/gimp/libgimpwidgets/gimp-tool-iscissors.png +share/doc/gimp/libgimpwidgets/gimp-tool-levels.png +share/doc/gimp/libgimpwidgets/gimp-tool-measure.png +share/doc/gimp/libgimpwidgets/gimp-tool-move.png +share/doc/gimp/libgimpwidgets/gimp-tool-mypaint-brush.png +share/doc/gimp/libgimpwidgets/gimp-tool-n-point-deformation.png +share/doc/gimp/libgimpwidgets/gimp-tool-options.png +share/doc/gimp/libgimpwidgets/gimp-tool-paintbrush.png +share/doc/gimp/libgimpwidgets/gimp-tool-path.png +share/doc/gimp/libgimpwidgets/gimp-tool-pencil.png +share/doc/gimp/libgimpwidgets/gimp-tool-perspective-clone.png +share/doc/gimp/libgimpwidgets/gimp-tool-perspective.png +share/doc/gimp/libgimpwidgets/gimp-tool-posterize.png +share/doc/gimp/libgimpwidgets/gimp-tool-preset.png +share/doc/gimp/libgimpwidgets/gimp-tool-rect-select.png +share/doc/gimp/libgimpwidgets/gimp-tool-rotate.png +share/doc/gimp/libgimpwidgets/gimp-tool-scale.png +share/doc/gimp/libgimpwidgets/gimp-tool-seamless-clone.png +share/doc/gimp/libgimpwidgets/gimp-tool-shadows-highlights.png +share/doc/gimp/libgimpwidgets/gimp-tool-shear.png +share/doc/gimp/libgimpwidgets/gimp-tool-smudge.png +share/doc/gimp/libgimpwidgets/gimp-tool-text.png +share/doc/gimp/libgimpwidgets/gimp-tool-threshold.png +share/doc/gimp/libgimpwidgets/gimp-tool-unified-transform.png +share/doc/gimp/libgimpwidgets/gimp-tool-warp.png +share/doc/gimp/libgimpwidgets/gimp-tool-zoom.png +share/doc/gimp/libgimpwidgets/gimp-tools.png +share/doc/gimp/libgimpwidgets/gimp-transparency.png +share/doc/gimp/libgimpwidgets/gimp-undo-history.png +share/doc/gimp/libgimpwidgets/gimp-user-manual.png +share/doc/gimp/libgimpwidgets/gimp-vcenter.png +share/doc/gimp/libgimpwidgets/gimp-vchain-broken.png +share/doc/gimp/libgimpwidgets/gimp-vchain.png +share/doc/gimp/libgimpwidgets/gimp-vfill.png +share/doc/gimp/libgimpwidgets/gimp-video.png +share/doc/gimp/libgimpwidgets/gimp-visible.png +share/doc/gimp/libgimpwidgets/gimp-warning.png +share/doc/gimp/libgimpwidgets/gimp-web.png +share/doc/gimp/libgimpwidgets/gimp-widget-browser.png +share/doc/gimp/libgimpwidgets/gimp-widget-button.png +share/doc/gimp/libgimpwidgets/gimp-widget-chain-button.png +share/doc/gimp/libgimpwidgets/gimp-widget-color-area.png +share/doc/gimp/libgimpwidgets/gimp-widget-color-button.png +share/doc/gimp/libgimpwidgets/gimp-widget-color-hex-entry.png +share/doc/gimp/libgimpwidgets/gimp-widget-color-profile-combo-box.png +share/doc/gimp/libgimpwidgets/gimp-widget-color-scale.png +share/doc/gimp/libgimpwidgets/gimp-widget-color-selection.png +share/doc/gimp/libgimpwidgets/gimp-widget-dialog.png +share/doc/gimp/libgimpwidgets/gimp-widget-enum-combo-box.png +share/doc/gimp/libgimpwidgets/gimp-widget-enum-label.png +share/doc/gimp/libgimpwidgets/gimp-widget-file-entry.png +share/doc/gimp/libgimpwidgets/gimp-widget-frame.png +share/doc/gimp/libgimpwidgets/gimp-widget-hint-box.png +share/doc/gimp/libgimpwidgets/gimp-widget-int-combo-box.png +share/doc/gimp/libgimpwidgets/gimp-widget-memsize-entry.png +share/doc/gimp/libgimpwidgets/gimp-widget-number-pair-entry.png +share/doc/gimp/libgimpwidgets/gimp-widget-offset-area.png +share/doc/gimp/libgimpwidgets/gimp-widget-page-selector.png +share/doc/gimp/libgimpwidgets/gimp-widget-path-editor.png +share/doc/gimp/libgimpwidgets/gimp-widget-pick-button.png +share/doc/gimp/libgimpwidgets/gimp-widget-preview-area.png +share/doc/gimp/libgimpwidgets/gimp-widget-string-combo-box.png +share/doc/gimp/libgimpwidgets/gimp-widget-unit-menu.png +share/doc/gimp/libgimpwidgets/gimp-wilber-eek.png +share/doc/gimp/libgimpwidgets/gimp-wilber-outline.png +share/doc/gimp/libgimpwidgets/gimp-wilber.png +share/doc/gimp/libgimpwidgets/gimp-zoom-follow-window.png share/doc/gimp/libgimpwidgets/home.png share/doc/gimp/libgimpwidgets/index.html share/doc/gimp/libgimpwidgets/left-insensitive.png @@ -769,11 +1032,12 @@ share/doc/gimp/libgimpwidgets/libgimpwidgets-GimpCairoUtils.html share/doc/gimp/libgimpwidgets/libgimpwidgets-GimpEnumWidgets.html share/doc/gimp/libgimpwidgets/libgimpwidgets-GimpHelpUI.html share/doc/gimp/libgimpwidgets/libgimpwidgets-GimpHintBox.html +share/doc/gimp/libgimpwidgets/libgimpwidgets-GimpIcons.html share/doc/gimp/libgimpwidgets/libgimpwidgets-GimpOldWidgets.html share/doc/gimp/libgimpwidgets/libgimpwidgets-GimpPropWidgets.html share/doc/gimp/libgimpwidgets/libgimpwidgets-GimpQueryBox.html -share/doc/gimp/libgimpwidgets/libgimpwidgets-GimpStock.html share/doc/gimp/libgimpwidgets/libgimpwidgets-GimpWidgets.html +share/doc/gimp/libgimpwidgets/libgimpwidgets-GimpWidgetsUtils.html share/doc/gimp/libgimpwidgets/libgimpwidgets-cell-renderers.html share/doc/gimp/libgimpwidgets/libgimpwidgets-colordisplay.html share/doc/gimp/libgimpwidgets/libgimpwidgets-colorselector.html @@ -781,343 +1045,11 @@ share/doc/gimp/libgimpwidgets/libgimpwidgets-controller.html share/doc/gimp/libgimpwidgets/libgimpwidgets-deprecated.html share/doc/gimp/libgimpwidgets/libgimpwidgets-gallery.html share/doc/gimp/libgimpwidgets/libgimpwidgets-hierarchy.html -share/doc/gimp/libgimpwidgets/libgimpwidgets-index-deprecated.html -share/doc/gimp/libgimpwidgets/libgimpwidgets-index-new-in-2-2.html -share/doc/gimp/libgimpwidgets/libgimpwidgets-index-new-in-2-4.html -share/doc/gimp/libgimpwidgets/libgimpwidgets-index-new-in-2-6.html -share/doc/gimp/libgimpwidgets/libgimpwidgets-index-new-in-2-8.html -share/doc/gimp/libgimpwidgets/libgimpwidgets-index.html share/doc/gimp/libgimpwidgets/libgimpwidgets-utils.html share/doc/gimp/libgimpwidgets/libgimpwidgets-widgets.html share/doc/gimp/libgimpwidgets/libgimpwidgets.devhelp2 share/doc/gimp/libgimpwidgets/right-insensitive.png share/doc/gimp/libgimpwidgets/right.png -share/doc/gimp/libgimpwidgets/stock-anchor-16.png -share/doc/gimp/libgimpwidgets/stock-cap-butt-16.png -share/doc/gimp/libgimpwidgets/stock-cap-round-16.png -share/doc/gimp/libgimpwidgets/stock-cap-square-16.png -share/doc/gimp/libgimpwidgets/stock-center-16.png -share/doc/gimp/libgimpwidgets/stock-center-24.png -share/doc/gimp/libgimpwidgets/stock-channel-16.png -share/doc/gimp/libgimpwidgets/stock-channel-24.png -share/doc/gimp/libgimpwidgets/stock-channel-32.png -share/doc/gimp/libgimpwidgets/stock-channel-48.png -share/doc/gimp/libgimpwidgets/stock-channel-alpha-16.png -share/doc/gimp/libgimpwidgets/stock-channel-alpha-24.png -share/doc/gimp/libgimpwidgets/stock-channel-alpha-32.png -share/doc/gimp/libgimpwidgets/stock-channel-alpha-48.png -share/doc/gimp/libgimpwidgets/stock-channel-blue-16.png -share/doc/gimp/libgimpwidgets/stock-channel-blue-24.png -share/doc/gimp/libgimpwidgets/stock-channel-blue-32.png -share/doc/gimp/libgimpwidgets/stock-channel-blue-48.png -share/doc/gimp/libgimpwidgets/stock-channel-gray-16.png -share/doc/gimp/libgimpwidgets/stock-channel-gray-24.png -share/doc/gimp/libgimpwidgets/stock-channel-gray-32.png -share/doc/gimp/libgimpwidgets/stock-channel-gray-48.png -share/doc/gimp/libgimpwidgets/stock-channel-green-16.png -share/doc/gimp/libgimpwidgets/stock-channel-green-24.png -share/doc/gimp/libgimpwidgets/stock-channel-green-32.png -share/doc/gimp/libgimpwidgets/stock-channel-green-48.png -share/doc/gimp/libgimpwidgets/stock-channel-indexed-16.png -share/doc/gimp/libgimpwidgets/stock-channel-indexed-24.png -share/doc/gimp/libgimpwidgets/stock-channel-indexed-32.png -share/doc/gimp/libgimpwidgets/stock-channel-indexed-48.png -share/doc/gimp/libgimpwidgets/stock-channel-red-16.png -share/doc/gimp/libgimpwidgets/stock-channel-red-24.png -share/doc/gimp/libgimpwidgets/stock-channel-red-32.png -share/doc/gimp/libgimpwidgets/stock-channel-red-48.png -share/doc/gimp/libgimpwidgets/stock-channels-16.png -share/doc/gimp/libgimpwidgets/stock-channels-24.png -share/doc/gimp/libgimpwidgets/stock-char-picker-22.png -share/doc/gimp/libgimpwidgets/stock-close-12.png -share/doc/gimp/libgimpwidgets/stock-color-pick-from-screen-16.png -share/doc/gimp/libgimpwidgets/stock-color-picker-black-18.png -share/doc/gimp/libgimpwidgets/stock-color-picker-gray-18.png -share/doc/gimp/libgimpwidgets/stock-color-picker-white-18.png -share/doc/gimp/libgimpwidgets/stock-color-triangle-16.png -share/doc/gimp/libgimpwidgets/stock-colormap-16.png -share/doc/gimp/libgimpwidgets/stock-colormap-24.png -share/doc/gimp/libgimpwidgets/stock-controller-16.png -share/doc/gimp/libgimpwidgets/stock-controller-24.png -share/doc/gimp/libgimpwidgets/stock-controller-keyboard-16.png -share/doc/gimp/libgimpwidgets/stock-controller-keyboard-24.png -share/doc/gimp/libgimpwidgets/stock-controller-linux-input-16.png -share/doc/gimp/libgimpwidgets/stock-controller-linux-input-24.png -share/doc/gimp/libgimpwidgets/stock-controller-midi-16.png -share/doc/gimp/libgimpwidgets/stock-controller-midi-24.png -share/doc/gimp/libgimpwidgets/stock-controller-wheel-16.png -share/doc/gimp/libgimpwidgets/stock-controller-wheel-24.png -share/doc/gimp/libgimpwidgets/stock-convert-grayscale-16.png -share/doc/gimp/libgimpwidgets/stock-convert-indexed-16.png -share/doc/gimp/libgimpwidgets/stock-convert-rgb-16.png -share/doc/gimp/libgimpwidgets/stock-cursor-16.png -share/doc/gimp/libgimpwidgets/stock-cursor-24.png -share/doc/gimp/libgimpwidgets/stock-curve-free-16.png -share/doc/gimp/libgimpwidgets/stock-curve-smooth-16.png -share/doc/gimp/libgimpwidgets/stock-default-colors-12.png -share/doc/gimp/libgimpwidgets/stock-device-status-16.png -share/doc/gimp/libgimpwidgets/stock-device-status-24.png -share/doc/gimp/libgimpwidgets/stock-display-filter-16.png -share/doc/gimp/libgimpwidgets/stock-display-filter-24.png -share/doc/gimp/libgimpwidgets/stock-display-filter-colorblind-16.png -share/doc/gimp/libgimpwidgets/stock-display-filter-colorblind-24.png -share/doc/gimp/libgimpwidgets/stock-display-filter-contrast-16.png -share/doc/gimp/libgimpwidgets/stock-display-filter-contrast-24.png -share/doc/gimp/libgimpwidgets/stock-display-filter-gamma-16.png -share/doc/gimp/libgimpwidgets/stock-display-filter-gamma-24.png -share/doc/gimp/libgimpwidgets/stock-display-filter-lcms-16.png -share/doc/gimp/libgimpwidgets/stock-display-filter-lcms-24.png -share/doc/gimp/libgimpwidgets/stock-display-filter-proof-16.png -share/doc/gimp/libgimpwidgets/stock-display-filter-proof-24.png -share/doc/gimp/libgimpwidgets/stock-duplicate-16.png -share/doc/gimp/libgimpwidgets/stock-dynamics-16.png -share/doc/gimp/libgimpwidgets/stock-dynamics-22.png -share/doc/gimp/libgimpwidgets/stock-edit-16.png -share/doc/gimp/libgimpwidgets/stock-error-64.png -share/doc/gimp/libgimpwidgets/stock-eye-12.png -share/doc/gimp/libgimpwidgets/stock-eye-20.png -share/doc/gimp/libgimpwidgets/stock-flip-horizontal-16.png -share/doc/gimp/libgimpwidgets/stock-flip-vertical-16.png -share/doc/gimp/libgimpwidgets/stock-floating-selection-16.png -share/doc/gimp/libgimpwidgets/stock-floating-selection-24.png -share/doc/gimp/libgimpwidgets/stock-floating-selection-32.png -share/doc/gimp/libgimpwidgets/stock-floating-selection-48.png -share/doc/gimp/libgimpwidgets/stock-frame-64.png -share/doc/gimp/libgimpwidgets/stock-gegl-16.png -share/doc/gimp/libgimpwidgets/stock-gegl-22.png -share/doc/gimp/libgimpwidgets/stock-gradient-bilinear-16.png -share/doc/gimp/libgimpwidgets/stock-gradient-conical-asymmetric-16.png -share/doc/gimp/libgimpwidgets/stock-gradient-conical-symmetric-16.png -share/doc/gimp/libgimpwidgets/stock-gradient-linear-16.png -share/doc/gimp/libgimpwidgets/stock-gradient-radial-16.png -share/doc/gimp/libgimpwidgets/stock-gradient-shapeburst-angular-16.png -share/doc/gimp/libgimpwidgets/stock-gradient-shapeburst-dimpled-16.png -share/doc/gimp/libgimpwidgets/stock-gradient-shapeburst-spherical-16.png -share/doc/gimp/libgimpwidgets/stock-gradient-spiral-anticlockwise-16.png -share/doc/gimp/libgimpwidgets/stock-gradient-spiral-clockwise-16.png -share/doc/gimp/libgimpwidgets/stock-gradient-square-16.png -share/doc/gimp/libgimpwidgets/stock-gravity-east-24.png -share/doc/gimp/libgimpwidgets/stock-gravity-north-24.png -share/doc/gimp/libgimpwidgets/stock-gravity-north-east-24.png -share/doc/gimp/libgimpwidgets/stock-gravity-north-west-24.png -share/doc/gimp/libgimpwidgets/stock-gravity-south-24.png -share/doc/gimp/libgimpwidgets/stock-gravity-south-east-24.png -share/doc/gimp/libgimpwidgets/stock-gravity-south-west-24.png -share/doc/gimp/libgimpwidgets/stock-gravity-west-24.png -share/doc/gimp/libgimpwidgets/stock-grid-16.png -share/doc/gimp/libgimpwidgets/stock-hcenter-24.png -share/doc/gimp/libgimpwidgets/stock-hchain-24.png -share/doc/gimp/libgimpwidgets/stock-hchain-broken-24.png -share/doc/gimp/libgimpwidgets/stock-histogram-16.png -share/doc/gimp/libgimpwidgets/stock-histogram-22.png -share/doc/gimp/libgimpwidgets/stock-histogram-linear-16.png -share/doc/gimp/libgimpwidgets/stock-histogram-logarithmic-16.png -share/doc/gimp/libgimpwidgets/stock-image-16.png -share/doc/gimp/libgimpwidgets/stock-image-24.png -share/doc/gimp/libgimpwidgets/stock-image-32.png -share/doc/gimp/libgimpwidgets/stock-image-48.png -share/doc/gimp/libgimpwidgets/stock-images-16.png -share/doc/gimp/libgimpwidgets/stock-images-24.png -share/doc/gimp/libgimpwidgets/stock-info-16.png -share/doc/gimp/libgimpwidgets/stock-info-24.png -share/doc/gimp/libgimpwidgets/stock-info-64.png -share/doc/gimp/libgimpwidgets/stock-input-device-16.png -share/doc/gimp/libgimpwidgets/stock-input-device-22.png -share/doc/gimp/libgimpwidgets/stock-invert-16.png -share/doc/gimp/libgimpwidgets/stock-join-bevel-16.png -share/doc/gimp/libgimpwidgets/stock-join-miter-16.png -share/doc/gimp/libgimpwidgets/stock-join-round-16.png -share/doc/gimp/libgimpwidgets/stock-landscape-16.png -share/doc/gimp/libgimpwidgets/stock-landscape-22.png -share/doc/gimp/libgimpwidgets/stock-layer-16.png -share/doc/gimp/libgimpwidgets/stock-layer-24.png -share/doc/gimp/libgimpwidgets/stock-layer-32.png -share/doc/gimp/libgimpwidgets/stock-layer-48.png -share/doc/gimp/libgimpwidgets/stock-layer-mask-16.png -share/doc/gimp/libgimpwidgets/stock-layer-mask-24.png -share/doc/gimp/libgimpwidgets/stock-layer-mask-32.png -share/doc/gimp/libgimpwidgets/stock-layer-mask-48.png -share/doc/gimp/libgimpwidgets/stock-layer-to-imagesize-16.png -share/doc/gimp/libgimpwidgets/stock-layers-16.png -share/doc/gimp/libgimpwidgets/stock-layers-24.png -share/doc/gimp/libgimpwidgets/stock-letter-spacing-22.png -share/doc/gimp/libgimpwidgets/stock-line-spacing-22.png -share/doc/gimp/libgimpwidgets/stock-linked-12.png -share/doc/gimp/libgimpwidgets/stock-linked-20.png -share/doc/gimp/libgimpwidgets/stock-list-16.png -share/doc/gimp/libgimpwidgets/stock-menu-left-12.png -share/doc/gimp/libgimpwidgets/stock-menu-right-12.png -share/doc/gimp/libgimpwidgets/stock-merge-down-16.png -share/doc/gimp/libgimpwidgets/stock-move-to-screen-16.png -share/doc/gimp/libgimpwidgets/stock-move-to-screen-24.png -share/doc/gimp/libgimpwidgets/stock-navigation-16.png -share/doc/gimp/libgimpwidgets/stock-paste-as-new-16.png -share/doc/gimp/libgimpwidgets/stock-paste-into-16.png -share/doc/gimp/libgimpwidgets/stock-path-16.png -share/doc/gimp/libgimpwidgets/stock-path-22.png -share/doc/gimp/libgimpwidgets/stock-path-stroke-16.png -share/doc/gimp/libgimpwidgets/stock-paths-16.png -share/doc/gimp/libgimpwidgets/stock-paths-22.png -share/doc/gimp/libgimpwidgets/stock-plugin-16.png -share/doc/gimp/libgimpwidgets/stock-portrait-16.png -share/doc/gimp/libgimpwidgets/stock-portrait-22.png -share/doc/gimp/libgimpwidgets/stock-print-resolution-16.png -share/doc/gimp/libgimpwidgets/stock-print-resolution-24.png -share/doc/gimp/libgimpwidgets/stock-question-64.png -share/doc/gimp/libgimpwidgets/stock-quick-mask-off-12.png -share/doc/gimp/libgimpwidgets/stock-quick-mask-on-12.png -share/doc/gimp/libgimpwidgets/stock-reset-16.png -share/doc/gimp/libgimpwidgets/stock-reshow-filter-16.png -share/doc/gimp/libgimpwidgets/stock-resize-16.png -share/doc/gimp/libgimpwidgets/stock-rotate-180-16.png -share/doc/gimp/libgimpwidgets/stock-rotate-270-16.png -share/doc/gimp/libgimpwidgets/stock-rotate-90-16.png -share/doc/gimp/libgimpwidgets/stock-sample-point-16.png -share/doc/gimp/libgimpwidgets/stock-sample-point-24.png -share/doc/gimp/libgimpwidgets/stock-scale-16.png -share/doc/gimp/libgimpwidgets/stock-selection-16.png -share/doc/gimp/libgimpwidgets/stock-selection-add-16.png -share/doc/gimp/libgimpwidgets/stock-selection-all-16.png -share/doc/gimp/libgimpwidgets/stock-selection-border-16.png -share/doc/gimp/libgimpwidgets/stock-selection-grow-16.png -share/doc/gimp/libgimpwidgets/stock-selection-intersect-16.png -share/doc/gimp/libgimpwidgets/stock-selection-none-16.png -share/doc/gimp/libgimpwidgets/stock-selection-replace-16.png -share/doc/gimp/libgimpwidgets/stock-selection-shrink-16.png -share/doc/gimp/libgimpwidgets/stock-selection-stroke-16.png -share/doc/gimp/libgimpwidgets/stock-selection-subtract-16.png -share/doc/gimp/libgimpwidgets/stock-selection-to-channel-16.png -share/doc/gimp/libgimpwidgets/stock-selection-to-path-16.png -share/doc/gimp/libgimpwidgets/stock-shape-circle-16.png -share/doc/gimp/libgimpwidgets/stock-shape-diamond-16.png -share/doc/gimp/libgimpwidgets/stock-shape-square-16.png -share/doc/gimp/libgimpwidgets/stock-swap-colors-12.png -share/doc/gimp/libgimpwidgets/stock-template-16.png -share/doc/gimp/libgimpwidgets/stock-template-24.png -share/doc/gimp/libgimpwidgets/stock-text-dir-ltr-24.png -share/doc/gimp/libgimpwidgets/stock-text-dir-rtl-24.png -share/doc/gimp/libgimpwidgets/stock-text-layer-16.png -share/doc/gimp/libgimpwidgets/stock-text-layer-24.png -share/doc/gimp/libgimpwidgets/stock-text-layer-32.png -share/doc/gimp/libgimpwidgets/stock-text-layer-48.png -share/doc/gimp/libgimpwidgets/stock-texture-64.png -share/doc/gimp/libgimpwidgets/stock-toilet-paper-16.png -share/doc/gimp/libgimpwidgets/stock-toilet-paper-24.png -share/doc/gimp/libgimpwidgets/stock-tool-airbrush-16.png -share/doc/gimp/libgimpwidgets/stock-tool-airbrush-22.png -share/doc/gimp/libgimpwidgets/stock-tool-align-16.png -share/doc/gimp/libgimpwidgets/stock-tool-align-22.png -share/doc/gimp/libgimpwidgets/stock-tool-blend-16.png -share/doc/gimp/libgimpwidgets/stock-tool-blend-22.png -share/doc/gimp/libgimpwidgets/stock-tool-blur-16.png -share/doc/gimp/libgimpwidgets/stock-tool-blur-22.png -share/doc/gimp/libgimpwidgets/stock-tool-brightness-contrast-16.png -share/doc/gimp/libgimpwidgets/stock-tool-brightness-contrast-22.png -share/doc/gimp/libgimpwidgets/stock-tool-bucket-fill-16.png -share/doc/gimp/libgimpwidgets/stock-tool-bucket-fill-22.png -share/doc/gimp/libgimpwidgets/stock-tool-by-color-select-16.png -share/doc/gimp/libgimpwidgets/stock-tool-by-color-select-22.png -share/doc/gimp/libgimpwidgets/stock-tool-cage-16.png -share/doc/gimp/libgimpwidgets/stock-tool-cage-22.png -share/doc/gimp/libgimpwidgets/stock-tool-clone-16.png -share/doc/gimp/libgimpwidgets/stock-tool-clone-22.png -share/doc/gimp/libgimpwidgets/stock-tool-color-balance-16.png -share/doc/gimp/libgimpwidgets/stock-tool-color-balance-22.png -share/doc/gimp/libgimpwidgets/stock-tool-color-picker-16.png -share/doc/gimp/libgimpwidgets/stock-tool-color-picker-22.png -share/doc/gimp/libgimpwidgets/stock-tool-colorize-16.png -share/doc/gimp/libgimpwidgets/stock-tool-colorize-22.png -share/doc/gimp/libgimpwidgets/stock-tool-crop-16.png -share/doc/gimp/libgimpwidgets/stock-tool-crop-22.png -share/doc/gimp/libgimpwidgets/stock-tool-curves-16.png -share/doc/gimp/libgimpwidgets/stock-tool-curves-22.png -share/doc/gimp/libgimpwidgets/stock-tool-desaturate-16.png -share/doc/gimp/libgimpwidgets/stock-tool-desaturate-22.png -share/doc/gimp/libgimpwidgets/stock-tool-dodge-16.png -share/doc/gimp/libgimpwidgets/stock-tool-dodge-22.png -share/doc/gimp/libgimpwidgets/stock-tool-ellipse-select-16.png -share/doc/gimp/libgimpwidgets/stock-tool-ellipse-select-22.png -share/doc/gimp/libgimpwidgets/stock-tool-eraser-16.png -share/doc/gimp/libgimpwidgets/stock-tool-eraser-22.png -share/doc/gimp/libgimpwidgets/stock-tool-flip-16.png -share/doc/gimp/libgimpwidgets/stock-tool-flip-22.png -share/doc/gimp/libgimpwidgets/stock-tool-foreground-select-16.png -share/doc/gimp/libgimpwidgets/stock-tool-foreground-select-22.png -share/doc/gimp/libgimpwidgets/stock-tool-free-select-16.png -share/doc/gimp/libgimpwidgets/stock-tool-free-select-22.png -share/doc/gimp/libgimpwidgets/stock-tool-fuzzy-select-16.png -share/doc/gimp/libgimpwidgets/stock-tool-fuzzy-select-22.png -share/doc/gimp/libgimpwidgets/stock-tool-heal-16.png -share/doc/gimp/libgimpwidgets/stock-tool-heal-22.png -share/doc/gimp/libgimpwidgets/stock-tool-hue-saturation-16.png -share/doc/gimp/libgimpwidgets/stock-tool-hue-saturation-22.png -share/doc/gimp/libgimpwidgets/stock-tool-ink-16.png -share/doc/gimp/libgimpwidgets/stock-tool-ink-22.png -share/doc/gimp/libgimpwidgets/stock-tool-iscissors-16.png -share/doc/gimp/libgimpwidgets/stock-tool-iscissors-22.png -share/doc/gimp/libgimpwidgets/stock-tool-levels-16.png -share/doc/gimp/libgimpwidgets/stock-tool-levels-22.png -share/doc/gimp/libgimpwidgets/stock-tool-measure-16.png -share/doc/gimp/libgimpwidgets/stock-tool-measure-22.png -share/doc/gimp/libgimpwidgets/stock-tool-move-16.png -share/doc/gimp/libgimpwidgets/stock-tool-move-22.png -share/doc/gimp/libgimpwidgets/stock-tool-options-16.png -share/doc/gimp/libgimpwidgets/stock-tool-options-24.png -share/doc/gimp/libgimpwidgets/stock-tool-paintbrush-16.png -share/doc/gimp/libgimpwidgets/stock-tool-paintbrush-22.png -share/doc/gimp/libgimpwidgets/stock-tool-path-16.png -share/doc/gimp/libgimpwidgets/stock-tool-path-22.png -share/doc/gimp/libgimpwidgets/stock-tool-pencil-16.png -share/doc/gimp/libgimpwidgets/stock-tool-pencil-22.png -share/doc/gimp/libgimpwidgets/stock-tool-perspective-16.png -share/doc/gimp/libgimpwidgets/stock-tool-perspective-22.png -share/doc/gimp/libgimpwidgets/stock-tool-perspective-clone-16.png -share/doc/gimp/libgimpwidgets/stock-tool-perspective-clone-22.png -share/doc/gimp/libgimpwidgets/stock-tool-posterize-16.png -share/doc/gimp/libgimpwidgets/stock-tool-posterize-22.png -share/doc/gimp/libgimpwidgets/stock-tool-preset-16.png -share/doc/gimp/libgimpwidgets/stock-tool-preset-22.png -share/doc/gimp/libgimpwidgets/stock-tool-rect-select-16.png -share/doc/gimp/libgimpwidgets/stock-tool-rect-select-22.png -share/doc/gimp/libgimpwidgets/stock-tool-rotate-16.png -share/doc/gimp/libgimpwidgets/stock-tool-rotate-22.png -share/doc/gimp/libgimpwidgets/stock-tool-scale-16.png -share/doc/gimp/libgimpwidgets/stock-tool-scale-22.png -share/doc/gimp/libgimpwidgets/stock-tool-shear-16.png -share/doc/gimp/libgimpwidgets/stock-tool-shear-22.png -share/doc/gimp/libgimpwidgets/stock-tool-smudge-16.png -share/doc/gimp/libgimpwidgets/stock-tool-smudge-22.png -share/doc/gimp/libgimpwidgets/stock-tool-text-16.png -share/doc/gimp/libgimpwidgets/stock-tool-text-22.png -share/doc/gimp/libgimpwidgets/stock-tool-threshold-16.png -share/doc/gimp/libgimpwidgets/stock-tool-threshold-22.png -share/doc/gimp/libgimpwidgets/stock-tool-zoom-16.png -share/doc/gimp/libgimpwidgets/stock-tool-zoom-22.png -share/doc/gimp/libgimpwidgets/stock-tools-16.png -share/doc/gimp/libgimpwidgets/stock-tools-24.png -share/doc/gimp/libgimpwidgets/stock-transparency-16.png -share/doc/gimp/libgimpwidgets/stock-transparency-24.png -share/doc/gimp/libgimpwidgets/stock-undo-history-16.png -share/doc/gimp/libgimpwidgets/stock-undo-history-24.png -share/doc/gimp/libgimpwidgets/stock-user-manual-16.png -share/doc/gimp/libgimpwidgets/stock-user-manual-24.png -share/doc/gimp/libgimpwidgets/stock-user-manual-32.png -share/doc/gimp/libgimpwidgets/stock-user-manual-64.png -share/doc/gimp/libgimpwidgets/stock-vcenter-24.png -share/doc/gimp/libgimpwidgets/stock-vchain-24.png -share/doc/gimp/libgimpwidgets/stock-vchain-broken-24.png -share/doc/gimp/libgimpwidgets/stock-video-16.png -share/doc/gimp/libgimpwidgets/stock-video-24.png -share/doc/gimp/libgimpwidgets/stock-warning-16.png -share/doc/gimp/libgimpwidgets/stock-warning-24.png -share/doc/gimp/libgimpwidgets/stock-warning-64.png -share/doc/gimp/libgimpwidgets/stock-web-16.png -share/doc/gimp/libgimpwidgets/stock-web-24.png -share/doc/gimp/libgimpwidgets/stock-wilber-16.png -share/doc/gimp/libgimpwidgets/stock-wilber-22.png -share/doc/gimp/libgimpwidgets/stock-wilber-64.png -share/doc/gimp/libgimpwidgets/stock-wilber-eek-64.png -share/doc/gimp/libgimpwidgets/stock-zoom-follow-window-12.png share/doc/gimp/libgimpwidgets/style.css share/doc/gimp/libgimpwidgets/up-insensitive.png share/doc/gimp/libgimpwidgets/up.png @@ -1131,12 +1063,11 @@ share/gimp/brushes/Basic/Hardness-075.vbr share/gimp/brushes/Basic/Hardness-100.vbr share/gimp/brushes/Basic/Star.vbr share/gimp/brushes/Basic/pixel.gbr +share/gimp/brushes/Fun/GEGL-goat.gih +share/gimp/brushes/Fun/Wilber.gih +share/gimp/brushes/Fun/pepper.gbr share/gimp/brushes/Legacy/confetti.gbr share/gimp/brushes/Legacy/confetti.gih -share/gimp/brushes/Legacy/dunes.gbr -share/gimp/brushes/Legacy/galaxy-big.gbr -share/gimp/brushes/Legacy/galaxy.gbr -share/gimp/brushes/Legacy/pepper.gbr share/gimp/brushes/Legacy/vine.gih share/gimp/brushes/Media/Acrylic-01.gih share/gimp/brushes/Media/Acrylic-02.gih @@ -1154,9 +1085,12 @@ share/gimp/brushes/Sketch/Chalk-02.gih share/gimp/brushes/Sketch/Chalk-03.gih share/gimp/brushes/Sketch/Charcoal-01.gbr share/gimp/brushes/Sketch/Charcoal-02.gbr +share/gimp/brushes/Sketch/Charcoal-03.gih share/gimp/brushes/Sketch/Pencil-01.gih share/gimp/brushes/Sketch/Pencil-02.gih +share/gimp/brushes/Sketch/Pencil-03.gih share/gimp/brushes/Sketch/Pencil-Scratch.gbr +share/gimp/brushes/Splatters/Grunge-01.gih share/gimp/brushes/Splatters/Sparks-Hose.gih share/gimp/brushes/Splatters/Splats-01.gih share/gimp/brushes/Splatters/Splats-02.gih @@ -1165,8 +1099,9 @@ share/gimp/brushes/Splatters/Sponge-02.gbr share/gimp/brushes/Texture/Cell-01.gbr share/gimp/brushes/Texture/Cell-02.gbr share/gimp/brushes/Texture/Grass.gih +share/gimp/brushes/Texture/Hatch-Pen-01.gbr share/gimp/brushes/Texture/Smoke.gbr -share/gimp/brushes/Texture/Structure.gbr +share/gimp/brushes/Texture/Stone-Work-01.gih share/gimp/brushes/Texture/Texture-01.gbr share/gimp/brushes/Texture/Texture-02.gbr share/gimp/brushes/Texture/Texture-Hose-01.gih @@ -1210,7 +1145,11 @@ share/gimp/brushes/gimp-obsolete-files/Grass1.gih share/gimp/brushes/gimp-obsolete-files/SketchBrush-16.gih share/gimp/brushes/gimp-obsolete-files/SketchBrush-32.gih share/gimp/brushes/gimp-obsolete-files/SketchBrush-64.gih +share/gimp/brushes/gimp-obsolete-files/Structure.gbr +share/gimp/brushes/gimp-obsolete-files/dunes.gbr share/gimp/brushes/gimp-obsolete-files/feltpen.gih +share/gimp/brushes/gimp-obsolete-files/galaxy-big.gbr +share/gimp/brushes/gimp-obsolete-files/galaxy.gbr share/gimp/brushes/gimp-obsolete-files/galaxy_small.gbr share/gimp/brushes/gimp-obsolete-files/pepper.gbr share/gimp/brushes/gimp-obsolete-files/pixel.gbr @@ -1222,6 +1161,7 @@ share/gimp/dynamics/Basic/Pen-Generic.gdyn share/gimp/dynamics/Basic/Pencil-Generic.gdyn share/gimp/dynamics/Basic/Pencil-Shader.gdyn share/gimp/dynamics/Basic/Pressure-Opacity.gdyn +share/gimp/dynamics/Basic/Pressure-Size.gdyn share/gimp/dynamics/Color-From-Gradient.gdyn share/gimp/dynamics/Dynamics-Off.gdyn share/gimp/dynamics/FX/Confetti.gdyn @@ -1232,6 +1172,8 @@ share/gimp/dynamics/Random-Color.gdyn share/gimp/dynamics/Tilt-Angle.gdyn share/gimp/dynamics/Track-Direction.gdyn share/gimp/dynamics/Velocity-Tapering.gdyn +share/gimp/file-raw/file-darktable-export-on-exit.lua +share/gimp/file-raw/file-darktable-get-size.lua share/gimp/fractalexplorer/Asteroid_Field share/gimp/fractalexplorer/Bar_Code_Label share/gimp/fractalexplorer/Beauty_of_Nature @@ -1311,7 +1253,6 @@ share/gimp/gimpressionist/Brushes/grad02.pgm share/gimp/gimpressionist/Brushes/grad03.pgm share/gimp/gimpressionist/Brushes/heart.ppm share/gimp/gimpressionist/Brushes/leaf01.pgm -share/gimp/gimpressionist/Brushes/paintbrush.pgm share/gimp/gimpressionist/Brushes/paintbrush01.pgm share/gimp/gimpressionist/Brushes/paintbrush02.pgm share/gimp/gimpressionist/Brushes/paintbrush03.pgm @@ -1454,6 +1395,1957 @@ share/gimp/gradients/gimp-obsolete-files/Mexican_flag.ggr share/gimp/gradients/gimp-obsolete-files/Mexican_flag_smooth.ggr share/gimp/gradients/gimp-obsolete-files/Romanian_flag.ggr share/gimp/gradients/gimp-obsolete-files/Romanian_flag_smooth.ggr +share/gimp/icons/Color/24x24/apps/dialog-information.svg +share/gimp/icons/Color/24x24/apps/document-print.svg +share/gimp/icons/Color/24x24/apps/gimp-business-card.svg +share/gimp/icons/Color/24x24/apps/gimp-center.svg +share/gimp/icons/Color/24x24/apps/gimp-channel-alpha.svg +share/gimp/icons/Color/24x24/apps/gimp-channel-blue.svg +share/gimp/icons/Color/24x24/apps/gimp-channel-gray.svg +share/gimp/icons/Color/24x24/apps/gimp-channel-green.svg +share/gimp/icons/Color/24x24/apps/gimp-channel-indexed.svg +share/gimp/icons/Color/24x24/apps/gimp-channel-red.svg +share/gimp/icons/Color/24x24/apps/gimp-channel.svg +share/gimp/icons/Color/24x24/apps/gimp-channels.svg +share/gimp/icons/Color/24x24/apps/gimp-char-picker.svg +share/gimp/icons/Color/24x24/apps/gimp-color-space-linear.svg +share/gimp/icons/Color/24x24/apps/gimp-color-space-non-linear.svg +share/gimp/icons/Color/24x24/apps/gimp-color-space-perceptual.svg +share/gimp/icons/Color/24x24/apps/gimp-colormap.svg +share/gimp/icons/Color/24x24/apps/gimp-controller-keyboard.svg +share/gimp/icons/Color/24x24/apps/gimp-controller-linux-input.svg +share/gimp/icons/Color/24x24/apps/gimp-controller-midi.svg +share/gimp/icons/Color/24x24/apps/gimp-controller-wheel.svg +share/gimp/icons/Color/24x24/apps/gimp-controller.svg +share/gimp/icons/Color/24x24/apps/gimp-cursor.svg +share/gimp/icons/Color/24x24/apps/gimp-device-status.svg +share/gimp/icons/Color/24x24/apps/gimp-display-filter-clip-warning.svg +share/gimp/icons/Color/24x24/apps/gimp-display-filter-colorblind.svg +share/gimp/icons/Color/24x24/apps/gimp-display-filter-contrast.svg +share/gimp/icons/Color/24x24/apps/gimp-display-filter-gamma.svg +share/gimp/icons/Color/24x24/apps/gimp-display-filter-lcms.svg +share/gimp/icons/Color/24x24/apps/gimp-display-filter-proof.svg +share/gimp/icons/Color/24x24/apps/gimp-display-filter.svg +share/gimp/icons/Color/24x24/apps/gimp-display.svg +share/gimp/icons/Color/24x24/apps/gimp-dynamics.svg +share/gimp/icons/Color/24x24/apps/gimp-error.svg +share/gimp/icons/Color/24x24/apps/gimp-floating-selection.svg +share/gimp/icons/Color/24x24/apps/gimp-gegl.svg +share/gimp/icons/Color/24x24/apps/gimp-grid.svg +share/gimp/icons/Color/24x24/apps/gimp-histogram.svg +share/gimp/icons/Color/24x24/apps/gimp-image.svg +share/gimp/icons/Color/24x24/apps/gimp-images.svg +share/gimp/icons/Color/24x24/apps/gimp-info.svg +share/gimp/icons/Color/24x24/apps/gimp-landscape.svg +share/gimp/icons/Color/24x24/apps/gimp-layer-mask.svg +share/gimp/icons/Color/24x24/apps/gimp-layer.svg +share/gimp/icons/Color/24x24/apps/gimp-layers.svg +share/gimp/icons/Color/24x24/apps/gimp-letter-spacing.svg +share/gimp/icons/Color/24x24/apps/gimp-line-spacing.svg +share/gimp/icons/Color/24x24/apps/gimp-move-to-screen.svg +share/gimp/icons/Color/24x24/apps/gimp-navigation.svg +share/gimp/icons/Color/24x24/apps/gimp-path.svg +share/gimp/icons/Color/24x24/apps/gimp-paths.svg +share/gimp/icons/Color/24x24/apps/gimp-portrait.svg +share/gimp/icons/Color/24x24/apps/gimp-prefs-color-management.svg +share/gimp/icons/Color/24x24/apps/gimp-prefs-controllers.svg +share/gimp/icons/Color/24x24/apps/gimp-prefs-default-comment.svg +share/gimp/icons/Color/24x24/apps/gimp-prefs-default-grid.svg +share/gimp/icons/Color/24x24/apps/gimp-prefs-display.svg +share/gimp/icons/Color/24x24/apps/gimp-prefs-folders-brushes.svg +share/gimp/icons/Color/24x24/apps/gimp-prefs-folders-dynamics.svg +share/gimp/icons/Color/24x24/apps/gimp-prefs-folders-environ.svg +share/gimp/icons/Color/24x24/apps/gimp-prefs-folders-fonts.svg +share/gimp/icons/Color/24x24/apps/gimp-prefs-folders-gradients.svg +share/gimp/icons/Color/24x24/apps/gimp-prefs-folders-icon-themes.svg +share/gimp/icons/Color/24x24/apps/gimp-prefs-folders-interp.svg +share/gimp/icons/Color/24x24/apps/gimp-prefs-folders-modules.svg +share/gimp/icons/Color/24x24/apps/gimp-prefs-folders-mypaint-brushes.svg +share/gimp/icons/Color/24x24/apps/gimp-prefs-folders-palettes.svg +share/gimp/icons/Color/24x24/apps/gimp-prefs-folders-patterns.svg +share/gimp/icons/Color/24x24/apps/gimp-prefs-folders-plug-ins.svg +share/gimp/icons/Color/24x24/apps/gimp-prefs-folders-scripts.svg +share/gimp/icons/Color/24x24/apps/gimp-prefs-folders-themes.svg +share/gimp/icons/Color/24x24/apps/gimp-prefs-folders-tool-plug-ins.svg +share/gimp/icons/Color/24x24/apps/gimp-prefs-folders-tool-presets.svg +share/gimp/icons/Color/24x24/apps/gimp-prefs-folders-tools.svg +share/gimp/icons/Color/24x24/apps/gimp-prefs-folders.svg +share/gimp/icons/Color/24x24/apps/gimp-prefs-help-system.svg +share/gimp/icons/Color/24x24/apps/gimp-prefs-icon-theme.svg +share/gimp/icons/Color/24x24/apps/gimp-prefs-image-title.svg +share/gimp/icons/Color/24x24/apps/gimp-prefs-image-windows-appearance.svg +share/gimp/icons/Color/24x24/apps/gimp-prefs-image-windows-snapping.svg +share/gimp/icons/Color/24x24/apps/gimp-prefs-image-windows.svg +share/gimp/icons/Color/24x24/apps/gimp-prefs-import-export.svg +share/gimp/icons/Color/24x24/apps/gimp-prefs-input-devices.svg +share/gimp/icons/Color/24x24/apps/gimp-prefs-interface.svg +share/gimp/icons/Color/24x24/apps/gimp-prefs-new-image.svg +share/gimp/icons/Color/24x24/apps/gimp-prefs-playground.svg +share/gimp/icons/Color/24x24/apps/gimp-prefs-session.svg +share/gimp/icons/Color/24x24/apps/gimp-prefs-system-resources.svg +share/gimp/icons/Color/24x24/apps/gimp-prefs-theme.svg +share/gimp/icons/Color/24x24/apps/gimp-prefs-tool-options.svg +share/gimp/icons/Color/24x24/apps/gimp-prefs-toolbox.svg +share/gimp/icons/Color/24x24/apps/gimp-prefs-window-management.svg +share/gimp/icons/Color/24x24/apps/gimp-question.svg +share/gimp/icons/Color/24x24/apps/gimp-resize.svg +share/gimp/icons/Color/24x24/apps/gimp-sample-point.svg +share/gimp/icons/Color/24x24/apps/gimp-scale.svg +share/gimp/icons/Color/24x24/apps/gimp-selection.svg +share/gimp/icons/Color/24x24/apps/gimp-smartphone.svg +share/gimp/icons/Color/24x24/apps/gimp-symmetry.svg +share/gimp/icons/Color/24x24/apps/gimp-template.svg +share/gimp/icons/Color/24x24/apps/gimp-text-layer.svg +share/gimp/icons/Color/24x24/apps/gimp-tool-airbrush.svg +share/gimp/icons/Color/24x24/apps/gimp-tool-align.svg +share/gimp/icons/Color/24x24/apps/gimp-tool-blur.svg +share/gimp/icons/Color/24x24/apps/gimp-tool-brightness-contrast.svg +share/gimp/icons/Color/24x24/apps/gimp-tool-bucket-fill.svg +share/gimp/icons/Color/24x24/apps/gimp-tool-by-color-select.svg +share/gimp/icons/Color/24x24/apps/gimp-tool-cage.svg +share/gimp/icons/Color/24x24/apps/gimp-tool-clone.svg +share/gimp/icons/Color/24x24/apps/gimp-tool-color-balance.svg +share/gimp/icons/Color/24x24/apps/gimp-tool-color-picker.svg +share/gimp/icons/Color/24x24/apps/gimp-tool-colorize.svg +share/gimp/icons/Color/24x24/apps/gimp-tool-crop.svg +share/gimp/icons/Color/24x24/apps/gimp-tool-curves.svg +share/gimp/icons/Color/24x24/apps/gimp-tool-desaturate.svg +share/gimp/icons/Color/24x24/apps/gimp-tool-dodge.svg +share/gimp/icons/Color/24x24/apps/gimp-tool-ellipse-select.svg +share/gimp/icons/Color/24x24/apps/gimp-tool-eraser.svg +share/gimp/icons/Color/24x24/apps/gimp-tool-exposure.svg +share/gimp/icons/Color/24x24/apps/gimp-tool-flip.svg +share/gimp/icons/Color/24x24/apps/gimp-tool-foreground-select.svg +share/gimp/icons/Color/24x24/apps/gimp-tool-free-select.svg +share/gimp/icons/Color/24x24/apps/gimp-tool-fuzzy-select.svg +share/gimp/icons/Color/24x24/apps/gimp-tool-gradient.svg +share/gimp/icons/Color/24x24/apps/gimp-tool-handle-transform.svg +share/gimp/icons/Color/24x24/apps/gimp-tool-heal.svg +share/gimp/icons/Color/24x24/apps/gimp-tool-hue-saturation.svg +share/gimp/icons/Color/24x24/apps/gimp-tool-ink.svg +share/gimp/icons/Color/24x24/apps/gimp-tool-iscissors.svg +share/gimp/icons/Color/24x24/apps/gimp-tool-levels.svg +share/gimp/icons/Color/24x24/apps/gimp-tool-measure.svg +share/gimp/icons/Color/24x24/apps/gimp-tool-mypaint-brush.svg +share/gimp/icons/Color/24x24/apps/gimp-tool-n-point-deformation.svg +share/gimp/icons/Color/24x24/apps/gimp-tool-options.svg +share/gimp/icons/Color/24x24/apps/gimp-tool-paintbrush.svg +share/gimp/icons/Color/24x24/apps/gimp-tool-path.svg +share/gimp/icons/Color/24x24/apps/gimp-tool-pencil.svg +share/gimp/icons/Color/24x24/apps/gimp-tool-perspective-clone.svg +share/gimp/icons/Color/24x24/apps/gimp-tool-perspective.svg +share/gimp/icons/Color/24x24/apps/gimp-tool-posterize.svg +share/gimp/icons/Color/24x24/apps/gimp-tool-preset.svg +share/gimp/icons/Color/24x24/apps/gimp-tool-rect-select.svg +share/gimp/icons/Color/24x24/apps/gimp-tool-rotate.svg +share/gimp/icons/Color/24x24/apps/gimp-tool-scale.svg +share/gimp/icons/Color/24x24/apps/gimp-tool-seamless-clone.svg +share/gimp/icons/Color/24x24/apps/gimp-tool-shadows-highlights.svg +share/gimp/icons/Color/24x24/apps/gimp-tool-shear.svg +share/gimp/icons/Color/24x24/apps/gimp-tool-smudge.svg +share/gimp/icons/Color/24x24/apps/gimp-tool-text.svg +share/gimp/icons/Color/24x24/apps/gimp-tool-threshold.svg +share/gimp/icons/Color/24x24/apps/gimp-tool-unified-transform.svg +share/gimp/icons/Color/24x24/apps/gimp-tool-warp.svg +share/gimp/icons/Color/24x24/apps/gimp-tool-zoom.svg +share/gimp/icons/Color/24x24/apps/gimp-tools.svg +share/gimp/icons/Color/24x24/apps/gimp-transparency.svg +share/gimp/icons/Color/24x24/apps/gimp-undo-history.svg +share/gimp/icons/Color/24x24/apps/gimp-user-manual.svg +share/gimp/icons/Color/24x24/apps/gimp-video.svg +share/gimp/icons/Color/24x24/apps/gimp-warning.svg +share/gimp/icons/Color/24x24/apps/gimp-web.svg +share/gimp/icons/Color/24x24/apps/gimp-wilber.svg +share/gimp/icons/Color/24x24/apps/gtk-select-color.svg +share/gimp/icons/Color/24x24/apps/media-floppy.svg +share/gimp/icons/Color/24x24/apps/media-optical.svg +share/gimp/icons/Color/64x64/apps/gimp-error.png +share/gimp/icons/Color/64x64/apps/gimp-frame.png +share/gimp/icons/Color/64x64/apps/gimp-info.png +share/gimp/icons/Color/64x64/apps/gimp-question.png +share/gimp/icons/Color/64x64/apps/gimp-texture.png +share/gimp/icons/Color/64x64/apps/gimp-warning.png +share/gimp/icons/Color/index.theme +share/gimp/icons/Color/scalable/apps/dialog-information.svg +share/gimp/icons/Color/scalable/apps/document-new.svg +share/gimp/icons/Color/scalable/apps/document-open-recent.svg +share/gimp/icons/Color/scalable/apps/document-open.svg +share/gimp/icons/Color/scalable/apps/document-print.svg +share/gimp/icons/Color/scalable/apps/document-revert.svg +share/gimp/icons/Color/scalable/apps/document-save-as.svg +share/gimp/icons/Color/scalable/apps/document-save.svg +share/gimp/icons/Color/scalable/apps/edit-clear.svg +share/gimp/icons/Color/scalable/apps/edit-copy.svg +share/gimp/icons/Color/scalable/apps/edit-cut.svg +share/gimp/icons/Color/scalable/apps/edit-delete.svg +share/gimp/icons/Color/scalable/apps/edit-paste.svg +share/gimp/icons/Color/scalable/apps/edit-redo.svg +share/gimp/icons/Color/scalable/apps/edit-undo.svg +share/gimp/icons/Color/scalable/apps/folder-new.svg +share/gimp/icons/Color/scalable/apps/folder.svg +share/gimp/icons/Color/scalable/apps/format-indent-more.svg +share/gimp/icons/Color/scalable/apps/format-justify-center.svg +share/gimp/icons/Color/scalable/apps/format-justify-fill.svg +share/gimp/icons/Color/scalable/apps/format-justify-left.svg +share/gimp/icons/Color/scalable/apps/format-justify-right.svg +share/gimp/icons/Color/scalable/apps/gimp-anchor.svg +share/gimp/icons/Color/scalable/apps/gimp-attach.svg +share/gimp/icons/Color/scalable/apps/gimp-business-card.svg +share/gimp/icons/Color/scalable/apps/gimp-cap-butt.svg +share/gimp/icons/Color/scalable/apps/gimp-cap-round.svg +share/gimp/icons/Color/scalable/apps/gimp-cap-square.svg +share/gimp/icons/Color/scalable/apps/gimp-center.svg +share/gimp/icons/Color/scalable/apps/gimp-channel-alpha.svg +share/gimp/icons/Color/scalable/apps/gimp-channel-blue.svg +share/gimp/icons/Color/scalable/apps/gimp-channel-gray.svg +share/gimp/icons/Color/scalable/apps/gimp-channel-green.svg +share/gimp/icons/Color/scalable/apps/gimp-channel-indexed.svg +share/gimp/icons/Color/scalable/apps/gimp-channel-red.svg +share/gimp/icons/Color/scalable/apps/gimp-channel.svg +share/gimp/icons/Color/scalable/apps/gimp-channels.svg +share/gimp/icons/Color/scalable/apps/gimp-char-picker.svg +share/gimp/icons/Color/scalable/apps/gimp-clipboard.svg +share/gimp/icons/Color/scalable/apps/gimp-close-all.svg +share/gimp/icons/Color/scalable/apps/gimp-close.svg +share/gimp/icons/Color/scalable/apps/gimp-color-cmyk.svg +share/gimp/icons/Color/scalable/apps/gimp-color-pick-from-screen.svg +share/gimp/icons/Color/scalable/apps/gimp-color-picker-black.svg +share/gimp/icons/Color/scalable/apps/gimp-color-picker-gray.svg +share/gimp/icons/Color/scalable/apps/gimp-color-picker-white.svg +share/gimp/icons/Color/scalable/apps/gimp-color-space-linear.svg +share/gimp/icons/Color/scalable/apps/gimp-color-space-non-linear.svg +share/gimp/icons/Color/scalable/apps/gimp-color-space-perceptual.svg +share/gimp/icons/Color/scalable/apps/gimp-color-triangle.svg +share/gimp/icons/Color/scalable/apps/gimp-color-water.svg +share/gimp/icons/Color/scalable/apps/gimp-colormap.svg +share/gimp/icons/Color/scalable/apps/gimp-controller-keyboard.svg +share/gimp/icons/Color/scalable/apps/gimp-controller-linux-input.svg +share/gimp/icons/Color/scalable/apps/gimp-controller-midi.svg +share/gimp/icons/Color/scalable/apps/gimp-controller-wheel.svg +share/gimp/icons/Color/scalable/apps/gimp-controller.svg +share/gimp/icons/Color/scalable/apps/gimp-convert-grayscale.svg +share/gimp/icons/Color/scalable/apps/gimp-convert-indexed.svg +share/gimp/icons/Color/scalable/apps/gimp-convert-rgb.svg +share/gimp/icons/Color/scalable/apps/gimp-cursor.svg +share/gimp/icons/Color/scalable/apps/gimp-curve-free.svg +share/gimp/icons/Color/scalable/apps/gimp-curve-smooth.svg +share/gimp/icons/Color/scalable/apps/gimp-dashboard.svg +share/gimp/icons/Color/scalable/apps/gimp-default-colors.svg +share/gimp/icons/Color/scalable/apps/gimp-detach.svg +share/gimp/icons/Color/scalable/apps/gimp-device-status.svg +share/gimp/icons/Color/scalable/apps/gimp-display-filter-clip-warning.svg +share/gimp/icons/Color/scalable/apps/gimp-display-filter-colorblind.svg +share/gimp/icons/Color/scalable/apps/gimp-display-filter-contrast.svg +share/gimp/icons/Color/scalable/apps/gimp-display-filter-gamma.svg +share/gimp/icons/Color/scalable/apps/gimp-display-filter-lcms.svg +share/gimp/icons/Color/scalable/apps/gimp-display-filter-proof.svg +share/gimp/icons/Color/scalable/apps/gimp-display-filter.svg +share/gimp/icons/Color/scalable/apps/gimp-display.svg +share/gimp/icons/Color/scalable/apps/gimp-duplicate.svg +share/gimp/icons/Color/scalable/apps/gimp-dynamics.svg +share/gimp/icons/Color/scalable/apps/gimp-error.svg +share/gimp/icons/Color/scalable/apps/gimp-file-manager.svg +share/gimp/icons/Color/scalable/apps/gimp-flip-horizontal.svg +share/gimp/icons/Color/scalable/apps/gimp-flip-vertical.svg +share/gimp/icons/Color/scalable/apps/gimp-floating-selection.svg +share/gimp/icons/Color/scalable/apps/gimp-gegl.svg +share/gimp/icons/Color/scalable/apps/gimp-gradient-bilinear.svg +share/gimp/icons/Color/scalable/apps/gimp-gradient-conical-asymmetric.svg +share/gimp/icons/Color/scalable/apps/gimp-gradient-conical-symmetric.svg +share/gimp/icons/Color/scalable/apps/gimp-gradient-linear.svg +share/gimp/icons/Color/scalable/apps/gimp-gradient-radial.svg +share/gimp/icons/Color/scalable/apps/gimp-gradient-shapeburst-angular.svg +share/gimp/icons/Color/scalable/apps/gimp-gradient-shapeburst-dimpled.svg +share/gimp/icons/Color/scalable/apps/gimp-gradient-shapeburst-spherical.svg +share/gimp/icons/Color/scalable/apps/gimp-gradient-spiral-anticlockwise.svg +share/gimp/icons/Color/scalable/apps/gimp-gradient-spiral-clockwise.svg +share/gimp/icons/Color/scalable/apps/gimp-gradient-square.svg +share/gimp/icons/Color/scalable/apps/gimp-gravity-east.svg +share/gimp/icons/Color/scalable/apps/gimp-gravity-north-east.svg +share/gimp/icons/Color/scalable/apps/gimp-gravity-north-west.svg +share/gimp/icons/Color/scalable/apps/gimp-gravity-north.svg +share/gimp/icons/Color/scalable/apps/gimp-gravity-south-east.svg +share/gimp/icons/Color/scalable/apps/gimp-gravity-south-west.svg +share/gimp/icons/Color/scalable/apps/gimp-gravity-south.svg +share/gimp/icons/Color/scalable/apps/gimp-gravity-west.svg +share/gimp/icons/Color/scalable/apps/gimp-grid.svg +share/gimp/icons/Color/scalable/apps/gimp-group-layer.svg +share/gimp/icons/Color/scalable/apps/gimp-hcenter.svg +share/gimp/icons/Color/scalable/apps/gimp-hchain-broken.svg +share/gimp/icons/Color/scalable/apps/gimp-hchain.svg +share/gimp/icons/Color/scalable/apps/gimp-hfill.svg +share/gimp/icons/Color/scalable/apps/gimp-histogram-linear.svg +share/gimp/icons/Color/scalable/apps/gimp-histogram-logarithmic.svg +share/gimp/icons/Color/scalable/apps/gimp-histogram.svg +share/gimp/icons/Color/scalable/apps/gimp-image-open.svg +share/gimp/icons/Color/scalable/apps/gimp-image-reload.svg +share/gimp/icons/Color/scalable/apps/gimp-image.svg +share/gimp/icons/Color/scalable/apps/gimp-images.svg +share/gimp/icons/Color/scalable/apps/gimp-info.svg +share/gimp/icons/Color/scalable/apps/gimp-input-device.svg +share/gimp/icons/Color/scalable/apps/gimp-invert.svg +share/gimp/icons/Color/scalable/apps/gimp-join-bevel.svg +share/gimp/icons/Color/scalable/apps/gimp-join-miter.svg +share/gimp/icons/Color/scalable/apps/gimp-join-round.svg +share/gimp/icons/Color/scalable/apps/gimp-landscape.svg +share/gimp/icons/Color/scalable/apps/gimp-layer-mask.svg +share/gimp/icons/Color/scalable/apps/gimp-layer-to-imagesize.svg +share/gimp/icons/Color/scalable/apps/gimp-layer.svg +share/gimp/icons/Color/scalable/apps/gimp-layers.svg +share/gimp/icons/Color/scalable/apps/gimp-letter-spacing.svg +share/gimp/icons/Color/scalable/apps/gimp-line-spacing.svg +share/gimp/icons/Color/scalable/apps/gimp-linked.svg +share/gimp/icons/Color/scalable/apps/gimp-list.svg +share/gimp/icons/Color/scalable/apps/gimp-menu-left.svg +share/gimp/icons/Color/scalable/apps/gimp-menu-right.svg +share/gimp/icons/Color/scalable/apps/gimp-merge-down.svg +share/gimp/icons/Color/scalable/apps/gimp-move-to-screen.svg +share/gimp/icons/Color/scalable/apps/gimp-navigation.svg +share/gimp/icons/Color/scalable/apps/gimp-paste-as-new.svg +share/gimp/icons/Color/scalable/apps/gimp-paste-into.svg +share/gimp/icons/Color/scalable/apps/gimp-path-stroke.svg +share/gimp/icons/Color/scalable/apps/gimp-path.svg +share/gimp/icons/Color/scalable/apps/gimp-paths.svg +share/gimp/icons/Color/scalable/apps/gimp-pattern.svg +share/gimp/icons/Color/scalable/apps/gimp-plugin.svg +share/gimp/icons/Color/scalable/apps/gimp-portrait.svg +share/gimp/icons/Color/scalable/apps/gimp-prefs-color-management.svg +share/gimp/icons/Color/scalable/apps/gimp-prefs-controllers.svg +share/gimp/icons/Color/scalable/apps/gimp-prefs-default-comment.svg +share/gimp/icons/Color/scalable/apps/gimp-prefs-default-grid.svg +share/gimp/icons/Color/scalable/apps/gimp-prefs-display.svg +share/gimp/icons/Color/scalable/apps/gimp-prefs-folders-brushes.svg +share/gimp/icons/Color/scalable/apps/gimp-prefs-folders-dynamics.svg +share/gimp/icons/Color/scalable/apps/gimp-prefs-folders-environ.svg +share/gimp/icons/Color/scalable/apps/gimp-prefs-folders-fonts.svg +share/gimp/icons/Color/scalable/apps/gimp-prefs-folders-gradients.svg +share/gimp/icons/Color/scalable/apps/gimp-prefs-folders-icon-themes.svg +share/gimp/icons/Color/scalable/apps/gimp-prefs-folders-interp.svg +share/gimp/icons/Color/scalable/apps/gimp-prefs-folders-modules.svg +share/gimp/icons/Color/scalable/apps/gimp-prefs-folders-mypaint-brushes.svg +share/gimp/icons/Color/scalable/apps/gimp-prefs-folders-palettes.svg +share/gimp/icons/Color/scalable/apps/gimp-prefs-folders-patterns.svg +share/gimp/icons/Color/scalable/apps/gimp-prefs-folders-plug-ins.svg +share/gimp/icons/Color/scalable/apps/gimp-prefs-folders-scripts.svg +share/gimp/icons/Color/scalable/apps/gimp-prefs-folders-themes.svg +share/gimp/icons/Color/scalable/apps/gimp-prefs-folders-tool-plug-ins.svg +share/gimp/icons/Color/scalable/apps/gimp-prefs-folders-tool-presets.svg +share/gimp/icons/Color/scalable/apps/gimp-prefs-folders-tools.svg +share/gimp/icons/Color/scalable/apps/gimp-prefs-folders.svg +share/gimp/icons/Color/scalable/apps/gimp-prefs-help-system.svg +share/gimp/icons/Color/scalable/apps/gimp-prefs-icon-theme.svg +share/gimp/icons/Color/scalable/apps/gimp-prefs-image-title.svg +share/gimp/icons/Color/scalable/apps/gimp-prefs-image-windows-appearance.svg +share/gimp/icons/Color/scalable/apps/gimp-prefs-image-windows-snapping.svg +share/gimp/icons/Color/scalable/apps/gimp-prefs-image-windows.svg +share/gimp/icons/Color/scalable/apps/gimp-prefs-import-export.svg +share/gimp/icons/Color/scalable/apps/gimp-prefs-input-devices.svg +share/gimp/icons/Color/scalable/apps/gimp-prefs-interface.svg +share/gimp/icons/Color/scalable/apps/gimp-prefs-new-image.svg +share/gimp/icons/Color/scalable/apps/gimp-prefs-playground.svg +share/gimp/icons/Color/scalable/apps/gimp-prefs-session.svg +share/gimp/icons/Color/scalable/apps/gimp-prefs-system-resources.svg +share/gimp/icons/Color/scalable/apps/gimp-prefs-theme.svg +share/gimp/icons/Color/scalable/apps/gimp-prefs-tool-options.svg +share/gimp/icons/Color/scalable/apps/gimp-prefs-toolbox.svg +share/gimp/icons/Color/scalable/apps/gimp-prefs-window-management.svg +share/gimp/icons/Color/scalable/apps/gimp-question.svg +share/gimp/icons/Color/scalable/apps/gimp-quick-mask-off.svg +share/gimp/icons/Color/scalable/apps/gimp-quick-mask-on.svg +share/gimp/icons/Color/scalable/apps/gimp-reset.svg +share/gimp/icons/Color/scalable/apps/gimp-reshow-filter.svg +share/gimp/icons/Color/scalable/apps/gimp-resize.svg +share/gimp/icons/Color/scalable/apps/gimp-rotate-180.svg +share/gimp/icons/Color/scalable/apps/gimp-rotate-270.svg +share/gimp/icons/Color/scalable/apps/gimp-rotate-90.svg +share/gimp/icons/Color/scalable/apps/gimp-sample-point.svg +share/gimp/icons/Color/scalable/apps/gimp-scale.svg +share/gimp/icons/Color/scalable/apps/gimp-selection-add.svg +share/gimp/icons/Color/scalable/apps/gimp-selection-all.svg +share/gimp/icons/Color/scalable/apps/gimp-selection-border.svg +share/gimp/icons/Color/scalable/apps/gimp-selection-grow.svg +share/gimp/icons/Color/scalable/apps/gimp-selection-intersect.svg +share/gimp/icons/Color/scalable/apps/gimp-selection-none.svg +share/gimp/icons/Color/scalable/apps/gimp-selection-replace.svg +share/gimp/icons/Color/scalable/apps/gimp-selection-shrink.svg +share/gimp/icons/Color/scalable/apps/gimp-selection-stroke.svg +share/gimp/icons/Color/scalable/apps/gimp-selection-subtract.svg +share/gimp/icons/Color/scalable/apps/gimp-selection-to-channel.svg +share/gimp/icons/Color/scalable/apps/gimp-selection-to-path.svg +share/gimp/icons/Color/scalable/apps/gimp-selection.svg +share/gimp/icons/Color/scalable/apps/gimp-shape-circle.svg +share/gimp/icons/Color/scalable/apps/gimp-shape-diamond.svg +share/gimp/icons/Color/scalable/apps/gimp-shape-square.svg +share/gimp/icons/Color/scalable/apps/gimp-shred.svg +share/gimp/icons/Color/scalable/apps/gimp-smartphone.svg +share/gimp/icons/Color/scalable/apps/gimp-swap-colors.svg +share/gimp/icons/Color/scalable/apps/gimp-symmetry.svg +share/gimp/icons/Color/scalable/apps/gimp-template.svg +share/gimp/icons/Color/scalable/apps/gimp-text-dir-ltr.svg +share/gimp/icons/Color/scalable/apps/gimp-text-dir-rtl.svg +share/gimp/icons/Color/scalable/apps/gimp-text-dir-ttb-ltr-upright.svg +share/gimp/icons/Color/scalable/apps/gimp-text-dir-ttb-ltr.svg +share/gimp/icons/Color/scalable/apps/gimp-text-dir-ttb-rtl-upright.svg +share/gimp/icons/Color/scalable/apps/gimp-text-dir-ttb-rtl.svg +share/gimp/icons/Color/scalable/apps/gimp-text-layer.svg +share/gimp/icons/Color/scalable/apps/gimp-toilet-paper.svg +share/gimp/icons/Color/scalable/apps/gimp-tool-airbrush.svg +share/gimp/icons/Color/scalable/apps/gimp-tool-align.svg +share/gimp/icons/Color/scalable/apps/gimp-tool-blur.svg +share/gimp/icons/Color/scalable/apps/gimp-tool-brightness-contrast.svg +share/gimp/icons/Color/scalable/apps/gimp-tool-bucket-fill.svg +share/gimp/icons/Color/scalable/apps/gimp-tool-by-color-select.svg +share/gimp/icons/Color/scalable/apps/gimp-tool-cage.svg +share/gimp/icons/Color/scalable/apps/gimp-tool-clone.svg +share/gimp/icons/Color/scalable/apps/gimp-tool-color-balance.svg +share/gimp/icons/Color/scalable/apps/gimp-tool-color-picker.svg +share/gimp/icons/Color/scalable/apps/gimp-tool-color-temperature.svg +share/gimp/icons/Color/scalable/apps/gimp-tool-colorize.svg +share/gimp/icons/Color/scalable/apps/gimp-tool-crop.svg +share/gimp/icons/Color/scalable/apps/gimp-tool-curves.svg +share/gimp/icons/Color/scalable/apps/gimp-tool-desaturate.svg +share/gimp/icons/Color/scalable/apps/gimp-tool-dodge.svg +share/gimp/icons/Color/scalable/apps/gimp-tool-ellipse-select.svg +share/gimp/icons/Color/scalable/apps/gimp-tool-eraser.svg +share/gimp/icons/Color/scalable/apps/gimp-tool-exposure.svg +share/gimp/icons/Color/scalable/apps/gimp-tool-flip.svg +share/gimp/icons/Color/scalable/apps/gimp-tool-foreground-select.svg +share/gimp/icons/Color/scalable/apps/gimp-tool-free-select.svg +share/gimp/icons/Color/scalable/apps/gimp-tool-fuzzy-select.svg +share/gimp/icons/Color/scalable/apps/gimp-tool-gradient.svg +share/gimp/icons/Color/scalable/apps/gimp-tool-handle-transform.svg +share/gimp/icons/Color/scalable/apps/gimp-tool-heal.svg +share/gimp/icons/Color/scalable/apps/gimp-tool-hue-saturation.svg +share/gimp/icons/Color/scalable/apps/gimp-tool-ink.svg +share/gimp/icons/Color/scalable/apps/gimp-tool-iscissors.svg +share/gimp/icons/Color/scalable/apps/gimp-tool-levels.svg +share/gimp/icons/Color/scalable/apps/gimp-tool-measure.svg +share/gimp/icons/Color/scalable/apps/gimp-tool-move.svg +share/gimp/icons/Color/scalable/apps/gimp-tool-mypaint-brush.svg +share/gimp/icons/Color/scalable/apps/gimp-tool-n-point-deformation.svg +share/gimp/icons/Color/scalable/apps/gimp-tool-options.svg +share/gimp/icons/Color/scalable/apps/gimp-tool-paintbrush.svg +share/gimp/icons/Color/scalable/apps/gimp-tool-path.svg +share/gimp/icons/Color/scalable/apps/gimp-tool-pencil.svg +share/gimp/icons/Color/scalable/apps/gimp-tool-perspective-clone.svg +share/gimp/icons/Color/scalable/apps/gimp-tool-perspective.svg +share/gimp/icons/Color/scalable/apps/gimp-tool-posterize.svg +share/gimp/icons/Color/scalable/apps/gimp-tool-preset.svg +share/gimp/icons/Color/scalable/apps/gimp-tool-rect-select.svg +share/gimp/icons/Color/scalable/apps/gimp-tool-rotate.svg +share/gimp/icons/Color/scalable/apps/gimp-tool-scale.svg +share/gimp/icons/Color/scalable/apps/gimp-tool-seamless-clone.svg +share/gimp/icons/Color/scalable/apps/gimp-tool-shadows-highlights.svg +share/gimp/icons/Color/scalable/apps/gimp-tool-shear.svg +share/gimp/icons/Color/scalable/apps/gimp-tool-smudge.svg +share/gimp/icons/Color/scalable/apps/gimp-tool-text.svg +share/gimp/icons/Color/scalable/apps/gimp-tool-threshold.svg +share/gimp/icons/Color/scalable/apps/gimp-tool-unified-transform.svg +share/gimp/icons/Color/scalable/apps/gimp-tool-warp.svg +share/gimp/icons/Color/scalable/apps/gimp-tool-zoom.svg +share/gimp/icons/Color/scalable/apps/gimp-tools.svg +share/gimp/icons/Color/scalable/apps/gimp-transparency.svg +share/gimp/icons/Color/scalable/apps/gimp-undo-history.svg +share/gimp/icons/Color/scalable/apps/gimp-user-manual.svg +share/gimp/icons/Color/scalable/apps/gimp-vcenter.svg +share/gimp/icons/Color/scalable/apps/gimp-vchain-broken.svg +share/gimp/icons/Color/scalable/apps/gimp-vchain.svg +share/gimp/icons/Color/scalable/apps/gimp-vfill.svg +share/gimp/icons/Color/scalable/apps/gimp-video.svg +share/gimp/icons/Color/scalable/apps/gimp-visible.svg +share/gimp/icons/Color/scalable/apps/gimp-warning.svg +share/gimp/icons/Color/scalable/apps/gimp-web.svg +share/gimp/icons/Color/scalable/apps/gimp-wilber-eek.svg +share/gimp/icons/Color/scalable/apps/gimp-wilber-outline.svg +share/gimp/icons/Color/scalable/apps/gimp-wilber.svg +share/gimp/icons/Color/scalable/apps/gimp-zoom-follow-window.svg +share/gimp/icons/Color/scalable/apps/go-bottom.svg +share/gimp/icons/Color/scalable/apps/go-down.svg +share/gimp/icons/Color/scalable/apps/go-first.svg +share/gimp/icons/Color/scalable/apps/go-home.svg +share/gimp/icons/Color/scalable/apps/go-last.svg +share/gimp/icons/Color/scalable/apps/go-next.svg +share/gimp/icons/Color/scalable/apps/go-previous.svg +share/gimp/icons/Color/scalable/apps/go-top.svg +share/gimp/icons/Color/scalable/apps/go-up.svg +share/gimp/icons/Color/scalable/apps/gtk-cancel.svg +share/gimp/icons/Color/scalable/apps/gtk-edit.svg +share/gimp/icons/Color/scalable/apps/gtk-no.svg +share/gimp/icons/Color/scalable/apps/gtk-ok.svg +share/gimp/icons/Color/scalable/apps/gtk-select-color.svg +share/gimp/icons/Color/scalable/apps/gtk-select-font.svg +share/gimp/icons/Color/scalable/apps/gtk-yes.svg +share/gimp/icons/Color/scalable/apps/help-about.svg +share/gimp/icons/Color/scalable/apps/list-add.svg +share/gimp/icons/Color/scalable/apps/list-remove.svg +share/gimp/icons/Color/scalable/apps/media-floppy.svg +share/gimp/icons/Color/scalable/apps/media-optical.svg +share/gimp/icons/Color/scalable/apps/media-playback-pause.svg +share/gimp/icons/Color/scalable/apps/media-playback-start.svg +share/gimp/icons/Color/scalable/apps/media-seek-backward.svg +share/gimp/icons/Color/scalable/apps/media-skip-backward.svg +share/gimp/icons/Color/scalable/apps/media-skip-forward.svg +share/gimp/icons/Color/scalable/apps/preferences-system.svg +share/gimp/icons/Color/scalable/apps/process-stop.svg +share/gimp/icons/Color/scalable/apps/system-run.svg +share/gimp/icons/Color/scalable/apps/view-fullscreen.svg +share/gimp/icons/Color/scalable/apps/view-refresh.svg +share/gimp/icons/Color/scalable/apps/window-close.svg +share/gimp/icons/Color/scalable/apps/window-new.svg +share/gimp/icons/Color/scalable/apps/zoom-fit-best.svg +share/gimp/icons/Color/scalable/apps/zoom-in.svg +share/gimp/icons/Color/scalable/apps/zoom-original.svg +share/gimp/icons/Color/scalable/apps/zoom-out.svg +share/gimp/icons/Legacy/128x128/apps/gimp-wilber-outline.png +share/gimp/icons/Legacy/128x128/apps/gimp-wilber.png +share/gimp/icons/Legacy/12x12/apps/gimp-close.png +share/gimp/icons/Legacy/12x12/apps/gimp-default-colors.png +share/gimp/icons/Legacy/12x12/apps/gimp-linked.png +share/gimp/icons/Legacy/12x12/apps/gimp-menu-left.png +share/gimp/icons/Legacy/12x12/apps/gimp-menu-right.png +share/gimp/icons/Legacy/12x12/apps/gimp-quick-mask-off.png +share/gimp/icons/Legacy/12x12/apps/gimp-quick-mask-on.png +share/gimp/icons/Legacy/12x12/apps/gimp-swap-colors.png +share/gimp/icons/Legacy/12x12/apps/gimp-visible.png +share/gimp/icons/Legacy/12x12/apps/gimp-zoom-follow-window.png +share/gimp/icons/Legacy/16x16/apps/gimp-anchor.png +share/gimp/icons/Legacy/16x16/apps/gimp-cap-butt.png +share/gimp/icons/Legacy/16x16/apps/gimp-cap-round.png +share/gimp/icons/Legacy/16x16/apps/gimp-cap-square.png +share/gimp/icons/Legacy/16x16/apps/gimp-center.png +share/gimp/icons/Legacy/16x16/apps/gimp-channel-alpha.png +share/gimp/icons/Legacy/16x16/apps/gimp-channel-blue.png +share/gimp/icons/Legacy/16x16/apps/gimp-channel-gray.png +share/gimp/icons/Legacy/16x16/apps/gimp-channel-green.png +share/gimp/icons/Legacy/16x16/apps/gimp-channel-indexed.png +share/gimp/icons/Legacy/16x16/apps/gimp-channel-red.png +share/gimp/icons/Legacy/16x16/apps/gimp-channel.png +share/gimp/icons/Legacy/16x16/apps/gimp-channels.png +share/gimp/icons/Legacy/16x16/apps/gimp-color-pick-from-screen.png +share/gimp/icons/Legacy/16x16/apps/gimp-color-triangle.png +share/gimp/icons/Legacy/16x16/apps/gimp-colormap.png +share/gimp/icons/Legacy/16x16/apps/gimp-controller-keyboard.png +share/gimp/icons/Legacy/16x16/apps/gimp-controller-linux-input.png +share/gimp/icons/Legacy/16x16/apps/gimp-controller-midi.png +share/gimp/icons/Legacy/16x16/apps/gimp-controller-wheel.png +share/gimp/icons/Legacy/16x16/apps/gimp-controller.png +share/gimp/icons/Legacy/16x16/apps/gimp-convert-grayscale.png +share/gimp/icons/Legacy/16x16/apps/gimp-convert-indexed.png +share/gimp/icons/Legacy/16x16/apps/gimp-convert-rgb.png +share/gimp/icons/Legacy/16x16/apps/gimp-cursor.png +share/gimp/icons/Legacy/16x16/apps/gimp-curve-free.png +share/gimp/icons/Legacy/16x16/apps/gimp-curve-smooth.png +share/gimp/icons/Legacy/16x16/apps/gimp-device-status.png +share/gimp/icons/Legacy/16x16/apps/gimp-display-filter-colorblind.png +share/gimp/icons/Legacy/16x16/apps/gimp-display-filter-contrast.png +share/gimp/icons/Legacy/16x16/apps/gimp-display-filter-gamma.png +share/gimp/icons/Legacy/16x16/apps/gimp-display-filter-lcms.png +share/gimp/icons/Legacy/16x16/apps/gimp-display-filter-proof.png +share/gimp/icons/Legacy/16x16/apps/gimp-display-filter.png +share/gimp/icons/Legacy/16x16/apps/gimp-duplicate.png +share/gimp/icons/Legacy/16x16/apps/gimp-dynamics.png +share/gimp/icons/Legacy/16x16/apps/gimp-flip-horizontal.png +share/gimp/icons/Legacy/16x16/apps/gimp-flip-vertical.png +share/gimp/icons/Legacy/16x16/apps/gimp-floating-selection.png +share/gimp/icons/Legacy/16x16/apps/gimp-gegl.png +share/gimp/icons/Legacy/16x16/apps/gimp-gradient-bilinear.png +share/gimp/icons/Legacy/16x16/apps/gimp-gradient-conical-asymmetric.png +share/gimp/icons/Legacy/16x16/apps/gimp-gradient-conical-symmetric.png +share/gimp/icons/Legacy/16x16/apps/gimp-gradient-linear.png +share/gimp/icons/Legacy/16x16/apps/gimp-gradient-radial.png +share/gimp/icons/Legacy/16x16/apps/gimp-gradient-shapeburst-angular.png +share/gimp/icons/Legacy/16x16/apps/gimp-gradient-shapeburst-dimpled.png +share/gimp/icons/Legacy/16x16/apps/gimp-gradient-shapeburst-spherical.png +share/gimp/icons/Legacy/16x16/apps/gimp-gradient-spiral-anticlockwise.png +share/gimp/icons/Legacy/16x16/apps/gimp-gradient-spiral-clockwise.png +share/gimp/icons/Legacy/16x16/apps/gimp-gradient-square.png +share/gimp/icons/Legacy/16x16/apps/gimp-grid.png +share/gimp/icons/Legacy/16x16/apps/gimp-histogram-linear.png +share/gimp/icons/Legacy/16x16/apps/gimp-histogram-logarithmic.png +share/gimp/icons/Legacy/16x16/apps/gimp-histogram.png +share/gimp/icons/Legacy/16x16/apps/gimp-image.png +share/gimp/icons/Legacy/16x16/apps/gimp-images.png +share/gimp/icons/Legacy/16x16/apps/gimp-info.png +share/gimp/icons/Legacy/16x16/apps/gimp-input-device.png +share/gimp/icons/Legacy/16x16/apps/gimp-invert.png +share/gimp/icons/Legacy/16x16/apps/gimp-join-bevel.png +share/gimp/icons/Legacy/16x16/apps/gimp-join-miter.png +share/gimp/icons/Legacy/16x16/apps/gimp-join-round.png +share/gimp/icons/Legacy/16x16/apps/gimp-landscape.png +share/gimp/icons/Legacy/16x16/apps/gimp-layer-mask.png +share/gimp/icons/Legacy/16x16/apps/gimp-layer-to-imagesize.png +share/gimp/icons/Legacy/16x16/apps/gimp-layer.png +share/gimp/icons/Legacy/16x16/apps/gimp-layers.png +share/gimp/icons/Legacy/16x16/apps/gimp-list.png +share/gimp/icons/Legacy/16x16/apps/gimp-merge-down.png +share/gimp/icons/Legacy/16x16/apps/gimp-move-to-screen.png +share/gimp/icons/Legacy/16x16/apps/gimp-navigation.png +share/gimp/icons/Legacy/16x16/apps/gimp-paste-as-new.png +share/gimp/icons/Legacy/16x16/apps/gimp-paste-into.png +share/gimp/icons/Legacy/16x16/apps/gimp-path-stroke.png +share/gimp/icons/Legacy/16x16/apps/gimp-path.png +share/gimp/icons/Legacy/16x16/apps/gimp-paths.png +share/gimp/icons/Legacy/16x16/apps/gimp-plugin.png +share/gimp/icons/Legacy/16x16/apps/gimp-portrait.png +share/gimp/icons/Legacy/16x16/apps/gimp-prefs-folders-brushes.png +share/gimp/icons/Legacy/16x16/apps/gimp-prefs-folders-dynamics.png +share/gimp/icons/Legacy/16x16/apps/gimp-prefs-folders-environ.png +share/gimp/icons/Legacy/16x16/apps/gimp-prefs-folders-fonts.png +share/gimp/icons/Legacy/16x16/apps/gimp-prefs-folders-gradients.png +share/gimp/icons/Legacy/16x16/apps/gimp-prefs-folders-icon-themes.png +share/gimp/icons/Legacy/16x16/apps/gimp-prefs-folders-interp.png +share/gimp/icons/Legacy/16x16/apps/gimp-prefs-folders-modules.png +share/gimp/icons/Legacy/16x16/apps/gimp-prefs-folders-palettes.png +share/gimp/icons/Legacy/16x16/apps/gimp-prefs-folders-patterns.png +share/gimp/icons/Legacy/16x16/apps/gimp-prefs-folders-plug-ins.png +share/gimp/icons/Legacy/16x16/apps/gimp-prefs-folders-scripts.png +share/gimp/icons/Legacy/16x16/apps/gimp-prefs-folders-themes.png +share/gimp/icons/Legacy/16x16/apps/gimp-prefs-folders-tool-plug-ins.png +share/gimp/icons/Legacy/16x16/apps/gimp-prefs-folders-tool-presets.png +share/gimp/icons/Legacy/16x16/apps/gimp-prefs-folders-tools.png +share/gimp/icons/Legacy/16x16/apps/gimp-prefs-icon-theme.png +share/gimp/icons/Legacy/16x16/apps/gimp-prefs-image-windows.png +share/gimp/icons/Legacy/16x16/apps/gimp-prefs-interface.png +share/gimp/icons/Legacy/16x16/apps/gimp-prefs-theme.png +share/gimp/icons/Legacy/16x16/apps/gimp-prefs-toolbox.png +share/gimp/icons/Legacy/16x16/apps/gimp-prefs-window-management.png +share/gimp/icons/Legacy/16x16/apps/gimp-print-resolution.png +share/gimp/icons/Legacy/16x16/apps/gimp-reset.png +share/gimp/icons/Legacy/16x16/apps/gimp-reshow-filter.png +share/gimp/icons/Legacy/16x16/apps/gimp-resize.png +share/gimp/icons/Legacy/16x16/apps/gimp-rotate-180.png +share/gimp/icons/Legacy/16x16/apps/gimp-rotate-270.png +share/gimp/icons/Legacy/16x16/apps/gimp-rotate-90.png +share/gimp/icons/Legacy/16x16/apps/gimp-sample-point.png +share/gimp/icons/Legacy/16x16/apps/gimp-scale.png +share/gimp/icons/Legacy/16x16/apps/gimp-selection-add.png +share/gimp/icons/Legacy/16x16/apps/gimp-selection-all.png +share/gimp/icons/Legacy/16x16/apps/gimp-selection-border.png +share/gimp/icons/Legacy/16x16/apps/gimp-selection-grow.png +share/gimp/icons/Legacy/16x16/apps/gimp-selection-intersect.png +share/gimp/icons/Legacy/16x16/apps/gimp-selection-none.png +share/gimp/icons/Legacy/16x16/apps/gimp-selection-replace.png +share/gimp/icons/Legacy/16x16/apps/gimp-selection-shrink.png +share/gimp/icons/Legacy/16x16/apps/gimp-selection-stroke.png +share/gimp/icons/Legacy/16x16/apps/gimp-selection-subtract.png +share/gimp/icons/Legacy/16x16/apps/gimp-selection-to-channel.png +share/gimp/icons/Legacy/16x16/apps/gimp-selection-to-path.png +share/gimp/icons/Legacy/16x16/apps/gimp-selection.png +share/gimp/icons/Legacy/16x16/apps/gimp-shape-circle.png +share/gimp/icons/Legacy/16x16/apps/gimp-shape-diamond.png +share/gimp/icons/Legacy/16x16/apps/gimp-shape-square.png +share/gimp/icons/Legacy/16x16/apps/gimp-template.png +share/gimp/icons/Legacy/16x16/apps/gimp-text-layer.png +share/gimp/icons/Legacy/16x16/apps/gimp-toilet-paper.png +share/gimp/icons/Legacy/16x16/apps/gimp-tool-airbrush.png +share/gimp/icons/Legacy/16x16/apps/gimp-tool-align.png +share/gimp/icons/Legacy/16x16/apps/gimp-tool-blur.png +share/gimp/icons/Legacy/16x16/apps/gimp-tool-brightness-contrast.png +share/gimp/icons/Legacy/16x16/apps/gimp-tool-bucket-fill.png +share/gimp/icons/Legacy/16x16/apps/gimp-tool-by-color-select.png +share/gimp/icons/Legacy/16x16/apps/gimp-tool-cage.png +share/gimp/icons/Legacy/16x16/apps/gimp-tool-clone.png +share/gimp/icons/Legacy/16x16/apps/gimp-tool-color-balance.png +share/gimp/icons/Legacy/16x16/apps/gimp-tool-color-picker.png +share/gimp/icons/Legacy/16x16/apps/gimp-tool-colorize.png +share/gimp/icons/Legacy/16x16/apps/gimp-tool-crop.png +share/gimp/icons/Legacy/16x16/apps/gimp-tool-curves.png +share/gimp/icons/Legacy/16x16/apps/gimp-tool-desaturate.png +share/gimp/icons/Legacy/16x16/apps/gimp-tool-dodge.png +share/gimp/icons/Legacy/16x16/apps/gimp-tool-ellipse-select.png +share/gimp/icons/Legacy/16x16/apps/gimp-tool-eraser.png +share/gimp/icons/Legacy/16x16/apps/gimp-tool-flip.png +share/gimp/icons/Legacy/16x16/apps/gimp-tool-foreground-select.png +share/gimp/icons/Legacy/16x16/apps/gimp-tool-free-select.png +share/gimp/icons/Legacy/16x16/apps/gimp-tool-fuzzy-select.png +share/gimp/icons/Legacy/16x16/apps/gimp-tool-gradient.png +share/gimp/icons/Legacy/16x16/apps/gimp-tool-handle-transform.png +share/gimp/icons/Legacy/16x16/apps/gimp-tool-heal.png +share/gimp/icons/Legacy/16x16/apps/gimp-tool-hue-saturation.png +share/gimp/icons/Legacy/16x16/apps/gimp-tool-ink.png +share/gimp/icons/Legacy/16x16/apps/gimp-tool-iscissors.png +share/gimp/icons/Legacy/16x16/apps/gimp-tool-levels.png +share/gimp/icons/Legacy/16x16/apps/gimp-tool-measure.png +share/gimp/icons/Legacy/16x16/apps/gimp-tool-move.png +share/gimp/icons/Legacy/16x16/apps/gimp-tool-mypaint-brush.png +share/gimp/icons/Legacy/16x16/apps/gimp-tool-n-point-deformation.png +share/gimp/icons/Legacy/16x16/apps/gimp-tool-options.png +share/gimp/icons/Legacy/16x16/apps/gimp-tool-paintbrush.png +share/gimp/icons/Legacy/16x16/apps/gimp-tool-path.png +share/gimp/icons/Legacy/16x16/apps/gimp-tool-pencil.png +share/gimp/icons/Legacy/16x16/apps/gimp-tool-perspective-clone.png +share/gimp/icons/Legacy/16x16/apps/gimp-tool-perspective.png +share/gimp/icons/Legacy/16x16/apps/gimp-tool-posterize.png +share/gimp/icons/Legacy/16x16/apps/gimp-tool-preset.png +share/gimp/icons/Legacy/16x16/apps/gimp-tool-rect-select.png +share/gimp/icons/Legacy/16x16/apps/gimp-tool-rotate.png +share/gimp/icons/Legacy/16x16/apps/gimp-tool-scale.png +share/gimp/icons/Legacy/16x16/apps/gimp-tool-seamless-clone.png +share/gimp/icons/Legacy/16x16/apps/gimp-tool-shear.png +share/gimp/icons/Legacy/16x16/apps/gimp-tool-smudge.png +share/gimp/icons/Legacy/16x16/apps/gimp-tool-text.png +share/gimp/icons/Legacy/16x16/apps/gimp-tool-threshold.png +share/gimp/icons/Legacy/16x16/apps/gimp-tool-unified-transform.png +share/gimp/icons/Legacy/16x16/apps/gimp-tool-warp.png +share/gimp/icons/Legacy/16x16/apps/gimp-tool-zoom.png +share/gimp/icons/Legacy/16x16/apps/gimp-tools.png +share/gimp/icons/Legacy/16x16/apps/gimp-transparency.png +share/gimp/icons/Legacy/16x16/apps/gimp-undo-history.png +share/gimp/icons/Legacy/16x16/apps/gimp-user-manual.png +share/gimp/icons/Legacy/16x16/apps/gimp-video.png +share/gimp/icons/Legacy/16x16/apps/gimp-warning.png +share/gimp/icons/Legacy/16x16/apps/gimp-web.png +share/gimp/icons/Legacy/16x16/apps/gimp-wilber.png +share/gimp/icons/Legacy/16x16/apps/gtk-edit.png +share/gimp/icons/Legacy/18x18/apps/gimp-color-picker-black.png +share/gimp/icons/Legacy/18x18/apps/gimp-color-picker-gray.png +share/gimp/icons/Legacy/18x18/apps/gimp-color-picker-white.png +share/gimp/icons/Legacy/192x192/apps/gimp-wilber-outline.png +share/gimp/icons/Legacy/192x192/apps/gimp-wilber.png +share/gimp/icons/Legacy/20x20/apps/gimp-linked.png +share/gimp/icons/Legacy/20x20/apps/gimp-visible.png +share/gimp/icons/Legacy/22x22/apps/gimp-char-picker.png +share/gimp/icons/Legacy/22x22/apps/gimp-dynamics.png +share/gimp/icons/Legacy/22x22/apps/gimp-histogram.png +share/gimp/icons/Legacy/22x22/apps/gimp-input-device.png +share/gimp/icons/Legacy/22x22/apps/gimp-letter-spacing.png +share/gimp/icons/Legacy/22x22/apps/gimp-line-spacing.png +share/gimp/icons/Legacy/22x22/apps/gimp-path.png +share/gimp/icons/Legacy/22x22/apps/gimp-paths.png +share/gimp/icons/Legacy/22x22/apps/gimp-prefs-color-management.png +share/gimp/icons/Legacy/22x22/apps/gimp-prefs-controllers.png +share/gimp/icons/Legacy/22x22/apps/gimp-prefs-default-grid.png +share/gimp/icons/Legacy/22x22/apps/gimp-prefs-display.png +share/gimp/icons/Legacy/22x22/apps/gimp-prefs-folders-brushes.png +share/gimp/icons/Legacy/22x22/apps/gimp-prefs-folders-dynamics.png +share/gimp/icons/Legacy/22x22/apps/gimp-prefs-folders-environ.png +share/gimp/icons/Legacy/22x22/apps/gimp-prefs-folders-fonts.png +share/gimp/icons/Legacy/22x22/apps/gimp-prefs-folders-gradients.png +share/gimp/icons/Legacy/22x22/apps/gimp-prefs-folders-icon-themes.png +share/gimp/icons/Legacy/22x22/apps/gimp-prefs-folders-interp.png +share/gimp/icons/Legacy/22x22/apps/gimp-prefs-folders-modules.png +share/gimp/icons/Legacy/22x22/apps/gimp-prefs-folders-palettes.png +share/gimp/icons/Legacy/22x22/apps/gimp-prefs-folders-patterns.png +share/gimp/icons/Legacy/22x22/apps/gimp-prefs-folders-plug-ins.png +share/gimp/icons/Legacy/22x22/apps/gimp-prefs-folders-scripts.png +share/gimp/icons/Legacy/22x22/apps/gimp-prefs-folders-themes.png +share/gimp/icons/Legacy/22x22/apps/gimp-prefs-folders-tool-plug-ins.png +share/gimp/icons/Legacy/22x22/apps/gimp-prefs-folders-tool-presets.png +share/gimp/icons/Legacy/22x22/apps/gimp-prefs-folders-tools.png +share/gimp/icons/Legacy/22x22/apps/gimp-prefs-folders.png +share/gimp/icons/Legacy/22x22/apps/gimp-prefs-help-system.png +share/gimp/icons/Legacy/22x22/apps/gimp-prefs-icon-theme.png +share/gimp/icons/Legacy/22x22/apps/gimp-prefs-image-title.png +share/gimp/icons/Legacy/22x22/apps/gimp-prefs-image-windows.png +share/gimp/icons/Legacy/22x22/apps/gimp-prefs-input-devices.png +share/gimp/icons/Legacy/22x22/apps/gimp-prefs-interface.png +share/gimp/icons/Legacy/22x22/apps/gimp-prefs-new-image.png +share/gimp/icons/Legacy/22x22/apps/gimp-prefs-playground.png +share/gimp/icons/Legacy/22x22/apps/gimp-prefs-session.png +share/gimp/icons/Legacy/22x22/apps/gimp-prefs-system-resources.png +share/gimp/icons/Legacy/22x22/apps/gimp-prefs-theme.png +share/gimp/icons/Legacy/22x22/apps/gimp-prefs-tool-options.png +share/gimp/icons/Legacy/22x22/apps/gimp-prefs-toolbox.png +share/gimp/icons/Legacy/22x22/apps/gimp-prefs-window-management.png +share/gimp/icons/Legacy/22x22/apps/gimp-tool-preset.png +share/gimp/icons/Legacy/22x22/apps/gimp-wilber.png +share/gimp/icons/Legacy/22x22/tools/gimp-gegl.png +share/gimp/icons/Legacy/22x22/tools/gimp-tool-airbrush.png +share/gimp/icons/Legacy/22x22/tools/gimp-tool-align.png +share/gimp/icons/Legacy/22x22/tools/gimp-tool-blur.png +share/gimp/icons/Legacy/22x22/tools/gimp-tool-brightness-contrast.png +share/gimp/icons/Legacy/22x22/tools/gimp-tool-bucket-fill.png +share/gimp/icons/Legacy/22x22/tools/gimp-tool-by-color-select.png +share/gimp/icons/Legacy/22x22/tools/gimp-tool-cage.png +share/gimp/icons/Legacy/22x22/tools/gimp-tool-clone.png +share/gimp/icons/Legacy/22x22/tools/gimp-tool-color-balance.png +share/gimp/icons/Legacy/22x22/tools/gimp-tool-color-picker.png +share/gimp/icons/Legacy/22x22/tools/gimp-tool-colorize.png +share/gimp/icons/Legacy/22x22/tools/gimp-tool-crop.png +share/gimp/icons/Legacy/22x22/tools/gimp-tool-curves.png +share/gimp/icons/Legacy/22x22/tools/gimp-tool-desaturate.png +share/gimp/icons/Legacy/22x22/tools/gimp-tool-dodge.png +share/gimp/icons/Legacy/22x22/tools/gimp-tool-ellipse-select.png +share/gimp/icons/Legacy/22x22/tools/gimp-tool-eraser.png +share/gimp/icons/Legacy/22x22/tools/gimp-tool-flip.png +share/gimp/icons/Legacy/22x22/tools/gimp-tool-foreground-select.png +share/gimp/icons/Legacy/22x22/tools/gimp-tool-free-select.png +share/gimp/icons/Legacy/22x22/tools/gimp-tool-fuzzy-select.png +share/gimp/icons/Legacy/22x22/tools/gimp-tool-gradient.png +share/gimp/icons/Legacy/22x22/tools/gimp-tool-handle-transform.png +share/gimp/icons/Legacy/22x22/tools/gimp-tool-heal.png +share/gimp/icons/Legacy/22x22/tools/gimp-tool-hue-saturation.png +share/gimp/icons/Legacy/22x22/tools/gimp-tool-ink.png +share/gimp/icons/Legacy/22x22/tools/gimp-tool-iscissors.png +share/gimp/icons/Legacy/22x22/tools/gimp-tool-levels.png +share/gimp/icons/Legacy/22x22/tools/gimp-tool-measure.png +share/gimp/icons/Legacy/22x22/tools/gimp-tool-move.png +share/gimp/icons/Legacy/22x22/tools/gimp-tool-mypaint-brush.png +share/gimp/icons/Legacy/22x22/tools/gimp-tool-n-point-deformation.png +share/gimp/icons/Legacy/22x22/tools/gimp-tool-paintbrush.png +share/gimp/icons/Legacy/22x22/tools/gimp-tool-path.png +share/gimp/icons/Legacy/22x22/tools/gimp-tool-pencil.png +share/gimp/icons/Legacy/22x22/tools/gimp-tool-perspective-clone.png +share/gimp/icons/Legacy/22x22/tools/gimp-tool-perspective.png +share/gimp/icons/Legacy/22x22/tools/gimp-tool-posterize.png +share/gimp/icons/Legacy/22x22/tools/gimp-tool-rect-select.png +share/gimp/icons/Legacy/22x22/tools/gimp-tool-rotate.png +share/gimp/icons/Legacy/22x22/tools/gimp-tool-scale.png +share/gimp/icons/Legacy/22x22/tools/gimp-tool-seamless-clone.png +share/gimp/icons/Legacy/22x22/tools/gimp-tool-shear.png +share/gimp/icons/Legacy/22x22/tools/gimp-tool-smudge.png +share/gimp/icons/Legacy/22x22/tools/gimp-tool-text.png +share/gimp/icons/Legacy/22x22/tools/gimp-tool-threshold.png +share/gimp/icons/Legacy/22x22/tools/gimp-tool-unified-transform.png +share/gimp/icons/Legacy/22x22/tools/gimp-tool-warp.png +share/gimp/icons/Legacy/22x22/tools/gimp-tool-zoom.png +share/gimp/icons/Legacy/24x24/apps/gimp-center.png +share/gimp/icons/Legacy/24x24/apps/gimp-channel-alpha.png +share/gimp/icons/Legacy/24x24/apps/gimp-channel-blue.png +share/gimp/icons/Legacy/24x24/apps/gimp-channel-gray.png +share/gimp/icons/Legacy/24x24/apps/gimp-channel-green.png +share/gimp/icons/Legacy/24x24/apps/gimp-channel-indexed.png +share/gimp/icons/Legacy/24x24/apps/gimp-channel-red.png +share/gimp/icons/Legacy/24x24/apps/gimp-channel.png +share/gimp/icons/Legacy/24x24/apps/gimp-channels.png +share/gimp/icons/Legacy/24x24/apps/gimp-colormap.png +share/gimp/icons/Legacy/24x24/apps/gimp-controller-keyboard.png +share/gimp/icons/Legacy/24x24/apps/gimp-controller-linux-input.png +share/gimp/icons/Legacy/24x24/apps/gimp-controller-midi.png +share/gimp/icons/Legacy/24x24/apps/gimp-controller-wheel.png +share/gimp/icons/Legacy/24x24/apps/gimp-controller.png +share/gimp/icons/Legacy/24x24/apps/gimp-cursor.png +share/gimp/icons/Legacy/24x24/apps/gimp-device-status.png +share/gimp/icons/Legacy/24x24/apps/gimp-display-filter-colorblind.png +share/gimp/icons/Legacy/24x24/apps/gimp-display-filter-contrast.png +share/gimp/icons/Legacy/24x24/apps/gimp-display-filter-gamma.png +share/gimp/icons/Legacy/24x24/apps/gimp-display-filter-lcms.png +share/gimp/icons/Legacy/24x24/apps/gimp-display-filter-proof.png +share/gimp/icons/Legacy/24x24/apps/gimp-display-filter.png +share/gimp/icons/Legacy/24x24/apps/gimp-floating-selection.png +share/gimp/icons/Legacy/24x24/apps/gimp-gravity-east.png +share/gimp/icons/Legacy/24x24/apps/gimp-gravity-north-east.png +share/gimp/icons/Legacy/24x24/apps/gimp-gravity-north-west.png +share/gimp/icons/Legacy/24x24/apps/gimp-gravity-north.png +share/gimp/icons/Legacy/24x24/apps/gimp-gravity-south-east.png +share/gimp/icons/Legacy/24x24/apps/gimp-gravity-south-west.png +share/gimp/icons/Legacy/24x24/apps/gimp-gravity-south.png +share/gimp/icons/Legacy/24x24/apps/gimp-gravity-west.png +share/gimp/icons/Legacy/24x24/apps/gimp-hcenter.png +share/gimp/icons/Legacy/24x24/apps/gimp-hchain-broken.png +share/gimp/icons/Legacy/24x24/apps/gimp-hchain.png +share/gimp/icons/Legacy/24x24/apps/gimp-hfill.png +share/gimp/icons/Legacy/24x24/apps/gimp-image.png +share/gimp/icons/Legacy/24x24/apps/gimp-images.png +share/gimp/icons/Legacy/24x24/apps/gimp-info.png +share/gimp/icons/Legacy/24x24/apps/gimp-layer-mask.png +share/gimp/icons/Legacy/24x24/apps/gimp-layer.png +share/gimp/icons/Legacy/24x24/apps/gimp-layers.png +share/gimp/icons/Legacy/24x24/apps/gimp-move-to-screen.png +share/gimp/icons/Legacy/24x24/apps/gimp-print-resolution.png +share/gimp/icons/Legacy/24x24/apps/gimp-sample-point.png +share/gimp/icons/Legacy/24x24/apps/gimp-template.png +share/gimp/icons/Legacy/24x24/apps/gimp-text-dir-ltr.png +share/gimp/icons/Legacy/24x24/apps/gimp-text-dir-rtl.png +share/gimp/icons/Legacy/24x24/apps/gimp-text-dir-ttb-ltr-upright.png +share/gimp/icons/Legacy/24x24/apps/gimp-text-dir-ttb-ltr.png +share/gimp/icons/Legacy/24x24/apps/gimp-text-dir-ttb-rtl-upright.png +share/gimp/icons/Legacy/24x24/apps/gimp-text-dir-ttb-rtl.png +share/gimp/icons/Legacy/24x24/apps/gimp-text-layer.png +share/gimp/icons/Legacy/24x24/apps/gimp-toilet-paper.png +share/gimp/icons/Legacy/24x24/apps/gimp-tool-options.png +share/gimp/icons/Legacy/24x24/apps/gimp-tools.png +share/gimp/icons/Legacy/24x24/apps/gimp-transparency.png +share/gimp/icons/Legacy/24x24/apps/gimp-undo-history.png +share/gimp/icons/Legacy/24x24/apps/gimp-user-manual.png +share/gimp/icons/Legacy/24x24/apps/gimp-vcenter.png +share/gimp/icons/Legacy/24x24/apps/gimp-vchain-broken.png +share/gimp/icons/Legacy/24x24/apps/gimp-vchain.png +share/gimp/icons/Legacy/24x24/apps/gimp-vfill.png +share/gimp/icons/Legacy/24x24/apps/gimp-video.png +share/gimp/icons/Legacy/24x24/apps/gimp-warning.png +share/gimp/icons/Legacy/24x24/apps/gimp-web.png +share/gimp/icons/Legacy/256x256/apps/gimp-wilber-outline.png +share/gimp/icons/Legacy/256x256/apps/gimp-wilber.png +share/gimp/icons/Legacy/32x32/apps/gimp-channel-alpha.png +share/gimp/icons/Legacy/32x32/apps/gimp-channel-blue.png +share/gimp/icons/Legacy/32x32/apps/gimp-channel-gray.png +share/gimp/icons/Legacy/32x32/apps/gimp-channel-green.png +share/gimp/icons/Legacy/32x32/apps/gimp-channel-indexed.png +share/gimp/icons/Legacy/32x32/apps/gimp-channel-red.png +share/gimp/icons/Legacy/32x32/apps/gimp-channel.png +share/gimp/icons/Legacy/32x32/apps/gimp-floating-selection.png +share/gimp/icons/Legacy/32x32/apps/gimp-image.png +share/gimp/icons/Legacy/32x32/apps/gimp-layer-mask.png +share/gimp/icons/Legacy/32x32/apps/gimp-layer.png +share/gimp/icons/Legacy/32x32/apps/gimp-text-layer.png +share/gimp/icons/Legacy/32x32/apps/gimp-user-manual.png +share/gimp/icons/Legacy/32x32/apps/gimp-wilber.png +share/gimp/icons/Legacy/48x48/apps/gimp-channel-alpha.png +share/gimp/icons/Legacy/48x48/apps/gimp-channel-blue.png +share/gimp/icons/Legacy/48x48/apps/gimp-channel-gray.png +share/gimp/icons/Legacy/48x48/apps/gimp-channel-green.png +share/gimp/icons/Legacy/48x48/apps/gimp-channel-indexed.png +share/gimp/icons/Legacy/48x48/apps/gimp-channel-red.png +share/gimp/icons/Legacy/48x48/apps/gimp-channel.png +share/gimp/icons/Legacy/48x48/apps/gimp-floating-selection.png +share/gimp/icons/Legacy/48x48/apps/gimp-image.png +share/gimp/icons/Legacy/48x48/apps/gimp-layer-mask.png +share/gimp/icons/Legacy/48x48/apps/gimp-layer.png +share/gimp/icons/Legacy/48x48/apps/gimp-prefs-color-management.png +share/gimp/icons/Legacy/48x48/apps/gimp-prefs-controllers.png +share/gimp/icons/Legacy/48x48/apps/gimp-prefs-default-comment.png +share/gimp/icons/Legacy/48x48/apps/gimp-prefs-default-grid.png +share/gimp/icons/Legacy/48x48/apps/gimp-prefs-display.png +share/gimp/icons/Legacy/48x48/apps/gimp-prefs-folders-brushes.png +share/gimp/icons/Legacy/48x48/apps/gimp-prefs-folders-dynamics.png +share/gimp/icons/Legacy/48x48/apps/gimp-prefs-folders-environ.png +share/gimp/icons/Legacy/48x48/apps/gimp-prefs-folders-fonts.png +share/gimp/icons/Legacy/48x48/apps/gimp-prefs-folders-gradients.png +share/gimp/icons/Legacy/48x48/apps/gimp-prefs-folders-icon-themes.png +share/gimp/icons/Legacy/48x48/apps/gimp-prefs-folders-interp.png +share/gimp/icons/Legacy/48x48/apps/gimp-prefs-folders-modules.png +share/gimp/icons/Legacy/48x48/apps/gimp-prefs-folders-palettes.png +share/gimp/icons/Legacy/48x48/apps/gimp-prefs-folders-patterns.png +share/gimp/icons/Legacy/48x48/apps/gimp-prefs-folders-plug-ins.png +share/gimp/icons/Legacy/48x48/apps/gimp-prefs-folders-scripts.png +share/gimp/icons/Legacy/48x48/apps/gimp-prefs-folders-themes.png +share/gimp/icons/Legacy/48x48/apps/gimp-prefs-folders-tool-plug-ins.png +share/gimp/icons/Legacy/48x48/apps/gimp-prefs-folders-tool-presets.png +share/gimp/icons/Legacy/48x48/apps/gimp-prefs-folders-tools.png +share/gimp/icons/Legacy/48x48/apps/gimp-prefs-folders.png +share/gimp/icons/Legacy/48x48/apps/gimp-prefs-help-system.png +share/gimp/icons/Legacy/48x48/apps/gimp-prefs-icon-theme.png +share/gimp/icons/Legacy/48x48/apps/gimp-prefs-image-title.png +share/gimp/icons/Legacy/48x48/apps/gimp-prefs-image-windows.png +share/gimp/icons/Legacy/48x48/apps/gimp-prefs-input-devices.png +share/gimp/icons/Legacy/48x48/apps/gimp-prefs-interface.png +share/gimp/icons/Legacy/48x48/apps/gimp-prefs-new-image.png +share/gimp/icons/Legacy/48x48/apps/gimp-prefs-playground.png +share/gimp/icons/Legacy/48x48/apps/gimp-prefs-session.png +share/gimp/icons/Legacy/48x48/apps/gimp-prefs-system-resources.png +share/gimp/icons/Legacy/48x48/apps/gimp-prefs-theme.png +share/gimp/icons/Legacy/48x48/apps/gimp-prefs-tool-options.png +share/gimp/icons/Legacy/48x48/apps/gimp-prefs-toolbox.png +share/gimp/icons/Legacy/48x48/apps/gimp-prefs-window-management.png +share/gimp/icons/Legacy/48x48/apps/gimp-text-layer.png +share/gimp/icons/Legacy/48x48/apps/gimp-wilber.png +share/gimp/icons/Legacy/64x64/apps/gimp-error.png +share/gimp/icons/Legacy/64x64/apps/gimp-frame.png +share/gimp/icons/Legacy/64x64/apps/gimp-info.png +share/gimp/icons/Legacy/64x64/apps/gimp-question.png +share/gimp/icons/Legacy/64x64/apps/gimp-texture.png +share/gimp/icons/Legacy/64x64/apps/gimp-user-manual.png +share/gimp/icons/Legacy/64x64/apps/gimp-warning.png +share/gimp/icons/Legacy/64x64/apps/gimp-wilber-eek.png +share/gimp/icons/Legacy/64x64/apps/gimp-wilber-outline.png +share/gimp/icons/Legacy/64x64/apps/gimp-wilber.png +share/gimp/icons/Legacy/96x96/apps/gimp-wilber-outline.png +share/gimp/icons/Legacy/96x96/apps/gimp-wilber.png +share/gimp/icons/Legacy/index.theme +share/gimp/icons/Symbolic-Inverted/24x24/apps/dialog-information.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/document-print.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-business-card.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-center.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-channel-alpha.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-channel-blue.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-channel-gray.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-channel-green.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-channel-indexed.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-channel-red.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-channel.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-channels.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-char-picker.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-color-space-linear.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-color-space-non-linear.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-color-space-perceptual.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-colormap.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-controller-keyboard.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-controller-linux-input.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-controller-midi.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-controller-wheel.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-controller.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-cursor.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-device-status.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-display-filter-clip-warning.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-display-filter-colorblind.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-display-filter-contrast.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-display-filter-gamma.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-display-filter-lcms.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-display-filter-proof.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-display-filter.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-display.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-dynamics.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-error.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-floating-selection.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-gegl.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-grid.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-histogram.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-image.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-images.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-info.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-landscape.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-layer-mask.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-layer.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-layers.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-letter-spacing.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-line-spacing.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-move-to-screen.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-navigation.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-path.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-paths.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-portrait.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-prefs-color-management.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-prefs-controllers.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-prefs-default-comment.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-prefs-default-grid.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-prefs-display.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-prefs-folders-brushes.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-prefs-folders-dynamics.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-prefs-folders-environ.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-prefs-folders-fonts.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-prefs-folders-gradients.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-prefs-folders-icon-themes.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-prefs-folders-interp.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-prefs-folders-modules.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-prefs-folders-mypaint-brushes.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-prefs-folders-palettes.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-prefs-folders-patterns.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-prefs-folders-plug-ins.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-prefs-folders-scripts.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-prefs-folders-themes.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-prefs-folders-tool-plug-ins.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-prefs-folders-tool-presets.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-prefs-folders-tools.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-prefs-folders.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-prefs-help-system.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-prefs-icon-theme.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-prefs-image-title.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-prefs-image-windows-appearance.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-prefs-image-windows-snapping.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-prefs-image-windows.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-prefs-import-export.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-prefs-input-devices.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-prefs-interface.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-prefs-new-image.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-prefs-playground.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-prefs-session.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-prefs-system-resources.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-prefs-theme.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-prefs-tool-options.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-prefs-toolbox.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-prefs-window-management.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-question.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-resize.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-sample-point.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-scale.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-selection.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-smartphone.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-symmetry.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-template.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-text-layer.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-tool-airbrush.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-tool-align.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-tool-blur.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-tool-brightness-contrast.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-tool-bucket-fill.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-tool-by-color-select.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-tool-cage.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-tool-clone.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-tool-color-balance.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-tool-color-picker.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-tool-colorize.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-tool-crop.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-tool-curves.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-tool-desaturate.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-tool-dodge.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-tool-ellipse-select.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-tool-eraser.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-tool-exposure.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-tool-flip.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-tool-foreground-select.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-tool-free-select.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-tool-fuzzy-select.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-tool-gradient.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-tool-handle-transform.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-tool-heal.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-tool-hue-saturation.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-tool-ink.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-tool-iscissors.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-tool-levels.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-tool-measure.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-tool-mypaint-brush.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-tool-n-point-deformation.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-tool-options.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-tool-paintbrush.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-tool-path.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-tool-pencil.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-tool-perspective-clone.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-tool-perspective.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-tool-posterize.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-tool-preset.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-tool-rect-select.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-tool-rotate.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-tool-scale.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-tool-seamless-clone.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-tool-shadows-highlights.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-tool-shear.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-tool-smudge.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-tool-text.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-tool-threshold.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-tool-unified-transform.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-tool-warp.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-tool-zoom.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-tools.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-transparency.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-undo-history.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-user-manual.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-video.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-warning.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-web.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gimp-wilber.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/gtk-select-color.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/media-floppy.svg +share/gimp/icons/Symbolic-Inverted/24x24/apps/media-optical.svg +share/gimp/icons/Symbolic-Inverted/64x64/apps/gimp-error.png +share/gimp/icons/Symbolic-Inverted/64x64/apps/gimp-frame.png +share/gimp/icons/Symbolic-Inverted/64x64/apps/gimp-info.png +share/gimp/icons/Symbolic-Inverted/64x64/apps/gimp-question.png +share/gimp/icons/Symbolic-Inverted/64x64/apps/gimp-texture.png +share/gimp/icons/Symbolic-Inverted/64x64/apps/gimp-warning.png +share/gimp/icons/Symbolic-Inverted/index.theme +share/gimp/icons/Symbolic-Inverted/scalable/apps/dialog-information.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/document-new.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/document-open-recent.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/document-open.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/document-print.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/document-revert.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/document-save-as.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/document-save.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/edit-clear.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/edit-copy.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/edit-cut.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/edit-delete.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/edit-paste.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/edit-redo.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/edit-undo.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/folder-new.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/folder.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/format-indent-more.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/format-justify-center.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/format-justify-fill.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/format-justify-left.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/format-justify-right.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-anchor.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-attach.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-business-card.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-cap-butt.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-cap-round.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-cap-square.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-center.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-channel-alpha.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-channel-blue.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-channel-gray.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-channel-green.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-channel-indexed.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-channel-red.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-channel.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-channels.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-char-picker.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-clipboard.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-close-all.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-close.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-color-cmyk.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-color-pick-from-screen.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-color-picker-black.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-color-picker-gray.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-color-picker-white.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-color-space-linear.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-color-space-non-linear.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-color-space-perceptual.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-color-triangle.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-color-water.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-colormap.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-controller-keyboard.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-controller-linux-input.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-controller-midi.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-controller-wheel.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-controller.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-convert-grayscale.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-convert-indexed.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-convert-rgb.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-cursor.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-curve-free.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-curve-smooth.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-dashboard.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-default-colors.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-detach.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-device-status.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-display-filter-clip-warning.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-display-filter-colorblind.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-display-filter-contrast.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-display-filter-gamma.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-display-filter-lcms.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-display-filter-proof.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-display-filter.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-display.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-duplicate.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-dynamics.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-error.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-file-manager.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-flip-horizontal.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-flip-vertical.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-floating-selection.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-gegl.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-gradient-bilinear.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-gradient-conical-asymmetric.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-gradient-conical-symmetric.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-gradient-linear.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-gradient-radial.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-gradient-shapeburst-angular.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-gradient-shapeburst-dimpled.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-gradient-shapeburst-spherical.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-gradient-spiral-anticlockwise.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-gradient-spiral-clockwise.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-gradient-square.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-gravity-east.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-gravity-north-east.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-gravity-north-west.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-gravity-north.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-gravity-south-east.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-gravity-south-west.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-gravity-south.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-gravity-west.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-grid.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-group-layer.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-hcenter.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-hchain-broken.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-hchain.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-hfill.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-histogram-linear.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-histogram-logarithmic.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-histogram.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-image-open.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-image-reload.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-image.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-images.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-info.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-input-device.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-invert.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-join-bevel.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-join-miter.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-join-round.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-landscape.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-layer-mask.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-layer-to-imagesize.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-layer.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-layers.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-letter-spacing.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-line-spacing.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-linked.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-list.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-menu-left.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-menu-right.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-merge-down.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-move-to-screen.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-navigation.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-paste-as-new.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-paste-into.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-path-stroke.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-path.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-paths.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-pattern.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-plugin.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-portrait.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-prefs-color-management.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-prefs-controllers.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-prefs-default-comment.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-prefs-default-grid.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-prefs-display.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-prefs-folders-brushes.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-prefs-folders-dynamics.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-prefs-folders-environ.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-prefs-folders-fonts.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-prefs-folders-gradients.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-prefs-folders-icon-themes.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-prefs-folders-interp.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-prefs-folders-modules.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-prefs-folders-mypaint-brushes.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-prefs-folders-palettes.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-prefs-folders-patterns.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-prefs-folders-plug-ins.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-prefs-folders-scripts.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-prefs-folders-themes.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-prefs-folders-tool-plug-ins.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-prefs-folders-tool-presets.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-prefs-folders-tools.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-prefs-folders.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-prefs-help-system.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-prefs-icon-theme.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-prefs-image-title.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-prefs-image-windows-appearance.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-prefs-image-windows-snapping.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-prefs-image-windows.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-prefs-import-export.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-prefs-input-devices.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-prefs-interface.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-prefs-new-image.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-prefs-playground.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-prefs-session.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-prefs-system-resources.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-prefs-theme.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-prefs-tool-options.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-prefs-toolbox.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-prefs-window-management.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-question.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-quick-mask-off.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-quick-mask-on.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-reset.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-reshow-filter.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-resize.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-rotate-180.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-rotate-270.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-rotate-90.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-sample-point.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-scale.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-selection-add.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-selection-all.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-selection-border.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-selection-grow.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-selection-intersect.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-selection-none.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-selection-replace.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-selection-shrink.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-selection-stroke.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-selection-subtract.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-selection-to-channel.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-selection-to-path.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-selection.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-shape-circle.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-shape-diamond.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-shape-square.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-shred.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-smartphone.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-swap-colors.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-symmetry.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-template.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-text-dir-ltr.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-text-dir-rtl.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-text-dir-ttb-ltr-upright.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-text-dir-ttb-ltr.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-text-dir-ttb-rtl-upright.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-text-dir-ttb-rtl.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-text-layer.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-toilet-paper.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-tool-airbrush.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-tool-align.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-tool-blur.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-tool-brightness-contrast.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-tool-bucket-fill.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-tool-by-color-select.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-tool-cage.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-tool-clone.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-tool-color-balance.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-tool-color-picker.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-tool-color-temperature.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-tool-colorize.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-tool-crop.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-tool-curves.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-tool-desaturate.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-tool-dodge.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-tool-ellipse-select.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-tool-eraser.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-tool-exposure.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-tool-flip.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-tool-foreground-select.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-tool-free-select.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-tool-fuzzy-select.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-tool-gradient.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-tool-handle-transform.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-tool-heal.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-tool-hue-saturation.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-tool-ink.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-tool-iscissors.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-tool-levels.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-tool-measure.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-tool-move.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-tool-mypaint-brush.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-tool-n-point-deformation.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-tool-options.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-tool-paintbrush.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-tool-path.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-tool-pencil.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-tool-perspective-clone.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-tool-perspective.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-tool-posterize.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-tool-preset.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-tool-rect-select.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-tool-rotate.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-tool-scale.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-tool-seamless-clone.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-tool-shadows-highlights.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-tool-shear.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-tool-smudge.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-tool-text.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-tool-threshold.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-tool-unified-transform.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-tool-warp.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-tool-zoom.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-tools.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-transparency.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-undo-history.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-user-manual.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-vcenter.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-vchain-broken.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-vchain.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-vfill.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-video.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-visible.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-warning.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-web.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-wilber-eek.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-wilber-outline.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-wilber.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gimp-zoom-follow-window.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/go-bottom.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/go-down.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/go-first.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/go-home.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/go-last.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/go-next.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/go-previous.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/go-top.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/go-up.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gtk-cancel.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gtk-edit.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gtk-no.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gtk-ok.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gtk-select-color.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gtk-select-font.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/gtk-yes.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/help-about.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/list-add.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/list-remove.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/media-floppy.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/media-optical.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/media-playback-pause.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/media-playback-start.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/media-seek-backward.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/media-skip-backward.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/media-skip-forward.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/preferences-system.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/process-stop.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/system-run.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/view-fullscreen.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/view-refresh.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/window-close.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/window-new.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/zoom-fit-best.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/zoom-in.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/zoom-original.svg +share/gimp/icons/Symbolic-Inverted/scalable/apps/zoom-out.svg +share/gimp/icons/Symbolic/24x24/apps/dialog-information.svg +share/gimp/icons/Symbolic/24x24/apps/document-print.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-business-card.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-center.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-channel-alpha.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-channel-blue.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-channel-gray.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-channel-green.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-channel-indexed.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-channel-red.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-channel.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-channels.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-char-picker.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-color-space-linear.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-color-space-non-linear.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-color-space-perceptual.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-colormap.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-controller-keyboard.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-controller-linux-input.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-controller-midi.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-controller-wheel.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-controller.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-cursor.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-device-status.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-display-filter-clip-warning.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-display-filter-colorblind.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-display-filter-contrast.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-display-filter-gamma.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-display-filter-lcms.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-display-filter-proof.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-display-filter.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-display.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-dynamics.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-error.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-floating-selection.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-gegl.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-grid.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-histogram.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-image.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-images.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-info.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-landscape.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-layer-mask.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-layer.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-layers.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-letter-spacing.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-line-spacing.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-move-to-screen.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-navigation.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-path.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-paths.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-portrait.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-prefs-color-management.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-prefs-controllers.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-prefs-default-comment.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-prefs-default-grid.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-prefs-display.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-prefs-folders-brushes.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-prefs-folders-dynamics.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-prefs-folders-environ.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-prefs-folders-fonts.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-prefs-folders-gradients.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-prefs-folders-icon-themes.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-prefs-folders-interp.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-prefs-folders-modules.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-prefs-folders-mypaint-brushes.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-prefs-folders-palettes.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-prefs-folders-patterns.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-prefs-folders-plug-ins.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-prefs-folders-scripts.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-prefs-folders-themes.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-prefs-folders-tool-plug-ins.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-prefs-folders-tool-presets.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-prefs-folders-tools.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-prefs-folders.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-prefs-help-system.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-prefs-icon-theme.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-prefs-image-title.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-prefs-image-windows-appearance.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-prefs-image-windows-snapping.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-prefs-image-windows.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-prefs-import-export.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-prefs-input-devices.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-prefs-interface.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-prefs-new-image.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-prefs-playground.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-prefs-session.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-prefs-system-resources.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-prefs-theme.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-prefs-tool-options.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-prefs-toolbox.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-prefs-window-management.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-question.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-resize.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-sample-point.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-scale.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-selection.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-smartphone.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-symmetry.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-template.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-text-layer.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-tool-airbrush.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-tool-align.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-tool-blur.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-tool-brightness-contrast.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-tool-bucket-fill.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-tool-by-color-select.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-tool-cage.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-tool-clone.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-tool-color-balance.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-tool-color-picker.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-tool-colorize.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-tool-crop.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-tool-curves.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-tool-desaturate.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-tool-dodge.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-tool-ellipse-select.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-tool-eraser.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-tool-exposure.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-tool-flip.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-tool-foreground-select.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-tool-free-select.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-tool-fuzzy-select.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-tool-gradient.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-tool-handle-transform.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-tool-heal.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-tool-hue-saturation.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-tool-ink.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-tool-iscissors.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-tool-levels.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-tool-measure.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-tool-mypaint-brush.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-tool-n-point-deformation.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-tool-options.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-tool-paintbrush.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-tool-path.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-tool-pencil.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-tool-perspective-clone.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-tool-perspective.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-tool-posterize.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-tool-preset.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-tool-rect-select.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-tool-rotate.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-tool-scale.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-tool-seamless-clone.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-tool-shadows-highlights.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-tool-shear.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-tool-smudge.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-tool-text.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-tool-threshold.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-tool-unified-transform.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-tool-warp.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-tool-zoom.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-tools.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-transparency.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-undo-history.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-user-manual.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-video.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-warning.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-web.svg +share/gimp/icons/Symbolic/24x24/apps/gimp-wilber.svg +share/gimp/icons/Symbolic/24x24/apps/gtk-select-color.svg +share/gimp/icons/Symbolic/24x24/apps/media-floppy.svg +share/gimp/icons/Symbolic/24x24/apps/media-optical.svg +share/gimp/icons/Symbolic/64x64/apps/gimp-error.png +share/gimp/icons/Symbolic/64x64/apps/gimp-frame.png +share/gimp/icons/Symbolic/64x64/apps/gimp-info.png +share/gimp/icons/Symbolic/64x64/apps/gimp-question.png +share/gimp/icons/Symbolic/64x64/apps/gimp-texture.png +share/gimp/icons/Symbolic/64x64/apps/gimp-warning.png +share/gimp/icons/Symbolic/index.theme +share/gimp/icons/Symbolic/scalable/apps/dialog-information.svg +share/gimp/icons/Symbolic/scalable/apps/document-new.svg +share/gimp/icons/Symbolic/scalable/apps/document-open-recent.svg +share/gimp/icons/Symbolic/scalable/apps/document-open.svg +share/gimp/icons/Symbolic/scalable/apps/document-print.svg +share/gimp/icons/Symbolic/scalable/apps/document-revert.svg +share/gimp/icons/Symbolic/scalable/apps/document-save-as.svg +share/gimp/icons/Symbolic/scalable/apps/document-save.svg +share/gimp/icons/Symbolic/scalable/apps/edit-clear.svg +share/gimp/icons/Symbolic/scalable/apps/edit-copy.svg +share/gimp/icons/Symbolic/scalable/apps/edit-cut.svg +share/gimp/icons/Symbolic/scalable/apps/edit-delete.svg +share/gimp/icons/Symbolic/scalable/apps/edit-paste.svg +share/gimp/icons/Symbolic/scalable/apps/edit-redo.svg +share/gimp/icons/Symbolic/scalable/apps/edit-undo.svg +share/gimp/icons/Symbolic/scalable/apps/folder-new.svg +share/gimp/icons/Symbolic/scalable/apps/folder.svg +share/gimp/icons/Symbolic/scalable/apps/format-indent-more.svg +share/gimp/icons/Symbolic/scalable/apps/format-justify-center.svg +share/gimp/icons/Symbolic/scalable/apps/format-justify-fill.svg +share/gimp/icons/Symbolic/scalable/apps/format-justify-left.svg +share/gimp/icons/Symbolic/scalable/apps/format-justify-right.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-anchor.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-attach.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-business-card.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-cap-butt.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-cap-round.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-cap-square.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-center.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-channel-alpha.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-channel-blue.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-channel-gray.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-channel-green.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-channel-indexed.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-channel-red.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-channel.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-channels.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-char-picker.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-clipboard.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-close-all.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-close.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-color-cmyk.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-color-pick-from-screen.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-color-picker-black.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-color-picker-gray.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-color-picker-white.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-color-space-linear.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-color-space-non-linear.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-color-space-perceptual.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-color-triangle.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-color-water.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-colormap.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-controller-keyboard.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-controller-linux-input.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-controller-midi.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-controller-wheel.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-controller.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-convert-grayscale.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-convert-indexed.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-convert-rgb.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-cursor.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-curve-free.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-curve-smooth.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-dashboard.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-default-colors.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-detach.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-device-status.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-display-filter-clip-warning.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-display-filter-colorblind.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-display-filter-contrast.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-display-filter-gamma.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-display-filter-lcms.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-display-filter-proof.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-display-filter.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-display.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-duplicate.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-dynamics.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-error.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-file-manager.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-flip-horizontal.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-flip-vertical.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-floating-selection.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-gegl.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-gradient-bilinear.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-gradient-conical-asymmetric.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-gradient-conical-symmetric.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-gradient-linear.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-gradient-radial.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-gradient-shapeburst-angular.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-gradient-shapeburst-dimpled.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-gradient-shapeburst-spherical.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-gradient-spiral-anticlockwise.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-gradient-spiral-clockwise.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-gradient-square.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-gravity-east.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-gravity-north-east.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-gravity-north-west.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-gravity-north.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-gravity-south-east.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-gravity-south-west.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-gravity-south.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-gravity-west.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-grid.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-group-layer.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-hcenter.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-hchain-broken.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-hchain.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-hfill.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-histogram-linear.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-histogram-logarithmic.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-histogram.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-image-open.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-image-reload.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-image.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-images.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-info.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-input-device.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-invert.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-join-bevel.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-join-miter.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-join-round.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-landscape.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-layer-mask.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-layer-to-imagesize.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-layer.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-layers.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-letter-spacing.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-line-spacing.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-linked.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-list.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-menu-left.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-menu-right.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-merge-down.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-move-to-screen.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-navigation.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-paste-as-new.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-paste-into.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-path-stroke.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-path.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-paths.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-pattern.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-plugin.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-portrait.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-prefs-color-management.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-prefs-controllers.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-prefs-default-comment.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-prefs-default-grid.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-prefs-display.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-prefs-folders-brushes.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-prefs-folders-dynamics.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-prefs-folders-environ.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-prefs-folders-fonts.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-prefs-folders-gradients.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-prefs-folders-icon-themes.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-prefs-folders-interp.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-prefs-folders-modules.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-prefs-folders-mypaint-brushes.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-prefs-folders-palettes.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-prefs-folders-patterns.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-prefs-folders-plug-ins.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-prefs-folders-scripts.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-prefs-folders-themes.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-prefs-folders-tool-plug-ins.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-prefs-folders-tool-presets.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-prefs-folders-tools.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-prefs-folders.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-prefs-help-system.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-prefs-icon-theme.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-prefs-image-title.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-prefs-image-windows-appearance.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-prefs-image-windows-snapping.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-prefs-image-windows.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-prefs-import-export.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-prefs-input-devices.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-prefs-interface.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-prefs-new-image.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-prefs-playground.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-prefs-session.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-prefs-system-resources.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-prefs-theme.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-prefs-tool-options.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-prefs-toolbox.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-prefs-window-management.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-question.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-quick-mask-off.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-quick-mask-on.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-reset.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-reshow-filter.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-resize.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-rotate-180.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-rotate-270.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-rotate-90.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-sample-point.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-scale.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-selection-add.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-selection-all.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-selection-border.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-selection-grow.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-selection-intersect.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-selection-none.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-selection-replace.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-selection-shrink.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-selection-stroke.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-selection-subtract.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-selection-to-channel.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-selection-to-path.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-selection.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-shape-circle.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-shape-diamond.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-shape-square.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-shred.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-smartphone.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-swap-colors.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-symmetry.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-template.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-text-dir-ltr.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-text-dir-rtl.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-text-dir-ttb-ltr-upright.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-text-dir-ttb-ltr.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-text-dir-ttb-rtl-upright.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-text-dir-ttb-rtl.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-text-layer.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-toilet-paper.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-tool-airbrush.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-tool-align.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-tool-blur.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-tool-brightness-contrast.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-tool-bucket-fill.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-tool-by-color-select.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-tool-cage.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-tool-clone.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-tool-color-balance.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-tool-color-picker.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-tool-color-temperature.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-tool-colorize.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-tool-crop.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-tool-curves.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-tool-desaturate.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-tool-dodge.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-tool-ellipse-select.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-tool-eraser.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-tool-exposure.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-tool-flip.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-tool-foreground-select.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-tool-free-select.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-tool-fuzzy-select.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-tool-gradient.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-tool-handle-transform.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-tool-heal.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-tool-hue-saturation.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-tool-ink.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-tool-iscissors.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-tool-levels.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-tool-measure.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-tool-move.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-tool-mypaint-brush.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-tool-n-point-deformation.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-tool-options.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-tool-paintbrush.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-tool-path.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-tool-pencil.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-tool-perspective-clone.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-tool-perspective.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-tool-posterize.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-tool-preset.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-tool-rect-select.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-tool-rotate.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-tool-scale.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-tool-seamless-clone.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-tool-shadows-highlights.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-tool-shear.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-tool-smudge.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-tool-text.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-tool-threshold.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-tool-unified-transform.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-tool-warp.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-tool-zoom.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-tools.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-transparency.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-undo-history.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-user-manual.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-vcenter.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-vchain-broken.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-vchain.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-vfill.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-video.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-visible.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-warning.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-web.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-wilber-eek.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-wilber-outline.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-wilber.svg +share/gimp/icons/Symbolic/scalable/apps/gimp-zoom-follow-window.svg +share/gimp/icons/Symbolic/scalable/apps/go-bottom.svg +share/gimp/icons/Symbolic/scalable/apps/go-down.svg +share/gimp/icons/Symbolic/scalable/apps/go-first.svg +share/gimp/icons/Symbolic/scalable/apps/go-home.svg +share/gimp/icons/Symbolic/scalable/apps/go-last.svg +share/gimp/icons/Symbolic/scalable/apps/go-next.svg +share/gimp/icons/Symbolic/scalable/apps/go-previous.svg +share/gimp/icons/Symbolic/scalable/apps/go-top.svg +share/gimp/icons/Symbolic/scalable/apps/go-up.svg +share/gimp/icons/Symbolic/scalable/apps/gtk-cancel.svg +share/gimp/icons/Symbolic/scalable/apps/gtk-edit.svg +share/gimp/icons/Symbolic/scalable/apps/gtk-no.svg +share/gimp/icons/Symbolic/scalable/apps/gtk-ok.svg +share/gimp/icons/Symbolic/scalable/apps/gtk-select-color.svg +share/gimp/icons/Symbolic/scalable/apps/gtk-select-font.svg +share/gimp/icons/Symbolic/scalable/apps/gtk-yes.svg +share/gimp/icons/Symbolic/scalable/apps/help-about.svg +share/gimp/icons/Symbolic/scalable/apps/list-add.svg +share/gimp/icons/Symbolic/scalable/apps/list-remove.svg +share/gimp/icons/Symbolic/scalable/apps/media-floppy.svg +share/gimp/icons/Symbolic/scalable/apps/media-optical.svg +share/gimp/icons/Symbolic/scalable/apps/media-playback-pause.svg +share/gimp/icons/Symbolic/scalable/apps/media-playback-start.svg +share/gimp/icons/Symbolic/scalable/apps/media-seek-backward.svg +share/gimp/icons/Symbolic/scalable/apps/media-skip-backward.svg +share/gimp/icons/Symbolic/scalable/apps/media-skip-forward.svg +share/gimp/icons/Symbolic/scalable/apps/preferences-system.svg +share/gimp/icons/Symbolic/scalable/apps/process-stop.svg +share/gimp/icons/Symbolic/scalable/apps/system-run.svg +share/gimp/icons/Symbolic/scalable/apps/view-fullscreen.svg +share/gimp/icons/Symbolic/scalable/apps/view-refresh.svg +share/gimp/icons/Symbolic/scalable/apps/window-close.svg +share/gimp/icons/Symbolic/scalable/apps/window-new.svg +share/gimp/icons/Symbolic/scalable/apps/zoom-fit-best.svg +share/gimp/icons/Symbolic/scalable/apps/zoom-in.svg +share/gimp/icons/Symbolic/scalable/apps/zoom-original.svg +share/gimp/icons/Symbolic/scalable/apps/zoom-out.svg +share/gimp/icons/hicolor/index.theme share/gimp/images/gimp-logo.png share/gimp/images/gimp-splash.png share/gimp/images/wilber.png @@ -1463,6 +3355,7 @@ share/gimp/menus/buffers-menu.xml share/gimp/menus/channels-menu.xml share/gimp/menus/colormap-menu.xml share/gimp/menus/cursor-info-menu.xml +share/gimp/menus/dashboard-menu.xml share/gimp/menus/dockable-menu.xml share/gimp/menus/documents-menu.xml share/gimp/menus/dynamics-editor-menu.xml @@ -1474,6 +3367,7 @@ share/gimp/menus/gradients-menu.xml share/gimp/menus/image-menu.xml share/gimp/menus/images-menu.xml share/gimp/menus/layers-menu.xml +share/gimp/menus/mypaint-brushes-menu.xml share/gimp/menus/palette-editor-menu.xml share/gimp/menus/palettes-menu.xml share/gimp/menus/patterns-menu.xml @@ -1528,130 +3422,95 @@ share/gimp/palettes/Visibone_2.gpl share/gimp/palettes/Volcano.gpl share/gimp/palettes/Warm_Colors.gpl share/gimp/palettes/Web.gpl -share/gimp/patterns/3dgreen.pat -share/gimp/patterns/Craters.pat -share/gimp/patterns/Moonfoot.pat -share/gimp/patterns/Stripes1px.pat -share/gimp/patterns/Stripes2px.pat -share/gimp/patterns/amethyst.pat -share/gimp/patterns/bark.pat -share/gimp/patterns/blue.pat -share/gimp/patterns/bluegrid.pat -share/gimp/patterns/bluesquares.pat -share/gimp/patterns/blueweb.pat -share/gimp/patterns/brick.pat -share/gimp/patterns/burlap.pat -share/gimp/patterns/burlwood.pat -share/gimp/patterns/choc_swirl.pat -share/gimp/patterns/corkboard.pat -share/gimp/patterns/cracked.pat -share/gimp/patterns/crinklepaper.pat -share/gimp/patterns/electric.pat -share/gimp/patterns/fibers.pat -share/gimp/patterns/granite1.pat -share/gimp/patterns/ground1.pat -share/gimp/patterns/ice.pat -share/gimp/patterns/java.pat -share/gimp/patterns/leather.pat -share/gimp/patterns/leaves.pat -share/gimp/patterns/leopard.pat -share/gimp/patterns/lightning.pat -share/gimp/patterns/marble1.pat -share/gimp/patterns/marble2.pat -share/gimp/patterns/marble3.pat -share/gimp/patterns/nops.pat -share/gimp/patterns/paper.pat -share/gimp/patterns/parque1.pat -share/gimp/patterns/parque2.pat -share/gimp/patterns/parque3.pat -share/gimp/patterns/pastel.pat -share/gimp/patterns/pine.pat -share/gimp/patterns/pink_marble.pat -share/gimp/patterns/pool.pat -share/gimp/patterns/qube1.pat -share/gimp/patterns/rain.pat -share/gimp/patterns/recessed.pat -share/gimp/patterns/redcube.pat -share/gimp/patterns/rock.pat -share/gimp/patterns/sky.pat -share/gimp/patterns/slate.pat -share/gimp/patterns/sm_squares.pat -share/gimp/patterns/starfield.pat -share/gimp/patterns/stone33.pat -share/gimp/patterns/terra.pat -share/gimp/patterns/walnut.pat -share/gimp/patterns/warning.pat -share/gimp/patterns/wood1.pat -share/gimp/patterns/wood2.pat -share/gimp/patterns/wood3.pat -share/gimp/patterns/wood4.pat -share/gimp/patterns/wood5.pat -share/gimp/scripts/3d-outline.scm -share/gimp/scripts/3dTruchet.scm +share/gimp/patterns/Animal/leather.pat +share/gimp/patterns/Animal/leopard.pat +share/gimp/patterns/Fabric/burlap.pat +share/gimp/patterns/Food/choc_swirl.pat +share/gimp/patterns/Food/java.pat +share/gimp/patterns/Legacy/3dgreen.pat +share/gimp/patterns/Legacy/Stripes1px.pat +share/gimp/patterns/Legacy/Stripes2px.pat +share/gimp/patterns/Legacy/blue.pat +share/gimp/patterns/Legacy/bluegrid.pat +share/gimp/patterns/Legacy/bluesquares.pat +share/gimp/patterns/Legacy/blueweb.pat +share/gimp/patterns/Legacy/fibers.pat +share/gimp/patterns/Legacy/nops.pat +share/gimp/patterns/Legacy/pastel.pat +share/gimp/patterns/Legacy/qube1.pat +share/gimp/patterns/Legacy/recessed.pat +share/gimp/patterns/Legacy/redcube.pat +share/gimp/patterns/Legacy/sm_squares.pat +share/gimp/patterns/Legacy/warning.pat +share/gimp/patterns/Paper/crinklepaper.pat +share/gimp/patterns/Paper/paper.pat +share/gimp/patterns/Plant/leaves.pat +share/gimp/patterns/Sky/lightning.pat +share/gimp/patterns/Sky/sky.pat +share/gimp/patterns/Sky/starfield.pat +share/gimp/patterns/Stone/Craters.pat +share/gimp/patterns/Stone/Moonfoot.pat +share/gimp/patterns/Stone/amethyst.pat +share/gimp/patterns/Stone/brick.pat +share/gimp/patterns/Stone/cracked.pat +share/gimp/patterns/Stone/granite1.pat +share/gimp/patterns/Stone/ground1.pat +share/gimp/patterns/Stone/marble1.pat +share/gimp/patterns/Stone/marble2.pat +share/gimp/patterns/Stone/marble3.pat +share/gimp/patterns/Stone/pink_marble.pat +share/gimp/patterns/Stone/rock.pat +share/gimp/patterns/Stone/slate.pat +share/gimp/patterns/Stone/stone33.pat +share/gimp/patterns/Stone/terra.pat +share/gimp/patterns/Water/electric.pat +share/gimp/patterns/Water/ice.pat +share/gimp/patterns/Water/pool.pat +share/gimp/patterns/Water/rain.pat +share/gimp/patterns/Wood/bark.pat +share/gimp/patterns/Wood/burlwood.pat +share/gimp/patterns/Wood/corkboard.pat +share/gimp/patterns/Wood/parque1.pat +share/gimp/patterns/Wood/parque2.pat +share/gimp/patterns/Wood/parque3.pat +share/gimp/patterns/Wood/pine.pat +share/gimp/patterns/Wood/walnut.pat +share/gimp/patterns/Wood/wood1.pat +share/gimp/patterns/Wood/wood2.pat +share/gimp/patterns/Wood/wood3.pat +share/gimp/patterns/Wood/wood4.pat +share/gimp/patterns/Wood/wood5.pat share/gimp/scripts/add-bevel.scm share/gimp/scripts/addborder.scm -share/gimp/scripts/alien-glow-arrow.scm -share/gimp/scripts/alien-glow-bar.scm -share/gimp/scripts/alien-glow-bullet.scm -share/gimp/scripts/alien-glow-button.scm -share/gimp/scripts/alien-glow-logo.scm -share/gimp/scripts/alien-neon-logo.scm -share/gimp/scripts/basic1-logo.scm -share/gimp/scripts/basic2-logo.scm -share/gimp/scripts/beveled-button.scm -share/gimp/scripts/beveled-pattern-arrow.scm -share/gimp/scripts/beveled-pattern-bullet.scm -share/gimp/scripts/beveled-pattern-button.scm -share/gimp/scripts/beveled-pattern-heading.scm -share/gimp/scripts/beveled-pattern-hrule.scm share/gimp/scripts/blend-anim.scm -share/gimp/scripts/blended-logo.scm -share/gimp/scripts/bovinated-logo.scm share/gimp/scripts/burn-in-anim.scm -share/gimp/scripts/camo.scm share/gimp/scripts/carve-it.scm -share/gimp/scripts/carved-logo.scm -share/gimp/scripts/chalk.scm -share/gimp/scripts/chip-away.scm share/gimp/scripts/chrome-it.scm -share/gimp/scripts/chrome-logo.scm share/gimp/scripts/circuit.scm share/gimp/scripts/clothify.scm share/gimp/scripts/coffee.scm -share/gimp/scripts/comic-logo.scm -share/gimp/scripts/coolmetal-logo.scm share/gimp/scripts/copy-visible.scm -share/gimp/scripts/crystal-logo.scm share/gimp/scripts/difference-clouds.scm share/gimp/scripts/distress-selection.scm share/gimp/scripts/drop-shadow.scm share/gimp/scripts/erase-rows.scm -share/gimp/scripts/flatland.scm share/gimp/scripts/font-map.scm -share/gimp/scripts/frosty-logo.scm share/gimp/scripts/fuzzyborder.scm share/gimp/scripts/gimp-online.scm -share/gimp/scripts/glossy.scm -share/gimp/scripts/glowing-logo.scm -share/gimp/scripts/gradient-bevel-logo.scm share/gimp/scripts/gradient-example.scm share/gimp/scripts/grid-system.scm share/gimp/scripts/guides-from-selection.scm share/gimp/scripts/guides-new-percent.scm share/gimp/scripts/guides-new.scm share/gimp/scripts/guides-remove-all.scm -share/gimp/scripts/i26-gunya2.scm share/gimp/scripts/images/beavis.jpg share/gimp/scripts/images/texture.jpg share/gimp/scripts/images/texture1.jpg share/gimp/scripts/images/texture2.jpg share/gimp/scripts/images/texture3.jpg -share/gimp/scripts/land.scm share/gimp/scripts/lava.scm share/gimp/scripts/line-nova.scm share/gimp/scripts/mkbrush.scm -share/gimp/scripts/neon-logo.scm -share/gimp/scripts/news-text.scm share/gimp/scripts/old-photo.scm share/gimp/scripts/palette-export.scm share/gimp/scripts/paste-as-brush.scm @@ -1659,8 +3518,6 @@ share/gimp/scripts/paste-as-pattern.scm share/gimp/scripts/perspective-shadow.scm share/gimp/scripts/plug-in-compat.init share/gimp/scripts/predator.scm -share/gimp/scripts/pupi-button.scm -share/gimp/scripts/rendermap.scm share/gimp/scripts/reverse-layers.scm share/gimp/scripts/ripply-anim.scm share/gimp/scripts/round-corners.scm @@ -1673,95 +3530,393 @@ share/gimp/scripts/select-to-image.scm share/gimp/scripts/select-to-pattern.scm share/gimp/scripts/selection-round.scm share/gimp/scripts/slide.scm -share/gimp/scripts/sota-chrome-logo.scm -share/gimp/scripts/speed-text.scm share/gimp/scripts/spinning-globe.scm share/gimp/scripts/spyrogimp.scm -share/gimp/scripts/starscape-logo.scm -share/gimp/scripts/swirltile.scm -share/gimp/scripts/swirly-pattern.scm -share/gimp/scripts/t-o-p-logo.scm -share/gimp/scripts/text-circle.scm -share/gimp/scripts/textured-logo.scm share/gimp/scripts/tileblur.scm -share/gimp/scripts/title-header.scm -share/gimp/scripts/truchet.scm share/gimp/scripts/unsharp-mask.scm share/gimp/scripts/waves-anim.scm share/gimp/scripts/weave.scm share/gimp/scripts/xach-effect.scm share/gimp/tags/gimp-tags-default.xml -share/gimp/themes/Default/gtkrc -share/gimp/themes/Default/images/preferences/color-management-22.png -share/gimp/themes/Default/images/preferences/color-management.png -share/gimp/themes/Default/images/preferences/controllers-22.png -share/gimp/themes/Default/images/preferences/controllers.png -share/gimp/themes/Default/images/preferences/default-comment.png -share/gimp/themes/Default/images/preferences/default-grid-22.png -share/gimp/themes/Default/images/preferences/default-grid.png -share/gimp/themes/Default/images/preferences/display-22.png -share/gimp/themes/Default/images/preferences/display.png -share/gimp/themes/Default/images/preferences/environment-22.png -share/gimp/themes/Default/images/preferences/environment.png -share/gimp/themes/Default/images/preferences/folders-22.png -share/gimp/themes/Default/images/preferences/folders-brushes-22.png -share/gimp/themes/Default/images/preferences/folders-brushes.png -share/gimp/themes/Default/images/preferences/folders-dynamics-22.png -share/gimp/themes/Default/images/preferences/folders-dynamics.png -share/gimp/themes/Default/images/preferences/folders-environ-22.png -share/gimp/themes/Default/images/preferences/folders-environ.png -share/gimp/themes/Default/images/preferences/folders-fonts-22.png -share/gimp/themes/Default/images/preferences/folders-fonts.png -share/gimp/themes/Default/images/preferences/folders-gradients-22.png -share/gimp/themes/Default/images/preferences/folders-gradients.png -share/gimp/themes/Default/images/preferences/folders-interp-22.png -share/gimp/themes/Default/images/preferences/folders-interp.png -share/gimp/themes/Default/images/preferences/folders-modules-22.png -share/gimp/themes/Default/images/preferences/folders-modules.png -share/gimp/themes/Default/images/preferences/folders-palettes-22.png -share/gimp/themes/Default/images/preferences/folders-palettes.png -share/gimp/themes/Default/images/preferences/folders-patterns-22.png -share/gimp/themes/Default/images/preferences/folders-patterns.png -share/gimp/themes/Default/images/preferences/folders-plug-ins-22.png -share/gimp/themes/Default/images/preferences/folders-plug-ins.png -share/gimp/themes/Default/images/preferences/folders-scripts-22.png -share/gimp/themes/Default/images/preferences/folders-scripts.png -share/gimp/themes/Default/images/preferences/folders-themes-22.png -share/gimp/themes/Default/images/preferences/folders-themes.png -share/gimp/themes/Default/images/preferences/folders-tool-plug-ins-22.png -share/gimp/themes/Default/images/preferences/folders-tool-plug-ins.png -share/gimp/themes/Default/images/preferences/folders-tool-presets-22.png -share/gimp/themes/Default/images/preferences/folders-tool-presets.png -share/gimp/themes/Default/images/preferences/folders-tools-22.png -share/gimp/themes/Default/images/preferences/folders.png -share/gimp/themes/Default/images/preferences/help-system-22.png -share/gimp/themes/Default/images/preferences/help-system.png -share/gimp/themes/Default/images/preferences/image-title-22.png -share/gimp/themes/Default/images/preferences/image-title.png -share/gimp/themes/Default/images/preferences/image-windows-22.png -share/gimp/themes/Default/images/preferences/image-windows.png -share/gimp/themes/Default/images/preferences/input-devices-22.png -share/gimp/themes/Default/images/preferences/input-devices.png -share/gimp/themes/Default/images/preferences/interface-22.png -share/gimp/themes/Default/images/preferences/interface.png -share/gimp/themes/Default/images/preferences/new-image-22.png -share/gimp/themes/Default/images/preferences/new-image.png -share/gimp/themes/Default/images/preferences/session-22.png -share/gimp/themes/Default/images/preferences/session.png -share/gimp/themes/Default/images/preferences/theme-22.png -share/gimp/themes/Default/images/preferences/theme.png -share/gimp/themes/Default/images/preferences/tool-options-22.png -share/gimp/themes/Default/images/preferences/tool-options.png -share/gimp/themes/Default/images/preferences/toolbox-22.png -share/gimp/themes/Default/images/preferences/toolbox.png -share/gimp/themes/Default/images/preferences/window-management-22.png -share/gimp/themes/Default/images/preferences/window-management.png -share/gimp/themes/Default/images/stock-error-64.png -share/gimp/themes/Default/images/stock-info-64.png -share/gimp/themes/Default/images/stock-question-64.png -share/gimp/themes/Default/images/stock-warning-64.png -share/gimp/themes/Small/gtkrc +share/gimp/themes/Dark/gtkrc +share/gimp/themes/Dark/ui/arrow-down-insens.png +share/gimp/themes/Dark/ui/arrow-down-prelight.png +share/gimp/themes/Dark/ui/arrow-down-small-insens.png +share/gimp/themes/Dark/ui/arrow-down-small-prelight.png +share/gimp/themes/Dark/ui/arrow-down-small.png +share/gimp/themes/Dark/ui/arrow-down.png +share/gimp/themes/Dark/ui/arrow-left-insens.png +share/gimp/themes/Dark/ui/arrow-left-prelight.png +share/gimp/themes/Dark/ui/arrow-left.png +share/gimp/themes/Dark/ui/arrow-right-insens.png +share/gimp/themes/Dark/ui/arrow-right-prelight.png +share/gimp/themes/Dark/ui/arrow-right.png +share/gimp/themes/Dark/ui/arrow-up-insens.png +share/gimp/themes/Dark/ui/arrow-up-prelight.png +share/gimp/themes/Dark/ui/arrow-up-small-insens.png +share/gimp/themes/Dark/ui/arrow-up-small-prelight.png +share/gimp/themes/Dark/ui/arrow-up-small.png +share/gimp/themes/Dark/ui/arrow-up.png +share/gimp/themes/Dark/ui/bar-h.png +share/gimp/themes/Dark/ui/bar-v.png +share/gimp/themes/Dark/ui/blue.png +share/gimp/themes/Dark/ui/button-default.png +share/gimp/themes/Dark/ui/button-insensitive.png +share/gimp/themes/Dark/ui/button-normal.png +share/gimp/themes/Dark/ui/button-prelight.png +share/gimp/themes/Dark/ui/button-pressed.png +share/gimp/themes/Dark/ui/check1.png +share/gimp/themes/Dark/ui/check2.png +share/gimp/themes/Dark/ui/check3.png +share/gimp/themes/Dark/ui/combo-entry-border-active-bg.png +share/gimp/themes/Dark/ui/combo-entry-border-active-notebook.png +share/gimp/themes/Dark/ui/combo-entry-border-active-rtl-notebook.png +share/gimp/themes/Dark/ui/combo-entry-border-bg.png +share/gimp/themes/Dark/ui/combo-entry-border-disabled-bg.png +share/gimp/themes/Dark/ui/combo-entry-border-disabled-notebook.png +share/gimp/themes/Dark/ui/combo-entry-border-disabled-rtl-bg.png +share/gimp/themes/Dark/ui/combo-entry-border-disabled-rtl-notebook.png +share/gimp/themes/Dark/ui/combo-entry-border-notebook.png +share/gimp/themes/Dark/ui/combo-entry-border-rtl-bg.png +share/gimp/themes/Dark/ui/combo-entry-border-rtl-notebook.png +share/gimp/themes/Dark/ui/combo-entry-button-active-rtl.png +share/gimp/themes/Dark/ui/combo-entry-button-active.png +share/gimp/themes/Dark/ui/combo-entry-button-disabled-rtl.png +share/gimp/themes/Dark/ui/combo-entry-button-disabled.png +share/gimp/themes/Dark/ui/combo-entry-button-rtl.png +share/gimp/themes/Dark/ui/combo-entry-button.png +share/gimp/themes/Dark/ui/down-pre.png +share/gimp/themes/Dark/ui/down.png +share/gimp/themes/Dark/ui/entry-border-active-bg.png +share/gimp/themes/Dark/ui/entry-border-active-notebook.png +share/gimp/themes/Dark/ui/entry-border-disabled-bg.png +share/gimp/themes/Dark/ui/entry-border-disabled-notebook.png +share/gimp/themes/Dark/ui/entry-border-fill-active.png +share/gimp/themes/Dark/ui/entry-border-fill.png +share/gimp/themes/Dark/ui/entry-border-notebook-null.png +share/gimp/themes/Dark/ui/entry-border-notebook.png +share/gimp/themes/Dark/ui/ext-bottom.png +share/gimp/themes/Dark/ui/ext-left.png +share/gimp/themes/Dark/ui/ext-right.png +share/gimp/themes/Dark/ui/ext-top.png +share/gimp/themes/Dark/ui/extension-bottom.png +share/gimp/themes/Dark/ui/extension-left.png +share/gimp/themes/Dark/ui/extension-right.png +share/gimp/themes/Dark/ui/extension-top.png +share/gimp/themes/Dark/ui/frame-gap-end.png +share/gimp/themes/Dark/ui/frame-gap-start.png +share/gimp/themes/Dark/ui/frame.png +share/gimp/themes/Dark/ui/gap_bottom.png +share/gimp/themes/Dark/ui/gap_left.png +share/gimp/themes/Dark/ui/gap_right.png +share/gimp/themes/Dark/ui/gap_top.png +share/gimp/themes/Dark/ui/gimp-arrow-down-insensitive.png +share/gimp/themes/Dark/ui/gimp-arrow-down-insenstive.png +share/gimp/themes/Dark/ui/gimp-arrow-down.png +share/gimp/themes/Dark/ui/gimp-arrow-left.png +share/gimp/themes/Dark/ui/gimp-arrow-right-dark.png +share/gimp/themes/Dark/ui/gimp-arrow-right.png +share/gimp/themes/Dark/ui/gimp-arrow-up.png +share/gimp/themes/Dark/ui/gimp-button-default.png +share/gimp/themes/Dark/ui/gimp-button-insensitive.png +share/gimp/themes/Dark/ui/gimp-button-normal.png +share/gimp/themes/Dark/ui/gimp-button-prelight.png +share/gimp/themes/Dark/ui/gimp-button-pressed.png +share/gimp/themes/Dark/ui/gimp-handle-h.png +share/gimp/themes/Dark/ui/gimp-handle-v.png +share/gimp/themes/Dark/ui/gimp-line-h.png +share/gimp/themes/Dark/ui/gimp-line-v.png +share/gimp/themes/Dark/ui/gimp-menu-line-h.png +share/gimp/themes/Dark/ui/gimp-tooltip-bg.png +share/gimp/themes/Dark/ui/list_header-pressed.png +share/gimp/themes/Dark/ui/list_header.png +share/gimp/themes/Dark/ui/menu-arrow-prelight.png +share/gimp/themes/Dark/ui/menu-arrow.png +share/gimp/themes/Dark/ui/menu.png +share/gimp/themes/Dark/ui/menubar.png +share/gimp/themes/Dark/ui/menuitem.png +share/gimp/themes/Dark/ui/minus.png +share/gimp/themes/Dark/ui/notebook.png +share/gimp/themes/Dark/ui/null.png +share/gimp/themes/Dark/ui/option1.png +share/gimp/themes/Dark/ui/option2.png +share/gimp/themes/Dark/ui/option3.png +share/gimp/themes/Dark/ui/plus.png +share/gimp/themes/Dark/ui/progressbar-trough.png +share/gimp/themes/Dark/ui/progressbar.png +share/gimp/themes/Dark/ui/shadow-in-alt.png +share/gimp/themes/Dark/ui/shadow-in.png +share/gimp/themes/Dark/ui/shadow-null.png +share/gimp/themes/Dark/ui/shadow-out.png +share/gimp/themes/Dark/ui/slider-h.png +share/gimp/themes/Dark/ui/slider-v.png +share/gimp/themes/Dark/ui/spin-down-insensitive.png +share/gimp/themes/Dark/ui/spin-down-normal.png +share/gimp/themes/Dark/ui/spin-down-pressed.png +share/gimp/themes/Dark/ui/spin-insensitive.png +share/gimp/themes/Dark/ui/spin-up-insensitive.png +share/gimp/themes/Dark/ui/spin-up-normal.png +share/gimp/themes/Dark/ui/spin-up-pressed.png +share/gimp/themes/Dark/ui/spin.png +share/gimp/themes/Dark/ui/toolbar.png +share/gimp/themes/Dark/ui/transparent.png +share/gimp/themes/Gray/gtkrc +share/gimp/themes/Gray/ui/arrow-down-insens.png +share/gimp/themes/Gray/ui/arrow-down-prelight.png +share/gimp/themes/Gray/ui/arrow-down-small-insens.png +share/gimp/themes/Gray/ui/arrow-down-small-prelight.png +share/gimp/themes/Gray/ui/arrow-down-small.png +share/gimp/themes/Gray/ui/arrow-down.png +share/gimp/themes/Gray/ui/arrow-left-insens.png +share/gimp/themes/Gray/ui/arrow-left-prelight.png +share/gimp/themes/Gray/ui/arrow-left.png +share/gimp/themes/Gray/ui/arrow-right-insens.png +share/gimp/themes/Gray/ui/arrow-right-prelight.png +share/gimp/themes/Gray/ui/arrow-right.png +share/gimp/themes/Gray/ui/arrow-up-insens.png +share/gimp/themes/Gray/ui/arrow-up-prelight.png +share/gimp/themes/Gray/ui/arrow-up-small-insens.png +share/gimp/themes/Gray/ui/arrow-up-small-prelight.png +share/gimp/themes/Gray/ui/arrow-up-small.png +share/gimp/themes/Gray/ui/arrow-up.png +share/gimp/themes/Gray/ui/bar-h.png +share/gimp/themes/Gray/ui/bar-v.png +share/gimp/themes/Gray/ui/button-default.png +share/gimp/themes/Gray/ui/button-insensitive.png +share/gimp/themes/Gray/ui/button-normal.png +share/gimp/themes/Gray/ui/button-prelight.png +share/gimp/themes/Gray/ui/button-pressed.png +share/gimp/themes/Gray/ui/check1.png +share/gimp/themes/Gray/ui/check2.png +share/gimp/themes/Gray/ui/check3.png +share/gimp/themes/Gray/ui/combo-entry-border-active-bg.png +share/gimp/themes/Gray/ui/combo-entry-border-active-notebook.png +share/gimp/themes/Gray/ui/combo-entry-border-active-rtl-notebook.png +share/gimp/themes/Gray/ui/combo-entry-border-bg.png +share/gimp/themes/Gray/ui/combo-entry-border-disabled-bg.png +share/gimp/themes/Gray/ui/combo-entry-border-disabled-notebook.png +share/gimp/themes/Gray/ui/combo-entry-border-disabled-rtl-bg.png +share/gimp/themes/Gray/ui/combo-entry-border-disabled-rtl-notebook.png +share/gimp/themes/Gray/ui/combo-entry-border-notebook.png +share/gimp/themes/Gray/ui/combo-entry-border-rtl-bg.png +share/gimp/themes/Gray/ui/combo-entry-border-rtl-notebook.png +share/gimp/themes/Gray/ui/combo-entry-button-active-rtl.png +share/gimp/themes/Gray/ui/combo-entry-button-active.png +share/gimp/themes/Gray/ui/combo-entry-button-disabled-rtl.png +share/gimp/themes/Gray/ui/combo-entry-button-disabled.png +share/gimp/themes/Gray/ui/combo-entry-button-rtl.png +share/gimp/themes/Gray/ui/combo-entry-button.png +share/gimp/themes/Gray/ui/entry-border-active-bg.png +share/gimp/themes/Gray/ui/entry-border-active-notebook.png +share/gimp/themes/Gray/ui/entry-border-disabled-bg.png +share/gimp/themes/Gray/ui/entry-border-disabled-notebook.png +share/gimp/themes/Gray/ui/entry-border-fill-active-item.png +share/gimp/themes/Gray/ui/entry-border-fill-active.png +share/gimp/themes/Gray/ui/entry-border-fill.png +share/gimp/themes/Gray/ui/entry-border-notebook-null.png +share/gimp/themes/Gray/ui/entry-border-notebook.png +share/gimp/themes/Gray/ui/ext-bottom.png +share/gimp/themes/Gray/ui/ext-left.png +share/gimp/themes/Gray/ui/ext-right.png +share/gimp/themes/Gray/ui/ext-top.png +share/gimp/themes/Gray/ui/extension-bottom.png +share/gimp/themes/Gray/ui/extension-left.png +share/gimp/themes/Gray/ui/extension-right.png +share/gimp/themes/Gray/ui/extension-top.png +share/gimp/themes/Gray/ui/frame-gap-end.png +share/gimp/themes/Gray/ui/frame-gap-start.png +share/gimp/themes/Gray/ui/frame.png +share/gimp/themes/Gray/ui/gap_bottom.png +share/gimp/themes/Gray/ui/gap_left.png +share/gimp/themes/Gray/ui/gap_right.png +share/gimp/themes/Gray/ui/gap_top.png +share/gimp/themes/Gray/ui/gimp-arrow-down-insensitive.png +share/gimp/themes/Gray/ui/gimp-arrow-down-insenstive.png +share/gimp/themes/Gray/ui/gimp-arrow-down.png +share/gimp/themes/Gray/ui/gimp-arrow-left.png +share/gimp/themes/Gray/ui/gimp-arrow-right-dark.png +share/gimp/themes/Gray/ui/gimp-arrow-right-prelight.png +share/gimp/themes/Gray/ui/gimp-arrow-right.png +share/gimp/themes/Gray/ui/gimp-arrow-up.png +share/gimp/themes/Gray/ui/gimp-button-default.png +share/gimp/themes/Gray/ui/gimp-button-insensitive.png +share/gimp/themes/Gray/ui/gimp-button-normal.png +share/gimp/themes/Gray/ui/gimp-button-prelight.png +share/gimp/themes/Gray/ui/gimp-button-pressed.png +share/gimp/themes/Gray/ui/gimp-handle-h.png +share/gimp/themes/Gray/ui/gimp-handle-v.png +share/gimp/themes/Gray/ui/gimp-line-h.png +share/gimp/themes/Gray/ui/gimp-line-v.png +share/gimp/themes/Gray/ui/gimp-menu-line-h.png +share/gimp/themes/Gray/ui/gimp-tooltip-bg.png +share/gimp/themes/Gray/ui/list_header-pressed.png +share/gimp/themes/Gray/ui/list_header.png +share/gimp/themes/Gray/ui/menu-arrow-prelight.png +share/gimp/themes/Gray/ui/menu-arrow.png +share/gimp/themes/Gray/ui/menu-prelight.png +share/gimp/themes/Gray/ui/menu.png +share/gimp/themes/Gray/ui/menubar.png +share/gimp/themes/Gray/ui/menuitem-prelight.png +share/gimp/themes/Gray/ui/menuitem.png +share/gimp/themes/Gray/ui/minus.png +share/gimp/themes/Gray/ui/notebook.png +share/gimp/themes/Gray/ui/null.png +share/gimp/themes/Gray/ui/option1.png +share/gimp/themes/Gray/ui/option2.png +share/gimp/themes/Gray/ui/option3.png +share/gimp/themes/Gray/ui/plus.png +share/gimp/themes/Gray/ui/progressbar-trough.png +share/gimp/themes/Gray/ui/progressbar.png +share/gimp/themes/Gray/ui/shadow-in-alt.png +share/gimp/themes/Gray/ui/shadow-in.png +share/gimp/themes/Gray/ui/shadow-null.png +share/gimp/themes/Gray/ui/shadow-out.png +share/gimp/themes/Gray/ui/slider-h.png +share/gimp/themes/Gray/ui/slider-v.png +share/gimp/themes/Gray/ui/spin-down-insensitive.png +share/gimp/themes/Gray/ui/spin-down-normal.png +share/gimp/themes/Gray/ui/spin-down-pressed.png +share/gimp/themes/Gray/ui/spin-insensitive.png +share/gimp/themes/Gray/ui/spin-up-insensitive.png +share/gimp/themes/Gray/ui/spin-up-normal.png +share/gimp/themes/Gray/ui/spin-up-pressed.png +share/gimp/themes/Gray/ui/spin.png +share/gimp/themes/Gray/ui/toolbar.png +share/gimp/themes/Gray/ui/transparent.png +share/gimp/themes/Light/gtkrc +share/gimp/themes/Light/ui/arrow-down-insens.png +share/gimp/themes/Light/ui/arrow-down-prelight.png +share/gimp/themes/Light/ui/arrow-down-small-insens.png +share/gimp/themes/Light/ui/arrow-down-small-prelight.png +share/gimp/themes/Light/ui/arrow-down-small.png +share/gimp/themes/Light/ui/arrow-down.png +share/gimp/themes/Light/ui/arrow-left-insens.png +share/gimp/themes/Light/ui/arrow-left-prelight.png +share/gimp/themes/Light/ui/arrow-left.png +share/gimp/themes/Light/ui/arrow-right-insens.png +share/gimp/themes/Light/ui/arrow-right-prelight.png +share/gimp/themes/Light/ui/arrow-right.png +share/gimp/themes/Light/ui/arrow-up-insens.png +share/gimp/themes/Light/ui/arrow-up-prelight.png +share/gimp/themes/Light/ui/arrow-up-small-insens.png +share/gimp/themes/Light/ui/arrow-up-small-prelight.png +share/gimp/themes/Light/ui/arrow-up-small.png +share/gimp/themes/Light/ui/arrow-up.png +share/gimp/themes/Light/ui/bar-h.png +share/gimp/themes/Light/ui/bar-v.png +share/gimp/themes/Light/ui/button-default.png +share/gimp/themes/Light/ui/button-insensitive.png +share/gimp/themes/Light/ui/button-normal.png +share/gimp/themes/Light/ui/button-prelight.png +share/gimp/themes/Light/ui/button-pressed.png +share/gimp/themes/Light/ui/check1.png +share/gimp/themes/Light/ui/check2.png +share/gimp/themes/Light/ui/check3.png +share/gimp/themes/Light/ui/combo-entry-border-active-bg.png +share/gimp/themes/Light/ui/combo-entry-border-active-notebook.png +share/gimp/themes/Light/ui/combo-entry-border-active-rtl-notebook.png +share/gimp/themes/Light/ui/combo-entry-border-bg.png +share/gimp/themes/Light/ui/combo-entry-border-disabled-bg.png +share/gimp/themes/Light/ui/combo-entry-border-disabled-notebook.png +share/gimp/themes/Light/ui/combo-entry-border-disabled-rtl-bg.png +share/gimp/themes/Light/ui/combo-entry-border-disabled-rtl-notebook.png +share/gimp/themes/Light/ui/combo-entry-border-notebook.png +share/gimp/themes/Light/ui/combo-entry-border-rtl-bg.png +share/gimp/themes/Light/ui/combo-entry-border-rtl-notebook.png +share/gimp/themes/Light/ui/combo-entry-button-active-rtl.png +share/gimp/themes/Light/ui/combo-entry-button-active.png +share/gimp/themes/Light/ui/combo-entry-button-disabled-rtl.png +share/gimp/themes/Light/ui/combo-entry-button-disabled.png +share/gimp/themes/Light/ui/combo-entry-button-rtl.png +share/gimp/themes/Light/ui/combo-entry-button.png +share/gimp/themes/Light/ui/down-pre.png +share/gimp/themes/Light/ui/down.png +share/gimp/themes/Light/ui/entry-border-active-bg.png +share/gimp/themes/Light/ui/entry-border-active-notebook.png +share/gimp/themes/Light/ui/entry-border-disabled-bg.png +share/gimp/themes/Light/ui/entry-border-disabled-notebook.png +share/gimp/themes/Light/ui/entry-border-fill-active-item.png +share/gimp/themes/Light/ui/entry-border-fill-active.png +share/gimp/themes/Light/ui/entry-border-fill.png +share/gimp/themes/Light/ui/entry-border-notebook-null.png +share/gimp/themes/Light/ui/entry-border-notebook.png +share/gimp/themes/Light/ui/ext-bottom.png +share/gimp/themes/Light/ui/ext-left.png +share/gimp/themes/Light/ui/ext-right.png +share/gimp/themes/Light/ui/ext-top.png +share/gimp/themes/Light/ui/extension-bottom.png +share/gimp/themes/Light/ui/extension-left.png +share/gimp/themes/Light/ui/extension-right.png +share/gimp/themes/Light/ui/extension-top.png +share/gimp/themes/Light/ui/frame-gap-end.png +share/gimp/themes/Light/ui/frame-gap-start.png +share/gimp/themes/Light/ui/frame.png +share/gimp/themes/Light/ui/gap_bottom.png +share/gimp/themes/Light/ui/gap_left.png +share/gimp/themes/Light/ui/gap_right.png +share/gimp/themes/Light/ui/gap_top.png +share/gimp/themes/Light/ui/gimp-arrow-down-insensitive.png +share/gimp/themes/Light/ui/gimp-arrow-down-insenstive.png +share/gimp/themes/Light/ui/gimp-arrow-down.png +share/gimp/themes/Light/ui/gimp-arrow-left.png +share/gimp/themes/Light/ui/gimp-arrow-right-dark.png +share/gimp/themes/Light/ui/gimp-arrow-right-prelight.png +share/gimp/themes/Light/ui/gimp-arrow-right.png +share/gimp/themes/Light/ui/gimp-arrow-up.png +share/gimp/themes/Light/ui/gimp-button-default.png +share/gimp/themes/Light/ui/gimp-button-insensitive.png +share/gimp/themes/Light/ui/gimp-button-normal.png +share/gimp/themes/Light/ui/gimp-button-prelight.png +share/gimp/themes/Light/ui/gimp-button-pressed.png +share/gimp/themes/Light/ui/gimp-handle-h.png +share/gimp/themes/Light/ui/gimp-handle-v.png +share/gimp/themes/Light/ui/gimp-line-h.png +share/gimp/themes/Light/ui/gimp-line-v.png +share/gimp/themes/Light/ui/gimp-menu-line-h.png +share/gimp/themes/Light/ui/gimp-tooltip-bg.png +share/gimp/themes/Light/ui/list_header-pressed.png +share/gimp/themes/Light/ui/list_header.png +share/gimp/themes/Light/ui/menu-arrow-prelight.png +share/gimp/themes/Light/ui/menu-arrow.png +share/gimp/themes/Light/ui/menu.png +share/gimp/themes/Light/ui/menubar.png +share/gimp/themes/Light/ui/menuitem-prelight.png +share/gimp/themes/Light/ui/menuitem.png +share/gimp/themes/Light/ui/minus.png +share/gimp/themes/Light/ui/notebook.png +share/gimp/themes/Light/ui/null.png +share/gimp/themes/Light/ui/option1.png +share/gimp/themes/Light/ui/option2.png +share/gimp/themes/Light/ui/option3.png +share/gimp/themes/Light/ui/plus.png +share/gimp/themes/Light/ui/progressbar-trough.png +share/gimp/themes/Light/ui/progressbar.png +share/gimp/themes/Light/ui/shadow-in-alt.png +share/gimp/themes/Light/ui/shadow-in.png +share/gimp/themes/Light/ui/shadow-null.png +share/gimp/themes/Light/ui/shadow-out.png +share/gimp/themes/Light/ui/slider-h.png +share/gimp/themes/Light/ui/slider-v.png +share/gimp/themes/Light/ui/spin-down-insensitive.png +share/gimp/themes/Light/ui/spin-down-normal.png +share/gimp/themes/Light/ui/spin-down-pressed.png +share/gimp/themes/Light/ui/spin-fill-bg.png +share/gimp/themes/Light/ui/spin-insensitive.png +share/gimp/themes/Light/ui/spin-up-insensitive.png +share/gimp/themes/Light/ui/spin-up-normal.png +share/gimp/themes/Light/ui/spin-up-pressed.png +share/gimp/themes/Light/ui/spin.png +share/gimp/themes/Light/ui/toolbar.png +share/gimp/themes/Light/ui/transparent.png +share/gimp/themes/System/gtkrc share/gimp/tips/gimp-tips.xml +share/gimp/tool-presets/Crop/16_10.gtp +share/gimp/tool-presets/Crop/16_9.gtp +share/gimp/tool-presets/Crop/3_2-Landscape.gtp +share/gimp/tool-presets/Crop/3_2-Portrait.gtp +share/gimp/tool-presets/Crop/4_3-Landscape.gtp +share/gimp/tool-presets/Crop/4_3-Portrait.gtp +share/gimp/tool-presets/Crop/Square.gtp share/gimp/tool-presets/FX/Crop-16-9.gtp share/gimp/tool-presets/FX/Crop-Composition.gtp share/gimp/tool-presets/FX/FX-Confetti.gtp @@ -1796,6 +3951,11 @@ share/gimp/tool-presets/Sketch/Pencil-Soft.gtp share/gimp/tool-presets/Sketch/Pencil.gtp share/gimp/ui/plug-ins/plug-in-file-gif.ui share/gimp/ui/plug-ins/plug-in-file-png.ui +share/gimp/ui/plug-ins/plug-in-file-raw.ui +share/gimp/ui/plug-ins/plug-in-file-tiff.ui +share/gimp/ui/plug-ins/plug-in-metadata-editor-calendar.ui +share/gimp/ui/plug-ins/plug-in-metadata-editor.ui +share/gimp/ui/plug-ins/plug-in-metadata-viewer.ui share/icons/hicolor/16x16/apps/gimp.png share/icons/hicolor/22x22/apps/gimp.png share/icons/hicolor/24x24/apps/gimp.png @@ -1803,12 +3963,6 @@ share/icons/hicolor/256x256/apps/gimp.png share/icons/hicolor/32x32/apps/gimp.png share/icons/hicolor/48x48/apps/gimp.png share/locale/am/LC_MESSAGES/gimp20.mo -share/locale/an/LC_MESSAGES/gimp20-libgimp.mo -share/locale/an/LC_MESSAGES/gimp20-python.mo -share/locale/an/LC_MESSAGES/gimp20-script-fu.mo -share/locale/an/LC_MESSAGES/gimp20-std-plug-ins.mo -share/locale/an/LC_MESSAGES/gimp20-tips.mo -share/locale/an/LC_MESSAGES/gimp20.mo share/locale/ar/LC_MESSAGES/gimp20-libgimp.mo share/locale/ar/LC_MESSAGES/gimp20-python.mo share/locale/ar/LC_MESSAGES/gimp20-script-fu.mo @@ -1946,7 +4100,6 @@ share/locale/ga/LC_MESSAGES/gimp20-python.mo share/locale/ga/LC_MESSAGES/gimp20-script-fu.mo share/locale/ga/LC_MESSAGES/gimp20-std-plug-ins.mo share/locale/ga/LC_MESSAGES/gimp20.mo -share/locale/gd/LC_MESSAGES/gimp20-script-fu.mo share/locale/gd/LC_MESSAGES/gimp20.mo share/locale/gl/LC_MESSAGES/gimp20-libgimp.mo share/locale/gl/LC_MESSAGES/gimp20-python.mo @@ -2019,6 +4172,7 @@ share/locale/ko/LC_MESSAGES/gimp20-script-fu.mo share/locale/ko/LC_MESSAGES/gimp20-std-plug-ins.mo share/locale/ko/LC_MESSAGES/gimp20-tips.mo share/locale/ko/LC_MESSAGES/gimp20.mo +share/locale/ky/LC_MESSAGES/gimp20.mo share/locale/lt/LC_MESSAGES/gimp20-libgimp.mo share/locale/lt/LC_MESSAGES/gimp20-python.mo share/locale/lt/LC_MESSAGES/gimp20-script-fu.mo @@ -2038,6 +4192,12 @@ share/locale/mk/LC_MESSAGES/gimp20-std-plug-ins.mo share/locale/mk/LC_MESSAGES/gimp20-tips.mo share/locale/mk/LC_MESSAGES/gimp20.mo share/locale/ml/LC_MESSAGES/gimp20.mo +share/locale/mr/LC_MESSAGES/gimp20-libgimp.mo +share/locale/mr/LC_MESSAGES/gimp20-python.mo +share/locale/mr/LC_MESSAGES/gimp20-script-fu.mo +share/locale/mr/LC_MESSAGES/gimp20-std-plug-ins.mo +share/locale/mr/LC_MESSAGES/gimp20-tips.mo +share/locale/mr/LC_MESSAGES/gimp20.mo share/locale/ms/LC_MESSAGES/gimp20-libgimp.mo share/locale/ms/LC_MESSAGES/gimp20-python.mo share/locale/ms/LC_MESSAGES/gimp20-script-fu.mo @@ -2210,4 +4370,6 @@ share/locale/zh_TW/LC_MESSAGES/gimp20-script-fu.mo share/locale/zh_TW/LC_MESSAGES/gimp20-std-plug-ins.mo share/locale/zh_TW/LC_MESSAGES/gimp20-tips.mo share/locale/zh_TW/LC_MESSAGES/gimp20.mo +share/metainfo/gimp-data-extras.metainfo.xml +share/metainfo/org.gimp.GIMP.appdata.xml @dir share/gimp/fonts diff --git a/graphics/gimp/Makefile b/graphics/gimp/Makefile index 6dc084f9cf0..19b81d21996 100644 --- a/graphics/gimp/Makefile +++ b/graphics/gimp/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= gimp -DISTVERSION?= 2.8.22 +DISTVERSION?= 2.10.6 PORTREVISION?= 0 PORTEPOCH?= 2 CATEGORIES= graphics gnome @@ -10,7 +10,7 @@ CATEGORIES= graphics gnome MAINTAINER= gnome@FreeBSD.org COMMENT= The "meta-port" for The Gimp -RUN_DEPENDS= gimp-2.8:graphics/gimp-app +RUN_DEPENDS= gimp-2.10:graphics/gimp-app USES+= metaport diff --git a/graphics/gmic/Makefile b/graphics/gmic/Makefile index f310f82dcc3..05508e16016 100644 --- a/graphics/gmic/Makefile +++ b/graphics/gmic/Makefile @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= gmic -DISTVERSION= 2.3.6 -PORTREVISION= 1 +DISTVERSION= 2.4.0 CATEGORIES= graphics MASTER_SITES= https://gmic.eu/files/source/ DISTNAME= ${PORTNAME}_${DISTVERSION} diff --git a/graphics/gmic/distinfo b/graphics/gmic/distinfo index 6fa491b79ae..746b451f49e 100644 --- a/graphics/gmic/distinfo +++ b/graphics/gmic/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1535651070 -SHA256 (gmic_2.3.6.tar.gz) = 86fe671879725863acecc207bdb86c4428635cd1a20d6043618864cf4c366113 -SIZE (gmic_2.3.6.tar.gz) = 3723069 +TIMESTAMP = 1538798424 +SHA256 (gmic_2.4.0.tar.gz) = ffc649c960f2dc52cea77039802a8c2b71f997ba300270e08fc2117e238614c3 +SIZE (gmic_2.4.0.tar.gz) = 3770104 diff --git a/graphics/gmic/files/patch-CMakeLists.txt b/graphics/gmic/files/patch-CMakeLists.txt index d9d6cd6b4a6..be3ae53825a 100644 --- a/graphics/gmic/files/patch-CMakeLists.txt +++ b/graphics/gmic/files/patch-CMakeLists.txt @@ -1,4 +1,4 @@ ---- CMakeLists.txt.orig 2018-06-21 07:32:48 UTC +--- CMakeLists.txt.orig 2018-10-04 13:30:14 UTC +++ CMakeLists.txt @@ -108,7 +108,7 @@ set(COMPILE_FLAGS "-Dgmic_build -Dcimg_u if(APPLE) @@ -9,14 +9,14 @@ endif() if(NOT "${PRERELEASE_TAG}" STREQUAL "") -@@ -235,8 +235,9 @@ endif() +@@ -237,8 +237,9 @@ endif() # CImg.h header if(NOT EXISTS ${CMAKE_SOURCE_DIR}/src/CImg.h) - file(DOWNLOAD https://framagit.org/dtschump/CImg/raw/master/CImg.h ${CMAKE_SOURCE_DIR}/src/CImg.h) -- execute_process(COMMAND touch ${CMAKE_SOURCE_DIR}/src/CImg.h) +- file(TOUCH ${CMAKE_SOURCE_DIR}/src/CImg.h) + #file(DOWNLOAD https://framagit.org/dtschump/CImg/raw/master/CImg.h ${CMAKE_SOURCE_DIR}/src/CImg.h) -+ #execute_process(COMMAND touch ${CMAKE_SOURCE_DIR}/src/CImg.h) ++ #file(TOUCH ${CMAKE_SOURCE_DIR}/src/CImg.h) + execute_process(COMMAND ln -s ${CMAKE_INSTALL_PREFIX}/include/CImg.h ${CMAKE_SOURCE_DIR}/src/CImg.h) endif() diff --git a/graphics/gmic/pkg-plist b/graphics/gmic/pkg-plist index 7cd996bb319..bcf5e63eca7 100644 --- a/graphics/gmic/pkg-plist +++ b/graphics/gmic/pkg-plist @@ -1,5 +1,8 @@ bin/gmic include/gmic.h +lib/cmake/gmic/GmicConfig.cmake +lib/cmake/gmic/GmicTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/gmic/GmicTargets.cmake lib/libgmic.so lib/libgmic.so.1 man/man1/gmic.1.gz diff --git a/graphics/goocanvas2/Makefile b/graphics/goocanvas2/Makefile index 4d9bdb5b3cd..2a231aa801c 100644 --- a/graphics/goocanvas2/Makefile +++ b/graphics/goocanvas2/Makefile @@ -14,7 +14,7 @@ COMMENT= Canvas widget for GTK+ 3 GNU_CONFIGURE= yes INSTALL_TARGET= install-strip -USES= gmake libtool pathfix pkgconfig tar:xz +USES= gmake libtool pathfix pkgconfig python tar:xz USE_GNOME= gtk30 introspection:build USE_LDCONFIG= yes diff --git a/graphics/graphos/Makefile b/graphics/graphos/Makefile index cec9e461e3b..0cac18ad4fc 100644 --- a/graphics/graphos/Makefile +++ b/graphics/graphos/Makefile @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= graphos -PORTVERSION= 0.6 -PORTREVISION= 2 +PORTVERSION= 0.7 CATEGORIES= graphics gnustep MASTER_SITES= SAVANNAH/gap DISTNAME= Graphos-${PORTVERSION} diff --git a/graphics/graphos/distinfo b/graphics/graphos/distinfo index 8ac9b811bed..d74f1911f2a 100644 --- a/graphics/graphos/distinfo +++ b/graphics/graphos/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1495367600 -SHA256 (Graphos-0.6.tar.gz) = c400814806a84c0e8b33bfa6c2010f4b543bf069b2a6d3bcb893ecac2b0f6b7b -SIZE (Graphos-0.6.tar.gz) = 140416 +TIMESTAMP = 1533126515 +SHA256 (Graphos-0.7.tar.gz) = d2a2567d244787a56572733cc91ca02ceb1030dfbd54401aa86e26650c34810b +SIZE (Graphos-0.7.tar.gz) = 161492 diff --git a/graphics/instant-meshes/Makefile b/graphics/instant-meshes/Makefile index 428b88e4038..3b30aefebca 100644 --- a/graphics/instant-meshes/Makefile +++ b/graphics/instant-meshes/Makefile @@ -3,6 +3,7 @@ PORTNAME= instant-meshes DISTVERSION= 0.0-42 DISTVERSIONSUFFIX= -g4a083f4 +PORTREVISION= 1 CATEGORIES= graphics MAINTAINER= greg@unrelenting.technology diff --git a/graphics/mapserver/Makefile b/graphics/mapserver/Makefile index dd4e6b33e14..62f65581475 100644 --- a/graphics/mapserver/Makefile +++ b/graphics/mapserver/Makefile @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= mapserver -PORTVERSION= 7.0.7 -PORTREVISION= 1 +PORTVERSION= 7.2.1 CATEGORIES= graphics www geography MASTER_SITES= http://download.osgeo.org/mapserver/ @@ -18,7 +17,8 @@ LIB_DEPENDS= libgd.so:graphics/gd \ libgif.so:graphics/giflib \ libharfbuzz.so:print/harfbuzz \ libsvg.so:graphics/libsvg \ - libfreetype.so:print/freetype2 + libfreetype.so:print/freetype2 \ + libprotobuf-c.so:devel/protobuf-c USES= cpe cmake:outsource jpeg CPE_VENDOR= umn diff --git a/graphics/mapserver/distinfo b/graphics/mapserver/distinfo index 4aae2b0711a..8cd12d62a55 100644 --- a/graphics/mapserver/distinfo +++ b/graphics/mapserver/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1511885693 -SHA256 (mapserver-7.0.7.tar.gz) = 37a8c3008328bae0fea05109d6d544a3284f756a23956e8a2f5ec10a6b5fef67 -SIZE (mapserver-7.0.7.tar.gz) = 2634698 +TIMESTAMP = 1538488621 +SHA256 (mapserver-7.2.1.tar.gz) = 9459a7057d5a85be66a41096a5d804f74665381186c37077c94b56e784db6102 +SIZE (mapserver-7.2.1.tar.gz) = 2676995 diff --git a/graphics/mapserver/pkg-plist b/graphics/mapserver/pkg-plist index 58177ac771d..fa8267e5eb3 100644 --- a/graphics/mapserver/pkg-plist +++ b/graphics/mapserver/pkg-plist @@ -11,7 +11,7 @@ bin/tile4ms %%PHP%%etc/php/ext-20-php_mapscript.ini lib/libmapserver.so lib/libmapserver.so.2 -lib/libmapserver.so.7.0.7 +lib/libmapserver.so.7.2.1 %%PHP%%lib/php/%%PHP_EXT_DIR%%/php_mapscript.so %%PYTHON%%%%PYTHON_SITELIBDIR%%/mapscript.py %%PYTHON%%%%PYTHON_SITELIBDIR%%/_mapscript.so diff --git a/graphics/minder/Makefile b/graphics/minder/Makefile index 3a2f31fffb5..acc633e7e96 100644 --- a/graphics/minder/Makefile +++ b/graphics/minder/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= minder -PORTVERSION= 1.1.0 +PORTVERSION= 1.1.1 CATEGORIES= graphics PKGNAMESUFFIX= -app # avoid PKGBASE collision with net-p2p/minder diff --git a/graphics/minder/distinfo b/graphics/minder/distinfo index 9269285412e..ba949dfbe79 100644 --- a/graphics/minder/distinfo +++ b/graphics/minder/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1537432457 -SHA256 (phase1geo-Minder-1.1.0_GH0.tar.gz) = 37705dd3520ef52cfb93525696757d88a0b2bedece51be611fd7b9f2cabdeebc -SIZE (phase1geo-Minder-1.1.0_GH0.tar.gz) = 870236 +TIMESTAMP = 1538555818 +SHA256 (phase1geo-Minder-1.1.1_GH0.tar.gz) = 5c09e2ea1775949c2e3eb9c9df6e9cfac0bd3f57a7b622a017050692f8c600bc +SIZE (phase1geo-Minder-1.1.1_GH0.tar.gz) = 870516 diff --git a/graphics/mypaint/Makefile b/graphics/mypaint/Makefile index ea9bc3b41e2..26ac94641f9 100644 --- a/graphics/mypaint/Makefile +++ b/graphics/mypaint/Makefile @@ -3,7 +3,7 @@ PORTNAME= mypaint PORTVERSION= 1.2.1 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= graphics MASTER_SITES= https://github.com/mypaint/mypaint/releases/download/${PORTVERSION:S/^/v/}/ @@ -21,6 +21,9 @@ LIB_DEPENDS= libjson-c.so:devel/json-c \ liblcms2.so:graphics/lcms2 RUN_DEPENDS= ${PYNUMPY} +# XXX Embed RPATH via USES=fortran for py-numpy to load libgcc_s.so from ports +USES= desktop-file-utils fortran gettext gnome localbase \ + pkgconfig python:2.7 scons tar:xz BINARY_ALIAS= swig=swig3.0 USE_GNOME= gtk30 pygobject3 librsvg2:run CFLAGS+= ${CFLAGS_${CHOSEN_COMPILER_TYPE}} @@ -30,9 +33,6 @@ MAKE_ARGS= prefix=${PREFIX} \ use_sharedlib=True \ python_binary="${PYTHON_CMD}" \ python_config="${PYTHON_CMD}-config" -# XXX Embed RPATH via USES=fortran for py-numpy to load libgcc_s.so from ports -USES= desktop-file-utils fortran gettext localbase \ - pkgconfig python:2.7 scons tar:xz INSTALL_TARGET= ${STAGEDIR} --install-sandbox=${STAGEDIR} USE_LDCONFIG= yes INSTALLS_ICONS= yes @@ -42,7 +42,7 @@ OPTIONS_DEFAULT= OPENMP OPTIONS_SUB= yes GEGL_DESC= Graph based image processing framework support -GEGL_LIB_DEPENDS= libgegl-0.3.so:graphics/gegl3 +GEGL_LIB_DEPENDS= libgegl-0.4.so:graphics/gegl GEGL_MAKE_ARGS= enable_gegl=True OPENMP_USES= compiler:openmp diff --git a/graphics/mypaint/files/patch-SConstruct b/graphics/mypaint/files/patch-SConstruct index dddcd49e459..e1d2a785112 100644 --- a/graphics/mypaint/files/patch-SConstruct +++ b/graphics/mypaint/files/patch-SConstruct @@ -1,4 +1,4 @@ ---- SConstruct.orig 2016-01-15 19:42:54 UTC +--- SConstruct.orig 2017-01-21 17:51:52 UTC +++ SConstruct @@ -95,14 +95,14 @@ if "$CCFLAGS" in env['CXXCOM']: @@ -11,7 +11,8 @@ +#env.Append(CCFLAGS='-Wall') +#env.Append(CFLAGS='-std=c99') - env['GEGL_VERSION'] = 0.3 +-env['GEGL_VERSION'] = 0.3 ++env['GEGL_VERSION'] = 0.4 # Define strdup() in string.h under glibc >= 2.10 (POSIX.1-2008) -env.Append(CFLAGS='-D_POSIX_C_SOURCE=200809L') diff --git a/graphics/nomacs/Makefile b/graphics/nomacs/Makefile index a3e72619ffc..678cc454765 100644 --- a/graphics/nomacs/Makefile +++ b/graphics/nomacs/Makefile @@ -2,7 +2,7 @@ PORTNAME= nomacs PORTVERSION= 3.6.1 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= graphics MAINTAINER= bsd@tuxproject.de diff --git a/graphics/opencv/Makefile b/graphics/opencv/Makefile index 06c8518ac7c..cc6172e7dac 100644 --- a/graphics/opencv/Makefile +++ b/graphics/opencv/Makefile @@ -3,7 +3,7 @@ PORTNAME= opencv PORTVERSION= 3.4.1 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= graphics MAINTAINER= ports@FreeBSD.org diff --git a/graphics/opensubdiv/Makefile b/graphics/opensubdiv/Makefile index 1dac3ae0a86..65973fde84d 100644 --- a/graphics/opensubdiv/Makefile +++ b/graphics/opensubdiv/Makefile @@ -1,9 +1,9 @@ # $FreeBSD$ PORTNAME= opensubdiv -PORTREVISION= 3 DISTVERSIONPREFIX= v DISTVERSION= 3_3_0 +PORTREVISION= 4 CATEGORIES?= graphics MAINTAINER= FreeBSD@Shaneware.biz diff --git a/graphics/p5-Acme-Steganography-Image-Png/Makefile b/graphics/p5-Acme-Steganography-Image-Png/Makefile index 4a84234ac57..4830548fba8 100644 --- a/graphics/p5-Acme-Steganography-Image-Png/Makefile +++ b/graphics/p5-Acme-Steganography-Image-Png/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= snowfly@yuntech.edu.tw COMMENT= Hide data (badly) in Png images -BUILD_DEPENDS= p5-Imager>=0:graphics/p5-Imager \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Imager>=0:graphics/p5-Imager \ p5-Class-Accessor>=0:devel/p5-Class-Accessor -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/graphics/p5-CAD-Drawing-Template/Makefile b/graphics/p5-CAD-Drawing-Template/Makefile index 8f2372a8da1..3b7fc38dfe8 100644 --- a/graphics/p5-CAD-Drawing-Template/Makefile +++ b/graphics/p5-CAD-Drawing-Template/Makefile @@ -14,9 +14,9 @@ COMMENT= Replace tags with text and geometry LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-CAD-Calc>=0:math/p5-CAD-Calc \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-CAD-Calc>=0:math/p5-CAD-Calc \ p5-CAD-Drawing>=0:graphics/p5-CAD-Drawing -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= modbuild diff --git a/graphics/p5-CAD-Drawing/Makefile b/graphics/p5-CAD-Drawing/Makefile index 40ce70bd30e..28b6cb64aab 100644 --- a/graphics/p5-CAD-Drawing/Makefile +++ b/graphics/p5-CAD-Drawing/Makefile @@ -14,13 +14,13 @@ COMMENT= Methods to create, load, and save vector graphics LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-CAD-Calc>=0:math/p5-CAD-Calc \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-CAD-Calc>=0:math/p5-CAD-Calc \ p5-Math-Geometry-Planar>=0:math/p5-Math-Geometry-Planar \ p5-Math-MatrixReal>=0:math/p5-Math-MatrixReal \ p5-Math-Vec>=0:math/p5-Math-Vec \ p5-Stream>=0:devel/p5-Stream \ convert:graphics/ImageMagick -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= modbuild diff --git a/graphics/p5-Captcha-reCAPTCHA-Mailhide/Makefile b/graphics/p5-Captcha-reCAPTCHA-Mailhide/Makefile index 8bd1213356f..0426a067d60 100644 --- a/graphics/p5-Captcha-reCAPTCHA-Mailhide/Makefile +++ b/graphics/p5-Captcha-reCAPTCHA-Mailhide/Makefile @@ -12,10 +12,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= gerard@seibercom.net COMMENT= Perl implementation of the reCAPTCHA Mailhide API -BUILD_DEPENDS= p5-Crypt-Rijndael>=0:security/p5-Crypt-Rijndael \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Crypt-Rijndael>=0:security/p5-Crypt-Rijndael \ p5-HTML-Tiny>=0.904:textproc/p5-HTML-Tiny -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/graphics/p5-Captcha-reCAPTCHA/Makefile b/graphics/p5-Captcha-reCAPTCHA/Makefile index 708bf12c8a9..cb03759a760 100644 --- a/graphics/p5-Captcha-reCAPTCHA/Makefile +++ b/graphics/p5-Captcha-reCAPTCHA/Makefile @@ -15,9 +15,9 @@ COMMENT= Perl implementation of the reCAPTCHA API LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-HTML-Tiny>=0:textproc/p5-HTML-Tiny \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTML-Tiny>=0:textproc/p5-HTML-Tiny \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/graphics/p5-Chart-PNGgraph/Makefile b/graphics/p5-Chart-PNGgraph/Makefile index edd9e3dd301..2d29bf6506f 100644 --- a/graphics/p5-Chart-PNGgraph/Makefile +++ b/graphics/p5-Chart-PNGgraph/Makefile @@ -14,9 +14,9 @@ COMMENT= Perl module for generating presentation graphics (i.e., charts) LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-GD>=0:graphics/p5-GD \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-GD>=0:graphics/p5-GD \ p5-GD-Graph>=0:graphics/p5-GD-Graph -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/graphics/p5-Chart/Makefile b/graphics/p5-Chart/Makefile index 749d4e0e253..cfc69dcc581 100644 --- a/graphics/p5-Chart/Makefile +++ b/graphics/p5-Chart/Makefile @@ -13,8 +13,8 @@ COMMENT= Perl5 interface to build chart graphics LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-GD>=2:graphics/p5-GD -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-GD>=2:graphics/p5-GD USES= perl5 USE_PERL5= configure diff --git a/graphics/p5-Color-Calc/Makefile b/graphics/p5-Color-Calc/Makefile index d1adef56739..1437ac23dfc 100644 --- a/graphics/p5-Color-Calc/Makefile +++ b/graphics/p5-Color-Calc/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= vanilla@FreeBSD.org COMMENT= Simple calculations with RGB colors -BUILD_DEPENDS= p5-Graphics-ColorNames-WWW>=1.13:graphics/p5-Graphics-ColorNames-WWW -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Graphics-ColorNames-WWW>=1.13:graphics/p5-Graphics-ColorNames-WWW USES= perl5 USE_PERL5= configure diff --git a/graphics/p5-Convert-Color-XTerm/Makefile b/graphics/p5-Convert-Color-XTerm/Makefile index 4bba89ea00e..4ac000ac830 100644 --- a/graphics/p5-Convert-Color-XTerm/Makefile +++ b/graphics/p5-Convert-Color-XTerm/Makefile @@ -14,8 +14,8 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Convert-Color>=0.06:graphics/p5-Convert-Color -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Convert-Color>=0.06:graphics/p5-Convert-Color NO_ARCH= yes USE_PERL5= configure diff --git a/graphics/p5-Data-Google-Visualization-DataSource/Makefile b/graphics/p5-Data-Google-Visualization-DataSource/Makefile index 3ab55b1851e..87dfab0d69e 100644 --- a/graphics/p5-Data-Google-Visualization-DataSource/Makefile +++ b/graphics/p5-Data-Google-Visualization-DataSource/Makefile @@ -14,11 +14,11 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Clone>=0:devel/p5-Clone \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Clone>=0:devel/p5-Clone \ p5-Data-Google-Visualization-DataTable>=0:graphics/p5-Data-Google-Visualization-DataTable \ p5-JSON-XS>=0:converters/p5-JSON-XS \ p5-Moose>=0:devel/p5-Moose -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/graphics/p5-Data-Google-Visualization-DataTable/Makefile b/graphics/p5-Data-Google-Visualization-DataTable/Makefile index 754b797ca20..e8fd3c076a3 100644 --- a/graphics/p5-Data-Google-Visualization-DataTable/Makefile +++ b/graphics/p5-Data-Google-Visualization-DataTable/Makefile @@ -14,8 +14,8 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-JSON-XS>=2.0:converters/p5-JSON-XS -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-JSON-XS>=2.0:converters/p5-JSON-XS USES= perl5 USE_PERL5= configure diff --git a/graphics/p5-GD-Arrow/Makefile b/graphics/p5-GD-Arrow/Makefile index 38bbc4c0268..851ba4fc26b 100644 --- a/graphics/p5-GD-Arrow/Makefile +++ b/graphics/p5-GD-Arrow/Makefile @@ -14,8 +14,8 @@ COMMENT= Draw arrows using GD LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-GD>=0:graphics/p5-GD -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-GD>=0:graphics/p5-GD USES= perl5 USE_PERL5= configure diff --git a/graphics/p5-GD-Barcode/Makefile b/graphics/p5-GD-Barcode/Makefile index 6bf4b388fec..0fe0c07e4c5 100644 --- a/graphics/p5-GD-Barcode/Makefile +++ b/graphics/p5-GD-Barcode/Makefile @@ -14,8 +14,8 @@ COMMENT= GD::Barcode - Create barcode image with GD LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-GD>=0:graphics/p5-GD -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-GD>=0:graphics/p5-GD USES= perl5 USE_PERL5= configure diff --git a/graphics/p5-GD-Graph-histogram/Makefile b/graphics/p5-GD-Graph-histogram/Makefile index 5624aef6a56..f6e57ddba25 100644 --- a/graphics/p5-GD-Graph-histogram/Makefile +++ b/graphics/p5-GD-Graph-histogram/Makefile @@ -16,8 +16,8 @@ COMMENT= Histogram plotting module for perl5 LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-GD-Graph>=0:graphics/p5-GD-Graph -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-GD-Graph>=0:graphics/p5-GD-Graph USES= perl5 USE_PERL5= configure diff --git a/graphics/p5-GD-Graph-ohlc/Makefile b/graphics/p5-GD-Graph-ohlc/Makefile index caab72e5f04..0818ccf19b1 100644 --- a/graphics/p5-GD-Graph-ohlc/Makefile +++ b/graphics/p5-GD-Graph-ohlc/Makefile @@ -12,9 +12,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= skreuzer@FreeBSD.org COMMENT= Create charts displaying the open, high, low, and close -BUILD_DEPENDS= p5-GD-Graph>=0:graphics/p5-GD-Graph \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-GD-Graph>=0:graphics/p5-GD-Graph \ p5-Test-Simple>=0:devel/p5-Test-Simple -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/graphics/p5-GD-Graph/Makefile b/graphics/p5-GD-Graph/Makefile index 444388bd643..539f7c71511 100644 --- a/graphics/p5-GD-Graph/Makefile +++ b/graphics/p5-GD-Graph/Makefile @@ -14,9 +14,9 @@ COMMENT= Graph plotting module for perl5 LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-GD>=0:graphics/p5-GD \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-GD>=0:graphics/p5-GD \ p5-GD-TextUtil>=0:graphics/p5-GD-TextUtil -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Capture-Tiny>=0:devel/p5-Capture-Tiny \ p5-Test-Exception>=0.40:devel/p5-Test-Exception diff --git a/graphics/p5-GD-Graph3d/Makefile b/graphics/p5-GD-Graph3d/Makefile index f5537328867..3a3514fbca7 100644 --- a/graphics/p5-GD-Graph3d/Makefile +++ b/graphics/p5-GD-Graph3d/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Creates 3D charts with GD::Graph and GD -BUILD_DEPENDS= p5-GD-Graph>=0:graphics/p5-GD-Graph -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-GD-Graph>=0:graphics/p5-GD-Graph USES= perl5 dos2unix USE_PERL5= configure diff --git a/graphics/p5-GD-SVG/Makefile b/graphics/p5-GD-SVG/Makefile index 8da7c71b41b..d8d8b1635d8 100644 --- a/graphics/p5-GD-SVG/Makefile +++ b/graphics/p5-GD-SVG/Makefile @@ -14,9 +14,9 @@ COMMENT= Seamlessly enable SVG output from scripts written using GD LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-GD>=0:graphics/p5-GD \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-GD>=0:graphics/p5-GD \ p5-SVG>=0:textproc/p5-SVG -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/graphics/p5-GD-Thumbnail/Makefile b/graphics/p5-GD-Thumbnail/Makefile index f2c07ed3e18..fd7294da143 100644 --- a/graphics/p5-GD-Thumbnail/Makefile +++ b/graphics/p5-GD-Thumbnail/Makefile @@ -10,8 +10,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Thumbnail maker for GD -BUILD_DEPENDS= p5-GD>=0:graphics/p5-GD -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-GD>=0:graphics/p5-GD USES= perl5 USE_PERL5= configure diff --git a/graphics/p5-Geo-EOP/Makefile b/graphics/p5-Geo-EOP/Makefile index 7cf96dedbb2..1c64fa84a00 100644 --- a/graphics/p5-Geo-EOP/Makefile +++ b/graphics/p5-Geo-EOP/Makefile @@ -13,10 +13,10 @@ COMMENT= Perl Module to Process Earth Observation Products Meta-data LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Geo-GML>=0.13:graphics/p5-Geo-GML \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Geo-GML>=0.13:graphics/p5-Geo-GML \ p5-XML-Compile>=1.50:textproc/p5-XML-Compile \ p5-XML-Compile-Cache>=0.14:textproc/p5-XML-Compile-Cache -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Pod>=1.26:devel/p5-Test-Pod NO_ARCH= yes diff --git a/graphics/p5-Geo-GML/Makefile b/graphics/p5-Geo-GML/Makefile index 0eaa91f1351..82a1d66fad5 100644 --- a/graphics/p5-Geo-GML/Makefile +++ b/graphics/p5-Geo-GML/Makefile @@ -13,10 +13,10 @@ COMMENT= Perl Module to Process Geography Markup Language LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Log-Report>=1.25:devel/p5-Log-Report \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Log-Report>=1.25:devel/p5-Log-Report \ p5-XML-Compile>=1.59:textproc/p5-XML-Compile \ p5-XML-Compile-Cache>=1.05:textproc/p5-XML-Compile-Cache -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/graphics/p5-Geo-Gpx/Makefile b/graphics/p5-Geo-Gpx/Makefile index df476664264..d955dc1a74e 100644 --- a/graphics/p5-Geo-Gpx/Makefile +++ b/graphics/p5-Geo-Gpx/Makefile @@ -14,12 +14,12 @@ COMMENT= Perl Module to Create and Parse GPX Files LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-DateTime-Format-ISO8601>=0:devel/p5-DateTime-Format-ISO8601 \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-DateTime-Format-ISO8601>=0:devel/p5-DateTime-Format-ISO8601 \ p5-ExtUtils-MakeMaker-Coverage>=0:devel/p5-ExtUtils-MakeMaker-Coverage \ p5-HTML-Parser>=0:www/p5-HTML-Parser \ p5-TimeDate>=0:devel/p5-TimeDate \ p5-XML-Descent>=0:textproc/p5-XML-Descent -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/graphics/p5-Geo-Point/Makefile b/graphics/p5-Geo-Point/Makefile index 050b770a6a6..c43b7afe4b2 100644 --- a/graphics/p5-Geo-Point/Makefile +++ b/graphics/p5-Geo-Point/Makefile @@ -13,10 +13,10 @@ COMMENT= Perl Module Tries To Abstract Coordinate Systems LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Geo-Distance>=0.06:math/p5-Geo-Distance \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Geo-Distance>=0.06:math/p5-Geo-Distance \ p5-Geo-Proj4>=1.01:graphics/p5-Geo-Proj4 \ p5-Math-Polygon>=1.01:math/p5-Math-Polygon -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/graphics/p5-Graph-ReadWrite/Makefile b/graphics/p5-Graph-ReadWrite/Makefile index 031e8aa8bed..290f8f49cb3 100644 --- a/graphics/p5-Graph-ReadWrite/Makefile +++ b/graphics/p5-Graph-ReadWrite/Makefile @@ -13,11 +13,11 @@ COMMENT= Reading and Writing a variety of graph file formats LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Graph>=0.50:math/p5-Graph \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Graph>=0.50:math/p5-Graph \ p5-Parse-Yapp>=0:devel/p5-Parse-Yapp \ p5-XML-Parser>=0:textproc/p5-XML-Parser \ p5-XML-Writer>=0:textproc/p5-XML-Writer -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/graphics/p5-Graph-SocialMap/Makefile b/graphics/p5-Graph-SocialMap/Makefile index 49c0bb6ee22..364ea18a2f3 100644 --- a/graphics/p5-Graph-SocialMap/Makefile +++ b/graphics/p5-Graph-SocialMap/Makefile @@ -14,12 +14,12 @@ COMMENT= Easy tool to create social network maps LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Graph>=0:math/p5-Graph \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Graph>=0:math/p5-Graph \ p5-Graph-Writer-GraphViz>=0:graphics/p5-Graph-Writer-GraphViz \ p5-Quantum-Superpositions>=0:lang/p5-Quantum-Superpositions \ p5-Spiffy>=0:devel/p5-Spiffy \ p5-YAML>=0:textproc/p5-YAML -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/graphics/p5-Graph-Writer-GraphViz/Makefile b/graphics/p5-Graph-Writer-GraphViz/Makefile index 7c7587a3bd3..06ecb5ad841 100644 --- a/graphics/p5-Graph-Writer-GraphViz/Makefile +++ b/graphics/p5-Graph-Writer-GraphViz/Makefile @@ -14,11 +14,11 @@ COMMENT= GraphViz Writer for Graph object LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Graph>=0.54:math/p5-Graph \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Graph>=0.54:math/p5-Graph \ p5-Graph-ReadWrite>=0:graphics/p5-Graph-ReadWrite \ p5-GraphViz>=2.02:graphics/p5-GraphViz \ p5-IO-All>=0.30:devel/p5-IO-All -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USE_PERL5= configure diff --git a/graphics/p5-GraphViz-Data-Structure/Makefile b/graphics/p5-GraphViz-Data-Structure/Makefile index 6dd7dd702d4..74893ac73bc 100644 --- a/graphics/p5-GraphViz-Data-Structure/Makefile +++ b/graphics/p5-GraphViz-Data-Structure/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Visualise data structures -BUILD_DEPENDS= dot:graphics/graphviz \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= dot:graphics/graphviz \ p5-GraphViz>=0:graphics/p5-GraphViz -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/graphics/p5-GraphViz-Traverse/Makefile b/graphics/p5-GraphViz-Traverse/Makefile index 44d03604f25..c24bf11544f 100644 --- a/graphics/p5-GraphViz-Traverse/Makefile +++ b/graphics/p5-GraphViz-Traverse/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Build a GraphViz object via callback traversal -BUILD_DEPENDS= p5-GraphViz>=0:graphics/p5-GraphViz -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-GraphViz>=0:graphics/p5-GraphViz USES= perl5 USE_PERL5= configure diff --git a/graphics/p5-GraphViz/Makefile b/graphics/p5-GraphViz/Makefile index 2c93a2e86b0..7ea3725bd51 100644 --- a/graphics/p5-GraphViz/Makefile +++ b/graphics/p5-GraphViz/Makefile @@ -13,12 +13,12 @@ COMMENT= GraphViz - Perl interface to the GraphViz graphing tool LICENSE= ART20 LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= dot:graphics/graphviz \ +BUILD_DEPENDS= ${RUN_DEPENDS} \ + p5-File-Which>=1.09:sysutils/p5-File-Which +RUN_DEPENDS= dot:graphics/graphviz \ p5-IPC-Run>=0.60:devel/p5-IPC-Run \ p5-Parse-RecDescent>=1.965.001:devel/p5-Parse-RecDescent \ p5-XML-Twig>=3.52:textproc/p5-XML-Twig -RUN_DEPENDS:= ${BUILD_DEPENDS} -BUILD_DEPENDS+= p5-File-Which>=1.09:sysutils/p5-File-Which TEST_DEPENDS= p5-Test2-Suite>=0.000030:devel/p5-Test2-Suite NO_ARCH= yes diff --git a/graphics/p5-GraphViz2/Makefile b/graphics/p5-GraphViz2/Makefile index 9b02e426311..383c264510a 100644 --- a/graphics/p5-GraphViz2/Makefile +++ b/graphics/p5-GraphViz2/Makefile @@ -14,7 +14,8 @@ COMMENT= Wrapper for AT&T Graphviz LICENSE= ART20 LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= dot:graphics/graphviz \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= dot:graphics/graphviz \ p5-Algorithm-Dependency>=1.110:devel/p5-Algorithm-Dependency \ p5-Capture-Tiny>=0.36:devel/p5-Capture-Tiny \ p5-Class-ISA>=0.36:devel/p5-Class-ISA \ @@ -41,7 +42,6 @@ BUILD_DEPENDS= dot:graphics/graphviz \ p5-Type-Tiny>=1.000005:devel/p5-Type-Tiny \ p5-XML-Bare>=0:textproc/p5-XML-Bare \ p5-XML-Tiny>=2.06:textproc/p5-XML-Tiny -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Pod>=1.48:devel/p5-Test-Pod OPTIONS_DEFINE= EXAMPLES diff --git a/graphics/p5-Graphics-Color/Makefile b/graphics/p5-Graphics-Color/Makefile index d58505218de..c69813f2a1b 100644 --- a/graphics/p5-Graphics-Color/Makefile +++ b/graphics/p5-Graphics-Color/Makefile @@ -13,13 +13,13 @@ COMMENT= Device and library agnostic color spaces LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Color-Library>=0.020:graphics/p5-Color-Library \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Color-Library>=0.020:graphics/p5-Color-Library \ p5-Moose>=0.74:devel/p5-Moose \ p5-MooseX-Aliases>=0.03:devel/p5-MooseX-Aliases \ p5-MooseX-Clone>=0.03:devel/p5-MooseX-Clone \ p5-MooseX-Storage>=0.23:devel/p5-MooseX-Storage \ p5-MooseX-Types>=0.19:devel/p5-MooseX-Types -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Number-Delta>=0:devel/p5-Test-Number-Delta USES= perl5 diff --git a/graphics/p5-Graphics-Primitive-Driver-Cairo/Makefile b/graphics/p5-Graphics-Primitive-Driver-Cairo/Makefile index 561b499ab69..303895a1f03 100644 --- a/graphics/p5-Graphics-Primitive-Driver-Cairo/Makefile +++ b/graphics/p5-Graphics-Primitive-Driver-Cairo/Makefile @@ -14,11 +14,11 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Cairo>=0:graphics/p5-Cairo \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Cairo>=0:graphics/p5-Cairo \ p5-Graphics-Primitive>=0:graphics/p5-Graphics-Primitive \ p5-Moose>=0:devel/p5-Moose \ p5-Text-Flow>=0:textproc/p5-Text-Flow -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Graphics-Color>=0:graphics/p5-Graphics-Color NO_ARCH= yes diff --git a/graphics/p5-Graphics-Primitive/Makefile b/graphics/p5-Graphics-Primitive/Makefile index f526c143c7f..ad774689e50 100644 --- a/graphics/p5-Graphics-Primitive/Makefile +++ b/graphics/p5-Graphics-Primitive/Makefile @@ -14,14 +14,14 @@ COMMENT= Device and library agnostic graphic primitives LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Forest>=0.06:devel/p5-Forest \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Forest>=0.06:devel/p5-Forest \ p5-Geometry-Primitive>=0.16:graphics/p5-Geometry-Primitive \ p5-Graphics-Color>=0.20:graphics/p5-Graphics-Color \ p5-JSON-Any>=1.22:converters/p5-JSON-Any \ p5-Moose>=0.90:devel/p5-Moose \ p5-MooseX-Clone>=0.04:devel/p5-MooseX-Clone \ p5-MooseX-Storage>=0.17:devel/p5-MooseX-Storage -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/graphics/p5-Image-Base-SVG/Makefile b/graphics/p5-Image-Base-SVG/Makefile index b7918dba1dc..a77f755d275 100644 --- a/graphics/p5-Image-Base-SVG/Makefile +++ b/graphics/p5-Image-Base-SVG/Makefile @@ -14,10 +14,10 @@ COMMENT= SVG image file output LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/COPYING -BUILD_DEPENDS= p5-Image-Base>=0:graphics/p5-Image-Base \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Image-Base>=0:graphics/p5-Image-Base \ p5-SVG>=2.38:textproc/p5-SVG \ p5-SVG-Parser>=0:textproc/p5-SVG-Parser -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USE_PERL5= configure diff --git a/graphics/p5-Image-Compare/Makefile b/graphics/p5-Image-Compare/Makefile index 3d0fe594b99..0596d56d436 100644 --- a/graphics/p5-Image-Compare/Makefile +++ b/graphics/p5-Image-Compare/Makefile @@ -13,10 +13,10 @@ COMMENT= Compare two images in a variety of ways LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Imager>=0:graphics/p5-Imager \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Imager>=0:graphics/p5-Imager \ p5-Regexp-Common>=0:textproc/p5-Regexp-Common \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-CheckManifest>=0:devel/p5-Test-CheckManifest \ p5-Test-Pod>=1.26:devel/p5-Test-Pod \ p5-Test-Pod-Coverage>=1.08:devel/p5-Test-Pod-Coverage diff --git a/graphics/p5-Image-Grab/Makefile b/graphics/p5-Image-Grab/Makefile index 8c9baf7cc33..3a3d8f69711 100644 --- a/graphics/p5-Image-Grab/Makefile +++ b/graphics/p5-Image-Grab/Makefile @@ -14,11 +14,11 @@ COMMENT= Perl extension for Grabbing images off the Internet LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-HTML-Parser>=0:www/p5-HTML-Parser \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTML-Parser>=0:www/p5-HTML-Parser \ p5-HTML-Tree>=0:www/p5-HTML-Tree \ p5-URI>=0:net/p5-URI \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/graphics/p5-Image-Imgur/Makefile b/graphics/p5-Image-Imgur/Makefile index 3c9c4dd1d67..cafbbd91e22 100644 --- a/graphics/p5-Image-Imgur/Makefile +++ b/graphics/p5-Image-Imgur/Makefile @@ -14,9 +14,9 @@ COMMENT= Perl extension for uploading images to http://imgur.com LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Moose>=0:devel/p5-Moose \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Moose>=0:devel/p5-Moose \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USE_PERL5= configure diff --git a/graphics/p5-Image-Info/Makefile b/graphics/p5-Image-Info/Makefile index 4f358ef54a0..cd73363a5b3 100644 --- a/graphics/p5-Image-Info/Makefile +++ b/graphics/p5-Image-Info/Makefile @@ -13,10 +13,10 @@ COMMENT= Perl module for getting image information LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-IO-String>=0:devel/p5-IO-String \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-IO-String>=0:devel/p5-IO-String \ p5-XML-LibXML>=0:textproc/p5-XML-LibXML \ p5-XML-Simple>=0:textproc/p5-XML-Simple -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/graphics/p5-Image-Magick-Iterator/Makefile b/graphics/p5-Image-Magick-Iterator/Makefile index 066169b4665..7d00771500b 100644 --- a/graphics/p5-Image-Magick-Iterator/Makefile +++ b/graphics/p5-Image-Magick-Iterator/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= sunpoet@FreeBSD.org COMMENT= Sequentially read Image::Magick object from a filehandle -BUILD_DEPENDS= ImageMagick>=0:graphics/ImageMagick \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= ImageMagick>=0:graphics/ImageMagick \ p5-Image-PBMlib>=1.05:graphics/p5-Image-PBMlib -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USE_PERL5= configure diff --git a/graphics/p5-Image-Math-Constrain/Makefile b/graphics/p5-Image-Math-Constrain/Makefile index 596ea99a43f..6de86de9123 100644 --- a/graphics/p5-Image-Math-Constrain/Makefile +++ b/graphics/p5-Image-Math-Constrain/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= coryking@mozimedia.com COMMENT= Scaling math used in image size constraining (such as thumbnails) -BUILD_DEPENDS= p5-PathTools>=3.25:devel/p5-PathTools -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-PathTools>=3.25:devel/p5-PathTools USES= perl5 USE_PERL5= configure diff --git a/graphics/p5-Image-ObjectDetect/Makefile b/graphics/p5-Image-ObjectDetect/Makefile index 4f4f6c7f2eb..7e525901f8e 100644 --- a/graphics/p5-Image-ObjectDetect/Makefile +++ b/graphics/p5-Image-ObjectDetect/Makefile @@ -14,8 +14,8 @@ COMMENT= Detects objects from picture using opencv LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/opencv.pc:graphics/opencv -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/opencv.pc:graphics/opencv USE_PERL5= configure USES= perl5 pkgconfig diff --git a/graphics/p5-Imager-Plot/Makefile b/graphics/p5-Imager-Plot/Makefile index 219e1236ddf..55c9fab1752 100644 --- a/graphics/p5-Imager-Plot/Makefile +++ b/graphics/p5-Imager-Plot/Makefile @@ -14,8 +14,8 @@ COMMENT= Perl extension for generating fancy graphic plots in color LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Imager>=0:graphics/p5-Imager -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Imager>=0:graphics/p5-Imager USES= perl5 shebangfix SHEBANG_FILES= plot.pl diff --git a/graphics/p5-Imager-QRCode/Makefile b/graphics/p5-Imager-QRCode/Makefile index 3113dd86c8c..94fe0535c28 100644 --- a/graphics/p5-Imager-QRCode/Makefile +++ b/graphics/p5-Imager-QRCode/Makefile @@ -13,8 +13,8 @@ COMMENT= Generate QR Code with Imager using libqrencode LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Imager>=0.55:graphics/p5-Imager -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Imager>=0.55:graphics/p5-Imager MAKE_JOBS_UNSAFE= yes USES= localbase perl5 diff --git a/graphics/p5-Layout-Manager/Makefile b/graphics/p5-Layout-Manager/Makefile index 719318f9c5f..eb7476d8f62 100644 --- a/graphics/p5-Layout-Manager/Makefile +++ b/graphics/p5-Layout-Manager/Makefile @@ -15,10 +15,10 @@ COMMENT= 2D Layout Management LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Geometry-Primitive>=0.16:graphics/p5-Geometry-Primitive \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Geometry-Primitive>=0.16:graphics/p5-Geometry-Primitive \ p5-Graphics-Primitive>=0.43:graphics/p5-Graphics-Primitive \ p5-Moose>=0.79:devel/p5-Moose -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/graphics/p5-SVG-Graph/Makefile b/graphics/p5-SVG-Graph/Makefile index d3907f26162..eb9d9e0a0c9 100644 --- a/graphics/p5-SVG-Graph/Makefile +++ b/graphics/p5-SVG-Graph/Makefile @@ -14,11 +14,11 @@ COMMENT= Visualize your data in Scalable Vector Graphics (SVG) format LICENSE= ART20 -BUILD_DEPENDS= p5-Math-Spline>=0:math/p5-Math-Spline \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Math-Spline>=0:math/p5-Math-Spline \ p5-SVG>=0:textproc/p5-SVG \ p5-Statistics-Descriptive>=0:math/p5-Statistics-Descriptive \ p5-Tree-DAG_Node>=0:devel/p5-Tree-DAG_Node -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= modbuild diff --git a/graphics/p5-SVG-Metadata/Makefile b/graphics/p5-SVG-Metadata/Makefile index 69881160880..f75bee889f8 100644 --- a/graphics/p5-SVG-Metadata/Makefile +++ b/graphics/p5-SVG-Metadata/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Perl module to capture metadata info about an SVG file -BUILD_DEPENDS= xml_grep:textproc/p5-XML-Twig -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= xml_grep:textproc/p5-XML-Twig USES= perl5 USE_PERL5= configure diff --git a/graphics/p5-SWF-Builder/Makefile b/graphics/p5-SWF-Builder/Makefile index efe758ba917..170894196eb 100644 --- a/graphics/p5-SWF-Builder/Makefile +++ b/graphics/p5-SWF-Builder/Makefile @@ -11,10 +11,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Create SWF movie -BUILD_DEPENDS= p5-SWF-File>=0:graphics/p5-SWF-File \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-SWF-File>=0:graphics/p5-SWF-File \ p5-Math-Bezier-Convert>=0:math/p5-Math-Bezier-Convert \ p5-Font-TTF>=0:x11-fonts/p5-Font-TTF -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= dos2unix perl5 shebangfix SHEBANG_FILES= lib/SWF/Builder/ActionScript/Compiler.pm diff --git a/graphics/p5-SWF-File/Makefile b/graphics/p5-SWF-File/Makefile index 7b03b9f44c1..054e2e11354 100644 --- a/graphics/p5-SWF-File/Makefile +++ b/graphics/p5-SWF-File/Makefile @@ -12,8 +12,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Manipulating Flash movie (SWF) files -BUILD_DEPENDS= p5-Data-TemporaryBag>=0:devel/p5-Data-TemporaryBag -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Data-TemporaryBag>=0:devel/p5-Data-TemporaryBag USES= perl5 dos2unix USE_PERL5= configure diff --git a/graphics/p5-SpringGraph/Makefile b/graphics/p5-SpringGraph/Makefile index 7e247d29f11..03919c8fe8c 100644 --- a/graphics/p5-SpringGraph/Makefile +++ b/graphics/p5-SpringGraph/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= bofh@FreeBSD.org COMMENT= Directed graph alternative to GraphViz -BUILD_DEPENDS= p5-GD>=1:graphics/p5-GD -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-GD>=1:graphics/p5-GD USES= perl5 USE_PERL5= configure diff --git a/graphics/p5-Tk-JPEG-Lite/Makefile b/graphics/p5-Tk-JPEG-Lite/Makefile index 49de41f47ff..ede4b395ee9 100644 --- a/graphics/p5-Tk-JPEG-Lite/Makefile +++ b/graphics/p5-Tk-JPEG-Lite/Makefile @@ -12,8 +12,8 @@ DISTNAME= ${PORTNAME}-${PORTVERSION:S/00$//} MAINTAINER= perl@FreeBSD.org COMMENT= Very simplistic image viewer that loads JPEG images -BUILD_DEPENDS= p5-Tk>=0:x11-toolkits/p5-Tk -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Tk>=0:x11-toolkits/p5-Tk USES= jpeg perl5 USE_PERL5= configure diff --git a/graphics/p5-URI-GoogleChart/Makefile b/graphics/p5-URI-GoogleChart/Makefile index 8c895c645da..65c42b83380 100644 --- a/graphics/p5-URI-GoogleChart/Makefile +++ b/graphics/p5-URI-GoogleChart/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Generate Google Chart URIs -BUILD_DEPENDS= p5-URI>0:net/p5-URI -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-URI>0:net/p5-URI USES= perl5 USE_PERL5= configure diff --git a/graphics/p5-Visio/Makefile b/graphics/p5-Visio/Makefile index b5cfd73f669..19bf3b2d607 100644 --- a/graphics/p5-Visio/Makefile +++ b/graphics/p5-Visio/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Perl extension manipulating XML based Visio files -BUILD_DEPENDS= p5-Log-Log4perl>=0:devel/p5-Log-Log4perl \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Log-Log4perl>=0:devel/p5-Log-Log4perl \ p5-XML-LibXML>=0:textproc/p5-XML-LibXML -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/graphics/pencil/Makefile b/graphics/pencil/Makefile index decd14933b2..b03054eb821 100644 --- a/graphics/pencil/Makefile +++ b/graphics/pencil/Makefile @@ -19,7 +19,7 @@ BROKEN_armv7= fails to compile: no matching function for call to 'qMax' LIB_DEPENDS= libming.so:graphics/ming \ libpng.so:graphics/png -USES= qmake qt:4 zip +USES= gl qmake qt:4 zip USE_QT= gui opengl xml moc_build rcc_build USE_GL= gl QMAKE_ARGS= INCLUDEPATH+=${LOCALBASE}/include/ming diff --git a/graphics/py-OWSLib/Makefile b/graphics/py-OWSLib/Makefile index e4bfeb38e3c..7f260f65474 100644 --- a/graphics/py-OWSLib/Makefile +++ b/graphics/py-OWSLib/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= OWSLib -PORTVERSION= 0.16.0 +PORTVERSION= 0.17.0 CATEGORIES= graphics geography python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -10,7 +10,6 @@ MAINTAINER= lbartoletti@tuxfamily.org COMMENT= Client programming with OGC web service (hence OWS) LICENSE= BSD3CLAUSE -LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}pyproj>0:graphics/py-pyproj@${PY_FLAVOR} \ diff --git a/graphics/py-OWSLib/distinfo b/graphics/py-OWSLib/distinfo index ce95aea73b2..f1e803390e5 100644 --- a/graphics/py-OWSLib/distinfo +++ b/graphics/py-OWSLib/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1516263913 -SHA256 (OWSLib-0.16.0.tar.gz) = ec95a5e93c145a5d84b0074b9ea27570943486552a669151140debf08a100554 -SIZE (OWSLib-0.16.0.tar.gz) = 128736 +TIMESTAMP = 1538897686 +SHA256 (OWSLib-0.17.0.tar.gz) = ac43839c238ae427d6112709c489decb12218f02d5032ca729e5de7557b5a2df +SIZE (OWSLib-0.17.0.tar.gz) = 149952 diff --git a/graphics/py-gimp/Makefile b/graphics/py-gimp/Makefile index 84955f8fabb..5eb329e594d 100644 --- a/graphics/py-gimp/Makefile +++ b/graphics/py-gimp/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= gimp -PORTREVISION= 1 +PORTREVISION= 0 PORTEPOCH= 0 PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} PKGNAMESUFFIX= diff --git a/graphics/py-gimp/pkg-plist b/graphics/py-gimp/pkg-plist index 85aa95677e0..284f61742d7 100644 --- a/graphics/py-gimp/pkg-plist +++ b/graphics/py-gimp/pkg-plist @@ -1,17 +1,17 @@ libexec/gimp/2.2/environ/pygimp.env libexec/gimp/2.2/interpreters/pygimp.interp -libexec/gimp/2.2/plug-ins/colorxhtml.py -libexec/gimp/2.2/plug-ins/file-openraster.py -libexec/gimp/2.2/plug-ins/foggify.py -libexec/gimp/2.2/plug-ins/gradients-save-as-css.py -libexec/gimp/2.2/plug-ins/palette-offset.py -libexec/gimp/2.2/plug-ins/palette-sort.py -libexec/gimp/2.2/plug-ins/palette-to-gradient.py -libexec/gimp/2.2/plug-ins/py-slice.py -libexec/gimp/2.2/plug-ins/pyconsole.py -libexec/gimp/2.2/plug-ins/python-console.py -libexec/gimp/2.2/plug-ins/python-eval.py -libexec/gimp/2.2/plug-ins/text-brush.py +libexec/gimp/2.2/plug-ins/colorxhtml/colorxhtml.py +libexec/gimp/2.2/plug-ins/file-openraster/file-openraster.py +libexec/gimp/2.2/plug-ins/foggify/foggify.py +libexec/gimp/2.2/plug-ins/gradients-save-as-css/gradients-save-as-css.py +libexec/gimp/2.2/plug-ins/histogram-export/histogram-export.py +libexec/gimp/2.2/plug-ins/palette-offset/palette-offset.py +libexec/gimp/2.2/plug-ins/palette-sort/palette-sort.py +libexec/gimp/2.2/plug-ins/palette-to-gradient/palette-to-gradient.py +libexec/gimp/2.2/plug-ins/py-slice/py-slice.py +libexec/gimp/2.2/plug-ins/python-console/pyconsole.py +libexec/gimp/2.2/plug-ins/python-console/python-console.py +libexec/gimp/2.2/plug-ins/python-eval/python-eval.py libexec/gimp/2.2/python/_gimpenums.so libexec/gimp/2.2/python/_gimpui.so libexec/gimp/2.2/python/gimp.so diff --git a/graphics/qcomicbook/Makefile b/graphics/qcomicbook/Makefile index f6d4fcaa1ff..844e0bced12 100644 --- a/graphics/qcomicbook/Makefile +++ b/graphics/qcomicbook/Makefile @@ -1,22 +1,22 @@ # Created by: Adam Weinberger # $FreeBSD$ -PORTNAME= qcomicbook -PORTVERSION= 0.9.0 -PORTREVISION= 12 +PORTNAME= QComicBook +PORTVERSION= 0.9.1 CATEGORIES= graphics -MASTER_SITES= http://qcomicbook.org/releases/ MAINTAINER= ports@FreeBSD.org COMMENT= Qt-based comic book archive viewer LICENSE= GPLv2 -LIB_DEPENDS= libpoppler-qt4.so:graphics/poppler-qt4 +LIB_DEPENDS= libpoppler-qt5.so:graphics/poppler-qt5 -USES= cmake:outsource compiler:c++11-lang pkgconfig qt:4 -USE_QT= corelib gui linguisttools_build moc_build qmake_build rcc_build \ - uic_build xml +USES= cmake compiler:c++11-lang pkgconfig qt:5 +USE_GITHUB= yes +GH_ACCOUNT= stolowski +USE_QT= core gui printsupport widgets x11extras\ + buildtools_build linguisttools_build qmake_build OPTIONS_DEFINE= 7ZIP ACE RAR @@ -29,14 +29,4 @@ ACE_RUN_DEPENDS= unace:archivers/unace RAR_DESC= Rar (.cbr) comic book archives support RAR_RUN_DEPENDS= unrar:archivers/unrar -post-patch: -# fix man install directory - @${REINPLACE_CMD} -E \ - -e 's|share/man|man|' \ - ${WRKSRC}/help/CMakeLists.txt -# fix pixmap location - @${REINPLACE_CMD} -E \ - -e 's|(qcomicbook.png)|${PREFIX}/share/pixmaps/\1|' \ - ${WRKSRC}/data/qcomicbook.desktop - .include diff --git a/graphics/qcomicbook/distinfo b/graphics/qcomicbook/distinfo index 571af911471..13da4ae2983 100644 --- a/graphics/qcomicbook/distinfo +++ b/graphics/qcomicbook/distinfo @@ -1,2 +1,3 @@ -SHA256 (qcomicbook-0.9.0.tar.gz) = 8e36f94d7b55798258b6df085324da150b0983020853eb270992157e9692abcb -SIZE (qcomicbook-0.9.0.tar.gz) = 738514 +TIMESTAMP = 1538907081 +SHA256 (stolowski-QComicBook-0.9.1_GH0.tar.gz) = 39bb6ba0e20569985c930b0e8bdb19ae9c5453f27e9f7c01c6d44f56fb204619 +SIZE (stolowski-QComicBook-0.9.1_GH0.tar.gz) = 739887 diff --git a/graphics/qcomicbook/files/patch-help_CMakeLists.txt b/graphics/qcomicbook/files/patch-help_CMakeLists.txt new file mode 100644 index 00000000000..ae9b123c000 --- /dev/null +++ b/graphics/qcomicbook/files/patch-help_CMakeLists.txt @@ -0,0 +1,5 @@ +--- help/CMakeLists.txt.orig 2018-10-07 10:17:17 UTC ++++ help/CMakeLists.txt +@@ -1 +1 @@ +-INSTALL(FILES qcomicbook.1 DESTINATION share/man/man1) ++INSTALL(FILES qcomicbook.1 DESTINATION man/man1) diff --git a/graphics/qcomicbook/files/patch-src__CMakeLists.txt b/graphics/qcomicbook/files/patch-src__CMakeLists.txt index b4665cf3017..9b4303b9d6d 100644 --- a/graphics/qcomicbook/files/patch-src__CMakeLists.txt +++ b/graphics/qcomicbook/files/patch-src__CMakeLists.txt @@ -1,11 +1,11 @@ ---- src/CMakeLists.txt.orig 2011-07-08 07:18:50.000000000 -0300 -+++ src/CMakeLists.txt 2011-07-24 15:33:02.000000000 -0300 -@@ -116,6 +116,8 @@ - QT4_WRAP_UI(qcomicbook_ui_src ${qcomicbook_ui}) - ###QT4_ADD_TRANSLATION(qcomicbook_qm ../lang/pl_PL.ts) +--- src/CMakeLists.txt.orig 2016-11-22 17:45:10 UTC ++++ src/CMakeLists.txt +@@ -54,6 +54,8 @@ qt5_add_resources(qcomicbook_res ../data/qcomicbook.qr + qt5_wrap_cpp(qcomicbook_moc_src ${qcomicbook_moc_hdrs}) + qt5_wrap_ui(qcomicbook_ui_src ${qcomicbook_ui}) +link_directories(${POPPLER_LIBDIR}) + ADD_EXECUTABLE(qcomicbook ${qcomicbook_src} ${qcomicbook_moc_src} ${qcomicbook_ui_src} ${qcomicbook_res}) ADD_DEPENDENCIES(qcomicbook translations) - TARGET_LINK_LIBRARIES(qcomicbook ${QT_LIBRARIES}) + TARGET_LINK_LIBRARIES(qcomicbook Qt5::Widgets Qt5::PrintSupport Qt5::X11Extras) diff --git a/graphics/qcomicbook/files/patch-src__FrameDetect__CompareFrames.h b/graphics/qcomicbook/files/patch-src__FrameDetect__CompareFrames.h index e08e051be09..2a7ee4dd23e 100644 --- a/graphics/qcomicbook/files/patch-src__FrameDetect__CompareFrames.h +++ b/graphics/qcomicbook/files/patch-src__FrameDetect__CompareFrames.h @@ -1,5 +1,5 @@ ---- ./src/FrameDetect/CompareFrames.h.orig 2012-05-30 20:32:02.000000000 +0000 -+++ ./src/FrameDetect/CompareFrames.h 2014-05-13 08:15:11.199946861 +0000 +--- src/FrameDetect/CompareFrames.h.orig 2016-11-22 17:45:10 UTC ++++ src/FrameDetect/CompareFrames.h @@ -14,6 +14,7 @@ #define __COMPARE_FRAMES_H diff --git a/graphics/qcomicbook/pkg-plist b/graphics/qcomicbook/pkg-plist index 9e1e5a5360e..c60bb548ec5 100644 --- a/graphics/qcomicbook/pkg-plist +++ b/graphics/qcomicbook/pkg-plist @@ -2,18 +2,18 @@ bin/qcomicbook man/man1/qcomicbook.1.gz share/applications/qcomicbook.desktop share/pixmaps/qcomicbook.png -%%DATADIR%%/i18n/qcomicbook_cs_CZ.qm -%%DATADIR%%/i18n/qcomicbook_de_DE.qm -%%DATADIR%%/i18n/qcomicbook_en_EN.qm -%%DATADIR%%/i18n/qcomicbook_es_ES.qm -%%DATADIR%%/i18n/qcomicbook_fi_FI.qm -%%DATADIR%%/i18n/qcomicbook_fr_CA.qm -%%DATADIR%%/i18n/qcomicbook_fr_FR.qm -%%DATADIR%%/i18n/qcomicbook_it_IT.qm -%%DATADIR%%/i18n/qcomicbook_ko_KR.qm -%%DATADIR%%/i18n/qcomicbook_nl_NL.qm -%%DATADIR%%/i18n/qcomicbook_pl_PL.qm -%%DATADIR%%/i18n/qcomicbook_pt_BR.qm -%%DATADIR%%/i18n/qcomicbook_ru_RU.qm -%%DATADIR%%/i18n/qcomicbook_uk_UA.qm -%%DATADIR%%/i18n/qcomicbook_zh_CN.qm +share/qcomicbook/i18n/qcomicbook_cs_CZ.qm +share/qcomicbook/i18n/qcomicbook_de_DE.qm +share/qcomicbook/i18n/qcomicbook_en_EN.qm +share/qcomicbook/i18n/qcomicbook_es_ES.qm +share/qcomicbook/i18n/qcomicbook_fi_FI.qm +share/qcomicbook/i18n/qcomicbook_fr_CA.qm +share/qcomicbook/i18n/qcomicbook_fr_FR.qm +share/qcomicbook/i18n/qcomicbook_it_IT.qm +share/qcomicbook/i18n/qcomicbook_ko_KR.qm +share/qcomicbook/i18n/qcomicbook_nl_NL.qm +share/qcomicbook/i18n/qcomicbook_pl_PL.qm +share/qcomicbook/i18n/qcomicbook_pt_BR.qm +share/qcomicbook/i18n/qcomicbook_ru_RU.qm +share/qcomicbook/i18n/qcomicbook_uk_UA.qm +share/qcomicbook/i18n/qcomicbook_zh_CN.qm diff --git a/graphics/raster3d/Makefile b/graphics/raster3d/Makefile index 72914d07639..a2577464813 100644 --- a/graphics/raster3d/Makefile +++ b/graphics/raster3d/Makefile @@ -2,13 +2,13 @@ # $FreeBSD$ PORTNAME= raster3d -PORTVERSION= 3.0.2 -PORTREVISION= 12 +DISTVERSION= 3.0.3 +PORTREVISION= 2 CATEGORIES= graphics biology MASTER_SITES= http://skuld.bmsc.washington.edu/${PORTNAME}/ -DISTNAME= Raster3D_${PORTVERSION:R}-${PORTVERSION:E} +DISTNAME= Raster3D_${DISTVERSION:R}-${DISTVERSION:E} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= yuri@FreeBSD.org COMMENT= Set of tools for generating raster images of proteins and molecules LICENSE= ART20 @@ -20,7 +20,6 @@ USES= fortran MAKE_ARGS= INCDIRS="-I${LOCALBASE}/include" LIBDIRS="-L${LOCALBASE}/lib" \ CC="${CC}" CFLAGS="${CFLAGS}" FC="${FC}" FFLAGS="${FFLAGS}" \ RM="${RM}" OS="${OPSYS}" -ALL_TARGET= linux all MAKE_JOBS_UNSAFE= yes CFLAGS+= -DLINUX -DNETWORKBYTEORDER -Dgfortran @@ -35,6 +34,9 @@ OPTIONS_SUB= yes IMAGEMAGICK_RUN_DEPENDS= convert:graphics/ImageMagick +pre-build: # generation of Makefile.incl has to be separate from 'make all', otherwise the generated Makefile.incl isn't read by 'make all' + @cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} linux + do-install: .for f in avs2ps balls normal3d rastep render ribbon rings3d rods ${INSTALL_PROGRAM} ${WRKSRC}/${f} ${STAGEDIR}${PREFIX}/bin @@ -56,7 +58,7 @@ do-install-DOCS-on: do-install-EXAMPLES-on: @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} - (cd ${WRKSRC}/examples && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR}) - ${RM} -r ${STAGEDIR}${EXAMPLESDIR}/msms/CVS + cd ${WRKSRC}/examples && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR} + @${RM} -r ${STAGEDIR}${EXAMPLESDIR}/msms/CVS .include diff --git a/graphics/raster3d/distinfo b/graphics/raster3d/distinfo index 11c384ac934..914da7510f1 100644 --- a/graphics/raster3d/distinfo +++ b/graphics/raster3d/distinfo @@ -1,2 +1,3 @@ -SHA256 (Raster3D_3.0-2.tar.gz) = a89bdfda61fae8d189820941f1b5685b40743b817128f57bc1225f983a47d984 -SIZE (Raster3D_3.0-2.tar.gz) = 1743034 +TIMESTAMP = 1538810174 +SHA256 (Raster3D_3.0-3.tar.gz) = 1e7d02cf17f2d14855b8d241269948b37ed4d3ae6395914b66ff9f95c3a7fecf +SIZE (Raster3D_3.0-3.tar.gz) = 1729356 diff --git a/graphics/raster3d/files/patch-label3d b/graphics/raster3d/files/patch-label3d new file mode 100644 index 00000000000..b1efc1908b2 --- /dev/null +++ b/graphics/raster3d/files/patch-label3d @@ -0,0 +1,11 @@ +--- label3d.orig 2018-10-06 19:26:10 UTC ++++ label3d +@@ -39,7 +39,7 @@ if [ ! "$FONTSCALE" ]; then FONTSCALE=3. + if [ "$TMPDIR" ]; then + tmp=$TMPDIR/$$ + else +- tmp=/usr/tmp/$$ ++ tmp=/tmp/$$ + fi + #echo "DEBUG scratch files to $tmp" 1>&2 + diff --git a/graphics/raster3d/files/patch-stereo3d b/graphics/raster3d/files/patch-stereo3d new file mode 100644 index 00000000000..1f677c762de --- /dev/null +++ b/graphics/raster3d/files/patch-stereo3d @@ -0,0 +1,11 @@ +--- stereo3d.orig 2018-10-06 19:31:53 UTC ++++ stereo3d +@@ -37,8 +37,6 @@ + # + if [ "$TMPDIR" ]; then + tmp=$TMPDIR/$$ +-elif [ -d /usr/tmp ]; then +- tmp=/usr/tmp/$$ + else + tmp=/tmp/$$ + fi diff --git a/graphics/sam2p/Makefile b/graphics/sam2p/Makefile index 245a6f922c5..93b10e5ef61 100644 --- a/graphics/sam2p/Makefile +++ b/graphics/sam2p/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= sam2p -PORTVERSION= 0.49.3 +PORTVERSION= 0.49.4 PORTEPOCH= 1 CATEGORIES= graphics MASTER_SITES= https://github.com/${GH_ACCOUNT}/${PORTNAME}/releases/download/v${PORTVERSION}/ @@ -13,21 +13,21 @@ COMMENT= Converts raster (bitmap) image formats into PS or PDF files LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING +BUILD_DEPENDS= bash:shells/bash RUN_DEPENDS= zip:archivers/zip \ tif22pnm:graphics/tif22pnm -BROKEN_FreeBSD_12= running make Makedep... error; configure: error: cannot compute depends - USE_HARDENING= pie:off relro:off #USE_GITHUB= yes GH_ACCOUNT= pts USES= ghostscript:run gmake jpeg:run perl5 +USE_GCC= yes USE_PERL5= build GNU_CONFIGURE= yes -CONFIGURE_ENV= ac_cv_path_pts_bash="${SH}" CONFIGURE_ARGS= --enable-gif +MAKE_ENV= MAKE=gmake ALL_TARGET= ${PORTNAME} PORTDOCS= * diff --git a/graphics/sam2p/distinfo b/graphics/sam2p/distinfo index ef95b23def1..d8cb2d70496 100644 --- a/graphics/sam2p/distinfo +++ b/graphics/sam2p/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1476179820 -SHA256 (sam2p-0.49.3.tar.gz) = 33b1bf018a19b19c30d41defcb8b20c7cdcbc7ddd7703040c3a54d9cb1fcaaea -SIZE (sam2p-0.49.3.tar.gz) = 564098 +TIMESTAMP = 1538584194 +SHA256 (sam2p-0.49.4.tar.gz) = 5bc5b5a526bc798315da23b02564d6a1bfea51b364b8b03f76695a833f6d2bed +SIZE (sam2p-0.49.4.tar.gz) = 497193 diff --git a/graphics/sam2p/files/patch-configure b/graphics/sam2p/files/patch-configure index 44b3294e7dd..8c90209ced1 100644 --- a/graphics/sam2p/files/patch-configure +++ b/graphics/sam2p/files/patch-configure @@ -1,11 +1,15 @@ ---- configure.orig Wed Oct 1 19:19:53 2003 -+++ configure Sun Jan 11 20:48:06 2004 -@@ -7502,7 +7502,7 @@ +--- configure.orig 2017-09-13 12:09:54 UTC ++++ configure +@@ -7518,9 +7518,9 @@ fi + + rm -f Makedep ac_n="${ac_n:-$ECHO_N}" - echo $ac_n "running make Makedep""... $ac_c" 1>&6 - echo "configure:7504: running make Makedep" >&5 --if >&5 2>&5 make Makedep; then : -+if >&5 2>&5 gmake Makedep; then : +-echo $ac_n "running make Makedep.force""... $ac_c" 1>&6 +-echo "configure:7504: running make Makedep.force" >&5 +-if >&5 2>&5 make Makedep.force; then : ++echo $ac_n "running ${MAKE:-make} Makedep.force""... $ac_c" 1>&6 ++echo "configure:7504: running ${MAKE:-make} Makedep.force" >&5 ++if >&5 2>&5 ${MAKE:-make} Makedep.force; then : echo "$as_me:$LINENO: result: ok" >&5 echo "${ECHO_T}ok" >&6 diff --git a/graphics/sam2p/files/patch-gensh.hpp b/graphics/sam2p/files/patch-gensh.hpp deleted file mode 100644 index 86d04ae6945..00000000000 --- a/graphics/sam2p/files/patch-gensh.hpp +++ /dev/null @@ -1,11 +0,0 @@ ---- gensi.hpp.orig 2008-05-27 03:58:43.000000000 +0900 -+++ gensi.hpp 2010-03-19 05:53:15.000000000 +0900 -@@ -252,7 +252,7 @@ - if (len!=0) block(beg,len,data); - block(0,0,data); - } -- inline virtual void first_sub(Sub &sub) const { sub.beg=beg; sub.len=len; }; -+ inline virtual void first_sub(Sub &sub) const { sub.beg=beg; sub.len=len; } - inline virtual void next_sub(Sub &sub) const { sub.len=0; } - inline char const*getCString() const { return beg; } - inline char const*operator()() const { return beg; } diff --git a/graphics/sam2p/files/patch-gensio.cpp b/graphics/sam2p/files/patch-gensio.cpp index aed13acf08d..b0605da72f0 100644 --- a/graphics/sam2p/files/patch-gensio.cpp +++ b/graphics/sam2p/files/patch-gensio.cpp @@ -1,6 +1,6 @@ ---- gensio.cpp.orig Fri Feb 7 02:24:56 2003 -+++ gensio.cpp Fri Feb 7 02:25:11 2003 -@@ -491,11 +491,7 @@ +--- gensio.cpp.orig 2014-01-19 19:50:35 UTC ++++ gensio.cpp +@@ -731,11 +731,7 @@ slen_t Filter::FlatD::vi_read(char *to_b /* --- */ diff --git a/graphics/sam2p/files/patch-ps_tiny.c b/graphics/sam2p/files/patch-ps__tiny.c similarity index 81% rename from graphics/sam2p/files/patch-ps_tiny.c rename to graphics/sam2p/files/patch-ps__tiny.c index a0a7efd72f3..7aaddafb9f9 100644 --- a/graphics/sam2p/files/patch-ps_tiny.c +++ b/graphics/sam2p/files/patch-ps__tiny.c @@ -1,5 +1,5 @@ ---- ps_tiny.c.orig 2005-02-22 08:22:22.000000000 +0900 -+++ ps_tiny.c 2010-03-19 05:54:19.000000000 +0900 +--- ps_tiny.c.orig 2014-09-16 08:52:28 UTC ++++ ps_tiny.c @@ -1,10 +1,3 @@ -#define DUMMY \ -set -ex; \ diff --git a/graphics/sam2p/files/patch-pts_defl.c b/graphics/sam2p/files/patch-pts__defl.c similarity index 80% rename from graphics/sam2p/files/patch-pts_defl.c rename to graphics/sam2p/files/patch-pts__defl.c index 6c144adee06..3b925e9d2b1 100644 --- a/graphics/sam2p/files/patch-pts_defl.c +++ b/graphics/sam2p/files/patch-pts__defl.c @@ -1,5 +1,5 @@ ---- pts_defl.c.orig 2008-08-29 05:16:47.000000000 +0900 -+++ pts_defl.c 2010-03-19 05:54:55.000000000 +0900 +--- pts_defl.c.orig 2014-09-16 08:52:28 UTC ++++ pts_defl.c @@ -1,10 +1,3 @@ -#define DUMMY \ -set -ex; \ diff --git a/graphics/sam2p/files/patch-pts_lzw.c b/graphics/sam2p/files/patch-pts__lzw.c similarity index 81% rename from graphics/sam2p/files/patch-pts_lzw.c rename to graphics/sam2p/files/patch-pts__lzw.c index 5c9d7a3151b..f18714393b8 100644 --- a/graphics/sam2p/files/patch-pts_lzw.c +++ b/graphics/sam2p/files/patch-pts__lzw.c @@ -1,5 +1,5 @@ ---- pts_lzw.c.orig 2002-12-12 01:43:08.000000000 +0900 -+++ pts_lzw.c 2010-03-19 05:56:24.000000000 +0900 +--- pts_lzw.c.orig 2014-09-16 08:52:28 UTC ++++ pts_lzw.c @@ -1,10 +1,3 @@ -#define DUMMY \ -set -ex; \ diff --git a/graphics/spectacle/Makefile b/graphics/spectacle/Makefile index 82152fe410e..e9b8e20cccc 100644 --- a/graphics/spectacle/Makefile +++ b/graphics/spectacle/Makefile @@ -2,6 +2,7 @@ PORTNAME= spectacle DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= graphics kde kde-applications MAINTAINER= kde@FreeBSD.org @@ -17,7 +18,7 @@ USE_KDE= attica auth codecs completion config configwidgets coreaddons \ libkipi newstuff notifications package service widgetsaddons \ windowsystem xmlgui USE_QT= core concurrent dbus gui network printsupport qml quick \ - widgets x11extras xml \ + quickcontrols widgets x11extras xml \ buildtools_build qmake_build USE_XORG= x11 xcb xext xfixes diff --git a/graphics/yafaray/Makefile b/graphics/yafaray/Makefile index 334ec4e398e..8249f422016 100644 --- a/graphics/yafaray/Makefile +++ b/graphics/yafaray/Makefile @@ -3,15 +3,10 @@ PORTNAME= yafaray DISTVERSIONPREFIX= v -DISTVERSION= 3.0-5 -PORTREVISION= 2 -DISTVERSIONSUFFIX= -g3a98966 +DISTVERSION= 3.3.0-11 +DISTVERSIONSUFFIX= -g1c0b43a CATEGORIES= graphics -PATCH_SITES= https://github.com/${GH_ACCOUNT}/${GH_PROJECT}/commit/ -PATCHFILES= 38ca47aeca670c9bd5d21c24c0444be1d8fd22b0.patch:-p1 \ - 135c2aad275382f3a95d905e08d4c9e883a0b461.patch:-p1 - MAINTAINER= ports@FreeBSD.org COMMENT= Montecarlo raytracing engine @@ -32,7 +27,7 @@ LIB_DEPENDS= libboost_system.so:devel/boost-libs \ libpng16.so:graphics/png \ libtiff.so:graphics/tiff -USES= cmake:outsource jpeg +USES= cmake:outsource gnome jpeg USE_GITHUB= yes GH_ACCOUNT= YafaRay GH_PROJECT= Core diff --git a/graphics/yafaray/distinfo b/graphics/yafaray/distinfo index b87f8715468..074df3f6f12 100644 --- a/graphics/yafaray/distinfo +++ b/graphics/yafaray/distinfo @@ -1,7 +1,3 @@ -TIMESTAMP = 1532153459 -SHA256 (YafaRay-Core-v3.0-5-g3a98966_GH0.tar.gz) = e6366183810538a33f1ae29a88b8b26710af1dbdb9d60f4c159dda002036e7d4 -SIZE (YafaRay-Core-v3.0-5-g3a98966_GH0.tar.gz) = 1135013 -SHA256 (38ca47aeca670c9bd5d21c24c0444be1d8fd22b0.patch) = f1b1656effde7d71353ab961c83c0f56797d8260d2d97e1d48b42d930f738438 -SIZE (38ca47aeca670c9bd5d21c24c0444be1d8fd22b0.patch) = 898 -SHA256 (135c2aad275382f3a95d905e08d4c9e883a0b461.patch) = c7be74412c8f32ebd91927f82794c9103fa1df48f49720a5fda40b4548501fb5 -SIZE (135c2aad275382f3a95d905e08d4c9e883a0b461.patch) = 783 +TIMESTAMP = 1538876702 +SHA256 (YafaRay-Core-v3.3.0-11-g1c0b43a_GH0.tar.gz) = 400c1e0c8d8b832ded6604daf438c53450b65f14f8ea3736b772f4b53f0e9c3f +SIZE (YafaRay-Core-v3.3.0-11-g1c0b43a_GH0.tar.gz) = 1136115 diff --git a/graphics/yafaray/pkg-plist b/graphics/yafaray/pkg-plist index 24e69701495..ae4e027a54a 100644 --- a/graphics/yafaray/pkg-plist +++ b/graphics/yafaray/pkg-plist @@ -37,7 +37,10 @@ include/yafaray/core_api/vector3d.h include/yafaray/core_api/volume.h include/yafaray/core_api/yafsystem.h include/yafaray/gui/yafqtapi.h +include/yafaray/integrators/bidirpath.h +include/yafaray/integrators/directlight.h include/yafaray/integrators/integr_utils.h +include/yafaray/integrators/pathtracer.h include/yafaray/integrators/photonintegr.h include/yafaray/integrators/sppm.h include/yafaray/interface/xmlinterface.h @@ -140,7 +143,6 @@ include/yafaray/utilities/threadUtils.h include/yafaray/utilities/tiled_array.h include/yafaray/utilities/winunistd.h include/yafaray/utilities/y_alloc.h -include/yafaray/utilities/y_alloc.h.orig include/yafaray/yaf_version.h include/yafaray/yafray_config.h include/yafaray/yafray_constants.h diff --git a/irc/anope/Makefile b/irc/anope/Makefile index a6cbb306393..ea7e72baf24 100644 --- a/irc/anope/Makefile +++ b/irc/anope/Makefile @@ -6,7 +6,7 @@ PORTVERSION= 2.0.5 PORTREVISION= 0 CATEGORIES= irc -MAINTAINER= feld@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Set of IRC services for IRC networks LICENSE= GPLv2 diff --git a/irc/p5-AnyEvent-IRC/Makefile b/irc/p5-AnyEvent-IRC/Makefile index e82c3800707..5673a3615d8 100644 --- a/irc/p5-AnyEvent-IRC/Makefile +++ b/irc/p5-AnyEvent-IRC/Makefile @@ -14,9 +14,9 @@ COMMENT= Event system independent IRC protocol module LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-AnyEvent>=0:devel/p5-AnyEvent \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-AnyEvent>=0:devel/p5-AnyEvent \ p5-Object-Event>=0.7:devel/p5-Object-Event -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/irc/p5-Bot-BasicBot/Makefile b/irc/p5-Bot-BasicBot/Makefile index cb345cc4c70..760e280248f 100644 --- a/irc/p5-Bot-BasicBot/Makefile +++ b/irc/p5-Bot-BasicBot/Makefile @@ -14,9 +14,9 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-POE>=0:devel/p5-POE \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-POE>=0:devel/p5-POE \ p5-POE-Component-IRC>=6.90:irc/p5-POE-Component-IRC -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/irc/p5-IRC-Bot-Hangman/Makefile b/irc/p5-IRC-Bot-Hangman/Makefile index 5609c4e4c3a..50b09fc1652 100644 --- a/irc/p5-IRC-Bot-Hangman/Makefile +++ b/irc/p5-IRC-Bot-Hangman/Makefile @@ -12,12 +12,12 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= IRC hangman bot -BUILD_DEPENDS= p5-Bot-BasicBot>=0:irc/p5-Bot-BasicBot \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Bot-BasicBot>=0:irc/p5-Bot-BasicBot \ p5-Games-GuessWord>=0:games/p5-Games-GuessWord \ p5-Module-Find>=0:devel/p5-Module-Find \ p5-Chatbot-Eliza>=0:misc/p5-Chatbot-Eliza \ p5-Regexp-Common>=0:textproc/p5-Regexp-Common -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= modbuild diff --git a/irc/p5-POE-Component-IRC-Object/Makefile b/irc/p5-POE-Component-IRC-Object/Makefile index d177762f091..36a2f993199 100644 --- a/irc/p5-POE-Component-IRC-Object/Makefile +++ b/irc/p5-POE-Component-IRC-Object/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Slightly simpler OO interface to POE::Component::IRC -BUILD_DEPENDS= p5-POE>=0:devel/p5-POE \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-POE>=0:devel/p5-POE \ p5-POE-Component-IRC>=0:irc/p5-POE-Component-IRC -RUN_DEPENDS:= ${BUILD_DEPENDS} #PLIST_SUB= EXAMPLESDIR="share/examples/${PORTNAME}" USES= perl5 diff --git a/irc/p5-POE-Component-IRC-Plugin-Blowfish/Makefile b/irc/p5-POE-Component-IRC-Plugin-Blowfish/Makefile index 7e8d9778b31..1256bf7af15 100644 --- a/irc/p5-POE-Component-IRC-Plugin-Blowfish/Makefile +++ b/irc/p5-POE-Component-IRC-Plugin-Blowfish/Makefile @@ -15,10 +15,10 @@ COMMENT= POE::Component::IRC plugin tthat provides blowfish encryption LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-POE>=0.37:devel/p5-POE \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-POE>=0.37:devel/p5-POE \ p5-POE-Component-IRC>=5.07:irc/p5-POE-Component-IRC \ p5-Crypt-Blowfish_PP>=1.12:security/p5-Crypt-Blowfish_PP -RUN_DEPENDS:= ${BUILD_DEPENDS} PLIST_SUB= EXAMPLESDIR="share/examples/${PORTNAME}" diff --git a/irc/p5-POE-Component-IRC-Plugin-Bollocks/Makefile b/irc/p5-POE-Component-IRC-Plugin-Bollocks/Makefile index 5bb594685a7..79120c09a01 100644 --- a/irc/p5-POE-Component-IRC-Plugin-Bollocks/Makefile +++ b/irc/p5-POE-Component-IRC-Plugin-Bollocks/Makefile @@ -14,10 +14,10 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Dev-Bollocks>=0.06:textproc/p5-Dev-Bollocks \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Dev-Bollocks>=0.06:textproc/p5-Dev-Bollocks \ p5-POE>=0:devel/p5-POE \ p5-POE-Component-IRC>=0:irc/p5-POE-Component-IRC -RUN_DEPENDS:= ${BUILD_DEPENDS} OPTIONS_DEFINE= EXAMPLES diff --git a/irc/p5-POE-Component-IRC-Plugin-CoreList/Makefile b/irc/p5-POE-Component-IRC-Plugin-CoreList/Makefile index 9001fe69836..16e6e2fc16d 100644 --- a/irc/p5-POE-Component-IRC-Plugin-CoreList/Makefile +++ b/irc/p5-POE-Component-IRC-Plugin-CoreList/Makefile @@ -14,9 +14,9 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-POE>=0:devel/p5-POE \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-POE>=0:devel/p5-POE \ p5-POE-Component-IRC>=0:irc/p5-POE-Component-IRC -RUN_DEPENDS:= ${BUILD_DEPENDS} OPTIONS_DEFINE= EXAMPLES diff --git a/irc/p5-POE-Component-IRC-Plugin-Hailo/Makefile b/irc/p5-POE-Component-IRC-Plugin-Hailo/Makefile index 4ee5ce7d705..bd1064202d9 100644 --- a/irc/p5-POE-Component-IRC-Plugin-Hailo/Makefile +++ b/irc/p5-POE-Component-IRC-Plugin-Hailo/Makefile @@ -15,12 +15,12 @@ COMMENT= PoCo-IRC plugin for a Hailo conversation simulator LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-IRC-Utils>=0.05:irc/p5-IRC-Utils \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-IRC-Utils>=0.05:irc/p5-IRC-Utils \ p5-Math-Random-OO>=0.21:math/p5-Math-Random-OO \ p5-POE>=0:devel/p5-POE \ p5-POE-Component-Hailo>=0:devel/p5-POE-Component-Hailo \ p5-POE-Component-IRC>=6.22:irc/p5-POE-Component-IRC -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Script>=1.07:devel/p5-Test-Script USES= perl5 diff --git a/irc/p5-POE-Component-IRC-Plugin-Karma/Makefile b/irc/p5-POE-Component-IRC-Plugin-Karma/Makefile index 98d74926735..70f84927ff4 100644 --- a/irc/p5-POE-Component-IRC-Plugin-Karma/Makefile +++ b/irc/p5-POE-Component-IRC-Plugin-Karma/Makefile @@ -14,11 +14,11 @@ COMMENT= PoCo-IRC plugin that keeps track of karma LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-DBD-SQLite>=0:databases/p5-DBD-SQLite \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-DBD-SQLite>=0:databases/p5-DBD-SQLite \ p5-DBI>=0:databases/p5-DBI \ p5-POE-Component-IRC>=6.22:irc/p5-POE-Component-IRC \ p5-Moose>=0:devel/p5-Moose -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-MockObject>=0:devel/p5-Test-MockObject USES= perl5 diff --git a/irc/p5-POE-Component-IRC-Plugin-POE-Knee/Makefile b/irc/p5-POE-Component-IRC-Plugin-POE-Knee/Makefile index 6003a40f962..374e63439f9 100644 --- a/irc/p5-POE-Component-IRC-Plugin-POE-Knee/Makefile +++ b/irc/p5-POE-Component-IRC-Plugin-POE-Knee/Makefile @@ -14,10 +14,10 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Math-Random>=0.69:math/p5-Math-Random \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Math-Random>=0.69:math/p5-Math-Random \ p5-POE>=0:devel/p5-POE \ p5-POE-Component-IRC>=0:irc/p5-POE-Component-IRC -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 shebangfix diff --git a/irc/p5-POE-Component-IRC-Plugin-QueryDNS/Makefile b/irc/p5-POE-Component-IRC-Plugin-QueryDNS/Makefile index 723629d04a7..0e1f9ed2ec1 100644 --- a/irc/p5-POE-Component-IRC-Plugin-QueryDNS/Makefile +++ b/irc/p5-POE-Component-IRC-Plugin-QueryDNS/Makefile @@ -11,10 +11,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= POE::Component::IRC plugin for IRC based DNS queries -BUILD_DEPENDS= p5-Net-IP>=1.25:net-mgmt/p5-Net-IP \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Net-IP>=1.25:net-mgmt/p5-Net-IP \ p5-POE-Component-Client-DNS>=1.00:dns/p5-POE-Component-Client-DNS \ p5-POE-Component-IRC>=0:irc/p5-POE-Component-IRC -RUN_DEPENDS:= ${BUILD_DEPENDS} PLIST_SUB= EXAMPLESDIR="share/examples/${PORTNAME}" USES= perl5 diff --git a/irc/p5-POE-Component-IRC-Plugin-RSS-Headlines/Makefile b/irc/p5-POE-Component-IRC-Plugin-RSS-Headlines/Makefile index df95778cb17..a783aa2d725 100644 --- a/irc/p5-POE-Component-IRC-Plugin-RSS-Headlines/Makefile +++ b/irc/p5-POE-Component-IRC-Plugin-RSS-Headlines/Makefile @@ -14,12 +14,12 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-HTTP-Message>=0:www/p5-HTTP-Message \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTTP-Message>=0:www/p5-HTTP-Message \ p5-POE>=1.004:devel/p5-POE \ p5-POE-Component-Client-HTTP>=0.73:www/p5-POE-Component-Client-HTTP \ p5-POE-Component-IRC>=5.07:irc/p5-POE-Component-IRC \ p5-XML-RSS>=1.1:textproc/p5-XML-RSS -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/irc/p5-POE-Component-IRC/Makefile b/irc/p5-POE-Component-IRC/Makefile index 8b75c1078d8..680c36596a1 100644 --- a/irc/p5-POE-Component-IRC/Makefile +++ b/irc/p5-POE-Component-IRC/Makefile @@ -14,13 +14,13 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-IRC-Utils>=0.12:irc/p5-IRC-Utils \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-IRC-Utils>=0.12:irc/p5-IRC-Utils \ p5-POE>=1.311:devel/p5-POE \ p5-POE-Component-Client-DNS>=0.99:dns/p5-POE-Component-Client-DNS \ p5-POE-Component-SSLify>=0:security/p5-POE-Component-SSLify \ p5-POE-Component-Syndicator>=0.01:devel/p5-POE-Component-Syndicator \ p5-POE-Filter-IRCD>=2.42:irc/p5-POE-Filter-IRCD -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Differences>=0.610:devel/p5-Test-Differences OPTIONS_DEFINE= EXAMPLES diff --git a/irc/p5-POE-Filter-IRCD/Makefile b/irc/p5-POE-Filter-IRCD/Makefile index 59d3efd4f32..a54912912e3 100644 --- a/irc/p5-POE-Filter-IRCD/Makefile +++ b/irc/p5-POE-Filter-IRCD/Makefile @@ -15,8 +15,8 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-POE>=0:devel/p5-POE -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-POE>=0:devel/p5-POE USES= perl5 USE_PERL5= configure diff --git a/irc/py-limnoria/Makefile b/irc/py-limnoria/Makefile index 907ec95c401..9e4e3faebbb 100644 --- a/irc/py-limnoria/Makefile +++ b/irc/py-limnoria/Makefile @@ -2,22 +2,36 @@ # $FreeBSD$ PORTNAME= limnoria -PORTVERSION= 2016.06.29 +PORTVERSION= 2018.09.09 CATEGORIES= irc python -MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= koobs@FreeBSD.org COMMENT= Modified version of Supybot (IRC bot and framework) LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE.md -TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}feedparser>=0:textproc/py-feedparser@${PY_FLAVOR} +TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}feedparser>=0:textproc/py-feedparser@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}sqlite3>0:databases/py-sqlite3@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}dateutil>=0:devel/py-dateutil@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pytz>=0:devel/py-pytz@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}mock>=0:devel/py-mock@${PY_FLAVOR} + +USES= python # 2.6+ +USE_GITHUB= yes +USE_PYTHON= autoplist concurrent distutils + +GH_ACCOUNT= ProgVal +GH_PROJECT= Limnoria +GH_TAGNAME= master-2018-09-10 OPTIONS_DEFINE= ECDSA PROXY OPTIONS_DEFAULT= ECDSA ENCODING RSS TIME + OPTIONS_GROUP= EXTRAS OPTIONS_GROUP_EXTRAS= ENCODING GPG RSS TIME + OPTIONS_RADIO= AKA OPTIONS_RADIO_AKA= SQLITE SQLALCHEMY @@ -46,9 +60,6 @@ TIME_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}dateutil>=0:devel/py-dateutil@${PY_FLAV SQLITE_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sqlite3>0:databases/py-sqlite3@${PY_FLAVOR} SQLALCHEMY_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sqlalchemy10>0:databases/py-sqlalchemy10@${PY_FLAVOR} -USES= python -USE_PYTHON= autoplist concurrent distutils - NO_ARCH= yes # Needs to be installed first to work. diff --git a/irc/py-limnoria/distinfo b/irc/py-limnoria/distinfo index 9afcb2f4df4..f7c7ad69f62 100644 --- a/irc/py-limnoria/distinfo +++ b/irc/py-limnoria/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1470569656 -SHA256 (limnoria-2016.06.29.tar.gz) = e2c096e4f794ca7040e2a2191abfedbb9187df9421e6a3adc90022c6e6e86dca -SIZE (limnoria-2016.06.29.tar.gz) = 868594 +TIMESTAMP = 1538799817 +SHA256 (ProgVal-Limnoria-2018.09.09-master-2018-09-10_GH0.tar.gz) = 66af1f9bf02ae8a614451445efdcd5c782cc9881a3775de1f74d748c65626a6d +SIZE (ProgVal-Limnoria-2018.09.09-master-2018-09-10_GH0.tar.gz) = 963326 diff --git a/japanese/p5-Date-Japanese-Era/Makefile b/japanese/p5-Date-Japanese-Era/Makefile index 649277c4b3e..79d801a0ecf 100644 --- a/japanese/p5-Date-Japanese-Era/Makefile +++ b/japanese/p5-Date-Japanese-Era/Makefile @@ -10,9 +10,9 @@ MASTER_SITES= CPAN MAINTAINER= perl@FreeBSD.org COMMENT= Conversion between Japanese Era / Gregorian calendar -BUILD_DEPENDS= p5-Date-Calc>=0:devel/p5-Date-Calc \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Date-Calc>=0:devel/p5-Date-Calc \ ja-p5-Lingua-JA-Numbers>=0:japanese/p5-Lingua-JA-Numbers -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/japanese/p5-DateTime-Calendar-Japanese-Era/Makefile b/japanese/p5-DateTime-Calendar-Japanese-Era/Makefile index e2f7b5093b6..bf0604939fb 100644 --- a/japanese/p5-DateTime-Calendar-Japanese-Era/Makefile +++ b/japanese/p5-DateTime-Calendar-Japanese-Era/Makefile @@ -13,14 +13,14 @@ COMMENT= DateTime Extension for Japanese Eras LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Class-Accessor>=0:devel/p5-Class-Accessor \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Accessor>=0:devel/p5-Class-Accessor \ p5-Class-Data-Inheritable>=0:devel/p5-Class-Data-Inheritable \ p5-Module-Install>=0.91:devel/p5-Module-Install \ p5-DateTime>=0:devel/p5-DateTime \ p5-File-ShareDir>=0:devel/p5-File-ShareDir \ p5-Params-Validate>=0:devel/p5-Params-Validate \ p5-YAML-Tiny>=1.38:textproc/p5-YAML-Tiny -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-YAML>=0:textproc/p5-YAML USES= perl5 diff --git a/japanese/p5-DateTime-Format-Japanese/Makefile b/japanese/p5-DateTime-Format-Japanese/Makefile index 9ee28036a0c..d44afc88c2b 100644 --- a/japanese/p5-DateTime-Format-Japanese/Makefile +++ b/japanese/p5-DateTime-Format-Japanese/Makefile @@ -11,12 +11,12 @@ MASTER_SITE_SUBDIR= CPAN:DMAKI MAINTAINER= markun@onohara.to COMMENT= Japanese DateTime Formatter -BUILD_DEPENDS= p5-DateTime>=0:devel/p5-DateTime \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-DateTime>=0:devel/p5-DateTime \ p5-DateTime-Calendar-Japanese>=0.05:devel/p5-DateTime-Calendar-Japanese \ ja-p5-DateTime-Calendar-Japanese-Era>=0.08000:japanese/p5-DateTime-Calendar-Japanese-Era \ p5-DateTime-Format-Builder>=0:devel/p5-DateTime-Format-Builder \ p5-Params-Validate>=0:devel/p5-Params-Validate -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/japanese/p5-Lingua-JA-Summarize-Extract/Makefile b/japanese/p5-Lingua-JA-Summarize-Extract/Makefile index 193c64956ac..7493f50bed7 100644 --- a/japanese/p5-Lingua-JA-Summarize-Extract/Makefile +++ b/japanese/p5-Lingua-JA-Summarize-Extract/Makefile @@ -10,10 +10,10 @@ MASTER_SITES= CPAN MAINTAINER= markun@onohara.to COMMENT= Summary generator for Japanese -BUILD_DEPENDS= p5-Class-Accessor>=0:devel/p5-Class-Accessor \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Accessor>=0:devel/p5-Class-Accessor \ p5-UNIVERSAL-require>=0:devel/p5-UNIVERSAL-require \ p5-Module-Install>=0:devel/p5-Module-Install -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/japanese/p5-Number-Phone-JP/Makefile b/japanese/p5-Number-Phone-JP/Makefile index 34b4481279c..0959f49dfbb 100644 --- a/japanese/p5-Number-Phone-JP/Makefile +++ b/japanese/p5-Number-Phone-JP/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Number-Phone-JP -PORTVERSION= 0.20180904 +PORTVERSION= 0.20181001 CATEGORIES= japanese perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:TANIGUCHI diff --git a/japanese/p5-Number-Phone-JP/distinfo b/japanese/p5-Number-Phone-JP/distinfo index bda5957109d..cea703ae3d0 100644 --- a/japanese/p5-Number-Phone-JP/distinfo +++ b/japanese/p5-Number-Phone-JP/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1536257822 -SHA256 (Number-Phone-JP-0.20180904.tar.gz) = e655678ff50a0434dbfaa4a6e8fd1c230d71ef76be4578ccbd0c2e7f188734fa -SIZE (Number-Phone-JP-0.20180904.tar.gz) = 397527 +TIMESTAMP = 1538817743 +SHA256 (Number-Phone-JP-0.20181001.tar.gz) = 64169a2f46d70f41ef0bb711b584d12726ec02ac48b3e775a3478ebcc54ba323 +SIZE (Number-Phone-JP-0.20181001.tar.gz) = 397621 diff --git a/java/Makefile b/java/Makefile index edd391f8af1..615344efa24 100644 --- a/java/Makefile +++ b/java/Makefile @@ -71,6 +71,7 @@ SUBDIR += jcommon SUBDIR += jd-gui SUBDIR += jdbcpool + SUBDIR += jdk10-doc SUBDIR += jdk8-doc SUBDIR += jdk9-doc SUBDIR += jdom diff --git a/java/jdk10-doc/Makefile b/java/jdk10-doc/Makefile new file mode 100644 index 00000000000..c3513570a23 --- /dev/null +++ b/java/jdk10-doc/Makefile @@ -0,0 +1,40 @@ +# $FreeBSD$ + +PORTNAME= jdk +PORTVERSION= ${JDK_VERSION}.${JDK_UPDATE_VERSION}.${JDK_PATCH_VERSION} +CATEGORIES= java devel +MASTER_SITES= # +PKGNAMESUFFIX= ${JDK_VERSION}-doc +DISTNAME= jdk-${PORTVERSION}_doc-all + +MAINTAINER= java@FreeBSD.org +COMMENT= Java Development Kit ${JDK_MAJOR_VER} Documentation + +DOCSDIR?= ${PREFIX}/share/doc/jdk${JDK_VERSION} +RESTRICTED= This documentation is under license and export control. + +WRKSRC= ${WRKDIR}/docs +JDK_VERSION= 10 +JDK_UPDATE_VERSION= 0 +JDK_PATCH_VERSION= 2 +DOWNLOAD_URL= http://www.oracle.com/technetwork/java/javase/downloads/index.html + +NO_BUILD= yes +USES= zip +PORTDOCS= * + +OPTIONS_DEFINE= DOCS + +.include + +.if !exists(${DISTDIR}/${DISTNAME}${EXTRACT_SUFX}) +IGNORE=You must manually fetch ${DISTNAME}${EXTRACT_SUFX} from ${DOWNLOAD_URL} by selecting the "Download" link for the "Java SE 10 Documentation", place it in ${DISTDIR} and then run make again +.endif + +do-install: + @${ECHO} -n ">> Installing documentation in ${DOCSDIR}..." + @${MKDIR} ${STAGEDIR}${DOCSDIR} + @(cd ${WRKSRC}/ && ${COPYTREE_SHARE} \* ${STAGEDIR}${DOCSDIR}/) + @${ECHO} " [ DONE ]" + +.include diff --git a/java/jdk10-doc/distinfo b/java/jdk10-doc/distinfo new file mode 100644 index 00000000000..9c050bb6af8 --- /dev/null +++ b/java/jdk10-doc/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1538930699 +SHA256 (jdk-10.0.2_doc-all.zip) = cb7b1703e9e1ef8adc2506672e5d6396df2d76a4f9f4dda8e4226b4ae52852a8 +SIZE (jdk-10.0.2_doc-all.zip) = 69312792 diff --git a/java/jdk10-doc/pkg-descr b/java/jdk10-doc/pkg-descr new file mode 100644 index 00000000000..ed3ff7c53bb --- /dev/null +++ b/java/jdk10-doc/pkg-descr @@ -0,0 +1,6 @@ +Java Development Kit 10 Documentation. Contains release information, +API documentation, guides to new features and tool documentation. + +The documentation will be installed in ${PREFIX}/share/doc/jdk10/ + +WWW: http://www.oracle.com/us/technologies/java/index.html diff --git a/lang/crystal/Makefile b/lang/crystal/Makefile index 94287398511..2c871f15e06 100644 --- a/lang/crystal/Makefile +++ b/lang/crystal/Makefile @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= crystal -DISTVERSION= 0.25.1 -PORTREVISION= 1 +DISTVERSION= 0.26.1 CATEGORIES= lang MASTER_SITES= https://unrelentingtech.s3.dualstack.eu-west-1.amazonaws.com/crystal/:bootstrap DISTFILES= ${BOOTSTRAP_PATH}:bootstrap @@ -33,7 +32,8 @@ MAKE_ARGS= SHELL=sh \ LLVM_CONFIG="${LOCALBASE}/bin/llvm-config${LLVM_VERSION}" \ FLAGS="--release --no-debug --progress" \ EXPORTS='CRYSTAL_CONFIG_PATH="lib:${PREFIX}/lib/${PORTNAME}"' \ - CRYSTAL_CACHE_DIR="${WRKDIR}/cache" + CRYSTAL_CACHE_DIR="${WRKDIR}/cache" \ + CRYSTAL_CONFIG_VERSION="${DISTVERSION}" PORTDOCS= * PORTEXAMPLES= * diff --git a/lang/crystal/distinfo b/lang/crystal/distinfo index a1cae6c41d0..74afc4adf7b 100644 --- a/lang/crystal/distinfo +++ b/lang/crystal/distinfo @@ -1,9 +1,9 @@ -TIMESTAMP = 1531356074 +TIMESTAMP = 1538309574 SHA256 (crystal/crystal-0.25.1-freebsd12.0-aarch64) = fa670991f5db0a25561208c99a8c6fc9aefdc971fd3d3ddda5af928084acf72c SIZE (crystal/crystal-0.25.1-freebsd12.0-aarch64) = 9244872 SHA256 (crystal/crystal-0.25.0-freebsd12.0) = 16099e4a4a28578c38a68885b20b20604554f8471d760867808a5e4572517eed SIZE (crystal/crystal-0.25.0-freebsd12.0) = 10026328 SHA256 (crystal/crystal-0.25.0-freebsd11.2) = 54a4b6a701f6b2dedc9cbbde660455eca00fed51567c5fd7acc761f694fdd0ef SIZE (crystal/crystal-0.25.0-freebsd11.2) = 10031424 -SHA256 (crystal/crystal-lang-crystal-0.25.1_GH0.tar.gz) = 9b5a7bd2de67ab36cc5430133228a1e656a431fc7d928a37a61109bd8da77fc6 -SIZE (crystal/crystal-lang-crystal-0.25.1_GH0.tar.gz) = 1961727 +SHA256 (crystal/crystal-lang-crystal-0.26.1_GH0.tar.gz) = b7c755a7d0f49f572ae5c08b8b0139fcb1c6862c9479dfae74f00e2c8424fcb0 +SIZE (crystal/crystal-lang-crystal-0.26.1_GH0.tar.gz) = 1994987 diff --git a/lang/crystal/pkg-plist b/lang/crystal/pkg-plist index 40eba9e6a61..8c1b440b932 100644 --- a/lang/crystal/pkg-plist +++ b/lang/crystal/pkg-plist @@ -158,7 +158,6 @@ lib/crystal/compiler/crystal/tools/init/template/readme.md.ecr lib/crystal/compiler/crystal/tools/init/template/shard.yml.ecr lib/crystal/compiler/crystal/tools/init/template/spec_helper.cr.ecr lib/crystal/compiler/crystal/tools/init/template/travis.yml.ecr -lib/crystal/compiler/crystal/tools/init/template/version.cr.ecr lib/crystal/compiler/crystal/tools/playground/agent.cr lib/crystal/compiler/crystal/tools/playground/agent_instrumentor_transformer.cr lib/crystal/compiler/crystal/tools/playground/public/application.css @@ -211,6 +210,7 @@ lib/crystal/crystal/hasher.cr lib/crystal/crystal/main.cr lib/crystal/crystal/system.cr lib/crystal/crystal/system/dir.cr +lib/crystal/crystal/system/env.cr lib/crystal/crystal/system/file.cr lib/crystal/crystal/system/file_descriptor.cr lib/crystal/crystal/system/file_info.cr @@ -218,6 +218,7 @@ lib/crystal/crystal/system/random.cr lib/crystal/crystal/system/time.cr lib/crystal/crystal/system/unix/arc4random.cr lib/crystal/crystal/system/unix/dir.cr +lib/crystal/crystal/system/unix/env.cr lib/crystal/crystal/system/unix/file.cr lib/crystal/crystal/system/unix/file_descriptor.cr lib/crystal/crystal/system/unix/file_info.cr @@ -227,10 +228,15 @@ lib/crystal/crystal/system/unix/sysconf_cpucount.cr lib/crystal/crystal/system/unix/sysctl_cpucount.cr lib/crystal/crystal/system/unix/time.cr lib/crystal/crystal/system/unix/urandom.cr +lib/crystal/crystal/system/win32/dir.cr +lib/crystal/crystal/system/win32/env.cr +lib/crystal/crystal/system/win32/file.cr lib/crystal/crystal/system/win32/file_descriptor.cr +lib/crystal/crystal/system/win32/file_info.cr lib/crystal/crystal/system/win32/random.cr lib/crystal/crystal/system/win32/time.cr lib/crystal/crystal/system/win32/zone_names.cr +lib/crystal/crystal/system/windows.cr lib/crystal/csv.cr lib/crystal/csv/builder.cr lib/crystal/csv/error.cr @@ -675,19 +681,25 @@ lib/crystal/lib_c/x86_64-portbld-freebsd/c/termios.cr lib/crystal/lib_c/x86_64-portbld-freebsd/c/time.cr lib/crystal/lib_c/x86_64-portbld-freebsd/c/unistd.cr lib/crystal/lib_c/x86_64-unknown-freebsd +lib/crystal/lib_c/x86_64-windows-msvc/c/basetsd.cr lib/crystal/lib_c/x86_64-windows-msvc/c/corecrt.cr +lib/crystal/lib_c/x86_64-windows-msvc/c/direct.cr lib/crystal/lib_c/x86_64-windows-msvc/c/errno.cr +lib/crystal/lib_c/x86_64-windows-msvc/c/fcntl.cr +lib/crystal/lib_c/x86_64-windows-msvc/c/fileapi.cr lib/crystal/lib_c/x86_64-windows-msvc/c/int_safe.cr lib/crystal/lib_c/x86_64-windows-msvc/c/io.cr lib/crystal/lib_c/x86_64-windows-msvc/c/ntsecapi.cr lib/crystal/lib_c/x86_64-windows-msvc/c/stdarg.cr lib/crystal/lib_c/x86_64-windows-msvc/c/stddef.cr +lib/crystal/lib_c/x86_64-windows-msvc/c/stdint.cr lib/crystal/lib_c/x86_64-windows-msvc/c/stdio.cr lib/crystal/lib_c/x86_64-windows-msvc/c/stdlib.cr lib/crystal/lib_c/x86_64-windows-msvc/c/string.cr lib/crystal/lib_c/x86_64-windows-msvc/c/synchapi.cr lib/crystal/lib_c/x86_64-windows-msvc/c/sys/stat.cr lib/crystal/lib_c/x86_64-windows-msvc/c/sys/types.cr +lib/crystal/lib_c/x86_64-windows-msvc/c/sys/utime.cr lib/crystal/lib_c/x86_64-windows-msvc/c/win_def.cr lib/crystal/lib_c/x86_64-windows-msvc/c/winbase.cr lib/crystal/lib_c/x86_64-windows-msvc/c/winnt.cr @@ -773,6 +785,7 @@ lib/crystal/openssl/pkcs5.cr lib/crystal/openssl/sha1.cr lib/crystal/openssl/ssl/context.cr lib/crystal/openssl/ssl/hostname_validation.cr +lib/crystal/openssl/ssl/server.cr lib/crystal/openssl/ssl/socket.cr lib/crystal/openssl/x509/certificate.cr lib/crystal/openssl/x509/extension.cr @@ -823,6 +836,7 @@ lib/crystal/spec/formatter.cr lib/crystal/spec/junit_formatter.cr lib/crystal/spec/methods.cr lib/crystal/spec/source.cr +lib/crystal/spec/tap_formatter.cr lib/crystal/static_array.cr lib/crystal/string.cr lib/crystal/string/builder.cr diff --git a/lang/gcc6-devel/Makefile b/lang/gcc6-devel/Makefile index 6f5edffce9b..c71135d7e3b 100644 --- a/lang/gcc6-devel/Makefile +++ b/lang/gcc6-devel/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= gcc -PORTVERSION= 6.4.1.s20180926 +PORTVERSION= 6.4.1.s20181003 CATEGORIES= lang java MASTER_SITES= GCC/snapshots/${DIST_VERSION} PKGNAMESUFFIX= ${SUFFIX}-devel diff --git a/lang/gcc6-devel/distinfo b/lang/gcc6-devel/distinfo index 3f7c46f1019..9f58af982ea 100644 --- a/lang/gcc6-devel/distinfo +++ b/lang/gcc6-devel/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1538172728 -SHA256 (gcc-6-20180926.tar.xz) = e1150e20ef0e6c2ad1f1fc78c6cb81124c3bd3c9b62d1521d55c90c570c51484 -SIZE (gcc-6-20180926.tar.xz) = 72685528 +TIMESTAMP = 1538892646 +SHA256 (gcc-6-20181003.tar.xz) = 4ae847ba1f1411ed6a1972d0ff7688ebc2ab091e422f26f1e1c2e6f2daeaa216 +SIZE (gcc-6-20181003.tar.xz) = 72687960 diff --git a/lang/gcc7-devel/Makefile b/lang/gcc7-devel/Makefile index 807be84c256..cf5d2d41d3c 100644 --- a/lang/gcc7-devel/Makefile +++ b/lang/gcc7-devel/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= gcc -PORTVERSION= 7.3.1.s20180927 +PORTVERSION= 7.3.1.s20181004 CATEGORIES= lang MASTER_SITES= GCC/snapshots/${DIST_VERSION} PKGNAMESUFFIX= ${SUFFIX}-devel diff --git a/lang/gcc7-devel/distinfo b/lang/gcc7-devel/distinfo index 465103e9ad2..01a980c0773 100644 --- a/lang/gcc7-devel/distinfo +++ b/lang/gcc7-devel/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1538170254 -SHA256 (gcc-7-20180927.tar.xz) = 5cfeb7288afa6f3bb753c2e049789ed95744a63c4dcb1946ccbc32ab1830cb7f -SIZE (gcc-7-20180927.tar.xz) = 59295408 +TIMESTAMP = 1538848882 +SHA256 (gcc-7-20181004.tar.xz) = 0e8de3aa780b947465c0619bb947a028c7ebfa3853f48dad0d7e6bcfc595b18e +SIZE (gcc-7-20181004.tar.xz) = 59298276 diff --git a/lang/gcc7-devel/files/patch-libgfortran b/lang/gcc7-devel/files/patch-libgfortran new file mode 100644 index 00000000000..41bb863c437 --- /dev/null +++ b/lang/gcc7-devel/files/patch-libgfortran @@ -0,0 +1,19 @@ +2018-10-02 Gerald Pfeifer + + * io/close.c [!HAVE_UNLINK_OPEN_FILE]: Include . + +--- UTC +Index: libgfortran/io/close.c +=================================================================== +--- libgfortran/io/close.c (revision 264799) ++++ libgfortran/io/close.c (revision 264800) +@@ -26,6 +26,9 @@ see the files COPYING3 and COPYING.RUNTIME respect + #include "unix.h" + #include "async.h" + #include ++#if !HAVE_UNLINK_OPEN_FILE ++#include ++#endif + + typedef enum + { CLOSE_DELETE, CLOSE_KEEP, CLOSE_UNSPECIFIED } diff --git a/lang/gcc8-devel/Makefile b/lang/gcc8-devel/Makefile index 7977b4a799a..056ebe5f923 100644 --- a/lang/gcc8-devel/Makefile +++ b/lang/gcc8-devel/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= gcc -PORTVERSION= 8.2.1.s20180928 +PORTVERSION= 8.2.1.s20181005 CATEGORIES= lang MASTER_SITES= GCC/snapshots/${DIST_VERSION} PKGNAMESUFFIX= ${SUFFIX}-devel diff --git a/lang/gcc8-devel/distinfo b/lang/gcc8-devel/distinfo index be5030fcacd..fc458e985f2 100644 --- a/lang/gcc8-devel/distinfo +++ b/lang/gcc8-devel/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1538204253 -SHA256 (gcc-8-20180928.tar.xz) = 33d24f9a9ca3bff8c99d3cadbe3b089bc3e5c255b944cc98266544baa0602a6f -SIZE (gcc-8-20180928.tar.xz) = 61701708 +TIMESTAMP = 1538844263 +SHA256 (gcc-8-20181005.tar.xz) = bfba60998055b633abe9103fc549c3519cf4eabdcff2cd4450808b01098e2ba4 +SIZE (gcc-8-20181005.tar.xz) = 61733128 diff --git a/lang/gcc9-devel/Makefile b/lang/gcc9-devel/Makefile index 1f8ce59c94e..60b6d0fc230 100644 --- a/lang/gcc9-devel/Makefile +++ b/lang/gcc9-devel/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= gcc -PORTVERSION= 9.0.0.s20180923 +PORTVERSION= 9.0.0.s20180930 CATEGORIES= lang MASTER_SITES= GCC/snapshots/${DIST_VERSION} PKGNAMESUFFIX= ${SUFFIX}-devel diff --git a/lang/gcc9-devel/distinfo b/lang/gcc9-devel/distinfo index 14d7869ae7c..d935ba7ce1f 100644 --- a/lang/gcc9-devel/distinfo +++ b/lang/gcc9-devel/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1537771014 -SHA256 (gcc-9-20180923.tar.xz) = 79026e4f5d8ff8058f6db4d8691a5f1407728a28121e7e3454521d2e2457de7c -SIZE (gcc-9-20180923.tar.xz) = 62385552 +TIMESTAMP = 1538633263 +SHA256 (gcc-9-20180930.tar.xz) = f86cbe06d03248efaa7202c99db6e8ae8df9f1ecaf743bea1eb0e02e4f06b4f4 +SIZE (gcc-9-20180930.tar.xz) = 62871800 diff --git a/lang/ghc/Makefile b/lang/ghc/Makefile index c93fc76f924..6b875b7c04f 100644 --- a/lang/ghc/Makefile +++ b/lang/ghc/Makefile @@ -6,8 +6,12 @@ PORTVERSION= ${GHC_VERSION} PORTREVISION= 1 CATEGORIES= lang haskell MASTER_SITES= http://www.haskell.org/ghc/dist/${PORTVERSION}/:source \ - LOCAL/arrowd/:boot -DISTFILES= ghc-${PORTVERSION}-src${EXTRACT_SUFX}:source + LOCAL/arrowd/:boot \ + ${HACKAGE_SITE}hscolour-${HSCOLOUR_VERSION}/:docs + +EXTRACT_ONLY= ${_DISTFILES:C/hscolour.*$//g} +DISTFILES= ghc-${PORTVERSION}-src${EXTRACT_SUFX}:source \ + hscolour-${HSCOLOUR_VERSION}.tar.gz:docs MAINTAINER= haskell@FreeBSD.org COMMENT= Compiler for the functional language Haskell @@ -55,7 +59,7 @@ SUB_LIST= GHC_VERSION=${GHC_VERSION} \ OPTIONS_GROUP= BOOTSTRAP BOOTSTRAP_DESC= Bootsrap using installed ghc -OPTIONS_GROUP_BOOTSTRAP=BOOT BOOTH +OPTIONS_GROUP_BOOTSTRAP=BOOT OPTIONS_DEFINE= DYNAMIC PROFILE DOCS OPTIONS_SUB= yes @@ -66,7 +70,6 @@ OPTIONS_EXCLUDE_armv7= DYNAMIC OPTIONS_EXCLUDE_aarch64= DYNAMIC BOOT_DESC= Use installed GHC for bootstrapping -BOOTH_DESC= Use installed HsColour for bootstrapping PROFILE_DESC= Add support for performance profiling DYNAMIC_DESC= Add support for dynamic linking DOCS_DESC= Install HTML documentation @@ -163,29 +166,12 @@ TMPDIR= ${WRKSRC}/tmp # the build tree, without needing to install it. At the end # you could view the output of: ${BOOT_GHC} describe hscolour -.if ${PORT_OPTIONS:MDOCS} - -. if empty(PORT_OPTIONS:MBOOTH) - -MASTER_SITES+= ${HACKAGE_SITE}hscolour-${HSCOLOUR_VERSION}/:docs -DISTFILES+= hscolour-${HSCOLOUR_VERSION}.tar.gz:docs - -EXTRACT_ONLY= ${_DISTFILES:C/hscolour.*$//g} - -. endif # MBOOTH - -. if empty(PORT_OPTIONS:MBOOTH) - SLAVES_PREFIX= ${WRKDIR}/slaves_prefix SLAVES_WRKDIRPREFIX= ${WRKDIR}/slaves_wrkdirprefix MAKE_ENV+= PATH=${SLAVES_PREFIX}/bin:${PATH} CONFIGURE_ENV+= PATH=${SLAVES_PREFIX}/bin:${PATH} -. endif # MBOOTH - -.endif # MDOCS - post-extract: # don't use the "wrap" trick on arches that use post-ino64 bootstrap binaries (arm*) .if empty(PORT_OPTIONS:MBOOT) && ${OPSYS} == FreeBSD && ${OSVERSION} >= 1200031 && \ @@ -254,7 +240,7 @@ pre-configure: apply-slist @(cd ${BOOT_DIR} && PACKAGES='' ${MAKE_CMD} install) .endif -.if ${PORT_OPTIONS:MDOCS} && empty(PORT_OPTIONS:MBOOTH) +.if ${PORT_OPTIONS:MDOCS} @${ECHO_MSG} -e "\a" @${ECHO_MSG} "======================================================================" @${ECHO_MSG} " WARNING: Now HsColour will be built, the respective port will not " diff --git a/lang/julia/Makefile b/lang/julia/Makefile index 879b8406fd5..3204fc00d20 100644 --- a/lang/julia/Makefile +++ b/lang/julia/Makefile @@ -2,9 +2,8 @@ # $FreeBSD$ PORTNAME= julia -PORTVERSION= 1.0.0 +PORTVERSION= 1.0.1 DISTVERSIONSUFFIX= -full -PORTREVISION= 1 CATEGORIES= lang math MASTER_SITES= https://github.com/JuliaLang/julia/releases/download/v${PORTVERSION}/ diff --git a/lang/julia/distinfo b/lang/julia/distinfo index 0ed1d2ee93a..bde74df335d 100644 --- a/lang/julia/distinfo +++ b/lang/julia/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1534346870 -SHA256 (julia-1.0.0-full.tar.gz) = 1a2497977b1d43bb821a5b7475b4054b29938baae8170881c6b8dd4099d133f1 -SIZE (julia-1.0.0-full.tar.gz) = 95652014 +TIMESTAMP = 1538562963 +SHA256 (julia-1.0.1-full.tar.gz) = 874e6e67dedc6b0dfed7faba9963abf1fa8086bd13a4457c05203ab0b78ebd22 +SIZE (julia-1.0.1-full.tar.gz) = 95655209 diff --git a/lang/julia/files/patch-issue-29016 b/lang/julia/files/patch-issue-29016 deleted file mode 100644 index 419adb2d0f3..00000000000 --- a/lang/julia/files/patch-issue-29016 +++ /dev/null @@ -1,196 +0,0 @@ -diff --git contrib/generate_precompile.jl contrib/generate_precompile.jl -index 6788558275..11e9de09ae 100644 ---- contrib/generate_precompile.jl -+++ contrib/generate_precompile.jl -@@ -8,7 +8,7 @@ if !isdefined(Base, :uv_eventloop) - Base.reinit_stdio() - end - Base.include(@__MODULE__, joinpath(Sys.BINDIR, "..", "share", "julia", "test", "testhelpers", "FakePTYs.jl")) --import .FakePTYs: with_fake_pty -+import .FakePTYs: open_fake_pty - - CTRL_C = '\x03' - UP_ARROW = "\e[A" -@@ -43,6 +43,12 @@ if Pkg !== nothing - precompile_script *= Pkg.precompile_script - end - -+push!(LOAD_PATH, Sys.STDLIB) -+using Sockets -+Sockets.__init__() -+using Libdl -+empty!(LOAD_PATH) -+ - function generate_precompile_statements() - start_time = time() - -@@ -62,82 +68,106 @@ function generate_precompile_statements() - empty!(DEPOT_PATH) - end - -- # Create a staging area where all the loaded packages are available -- PrecompileStagingArea = Module() -- for (_pkgid, _mod) in Base.loaded_modules -- if !(_pkgid.name in ("Main", "Core", "Base")) -- eval(PrecompileStagingArea, :($(Symbol(_mod)) = $_mod)) -+ print("Generating precompile statements...") -+ sysimg = Base.unsafe_string(Base.JLOptions().image_file) -+ mktemp() do precompile_file, _ -+ # Run a repl process and replay our script -+ repl_output_buffer = IOBuffer() -+ @static if Sys.iswindows() -+ # Fake being cygwin -+ pipename = """\\\\?\\pipe\\cygwin-$("0"^16)-pty10-abcdef""" -+ server = listen(pipename) -+ slave = connect(pipename) -+ @assert ccall(:jl_ispty, Cint, (Ptr{Cvoid},), slave.handle) == 1 -+ master = accept(server) -+ else -+ slave, master = open_fake_pty() - end -- end -- -- # TODO: Implement REPL replayer for Windows -- @static if !Sys.iswindows() -- print("Generating precompile statements...") -- sysimg = isempty(ARGS) ? joinpath(dirname(Sys.BINDIR), "lib", "julia", "sys.ji") : ARGS[1] -- -- mktemp() do precompile_file, _ -- # Run a repl process and replay our script -- stdout_accumulator, stderr_accumulator = IOBuffer(), IOBuffer() -- with_fake_pty() do slave, master -- with_fake_pty() do slave_err, master_err -- done = false -- withenv("JULIA_HISTORY" => tempname(), "JULIA_PROJECT" => nothing, -- "TERM" => "") do -- p = run(`$(julia_cmd()) -O0 --trace-compile=$precompile_file --sysimage $sysimg -- --startup-file=no --color=yes`, -- slave, slave, slave_err; wait=false) -- readuntil(master, "julia>", keep=true) -- for (tty, accumulator) in (master => stdout_accumulator, -- master_err => stderr_accumulator) -- @async begin -- while true -- done && break -- write(accumulator, readavailable(tty)) -- end -- end -- end -- if have_repl -- for l in split(precompile_script, '\n'; keepempty=false) -- write(master, l, '\n') -- end -+ done = false -+ withenv("JULIA_HISTORY" => tempname(), "JULIA_PROJECT" => nothing, -+ "TERM" => "") do -+ if have_repl -+ p = run(`$(julia_cmd()) -O0 --trace-compile=$precompile_file --sysimage $sysimg -+ --compile=all --startup-file=no --color=yes`, -+ slave, slave, slave; wait=false) -+ readuntil(master, "julia>", keep=true) -+ t = @async begin -+ while true -+ sleep(0.5) -+ s = String(readavailable(master)) -+ write(repl_output_buffer, s) -+ if occursin("__PRECOMPILE_END__", s) -+ break - end -- write(master, "exit()\n") -- wait(p) -- done = true - end - end -+ if have_repl -+ for l in split(precompile_script, '\n'; keepempty=false) -+ write(master, l, '\n') -+ end -+ end -+ write(master, "print(\"__PRECOMPILE\", \"_END__\")", '\n') -+ wait(t) -+ -+ # TODO Figure out why exit() on Windows doesn't exit the process -+ if Sys.iswindows() -+ print(master, "ccall(:_exit, Cvoid, (Cint,), 0)\n") -+ else -+ write(master, "exit()\n") -+ readuntil(master, "exit()\r\e[13C\r\n") -+ @assert bytesavailable(master) == 0 -+ end -+ wait(p) -+ else -+ # Is this even needed or is this already recorded just from starting this process? -+ p = run(`$(julia_cmd()) -O0 --trace-compile=$precompile_file --sysimage $sysimg -+ --compile=all --startup-file=no -+ -e0`) - end -+ end -+ close(master) - -- # Check what the REPL displayed -- # stdout_output = String(take!(stdout_accumulator)) -- # println(stdout_output) -+ # Check what the REPL displayed -+ # repl_output = String(take!(repl_output_buffer)) -+ # println(repl_output) - -- # Extract the precompile statements from stderr -- statements = Set{String}() -- for statement in split(read(precompile_file, String), '\n') -- occursin("Main.", statement) && continue -- push!(statements, statement) -- end -+ # Extract the precompile statements from stderr -+ statements = Set{String}() -+ for statement in split(read(precompile_file, String), '\n') -+ occursin("Main.", statement) && continue -+ push!(statements, statement) -+ end - -- # Load the precompile statements -- statements_ordered = join(sort(collect(statements)), '\n') -- # println(statements_ordered) -- if have_repl -- # Seems like a reasonable number right now, adjust as needed -- @assert length(statements) > 700 -+ if have_repl -+ # Seems like a reasonable number right now, adjust as needed -+ # comment out if debugging script -+ @assert length(statements) > 700 -+ end -+ -+ # Create a staging area where all the loaded packages are available -+ PrecompileStagingArea = Module() -+ for (_pkgid, _mod) in Base.loaded_modules -+ if !(_pkgid.name in ("Main", "Core", "Base")) -+ eval(PrecompileStagingArea, :($(Symbol(_mod)) = $_mod)) - end -+ end - -- Base.include_string(PrecompileStagingArea, statements_ordered) -- print(" $(length(statements)) generated in ") -- Base.time_print((time() - start_time) * 10^9) -- println() -+ # Execute the collected precompile statements -+ include_time = @elapsed for statement in sort(collect(statements)) -+ # println(statement) -+ try -+ Base.include_string(PrecompileStagingArea, statement) -+ catch ex -+ @error "Failed to precompile $statement" -+ rethrow(ex) -+ end - end -+ print(" $(length(statements)) generated in ") -+ tot_time = time() - start_time -+ Base.time_print(tot_time * 10^9) -+ print(" (overhead "); Base.time_print((tot_time - include_time) * 10^9); println(")") - end - -- # Fall back to explicit list on Windows, might as well include them -- # for everyone though -- Base.include(PrecompileStagingArea, "precompile_explicit.jl") -- - return - end - diff --git a/lang/julia/pkg-plist b/lang/julia/pkg-plist index 63589388548..71ee5a16534 100644 --- a/lang/julia/pkg-plist +++ b/lang/julia/pkg-plist @@ -393,6 +393,7 @@ man/man1/julia.1.gz %%DATADIR%%/stdlib/v%%VERSION%%/LinearAlgebra/src/tridiag.jl %%DATADIR%%/stdlib/v%%VERSION%%/LinearAlgebra/src/uniformscaling.jl %%DATADIR%%/stdlib/v%%VERSION%%/LinearAlgebra/test/adjtrans.jl +%%DATADIR%%/stdlib/v%%VERSION%%/LinearAlgebra/test/ambiguous_exec.jl %%DATADIR%%/stdlib/v%%VERSION%%/LinearAlgebra/test/bidiag.jl %%DATADIR%%/stdlib/v%%VERSION%%/LinearAlgebra/test/blas.jl %%DATADIR%%/stdlib/v%%VERSION%%/LinearAlgebra/test/bunchkaufman.jl @@ -487,7 +488,6 @@ man/man1/julia.1.gz %%DATADIR%%/stdlib/v%%VERSION%%/Pkg/src/Resolve.jl %%DATADIR%%/stdlib/v%%VERSION%%/Pkg/src/Types.jl %%DATADIR%%/stdlib/v%%VERSION%%/Pkg/src/generate.jl -%%DATADIR%%/stdlib/v%%VERSION%%/Pkg/src/precompile.jl %%DATADIR%%/stdlib/v%%VERSION%%/Pkg/src/resolve/FieldValues.jl %%DATADIR%%/stdlib/v%%VERSION%%/Pkg/src/resolve/MaxSum.jl %%DATADIR%%/stdlib/v%%VERSION%%/Pkg/src/resolve/VersionWeights.jl diff --git a/lang/p5-Expect/Makefile b/lang/p5-Expect/Makefile index 4b7322cb4ea..24d6ec5f50b 100644 --- a/lang/p5-Expect/Makefile +++ b/lang/p5-Expect/Makefile @@ -12,8 +12,8 @@ COMMENT= Perl module inspired by the Tcl version of Expect LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-IO-Tty>=1.11:devel/p5-IO-Tty -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-IO-Tty>=1.11:devel/p5-IO-Tty NO_ARCH= yes USES= perl5 diff --git a/lang/p5-Interpolation/Makefile b/lang/p5-Interpolation/Makefile index 960c2ef33b2..ef25dfae229 100644 --- a/lang/p5-Interpolation/Makefile +++ b/lang/p5-Interpolation/Makefile @@ -12,8 +12,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Implement arbitrary string interpolation semantics for Perl -BUILD_DEPENDS= p5-HTML-Parser>=0:www/p5-HTML-Parser -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTML-Parser>=0:www/p5-HTML-Parser USES= perl5 USE_PERL5= configure diff --git a/lang/p5-JSAN/Makefile b/lang/p5-JSAN/Makefile index 5054a185978..320eb7ffa88 100644 --- a/lang/p5-JSAN/Makefile +++ b/lang/p5-JSAN/Makefile @@ -12,7 +12,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= JavaScript Archive Network (JSAN) Shell -BUILD_DEPENDS= p5-Class-Accessor>=0:devel/p5-Class-Accessor \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Accessor>=0:devel/p5-Class-Accessor \ p5-Class-DBI-DATA-Schema>=0:databases/p5-Class-DBI-DATA-Schema \ p5-Class-DBI-Loader>=0:databases/p5-Class-DBI-Loader \ p5-Class-DBI-SQLite>=0:databases/p5-Class-DBI-SQLite \ @@ -22,7 +23,6 @@ BUILD_DEPENDS= p5-Class-Accessor>=0:devel/p5-Class-Accessor \ p5-XML-XPath>=0:textproc/p5-XML-XPath \ p5-YAML>=0:textproc/p5-YAML \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/lang/p5-Marpa-PP/Makefile b/lang/p5-Marpa-PP/Makefile index 69bb04e7133..bd8b1716a07 100644 --- a/lang/p5-Marpa-PP/Makefile +++ b/lang/p5-Marpa-PP/Makefile @@ -16,9 +16,9 @@ COMMENT= Pure Perl version of Marpa LICENSE= LGPL3+ LICENSE_FILE= ${WRKSRC}/COPYING.LESSER -BUILD_DEPENDS= p5-PPI>=1.206:textproc/p5-PPI \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-PPI>=1.206:textproc/p5-PPI \ p5-Task-Weaken>=0:devel/p5-Task-Weaken -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Weaken>=3.004000:devel/p5-Test-Weaken NO_ARCH= yes diff --git a/lang/p5-Marpa-XS/Makefile b/lang/p5-Marpa-XS/Makefile index 844d6140d6e..66bcc705f47 100644 --- a/lang/p5-Marpa-XS/Makefile +++ b/lang/p5-Marpa-XS/Makefile @@ -15,11 +15,11 @@ COMMENT= XS version of Marpa LICENSE= LGPL3+ LICENSE_FILE= ${WRKSRC}/COPYING.LESSER -BUILD_DEPENDS= p5-ExtUtils-PkgConfig>=0:devel/p5-ExtUtils-PkgConfig \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-ExtUtils-PkgConfig>=0:devel/p5-ExtUtils-PkgConfig \ p5-Glib2>=1.223:devel/p5-Glib2 \ p5-PPI>=1.206:textproc/p5-PPI \ p5-Task-Weaken>=0:devel/p5-Task-Weaken -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Weaken>=3.004000:devel/p5-Test-Weaken USE_PERL5= modbuild diff --git a/lang/p5-Marpa/Makefile b/lang/p5-Marpa/Makefile index 60f91db126e..1a055a1aaa9 100644 --- a/lang/p5-Marpa/Makefile +++ b/lang/p5-Marpa/Makefile @@ -17,9 +17,9 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-HTML-Parser>=3.64:www/p5-HTML-Parser \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTML-Parser>=3.64:www/p5-HTML-Parser \ p5-PPI>=1.206:textproc/p5-PPI -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USE_PERL5= modbuild diff --git a/lang/p5-Perl6-Subs/Makefile b/lang/p5-Perl6-Subs/Makefile index 42103f1a943..effb1f62784 100644 --- a/lang/p5-Perl6-Subs/Makefile +++ b/lang/p5-Perl6-Subs/Makefile @@ -14,8 +14,8 @@ COMMENT= Perl6::Subs - Define your subroutines in the Perl 6 style LICENSE= LGPL21+ LICENSE_FILE= ${WRKSRC}/COPYING -BUILD_DEPENDS= p5-Parse-RecDescent>=0:devel/p5-Parse-RecDescent -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Parse-RecDescent>=0:devel/p5-Parse-RecDescent USES= perl5 USE_PERL5= configure diff --git a/lang/p5-Quantum-Superpositions/Makefile b/lang/p5-Quantum-Superpositions/Makefile index 5864b399664..b5d695888d0 100644 --- a/lang/p5-Quantum-Superpositions/Makefile +++ b/lang/p5-Quantum-Superpositions/Makefile @@ -13,8 +13,8 @@ COMMENT= QM-like superpositions in Perl LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Class-Multimethods>=0:devel/p5-Class-Multimethods -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Multimethods>=0:devel/p5-Class-Multimethods USES= perl5 USE_PERL5= configure diff --git a/lang/p5-Switch/Makefile b/lang/p5-Switch/Makefile index fcdf17ab2e3..83cb3328d5c 100644 --- a/lang/p5-Switch/Makefile +++ b/lang/p5-Switch/Makefile @@ -15,8 +15,8 @@ COMMENT= Switch - A switch statement for Perl LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Filter>0:devel/p5-Filter -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Filter>0:devel/p5-Filter USES= perl5 USE_PERL5= configure diff --git a/lang/p5-Try-Tiny-Retry/Makefile b/lang/p5-Try-Tiny-Retry/Makefile index da6f56220ba..805ef9bdf37 100644 --- a/lang/p5-Try-Tiny-Retry/Makefile +++ b/lang/p5-Try-Tiny-Retry/Makefile @@ -12,8 +12,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Extends Try::Tiny to allow retries -BUILD_DEPENDS= p5-Try-Tiny>0:lang/p5-Try-Tiny -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Try-Tiny>0:lang/p5-Try-Tiny USES= perl5 USE_PERL5= configure diff --git a/lang/p5-signatures/Makefile b/lang/p5-signatures/Makefile index 60550f3f72f..7ef03357634 100644 --- a/lang/p5-signatures/Makefile +++ b/lang/p5-signatures/Makefile @@ -13,12 +13,12 @@ COMMENT= Subroutine signatures for Perl with no source filter LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-B-Hooks-EndOfScope>=0.08:devel/p5-B-Hooks-EndOfScope \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-B-Hooks-EndOfScope>=0.08:devel/p5-B-Hooks-EndOfScope \ p5-B-Hooks-OP-Check>=0.17:devel/p5-B-Hooks-OP-Check \ p5-B-Hooks-OP-PPAddr>=0.03:devel/p5-B-Hooks-OP-PPAddr \ p5-B-Hooks-Parser>=0.15:devel/p5-B-Hooks-Parser \ p5-ExtUtils-Depends>=0.302:devel/p5-ExtUtils-Depends -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/mail/Makefile b/mail/Makefile index aca7e4fb587..ecc1ef59c2e 100644 --- a/mail/Makefile +++ b/mail/Makefile @@ -261,7 +261,6 @@ SUBDIR += mu4e-maildirs SUBDIR += mulberry SUBDIR += mutt - SUBDIR += mutt-lite SUBDIR += mutt_vc_query SUBDIR += muttils SUBDIR += nbsmtp diff --git a/mail/claws-mail/Makefile b/mail/claws-mail/Makefile index bee2b91c6ae..f1e65e95232 100644 --- a/mail/claws-mail/Makefile +++ b/mail/claws-mail/Makefile @@ -18,7 +18,7 @@ LIB_DEPENDS= libcurl.so:ftp/curl \ RUN_DEPENDS= mime-support>0:misc/mime-support USES= compiler:c++11-lang cpe desktop-file-utils gnome pathfix \ - python:2.7,run shebangfix ssl + python:2.7 shebangfix ssl USE_XORG= ice sm USE_GNOME= cairo gtk20 librsvg2 SHEBANG_FILES= tools/*.pl tools/*.py tools/tb2claws-mail diff --git a/mail/msmtp/Makefile b/mail/msmtp/Makefile index 7a81436178a..0b32369d595 100644 --- a/mail/msmtp/Makefile +++ b/mail/msmtp/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= msmtp -PORTVERSION= 1.6.8 +PORTVERSION= 1.8.0 CATEGORIES= mail ipv6 MASTER_SITES= https://marlam.de/msmtp/releases/ @@ -17,22 +17,24 @@ CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib INFO= msmtp -OPTIONS_DEFINE= DOCS GSASL NLS IDN LIBSECRET MSMTPQ +OPTIONS_DEFINE= DOCS GSASL NLS IDN LIBSECRET MSMTPD MSMTPQ OPTIONS_RADIO= TLS OPTIONS_RADIO_TLS= GNUTLS OPENSSL -OPTIONS_DEFAULT= MSMTPQ OPENSSL +OPTIONS_DEFAULT= GNUTLS MSMTPD MSMTPQ OPTIONS_SUB= yes GSASL_DESC= GSASL support LIBSECRET_DESC= GNOME password management +MSMTPD_DESC= Include minimal SMTP server that pipes mails to msmtp MSMTPQ_DESC= Install offline messaging scripts GSASL_CONFIGURE_WITH= libgsasl GSASL_LIB_DEPENDS= libgsasl.so:security/gsasl IDN_CONFIGURE_WITH= libidn -IDN_LIB_DEPENDS= libidn.so:dns/libidn +IDN_LIB_DEPENDS= libidn2.so:dns/libidn2 LIBSECRET_CONFIGURE_WITH= libsecret LIBSECRET_LIB_DEPENDS= libsecret-1.so:security/libsecret +MSMTPD_CONFIGURE_WITH= msmtpd MSMTPQ_PORTDOCS= README.msmtpq MSMTPQ_RUN_DEPENDS= bash:shells/bash NLS_CONFIGURE_ENABLE= nls diff --git a/mail/msmtp/distinfo b/mail/msmtp/distinfo index ae6c1174978..0b42cd39007 100644 --- a/mail/msmtp/distinfo +++ b/mail/msmtp/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1530293115 -SHA256 (msmtp-1.6.8.tar.xz) = 55ff95a304d888b56d07d9c62327ab9bfe26532c9c2a2ed6aefc43bea1b659fb -SIZE (msmtp-1.6.8.tar.xz) = 294872 +TIMESTAMP = 1538831806 +SHA256 (msmtp-1.8.0.tar.xz) = bd730cbf000d1b8382849ea21d569a387e63f936be00dc07c569f67915e53ccd +SIZE (msmtp-1.8.0.tar.xz) = 302680 diff --git a/mail/msmtp/pkg-plist b/mail/msmtp/pkg-plist index eb96f695de2..2ce888b9cc8 100644 --- a/mail/msmtp/pkg-plist +++ b/mail/msmtp/pkg-plist @@ -1,5 +1,7 @@ bin/msmtp +%%MSMTPD%%bin/msmtpd man/man1/msmtp.1.gz +%%MSMTPD%%man/man1/msmtpd.1.gz %%MSMTPQ%%bin/msmtp-queue %%MSMTPQ%%bin/msmtpq %%NLS%%share/locale/de/LC_MESSAGES/msmtp.mo diff --git a/mail/mutt-lite/Makefile b/mail/mutt-lite/Makefile deleted file mode 100644 index 55cf710d3ba..00000000000 --- a/mail/mutt-lite/Makefile +++ /dev/null @@ -1,15 +0,0 @@ -# Created by: Udo Schweigert -# $FreeBSD$ - -# Just to get a mutt-devel-lite pkg on pkg cluster -MASTERDIR= ${.CURDIR}/../mutt - -DEPRECATED= For a lite version of mutt build mail/mutt with less (or zero) options -EXPIRATION_DATE= 2018-10-01 -COMMENT= The Mongrel of Mail User Agents (development version, lite package) - -CONFLICTS= ja-mutt-[0-9]* ja-mutt-devel-[0-9]* mutt-[0-9]* mutt-devel-[0-9]* mutt-lite-1.4* zh-mutt-devel-[0-9]* - -MUTT_LITE= yes - -.include "${MASTERDIR}/Makefile" diff --git a/mail/p5-Dancer-Plugin-Email/Makefile b/mail/p5-Dancer-Plugin-Email/Makefile index c3ecaba259a..45b8518d989 100644 --- a/mail/p5-Dancer-Plugin-Email/Makefile +++ b/mail/p5-Dancer-Plugin-Email/Makefile @@ -12,12 +12,12 @@ COMMENT= Simple email handling for Dancer applications LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Dancer>=0:www/p5-Dancer \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Dancer>=0:www/p5-Dancer \ p5-Email-Date-Format>=0:mail/p5-Email-Date-Format \ p5-Email-Sender>=0:mail/p5-Email-Sender \ p5-File-Type>=0:devel/p5-File-Type \ p5-MIME-Tools>=0:mail/p5-MIME-Tools -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USE_PERL5= configure diff --git a/mail/p5-Dancer2-Plugin-Email/Makefile b/mail/p5-Dancer2-Plugin-Email/Makefile index 1ad9aae2632..e8147ac79af 100644 --- a/mail/p5-Dancer2-Plugin-Email/Makefile +++ b/mail/p5-Dancer2-Plugin-Email/Makefile @@ -13,14 +13,14 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Dancer2>=0.200000:www/p5-Dancer2 \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Dancer2>=0.200000:www/p5-Dancer2 \ p5-Email-Date-Format>=0:mail/p5-Email-Date-Format \ p5-Email-Sender>=0:mail/p5-Email-Sender \ p5-File-Type>=0:devel/p5-File-Type \ p5-IO-Socket-SSL>=2.000:security/p5-IO-Socket-SSL \ p5-MIME-Tools>=0:mail/p5-MIME-Tools \ p5-Module-Runtime>=0:devel/p5-Module-Runtime -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-HTTP-Message>=0:www/p5-HTTP-Message \ p5-Plack>=1.0029:www/p5-Plack diff --git a/mail/p5-Email-Address-List/Makefile b/mail/p5-Email-Address-List/Makefile index 15b89907f00..d9cfcb2ad61 100644 --- a/mail/p5-Email-Address-List/Makefile +++ b/mail/p5-Email-Address-List/Makefile @@ -12,8 +12,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= matthew@FreeBSD.org COMMENT= RFC-close address list parsing -BUILD_DEPENDS= p5-Email-Address>0:mail/p5-Email-Address -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Email-Address>0:mail/p5-Email-Address NO_ARCH= yes diff --git a/mail/p5-Email-Date/Makefile b/mail/p5-Email-Date/Makefile index 676c9282f22..331dcf28b97 100644 --- a/mail/p5-Email-Date/Makefile +++ b/mail/p5-Email-Date/Makefile @@ -14,11 +14,11 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Email-Abstract>=2.10:mail/p5-Email-Abstract \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Email-Abstract>=2.10:mail/p5-Email-Abstract \ p5-Email-Date-Format>=1:mail/p5-Email-Date-Format \ p5-Email-Simple>=1.9:mail/p5-Email-Simple \ p5-TimeDate>=1.16:devel/p5-TimeDate -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/mail/p5-Email-Delete/Makefile b/mail/p5-Email-Delete/Makefile index 195bcbf96d3..0cfbef78151 100644 --- a/mail/p5-Email-Delete/Makefile +++ b/mail/p5-Email-Delete/Makefile @@ -14,11 +14,11 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Email-Folder>=0:mail/p5-Email-Folder \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Email-Folder>=0:mail/p5-Email-Folder \ p5-Email-FolderType>=0:mail/p5-Email-FolderType \ p5-Email-LocalDelivery>=0:mail/p5-Email-LocalDelivery \ p5-Email-Simple>=0:mail/p5-Email-Simple -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/mail/p5-Email-Filter/Makefile b/mail/p5-Email-Filter/Makefile index 4f37c1bb5ca..4155d206623 100644 --- a/mail/p5-Email-Filter/Makefile +++ b/mail/p5-Email-Filter/Makefile @@ -14,11 +14,11 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Class-Trigger>=0:devel/p5-Class-Trigger \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Trigger>=0:devel/p5-Class-Trigger \ p5-Email-LocalDelivery>=0:mail/p5-Email-LocalDelivery \ p5-Email-Simple>=0:mail/p5-Email-Simple \ p5-IPC-Run>=0:devel/p5-IPC-Run -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/mail/p5-Email-Find/Makefile b/mail/p5-Email-Find/Makefile index 5dd2b8c0b32..dbd3a30d56f 100644 --- a/mail/p5-Email-Find/Makefile +++ b/mail/p5-Email-Find/Makefile @@ -14,8 +14,8 @@ COMMENT= Find RFC 822 email addresses in plain text LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Email-Valid>=0:mail/p5-Email-Valid -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Email-Valid>=0:mail/p5-Email-Valid USES= perl5 USE_PERL5= configure diff --git a/mail/p5-Email-Folder-IMAP/Makefile b/mail/p5-Email-Folder-IMAP/Makefile index d970335f45b..91628dabdb9 100644 --- a/mail/p5-Email-Folder-IMAP/Makefile +++ b/mail/p5-Email-Folder-IMAP/Makefile @@ -14,12 +14,12 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Email-Folder>=0:mail/p5-Email-Folder \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Email-Folder>=0:mail/p5-Email-Folder \ p5-Email-FolderType-Net>=0:mail/p5-Email-FolderType-Net \ p5-Net-IMAP-Simple>=0.95:mail/p5-Net-IMAP-Simple \ p5-URI>=0:net/p5-URI \ p5-URI-imap>=0:mail/p5-URI-imap -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/mail/p5-Email-Folder-IMAPS/Makefile b/mail/p5-Email-Folder-IMAPS/Makefile index 2a41fa07629..4580253df86 100644 --- a/mail/p5-Email-Folder-IMAPS/Makefile +++ b/mail/p5-Email-Folder-IMAPS/Makefile @@ -14,11 +14,11 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Email-Folder-IMAP>=1.102:mail/p5-Email-Folder-IMAP \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Email-Folder-IMAP>=1.102:mail/p5-Email-Folder-IMAP \ p5-Net-IMAP-Simple-SSL>=1.3:mail/p5-Net-IMAP-Simple-SSL \ p5-URI-imap>=0:mail/p5-URI-imap \ p5-URI-imaps>=0:mail/p5-URI-imaps -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/mail/p5-Email-Folder-POP3/Makefile b/mail/p5-Email-Folder-POP3/Makefile index 8291bbc3b0d..1f6ee5d2d10 100644 --- a/mail/p5-Email-Folder-POP3/Makefile +++ b/mail/p5-Email-Folder-POP3/Makefile @@ -14,10 +14,10 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Email-Folder>=0:mail/p5-Email-Folder \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Email-Folder>=0:mail/p5-Email-Folder \ p5-Email-FolderType-Net>=0:mail/p5-Email-FolderType-Net \ p5-URI>=0:net/p5-URI -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/mail/p5-Email-Folder/Makefile b/mail/p5-Email-Folder/Makefile index bee1297ee64..db6955d156e 100644 --- a/mail/p5-Email-Folder/Makefile +++ b/mail/p5-Email-Folder/Makefile @@ -14,9 +14,9 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Email-FolderType>=0.600:mail/p5-Email-FolderType \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Email-FolderType>=0.600:mail/p5-Email-FolderType \ p5-Email-Simple>=0:mail/p5-Email-Simple -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/mail/p5-Email-FolderType-Net/Makefile b/mail/p5-Email-FolderType-Net/Makefile index 21e962b7868..071c421df41 100644 --- a/mail/p5-Email-FolderType-Net/Makefile +++ b/mail/p5-Email-FolderType-Net/Makefile @@ -14,9 +14,9 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Email-FolderType>=0.800:mail/p5-Email-FolderType \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Email-FolderType>=0.800:mail/p5-Email-FolderType \ p5-URI>=1.35:net/p5-URI -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/mail/p5-Email-FolderType/Makefile b/mail/p5-Email-FolderType/Makefile index 28fb776b06c..a843c6b531d 100644 --- a/mail/p5-Email-FolderType/Makefile +++ b/mail/p5-Email-FolderType/Makefile @@ -14,8 +14,8 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Module-Pluggable>0:devel/p5-Module-Pluggable -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Module-Pluggable>0:devel/p5-Module-Pluggable TEST_DEPENDS= p5-Capture-Tiny>0:devel/p5-Capture-Tiny NO_ARCH= yes diff --git a/mail/p5-Email-LocalDelivery-Ezmlm/Makefile b/mail/p5-Email-LocalDelivery-Ezmlm/Makefile index 97f7c4d6264..e0b0f73c60e 100644 --- a/mail/p5-Email-LocalDelivery-Ezmlm/Makefile +++ b/mail/p5-Email-LocalDelivery-Ezmlm/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Deliver mail into ezmlm archives -BUILD_DEPENDS= p5-Email-LocalDelivery>=0:mail/p5-Email-LocalDelivery \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Email-LocalDelivery>=0:mail/p5-Email-LocalDelivery \ p5-Email-FolderType>=0:mail/p5-Email-FolderType -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/mail/p5-Email-MIME-Attachment-Stripper/Makefile b/mail/p5-Email-MIME-Attachment-Stripper/Makefile index d7adaafed80..1954049a253 100644 --- a/mail/p5-Email-MIME-Attachment-Stripper/Makefile +++ b/mail/p5-Email-MIME-Attachment-Stripper/Makefile @@ -14,9 +14,9 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Email-MIME>=1.861:mail/p5-Email-MIME \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Email-MIME>=1.861:mail/p5-Email-MIME \ p5-Email-MIME-ContentType>=1.016:mail/p5-Email-MIME-ContentType -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/mail/p5-Email-MIME-CreateHTML/Makefile b/mail/p5-Email-MIME-CreateHTML/Makefile index 2cd585768fe..49960aec119 100644 --- a/mail/p5-Email-MIME-CreateHTML/Makefile +++ b/mail/p5-Email-MIME-CreateHTML/Makefile @@ -13,7 +13,8 @@ COMMENT= Multipart HTML Email builder LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING -BUILD_DEPENDS= p5-Data-Serializer>=0:devel/p5-Data-Serializer \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Data-Serializer>=0:devel/p5-Data-Serializer \ p5-Email-MIME>=0:mail/p5-Email-MIME \ p5-File-Policy>=0:devel/p5-File-Policy \ p5-HTML-Tagset>=0:www/p5-HTML-Tagset \ @@ -22,7 +23,6 @@ BUILD_DEPENDS= p5-Data-Serializer>=0:devel/p5-Data-Serializer \ p5-MIME-Types>=2.17:mail/p5-MIME-Types \ p5-URI>=0:net/p5-URI \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Email-Address>=0:mail/p5-Email-Address \ p5-Email-Send>=0:mail/p5-Email-Send \ p5-File-Slurp>=0:devel/p5-File-Slurp \ diff --git a/mail/p5-Email-MIME/Makefile b/mail/p5-Email-MIME/Makefile index 8b14d8da66e..dc67e6922c1 100644 --- a/mail/p5-Email-MIME/Makefile +++ b/mail/p5-Email-MIME/Makefile @@ -13,14 +13,14 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Email-Address-XS>=0:mail/p5-Email-Address-XS \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Email-Address-XS>=0:mail/p5-Email-Address-XS \ p5-Email-MIME-ContentType>=1.022:mail/p5-Email-MIME-ContentType \ p5-Email-MIME-Encodings>=1.314:mail/p5-Email-MIME-Encodings \ p5-Email-MessageID>=0:mail/p5-Email-MessageID \ p5-Email-Simple>=2.212:mail/p5-Email-Simple \ p5-MIME-Types>=1.13:mail/p5-MIME-Types \ p5-Module-Runtime>=0:devel/p5-Module-Runtime -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/mail/p5-Email-Reply/Makefile b/mail/p5-Email-Reply/Makefile index 3f456717ad7..d7e78260624 100644 --- a/mail/p5-Email-Reply/Makefile +++ b/mail/p5-Email-Reply/Makefile @@ -13,10 +13,10 @@ COMMENT= Email::Reply - Reply to a Message LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Email-Abstract>=2.01:mail/p5-Email-Abstract \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Email-Abstract>=2.01:mail/p5-Email-Abstract \ p5-Email-Address>=1.800:mail/p5-Email-Address \ p5-Email-MIME>=1.82:mail/p5-Email-MIME -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Capture-Tiny>=0:devel/p5-Capture-Tiny USES= perl5 diff --git a/mail/p5-Email-Send/Makefile b/mail/p5-Email-Send/Makefile index f9e9505c094..e68c9077995 100644 --- a/mail/p5-Email-Send/Makefile +++ b/mail/p5-Email-Send/Makefile @@ -11,12 +11,12 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Email::Send - Simply Sending Email -BUILD_DEPENDS= p5-Class-Accessor>=0.19:devel/p5-Class-Accessor \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Accessor>=0.19:devel/p5-Class-Accessor \ p5-Email-Address>=1.800:mail/p5-Email-Address \ p5-Email-Simple>=1.92:mail/p5-Email-Simple \ p5-Return-Value>=1.28:devel/p5-Return-Value \ p5-UNIVERSAL-require>=0:devel/p5-UNIVERSAL-require -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/mail/p5-Email-Sender/Makefile b/mail/p5-Email-Sender/Makefile index 01438b124c1..c15c007e6ca 100644 --- a/mail/p5-Email-Sender/Makefile +++ b/mail/p5-Email-Sender/Makefile @@ -14,7 +14,8 @@ COMMENT= Library for sending email LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Email-Abstract>=3.006:mail/p5-Email-Abstract \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Email-Abstract>=3.006:mail/p5-Email-Abstract \ p5-Email-Address>=0:mail/p5-Email-Address \ p5-Email-Simple>=1.998:mail/p5-Email-Simple \ p5-List-MoreUtils>=0:lang/p5-List-MoreUtils \ @@ -24,7 +25,6 @@ BUILD_DEPENDS= p5-Email-Abstract>=3.006:mail/p5-Email-Abstract \ p5-Sub-Exporter>=0:devel/p5-Sub-Exporter \ p5-Throwable>=0.200003:devel/p5-Throwable \ p5-Try-Tiny>=0:lang/p5-Try-Tiny -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Capture-Tiny>=0.08:devel/p5-Capture-Tiny NO_ARCH= yes diff --git a/mail/p5-Email-Simple-FromHandle/Makefile b/mail/p5-Email-Simple-FromHandle/Makefile index addf7f404dc..e647b070363 100644 --- a/mail/p5-Email-Simple-FromHandle/Makefile +++ b/mail/p5-Email-Simple-FromHandle/Makefile @@ -14,10 +14,10 @@ COMMENT= Perl library for making email objects from a filehandle LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Email-Simple>=0:mail/p5-Email-Simple \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Email-Simple>=0:mail/p5-Email-Simple \ p5-IO-String>=0:devel/p5-IO-String -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/mail/p5-Email-Simple/Makefile b/mail/p5-Email-Simple/Makefile index 25cc72b6ad9..0e097b5022b 100644 --- a/mail/p5-Email-Simple/Makefile +++ b/mail/p5-Email-Simple/Makefile @@ -14,8 +14,8 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Email-Date-Format>=0:mail/p5-Email-Date-Format -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Email-Date-Format>=0:mail/p5-Email-Date-Format USES= perl5 USE_PERL5= configure diff --git a/mail/p5-Email-Stuffer/Makefile b/mail/p5-Email-Stuffer/Makefile index c6d5713ee98..bd489e6e8ad 100644 --- a/mail/p5-Email-Stuffer/Makefile +++ b/mail/p5-Email-Stuffer/Makefile @@ -10,11 +10,11 @@ PKGNAMEPREFIX= p5- MAINTAINER= zi@FreeBSD.org COMMENT= More casual approach to creating and sending Email -BUILD_DEPENDS= p5-Params-Util>=0.23:devel/p5-Params-Util \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Params-Util>=0.23:devel/p5-Params-Util \ p5-File-Type>=0.22:devel/p5-File-Type \ p5-Email-MIME>=1.901:mail/p5-Email-MIME \ p5-Email-Sender>=0:mail/p5-Email-Sender -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/mail/p5-Email-Valid-Loose/Makefile b/mail/p5-Email-Valid-Loose/Makefile index 3cec5a6fd2e..a1ef40e5720 100644 --- a/mail/p5-Email-Valid-Loose/Makefile +++ b/mail/p5-Email-Valid-Loose/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= kuriyama@FreeBSD.org COMMENT= Variation of Email::Valid which allows dot before at mark -BUILD_DEPENDS= p5-Email-Valid>=0:mail/p5-Email-Valid -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Email-Valid>=0:mail/p5-Email-Valid USES= perl5 USE_PERL5= configure diff --git a/mail/p5-GMail-IMAPD/Makefile b/mail/p5-GMail-IMAPD/Makefile index 7a5eca1c737..59092413ee6 100644 --- a/mail/p5-GMail-IMAPD/Makefile +++ b/mail/p5-GMail-IMAPD/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= mashtizadeh@gmail.com COMMENT= Perl IMAP4 gateway to Google's webmail service -BUILD_DEPENDS= p5-Mail-Webmail-Gmail>=0:mail/p5-Mail-Webmail-Gmail -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Mail-Webmail-Gmail>=0:mail/p5-Mail-Webmail-Gmail USES= perl5 USE_PERL5= configure diff --git a/mail/p5-LMAP-CID2SPF/Makefile b/mail/p5-LMAP-CID2SPF/Makefile index bbba42e14b3..0cb7b6ce048 100644 --- a/mail/p5-LMAP-CID2SPF/Makefile +++ b/mail/p5-LMAP-CID2SPF/Makefile @@ -14,8 +14,8 @@ COMMENT= Module to convert between Microsoft's Caller-ID and SPF #' LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-XML-Parser>=0:textproc/p5-XML-Parser -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-XML-Parser>=0:textproc/p5-XML-Parser USES= perl5 shebangfix USE_PERL5= configure diff --git a/mail/p5-MIME-EncWords/Makefile b/mail/p5-MIME-EncWords/Makefile index c735c588d4c..902503a86df 100644 --- a/mail/p5-MIME-EncWords/Makefile +++ b/mail/p5-MIME-EncWords/Makefile @@ -13,8 +13,8 @@ COMMENT= Deal with RFC 2047 encoded words (improved) LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-MIME-Charset>=1.010.1:mail/p5-MIME-Charset -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-MIME-Charset>=1.010.1:mail/p5-MIME-Charset USES= perl5 USE_PERL5= configure diff --git a/mail/p5-MIME-Tools/Makefile b/mail/p5-MIME-Tools/Makefile index 418b2604f44..a776ce2ae9d 100644 --- a/mail/p5-MIME-Tools/Makefile +++ b/mail/p5-MIME-Tools/Makefile @@ -16,9 +16,9 @@ COMMENT= Set of perl5 modules for MIME LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Convert-BinHex>=0:converters/p5-Convert-BinHex \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Convert-BinHex>=0:converters/p5-Convert-BinHex \ p5-Mail-Tools>=1.05:mail/p5-Mail-Tools -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Deep>=0:devel/p5-Test-Deep NO_ARCH= yes diff --git a/mail/p5-Mail-Address-MobileJp/Makefile b/mail/p5-Mail-Address-MobileJp/Makefile index b5fd33598b5..5c7c6ec3485 100644 --- a/mail/p5-Mail-Address-MobileJp/Makefile +++ b/mail/p5-Mail-Address-MobileJp/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Utility to detect an e-mail is mobile one or not -BUILD_DEPENDS= p5-Mail-Tools>=0:mail/p5-Mail-Tools -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Mail-Tools>=0:mail/p5-Mail-Tools USES= perl5 USE_PERL5= configure diff --git a/mail/p5-Mail-Audit/Makefile b/mail/p5-Mail-Audit/Makefile index 0fd4d788027..21d7f0fc3e0 100644 --- a/mail/p5-Mail-Audit/Makefile +++ b/mail/p5-Mail-Audit/Makefile @@ -14,11 +14,11 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-File-HomeDir>=0.61:devel/p5-File-HomeDir \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-File-HomeDir>=0.61:devel/p5-File-HomeDir \ p5-File-Tempdir>=0:devel/p5-File-Tempdir \ p5-MIME-Tools>=0:mail/p5-MIME-Tools \ p5-Mail-Tools>=0:mail/p5-Mail-Tools -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Mail-POP3Client>=0:mail/p5-Mail-POP3Client \ p5-Parse-RecDescent>=0:devel/p5-Parse-RecDescent diff --git a/mail/p5-Mail-Box-IMAP4-SSL/Makefile b/mail/p5-Mail-Box-IMAP4-SSL/Makefile index 51edae96468..56a42f8f627 100644 --- a/mail/p5-Mail-Box-IMAP4-SSL/Makefile +++ b/mail/p5-Mail-Box-IMAP4-SSL/Makefile @@ -11,10 +11,10 @@ COMMENT= Missing part of Mail::Box::IMAP4 LICENSE= APACHE20 -BUILD_DEPENDS= p5-Mail-Box>=0:mail/p5-Mail-Box \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Mail-Box>=0:mail/p5-Mail-Box \ p5-superclass>=0.003:devel/p5-superclass \ p5-IO-Socket-SSL>=0:security/p5-IO-Socket-SSL -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Probe-Perl>=0:sysutils/p5-Probe-Perl \ p5-Proc-Background>=1.08:devel/p5-Proc-Background diff --git a/mail/p5-Mail-Box-Parser-C/Makefile b/mail/p5-Mail-Box-Parser-C/Makefile index 3c3e2554aee..db5679cbf7a 100644 --- a/mail/p5-Mail-Box-Parser-C/Makefile +++ b/mail/p5-Mail-Box-Parser-C/Makefile @@ -13,8 +13,8 @@ COMMENT= Parsing folders for Mail::Box with C routines LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Mail-Box>=0:mail/p5-Mail-Box -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Mail-Box>=0:mail/p5-Mail-Box USES= perl5 USE_PERL5= configure diff --git a/mail/p5-Mail-CheckUser/Makefile b/mail/p5-Mail-CheckUser/Makefile index a2ab14902cc..8b88e4ffa0f 100644 --- a/mail/p5-Mail-CheckUser/Makefile +++ b/mail/p5-Mail-CheckUser/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= bra@fsn.hu COMMENT= Perl module to check email addresses for validity -BUILD_DEPENDS= p5-Net-DNS>=0:dns/p5-Net-DNS -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Net-DNS>=0:dns/p5-Net-DNS USES= perl5 USE_PERL5= configure diff --git a/mail/p5-Mail-ClamAV/Makefile b/mail/p5-Mail-ClamAV/Makefile index 5f16a854168..947c2a629b0 100644 --- a/mail/p5-Mail-ClamAV/Makefile +++ b/mail/p5-Mail-ClamAV/Makefile @@ -14,10 +14,10 @@ COMMENT= Perl extension for the clamav virus scanner LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Inline>=0:devel/p5-Inline \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Inline>=0:devel/p5-Inline \ p5-Inline-C>=0:devel/p5-Inline-C \ clamscan:security/clamav -RUN_DEPENDS:= ${BUILD_DEPENDS} MAKE_JOBS_UNSAFE= yes USES= perl5 diff --git a/mail/p5-Mail-DKIM/Makefile b/mail/p5-Mail-DKIM/Makefile index 4fc1575d268..bbcce9c9ee4 100644 --- a/mail/p5-Mail-DKIM/Makefile +++ b/mail/p5-Mail-DKIM/Makefile @@ -14,11 +14,11 @@ COMMENT= Perl5 module to process and/or create DKIM email LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Crypt-OpenSSL-RSA>=0:security/p5-Crypt-OpenSSL-RSA \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Crypt-OpenSSL-RSA>=0:security/p5-Crypt-OpenSSL-RSA \ p5-Mail-Tools>=0:mail/p5-Mail-Tools \ p5-Net-DNS>=0:dns/p5-Net-DNS \ p5-Net-DNS-Resolver-Mock>=0:dns/p5-Net-DNS-Resolver-Mock -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-RequiresInternet>=0:devel/p5-Test-RequiresInternet \ p5-YAML-LibYAML>=0:textproc/p5-YAML-LibYAML diff --git a/mail/p5-Mail-DMARC/Makefile b/mail/p5-Mail-DMARC/Makefile index 1d495c00d37..a1da3748612 100644 --- a/mail/p5-Mail-DMARC/Makefile +++ b/mail/p5-Mail-DMARC/Makefile @@ -12,7 +12,8 @@ COMMENT= Perl5 module to process and/or create DKIM email LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Crypt-OpenSSL-RSA>=0:security/p5-Crypt-OpenSSL-RSA \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Crypt-OpenSSL-RSA>=0:security/p5-Crypt-OpenSSL-RSA \ p5-Regexp-Common>=0:textproc/p5-Regexp-Common \ p5-Config-Tiny>=0:devel/p5-Config-Tiny \ p5-File-ShareDir-Install>=0:devel/p5-File-ShareDir-Install \ @@ -38,7 +39,6 @@ BUILD_DEPENDS= p5-Crypt-OpenSSL-RSA>=0:security/p5-Crypt-OpenSSL-RSA \ p5-Net-DNS>=0:dns/p5-Net-DNS \ p5-Net-IDN-Encode>=0:textproc/p5-Net-IDN-Encode -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 shebangfix USE_PERL5= configure diff --git a/mail/p5-Mail-DeliveryStatus-BounceParser/Makefile b/mail/p5-Mail-DeliveryStatus-BounceParser/Makefile index 59c67f03e02..996ebcee2b9 100644 --- a/mail/p5-Mail-DeliveryStatus-BounceParser/Makefile +++ b/mail/p5-Mail-DeliveryStatus-BounceParser/Makefile @@ -14,9 +14,9 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-MIME-Tools>=5.418:mail/p5-MIME-Tools \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-MIME-Tools>=5.418:mail/p5-MIME-Tools \ p5-Mail-Tools>=2.04:mail/p5-Mail-Tools -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/mail/p5-Mail-Ezmlm/Makefile b/mail/p5-Mail-Ezmlm/Makefile index ab42aa652ec..433765cb006 100644 --- a/mail/p5-Mail-Ezmlm/Makefile +++ b/mail/p5-Mail-Ezmlm/Makefile @@ -15,9 +15,9 @@ COMMENT= Perl module to allow object methods for ezmlm-idx mailing lists LICENSE= BSD3CLAUSE GPLv2 GPLv3 LICENSE_COMB= dual -BUILD_DEPENDS= ${EZMLM_DIR}/bin/ezmlm-idx:mail/ezmlm-idx \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= ${EZMLM_DIR}/bin/ezmlm-idx:mail/ezmlm-idx \ p5-Crypt-GPG>=0:security/p5-Crypt-GPG -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/mail/p5-Mail-Field-Received/Makefile b/mail/p5-Mail-Field-Received/Makefile index 0c1d42f9f13..6309749b4ab 100644 --- a/mail/p5-Mail-Field-Received/Makefile +++ b/mail/p5-Mail-Field-Received/Makefile @@ -14,8 +14,8 @@ COMMENT= Perl5 modules for parsing of `Received' headers in e-mails LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Mail-Tools>0:mail/p5-Mail-Tools -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Mail-Tools>0:mail/p5-Mail-Tools TEST_DEPENDS= p5-Test-Differences>0:devel/p5-Test-Differences diff --git a/mail/p5-Mail-FilterXML/Makefile b/mail/p5-Mail-FilterXML/Makefile index 7006a66a0ce..8a4c161a3c8 100644 --- a/mail/p5-Mail-FilterXML/Makefile +++ b/mail/p5-Mail-FilterXML/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Perl module that allows writing mail filter rules in XML -BUILD_DEPENDS= p5-Mail-Audit>=0:mail/p5-Mail-Audit \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Mail-Audit>=0:mail/p5-Mail-Audit \ p5-XML-Parser>=0:textproc/p5-XML-Parser -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 shebangfix SHEBANG_FILES= mailfilter.pl diff --git a/mail/p5-Mail-Folder/Makefile b/mail/p5-Mail-Folder/Makefile index 9476ae4f67d..41069661f1b 100644 --- a/mail/p5-Mail-Folder/Makefile +++ b/mail/p5-Mail-Folder/Makefile @@ -12,11 +12,11 @@ DISTNAME= MailFolder-${PORTVERSION} MAINTAINER= perl@FreeBSD.org COMMENT= Perl module for a folder-independant interface to email folders -BUILD_DEPENDS= p5-Mail-Tools>=0:mail/p5-Mail-Tools \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Mail-Tools>=0:mail/p5-Mail-Tools \ p5-TimeDate>=0:devel/p5-TimeDate \ p5-File-Sync>=0:devel/p5-File-Sync \ p5-MIME-Tools>=0:mail/p5-MIME-Tools -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/mail/p5-Mail-Freshmeat/Makefile b/mail/p5-Mail-Freshmeat/Makefile index 69acdf7c7c2..7f77c039204 100644 --- a/mail/p5-Mail-Freshmeat/Makefile +++ b/mail/p5-Mail-Freshmeat/Makefile @@ -15,8 +15,8 @@ COMMENT= Perl module to parse daily newsletters from freshmeat.net LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Mail-Tools>=0:mail/p5-Mail-Tools -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Mail-Tools>=0:mail/p5-Mail-Tools USES= perl5 USE_PERL5= configure diff --git a/mail/p5-Mail-GnuPG/Makefile b/mail/p5-Mail-GnuPG/Makefile index 9339a12880a..406a7b397db 100644 --- a/mail/p5-Mail-GnuPG/Makefile +++ b/mail/p5-Mail-GnuPG/Makefile @@ -10,10 +10,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Perl5 interface to process and/or create PGP email -BUILD_DEPENDS= p5-GnuPG-Interface>=0:security/p5-GnuPG-Interface \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-GnuPG-Interface>=0:security/p5-GnuPG-Interface \ p5-MIME-Tools>=0:mail/p5-MIME-Tools \ p5-Mail-Tools>=0:mail/p5-Mail-Tools -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/mail/p5-Mail-IMAPTalk/Makefile b/mail/p5-Mail-IMAPTalk/Makefile index 303169199d4..cf7f5dd65da 100644 --- a/mail/p5-Mail-IMAPTalk/Makefile +++ b/mail/p5-Mail-IMAPTalk/Makefile @@ -14,9 +14,9 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Authen-SASL>=0:security/p5-Authen-SASL \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Authen-SASL>=0:security/p5-Authen-SASL \ p5-Encode-IMAPUTF7>=0:converters/p5-Encode-IMAPUTF7 -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/mail/p5-Mail-MailStats/Makefile b/mail/p5-Mail-MailStats/Makefile index f6a6aad6529..59c2d5949ac 100644 --- a/mail/p5-Mail-MailStats/Makefile +++ b/mail/p5-Mail-MailStats/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Perl module to detect newer messages in procmail-generated mailboxes -BUILD_DEPENDS= p5-AppConfig>=0:devel/p5-AppConfig -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-AppConfig>=0:devel/p5-AppConfig USES= perl5 USE_PERL5= configure diff --git a/mail/p5-Mail-MboxParser/Makefile b/mail/p5-Mail-MboxParser/Makefile index e506cdaab22..4b30ee59445 100644 --- a/mail/p5-Mail-MboxParser/Makefile +++ b/mail/p5-Mail-MboxParser/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= demon@FreeBSD.org COMMENT= Module for working with UNIX-flavoured mailboxes -BUILD_DEPENDS= p5-MIME-Tools>=0:mail/p5-MIME-Tools \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-MIME-Tools>=0:mail/p5-MIME-Tools \ p5-Mail-Mbox-MessageParser>=0:mail/p5-Mail-Mbox-MessageParser -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/mail/p5-Mail-OpenRelay-Simple/Makefile b/mail/p5-Mail-OpenRelay-Simple/Makefile index 2fe0165d078..50fb1cdb640 100644 --- a/mail/p5-Mail-OpenRelay-Simple/Makefile +++ b/mail/p5-Mail-OpenRelay-Simple/Makefile @@ -13,9 +13,9 @@ COMMENT= Check if a mail server runs as an open relay LICENSE= ART10 -BUILD_DEPENDS= p5-Class-Accessor>=0.25:devel/p5-Class-Accessor \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Accessor>=0.25:devel/p5-Class-Accessor \ p5-Net-Telnet>=3.03:net/p5-Net-Telnet -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/mail/p5-Mail-RBL/Makefile b/mail/p5-Mail-RBL/Makefile index 2a7cab301be..71b4eb6013f 100644 --- a/mail/p5-Mail-RBL/Makefile +++ b/mail/p5-Mail-RBL/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Perl extension to access RBL-style host verification services -BUILD_DEPENDS= p5-Net-DNS>=0:dns/p5-Net-DNS \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Net-DNS>=0:dns/p5-Net-DNS \ p5-NetAddr-IP>0:net-mgmt/p5-NetAddr-IP -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/mail/p5-Mail-SPF/Makefile b/mail/p5-Mail-SPF/Makefile index 091cc8b8dc2..723fa9a6260 100644 --- a/mail/p5-Mail-SPF/Makefile +++ b/mail/p5-Mail-SPF/Makefile @@ -15,12 +15,12 @@ COMMENT= Object-oriented implementation of Sender Policy Framework LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Error>=0:lang/p5-Error \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Error>=0:lang/p5-Error \ p5-Net-DNS>=0.62:dns/p5-Net-DNS \ p5-Net-DNS-Resolver-Programmable>=0.003:dns/p5-Net-DNS-Resolver-Programmable \ p5-NetAddr-IP>=4:net-mgmt/p5-NetAddr-IP \ p5-URI>=1.13:net/p5-URI -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Pod>=1:devel/p5-Test-Pod CONFIGURE_ARGS= --install_path sbin=${PREFIX}/sbin diff --git a/mail/p5-Mail-SRS/Makefile b/mail/p5-Mail-SRS/Makefile index 3e8c76a36e9..5ac78d9ad55 100644 --- a/mail/p5-Mail-SRS/Makefile +++ b/mail/p5-Mail-SRS/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Sender Rewriting Scheme -BUILD_DEPENDS= p5-Digest-HMAC>=0:security/p5-Digest-HMAC \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Digest-HMAC>=0:security/p5-Digest-HMAC \ p5-MLDBM>=0:databases/p5-MLDBM -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/mail/p5-Mail-Spool/Makefile b/mail/p5-Mail-Spool/Makefile index 333cae93013..aeb2badc99a 100644 --- a/mail/p5-Mail-Spool/Makefile +++ b/mail/p5-Mail-Spool/Makefile @@ -11,10 +11,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Pure Perl implementation of mail spooling, unspooling, and sending -BUILD_DEPENDS= p5-File-NFSLock>=0:devel/p5-File-NFSLock \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-File-NFSLock>=0:devel/p5-File-NFSLock \ p5-Mail-Tools>=0:mail/p5-Mail-Tools \ p5-Net-DNS>=0:dns/p5-Net-DNS -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/mail/p5-Mail-Transport-Dbx/Makefile b/mail/p5-Mail-Transport-Dbx/Makefile index f5d3b21b6b0..b7f9941ecac 100644 --- a/mail/p5-Mail-Transport-Dbx/Makefile +++ b/mail/p5-Mail-Transport-Dbx/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Mail::Transport::Dbx - Parse Outlook Express mailboxes -#BUILD_DEPENDS= p5-ExtUtils-Constant>0:devel/p5-ExtUtils-Constant -#RUN_DEPENDS:= ${BUILD_DEPENDS} +#BUILD_DEPENDS= ${RUN_DEPENDS} +#RUN_DEPENDS= p5-ExtUtils-Constant>0:devel/p5-ExtUtils-Constant USES= perl5 USE_PERL5= configure diff --git a/mail/p5-Mail-Verify/Makefile b/mail/p5-Mail-Verify/Makefile index e49cf3d5c17..bc76f6bba00 100644 --- a/mail/p5-Mail-Verify/Makefile +++ b/mail/p5-Mail-Verify/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Perl module to verify email addresses -BUILD_DEPENDS= p5-Net-DNS>=0:dns/p5-Net-DNS -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Net-DNS>=0:dns/p5-Net-DNS USES= perl5 USE_PERL5= configure diff --git a/mail/p5-Mail-Webmail-Gmail/Makefile b/mail/p5-Mail-Webmail-Gmail/Makefile index b1600dab916..2956355e647 100644 --- a/mail/p5-Mail-Webmail-Gmail/Makefile +++ b/mail/p5-Mail-Webmail-Gmail/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Perl interface to Google webmail service -BUILD_DEPENDS= p5-libwww>=0:www/p5-libwww \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-libwww>=0:www/p5-libwww \ p5-Crypt-SSLeay>=0:security/p5-Crypt-SSLeay -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/mail/p5-Net-IMAP-Client/Makefile b/mail/p5-Net-IMAP-Client/Makefile index 9c1395fa0ec..5c082668f2d 100644 --- a/mail/p5-Net-IMAP-Client/Makefile +++ b/mail/p5-Net-IMAP-Client/Makefile @@ -14,9 +14,9 @@ COMMENT= Not so simple IMAP client library LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-IO-Socket-SSL>=0:security/p5-IO-Socket-SSL \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-IO-Socket-SSL>=0:security/p5-IO-Socket-SSL \ p5-List-MoreUtils>=0:lang/p5-List-MoreUtils -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/mail/p5-Net-IMAP-Server/Makefile b/mail/p5-Net-IMAP-Server/Makefile index 4bd243c5a3b..ccee5cf12cb 100644 --- a/mail/p5-Net-IMAP-Server/Makefile +++ b/mail/p5-Net-IMAP-Server/Makefile @@ -13,7 +13,8 @@ COMMENT= Single-threaded multiplexing IMAP server implementation LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-AnyEvent>0:devel/p5-AnyEvent \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-AnyEvent>0:devel/p5-AnyEvent \ p5-Class-Accessor>0:devel/p5-Class-Accessor \ p5-Coro>0:devel/p5-Coro \ p5-DateTime>0:devel/p5-DateTime \ @@ -27,7 +28,6 @@ BUILD_DEPENDS= p5-AnyEvent>0:devel/p5-AnyEvent \ p5-Net-Server-Coro>=0.6:net/p5-Net-Server-Coro \ p5-Regexp-Common>0:textproc/p5-Regexp-Common \ p5-UNIVERSAL-require>0:devel/p5-UNIVERSAL-require -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-IO-Socket-SSL>0:security/p5-IO-Socket-SSL NO_ARCH= yes diff --git a/mail/p5-Net-IMAP-Simple-SSL/Makefile b/mail/p5-Net-IMAP-Simple-SSL/Makefile index 283b5b7947e..b8c5f13e96d 100644 --- a/mail/p5-Net-IMAP-Simple-SSL/Makefile +++ b/mail/p5-Net-IMAP-Simple-SSL/Makefile @@ -14,9 +14,9 @@ COMMENT= SSL support for Net::IMAP::Simple LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-IO-Socket-SSL>=0:security/p5-IO-Socket-SSL \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-IO-Socket-SSL>=0:security/p5-IO-Socket-SSL \ p5-Net-IMAP-Simple>=0:mail/p5-Net-IMAP-Simple -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/mail/p5-Net-IMAP-Simple/Makefile b/mail/p5-Net-IMAP-Simple/Makefile index 906f3348179..c3b98a6b067 100644 --- a/mail/p5-Net-IMAP-Simple/Makefile +++ b/mail/p5-Net-IMAP-Simple/Makefile @@ -13,10 +13,10 @@ COMMENT= Perl extension for simple IMAP account handling LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-IO-Socket-SSL>0:security/p5-IO-Socket-SSL \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-IO-Socket-SSL>0:security/p5-IO-Socket-SSL \ p5-Net-SSLeay>=0:security/p5-Net-SSLeay \ p5-Parse-RecDescent>=0:devel/p5-Parse-RecDescent -RUN_DEPENDS:= ${BUILD_DEPENDS} PORTSCOUT= skipv:1.20271 diff --git a/mail/p5-Net-ManageSieve/Makefile b/mail/p5-Net-ManageSieve/Makefile index 813c9fc3f49..a03b7089baf 100644 --- a/mail/p5-Net-ManageSieve/Makefile +++ b/mail/p5-Net-ManageSieve/Makefile @@ -13,8 +13,8 @@ COMMENT= ManageSieve Protocol Client LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Authen-SASL>=0:security/p5-Authen-SASL -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Authen-SASL>=0:security/p5-Authen-SASL NO_ARCH= yes USES= perl5 diff --git a/mail/p5-Net-SMTP-Server/Makefile b/mail/p5-Net-SMTP-Server/Makefile index 3f30adc03fa..c438a430448 100644 --- a/mail/p5-Net-SMTP-Server/Makefile +++ b/mail/p5-Net-SMTP-Server/Makefile @@ -15,8 +15,8 @@ COMMENT= Native Perl SMTP Server LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Net-DNS>=0:dns/p5-Net-DNS -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Net-DNS>=0:dns/p5-Net-DNS USES= perl5 USE_PERL5= configure diff --git a/mail/p5-Net-SMTP-TLS/Makefile b/mail/p5-Net-SMTP-TLS/Makefile index bd253c4431e..4d1184ebdea 100644 --- a/mail/p5-Net-SMTP-TLS/Makefile +++ b/mail/p5-Net-SMTP-TLS/Makefile @@ -14,10 +14,10 @@ COMMENT= SMTP client supporting TLS and AUTH LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Digest-HMAC>=0:security/p5-Digest-HMAC \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Digest-HMAC>=0:security/p5-Digest-HMAC \ p5-IO-Socket-SSL>=0:security/p5-IO-Socket-SSL \ p5-Net-SSLeay>=0:security/p5-Net-SSLeay -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USE_PERL5= configure diff --git a/mail/p5-POE-Component-Client-POP3/Makefile b/mail/p5-POE-Component-Client-POP3/Makefile index 4d55e142296..acd6fc4e0d6 100644 --- a/mail/p5-POE-Component-Client-POP3/Makefile +++ b/mail/p5-POE-Component-Client-POP3/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Implement a POP3 client POE component -BUILD_DEPENDS= p5-POE>=0:devel/p5-POE -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-POE>=0:devel/p5-POE USES= perl5 shebangfix SHEBANG_FILES= samples/test.perl samples/term.perl diff --git a/mail/p5-POE-Component-Client-SMTP/Makefile b/mail/p5-POE-Component-Client-SMTP/Makefile index 535fd4373d2..fb47230618a 100644 --- a/mail/p5-POE-Component-Client-SMTP/Makefile +++ b/mail/p5-POE-Component-Client-SMTP/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= SMTP client POE component -BUILD_DEPENDS= p5-POE>=0:devel/p5-POE \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-POE>=0:devel/p5-POE \ p5-POE-Filter-Transparent-SMTP>=0:mail/p5-POE-Filter-Transparent-SMTP -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= modbuild diff --git a/mail/p5-POE-Component-SMTP/Makefile b/mail/p5-POE-Component-SMTP/Makefile index 58269ec531c..893cceceefe 100644 --- a/mail/p5-POE-Component-SMTP/Makefile +++ b/mail/p5-POE-Component-SMTP/Makefile @@ -14,10 +14,10 @@ COMMENT= SMTP Protocol Implementation LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-POE>=0:devel/p5-POE \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-POE>=0:devel/p5-POE \ p5-POE-Session-MultiDispatch>=0:devel/p5-POE-Session-MultiDispatch \ p5-Mail-Tools>=0:mail/p5-Mail-Tools -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/mail/p5-POE-Filter-Transparent-SMTP/Makefile b/mail/p5-POE-Filter-Transparent-SMTP/Makefile index 096599e1596..2635640d3da 100644 --- a/mail/p5-POE-Filter-Transparent-SMTP/Makefile +++ b/mail/p5-POE-Filter-Transparent-SMTP/Makefile @@ -12,8 +12,8 @@ DISTNAME= ${PORTNAME}-${PORTVERSION:C/0+$//} MAINTAINER= perl@FreeBSD.org COMMENT= SMTP transparency POE filter -BUILD_DEPENDS= p5-POE>=0:devel/p5-POE -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-POE>=0:devel/p5-POE USES= perl5 USE_PERL5= configure diff --git a/mail/p5-Parse-Syslog-Mail/Makefile b/mail/p5-Parse-Syslog-Mail/Makefile index 5d233ac4428..d0fcee05d45 100644 --- a/mail/p5-Parse-Syslog-Mail/Makefile +++ b/mail/p5-Parse-Syslog-Mail/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Parse log messages generated by various MTAs -BUILD_DEPENDS= p5-Parse-Syslog>=0:textproc/p5-Parse-Syslog -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Parse-Syslog>=0:textproc/p5-Parse-Syslog USES= perl5 USE_PERL5= configure diff --git a/mail/p5-Sendmail-AccessDB/Makefile b/mail/p5-Sendmail-AccessDB/Makefile index ac3294a84fc..62d7c2f59dd 100644 --- a/mail/p5-Sendmail-AccessDB/Makefile +++ b/mail/p5-Sendmail-AccessDB/Makefile @@ -10,8 +10,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= ehaupt@FreeBSD.org COMMENT= Perl5 interface to the Sendmail access.db list -BUILD_DEPENDS= p5-BerkeleyDB>=0:databases/p5-BerkeleyDB -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-BerkeleyDB>=0:databases/p5-BerkeleyDB USES= perl5 USE_PERL5= configure diff --git a/mail/p5-Test-Email/Makefile b/mail/p5-Test-Email/Makefile index b57b3a8d744..8f46b3e3ccb 100644 --- a/mail/p5-Test-Email/Makefile +++ b/mail/p5-Test-Email/Makefile @@ -12,11 +12,11 @@ PKGNAMEPREFIX= p5- MAINTAINER= matthew@FreeBSD.org COMMENT= Test Email Contents -BUILD_DEPENDS= p5-Mail-POP3Client>=2:mail/p5-Mail-POP3Client \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Mail-POP3Client>=2:mail/p5-Mail-POP3Client \ p5-Mail-Sendmail>=0.79:mail/p5-Mail-Sendmail \ p5-MIME-Tools>=5.4:mail/p5-MIME-Tools \ p5-Test-Simple>=0.7:devel/p5-Test-Simple -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes diff --git a/mail/p5-URI-imap/Makefile b/mail/p5-URI-imap/Makefile index 9ee2c729376..fde8634904e 100644 --- a/mail/p5-URI-imap/Makefile +++ b/mail/p5-URI-imap/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= URI::imap - Support IMAP URI -BUILD_DEPENDS= p5-URI>=0:net/p5-URI -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-URI>=0:net/p5-URI USES= perl5 USE_PERL5= configure diff --git a/mail/p5-URI-imaps/Makefile b/mail/p5-URI-imaps/Makefile index 554fc442db6..e61089bd3ed 100644 --- a/mail/p5-URI-imaps/Makefile +++ b/mail/p5-URI-imaps/Makefile @@ -14,8 +14,8 @@ COMMENT= Support IMAPS URI LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-URI>=0:net/p5-URI -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-URI>=0:net/p5-URI NO_ARCH= yes USES= perl5 diff --git a/mail/p5-WWW-GMail/Makefile b/mail/p5-WWW-GMail/Makefile index 8945a88eb14..cdb51886c28 100644 --- a/mail/p5-WWW-GMail/Makefile +++ b/mail/p5-WWW-GMail/Makefile @@ -15,9 +15,9 @@ COMMENT= This module simplifies access to gmail LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-libwww>=0:www/p5-libwww \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-libwww>=0:www/p5-libwww \ p5-URI>=0:net/p5-URI -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/mail/p5-WWW-Hotmail/Makefile b/mail/p5-WWW-Hotmail/Makefile index fd8f6b50c72..9f186e3dc05 100644 --- a/mail/p5-WWW-Hotmail/Makefile +++ b/mail/p5-WWW-Hotmail/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= skreuzer@FreeBSD.org COMMENT= This module simplifies access to hotmail -BUILD_DEPENDS= p5-WWW-Mechanize>=0:www/p5-WWW-Mechanize \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-WWW-Mechanize>=0:www/p5-WWW-Mechanize \ p5-Mail-Audit>=0:mail/p5-Mail-Audit -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/mail/p5-qpsmtpd/Makefile b/mail/p5-qpsmtpd/Makefile index c50346a003a..f0138269730 100644 --- a/mail/p5-qpsmtpd/Makefile +++ b/mail/p5-qpsmtpd/Makefile @@ -11,11 +11,11 @@ PKGNAMEPREFIX= p5- MAINTAINER= noc-ports@biglist.com COMMENT= Flexible SMTP daemon written in Perl and featuring a plugin API -BUILD_DEPENDS= spamd:mail/spamassassin \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= spamd:mail/spamassassin \ p5-Mail-Tools>=0:mail/p5-Mail-Tools \ p5-Net-DNS>=0.39:dns/p5-Net-DNS \ p5-Net-IP>=0:net-mgmt/p5-Net-IP -RUN_DEPENDS:= ${BUILD_DEPENDS} OPTIONS_DEFINE= MODPERL DOCS EXAMPLES OPTIONS_DEFAULT=MODPERL diff --git a/mail/phplist/Makefile b/mail/phplist/Makefile index f3b6fe36103..f58f22e7d97 100644 --- a/mail/phplist/Makefile +++ b/mail/phplist/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= phplist -PORTVERSION= 3.3.1 +PORTVERSION= 3.3.4 CATEGORIES= mail www MASTER_SITES= SF @@ -21,7 +21,7 @@ NO_ARCH= yes PEARDIR?= ${LOCALBASE}/share/pear -PORTDOCS= CONTRIBUTING.md COPYING INSTALL PEOPLE README.md TODO UPGRADE VERSION +PORTDOCS= CONTRIBUTING.md COPYING INSTALL PEOPLE README.md TESTING.md TODO UPGRADE VERSION OPTIONS_DEFINE= DOCS SUB_FILES= phplist @@ -35,6 +35,7 @@ post-extract: do-install: @${FIND} ${WRKSRC}/public_html/ -type f -regex '.*[^!-~].*' -delete @${FIND} ${WRKSRC}/public_html/ -type l -delete + @${FIND} ${WRKSRC}/public_html/ -type d -empty -delete ${MKDIR} ${STAGEDIR}${WWWDIR}/ (cd ${WRKSRC}/public_html/ && ${COPYTREE_SHARE} . ${STAGEDIR}${WWWDIR}) ${INSTALL_SCRIPT} ${WRKDIR}/phplist ${STAGEDIR}${PREFIX}/bin diff --git a/mail/phplist/distinfo b/mail/phplist/distinfo index 441ef42436d..7bc9d8fa1a8 100644 --- a/mail/phplist/distinfo +++ b/mail/phplist/distinfo @@ -1,3 +1,3 @@ TIMESTAMP = 1487150232 -SHA256 (phplist-3.3.1.tgz) = d22b43eab6ead43a44167dce6eb54cb08501534ec27bd6400257314b9c8474fa -SIZE (phplist-3.3.1.tgz) = 13801723 +SHA256 (phplist-3.3.4.tgz) = 086772ff396d53fc400820cc4666219cf117245185f9f61347ad175035727cde +SIZE (phplist-3.3.4.tgz) = 13520961 diff --git a/mail/phplist/pkg-plist b/mail/phplist/pkg-plist index 762916c9445..73a53771eb6 100644 --- a/mail/phplist/pkg-plist +++ b/mail/phplist/pkg-plist @@ -4,68 +4,14 @@ bin/phplist %%WWWDIR%%/lists/admin/.gitignore %%WWWDIR%%/lists/admin/.htaccess %%WWWDIR%%/lists/admin/.minceconf -%%WWWDIR%%/lists/admin/EmailSender.php -%%WWWDIR%%/lists/admin/PHPMailer/LICENSE -%%WWWDIR%%/lists/admin/PHPMailer/PHPMailerAutoload.php -%%WWWDIR%%/lists/admin/PHPMailer/VERSION -%%WWWDIR%%/lists/admin/PHPMailer/class.phpmailer.php -%%WWWDIR%%/lists/admin/PHPMailer/class.phpmaileroauth.php -%%WWWDIR%%/lists/admin/PHPMailer/class.phpmaileroauthgoogle.php -%%WWWDIR%%/lists/admin/PHPMailer/class.pop3.php -%%WWWDIR%%/lists/admin/PHPMailer/class.smtp.php -%%WWWDIR%%/lists/admin/PHPMailer/composer.json -%%WWWDIR%%/lists/admin/PHPMailer/language/phpmailer.lang-am.php -%%WWWDIR%%/lists/admin/PHPMailer/language/phpmailer.lang-ar.php -%%WWWDIR%%/lists/admin/PHPMailer/language/phpmailer.lang-az.php -%%WWWDIR%%/lists/admin/PHPMailer/language/phpmailer.lang-be.php -%%WWWDIR%%/lists/admin/PHPMailer/language/phpmailer.lang-bg.php -%%WWWDIR%%/lists/admin/PHPMailer/language/phpmailer.lang-ca.php -%%WWWDIR%%/lists/admin/PHPMailer/language/phpmailer.lang-ch.php -%%WWWDIR%%/lists/admin/PHPMailer/language/phpmailer.lang-cs.php -%%WWWDIR%%/lists/admin/PHPMailer/language/phpmailer.lang-da.php -%%WWWDIR%%/lists/admin/PHPMailer/language/phpmailer.lang-de.php -%%WWWDIR%%/lists/admin/PHPMailer/language/phpmailer.lang-el.php -%%WWWDIR%%/lists/admin/PHPMailer/language/phpmailer.lang-eo.php -%%WWWDIR%%/lists/admin/PHPMailer/language/phpmailer.lang-es.php -%%WWWDIR%%/lists/admin/PHPMailer/language/phpmailer.lang-et.php -%%WWWDIR%%/lists/admin/PHPMailer/language/phpmailer.lang-fa.php -%%WWWDIR%%/lists/admin/PHPMailer/language/phpmailer.lang-fi.php -%%WWWDIR%%/lists/admin/PHPMailer/language/phpmailer.lang-fo.php -%%WWWDIR%%/lists/admin/PHPMailer/language/phpmailer.lang-fr.php -%%WWWDIR%%/lists/admin/PHPMailer/language/phpmailer.lang-gl.php -%%WWWDIR%%/lists/admin/PHPMailer/language/phpmailer.lang-he.php -%%WWWDIR%%/lists/admin/PHPMailer/language/phpmailer.lang-hr.php -%%WWWDIR%%/lists/admin/PHPMailer/language/phpmailer.lang-hu.php -%%WWWDIR%%/lists/admin/PHPMailer/language/phpmailer.lang-id.php -%%WWWDIR%%/lists/admin/PHPMailer/language/phpmailer.lang-it.php -%%WWWDIR%%/lists/admin/PHPMailer/language/phpmailer.lang-ja.php -%%WWWDIR%%/lists/admin/PHPMailer/language/phpmailer.lang-ka.php -%%WWWDIR%%/lists/admin/PHPMailer/language/phpmailer.lang-ko.php -%%WWWDIR%%/lists/admin/PHPMailer/language/phpmailer.lang-lt.php -%%WWWDIR%%/lists/admin/PHPMailer/language/phpmailer.lang-lv.php -%%WWWDIR%%/lists/admin/PHPMailer/language/phpmailer.lang-ms.php -%%WWWDIR%%/lists/admin/PHPMailer/language/phpmailer.lang-nb.php -%%WWWDIR%%/lists/admin/PHPMailer/language/phpmailer.lang-nl.php -%%WWWDIR%%/lists/admin/PHPMailer/language/phpmailer.lang-pl.php -%%WWWDIR%%/lists/admin/PHPMailer/language/phpmailer.lang-pt.php -%%WWWDIR%%/lists/admin/PHPMailer/language/phpmailer.lang-pt_br.php -%%WWWDIR%%/lists/admin/PHPMailer/language/phpmailer.lang-ro.php -%%WWWDIR%%/lists/admin/PHPMailer/language/phpmailer.lang-ru.php -%%WWWDIR%%/lists/admin/PHPMailer/language/phpmailer.lang-sk.php -%%WWWDIR%%/lists/admin/PHPMailer/language/phpmailer.lang-sl.php -%%WWWDIR%%/lists/admin/PHPMailer/language/phpmailer.lang-sr.php -%%WWWDIR%%/lists/admin/PHPMailer/language/phpmailer.lang-sv.php -%%WWWDIR%%/lists/admin/PHPMailer/language/phpmailer.lang-tr.php -%%WWWDIR%%/lists/admin/PHPMailer/language/phpmailer.lang-uk.php -%%WWWDIR%%/lists/admin/PHPMailer/language/phpmailer.lang-vi.php -%%WWWDIR%%/lists/admin/PHPMailer/language/phpmailer.lang-zh.php -%%WWWDIR%%/lists/admin/PHPMailer/language/phpmailer.lang-zh_cn.php %%WWWDIR%%/lists/admin/about.php %%WWWDIR%%/lists/admin/accesscheck.php %%WWWDIR%%/lists/admin/actions/.htaccess %%WWWDIR%%/lists/admin/actions/addemail.php %%WWWDIR%%/lists/admin/actions/addlist.php %%WWWDIR%%/lists/admin/actions/bounce.php +%%WWWDIR%%/lists/admin/actions/bounces.php +%%WWWDIR%%/lists/admin/actions/campaigns.php %%WWWDIR%%/lists/admin/actions/checkurl.php %%WWWDIR%%/lists/admin/actions/configure.php %%WWWDIR%%/lists/admin/actions/domainstats.php @@ -82,16 +28,19 @@ bin/phplist %%WWWDIR%%/lists/admin/actions/listbounces.php %%WWWDIR%%/lists/admin/actions/markread.php %%WWWDIR%%/lists/admin/actions/mclicks.php +%%WWWDIR%%/lists/admin/actions/mergeduplicatelists.php %%WWWDIR%%/lists/admin/actions/msgsent.php %%WWWDIR%%/lists/admin/actions/msgstatus.php %%WWWDIR%%/lists/admin/actions/mviews.php %%WWWDIR%%/lists/admin/actions/plugins.php %%WWWDIR%%/lists/admin/actions/processqueue.php %%WWWDIR%%/lists/admin/actions/reconcileusers.php +%%WWWDIR%%/lists/admin/actions/removeemptylists.php %%WWWDIR%%/lists/admin/actions/searchemail.php %%WWWDIR%%/lists/admin/actions/shownotes.php %%WWWDIR%%/lists/admin/actions/statsoverview.php %%WWWDIR%%/lists/admin/actions/storemessage.php +%%WWWDIR%%/lists/admin/actions/subscription.php %%WWWDIR%%/lists/admin/actions/test.php %%WWWDIR%%/lists/admin/actions/updatetranslation.php %%WWWDIR%%/lists/admin/actions/upgrade.php @@ -140,13 +89,15 @@ bin/phplist %%WWWDIR%%/lists/admin/data/it-regioni.txt %%WWWDIR%%/lists/admin/data/mexico-state.txt %%WWWDIR%%/lists/admin/data/provinces-nl.txt +%%WWWDIR%%/lists/admin/data/subscriberisanadult.txt +%%WWWDIR%%/lists/admin/data/termsofservice.txt %%WWWDIR%%/lists/admin/data/tlds-alpha-by-domain.txt %%WWWDIR%%/lists/admin/data/uk-counties.txt %%WWWDIR%%/lists/admin/data/usa-states.txt %%WWWDIR%%/lists/admin/date.php %%WWWDIR%%/lists/admin/dbcheck.php -%%WWWDIR%%/lists/admin/defaultFrontendTexts.php %%WWWDIR%%/lists/admin/defaultconfig.php +%%WWWDIR%%/lists/admin/defaultFrontendTexts.php %%WWWDIR%%/lists/admin/defaultplugin.php %%WWWDIR%%/lists/admin/defaults.php %%WWWDIR%%/lists/admin/defaultsystemtemplate.php @@ -155,8 +106,10 @@ bin/phplist %%WWWDIR%%/lists/admin/domainstats.php %%WWWDIR%%/lists/admin/editattributes.php %%WWWDIR%%/lists/admin/editlist.php +%%WWWDIR%%/lists/admin/EmailSender.php %%WWWDIR%%/lists/admin/eventlog.php %%WWWDIR%%/lists/admin/export.php +%%WWWDIR%%/lists/admin/exportuserdata.php %%WWWDIR%%/lists/admin/fckphplist.php %%WWWDIR%%/lists/admin/gchart.php %%WWWDIR%%/lists/admin/generatebouncerules.php @@ -174,28 +127,44 @@ bin/phplist %%WWWDIR%%/lists/admin/help/de/sendformat.php %%WWWDIR%%/lists/admin/help/de/subject.php %%WWWDIR%%/lists/admin/help/de/usetemplate.php +%%WWWDIR%%/lists/admin/help/en/allsubscribers.php +%%WWWDIR%%/lists/admin/help/en/assigninvalid.php %%WWWDIR%%/lists/admin/help/en/attachments.php +%%WWWDIR%%/lists/admin/help/en/bounces.php %%WWWDIR%%/lists/admin/help/en/campaigntitle.php %%WWWDIR%%/lists/admin/help/en/embargo.php %%WWWDIR%%/lists/admin/help/en/finishsending.php %%WWWDIR%%/lists/admin/help/en/footer.php %%WWWDIR%%/lists/admin/help/en/format.php +%%WWWDIR%%/lists/admin/help/en/forwards.php %%WWWDIR%%/lists/admin/help/en/from.php %%WWWDIR%%/lists/admin/help/en/generatetext.php %%WWWDIR%%/lists/admin/help/en/googletrack.php %%WWWDIR%%/lists/admin/help/en/istestcampaign.php %%WWWDIR%%/lists/admin/help/en/mergeattributes.php %%WWWDIR%%/lists/admin/help/en/message.php +%%WWWDIR%%/lists/admin/help/en/omitinvalid.php +%%WWWDIR%%/lists/admin/help/en/organisation_logo.php +%%WWWDIR%%/lists/admin/help/en/overwriteexisting.php %%WWWDIR%%/lists/admin/help/en/plaintextversion.php +%%WWWDIR%%/lists/admin/help/en/predefineddefaults.php %%WWWDIR%%/lists/admin/help/en/preparemessage.php +%%WWWDIR%%/lists/admin/help/en/publiclist.php %%WWWDIR%%/lists/admin/help/en/repetition.php %%WWWDIR%%/lists/admin/help/en/requeueing.php %%WWWDIR%%/lists/admin/help/en/resetstats.php +%%WWWDIR%%/lists/admin/help/en/retainoldemail.php %%WWWDIR%%/lists/admin/help/en/sendformat.php %%WWWDIR%%/lists/admin/help/en/sendmethod.php %%WWWDIR%%/lists/admin/help/en/sendtest.php %%WWWDIR%%/lists/admin/help/en/sendurl.php +%%WWWDIR%%/lists/admin/help/en/showwarnings.php %%WWWDIR%%/lists/admin/help/en/subject.php +%%WWWDIR%%/lists/admin/help/en/subscribesubject.php +%%WWWDIR%%/lists/admin/help/en/systemmessage.php +%%WWWDIR%%/lists/admin/help/en/testoutput.php +%%WWWDIR%%/lists/admin/help/en/uniqueclicks.php +%%WWWDIR%%/lists/admin/help/en/uniqueviews.php %%WWWDIR%%/lists/admin/help/en/usetemplate.php %%WWWDIR%%/lists/admin/help/es/attachments.php %%WWWDIR%%/lists/admin/help/es/embargo.php @@ -327,6 +296,7 @@ bin/phplist %%WWWDIR%%/lists/admin/help/pt_BR/sendformat.php %%WWWDIR%%/lists/admin/help/pt_BR/subject.php %%WWWDIR%%/lists/admin/help/pt_BR/usetemplate.php +%%WWWDIR%%/lists/admin/help/README.md %%WWWDIR%%/lists/admin/help/ru/attachments.php %%WWWDIR%%/lists/admin/help/ru/embargo.php %%WWWDIR%%/lists/admin/help/ru/finishsending.php @@ -386,12 +356,12 @@ bin/phplist %%WWWDIR%%/lists/admin/hostedprocessqueuesetup.php %%WWWDIR%%/lists/admin/htaccess %%WWWDIR%%/lists/admin/image.php -%%WWWDIR%%/lists/admin/images/LogoCertifiedHTTPCS.png %%WWWDIR%%/lists/admin/images/busy.gif %%WWWDIR%%/lists/admin/images/collapse.gif %%WWWDIR%%/lists/admin/images/cross.gif %%WWWDIR%%/lists/admin/images/expand.gif %%WWWDIR%%/lists/admin/images/getff.gif +%%WWWDIR%%/lists/admin/images/LogoCertifiedHTTPCS.png %%WWWDIR%%/lists/admin/images/no-image-template.png %%WWWDIR%%/lists/admin/images/paypal.gif %%WWWDIR%%/lists/admin/images/phplist-touch-icon.png @@ -403,10 +373,10 @@ bin/phplist %%WWWDIR%%/lists/admin/images/spacer.png %%WWWDIR%%/lists/admin/images/tabs/bgrightfade.gif %%WWWDIR%%/lists/admin/images/tabs/bgwhite.gif -%%WWWDIR%%/lists/admin/images/tabs/left.gif %%WWWDIR%%/lists/admin/images/tabs/left_on.gif -%%WWWDIR%%/lists/admin/images/tabs/right.gif +%%WWWDIR%%/lists/admin/images/tabs/left.gif %%WWWDIR%%/lists/admin/images/tabs/right_on.gif +%%WWWDIR%%/lists/admin/images/tabs/right.gif %%WWWDIR%%/lists/admin/images/tick.gif %%WWWDIR%%/lists/admin/images/transparent.png %%WWWDIR%%/lists/admin/images/ui-anim_basic_16x16.gif @@ -431,9 +401,6 @@ bin/phplist %%WWWDIR%%/lists/admin/importadmin.php %%WWWDIR%%/lists/admin/importsimple.php %%WWWDIR%%/lists/admin/inc/.htaccess -%%WWWDIR%%/lists/admin/inc/UUID.old..php -%%WWWDIR%%/lists/admin/inc/UUID.php -%%WWWDIR%%/lists/admin/inc/UUID2.php %%WWWDIR%%/lists/admin/inc/accesscheck.php %%WWWDIR%%/lists/admin/inc/importlib.php %%WWWDIR%%/lists/admin/inc/interfacelib.php @@ -444,15 +411,18 @@ bin/phplist %%WWWDIR%%/lists/admin/inc/random_compat/byte_safe_strings.php %%WWWDIR%%/lists/admin/inc/random_compat/cast_to_int.php %%WWWDIR%%/lists/admin/inc/random_compat/error_polyfill.php -%%WWWDIR%%/lists/admin/inc/random_compat/random.php %%WWWDIR%%/lists/admin/inc/random_compat/random_bytes_com_dotnet.php %%WWWDIR%%/lists/admin/inc/random_compat/random_bytes_dev_urandom.php -%%WWWDIR%%/lists/admin/inc/random_compat/random_bytes_libsodium.php %%WWWDIR%%/lists/admin/inc/random_compat/random_bytes_libsodium_legacy.php +%%WWWDIR%%/lists/admin/inc/random_compat/random_bytes_libsodium.php %%WWWDIR%%/lists/admin/inc/random_compat/random_bytes_mcrypt.php %%WWWDIR%%/lists/admin/inc/random_compat/random_int.php +%%WWWDIR%%/lists/admin/inc/random_compat/random.php %%WWWDIR%%/lists/admin/inc/unregister_globals.php %%WWWDIR%%/lists/admin/inc/userlib.php +%%WWWDIR%%/lists/admin/inc/UUID.old..php +%%WWWDIR%%/lists/admin/inc/UUID.php +%%WWWDIR%%/lists/admin/inc/UUID2.php %%WWWDIR%%/lists/admin/index.php %%WWWDIR%%/lists/admin/info/.php_cs %%WWWDIR%%/lists/admin/info/de/adminattributes.php @@ -508,6 +478,7 @@ bin/phplist %%WWWDIR%%/lists/admin/info/en/spage.php %%WWWDIR%%/lists/admin/info/en/spageedit.php %%WWWDIR%%/lists/admin/info/en/statsmgt.php +%%WWWDIR%%/lists/admin/info/en/statsoverview.php %%WWWDIR%%/lists/admin/info/en/suppressionlist.php %%WWWDIR%%/lists/admin/info/en/templates.php %%WWWDIR%%/lists/admin/info/en/updatetranslation.php @@ -789,6 +760,7 @@ bin/phplist %%WWWDIR%%/lists/admin/info/pt_BR/templates.php %%WWWDIR%%/lists/admin/info/pt_BR/usermgt.php %%WWWDIR%%/lists/admin/info/pt_BR/vote.php +%%WWWDIR%%/lists/admin/info/README.md %%WWWDIR%%/lists/admin/info/ru/adminattributes.php %%WWWDIR%%/lists/admin/info/ru/attributes.php %%WWWDIR%%/lists/admin/info/ru/bounces.php @@ -935,6 +907,7 @@ bin/phplist %%WWWDIR%%/lists/admin/initlanguages.php %%WWWDIR%%/lists/admin/js/jquery-1.7.1.min.js %%WWWDIR%%/lists/admin/js/jquery-ui-1.8.1.all.min.js +%%WWWDIR%%/lists/admin/js/jquery.cycle2.min.js %%WWWDIR%%/lists/admin/js/jquery.tools.scrollable.js %%WWWDIR%%/lists/admin/js/phplistapp.js %%WWWDIR%%/lists/admin/languages.php @@ -946,6 +919,7 @@ bin/phplist %%WWWDIR%%/lists/admin/locale/ar/phplist.po %%WWWDIR%%/lists/admin/locale/bg/language_info %%WWWDIR%%/lists/admin/locale/bg/phplist.po +%%WWWDIR%%/lists/admin/locale/bs/phplist.po %%WWWDIR%%/lists/admin/locale/ca/language_info %%WWWDIR%%/lists/admin/locale/ca/phplist.po %%WWWDIR%%/lists/admin/locale/cs/language_info @@ -975,6 +949,7 @@ bin/phplist %%WWWDIR%%/lists/admin/locale/fr/language_info %%WWWDIR%%/lists/admin/locale/fr/pagetitles.php %%WWWDIR%%/lists/admin/locale/fr/phplist.po +%%WWWDIR%%/lists/admin/locale/fr_CA/phplist.po %%WWWDIR%%/lists/admin/locale/gl/language_info %%WWWDIR%%/lists/admin/locale/gl/phplist.po %%WWWDIR%%/lists/admin/locale/he/language_info @@ -1061,15 +1036,73 @@ bin/phplist %%WWWDIR%%/lists/admin/mysqli.inc %%WWWDIR%%/lists/admin/onyxrss/.htaccess %%WWWDIR%%/lists/admin/onyxrss/COPYING +%%WWWDIR%%/lists/admin/onyxrss/onyx-rss.php %%WWWDIR%%/lists/admin/onyxrss/README %%WWWDIR%%/lists/admin/onyxrss/TODO -%%WWWDIR%%/lists/admin/onyxrss/onyx-rss.php %%WWWDIR%%/lists/admin/pageaction.php %%WWWDIR%%/lists/admin/phpListAdminAuthentication.php +%%WWWDIR%%/lists/admin/PHPMailer/class.phpmailer.php +%%WWWDIR%%/lists/admin/PHPMailer/class.phpmaileroauth.php +%%WWWDIR%%/lists/admin/PHPMailer/class.phpmaileroauthgoogle.php +%%WWWDIR%%/lists/admin/PHPMailer/class.pop3.php +%%WWWDIR%%/lists/admin/PHPMailer/class.smtp.php +%%WWWDIR%%/lists/admin/PHPMailer/composer.json +%%WWWDIR%%/lists/admin/PHPMailer/language/phpmailer.lang-am.php +%%WWWDIR%%/lists/admin/PHPMailer/language/phpmailer.lang-ar.php +%%WWWDIR%%/lists/admin/PHPMailer/language/phpmailer.lang-az.php +%%WWWDIR%%/lists/admin/PHPMailer/language/phpmailer.lang-be.php +%%WWWDIR%%/lists/admin/PHPMailer/language/phpmailer.lang-bg.php +%%WWWDIR%%/lists/admin/PHPMailer/language/phpmailer.lang-ca.php +%%WWWDIR%%/lists/admin/PHPMailer/language/phpmailer.lang-ch.php +%%WWWDIR%%/lists/admin/PHPMailer/language/phpmailer.lang-cs.php +%%WWWDIR%%/lists/admin/PHPMailer/language/phpmailer.lang-da.php +%%WWWDIR%%/lists/admin/PHPMailer/language/phpmailer.lang-de.php +%%WWWDIR%%/lists/admin/PHPMailer/language/phpmailer.lang-el.php +%%WWWDIR%%/lists/admin/PHPMailer/language/phpmailer.lang-eo.php +%%WWWDIR%%/lists/admin/PHPMailer/language/phpmailer.lang-es.php +%%WWWDIR%%/lists/admin/PHPMailer/language/phpmailer.lang-et.php +%%WWWDIR%%/lists/admin/PHPMailer/language/phpmailer.lang-fa.php +%%WWWDIR%%/lists/admin/PHPMailer/language/phpmailer.lang-fi.php +%%WWWDIR%%/lists/admin/PHPMailer/language/phpmailer.lang-fo.php +%%WWWDIR%%/lists/admin/PHPMailer/language/phpmailer.lang-fr.php +%%WWWDIR%%/lists/admin/PHPMailer/language/phpmailer.lang-gl.php +%%WWWDIR%%/lists/admin/PHPMailer/language/phpmailer.lang-he.php +%%WWWDIR%%/lists/admin/PHPMailer/language/phpmailer.lang-hr.php +%%WWWDIR%%/lists/admin/PHPMailer/language/phpmailer.lang-hu.php +%%WWWDIR%%/lists/admin/PHPMailer/language/phpmailer.lang-id.php +%%WWWDIR%%/lists/admin/PHPMailer/language/phpmailer.lang-it.php +%%WWWDIR%%/lists/admin/PHPMailer/language/phpmailer.lang-ja.php +%%WWWDIR%%/lists/admin/PHPMailer/language/phpmailer.lang-ka.php +%%WWWDIR%%/lists/admin/PHPMailer/language/phpmailer.lang-ko.php +%%WWWDIR%%/lists/admin/PHPMailer/language/phpmailer.lang-lt.php +%%WWWDIR%%/lists/admin/PHPMailer/language/phpmailer.lang-lv.php +%%WWWDIR%%/lists/admin/PHPMailer/language/phpmailer.lang-ms.php +%%WWWDIR%%/lists/admin/PHPMailer/language/phpmailer.lang-nb.php +%%WWWDIR%%/lists/admin/PHPMailer/language/phpmailer.lang-nl.php +%%WWWDIR%%/lists/admin/PHPMailer/language/phpmailer.lang-pl.php +%%WWWDIR%%/lists/admin/PHPMailer/language/phpmailer.lang-pt_br.php +%%WWWDIR%%/lists/admin/PHPMailer/language/phpmailer.lang-pt.php +%%WWWDIR%%/lists/admin/PHPMailer/language/phpmailer.lang-ro.php +%%WWWDIR%%/lists/admin/PHPMailer/language/phpmailer.lang-ru.php +%%WWWDIR%%/lists/admin/PHPMailer/language/phpmailer.lang-sk.php +%%WWWDIR%%/lists/admin/PHPMailer/language/phpmailer.lang-sl.php +%%WWWDIR%%/lists/admin/PHPMailer/language/phpmailer.lang-sr.php +%%WWWDIR%%/lists/admin/PHPMailer/language/phpmailer.lang-sv.php +%%WWWDIR%%/lists/admin/PHPMailer/language/phpmailer.lang-tr.php +%%WWWDIR%%/lists/admin/PHPMailer/language/phpmailer.lang-uk.php +%%WWWDIR%%/lists/admin/PHPMailer/language/phpmailer.lang-vi.php +%%WWWDIR%%/lists/admin/PHPMailer/language/phpmailer.lang-zh_cn.php +%%WWWDIR%%/lists/admin/PHPMailer/language/phpmailer.lang-zh.php +%%WWWDIR%%/lists/admin/PHPMailer/LICENSE +%%WWWDIR%%/lists/admin/PHPMailer/PHPMailerAutoload.php +%%WWWDIR%%/lists/admin/PHPMailer/VERSION %%WWWDIR%%/lists/admin/pluginlib.php %%WWWDIR%%/lists/admin/plugins/.htaccess +%%WWWDIR%%/lists/admin/plugins/CaptchaPlugin/botbouncer.php +%%WWWDIR%%/lists/admin/plugins/CaptchaPlugin/class_map.php +%%WWWDIR%%/lists/admin/plugins/CaptchaPlugin/version.txt +%%WWWDIR%%/lists/admin/plugins/CaptchaPlugin.php %%WWWDIR%%/lists/admin/plugins/CKEditorPlugin/kcfinder/.htaccess -%%WWWDIR%%/lists/admin/plugins/CKEditorPlugin/kcfinder/README.md %%WWWDIR%%/lists/admin/plugins/CKEditorPlugin/kcfinder/browse.php %%WWWDIR%%/lists/admin/plugins/CKEditorPlugin/kcfinder/cache/.htaccess %%WWWDIR%%/lists/admin/plugins/CKEditorPlugin/kcfinder/cache/base.css @@ -1160,19 +1193,19 @@ bin/phplist %%WWWDIR%%/lists/admin/plugins/CKEditorPlugin/kcfinder/lang/zh-cn.php %%WWWDIR%%/lists/admin/plugins/CKEditorPlugin/kcfinder/lib/.htaccess %%WWWDIR%%/lists/admin/plugins/CKEditorPlugin/kcfinder/lib/class_fastImage.php -%%WWWDIR%%/lists/admin/plugins/CKEditorPlugin/kcfinder/lib/class_image.php %%WWWDIR%%/lists/admin/plugins/CKEditorPlugin/kcfinder/lib/class_image_gd.php %%WWWDIR%%/lists/admin/plugins/CKEditorPlugin/kcfinder/lib/class_image_gmagick.php %%WWWDIR%%/lists/admin/plugins/CKEditorPlugin/kcfinder/lib/class_image_imagick.php +%%WWWDIR%%/lists/admin/plugins/CKEditorPlugin/kcfinder/lib/class_image.php %%WWWDIR%%/lists/admin/plugins/CKEditorPlugin/kcfinder/lib/class_zipFolder.php %%WWWDIR%%/lists/admin/plugins/CKEditorPlugin/kcfinder/lib/helper_dir.php %%WWWDIR%%/lists/admin/plugins/CKEditorPlugin/kcfinder/lib/helper_file.php %%WWWDIR%%/lists/admin/plugins/CKEditorPlugin/kcfinder/lib/helper_httpCache.php %%WWWDIR%%/lists/admin/plugins/CKEditorPlugin/kcfinder/lib/helper_path.php %%WWWDIR%%/lists/admin/plugins/CKEditorPlugin/kcfinder/lib/helper_text.php +%%WWWDIR%%/lists/admin/plugins/CKEditorPlugin/kcfinder/README.md %%WWWDIR%%/lists/admin/plugins/CKEditorPlugin/kcfinder/themes/dark/01.ui.css %%WWWDIR%%/lists/admin/plugins/CKEditorPlugin/kcfinder/themes/dark/02.misc.css -%%WWWDIR%%/lists/admin/plugins/CKEditorPlugin/kcfinder/themes/dark/README %%WWWDIR%%/lists/admin/plugins/CKEditorPlugin/kcfinder/themes/dark/css.php %%WWWDIR%%/lists/admin/plugins/CKEditorPlugin/kcfinder/themes/dark/img/bg_transparent.png %%WWWDIR%%/lists/admin/plugins/CKEditorPlugin/kcfinder/themes/dark/img/files/big/..png @@ -1346,9 +1379,9 @@ bin/phplist %%WWWDIR%%/lists/admin/plugins/CKEditorPlugin/kcfinder/themes/dark/img/ui-icons_white.png %%WWWDIR%%/lists/admin/plugins/CKEditorPlugin/kcfinder/themes/dark/init.js %%WWWDIR%%/lists/admin/plugins/CKEditorPlugin/kcfinder/themes/dark/js.php +%%WWWDIR%%/lists/admin/plugins/CKEditorPlugin/kcfinder/themes/dark/README %%WWWDIR%%/lists/admin/plugins/CKEditorPlugin/kcfinder/themes/default/01.ui.css %%WWWDIR%%/lists/admin/plugins/CKEditorPlugin/kcfinder/themes/default/02.misc.css -%%WWWDIR%%/lists/admin/plugins/CKEditorPlugin/kcfinder/themes/default/README %%WWWDIR%%/lists/admin/plugins/CKEditorPlugin/kcfinder/themes/default/css.php %%WWWDIR%%/lists/admin/plugins/CKEditorPlugin/kcfinder/themes/default/img/bg_transparent.png %%WWWDIR%%/lists/admin/plugins/CKEditorPlugin/kcfinder/themes/default/img/files/big/..png @@ -1521,6 +1554,7 @@ bin/phplist %%WWWDIR%%/lists/admin/plugins/CKEditorPlugin/kcfinder/themes/default/img/ui-icons_white.png %%WWWDIR%%/lists/admin/plugins/CKEditorPlugin/kcfinder/themes/default/init.js %%WWWDIR%%/lists/admin/plugins/CKEditorPlugin/kcfinder/themes/default/js.php +%%WWWDIR%%/lists/admin/plugins/CKEditorPlugin/kcfinder/themes/default/README %%WWWDIR%%/lists/admin/plugins/CKEditorPlugin/kcfinder/tpl/.htaccess %%WWWDIR%%/lists/admin/plugins/CKEditorPlugin/kcfinder/tpl/tpl_browser.php %%WWWDIR%%/lists/admin/plugins/CKEditorPlugin/kcfinder/tpl/tpl_css.php @@ -1529,6 +1563,179 @@ bin/phplist %%WWWDIR%%/lists/admin/plugins/CKEditorPlugin/sample.ckconfig.js %%WWWDIR%%/lists/admin/plugins/CKEditorPlugin/version.txt %%WWWDIR%%/lists/admin/plugins/CKEditorPlugin.php +%%WWWDIR%%/lists/admin/plugins/Common/about.tpl.php +%%WWWDIR%%/lists/admin/plugins/Common/BaseController.php +%%WWWDIR%%/lists/admin/plugins/Common/Config.php +%%WWWDIR%%/lists/admin/plugins/Common/Container.php +%%WWWDIR%%/lists/admin/plugins/Common/Context.php +%%WWWDIR%%/lists/admin/plugins/Common/Controller.php +%%WWWDIR%%/lists/admin/plugins/Common/ControllerFactory.php +%%WWWDIR%%/lists/admin/plugins/Common/ControllerFactoryBase.php +%%WWWDIR%%/lists/admin/plugins/Common/DAO/Attribute.php +%%WWWDIR%%/lists/admin/plugins/Common/DAO/Config.php +%%WWWDIR%%/lists/admin/plugins/Common/DAO/Lists.php +%%WWWDIR%%/lists/admin/plugins/Common/DAO/Message.php +%%WWWDIR%%/lists/admin/plugins/Common/DAO/User.php +%%WWWDIR%%/lists/admin/plugins/Common/DAO.php +%%WWWDIR%%/lists/admin/plugins/Common/DB.php +%%WWWDIR%%/lists/admin/plugins/Common/DBResultIterator.php +%%WWWDIR%%/lists/admin/plugins/Common/depends.php +%%WWWDIR%%/lists/admin/plugins/Common/Exception.php +%%WWWDIR%%/lists/admin/plugins/Common/ExportCSV.php +%%WWWDIR%%/lists/admin/plugins/Common/ExportCSVAsync.php +%%WWWDIR%%/lists/admin/plugins/Common/ExportXML.php +%%WWWDIR%%/lists/admin/plugins/Common/FileServer.php +%%WWWDIR%%/lists/admin/plugins/Common/FrontendTranslator.php +%%WWWDIR%%/lists/admin/plugins/Common/HelpManager.php +%%WWWDIR%%/lists/admin/plugins/Common/helpmanager.tpl.php +%%WWWDIR%%/lists/admin/plugins/Common/HtmlToPdf.php +%%WWWDIR%%/lists/admin/plugins/Common/I18N.php +%%WWWDIR%%/lists/admin/plugins/Common/IChartable.php +%%WWWDIR%%/lists/admin/plugins/Common/IExportable.php +%%WWWDIR%%/lists/admin/plugins/Common/ImageTag.php +%%WWWDIR%%/lists/admin/plugins/Common/IMailClient.php +%%WWWDIR%%/lists/admin/plugins/Common/IPopulator.php +%%WWWDIR%%/lists/admin/plugins/Common/Listing.php +%%WWWDIR%%/lists/admin/plugins/Common/Logger.php +%%WWWDIR%%/lists/admin/plugins/Common/MailSender.php +%%WWWDIR%%/lists/admin/plugins/Common/Main.php +%%WWWDIR%%/lists/admin/plugins/Common/Model.php +%%WWWDIR%%/lists/admin/plugins/Common/PageLink.php +%%WWWDIR%%/lists/admin/plugins/Common/Pager.php +%%WWWDIR%%/lists/admin/plugins/Common/pager.tpl.php +%%WWWDIR%%/lists/admin/plugins/Common/PageURL.php +%%WWWDIR%%/lists/admin/plugins/Common/Paginator.php +%%WWWDIR%%/lists/admin/plugins/Common/Populator.php +%%WWWDIR%%/lists/admin/plugins/Common/StringCallback.php +%%WWWDIR%%/lists/admin/plugins/Common/StringStream.php +%%WWWDIR%%/lists/admin/plugins/Common/Tabs.php +%%WWWDIR%%/lists/admin/plugins/Common/Toolbar.php +%%WWWDIR%%/lists/admin/plugins/Common/toolbar.tpl.php +%%WWWDIR%%/lists/admin/plugins/Common/UniqueLogger.php +%%WWWDIR%%/lists/admin/plugins/Common/WebblerListing.php +%%WWWDIR%%/lists/admin/plugins/Common/widget_attributeform.tpl.php +%%WWWDIR%%/lists/admin/plugins/Common/Widget.php +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/Autoloader.php +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/BaseController.php +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/class_map.php +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/config_file.php +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/Config.php +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/Controller.php +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/ControllerFactory.php +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/ControllerFactoryBase.php +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/DAO/Attribute.php +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/DAO/Config.php +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/DAO/List.php +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/DAO/Message.php +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/DAO/User.php +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/DAO.php +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/DB.php +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/DBResultIterator.php +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/dialog_js.php +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/Exception.php +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/ExportCSV.php +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/ExportXML.php +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/functions.php +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/HelpManager.php +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/HtmlToPdf.php +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/I18N.php +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/IExportable.php +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/image.php +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/images/add.png +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/images/attach.png +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/images/config.png +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/images/delete.png +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/images/doc_pdf.png +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/images/down.png +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/images/email.png +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/images/excel.png +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/images/external.png +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/images/gnu_licence.png +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/images/info.png +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/images/no.png +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/images/page_white_php.png +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/images/pencil.png +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/images/phplist.ico +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/images/star.png +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/images/up.png +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/images/user.png +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/images/yes.png +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/ImageTag.php +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/IPopulator.php +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/lan/de_UTF-8.php +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/lan/en.php +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/lan/es.php +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/lan/fr_UTF-8.php +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/lan/ja.php +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/lan/zh-tw.php +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/licence.txt +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/Listing.php +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/Logger.php +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/Main.php +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/Model.php +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/PageLink.php +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/Pager.php +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/PageURL.php +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/phpinfo.php +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/Populator.php +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/session.php +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/StringStream.php +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/Tabs.php +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/Toolbar.php +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/ui/default/dialog.js +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/ui/dressprow/dialog.js +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/ui/phplist-ui-bootlist/dialog.js +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/vendor/autoload.php +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/vendor/chdemko/bitarray/cite.bib +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/vendor/chdemko/bitarray/README.md +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/vendor/chdemko/bitarray/src/BitArray/BitArray.php +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/vendor/chdemko/bitarray/src/BitArray/Iterator.php +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/vendor/composer/autoload_classmap.php +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/vendor/composer/autoload_namespaces.php +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/vendor/composer/autoload_psr4.php +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/vendor/composer/autoload_real.php +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/vendor/composer/autoload_static.php +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/vendor/composer/ClassLoader.php +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/vendor/composer/installed.json +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/vendor/composer/LICENSE +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/vendor/container-interop/container-interop/LICENSE +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/vendor/container-interop/container-interop/src/Interop/Container/ContainerInterface.php +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/vendor/container-interop/container-interop/src/Interop/Container/Exception/ContainerException.php +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/vendor/container-interop/container-interop/src/Interop/Container/Exception/NotFoundException.php +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/vendor/ext/chart/Chart.php +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/vendor/ext/mikehaertl/WkHtmlToPdf.php +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/vendor/ext/yii/CHtml.php +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/vendor/jasongrimes/paginator/LICENSE +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/vendor/jasongrimes/paginator/src/JasonGrimes/Paginator.php +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/vendor/jdorn/sql-formatter/lib/SqlFormatter.php +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/vendor/jdorn/sql-formatter/LICENSE.txt +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/vendor/jmathai/php-multi-curl/LICENSE +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/vendor/jmathai/php-multi-curl/src/MultiCurl.php +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/vendor/jmathai/php-multi-curl/src/MultiCurlException.php +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/vendor/jmathai/php-multi-curl/src/MultiCurlManager.php +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/vendor/jmathai/php-multi-curl/src/MultiCurlSequence.php +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/vendor/katzgrau/klogger/README.markdown +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/vendor/katzgrau/klogger/src/Logger.php +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/vendor/mouf/picotainer/src/Picotainer.php +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/vendor/mouf/picotainer/src/PicotainerNotFoundException.php +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/vendor/psr/container/LICENSE +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/vendor/psr/container/src/ContainerExceptionInterface.php +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/vendor/psr/container/src/ContainerInterface.php +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/vendor/psr/container/src/NotFoundExceptionInterface.php +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/vendor/psr/log/LICENSE +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/vendor/psr/log/Psr/Log/AbstractLogger.php +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/vendor/psr/log/Psr/Log/InvalidArgumentException.php +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/vendor/psr/log/Psr/Log/LoggerAwareInterface.php +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/vendor/psr/log/Psr/Log/LoggerAwareTrait.php +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/vendor/psr/log/Psr/Log/LoggerInterface.php +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/vendor/psr/log/Psr/Log/LoggerTrait.php +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/vendor/psr/log/Psr/Log/LogLevel.php +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/vendor/psr/log/Psr/Log/NullLogger.php +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/version.txt +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/WebblerListing.php +%%WWWDIR%%/lists/admin/plugins/CommonPlugin/Widget.php +%%WWWDIR%%/lists/admin/plugins/CommonPlugin.php +%%WWWDIR%%/lists/admin/plugins/COPYING.txt %%WWWDIR%%/lists/admin/plugins/fckphplist/apply.sh %%WWWDIR%%/lists/admin/plugins/fckphplist/config.php %%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/_documentation.html @@ -1536,9 +1743,9 @@ bin/phplist %%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/_source/classes/fckdataprocessor.js %%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/_source/classes/fckdocumentfragment_gecko.js %%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/_source/classes/fckdocumentfragment_ie.js -%%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/_source/classes/fckdomrange.js %%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/_source/classes/fckdomrange_gecko.js %%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/_source/classes/fckdomrange_ie.js +%%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/_source/classes/fckdomrange.js %%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/_source/classes/fckdomrangeiterator.js %%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/_source/classes/fckeditingarea.js %%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/_source/classes/fckelementpath.js @@ -1568,9 +1775,9 @@ bin/phplist %%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/_source/classes/fcktoolbarspecialcombo.js %%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/_source/classes/fcktoolbarstylecombo.js %%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/_source/classes/fckw3crange.js -%%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/_source/classes/fckxml.js %%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/_source/classes/fckxml_gecko.js %%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/_source/classes/fckxml_ie.js +%%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/_source/classes/fckxml.js %%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/_source/commandclasses/fck_othercommands.js %%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/_source/commandclasses/fckblockquotecommand.js %%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/_source/commandclasses/fckcorestylecommand.js @@ -1592,16 +1799,16 @@ bin/phplist %%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/_source/fckeditorapi.js %%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/_source/fckjscoreextensions.js %%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/_source/fckscriptloader.js -%%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/_source/internals/fck.js %%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/_source/internals/fck_contextmenu.js %%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/_source/internals/fck_gecko.js %%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/_source/internals/fck_ie.js +%%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/_source/internals/fck.js %%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/_source/internals/fckbrowserinfo.js %%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/_source/internals/fckcodeformatter.js %%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/_source/internals/fckcommands.js %%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/_source/internals/fckconfig.js -%%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/_source/internals/fckdebug.js %%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/_source/internals/fckdebug_empty.js +%%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/_source/internals/fckdebug.js %%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/_source/internals/fckdialog.js %%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/_source/internals/fckdocumentprocessor.js %%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/_source/internals/fckdomtools.js @@ -1611,23 +1818,23 @@ bin/phplist %%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/_source/internals/fckplugins.js %%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/_source/internals/fckregexlib.js %%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/_source/internals/fckscayt.js -%%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/_source/internals/fckselection.js %%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/_source/internals/fckselection_gecko.js %%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/_source/internals/fckselection_ie.js +%%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/_source/internals/fckselection.js %%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/_source/internals/fckstyles.js -%%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/_source/internals/fcktablehandler.js %%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/_source/internals/fcktablehandler_gecko.js %%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/_source/internals/fcktablehandler_ie.js +%%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/_source/internals/fcktablehandler.js %%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/_source/internals/fcktoolbaritems.js %%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/_source/internals/fcktoolbarset.js -%%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/_source/internals/fcktools.js %%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/_source/internals/fcktools_gecko.js %%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/_source/internals/fcktools_ie.js +%%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/_source/internals/fcktools.js %%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/_source/internals/fckundo.js %%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/_source/internals/fckurlparams.js -%%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/_source/internals/fckxhtml.js %%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/_source/internals/fckxhtml_gecko.js %%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/_source/internals/fckxhtml_ie.js +%%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/_source/internals/fckxhtml.js %%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/_source/internals/fckxhtmlentities.js %%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/css/behaviors/disablehandles.htc %%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/css/behaviors/showtableborders.htc @@ -1666,13 +1873,13 @@ bin/phplist %%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/dialog/fck_div.html %%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/dialog/fck_docprops/fck_document_preview.html %%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/dialog/fck_docprops.html -%%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/dialog/fck_flash/fck_flash.js %%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/dialog/fck_flash/fck_flash_preview.html +%%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/dialog/fck_flash/fck_flash.js %%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/dialog/fck_flash.html %%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/dialog/fck_form.html %%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/dialog/fck_hiddenfield.html -%%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/dialog/fck_image/fck_image.js %%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/dialog/fck_image/fck_image_preview.html +%%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/dialog/fck_image/fck_image.js %%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/dialog/fck_image.html %%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/dialog/fck_link/fck_link.js %%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/dialog/fck_link.html @@ -1688,13 +1895,13 @@ bin/phplist %%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/dialog/fck_source.html %%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/dialog/fck_specialchar.html %%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/dialog/fck_spellerpages/spellerpages/blank.html -%%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/dialog/fck_spellerpages/spellerpages/controlWindow.js %%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/dialog/fck_spellerpages/spellerpages/controls.html +%%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/dialog/fck_spellerpages/spellerpages/controlWindow.js %%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellchecker.cfm %%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellchecker.php %%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellchecker.pl -%%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/dialog/fck_spellerpages/spellerpages/spellChecker.js %%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/dialog/fck_spellerpages/spellerpages/spellchecker.html +%%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/dialog/fck_spellerpages/spellerpages/spellChecker.js %%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/dialog/fck_spellerpages/spellerpages/spellerStyle.css %%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/dialog/fck_spellerpages/spellerpages/wordWindow.js %%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/dialog/fck_spellerpages.html @@ -1784,7 +1991,6 @@ bin/phplist %%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/filemanager/browser/default/images/spacer.gif %%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/filemanager/browser/default/js/common.js %%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/filemanager/browser/default/js/fckxml.js -%%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/filemanager/connectors/phplist/.htaccess %%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/filemanager/connectors/phplist/basexml.php %%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/filemanager/connectors/phplist/commands.php %%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/filemanager/connectors/phplist/config.php @@ -1899,8 +2105,8 @@ bin/phplist %%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/plugins/simplecommands/fckplugin.js %%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/plugins/tablecommands/fckplugin.js %%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/skins/_fckviewstrips.html -%%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/skins/default/fck_dialog.css %%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/skins/default/fck_dialog_ie6.js +%%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/skins/default/fck_dialog.css %%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/skins/default/fck_editor.css %%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/skins/default/fck_strip.gif %%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/skins/default/images/dialog.sides.gif @@ -1915,8 +2121,8 @@ bin/phplist %%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/skins/default/images/toolbar.expand.gif %%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/skins/default/images/toolbar.separator.gif %%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/skins/default/images/toolbar.start.gif -%%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/skins/office2003/fck_dialog.css %%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/skins/office2003/fck_dialog_ie6.js +%%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/skins/office2003/fck_dialog.css %%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/skins/office2003/fck_editor.css %%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/skins/office2003/fck_strip.gif %%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/skins/office2003/images/dialog.sides.gif @@ -1932,8 +2138,8 @@ bin/phplist %%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/skins/office2003/images/toolbar.expand.gif %%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/skins/office2003/images/toolbar.separator.gif %%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/skins/office2003/images/toolbar.start.gif -%%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/skins/silver/fck_dialog.css %%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/skins/silver/fck_dialog_ie6.js +%%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/skins/silver/fck_dialog.css %%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/skins/silver/fck_editor.css %%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/skins/silver/fck_strip.gif %%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/skins/silver/images/dialog.sides.gif @@ -1953,10 +2159,10 @@ bin/phplist %%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/wsc/tmpFrameset.html %%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/editor/wsc/w.html %%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/fckconfig.js -%%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/fckeditor.js -%%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/fckeditor.php %%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/fckeditor_php4.php %%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/fckeditor_php5.php +%%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/fckeditor.js +%%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/fckeditor.php %%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/fckpackager.xml %%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/fckstyles.xml %%WWWDIR%%/lists/admin/plugins/fckphplist/fckeditor/fcktemplates.xml @@ -1965,7 +2171,40 @@ bin/phplist %%WWWDIR%%/lists/admin/plugins/fckphplist/firefox_detect.patch %%WWWDIR%%/lists/admin/plugins/fckphplist/phplist_config.patch %%WWWDIR%%/lists/admin/plugins/fckphplist.php -%%WWWDIR%%/lists/admin/plugins/update.sh +%%WWWDIR%%/lists/admin/plugins/inviteplugin.php +%%WWWDIR%%/lists/admin/plugins/SegmentPlugin/AttributeConditionCheckbox.php +%%WWWDIR%%/lists/admin/plugins/SegmentPlugin/AttributeConditionCheckboxgroup.php +%%WWWDIR%%/lists/admin/plugins/SegmentPlugin/AttributeConditionDate.php +%%WWWDIR%%/lists/admin/plugins/SegmentPlugin/AttributeConditionSelect.php +%%WWWDIR%%/lists/admin/plugins/SegmentPlugin/AttributeConditionText.php +%%WWWDIR%%/lists/admin/plugins/SegmentPlugin/class_map.php +%%WWWDIR%%/lists/admin/plugins/SegmentPlugin/Condition.php +%%WWWDIR%%/lists/admin/plugins/SegmentPlugin/ConditionException.php +%%WWWDIR%%/lists/admin/plugins/SegmentPlugin/ConditionFactory.php +%%WWWDIR%%/lists/admin/plugins/SegmentPlugin/Controller/Export.php +%%WWWDIR%%/lists/admin/plugins/SegmentPlugin/ControllerFactory.php +%%WWWDIR%%/lists/admin/plugins/SegmentPlugin/DAO.php +%%WWWDIR%%/lists/admin/plugins/SegmentPlugin/DateConditionBase.php +%%WWWDIR%%/lists/admin/plugins/SegmentPlugin/depends.php +%%WWWDIR%%/lists/admin/plugins/SegmentPlugin/export.php +%%WWWDIR%%/lists/admin/plugins/SegmentPlugin/lan/translations_en.php +%%WWWDIR%%/lists/admin/plugins/SegmentPlugin/NoConditionsException.php +%%WWWDIR%%/lists/admin/plugins/SegmentPlugin/Operator.php +%%WWWDIR%%/lists/admin/plugins/SegmentPlugin/SavedSegments.php +%%WWWDIR%%/lists/admin/plugins/SegmentPlugin/script.html +%%WWWDIR%%/lists/admin/plugins/SegmentPlugin/Segment.php +%%WWWDIR%%/lists/admin/plugins/SegmentPlugin/SelectedSubscribersExport.php +%%WWWDIR%%/lists/admin/plugins/SegmentPlugin/sendtab.tpl.php +%%WWWDIR%%/lists/admin/plugins/SegmentPlugin/styles.html +%%WWWDIR%%/lists/admin/plugins/SegmentPlugin/SubscriberConditionActivity.php +%%WWWDIR%%/lists/admin/plugins/SegmentPlugin/SubscriberConditionEmail.php +%%WWWDIR%%/lists/admin/plugins/SegmentPlugin/SubscriberConditionEntered.php +%%WWWDIR%%/lists/admin/plugins/SegmentPlugin/SubscriberConditionIdentity.php +%%WWWDIR%%/lists/admin/plugins/SegmentPlugin/ValueException.php +%%WWWDIR%%/lists/admin/plugins/SegmentPlugin/version.txt +%%WWWDIR%%/lists/admin/plugins/SegmentPlugin/viewmessage.tpl.php +%%WWWDIR%%/lists/admin/plugins/SegmentPlugin.php +%%WWWDIR%%/lists/admin/plugins/subjectLinePlaceholdersPlugin.php %%WWWDIR%%/lists/admin/plugins.php %%WWWDIR%%/lists/admin/preparesend.php %%WWWDIR%%/lists/admin/processbounces.php @@ -1974,8 +2213,9 @@ bin/phplist %%WWWDIR%%/lists/admin/reconcileusers.php %%WWWDIR%%/lists/admin/reindex.php %%WWWDIR%%/lists/admin/rsslib.php -%%WWWDIR%%/lists/admin/send.php +%%WWWDIR%%/lists/admin/runcommand.php %%WWWDIR%%/lists/admin/send_core.php +%%WWWDIR%%/lists/admin/send.php %%WWWDIR%%/lists/admin/sendemaillib.php %%WWWDIR%%/lists/admin/sendprepared.php %%WWWDIR%%/lists/admin/sessionlib.php @@ -2016,15 +2256,14 @@ bin/phplist %%WWWDIR%%/lists/admin/ui/default/css/minimal.css %%WWWDIR%%/lists/admin/ui/default/css/reset.css %%WWWDIR%%/lists/admin/ui/default/css/skeleton.css -%%WWWDIR%%/lists/admin/ui/default/css/style.css %%WWWDIR%%/lists/admin/ui/default/css/style_rtl.css -%%WWWDIR%%/lists/admin/ui/default/footer.inc +%%WWWDIR%%/lists/admin/ui/default/css/style.css %%WWWDIR%%/lists/admin/ui/default/footer_minified.inc +%%WWWDIR%%/lists/admin/ui/default/footer.inc %%WWWDIR%%/lists/admin/ui/default/frontendfooter.php %%WWWDIR%%/lists/admin/ui/default/frontendheader.php -%%WWWDIR%%/lists/admin/ui/default/header.inc %%WWWDIR%%/lists/admin/ui/default/header_minified.inc -%%WWWDIR%%/lists/admin/ui/default/images/16x16/Thumbs.db +%%WWWDIR%%/lists/admin/ui/default/header.inc %%WWWDIR%%/lists/admin/ui/default/images/16x16/add-members.png %%WWWDIR%%/lists/admin/ui/default/images/16x16/address.png %%WWWDIR%%/lists/admin/ui/default/images/16x16/administrative-docs.png @@ -2136,6 +2375,7 @@ bin/phplist %%WWWDIR%%/lists/admin/ui/default/images/16x16/stop.png %%WWWDIR%%/lists/admin/ui/default/images/16x16/suppliers.png %%WWWDIR%%/lists/admin/ui/default/images/16x16/tag.png +%%WWWDIR%%/lists/admin/ui/default/images/16x16/Thumbs.db %%WWWDIR%%/lists/admin/ui/default/images/16x16/ticket.png %%WWWDIR%%/lists/admin/ui/default/images/16x16/twitter.png %%WWWDIR%%/lists/admin/ui/default/images/16x16/upcoming-work.png @@ -2144,7 +2384,6 @@ bin/phplist %%WWWDIR%%/lists/admin/ui/default/images/16x16/world.png %%WWWDIR%%/lists/admin/ui/default/images/16x16/yes.png %%WWWDIR%%/lists/admin/ui/default/images/16x16/zoom.png -%%WWWDIR%%/lists/admin/ui/default/images/32x32/Thumbs.db %%WWWDIR%%/lists/admin/ui/default/images/32x32/address.png %%WWWDIR%%/lists/admin/ui/default/images/32x32/admin.png %%WWWDIR%%/lists/admin/ui/default/images/32x32/administrative-docs.png @@ -2254,17 +2493,18 @@ bin/phplist %%WWWDIR%%/lists/admin/ui/default/images/32x32/statistics.png %%WWWDIR%%/lists/admin/ui/default/images/32x32/suppliers.png %%WWWDIR%%/lists/admin/ui/default/images/32x32/tag.png +%%WWWDIR%%/lists/admin/ui/default/images/32x32/Thumbs.db %%WWWDIR%%/lists/admin/ui/default/images/32x32/ticket.png %%WWWDIR%%/lists/admin/ui/default/images/32x32/twitter.png %%WWWDIR%%/lists/admin/ui/default/images/32x32/upcoming-work.png %%WWWDIR%%/lists/admin/ui/default/images/32x32/user.png %%WWWDIR%%/lists/admin/ui/default/images/32x32/world.png %%WWWDIR%%/lists/admin/ui/default/images/32x32/zoom.png -%%WWWDIR%%/lists/admin/ui/default/images/Blank.gif %%WWWDIR%%/lists/admin/ui/default/images/back.png %%WWWDIR%%/lists/admin/ui/default/images/bg-menu.gif %%WWWDIR%%/lists/admin/ui/default/images/bg.gif %%WWWDIR%%/lists/admin/ui/default/images/bg.png +%%WWWDIR%%/lists/admin/ui/default/images/Blank.gif %%WWWDIR%%/lists/admin/ui/default/images/branding.png %%WWWDIR%%/lists/admin/ui/default/images/break-el.gif %%WWWDIR%%/lists/admin/ui/default/images/close_button1.gif @@ -2283,8 +2523,8 @@ bin/phplist %%WWWDIR%%/lists/admin/ui/default/images/logo.gif %%WWWDIR%%/lists/admin/ui/default/images/masthead.png %%WWWDIR%%/lists/admin/ui/default/images/menu.png -%%WWWDIR%%/lists/admin/ui/default/images/menuarrow.png %%WWWDIR%%/lists/admin/ui/default/images/menuarrow_active.png +%%WWWDIR%%/lists/admin/ui/default/images/menuarrow.png %%WWWDIR%%/lists/admin/ui/default/images/mysql_logo.gif %%WWWDIR%%/lists/admin/ui/default/images/next.png %%WWWDIR%%/lists/admin/ui/default/images/nexttab.png @@ -2324,18 +2564,18 @@ bin/phplist %%WWWDIR%%/lists/admin/ui/default/js/phplist.js %%WWWDIR%%/lists/admin/ui/default/onyx-rss.php %%WWWDIR%%/lists/admin/ui/default/pages/design.php -%%WWWDIR%%/lists/admin/ui/default/pagetop.php %%WWWDIR%%/lists/admin/ui/default/pagetop_minified.php %%WWWDIR%%/lists/admin/ui/default/pagetop_minimal.php +%%WWWDIR%%/lists/admin/ui/default/pagetop.php %%WWWDIR%%/lists/admin/ui/default/publicpagetop.php %%WWWDIR%%/lists/admin/ui/default/rssfeed.php %%WWWDIR%%/lists/admin/ui/default/styles/tabs.css %%WWWDIR%%/lists/admin/ui/default/theme_info +%%WWWDIR%%/lists/admin/ui/dressprow/.gitignore %%WWWDIR%%/lists/admin/ui/dressprow/.php_cs %%WWWDIR%%/lists/admin/ui/dressprow/.travis.yml %%WWWDIR%%/lists/admin/ui/dressprow/COLOR-PALETTE-GRAY.png %%WWWDIR%%/lists/admin/ui/dressprow/composer.json -%%WWWDIR%%/lists/admin/ui/dressprow/css/all.css %%WWWDIR%%/lists/admin/ui/dressprow/css/all.min.css %%WWWDIR%%/lists/admin/ui/dressprow/css/base.css %%WWWDIR%%/lists/admin/ui/dressprow/css/gray.css @@ -2343,15 +2583,15 @@ bin/phplist %%WWWDIR%%/lists/admin/ui/dressprow/css/minimal.css %%WWWDIR%%/lists/admin/ui/dressprow/css/reset.css %%WWWDIR%%/lists/admin/ui/dressprow/css/skeleton.css -%%WWWDIR%%/lists/admin/ui/dressprow/css/style.css %%WWWDIR%%/lists/admin/ui/dressprow/css/style_rtl.css -%%WWWDIR%%/lists/admin/ui/dressprow/footer.inc +%%WWWDIR%%/lists/admin/ui/dressprow/css/style.css %%WWWDIR%%/lists/admin/ui/dressprow/footer_minified.inc +%%WWWDIR%%/lists/admin/ui/dressprow/footer.inc %%WWWDIR%%/lists/admin/ui/dressprow/frontendfooter.php %%WWWDIR%%/lists/admin/ui/dressprow/frontendheader.php -%%WWWDIR%%/lists/admin/ui/dressprow/header.inc +%%WWWDIR%%/lists/admin/ui/dressprow/gruntfile.js %%WWWDIR%%/lists/admin/ui/dressprow/header_minified.inc -%%WWWDIR%%/lists/admin/ui/dressprow/images/16x16/Thumbs.db +%%WWWDIR%%/lists/admin/ui/dressprow/header.inc %%WWWDIR%%/lists/admin/ui/dressprow/images/16x16/add-members.png %%WWWDIR%%/lists/admin/ui/dressprow/images/16x16/address.png %%WWWDIR%%/lists/admin/ui/dressprow/images/16x16/administrative-docs.png @@ -2463,6 +2703,7 @@ bin/phplist %%WWWDIR%%/lists/admin/ui/dressprow/images/16x16/stop.png %%WWWDIR%%/lists/admin/ui/dressprow/images/16x16/suppliers.png %%WWWDIR%%/lists/admin/ui/dressprow/images/16x16/tag.png +%%WWWDIR%%/lists/admin/ui/dressprow/images/16x16/Thumbs.db %%WWWDIR%%/lists/admin/ui/dressprow/images/16x16/ticket.png %%WWWDIR%%/lists/admin/ui/dressprow/images/16x16/twitter.png %%WWWDIR%%/lists/admin/ui/dressprow/images/16x16/upcoming-work.png @@ -2471,7 +2712,6 @@ bin/phplist %%WWWDIR%%/lists/admin/ui/dressprow/images/16x16/world.png %%WWWDIR%%/lists/admin/ui/dressprow/images/16x16/yes.png %%WWWDIR%%/lists/admin/ui/dressprow/images/16x16/zoom.png -%%WWWDIR%%/lists/admin/ui/dressprow/images/32x32/Thumbs.db %%WWWDIR%%/lists/admin/ui/dressprow/images/32x32/address.png %%WWWDIR%%/lists/admin/ui/dressprow/images/32x32/admin.png %%WWWDIR%%/lists/admin/ui/dressprow/images/32x32/administrative-docs.png @@ -2581,17 +2821,18 @@ bin/phplist %%WWWDIR%%/lists/admin/ui/dressprow/images/32x32/statistics.png %%WWWDIR%%/lists/admin/ui/dressprow/images/32x32/suppliers.png %%WWWDIR%%/lists/admin/ui/dressprow/images/32x32/tag.png +%%WWWDIR%%/lists/admin/ui/dressprow/images/32x32/Thumbs.db %%WWWDIR%%/lists/admin/ui/dressprow/images/32x32/ticket.png %%WWWDIR%%/lists/admin/ui/dressprow/images/32x32/twitter.png %%WWWDIR%%/lists/admin/ui/dressprow/images/32x32/upcoming-work.png %%WWWDIR%%/lists/admin/ui/dressprow/images/32x32/user.png %%WWWDIR%%/lists/admin/ui/dressprow/images/32x32/world.png %%WWWDIR%%/lists/admin/ui/dressprow/images/32x32/zoom.png -%%WWWDIR%%/lists/admin/ui/dressprow/images/Blank.gif %%WWWDIR%%/lists/admin/ui/dressprow/images/back.png %%WWWDIR%%/lists/admin/ui/dressprow/images/bg-menu.gif %%WWWDIR%%/lists/admin/ui/dressprow/images/bg.gif %%WWWDIR%%/lists/admin/ui/dressprow/images/bg.png +%%WWWDIR%%/lists/admin/ui/dressprow/images/Blank.gif %%WWWDIR%%/lists/admin/ui/dressprow/images/branding.png %%WWWDIR%%/lists/admin/ui/dressprow/images/break-el.gif %%WWWDIR%%/lists/admin/ui/dressprow/images/close_button1.gif @@ -2610,8 +2851,8 @@ bin/phplist %%WWWDIR%%/lists/admin/ui/dressprow/images/logo.gif %%WWWDIR%%/lists/admin/ui/dressprow/images/masthead.png %%WWWDIR%%/lists/admin/ui/dressprow/images/menu.png -%%WWWDIR%%/lists/admin/ui/dressprow/images/menuarrow.png %%WWWDIR%%/lists/admin/ui/dressprow/images/menuarrow_active.png +%%WWWDIR%%/lists/admin/ui/dressprow/images/menuarrow.png %%WWWDIR%%/lists/admin/ui/dressprow/images/mysql_logo.gif %%WWWDIR%%/lists/admin/ui/dressprow/images/next.png %%WWWDIR%%/lists/admin/ui/dressprow/images/nexttab.png @@ -2644,158 +2885,491 @@ bin/phplist %%WWWDIR%%/lists/admin/ui/dressprow/images/ui-icons_454545_256x240.png %%WWWDIR%%/lists/admin/ui/dressprow/images/ui-icons_888888_256x240.png %%WWWDIR%%/lists/admin/ui/dressprow/images/ui-icons_cd0a0a_256x240.png -%%WWWDIR%%/lists/admin/ui/dressprow/js/all.js %%WWWDIR%%/lists/admin/ui/dressprow/js/all.min.js %%WWWDIR%%/lists/admin/ui/dressprow/js/jcarousellite_1.0.1.min.js %%WWWDIR%%/lists/admin/ui/dressprow/js/jquery.tablednd.js %%WWWDIR%%/lists/admin/ui/dressprow/js/phplist.js +%%WWWDIR%%/lists/admin/ui/dressprow/package.json %%WWWDIR%%/lists/admin/ui/dressprow/pages/design.php -%%WWWDIR%%/lists/admin/ui/dressprow/pagetop.php %%WWWDIR%%/lists/admin/ui/dressprow/pagetop_minified.php %%WWWDIR%%/lists/admin/ui/dressprow/pagetop_minimal.php +%%WWWDIR%%/lists/admin/ui/dressprow/pagetop.php %%WWWDIR%%/lists/admin/ui/dressprow/publicpagetop.php +%%WWWDIR%%/lists/admin/ui/dressprow/README.md %%WWWDIR%%/lists/admin/ui/dressprow/styles/tabs.css %%WWWDIR%%/lists/admin/ui/dressprow/theme_info %%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/.gitignore %%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/.travis.yml -%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/LICENSE -%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/README.md +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/body_trackers.php +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/_config.yml +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/.editorconfig +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/.gitattributes +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/.gitignore +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/.hound.yml +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/.travis.yml +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/bower.json +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/CHANGELOG.md +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/CNAME +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/composer.json +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/CONTRIBUTING.md +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/dist/css/bootstrap-theme.css +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/dist/css/bootstrap-theme.css.map +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/dist/css/bootstrap-theme.min.css +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/dist/css/bootstrap-theme.min.css.map +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/dist/css/bootstrap.css +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/dist/css/bootstrap.css.map +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/dist/css/bootstrap.min.css +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/dist/css/bootstrap.min.css.map +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/dist/fonts/glyphicons-halflings-regular.eot +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/dist/fonts/glyphicons-halflings-regular.svg +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/dist/fonts/glyphicons-halflings-regular.woff +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2 +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/dist/js/bootstrap.js +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/dist/js/bootstrap.min.js +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/dist/js/npm.js +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/_data/browser-bugs.yml +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/_data/core-team.yml +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/_data/glyphicons.yml +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/_data/sass-team.yml +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/_data/showcase.yml +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/_data/translations.yml +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/_includes/ads.html +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/_includes/components/alerts.html +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/_includes/components/badges.html +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/_includes/components/breadcrumbs.html +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/_includes/components/button-dropdowns.html +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/_includes/components/button-groups.html +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/_includes/components/dropdowns.html +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/_includes/components/glyphicons.html +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/_includes/components/input-groups.html +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/_includes/components/jumbotron.html +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/_includes/components/labels.html +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/_includes/components/list-group.html +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/_includes/components/media.html +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/_includes/components/navbar.html +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/_includes/components/navs.html +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/_includes/components/page-header.html +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/_includes/components/pagination.html +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/_includes/components/panels.html +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/_includes/components/progress-bars.html +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/_includes/components/responsive-embed.html +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/_includes/components/thumbnails.html +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/_includes/components/wells.html +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/_includes/css/buttons.html +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/_includes/css/code.html +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/_includes/css/forms.html +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/_includes/css/grid.html +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/_includes/css/helpers.html +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/_includes/css/images.html +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/_includes/css/less.html +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/_includes/css/overview.html +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/_includes/css/responsive-utilities.html +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/_includes/css/sass.html +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/_includes/css/tables.html +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/_includes/css/type.html +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/_includes/customizer-variables.html +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/_includes/footer.html +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/_includes/getting-started/accessibility.html +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/_includes/getting-started/browser-device-support.html +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/_includes/getting-started/community.html +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/_includes/getting-started/disabling-responsiveness.html +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/_includes/getting-started/download.html +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/_includes/getting-started/examples.html +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/_includes/getting-started/grunt.html +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/_includes/getting-started/license.html +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/_includes/getting-started/template.html +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/_includes/getting-started/third-party-support.html +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/_includes/getting-started/tools.html +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/_includes/getting-started/translations.html +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/_includes/getting-started/whats-included.html +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/_includes/header.html +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/_includes/js/affix.html +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/_includes/js/alerts.html +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/_includes/js/buttons.html +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/_includes/js/carousel.html +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/_includes/js/collapse.html +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/_includes/js/dropdowns.html +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/_includes/js/modal.html +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/_includes/js/overview.html +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/_includes/js/popovers.html +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/_includes/js/scrollspy.html +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/_includes/js/tabs.html +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/_includes/js/tooltips.html +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/_includes/js/transitions.html +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/_includes/nav/about.html +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/_includes/nav/components.html +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/_includes/nav/css.html +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/_includes/nav/customize.html +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/_includes/nav/getting-started.html +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/_includes/nav/javascript.html +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/_includes/nav/main.html +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/_includes/nav/migration.html +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/_jade/customizer-nav.jade +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/_jade/customizer-variables.jade +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/_layouts/default.html +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/_layouts/home.html +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/_plugins/bridge.rb +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/_plugins/bugify.rb +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/about.html +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/apple-touch-icon.png +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/assets/brand/bootstrap-outline.svg +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/assets/brand/bootstrap-punchout.svg +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/assets/brand/bootstrap-solid.svg +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/assets/css/docs.min.css +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/assets/css/docs.min.css.map +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/assets/css/ie10-viewport-bug-workaround.css +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/assets/css/src/docs.css +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/assets/css/src/pygments-manni.css +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/assets/flash/ZeroClipboard.swf +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/assets/img/components.png +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/assets/img/devices.png +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/assets/img/expo-lyft.jpg +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/assets/img/expo-newsweek.jpg +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/assets/img/expo-riot.jpg +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/assets/img/expo-vogue.jpg +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/assets/img/sass-less.png +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/assets/js/customize.min.js +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/assets/js/docs.min.js +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/assets/js/ie-emulation-modes-warning.js +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/assets/js/ie10-viewport-bug-workaround.js +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/assets/js/ie8-responsive-file-warning.js +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/assets/js/raw-files.min.js +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/assets/js/src/application.js +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/assets/js/src/customizer.js +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/assets/js/vendor/anchor.js +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/assets/js/vendor/autoprefixer.js +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/assets/js/vendor/Blob.js +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/assets/js/vendor/FileSaver.js +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/assets/js/vendor/holder.min.js +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/assets/js/vendor/jquery.min.js +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/assets/js/vendor/jszip.min.js +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/assets/js/vendor/less.min.js +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/assets/js/vendor/uglify.min.js +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/assets/js/vendor/ZeroClipboard.min.js +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/browser-bugs.html +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/components.html +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/css.html +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/customize.html +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/dist/css/bootstrap-theme.css +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/dist/css/bootstrap-theme.css.map +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/dist/css/bootstrap-theme.min.css +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/dist/css/bootstrap-theme.min.css.map +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/dist/css/bootstrap.css +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/dist/css/bootstrap.css.map +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/dist/css/bootstrap.min.css +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/dist/css/bootstrap.min.css.map +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/dist/fonts/glyphicons-halflings-regular.eot +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/dist/fonts/glyphicons-halflings-regular.svg +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/dist/fonts/glyphicons-halflings-regular.ttf +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/dist/fonts/glyphicons-halflings-regular.woff +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/dist/fonts/glyphicons-halflings-regular.woff2 +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/dist/js/bootstrap.js +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/dist/js/bootstrap.min.js +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/dist/js/npm.js +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/examples/blog/blog.css +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/examples/blog/index.html +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/examples/carousel/carousel.css +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/examples/carousel/index.html +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/examples/cover/cover.css +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/examples/cover/index.html +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/examples/dashboard/dashboard.css +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/examples/dashboard/index.html +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/examples/grid/grid.css +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/examples/grid/index.html +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/examples/jumbotron/index.html +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/examples/jumbotron/jumbotron.css +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/examples/jumbotron-narrow/index.html +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/examples/jumbotron-narrow/jumbotron-narrow.css +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/examples/justified-nav/index.html +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/examples/justified-nav/justified-nav.css +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/examples/navbar/index.html +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/examples/navbar/navbar.css +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/examples/navbar-fixed-top/index.html +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/examples/navbar-fixed-top/navbar-fixed-top.css +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/examples/navbar-static-top/index.html +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/examples/navbar-static-top/navbar-static-top.css +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/examples/non-responsive/index.html +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/examples/non-responsive/non-responsive.css +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/examples/offcanvas/index.html +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/examples/offcanvas/offcanvas.css +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/examples/offcanvas/offcanvas.js +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/examples/screenshots/blog.jpg +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/examples/screenshots/carousel.jpg +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/examples/screenshots/cover.jpg +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/examples/screenshots/dashboard.jpg +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/examples/screenshots/equal-height-columns.jpg +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/examples/screenshots/grid.jpg +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/examples/screenshots/jumbotron-narrow.jpg +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/examples/screenshots/jumbotron.jpg +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/examples/screenshots/justified-nav.jpg +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/examples/screenshots/navbar-fixed.jpg +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/examples/screenshots/navbar-static.jpg +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/examples/screenshots/navbar.jpg +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/examples/screenshots/non-responsive.jpg +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/examples/screenshots/offcanvas.jpg +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/examples/screenshots/sign-in.jpg +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/examples/screenshots/starter-template.jpg +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/examples/screenshots/sticky-footer-navbar.jpg +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/examples/screenshots/sticky-footer.jpg +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/examples/screenshots/theme.jpg +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/examples/signin/index.html +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/examples/signin/signin.css +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/examples/starter-template/index.html +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/examples/starter-template/starter-template.css +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/examples/sticky-footer/index.html +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/examples/sticky-footer/sticky-footer.css +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/examples/sticky-footer-navbar/index.html +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/examples/sticky-footer-navbar/sticky-footer-navbar.css +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/examples/theme/index.html +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/examples/theme/theme.css +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/examples/tooltip-viewport/index.html +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/examples/tooltip-viewport/tooltip-viewport.css +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/examples/tooltip-viewport/tooltip-viewport.js +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/favicon.ico +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/getting-started.html +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/index.html +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/javascript.html +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/LICENSE +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/migration.html +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/robots.txt +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/sitemap.xml +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/fonts/glyphicons-halflings-regular.eot +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/fonts/glyphicons-halflings-regular.svg +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/fonts/glyphicons-halflings-regular.ttf +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/fonts/glyphicons-halflings-regular.woff +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/fonts/glyphicons-halflings-regular.woff2 +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/grunt/.jshintrc +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/grunt/bs-commonjs-generator.js +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/grunt/bs-glyphicons-data-generator.js +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/grunt/bs-lessdoc-parser.js +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/grunt/bs-raw-files-generator.js +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/grunt/configBridge.json +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/grunt/sauce_browsers.yml +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/Gruntfile.js +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/js/.jscsrc +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/js/.jshintrc +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/js/affix.js +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/js/alert.js +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/js/button.js +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/js/carousel.js +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/js/collapse.js +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/js/dropdown.js +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/js/modal.js +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/js/popover.js +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/js/scrollspy.js +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/js/tab.js +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/js/tests/index.html +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/js/tests/README.md +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/js/tests/unit/.jshintrc +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/js/tests/unit/affix.js +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/js/tests/unit/alert.js +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/js/tests/unit/button.js +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/js/tests/unit/carousel.js +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/js/tests/unit/collapse.js +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/js/tests/unit/dropdown.js +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/js/tests/unit/modal.js +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/js/tests/unit/phantom.js +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/js/tests/unit/popover.js +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/js/tests/unit/scrollspy.js +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/js/tests/unit/tab.js +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/js/tests/unit/tooltip.js +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/js/tests/vendor/jquery.min.js +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/js/tests/vendor/qunit.css +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/js/tests/vendor/qunit.js +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/js/tests/visual/affix-with-sticky-footer.html +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/js/tests/visual/affix.html +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/js/tests/visual/alert.html +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/js/tests/visual/button.html +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/js/tests/visual/carousel.html +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/js/tests/visual/collapse.html +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/js/tests/visual/dropdown.html +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/js/tests/visual/modal.html +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/js/tests/visual/popover.html +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/js/tests/visual/scrollspy.html +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/js/tests/visual/tab.html +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/js/tests/visual/tooltip.html +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/js/tooltip.js +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/js/transition.js +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/less/.csscomb.json +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/less/.csslintrc +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/less/alerts.less +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/less/badges.less +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/less/bootstrap.less +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/less/breadcrumbs.less +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/less/button-groups.less +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/less/buttons.less +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/less/carousel.less +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/less/close.less +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/less/code.less +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/less/component-animations.less +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/less/dropdowns.less +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/less/forms.less +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/less/glyphicons.less +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/less/grid.less +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/less/input-groups.less +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/less/jumbotron.less +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/less/labels.less +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/less/list-group.less +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/less/media.less +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/less/mixins/alerts.less +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/less/mixins/background-variant.less +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/less/mixins/border-radius.less +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/less/mixins/buttons.less +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/less/mixins/center-block.less +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/less/mixins/clearfix.less +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/less/mixins/forms.less +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/less/mixins/gradients.less +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/less/mixins/grid-framework.less +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/less/mixins/grid.less +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/less/mixins/hide-text.less +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/less/mixins/image.less +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/less/mixins/labels.less +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/less/mixins/list-group.less +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/less/mixins/nav-divider.less +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/less/mixins/nav-vertical-align.less +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/less/mixins/opacity.less +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/less/mixins/pagination.less +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/less/mixins/panels.less +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/less/mixins/progress-bar.less +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/less/mixins/reset-filter.less +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/less/mixins/reset-text.less +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/less/mixins/resize.less +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/less/mixins/responsive-visibility.less +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/less/mixins/size.less +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/less/mixins/tab-focus.less +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/less/mixins/table-row.less +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/less/mixins/text-emphasis.less +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/less/mixins/text-overflow.less +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/less/mixins/vendor-prefixes.less +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/less/mixins.less +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/less/modals.less +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/less/navbar.less +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/less/navs.less +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/less/normalize.less +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/less/pager.less +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/less/pagination.less +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/less/panels.less +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/less/popovers.less +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/less/print.less +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/less/progress-bars.less +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/less/responsive-embed.less +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/less/responsive-utilities.less +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/less/scaffolding.less +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/less/tables.less +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/less/theme.less +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/less/thumbnails.less +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/less/tooltip.less +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/less/type.less +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/less/utilities.less +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/less/variables.less +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/less/wells.less +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/LICENSE +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/nuget/bootstrap.less.nuspec +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/nuget/bootstrap.nuspec +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/nuget/MyGet.ps1 +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/package.js +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/package.json +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/README.md +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/test-infra/npm-shrinkwrap.json +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/test-infra/README.md +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/test-infra/requirements.txt +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/test-infra/s3_cache.py +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/test-infra/S3Cachefile.json +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/bootstrap/test-infra/uncached-npm-install.sh %%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/composer.json %%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/css/bootstrap-select.min.css +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/css/bootstrap-toggle.min.css %%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/css/style.css %%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/fonts/glyphicons-halflings-regular.eot %%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/fonts/glyphicons-halflings-regular.svg %%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/fonts/glyphicons-halflings-regular.ttf %%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/fonts/glyphicons-halflings-regular.woff %%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/fonts/glyphicons-halflings-regular.woff2 -%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/fonts/source-sans-pro/EOT/SourceSansPro-Black.eot -%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/fonts/source-sans-pro/EOT/SourceSansPro-BlackIt.eot %%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/fonts/source-sans-pro/EOT/SourceSansPro-Bold.eot %%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/fonts/source-sans-pro/EOT/SourceSansPro-BoldIt.eot -%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/fonts/source-sans-pro/EOT/SourceSansPro-ExtraLight.eot -%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/fonts/source-sans-pro/EOT/SourceSansPro-ExtraLightIt.eot %%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/fonts/source-sans-pro/EOT/SourceSansPro-It.eot -%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/fonts/source-sans-pro/EOT/SourceSansPro-Light.eot -%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/fonts/source-sans-pro/EOT/SourceSansPro-LightIt.eot %%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/fonts/source-sans-pro/EOT/SourceSansPro-Regular.eot -%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/fonts/source-sans-pro/EOT/SourceSansPro-Semibold.eot -%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/fonts/source-sans-pro/EOT/SourceSansPro-SemiboldIt.eot %%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/fonts/source-sans-pro/LICENSE.txt -%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/fonts/source-sans-pro/OTF/SourceSansPro-Black.otf -%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/fonts/source-sans-pro/OTF/SourceSansPro-BlackIt.otf %%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/fonts/source-sans-pro/OTF/SourceSansPro-Bold.otf %%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/fonts/source-sans-pro/OTF/SourceSansPro-BoldIt.otf -%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/fonts/source-sans-pro/OTF/SourceSansPro-ExtraLight.otf -%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/fonts/source-sans-pro/OTF/SourceSansPro-ExtraLightIt.otf %%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/fonts/source-sans-pro/OTF/SourceSansPro-It.otf -%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/fonts/source-sans-pro/OTF/SourceSansPro-Light.otf -%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/fonts/source-sans-pro/OTF/SourceSansPro-LightIt.otf %%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/fonts/source-sans-pro/OTF/SourceSansPro-Regular.otf -%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/fonts/source-sans-pro/OTF/SourceSansPro-Semibold.otf -%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/fonts/source-sans-pro/OTF/SourceSansPro-SemiboldIt.otf %%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/fonts/source-sans-pro/README.md -%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/fonts/source-sans-pro/TTF/SourceSansPro-Black.ttf -%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/fonts/source-sans-pro/TTF/SourceSansPro-BlackIt.ttf %%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/fonts/source-sans-pro/TTF/SourceSansPro-Bold.ttf %%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/fonts/source-sans-pro/TTF/SourceSansPro-BoldIt.ttf -%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/fonts/source-sans-pro/TTF/SourceSansPro-ExtraLight.ttf -%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/fonts/source-sans-pro/TTF/SourceSansPro-ExtraLightIt.ttf %%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/fonts/source-sans-pro/TTF/SourceSansPro-It.ttf -%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/fonts/source-sans-pro/TTF/SourceSansPro-Light.ttf -%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/fonts/source-sans-pro/TTF/SourceSansPro-LightIt.ttf %%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/fonts/source-sans-pro/TTF/SourceSansPro-Regular.ttf -%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/fonts/source-sans-pro/TTF/SourceSansPro-Semibold.ttf -%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/fonts/source-sans-pro/TTF/SourceSansPro-SemiboldIt.ttf -%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/fonts/source-sans-pro/WOFF/OTF/SourceSansPro-Black.otf.woff -%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/fonts/source-sans-pro/WOFF/OTF/SourceSansPro-BlackIt.otf.woff %%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/fonts/source-sans-pro/WOFF/OTF/SourceSansPro-Bold.otf.woff %%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/fonts/source-sans-pro/WOFF/OTF/SourceSansPro-BoldIt.otf.woff -%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/fonts/source-sans-pro/WOFF/OTF/SourceSansPro-ExtraLight.otf.woff -%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/fonts/source-sans-pro/WOFF/OTF/SourceSansPro-ExtraLightIt.otf.woff %%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/fonts/source-sans-pro/WOFF/OTF/SourceSansPro-It.otf.woff -%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/fonts/source-sans-pro/WOFF/OTF/SourceSansPro-Light.otf.woff -%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/fonts/source-sans-pro/WOFF/OTF/SourceSansPro-LightIt.otf.woff %%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/fonts/source-sans-pro/WOFF/OTF/SourceSansPro-Regular.otf.woff -%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/fonts/source-sans-pro/WOFF/OTF/SourceSansPro-Semibold.otf.woff -%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/fonts/source-sans-pro/WOFF/OTF/SourceSansPro-SemiboldIt.otf.woff -%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/fonts/source-sans-pro/WOFF/TTF/SourceSansPro-Black.ttf.woff -%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/fonts/source-sans-pro/WOFF/TTF/SourceSansPro-BlackIt.ttf.woff %%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/fonts/source-sans-pro/WOFF/TTF/SourceSansPro-Bold.ttf.woff %%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/fonts/source-sans-pro/WOFF/TTF/SourceSansPro-BoldIt.ttf.woff -%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/fonts/source-sans-pro/WOFF/TTF/SourceSansPro-ExtraLight.ttf.woff -%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/fonts/source-sans-pro/WOFF/TTF/SourceSansPro-ExtraLightIt.ttf.woff %%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/fonts/source-sans-pro/WOFF/TTF/SourceSansPro-It.ttf.woff -%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/fonts/source-sans-pro/WOFF/TTF/SourceSansPro-Light.ttf.woff -%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/fonts/source-sans-pro/WOFF/TTF/SourceSansPro-LightIt.ttf.woff %%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/fonts/source-sans-pro/WOFF/TTF/SourceSansPro-Regular.ttf.woff -%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/fonts/source-sans-pro/WOFF/TTF/SourceSansPro-Semibold.ttf.woff -%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/fonts/source-sans-pro/WOFF/TTF/SourceSansPro-SemiboldIt.ttf.woff -%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/fonts/source-sans-pro/WOFF2/OTF/SourceSansPro-Black.otf.woff2 -%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/fonts/source-sans-pro/WOFF2/OTF/SourceSansPro-BlackIt.otf.woff2 %%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/fonts/source-sans-pro/WOFF2/OTF/SourceSansPro-Bold.otf.woff2 %%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/fonts/source-sans-pro/WOFF2/OTF/SourceSansPro-BoldIt.otf.woff2 -%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/fonts/source-sans-pro/WOFF2/OTF/SourceSansPro-ExtraLight.otf.woff2 -%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/fonts/source-sans-pro/WOFF2/OTF/SourceSansPro-ExtraLightIt.otf.woff2 %%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/fonts/source-sans-pro/WOFF2/OTF/SourceSansPro-It.otf.woff2 -%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/fonts/source-sans-pro/WOFF2/OTF/SourceSansPro-Light.otf.woff2 -%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/fonts/source-sans-pro/WOFF2/OTF/SourceSansPro-LightIt.otf.woff2 %%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/fonts/source-sans-pro/WOFF2/OTF/SourceSansPro-Regular.otf.woff2 -%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/fonts/source-sans-pro/WOFF2/OTF/SourceSansPro-Semibold.otf.woff2 -%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/fonts/source-sans-pro/WOFF2/OTF/SourceSansPro-SemiboldIt.otf.woff2 -%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/fonts/source-sans-pro/WOFF2/TTF/SourceSansPro-Black.ttf.woff2 -%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/fonts/source-sans-pro/WOFF2/TTF/SourceSansPro-BlackIt.ttf.woff2 %%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/fonts/source-sans-pro/WOFF2/TTF/SourceSansPro-Bold.ttf.woff2 %%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/fonts/source-sans-pro/WOFF2/TTF/SourceSansPro-BoldIt.ttf.woff2 -%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/fonts/source-sans-pro/WOFF2/TTF/SourceSansPro-ExtraLight.ttf.woff2 -%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/fonts/source-sans-pro/WOFF2/TTF/SourceSansPro-ExtraLightIt.ttf.woff2 %%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/fonts/source-sans-pro/WOFF2/TTF/SourceSansPro-It.ttf.woff2 -%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/fonts/source-sans-pro/WOFF2/TTF/SourceSansPro-Light.ttf.woff2 -%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/fonts/source-sans-pro/WOFF2/TTF/SourceSansPro-LightIt.ttf.woff2 %%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/fonts/source-sans-pro/WOFF2/TTF/SourceSansPro-Regular.ttf.woff2 -%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/fonts/source-sans-pro/WOFF2/TTF/SourceSansPro-Semibold.ttf.woff2 -%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/fonts/source-sans-pro/WOFF2/TTF/SourceSansPro-SemiboldIt.ttf.woff2 -%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/fonts/source-sans-pro/bower.json -%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/footer.inc %%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/footer_minified.inc +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/footer.inc %%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/frontendfooter.php %%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/frontendheader.php %%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/functions.php %%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/gruntfile.js -%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/header.inc %%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/header_minified.inc +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/header.inc +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/images/nexttab.png +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/images/prevtab.png +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/js/bootstrap-dialog.js %%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/js/bootstrap-select.js -%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/js/bootstrap-select.min.js -%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/js/dist/phpList_ui_bootstrap.js -%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/js/dist/phpList_ui_bootstrap.min.js -%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/js/jcarousellite_1.0.1.min.js +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/js/bootstrap-tagsinput.js +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/js/bootstrap-toggle.js +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/js/dist/phpList_ui_bootlist.js +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/js/dist/phpList_ui_bootlist.min.js %%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/js/jquery-1.12.1.min.js -%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/js/phpList3ToBootstrap.js +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/js/jquery.toggleText.js %%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/js/phplist.js +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/js/phpList3ToBootstrap.js +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/less/advice.less +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/less/base.less +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/less/bootstrap-tagsinput.less +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/less/legacy.less +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/less/navbar.less +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/less/sidebar.less +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/less/source-sans-pro.less +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/less/style.less +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/less/var.less +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/LICENSE %%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/logo.svg %%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/mainmenu.php -%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/onyx-rss.php %%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/package.json %%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/pages/dashboard.php -%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/pagetop.php %%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/pagetop_minified.php %%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/pagetop_minimal.php +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/pagetop.php %%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/publicpagetop.php -%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/rssfeed.php +%%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/README.md %%WWWDIR%%/lists/admin/ui/phplist-ui-bootlist/theme_info +%%WWWDIR%%/lists/admin/updatetlds.php %%WWWDIR%%/lists/admin/updatetranslation.php %%WWWDIR%%/lists/admin/upgrade.php %%WWWDIR%%/lists/admin/user.php %%WWWDIR%%/lists/admin/usercheck.php %%WWWDIR%%/lists/admin/userclicks.php -%%WWWDIR%%/lists/admin/userhistory.php %%WWWDIR%%/lists/admin/usermgt.php %%WWWDIR%%/lists/admin/users.php %%WWWDIR%%/lists/admin/viewmessage.php %%WWWDIR%%/lists/admin/viewtemplate.php %%WWWDIR%%/lists/admin/vote.php %%WWWDIR%%/lists/config/.htaccess -@sample %%WWWDIR%%/lists/config/config.php.sample %%WWWDIR%%/lists/config/config_extended.php +@sample %%WWWDIR%%/lists/config/config.php.sample %%WWWDIR%%/lists/dl.php %%WWWDIR%%/lists/images/branding.png %%WWWDIR%%/lists/images/busy/busy-phplist_alpha50-2.gif @@ -2804,8 +3378,8 @@ bin/phplist %%WWWDIR%%/lists/images/busy/busy-phplist_black.gif %%WWWDIR%%/lists/images/busy/busy-phplist_mix.gif %%WWWDIR%%/lists/images/info-icon.png -%%WWWDIR%%/lists/images/page_bk.png %%WWWDIR%%/lists/images/page_bk_nomenu.png +%%WWWDIR%%/lists/images/page_bk.png %%WWWDIR%%/lists/images/php-small-trans-light.png %%WWWDIR%%/lists/images/phplist-touch-icon.png %%WWWDIR%%/lists/images/phplist.ico @@ -2827,12 +3401,15 @@ bin/phplist %%WWWDIR%%/lists/styles/phplist.css %%WWWDIR%%/lists/styles/subscribe.css %%WWWDIR%%/lists/texts/.gitignore -%%WWWDIR%%/lists/texts/README.md +%%WWWDIR%%/lists/texts/.travis.yml %%WWWDIR%%/lists/texts/afrikaans.inc +%%WWWDIR%%/lists/texts/albanian.inc %%WWWDIR%%/lists/texts/arabic.inc %%WWWDIR%%/lists/texts/belgianflemish.inc +%%WWWDIR%%/lists/texts/bosnian.inc %%WWWDIR%%/lists/texts/bulgarian.inc %%WWWDIR%%/lists/texts/catalan.inc +%%WWWDIR%%/lists/texts/composer.json %%WWWDIR%%/lists/texts/croatian.inc %%WWWDIR%%/lists/texts/czech.inc %%WWWDIR%%/lists/texts/danish.inc @@ -2854,8 +3431,9 @@ bin/phplist %%WWWDIR%%/lists/texts/norwegian.inc %%WWWDIR%%/lists/texts/persian.inc %%WWWDIR%%/lists/texts/polish.inc -%%WWWDIR%%/lists/texts/portuguese.inc %%WWWDIR%%/lists/texts/portuguese_pt.inc +%%WWWDIR%%/lists/texts/portuguese.inc +%%WWWDIR%%/lists/texts/README.md %%WWWDIR%%/lists/texts/romanian.inc %%WWWDIR%%/lists/texts/russian.inc %%WWWDIR%%/lists/texts/serbian.inc diff --git a/mail/roundcube-login_info/Makefile b/mail/roundcube-login_info/Makefile index 6b1c76896ff..bde35e3ba6d 100644 --- a/mail/roundcube-login_info/Makefile +++ b/mail/roundcube-login_info/Makefile @@ -10,7 +10,7 @@ PKGNAMEPREFIX= roundcube- PKGNAMESUFFIX= ${PHP_PKGNAMESUFFIX} DISTNAME= ${PORTNAME}_rc0.5_v${DISTVERSION} -MAINTAINER= feld@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Roundcube login info plugin LICENSE= GPLv2 diff --git a/mail/roundcube-veximaccountadmin/Makefile b/mail/roundcube-veximaccountadmin/Makefile index faf1f31260a..f6ed67a80ea 100644 --- a/mail/roundcube-veximaccountadmin/Makefile +++ b/mail/roundcube-veximaccountadmin/Makefile @@ -10,7 +10,7 @@ PKGNAMEPREFIX= roundcube- PKGNAMESUFFIX= ${PHP_PKGNAMESUFFIX} DISTNAME= rcube_plg_veximaccountadmin -MAINTAINER= feld@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Roundcube vexim account admin plugin LICENSE= GPLv3 diff --git a/math/Makefile b/math/Makefile index 996699f06f2..bec57fc6e0b 100644 --- a/math/Makefile +++ b/math/Makefile @@ -112,6 +112,7 @@ SUBDIR += acalc SUBDIR += add SUBDIR += adept + SUBDIR += adol-c SUBDIR += algae SUBDIR += alglib SUBDIR += algotutor @@ -126,10 +127,8 @@ SUBDIR += arb SUBDIR += aribas SUBDIR += armadillo - SUBDIR += arpack SUBDIR += arpack++ SUBDIR += arpack-ng - SUBDIR += arpack-ng-mpich SUBDIR += aspcud SUBDIR += asymptote SUBDIR += atlas @@ -174,6 +173,7 @@ SUBDIR += cryptominisat SUBDIR += cvc3 SUBDIR += cvc4 + SUBDIR += deal.ii SUBDIR += diehard SUBDIR += dieharder SUBDIR += djbfft @@ -362,6 +362,7 @@ SUBDIR += mumps-edf SUBDIR += mumps-mpich SUBDIR += muparser + SUBDIR += nanoflann SUBDIR += naturalmath SUBDIR += nauty SUBDIR += ndiff @@ -686,12 +687,12 @@ SUBDIR += py-fiat SUBDIR += py-fpconst SUBDIR += py-gato + SUBDIR += py-gau2grid SUBDIR += py-gimmik SUBDIR += py-gmpy SUBDIR += py-gmpy2 SUBDIR += py-gnuplot SUBDIR += py-graphillion - SUBDIR += py-pygslodeiv2 SUBDIR += py-igakit SUBDIR += py-igraph SUBDIR += py-intspan @@ -722,6 +723,7 @@ SUBDIR += py-pybloom SUBDIR += py-pycosat SUBDIR += py-pygsl + SUBDIR += py-pygslodeiv2 SUBDIR += py-pyhull SUBDIR += py-pyipopt SUBDIR += py-pymc diff --git a/math/adol-c/Makefile b/math/adol-c/Makefile new file mode 100644 index 00000000000..43a475d0fb4 --- /dev/null +++ b/math/adol-c/Makefile @@ -0,0 +1,29 @@ +# $FreeBSD$ + +PORTNAME= adol-c +DISTVERSION= 2.6.3 +CATEGORIES= math +MASTER_SITES= https://www.coin-or.org/download/source/${PORTNAME:tu}/ +DISTNAME= ${PORTNAME:tu}-${DISTVERSION} + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Automatic differentiation library + +LICENSE= EPL +LICENSE_FILE= ${WRKSRC}/LICENSE + +BUILD_DEPENDS= bash:shells/bash +LIB_DEPENDS= libboost_system.so:devel/boost-libs + +USES= gmake libtool tar:tgz +GNU_CONFIGURE= yes +CONFIGURE_SHELL= ${LOCALBASE}/bin/bash +USE_LDCONFIG= yes + +OPTIONS_DEFINE= SPARSE # also uses AMPI, a seemingly obscure MPI implementation +OPTIONS_SUB= yes + +SPARSE_DESC= Build sparse drivers +SPARSE_CONFIGURE_ENABLE= sparse + +.include diff --git a/math/adol-c/distinfo b/math/adol-c/distinfo new file mode 100644 index 00000000000..9162fae9d29 --- /dev/null +++ b/math/adol-c/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1538635741 +SHA256 (ADOL-C-2.6.3.tgz) = 6ed74580695a0d2c960581e5430ebfcd380eb5da9337daf488bf2e89039e9c21 +SIZE (ADOL-C-2.6.3.tgz) = 2416928 diff --git a/math/adol-c/files/patch-configure b/math/adol-c/files/patch-configure new file mode 100644 index 00000000000..082a01ca56c --- /dev/null +++ b/math/adol-c/files/patch-configure @@ -0,0 +1,20 @@ +--- configure.orig 2018-10-04 07:11:41 UTC ++++ configure +@@ -16507,7 +16507,7 @@ _ACEOF + + + if test "x$ac_cv_sizeof_void_p" = "x8" ; then +- _lib=lib64 ++ _lib=lib + else + _lib=lib + fi +@@ -17513,7 +17513,7 @@ $as_echo_n "checking for boostlib >= $bo + libsubdirs="lib" + ax_arch=`uname -m` + case $ax_arch in +- x86_64) ++ amd64) + libsubdirs="lib64 libx32 lib lib64" + ;; + ppc64|s390x|sparc64|aarch64|ppc64le) diff --git a/math/adol-c/pkg-descr b/math/adol-c/pkg-descr new file mode 100644 index 00000000000..994376825b5 --- /dev/null +++ b/math/adol-c/pkg-descr @@ -0,0 +1,11 @@ +The package ADOL-C (Automatic Differentiation by OverLoading in C++) facilitates +the evaluation of first and higher derivatives of vector functions that are +defined by computer programs written in C or C++. The resulting derivative +evaluation routines may be called from C/C++, Fortran, or any other language +that can be linked with C. + +The numerical values of derivative vectors are obtained free of truncation +errors at a small multiple of the run time and randomly accessed memory of the +given function evaluation program. + +WWW: https://projects.coin-or.org/ADOL-C diff --git a/math/adol-c/pkg-plist b/math/adol-c/pkg-plist new file mode 100644 index 00000000000..273010ca89e --- /dev/null +++ b/math/adol-c/pkg-plist @@ -0,0 +1,37 @@ +include/adolc/adalloc.h +include/adolc/adolc.h +include/adolc/adolc_openmp.h +include/adolc/adolc_sparse.h +include/adolc/adouble.h +include/adolc/adoublecuda.h +include/adolc/adtl.h +include/adolc/adutils.h +include/adolc/adutilsc.h +include/adolc/advector.h +include/adolc/checkpointing.h +include/adolc/convolut.h +include/adolc/drivers/drivers.h +include/adolc/drivers/odedrivers.h +include/adolc/drivers/psdrivers.h +include/adolc/drivers/taylor.h +include/adolc/externfcts.h +include/adolc/externfcts2.h +include/adolc/fixpoint.h +include/adolc/fortutils.h +include/adolc/interfaces.h +include/adolc/internal/adolc_settings.h +include/adolc/internal/adubfunc.h +include/adolc/internal/common.h +include/adolc/internal/paramfunc.h +include/adolc/internal/usrparms.h +include/adolc/lie/drivers.h +include/adolc/param.h +include/adolc/revolve.h +%%SPARSE%%include/adolc/sparse/sparse_fo_rev.h +%%SPARSE%%include/adolc/sparse/sparsedrivers.h +include/adolc/tapedoc/tapedoc.h +include/adolc/taping.h +lib/libadolc.so +lib/libadolc.so.2 +lib/libadolc.so.2.1.0 +libdata/pkgconfig/adolc.pc diff --git a/math/armadillo/Makefile b/math/armadillo/Makefile index d70fe73f556..8588e941506 100644 --- a/math/armadillo/Makefile +++ b/math/armadillo/Makefile @@ -2,7 +2,7 @@ PORTNAME= armadillo PORTVERSION= 9.100.5 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= math MASTER_SITES= SF/arma @@ -16,7 +16,7 @@ BROKEN_powerpc64= Does not build LIB_DEPENDS= libboost_date_time.so:devel/boost-libs \ libopenblasp.so:math/openblas \ - libarpack.so:math/arpack \ + libarpack.so:math/arpack-ng \ libhdf5.so:science/hdf5 \ libsuperlu.so:math/superlu \ libsz.so:science/szip diff --git a/math/arpack++/Makefile b/math/arpack++/Makefile index 49645508f50..8d3eea58ece 100644 --- a/math/arpack++/Makefile +++ b/math/arpack++/Makefile @@ -3,7 +3,7 @@ PORTNAME= arpack++ PORTVERSION= 1.2 -PORTREVISION= 9 +PORTREVISION= 10 CATEGORIES= math MASTER_SITES= http://www.ime.unicamp.br/%7echico/arpack++/ DISTNAME= ${PORTNAME} @@ -17,7 +17,7 @@ PATCH_DIST_STRIP= -p1 MAINTAINER= ports@FreeBSD.org COMMENT= ARPACK++ is an object-oriented version of the ARPACK package -LIB_DEPENDS= libarpack.so:math/arpack \ +LIB_DEPENDS= libarpack.so:math/arpack-ng \ libsuperlu.so:math/superlu \ libumfpack.so:math/suitesparse diff --git a/math/arpack-ng-mpich/Makefile b/math/arpack-ng-mpich/Makefile deleted file mode 100644 index 967988e3004..00000000000 --- a/math/arpack-ng-mpich/Makefile +++ /dev/null @@ -1,22 +0,0 @@ -# Created by: Thierry Thomas -# $FreeBSD$ - -PORTNAME= arpack-ng -PORTREVISION= 2 -PKGNAMESUFFIX= -mpich - -COMMENT= Revised Argand library for solving large-scale eigenvalue problems with MPI support - -LIB_DEPENDS+= libmpich.so:net/mpich - -MASTERDIR= ${.CURDIR}/../../math/arpack-ng - -MPICH_ARG= --enable-mpi -CONFLICTS_INSTALL= arpack-ng-3.* - -PLIST_FILES+= lib/libparpack.a \ - lib/libparpack.so \ - lib/libparpack.so.2 \ - lib/libparpack.so.2.0.0 - -.include "${MASTERDIR}/Makefile" diff --git a/math/arpack-ng/Makefile b/math/arpack-ng/Makefile index 5f7f852a1ce..541168a8102 100644 --- a/math/arpack-ng/Makefile +++ b/math/arpack-ng/Makefile @@ -2,36 +2,37 @@ # $FreeBSD$ PORTNAME= arpack-ng -DISTVERSION= 3.5.0 -PORTREVISION= 2 +DISTVERSION= 3.6.3 +PORTREVISION= 1 CATEGORIES= math -MAINTAINER= ports@FreeBSD.org -COMMENT?= Revised Argand library for solving large-scale eigenvalue problems +MAINTAINER= yuri@FreeBSD.org +COMMENT= Revised Argand library for solving large-scale eigenvalue problems LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/COPYING +LIB_DEPENDS= libmpich.so:net/mpich # MPI is incremental: it adds the libparpack.so lib, it is a candidate for a sub-package + USES= autoreconf:build fortran libtool USE_GITHUB= yes GH_ACCOUNT= opencollab GNU_CONFIGURE= yes CONFIGURE_ARGS= --with-blas="${BLAS}" \ --with-lapack="${LAPACK}" \ - ${MPICH_ARG} -MPICH_ARG?= --disable-mpi + --enable-mpi \ + --disable-static \ + --enable-icb LDFLAGS+= -L${LOCALBASE}/lib TEST_TARGET= check USE_LDCONFIG= yes +PORTDOCS= * PORTEXAMPLES= * -CONFLICTS= arpack-[0-9]* -CONFLICTS_INSTALL?= arpack-ng-mpich-3.* -SLAVEDIRS= math/arpack-ng-mpich +CONFLICTS_INSTALL= arpack OPTIONS_DEFINE= DOCS EXAMPLES -OPTIONS_SUB= yes WITH_BLAS?= blas @@ -53,8 +54,7 @@ IGNORE= unknown value of WITH_BLAS: ${WITH_BLAS} .endif post-patch: - @${REINPLACE_CMD} -Ee 's|\(libdir\)(/pkgconfig)|(prefix)/libdata\1|' \ - ${WRKSRC}/Makefile.am + @${REINPLACE_CMD} -Ee 's|\(libdir\)(/pkgconfig)|(prefix)/libdata\1|' ${WRKSRC}/Makefile.am pre-configure: @cd ${WRKSRC}; ./bootstrap @@ -64,8 +64,8 @@ pre-configure: ${WRKSRC}/arpack.pc.in \ ${WRKSRC}/TESTS/Makefile.in -post-build: - @cd ${WRKSRC}/SRC/.libs; ${STRIP_CMD} libarpack.so.*.* +post-install: + @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/lib*arpack.so.*.* post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} diff --git a/math/arpack-ng/distinfo b/math/arpack-ng/distinfo index 84e2728686b..a333306fc3f 100644 --- a/math/arpack-ng/distinfo +++ b/math/arpack-ng/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1518478796 -SHA256 (opencollab-arpack-ng-3.5.0_GH0.tar.gz) = 50f7a3e3aec2e08e732a487919262238f8504c3ef927246ec3495617dde81239 -SIZE (opencollab-arpack-ng-3.5.0_GH0.tar.gz) = 949853 +TIMESTAMP = 1538675107 +SHA256 (opencollab-arpack-ng-3.6.3_GH0.tar.gz) = 64f3551e5a2f8497399d82af3076b6a33bf1bc95fc46bbcabe66442db366f453 +SIZE (opencollab-arpack-ng-3.6.3_GH0.tar.gz) = 970355 diff --git a/math/arpack-ng/pkg-plist b/math/arpack-ng/pkg-plist index 9eb849df2b3..66b739c1533 100644 --- a/math/arpack-ng/pkg-plist +++ b/math/arpack-ng/pkg-plist @@ -1,11 +1,17 @@ -lib/libarpack.a +include/arpack/arpack.h +include/arpack/arpack.hpp +include/arpack/debug.h +include/arpack/debug_c.h +include/arpack/debug_c.hpp +include/arpack/parpack.h +include/arpack/parpack.hpp +include/arpack/stat.h +include/arpack/stat_c.h +include/arpack/stat_c.hpp lib/libarpack.so lib/libarpack.so.2 lib/libarpack.so.2.0.0 +lib/libparpack.so +lib/libparpack.so.2 +lib/libparpack.so.2.0.0 libdata/pkgconfig/arpack.pc -%%DOCS%%%%DOCSDIR%%/README -%%DOCS%%%%DOCSDIR%%/debug.doc -%%DOCS%%%%DOCSDIR%%/ex-complex.doc -%%DOCS%%%%DOCSDIR%%/ex-nonsym.doc -%%DOCS%%%%DOCSDIR%%/ex-sym.doc -%%DOCS%%%%DOCSDIR%%/stat.doc diff --git a/math/arpack/Makefile b/math/arpack/Makefile deleted file mode 100644 index f9ec4fc4ccd..00000000000 --- a/math/arpack/Makefile +++ /dev/null @@ -1,204 +0,0 @@ -# Created by: Pedro F. Giffuni -# $FreeBSD$ - -PORTNAME= arpack -PORTVERSION= 96 -PORTREVISION= 18 -CATEGORIES= math -MASTER_SITES= http://www.caam.rice.edu/software/ARPACK/SRC/ -DISTFILES= ${PORTNAME}${PORTVERSION}.tar.gz patch.tar.gz -DIST_SUBDIR= arpack -EXTRACT_ONLY= ${PORTNAME}${PORTVERSION}.tar.gz - -MAINTAINER= ports@FreeBSD.org -COMMENT= Argand Library: large eigenvalue subroutines (serial version) - -BUILD_DEPENDS= tradcpp:devel/tradcpp - -CONFLICTS= arpack-ng-[0-9]* -CPP= tradcpp -FFLAGS+= -ffixed-line-length-none -LDFLAGS+= -L${LOCALBASE}/lib -MAKE_JOBS_UNSAFE= yes -USES= fortran -USE_LDCONFIG= yes -WRKSRC= ${WRKDIR}/ARPACK - -# The following lapack symbols in arpack are renamed to avoid conflicts with other -# lapack libraries: -RENAMED_SYMBOLS= cgbtf2 cgbtrf cgbtrs cgeqr2 cgttrf cgttrs clacgv \ - clacon clacpy cladiv clahqr clange clanhs clarf \ - clarfg clarnv clartg clascl claset classq claswp \ - clatrs cmach crot ctrevc ctrexc ctrsen ctrsyl cunm2r \ - dgbtf2 dgbtrf dgbtrs dgeqr2 dgttrf dgttrs dlabad \ - dlacon dlacpy dladiv dlae2 dlaev2 dlaexc dlagtm \ - dlahqr dlaln2 dlamc1 dlamc2 dlamc3 dlamc4 dlamc5 \ - dlamch dlange dlanhs dlanst dlanv2 dlaptm dlapy2 \ - dlapy3 dlaran dlarf dlarfg dlarfx dlarnd dlarnv \ - dlartg dlaruv dlascl dlaset dlasr dlasrt dlassq \ - dlaswp dlasy2 dorm2r dpttrf dpttrs dsteqr dtrevc \ - dtrexc dtrsen dtrsyl dzsum1 icmax1 ilaenv izmax1 \ - lsame lsamen scsum1 second sgbtf2 sgbtrf sgbtrs \ - sgeqr2 sgttrf sgttrs slabad slacon slacpy sladiv \ - slae2 slaev2 slaexc slagtm slahqr slaln2 slamc1 \ - slamc2 slamc3 slamc4 slamc5 slamch slange slanhs \ - slanst slanv2 slaptm slapy2 slapy3 slaran slarf \ - slarfg slarfx slarnd slarnv slartg slaruv slascl \ - slaset slasr slasrt slassq slaswp slasy2 sorm2r \ - spttrf spttrs ssteqr strevc strexc strsen strsyl \ - xerbla xlaenv zgbtf2 zgbtrf zgbtrs zgeqr2 zgttrf \ - zgttrs zlacgv zlacon zlacpy zladiv zlahqr zlange \ - zlanhs zlarf zlarfg zlarnv zlartg zlascl zlaset \ - zlassq zlaswp zlatrs zmach zrot ztrevc ztrexc ztrsen \ - ztrsyl zunm2r - -BANDTESTS= ssbdr1 ssbdr2 ssbdr3 ssbdr4 ssbdr5 ssbdr6 \ - dsbdr1 dsbdr2 dsbdr3 dsbdr4 dsbdr5 dsbdr6 \ - snbdr1 snbdr2 snbdr3 snbdr4 snbdr5 snbdr6 \ - dnbdr1 dnbdr2 dnbdr3 dnbdr4 dnbdr5 dnbdr6 \ - cnbdr1 cnbdr2 cnbdr3 cnbdr4 \ - znbdr1 znbdr2 znbdr3 znbdr4 -COMPLEXTESTS= cndrv1 cndrv2 cndrv3 cndrv4 \ - zndrv1 zndrv2 zndrv3 zndrv4 -NONSYMTESTS= sndrv1 sndrv2 sndrv3 sndrv4 sndrv5 sndrv6 \ - dndrv1 dndrv2 dndrv3 dndrv4 dndrv5 dndrv6 -SIMPLETESTS= sssimp dssimp snsimp dnsimp cnsimp znsimp -SVDTESTS= ssvd dsvd -SYMTESTS= ssdrv1 ssdrv2 ssdrv3 ssdrv4 ssdrv5 ssdrv6 \ - dsdrv1 dsdrv2 dsdrv3 dsdrv4 dsdrv5 dsdrv6 - -OPTIONS_DEFINE= DOCS - -.include - -.if ${PORT_OPTIONS:MDOCS} -DISTFILES+= ug.ps.gz -.endif - -.if exists(${LOCALBASE}/lib/libatlas.so) -WITH_BLAS?= atlas -.else -WITH_BLAS?= reference -.endif - -.if ${WITH_BLAS} == atlas -LIB_DEPENDS+= libatlas.so:math/atlas -BLAS?= -lf77blas -.else -LIB_DEPENDS+= libblas.so:math/blas -BLAS?= -lblas -.endif - -.if ${ARCH} == "sparc64" -PICFLAG?= -fPIC -.else -PICFLAG?= -fpic -.endif - -post-extract: - @${TAR} -C ${WRKDIR} -xzf ${_DISTDIR}/patch.tar.gz - @${GZIP_CMD} ${WRKSRC}/DOCUMENTS/ex-*.doc - -post-patch: - @${REINPLACE_CMD} -E \ - -e '/^(home|AR|FC|LDFLAGS|MAKE|PLAT|RANLIB|SHELL)[[:blank:]]+=/d' \ - -e '/^ARPACKLIB[[:blank:]]+=/s/_\$$\(PLAT\)//' \ - -e '\|^BLASLIB[[:blank:]]+=|s|=.*|= ${LDFLAGS} ${BLAS}|' \ - -e '/^DIRS[[:blank:]]+=/s/\$$\(BLASdir\)//' \ - -e '\|^FFLAGS[[:blank:]]+=|s|=.*|= ${FFLAGS} $${PICFLAG}|' \ - ${WRKSRC}/ARmake.inc - @${CP} -R ${WRKSRC} ${WRKSRC}_SHARED - @${ECHO_CMD} ${RENAMED_SYMBOLS} | ${AWK} \ - 'BEGIN { printf "%s\n\n%s\t%s\n%s\t%s\n\n", \ - "/* arpack symbol renaming preprocessor macros, C interface */", \ - "#ifndef", "_ARPACK_COMPAT_C_H_", \ - "#define", "_ARPACK_COMPAT_C_H_" \ - > "${WRKDIR}/arpack_compat_c.h" ; \ - printf "%s\n\n%s\t%s\n%s\t%s\n\n", \ - "/* arpack symbol renaming preprocessor macros, FORTRAN interface */", \ - "#ifndef", "_ARPACK_COMPAT_F_H_", \ - "#define", "_ARPACK_COMPAT_F_H_" \ - > "${WRKDIR}/arpack_compat_f.h" } ; \ - { for (i = 1; i <= NF; i++) { \ - printf "%s\t%s%s\t%s%s%s\n", "#define", $$i, "_", \ - "arpack_", $$i, "_" > "${WRKDIR}/arpack_compat_c.h" ; \ - printf "%s\t%s\t%s%s\n%s\t%s\t%s%s\n", "#define", \ - toupper($$i), "ARPACK_", toupper($$i), "#define", $$i, \ - "ARPACK_", toupper($$i) \ - > "${WRKDIR}/arpack_compat_f.h" } } ; \ - END { print "\n#endif" > "${WRKDIR}/arpack_compat_c.h" ; \ - print "\n#endif" > "${WRKDIR}/arpack_compat_f.h" }' - - -pre-build: - @${ECHO_CMD} "Renaming LAPACK functions ..." - @for f in `${FIND} ${WRKDIR} -type f -mindepth 2 -name '*.f'` ; do \ - ${MV} $${f} $${f}.unproc ; \ - ${CPP} -C -I${WRKDIR} -imacros arpack_compat_f.h \ - $${f}.unproc $${f} ; done - -do-build: - @cd ${WRKSRC} ; ${SETENV} ${MAKE_ENV} \ - PICFLAG= home="${WRKSRC}" \ - ${MAKE} ${_MAKE_JOBS} ${MAKE_ARGS} ${ALL_TARGET} - @cd ${WRKSRC}_SHARED ; ${SETENV} ${MAKE_ENV} \ - PICFLAG=${PICFLAG} home="${WRKSRC}_SHARED" \ - ${MAKE} ${_MAKE_JOBS} ${MAKE_ARGS} ${ALL_TARGET} ; \ - ${FC} ${FFLAGS} ${PICFLAG} ${LDFLAGS} -shared \ - -o libarpack.so.1 -Wl,-x -Wl,-soname,libarpack.so.1 \ - -Wl,--whole-archive libarpack.a -Wl,--no-whole-archive - -do-install: - @${INSTALL_DATA} ${FILESDIR}/arpack.h ${WRKDIR}/arpack_compat_c.h \ - ${WRKDIR}/arpack_compat_f.h ${STAGEDIR}${PREFIX}/include - @${INSTALL_DATA} ${WRKSRC}/libarpack.a ${STAGEDIR}${PREFIX}/lib - @${INSTALL_DATA} -s ${WRKSRC}_SHARED/libarpack.so.1 ${STAGEDIR}${PREFIX}/lib - @${LN} -sf libarpack.so.1 ${STAGEDIR}${PREFIX}/lib/libarpack.so -.if ${PORT_OPTIONS:MDOCS} - @${MKDIR} ${STAGEDIR}${DOCSDIR} - @${INSTALL_DATA} ${WRKSRC}/DOCUMENTS/ex-*.doc.gz ${STAGEDIR}${DOCSDIR} - @${INSTALL_DATA} ${DISTDIR}/${DIST_SUBDIR}/ug.ps.gz ${STAGEDIR}${DOCSDIR} -.endif - -.if defined(MAINTAINER_MODE) -check regression-test test: simpletest -.endif - -simpletest: build - @cd ${WRKSRC}/EXAMPLES/SIMPLE ; ${SETENV} ${MAKE_ENV} \ - PICFLAG= home="${WRKSRC}" \ - ${MAKE} ${_MAKE_JOBS} ${MAKE_ARGS} simple ; \ - ${SIMPLETESTS:S|^|./|:S|$| ; |} - @cd ${WRKSRC}_SHARED/EXAMPLES/SIMPLE ; ${SETENV} ${MAKE_ENV} \ - PICFLAG=${PICFLAG} home="${WRKSRC}_SHARED" \ - ${MAKE} ${_MAKE_JOBS} ${MAKE_ARGS} simple ; \ - ${SIMPLETESTS:S|^|./|:S|$| ; |} - -fulltest: fulltest-static fulltest-shared - -fulltest-static: lapack-drivers-static -.for d in BAND COMPLEX NONSYM SVD SYM - @cd ${WRKSRC}/EXAMPLES/${d} ; ${SETENV} ${MAKE_ENV} \ - PICFLAG= home="${WRKSRC}" \ - ${MAKE} ${_MAKE_JOBS} ${MAKE_ARGS} ${${d}TESTS} ; \ - ${${d}TESTS:S|^|./|:S|$| ; |} -.endfor - -fulltest-shared: lapack-drivers-shared -.for d in BAND COMPLEX NONSYM SIMPLE SVD SYM - @cd ${WRKSRC}_SHARED/EXAMPLES/${d} ; ${SETENV} ${MAKE_ENV} \ - PICFLAG=${PICFLAG} home="${WRKSRC}_SHARED" \ - ${MAKE} ${_MAKE_JOBS} ${MAKE_ARGS} ${${d}TESTS} ; \ - ${${d}TESTS:S|^|./|:S|$| ; |} -.endfor - -lapack-drivers-static: build - @cd ${WRKSRC}/LAPACK ; ${SETENV} ${MAKE_ENV} \ - PICFLAG= home="${WRKSRC}" \ - ${MAKE} ${_MAKE_JOBS} ${MAKE_ARGS} sdrv ddrv cdrv zdrv - -lapack-drivers-shared: build - @cd ${WRKSRC}_SHARED/LAPACK ; ${SETENV} ${MAKE_ENV} \ - PICFLAG=${PICFLAG} home="${WRKSRC}_SHARED" \ - ${MAKE} ${_MAKE_JOBS} ${MAKE_ARGS} sdrv ddrv cdrv zdrv - -.include diff --git a/math/arpack/distinfo b/math/arpack/distinfo deleted file mode 100644 index 82199882906..00000000000 --- a/math/arpack/distinfo +++ /dev/null @@ -1,6 +0,0 @@ -SHA256 (arpack/arpack96.tar.gz) = c6a47eca30a256cbae60e69c606251b84b6a0f352ba527b2dcbd4789ce85ecfc -SIZE (arpack/arpack96.tar.gz) = 636865 -SHA256 (arpack/patch.tar.gz) = af8914d60af47e49fbad55812d0a5d0a7040fba90c93e5ef1a8d88d32027d3ad -SIZE (arpack/patch.tar.gz) = 226473 -SHA256 (arpack/ug.ps.gz) = ff1faac74bfc42442955906132756ecd7f0034803898d507dbd1bc960f6f4ab0 -SIZE (arpack/ug.ps.gz) = 248543 diff --git a/math/arpack/files/arpack.h b/math/arpack/files/arpack.h deleted file mode 100644 index 5ffc7bffc8f..00000000000 --- a/math/arpack/files/arpack.h +++ /dev/null @@ -1,429 +0,0 @@ -#ifndef _ARPACK_H_ -#define _ARPACK_H_ -/* for use with f2c.h or equivalent */ - -extern int caxpy_(integer *n, complex *ca, complex *cx, integer *incx, complex *cy, integer *incy); -extern int ccopy_(integer *n, complex *cx, integer *incx, complex *cy, integer *incy); -extern C_f cdotc_(complex * ret_val, integer *n, complex *cx, integer *incx, complex *cy, integer *incy); -extern C_f cdotu_(complex * ret_val, integer *n, complex *cx, integer *incx, complex *cy, integer *incy); -extern int cgbmv_(char *trans, integer *m, integer *n, integer *kl, integer *ku, complex *alpha, complex *a, integer *lda, complex *x, integer *incx, complex *beta, complex *y, integer *incy, ftnlen trans_len); -extern int arpack_cgbtf2_(integer *m, integer *n, integer *kl, integer *ku, complex *ab, integer *ldab, integer *ipiv, integer *info); -extern int arpack_cgbtrf_(integer *m, integer *n, integer *kl, integer *ku, complex *ab, integer *ldab, integer *ipiv, integer *info); -extern int arpack_cgbtrs_(char *trans, integer *n, integer *kl, integer *ku, integer *nrhs, complex *ab, integer *ldab, integer *ipiv, complex *b, integer *ldb, integer *info, ftnlen trans_len); -extern int cgemm_(char *transa, char *transb, integer *m, integer *n, integer *k, complex *alpha, complex *a, integer *lda, complex *b, integer *ldb, complex *beta, complex *c__, integer *ldc, ftnlen transa_len, ftnlen transb_len); -extern int cgemv_(char *trans, integer *m, integer *n, complex *alpha, complex *a, integer *lda, complex *x, integer *incx, complex *beta, complex *y, integer *incy, ftnlen trans_len); -extern int arpack_cgeqr2_(integer *m, integer *n, complex *a, integer *lda, complex *tau, complex *work, integer *info); -extern int cgerc_(integer *m, integer *n, complex *alpha, complex *x, integer *incx, complex *y, integer *incy, complex *a, integer *lda); -extern int cgeru_(integer *m, integer *n, complex *alpha, complex *x, integer *incx, complex *y, integer *incy, complex *a, integer *lda); -extern int cgetv0_(integer *ido, char *bmat, integer *itry, logical *initv, integer *n, integer *j, complex *v, integer *ldv, complex *resid, real *rnorm, integer *ipntr, complex *workd, integer *ierr, ftnlen bmat_len); -/* comlen debug_ 96 */ -/* comlen timing_ 124 */ -extern int arpack_cgttrf_(integer *n, complex *dl, complex *d__, complex *du, complex *du2, integer *ipiv, integer *info); -extern int arpack_cgttrs_(char *trans, integer *n, integer *nrhs, complex *dl, complex *d__, complex *du, complex *du2, integer *ipiv, complex *b, integer *ldb, integer *info, ftnlen trans_len); -extern int arpack_clacgv_(integer *n, complex *x, integer *incx); -extern int arpack_clacon_(integer *n, complex *v, complex *x, real *est, integer *kase); -extern int arpack_clacpy_(char *uplo, integer *m, integer *n, complex *a, integer *lda, complex *b, integer *ldb, ftnlen uplo_len); -extern C_f arpack_cladiv_(complex * ret_val, complex *x, complex *y); -extern int arpack_clahqr_(logical *wantt, logical *wantz, integer *n, integer *ilo, integer *ihi, complex *h__, integer *ldh, complex *w, integer *iloz, integer *ihiz, complex *z__, integer *ldz, integer *info); -extern E_f arpack_clange_(char *norm, integer *m, integer *n, complex *a, integer *lda, real *work, ftnlen norm_len); -extern E_f arpack_clanhs_(char *norm, integer *n, complex *a, integer *lda, real *work, ftnlen norm_len); -extern int arpack_clarf_(char *side, integer *m, integer *n, complex *v, integer *incv, complex *tau, complex *c__, integer *ldc, complex *work, ftnlen side_len); -extern int arpack_clarfg_(integer *n, complex *alpha, complex *x, integer *incx, complex *tau); -extern int arpack_clarnv_(integer *idist, integer *iseed, integer *n, complex *x); -extern int arpack_clartg_(complex *f, complex *g, real *cs, complex *sn, complex *r__); -extern int arpack_clascl_(char *type__, integer *kl, integer *ku, real *cfrom, real *cto, integer *m, integer *n, complex *a, integer *lda, integer *info, ftnlen type_len); -extern int arpack_claset_(char *uplo, integer *m, integer *n, complex *alpha, complex *beta, complex *a, integer *lda, ftnlen uplo_len); -extern int arpack_classq_(integer *n, complex *x, integer *incx, real *scale, real *sumsq); -extern int arpack_claswp_(integer *n, complex *a, integer *lda, integer *k1, integer *k2, integer *ipiv, integer *incx); -extern int arpack_clatrs_(char *uplo, char *trans, char *diag, char *normin, integer *n, complex *a, integer *lda, complex *x, real *scale, real *cnorm, integer *info, ftnlen uplo_len, ftnlen trans_len, ftnlen diag_len, ftnlen normin_len); -extern E_f arpack_cmach_(integer *job); -extern int cnaitr_(integer *ido, char *bmat, integer *n, integer *k, integer *np, integer *nb, complex *resid, real *rnorm, complex *v, integer *ldv, complex *h__, integer *ldh, integer *ipntr, complex *workd, integer *info, ftnlen bmat_len); -/* comlen debug_ 96 */ -/* comlen timing_ 124 */ -extern int cnapps_(integer *n, integer *kev, integer *np, complex *shift, complex *v, integer *ldv, complex *h__, integer *ldh, complex *resid, complex *q, integer *ldq, complex *workl, complex *workd); -/* comlen debug_ 96 */ -/* comlen timing_ 124 */ -extern int cnaup2_(integer *ido, char *bmat, integer *n, char *which, integer *nev, integer *np, real *tol, complex *resid, integer *mode, integer *iupd, integer *ishift, integer *mxiter, complex *v, integer *ldv, complex *h__, integer *ldh, complex *ritz, complex *bounds, complex *q, integer *ldq, complex *workl, integer *ipntr, complex *workd, real *rwork, integer *info, ftnlen bmat_len, ftnlen which_len); -/* comlen debug_ 96 */ -/* comlen timing_ 124 */ -extern int cnaupd_(integer *ido, char *bmat, integer *n, char *which, integer *nev, real *tol, complex *resid, integer *ncv, complex *v, integer *ldv, integer *iparam, integer *ipntr, complex *workd, complex *workl, integer *lworkl, real *rwork, integer *info, ftnlen bmat_len, ftnlen which_len); -/* comlen debug_ 96 */ -/* comlen timing_ 124 */ -extern int cneigh_(real *rnorm, integer *n, complex *h__, integer *ldh, complex *ritz, complex *bounds, complex *q, integer *ldq, complex *workl, real *rwork, integer *ierr); -/* comlen debug_ 96 */ -/* comlen timing_ 124 */ -extern int cneupd_(logical *rvec, char *howmny, logical *select, complex *d__, complex *z__, integer *ldz, complex *sigma, complex *workev, char *bmat, integer *n, char *which, integer *nev, real *tol, complex *resid, integer *ncv, complex *v, integer *ldv, integer *iparam, integer *ipntr, complex *workd, complex *workl, integer *lworkl, real *rwork, integer *info, ftnlen howmny_len, ftnlen bmat_len, ftnlen which_len); -/* comlen debug_ 96 */ -/* comlen timing_ 124 */ -extern int cngets_(integer *ishift, char *which, integer *kev, integer *np, complex *ritz, complex *bounds, ftnlen which_len); -/* comlen debug_ 96 */ -/* comlen timing_ 124 */ -extern int arpack_crot_(integer *n, complex *cx, integer *incx, complex *cy, integer *incy, real *c__, complex *s); -extern int cscal_(integer *n, complex *ca, complex *cx, integer *incx); -extern int csortc_(char *which, logical *apply, integer *n, complex *x, complex *y, ftnlen which_len); -extern int csscal_(integer *n, real *sa, complex *cx, integer *incx); -extern int cstatn_(); -/* comlen timing_ 124 */ -extern int cswap_(integer *n, complex *cx, integer *incx, complex *cy, integer *incy); -extern int ctbsv_(char *uplo, char *trans, char *diag, integer *n, integer *k, complex *a, integer *lda, complex *x, integer *incx, ftnlen uplo_len, ftnlen trans_len, ftnlen diag_len); -extern int arpack_ctrevc_(char *side, char *howmny, logical *select, integer *n, complex *t, integer *ldt, complex *vl, integer *ldvl, complex *vr, integer *ldvr, integer *mm, integer *m, complex *work, real *rwork, integer *info, ftnlen side_len, ftnlen howmny_len); -extern int arpack_ctrexc_(char *compq, integer *n, complex *t, integer *ldt, complex *q, integer *ldq, integer *ifst, integer *ilst, integer *info, ftnlen compq_len); -extern int ctrmm_(char *side, char *uplo, char *transa, char *diag, integer *m, integer *n, complex *alpha, complex *a, integer *lda, complex *b, integer *ldb, ftnlen side_len, ftnlen uplo_len, ftnlen transa_len, ftnlen diag_len); -extern int arpack_ctrsen_(char *job, char *compq, logical *select, integer *n, complex *t, integer *ldt, complex *q, integer *ldq, complex *w, integer *m, real *s, real *sep, complex *work, integer *lwork, integer *info, ftnlen job_len, ftnlen compq_len); -extern int ctrsm_(char *side, char *uplo, char *transa, char *diag, integer *m, integer *n, complex *alpha, complex *a, integer *lda, complex *b, integer *ldb, ftnlen side_len, ftnlen uplo_len, ftnlen transa_len, ftnlen diag_len); -extern int ctrsv_(char *uplo, char *trans, char *diag, integer *n, complex *a, integer *lda, complex *x, integer *incx, ftnlen uplo_len, ftnlen trans_len, ftnlen diag_len); -extern int arpack_ctrsyl_(char *trana, char *tranb, integer *isgn, integer *m, integer *n, complex *a, integer *lda, complex *b, integer *ldb, complex *c__, integer *ldc, real *scale, integer *info, ftnlen trana_len, ftnlen tranb_len); -extern int arpack_cunm2r_(char *side, char *trans, integer *m, integer *n, integer *k, complex *a, integer *lda, complex *tau, complex *c__, integer *ldc, complex *work, integer *info, ftnlen side_len, ftnlen trans_len); -extern doublereal dasum_(integer *n, doublereal *dx, integer *incx); -extern int daxpy_(integer *n, doublereal *da, doublereal *dx, integer *incx, doublereal *dy, integer *incy); -extern int dcopy_(integer *n, doublereal *dx, integer *incx, doublereal *dy, integer *incy); -extern doublereal ddot_(integer *n, doublereal *dx, integer *incx, doublereal *dy, integer *incy); -extern int dgbmv_(char *trans, integer *m, integer *n, integer *kl, integer *ku, doublereal *alpha, doublereal *a, integer *lda, doublereal *x, integer *incx, doublereal *beta, doublereal *y, integer *incy, ftnlen trans_len); -extern int arpack_dgbtf2_(integer *m, integer *n, integer *kl, integer *ku, doublereal *ab, integer *ldab, integer *ipiv, integer *info); -extern int arpack_dgbtrf_(integer *m, integer *n, integer *kl, integer *ku, doublereal *ab, integer *ldab, integer *ipiv, integer *info); -extern int arpack_dgbtrs_(char *trans, integer *n, integer *kl, integer *ku, integer *nrhs, doublereal *ab, integer *ldab, integer *ipiv, doublereal *b, integer *ldb, integer *info, ftnlen trans_len); -extern int dgemm_(char *transa, char *transb, integer *m, integer *n, integer *k, doublereal *alpha, doublereal *a, integer *lda, doublereal *b, integer *ldb, doublereal *beta, doublereal *c__, integer *ldc, ftnlen transa_len, ftnlen transb_len); -extern int dgemv_(char *trans, integer *m, integer *n, doublereal *alpha, doublereal *a, integer *lda, doublereal *x, integer *incx, doublereal *beta, doublereal *y, integer *incy, ftnlen trans_len); -extern int arpack_dgeqr2_(integer *m, integer *n, doublereal *a, integer *lda, doublereal *tau, doublereal *work, integer *info); -extern int dger_(integer *m, integer *n, doublereal *alpha, doublereal *x, integer *incx, doublereal *y, integer *incy, doublereal *a, integer *lda); -extern int dgetv0_(integer *ido, char *bmat, integer *itry, logical *initv, integer *n, integer *j, doublereal *v, integer *ldv, doublereal *resid, doublereal *rnorm, integer *ipntr, doublereal *workd, integer *ierr, ftnlen bmat_len); -/* comlen debug_ 96 */ -/* comlen timing_ 124 */ -extern int arpack_dgttrf_(integer *n, doublereal *dl, doublereal *d__, doublereal *du, doublereal *du2, integer *ipiv, integer *info); -extern int arpack_dgttrs_(char *trans, integer *n, integer *nrhs, doublereal *dl, doublereal *d__, doublereal *du, doublereal *du2, integer *ipiv, doublereal *b, integer *ldb, integer *info, ftnlen trans_len); -extern int arpack_dlabad_(doublereal *small, doublereal *large); -extern int arpack_dlacon_(integer *n, doublereal *v, doublereal *x, integer *isgn, doublereal *est, integer *kase); -extern int arpack_dlacpy_(char *uplo, integer *m, integer *n, doublereal *a, integer *lda, doublereal *b, integer *ldb, ftnlen uplo_len); -extern int arpack_dladiv_(doublereal *a, doublereal *b, doublereal *c__, doublereal *d__, doublereal *p, doublereal *q); -extern int arpack_dlae2_(doublereal *a, doublereal *b, doublereal *c__, doublereal *rt1, doublereal *rt2); -extern int arpack_dlaev2_(doublereal *a, doublereal *b, doublereal *c__, doublereal *rt1, doublereal *rt2, doublereal *cs1, doublereal *sn1); -extern int arpack_dlaexc_(logical *wantq, integer *n, doublereal *t, integer *ldt, doublereal *q, integer *ldq, integer *j1, integer *n1, integer *n2, doublereal *work, integer *info); -extern int arpack_dlagtm_(char *trans, integer *n, integer *nrhs, doublereal *alpha, doublereal *dl, doublereal *d__, doublereal *du, doublereal *x, integer *ldx, doublereal *beta, doublereal *b, integer *ldb, ftnlen trans_len); -extern int arpack_dlahqr_(logical *wantt, logical *wantz, integer *n, integer *ilo, integer *ihi, doublereal *h__, integer *ldh, doublereal *wr, doublereal *wi, integer *iloz, integer *ihiz, doublereal *z__, integer *ldz, integer *info); -extern int arpack_dlaln2_(logical *ltrans, integer *na, integer *nw, doublereal *smin, doublereal *ca, doublereal *a, integer *lda, doublereal *d1, doublereal *d2, doublereal *b, integer *ldb, doublereal *wr, doublereal *wi, doublereal *x, integer *ldx, doublereal *scale, doublereal *xnorm, integer *info); -extern doublereal arpack_dlamch_(char *cmach, ftnlen cmach_len); -extern int arpack_dlamc1_(integer *beta, integer *t, logical *rnd, logical *ieee1); -extern int arpack_dlamc2_(integer *beta, integer *t, logical *rnd, doublereal *eps, integer *emin, doublereal *rmin, integer *emax, doublereal *rmax); -extern doublereal arpack_dlamc3_(doublereal *a, doublereal *b); -extern int arpack_dlamc4_(integer *emin, doublereal *start, integer *base); -extern int arpack_dlamc5_(integer *beta, integer *p, integer *emin, logical *ieee, integer *emax, doublereal *rmax); -extern doublereal arpack_dlange_(char *norm, integer *m, integer *n, doublereal *a, integer *lda, doublereal *work, ftnlen norm_len); -extern doublereal arpack_dlanhs_(char *norm, integer *n, doublereal *a, integer *lda, doublereal *work, ftnlen norm_len); -extern doublereal arpack_dlanst_(char *norm, integer *n, doublereal *d__, doublereal *e, ftnlen norm_len); -extern int arpack_dlanv2_(doublereal *a, doublereal *b, doublereal *c__, doublereal *d__, doublereal *rt1r, doublereal *rt1i, doublereal *rt2r, doublereal *rt2i, doublereal *cs, doublereal *sn); -extern int arpack_dlaptm_(integer *n, integer *nrhs, doublereal *alpha, doublereal *d__, doublereal *e, doublereal *x, integer *ldx, doublereal *beta, doublereal *b, integer *ldb); -extern doublereal arpack_dlapy2_(doublereal *x, doublereal *y); -extern doublereal arpack_dlapy3_(doublereal *x, doublereal *y, doublereal *z__); -extern int dlaqrb_(logical *wantt, integer *n, integer *ilo, integer *ihi, doublereal *h__, integer *ldh, doublereal *wr, doublereal *wi, doublereal *z__, integer *info); -extern doublereal arpack_dlaran_(integer *iseed); -extern int arpack_dlarf_(char *side, integer *m, integer *n, doublereal *v, integer *incv, doublereal *tau, doublereal *c__, integer *ldc, doublereal *work, ftnlen side_len); -extern int arpack_dlarfg_(integer *n, doublereal *alpha, doublereal *x, integer *incx, doublereal *tau); -extern int arpack_dlarfx_(char *side, integer *m, integer *n, doublereal *v, doublereal *tau, doublereal *c__, integer *ldc, doublereal *work, ftnlen side_len); -extern doublereal arpack_dlarnd_(integer *idist, integer *iseed); -extern int arpack_dlarnv_(integer *idist, integer *iseed, integer *n, doublereal *x); -extern int arpack_dlartg_(doublereal *f, doublereal *g, doublereal *cs, doublereal *sn, doublereal *r__); -extern int arpack_dlaruv_(integer *iseed, integer *n, doublereal *x); -extern int arpack_dlascl_(char *type__, integer *kl, integer *ku, doublereal *cfrom, doublereal *cto, integer *m, integer *n, doublereal *a, integer *lda, integer *info, ftnlen type_len); -extern int arpack_dlaset_(char *uplo, integer *m, integer *n, doublereal *alpha, doublereal *beta, doublereal *a, integer *lda, ftnlen uplo_len); -extern int arpack_dlasr_(char *side, char *pivot, char *direct, integer *m, integer *n, doublereal *c__, doublereal *s, doublereal *a, integer *lda, ftnlen side_len, ftnlen pivot_len, ftnlen direct_len); -extern int arpack_dlasrt_(char *id, integer *n, doublereal *d__, integer *info, ftnlen id_len); -extern int arpack_dlassq_(integer *n, doublereal *x, integer *incx, doublereal *scale, doublereal *sumsq); -extern int arpack_dlaswp_(integer *n, doublereal *a, integer *lda, integer *k1, integer *k2, integer *ipiv, integer *incx); -extern int arpack_dlasy2_(logical *ltranl, logical *ltranr, integer *isgn, integer *n1, integer *n2, doublereal *tl, integer *ldtl, doublereal *tr, integer *ldtr, doublereal *b, integer *ldb, doublereal *scale, doublereal *x, integer *ldx, doublereal *xnorm, integer *info); -extern int dnaitr_(integer *ido, char *bmat, integer *n, integer *k, integer *np, integer *nb, doublereal *resid, doublereal *rnorm, doublereal *v, integer *ldv, doublereal *h__, integer *ldh, integer *ipntr, doublereal *workd, integer *info, ftnlen bmat_len); -/* comlen debug_ 96 */ -/* comlen timing_ 124 */ -extern int dnapps_(integer *n, integer *kev, integer *np, doublereal *shiftr, doublereal *shifti, doublereal *v, integer *ldv, doublereal *h__, integer *ldh, doublereal *resid, doublereal *q, integer *ldq, doublereal *workl, doublereal *workd); -/* comlen debug_ 96 */ -/* comlen timing_ 124 */ -extern int dnaup2_(integer *ido, char *bmat, integer *n, char *which, integer *nev, integer *np, doublereal *tol, doublereal *resid, integer *mode, integer *iupd, integer *ishift, integer *mxiter, doublereal *v, integer *ldv, doublereal *h__, integer *ldh, doublereal *ritzr, doublereal *ritzi, doublereal *bounds, doublereal *q, integer *ldq, doublereal *workl, integer *ipntr, doublereal *workd, integer *info, ftnlen bmat_len, ftnlen which_len); -/* comlen debug_ 96 */ -/* comlen timing_ 124 */ -extern int dnaupd_(integer *ido, char *bmat, integer *n, char *which, integer *nev, doublereal *tol, doublereal *resid, integer *ncv, doublereal *v, integer *ldv, integer *iparam, integer *ipntr, doublereal *workd, doublereal *workl, integer *lworkl, integer *info, ftnlen bmat_len, ftnlen which_len); -/* comlen debug_ 96 */ -/* comlen timing_ 124 */ -extern int dnconv_(integer *n, doublereal *ritzr, doublereal *ritzi, doublereal *bounds, doublereal *tol, integer *nconv); -/* comlen debug_ 96 */ -/* comlen timing_ 124 */ -extern int dneigh_(doublereal *rnorm, integer *n, doublereal *h__, integer *ldh, doublereal *ritzr, doublereal *ritzi, doublereal *bounds, doublereal *q, integer *ldq, doublereal *workl, integer *ierr); -/* comlen debug_ 96 */ -/* comlen timing_ 124 */ -extern int dneupd_(logical *rvec, char *howmny, logical *select, doublereal *dr, doublereal *di, doublereal *z__, integer *ldz, doublereal *sigmar, doublereal *sigmai, doublereal *workev, char *bmat, integer *n, char *which, integer *nev, doublereal *tol, doublereal *resid, integer *ncv, doublereal *v, integer *ldv, integer *iparam, integer *ipntr, doublereal *workd, doublereal *workl, integer *lworkl, integer *info, ftnlen howmny_len, ftnlen bmat_len, ftnlen which_len); -/* comlen debug_ 96 */ -/* comlen timing_ 124 */ -extern int dngets_(integer *ishift, char *which, integer *kev, integer *np, doublereal *ritzr, doublereal *ritzi, doublereal *bounds, doublereal *shiftr, doublereal *shifti, ftnlen which_len); -/* comlen debug_ 96 */ -/* comlen timing_ 124 */ -extern doublereal dnrm2_(integer *n, doublereal *dx, integer *incx); -extern int arpack_dorm2r_(char *side, char *trans, integer *m, integer *n, integer *k, doublereal *a, integer *lda, doublereal *tau, doublereal *c__, integer *ldc, doublereal *work, integer *info, ftnlen side_len, ftnlen trans_len); -extern int arpack_dpttrf_(integer *n, doublereal *d__, doublereal *e, integer *info); -extern int arpack_dpttrs_(integer *n, integer *nrhs, doublereal *d__, doublereal *e, doublereal *b, integer *ldb, integer *info); -extern int drot_(integer *n, doublereal *dx, integer *incx, doublereal *dy, integer *incy, doublereal *c__, doublereal *s); -extern int drotg_(doublereal *da, doublereal *db, doublereal *c__, doublereal *s); -extern int dsaitr_(integer *ido, char *bmat, integer *n, integer *k, integer *np, integer *mode, doublereal *resid, doublereal *rnorm, doublereal *v, integer *ldv, doublereal *h__, integer *ldh, integer *ipntr, doublereal *workd, integer *info, ftnlen bmat_len); -/* comlen debug_ 96 */ -/* comlen timing_ 124 */ -extern int dsapps_(integer *n, integer *kev, integer *np, doublereal *shift, doublereal *v, integer *ldv, doublereal *h__, integer *ldh, doublereal *resid, doublereal *q, integer *ldq, doublereal *workd); -/* comlen debug_ 96 */ -/* comlen timing_ 124 */ -extern int dsaup2_(integer *ido, char *bmat, integer *n, char *which, integer *nev, integer *np, doublereal *tol, doublereal *resid, integer *mode, integer *iupd, integer *ishift, integer *mxiter, doublereal *v, integer *ldv, doublereal *h__, integer *ldh, doublereal *ritz, doublereal *bounds, doublereal *q, integer *ldq, doublereal *workl, integer *ipntr, doublereal *workd, integer *info, ftnlen bmat_len, ftnlen which_len); -/* comlen debug_ 96 */ -/* comlen timing_ 124 */ -extern int dsaupd_(integer *ido, char *bmat, integer *n, char *which, integer *nev, doublereal *tol, doublereal *resid, integer *ncv, doublereal *v, integer *ldv, integer *iparam, integer *ipntr, doublereal *workd, doublereal *workl, integer *lworkl, integer *info, ftnlen bmat_len, ftnlen which_len); -/* comlen debug_ 96 */ -/* comlen timing_ 124 */ -extern int dscal_(integer *n, doublereal *da, doublereal *dx, integer *incx); -extern int dsconv_(integer *n, doublereal *ritz, doublereal *bounds, doublereal *tol, integer *nconv); -/* comlen debug_ 96 */ -/* comlen timing_ 124 */ -extern int dseigt_(doublereal *rnorm, integer *n, doublereal *h__, integer *ldh, doublereal *eig, doublereal *bounds, doublereal *workl, integer *ierr); -/* comlen debug_ 96 */ -/* comlen timing_ 124 */ -extern int dsesrt_(char *which, logical *apply, integer *n, doublereal *x, integer *na, doublereal *a, integer *lda, ftnlen which_len); -extern int dseupd_(logical *rvec, char *howmny, logical *select, doublereal *d__, doublereal *z__, integer *ldz, doublereal *sigma, char *bmat, integer *n, char *which, integer *nev, doublereal *tol, doublereal *resid, integer *ncv, doublereal *v, integer *ldv, integer *iparam, integer *ipntr, doublereal *workd, doublereal *workl, integer *lworkl, integer *info, ftnlen howmny_len, ftnlen bmat_len, ftnlen which_len); -/* comlen debug_ 96 */ -/* comlen timing_ 124 */ -extern int dsgets_(integer *ishift, char *which, integer *kev, integer *np, doublereal *ritz, doublereal *bounds, doublereal *shifts, ftnlen which_len); -/* comlen debug_ 96 */ -/* comlen timing_ 124 */ -extern int dsortc_(char *which, logical *apply, integer *n, doublereal *xreal, doublereal *ximag, doublereal *y, ftnlen which_len); -extern int dsortr_(char *which, logical *apply, integer *n, doublereal *x1, doublereal *x2, ftnlen which_len); -extern int dstatn_(); -/* comlen timing_ 124 */ -extern int dstats_(); -/* comlen timing_ 124 */ -extern int arpack_dsteqr_(char *compz, integer *n, doublereal *d__, doublereal *e, doublereal *z__, integer *ldz, doublereal *work, integer *info, ftnlen compz_len); -extern int dstqrb_(integer *n, doublereal *d__, doublereal *e, doublereal *z__, doublereal *work, integer *info); -extern int dswap_(integer *n, doublereal *dx, integer *incx, doublereal *dy, integer *incy); -extern int dsymv_(char *uplo, integer *n, doublereal *alpha, doublereal *a, integer *lda, doublereal *x, integer *incx, doublereal *beta, doublereal *y, integer *incy, ftnlen uplo_len); -extern int dsyr2_(char *uplo, integer *n, doublereal *alpha, doublereal *x, integer *incx, doublereal *y, integer *incy, doublereal *a, integer *lda, ftnlen uplo_len); -extern int dtbsv_(char *uplo, char *trans, char *diag, integer *n, integer *k, doublereal *a, integer *lda, doublereal *x, integer *incx, ftnlen uplo_len, ftnlen trans_len, ftnlen diag_len); -extern int arpack_dtrevc_(char *side, char *howmny, logical *select, integer *n, doublereal *t, integer *ldt, doublereal *vl, integer *ldvl, doublereal *vr, integer *ldvr, integer *mm, integer *m, doublereal *work, integer *info, ftnlen side_len, ftnlen howmny_len); -extern int arpack_dtrexc_(char *compq, integer *n, doublereal *t, integer *ldt, doublereal *q, integer *ldq, integer *ifst, integer *ilst, doublereal *work, integer *info, ftnlen compq_len); -extern int dtrmm_(char *side, char *uplo, char *transa, char *diag, integer *m, integer *n, doublereal *alpha, doublereal *a, integer *lda, doublereal *b, integer *ldb, ftnlen side_len, ftnlen uplo_len, ftnlen transa_len, ftnlen diag_len); -extern int arpack_dtrsen_(char *job, char *compq, logical *select, integer *n, doublereal *t, integer *ldt, doublereal *q, integer *ldq, doublereal *wr, doublereal *wi, integer *m, doublereal *s, doublereal *sep, doublereal *work, integer *lwork, integer *iwork, integer *liwork, integer *info, ftnlen job_len, ftnlen compq_len); -extern int dtrsm_(char *side, char *uplo, char *transa, char *diag, integer *m, integer *n, doublereal *alpha, doublereal *a, integer *lda, doublereal *b, integer *ldb, ftnlen side_len, ftnlen uplo_len, ftnlen transa_len, ftnlen diag_len); -extern int arpack_dtrsyl_(char *trana, char *tranb, integer *isgn, integer *m, integer *n, doublereal *a, integer *lda, doublereal *b, integer *ldb, doublereal *c__, integer *ldc, doublereal *scale, integer *info, ftnlen trana_len, ftnlen tranb_len); -extern doublereal dzasum_(integer *n, doublecomplex *zx, integer *incx); -extern doublereal dznrm2_(integer *n, doublecomplex *x, integer *incx); -extern doublereal arpack_dzsum1_(integer *n, doublecomplex *cx, integer *incx); -extern integer icamax_(integer *n, complex *cx, integer *incx); -extern integer arpack_icmax1_(integer *n, complex *cx, integer *incx); -extern integer idamax_(integer *n, doublereal *dx, integer *incx); -extern integer arpack_ilaenv_(integer *ispec, char *name__, char *opts, integer *n1, integer *n2, integer *n3, integer *n4, ftnlen name_len, ftnlen opts_len); -extern integer isamax_(integer *n, real *sx, integer *incx); -extern integer izamax_(integer *n, doublecomplex *zx, integer *incx); -extern doublereal dcabs1_(doublecomplex *z__); -extern integer arpack_izmax1_(integer *n, doublecomplex *cx, integer *incx); -extern logical arpack_lsame_(char *ca, char *cb, ftnlen ca_len, ftnlen cb_len); -extern logical arpack_lsamen_(integer *n, char *ca, char *cb, ftnlen ca_len, ftnlen cb_len); -extern E_f sasum_(integer *n, real *sx, integer *incx); -extern int saxpy_(integer *n, real *sa, real *sx, integer *incx, real *sy, integer *incy); -extern E_f scasum_(integer *n, complex *cx, integer *incx); -extern E_f scnrm2_(integer *n, complex *x, integer *incx); -extern int scopy_(integer *n, real *sx, integer *incx, real *sy, integer *incy); -extern E_f arpack_scsum1_(integer *n, complex *cx, integer *incx); -extern E_f sdot_(integer *n, real *sx, integer *incx, real *sy, integer *incy); -extern int sgbmv_(char *trans, integer *m, integer *n, integer *kl, integer *ku, real *alpha, real *a, integer *lda, real *x, integer *incx, real *beta, real *y, integer *incy, ftnlen trans_len); -extern int arpack_sgbtf2_(integer *m, integer *n, integer *kl, integer *ku, real *ab, integer *ldab, integer *ipiv, integer *info); -extern int arpack_sgbtrf_(integer *m, integer *n, integer *kl, integer *ku, real *ab, integer *ldab, integer *ipiv, integer *info); -extern int arpack_sgbtrs_(char *trans, integer *n, integer *kl, integer *ku, integer *nrhs, real *ab, integer *ldab, integer *ipiv, real *b, integer *ldb, integer *info, ftnlen trans_len); -extern int sgemm_(char *transa, char *transb, integer *m, integer *n, integer *k, real *alpha, real *a, integer *lda, real *b, integer *ldb, real *beta, real *c__, integer *ldc, ftnlen transa_len, ftnlen transb_len); -extern int sgemv_(char *trans, integer *m, integer *n, real *alpha, real *a, integer *lda, real *x, integer *incx, real *beta, real *y, integer *incy, ftnlen trans_len); -extern int arpack_sgeqr2_(integer *m, integer *n, real *a, integer *lda, real *tau, real *work, integer *info); -extern int sger_(integer *m, integer *n, real *alpha, real *x, integer *incx, real *y, integer *incy, real *a, integer *lda); -extern int sgetv0_(integer *ido, char *bmat, integer *itry, logical *initv, integer *n, integer *j, real *v, integer *ldv, real *resid, real *rnorm, integer *ipntr, real *workd, integer *ierr, ftnlen bmat_len); -/* comlen debug_ 96 */ -/* comlen timing_ 124 */ -extern int arpack_sgttrf_(integer *n, real *dl, real *d__, real *du, real *du2, integer *ipiv, integer *info); -extern int arpack_sgttrs_(char *trans, integer *n, integer *nrhs, real *dl, real *d__, real *du, real *du2, integer *ipiv, real *b, integer *ldb, integer *info, ftnlen trans_len); -extern int arpack_slabad_(real *small, real *large); -extern int arpack_slacon_(integer *n, real *v, real *x, integer *isgn, real *est, integer *kase); -extern int arpack_slacpy_(char *uplo, integer *m, integer *n, real *a, integer *lda, real *b, integer *ldb, ftnlen uplo_len); -extern int arpack_sladiv_(real *a, real *b, real *c__, real *d__, real *p, real *q); -extern int arpack_slae2_(real *a, real *b, real *c__, real *rt1, real *rt2); -extern int arpack_slaev2_(real *a, real *b, real *c__, real *rt1, real *rt2, real *cs1, real *sn1); -extern int arpack_slaexc_(logical *wantq, integer *n, real *t, integer *ldt, real *q, integer *ldq, integer *j1, integer *n1, integer *n2, real *work, integer *info); -extern int arpack_slagtm_(char *trans, integer *n, integer *nrhs, real *alpha, real *dl, real *d__, real *du, real *x, integer *ldx, real *beta, real *b, integer *ldb, ftnlen trans_len); -extern int arpack_slahqr_(logical *wantt, logical *wantz, integer *n, integer *ilo, integer *ihi, real *h__, integer *ldh, real *wr, real *wi, integer *iloz, integer *ihiz, real *z__, integer *ldz, integer *info); -extern int arpack_slaln2_(logical *ltrans, integer *na, integer *nw, real *smin, real *ca, real *a, integer *lda, real *d1, real *d2, real *b, integer *ldb, real *wr, real *wi, real *x, integer *ldx, real *scale, real *xnorm, integer *info); -extern E_f arpack_slamch_(char *cmach, ftnlen cmach_len); -extern int arpack_slamc1_(integer *beta, integer *t, logical *rnd, logical *ieee1); -extern int arpack_slamc2_(integer *beta, integer *t, logical *rnd, real *eps, integer *emin, real *rmin, integer *emax, real *rmax); -extern E_f arpack_slamc3_(real *a, real *b); -extern int arpack_slamc4_(integer *emin, real *start, integer *base); -extern int arpack_slamc5_(integer *beta, integer *p, integer *emin, logical *ieee, integer *emax, real *rmax); -extern E_f arpack_slange_(char *norm, integer *m, integer *n, real *a, integer *lda, real *work, ftnlen norm_len); -extern E_f arpack_slanhs_(char *norm, integer *n, real *a, integer *lda, real *work, ftnlen norm_len); -extern E_f arpack_slanst_(char *norm, integer *n, real *d__, real *e, ftnlen norm_len); -extern int arpack_slanv2_(real *a, real *b, real *c__, real *d__, real *rt1r, real *rt1i, real *rt2r, real *rt2i, real *cs, real *sn); -extern int arpack_slaptm_(integer *n, integer *nrhs, real *alpha, real *d__, real *e, real *x, integer *ldx, real *beta, real *b, integer *ldb); -extern E_f arpack_slapy2_(real *x, real *y); -extern E_f arpack_slapy3_(real *x, real *y, real *z__); -extern int slaqrb_(logical *wantt, integer *n, integer *ilo, integer *ihi, real *h__, integer *ldh, real *wr, real *wi, real *z__, integer *info); -extern E_f arpack_slaran_(integer *iseed); -extern int arpack_slarf_(char *side, integer *m, integer *n, real *v, integer *incv, real *tau, real *c__, integer *ldc, real *work, ftnlen side_len); -extern int arpack_slarfg_(integer *n, real *alpha, real *x, integer *incx, real *tau); -extern int arpack_slarfx_(char *side, integer *m, integer *n, real *v, real *tau, real *c__, integer *ldc, real *work, ftnlen side_len); -extern E_f arpack_slarnd_(integer *idist, integer *iseed); -extern int arpack_slarnv_(integer *idist, integer *iseed, integer *n, real *x); -extern int arpack_slartg_(real *f, real *g, real *cs, real *sn, real *r__); -extern int arpack_slaruv_(integer *iseed, integer *n, real *x); -extern int arpack_slascl_(char *type__, integer *kl, integer *ku, real *cfrom, real *cto, integer *m, integer *n, real *a, integer *lda, integer *info, ftnlen type_len); -extern int arpack_slaset_(char *uplo, integer *m, integer *n, real *alpha, real *beta, real *a, integer *lda, ftnlen uplo_len); -extern int arpack_slasr_(char *side, char *pivot, char *direct, integer *m, integer *n, real *c__, real *s, real *a, integer *lda, ftnlen side_len, ftnlen pivot_len, ftnlen direct_len); -extern int arpack_slasrt_(char *id, integer *n, real *d__, integer *info, ftnlen id_len); -extern int arpack_slassq_(integer *n, real *x, integer *incx, real *scale, real *sumsq); -extern int arpack_slaswp_(integer *n, real *a, integer *lda, integer *k1, integer *k2, integer *ipiv, integer *incx); -extern int arpack_slasy2_(logical *ltranl, logical *ltranr, integer *isgn, integer *n1, integer *n2, real *tl, integer *ldtl, real *tr, integer *ldtr, real *b, integer *ldb, real *scale, real *x, integer *ldx, real *xnorm, integer *info); -extern int snaitr_(integer *ido, char *bmat, integer *n, integer *k, integer *np, integer *nb, real *resid, real *rnorm, real *v, integer *ldv, real *h__, integer *ldh, integer *ipntr, real *workd, integer *info, ftnlen bmat_len); -/* comlen debug_ 96 */ -/* comlen timing_ 124 */ -extern int snapps_(integer *n, integer *kev, integer *np, real *shiftr, real *shifti, real *v, integer *ldv, real *h__, integer *ldh, real *resid, real *q, integer *ldq, real *workl, real *workd); -/* comlen debug_ 96 */ -/* comlen timing_ 124 */ -extern int snaup2_(integer *ido, char *bmat, integer *n, char *which, integer *nev, integer *np, real *tol, real *resid, integer *mode, integer *iupd, integer *ishift, integer *mxiter, real *v, integer *ldv, real *h__, integer *ldh, real *ritzr, real *ritzi, real *bounds, real *q, integer *ldq, real *workl, integer *ipntr, real *workd, integer *info, ftnlen bmat_len, ftnlen which_len); -/* comlen debug_ 96 */ -/* comlen timing_ 124 */ -extern int snaupd_(integer *ido, char *bmat, integer *n, char *which, integer *nev, real *tol, real *resid, integer *ncv, real *v, integer *ldv, integer *iparam, integer *ipntr, real *workd, real *workl, integer *lworkl, integer *info, ftnlen bmat_len, ftnlen which_len); -/* comlen debug_ 96 */ -/* comlen timing_ 124 */ -extern int snconv_(integer *n, real *ritzr, real *ritzi, real *bounds, real *tol, integer *nconv); -/* comlen debug_ 96 */ -/* comlen timing_ 124 */ -extern int sneigh_(real *rnorm, integer *n, real *h__, integer *ldh, real *ritzr, real *ritzi, real *bounds, real *q, integer *ldq, real *workl, integer *ierr); -/* comlen debug_ 96 */ -/* comlen timing_ 124 */ -extern int sneupd_(logical *rvec, char *howmny, logical *select, real *dr, real *di, real *z__, integer *ldz, real *sigmar, real *sigmai, real *workev, char *bmat, integer *n, char *which, integer *nev, real *tol, real *resid, integer *ncv, real *v, integer *ldv, integer *iparam, integer *ipntr, real *workd, real *workl, integer *lworkl, integer *info, ftnlen howmny_len, ftnlen bmat_len, ftnlen which_len); -/* comlen debug_ 96 */ -/* comlen timing_ 124 */ -extern int sngets_(integer *ishift, char *which, integer *kev, integer *np, real *ritzr, real *ritzi, real *bounds, real *shiftr, real *shifti, ftnlen which_len); -/* comlen debug_ 96 */ -/* comlen timing_ 124 */ -extern E_f snrm2_(integer *n, real *sx, integer *incx); -extern int arpack_sorm2r_(char *side, char *trans, integer *m, integer *n, integer *k, real *a, integer *lda, real *tau, real *c__, integer *ldc, real *work, integer *info, ftnlen side_len, ftnlen trans_len); -extern int arpack_spttrf_(integer *n, real *d__, real *e, integer *info); -extern int arpack_spttrs_(integer *n, integer *nrhs, real *d__, real *e, real *b, integer *ldb, integer *info); -extern int srot_(integer *n, real *sx, integer *incx, real *sy, integer *incy, real *c__, real *s); -extern int srotg_(real *sa, real *sb, real *c__, real *s); -extern int ssaitr_(integer *ido, char *bmat, integer *n, integer *k, integer *np, integer *mode, real *resid, real *rnorm, real *v, integer *ldv, real *h__, integer *ldh, integer *ipntr, real *workd, integer *info, ftnlen bmat_len); -/* comlen debug_ 96 */ -/* comlen timing_ 124 */ -extern int ssapps_(integer *n, integer *kev, integer *np, real *shift, real *v, integer *ldv, real *h__, integer *ldh, real *resid, real *q, integer *ldq, real *workd); -/* comlen debug_ 96 */ -/* comlen timing_ 124 */ -extern int ssaup2_(integer *ido, char *bmat, integer *n, char *which, integer *nev, integer *np, real *tol, real *resid, integer *mode, integer *iupd, integer *ishift, integer *mxiter, real *v, integer *ldv, real *h__, integer *ldh, real *ritz, real *bounds, real *q, integer *ldq, real *workl, integer *ipntr, real *workd, integer *info, ftnlen bmat_len, ftnlen which_len); -/* comlen debug_ 96 */ -/* comlen timing_ 124 */ -extern int ssaupd_(integer *ido, char *bmat, integer *n, char *which, integer *nev, real *tol, real *resid, integer *ncv, real *v, integer *ldv, integer *iparam, integer *ipntr, real *workd, real *workl, integer *lworkl, integer *info, ftnlen bmat_len, ftnlen which_len); -/* comlen debug_ 96 */ -/* comlen timing_ 124 */ -extern int sscal_(integer *n, real *sa, real *sx, integer *incx); -extern int ssconv_(integer *n, real *ritz, real *bounds, real *tol, integer *nconv); -/* comlen debug_ 96 */ -/* comlen timing_ 124 */ -extern int sseigt_(real *rnorm, integer *n, real *h__, integer *ldh, real *eig, real *bounds, real *workl, integer *ierr); -/* comlen debug_ 96 */ -/* comlen timing_ 124 */ -extern int ssesrt_(char *which, logical *apply, integer *n, real *x, integer *na, real *a, integer *lda, ftnlen which_len); -extern int sseupd_(logical *rvec, char *howmny, logical *select, real *d__, real *z__, integer *ldz, real *sigma, char *bmat, integer *n, char *which, integer *nev, real *tol, real *resid, integer *ncv, real *v, integer *ldv, integer *iparam, integer *ipntr, real *workd, real *workl, integer *lworkl, integer *info, ftnlen howmny_len, ftnlen bmat_len, ftnlen which_len); -/* comlen debug_ 96 */ -/* comlen timing_ 124 */ -extern int ssgets_(integer *ishift, char *which, integer *kev, integer *np, real *ritz, real *bounds, real *shifts, ftnlen which_len); -/* comlen debug_ 96 */ -/* comlen timing_ 124 */ -extern int ssortc_(char *which, logical *apply, integer *n, real *xreal, real *ximag, real *y, ftnlen which_len); -extern int ssortr_(char *which, logical *apply, integer *n, real *x1, real *x2, ftnlen which_len); -extern int sstatn_(); -/* comlen timing_ 124 */ -extern int sstats_(); -/* comlen timing_ 124 */ -extern int arpack_ssteqr_(char *compz, integer *n, real *d__, real *e, real *z__, integer *ldz, real *work, integer *info, ftnlen compz_len); -extern int sstqrb_(integer *n, real *d__, real *e, real *z__, real *work, integer *info); -extern int sswap_(integer *n, real *sx, integer *incx, real *sy, integer *incy); -extern int ssymv_(char *uplo, integer *n, real *alpha, real *a, integer *lda, real *x, integer *incx, real *beta, real *y, integer *incy, ftnlen uplo_len); -extern int ssyr2_(char *uplo, integer *n, real *alpha, real *x, integer *incx, real *y, integer *incy, real *a, integer *lda, ftnlen uplo_len); -extern int stbsv_(char *uplo, char *trans, char *diag, integer *n, integer *k, real *a, integer *lda, real *x, integer *incx, ftnlen uplo_len, ftnlen trans_len, ftnlen diag_len); -extern int arpack_strevc_(char *side, char *howmny, logical *select, integer *n, real *t, integer *ldt, real *vl, integer *ldvl, real *vr, integer *ldvr, integer *mm, integer *m, real *work, integer *info, ftnlen side_len, ftnlen howmny_len); -extern int arpack_strexc_(char *compq, integer *n, real *t, integer *ldt, real *q, integer *ldq, integer *ifst, integer *ilst, real *work, integer *info, ftnlen compq_len); -extern int strmm_(char *side, char *uplo, char *transa, char *diag, integer *m, integer *n, real *alpha, real *a, integer *lda, real *b, integer *ldb, ftnlen side_len, ftnlen uplo_len, ftnlen transa_len, ftnlen diag_len); -extern int arpack_strsen_(char *job, char *compq, logical *select, integer *n, real *t, integer *ldt, real *q, integer *ldq, real *wr, real *wi, integer *m, real *s, real *sep, real *work, integer *lwork, integer *iwork, integer *liwork, integer *info, ftnlen job_len, ftnlen compq_len); -extern int strsm_(char *side, char *uplo, char *transa, char *diag, integer *m, integer *n, real *alpha, real *a, integer *lda, real *b, integer *ldb, ftnlen side_len, ftnlen uplo_len, ftnlen transa_len, ftnlen diag_len); -extern int arpack_strsyl_(char *trana, char *tranb, integer *isgn, integer *m, integer *n, real *a, integer *lda, real *b, integer *ldb, real *c__, integer *ldc, real *scale, integer *info, ftnlen trana_len, ftnlen tranb_len); -extern int arpack_xerbla_(char *srname, integer *info, ftnlen srname_len); -extern int arpack_xlaenv_(integer *ispec, integer *nvalue); -/* comlen claenv_ 400 */ -extern int zaxpy_(integer *n, doublecomplex *za, doublecomplex *zx, integer *incx, doublecomplex *zy, integer *incy); -extern int zcopy_(integer *n, doublecomplex *zx, integer *incx, doublecomplex *zy, integer *incy); -extern Z_f zdotc_(doublecomplex * ret_val, integer *n, doublecomplex *zx, integer *incx, doublecomplex *zy, integer *incy); -extern Z_f zdotu_(doublecomplex * ret_val, integer *n, doublecomplex *zx, integer *incx, doublecomplex *zy, integer *incy); -extern int zdscal_(integer *n, doublereal *da, doublecomplex *zx, integer *incx); -extern int zgbmv_(char *trans, integer *m, integer *n, integer *kl, integer *ku, doublecomplex *alpha, doublecomplex *a, integer *lda, doublecomplex *x, integer *incx, doublecomplex *beta, doublecomplex *y, integer *incy, ftnlen trans_len); -extern int arpack_zgbtf2_(integer *m, integer *n, integer *kl, integer *ku, doublecomplex *ab, integer *ldab, integer *ipiv, integer *info); -extern int arpack_zgbtrf_(integer *m, integer *n, integer *kl, integer *ku, doublecomplex *ab, integer *ldab, integer *ipiv, integer *info); -extern int arpack_zgbtrs_(char *trans, integer *n, integer *kl, integer *ku, integer *nrhs, doublecomplex *ab, integer *ldab, integer *ipiv, doublecomplex *b, integer *ldb, integer *info, ftnlen trans_len); -extern int zgemm_(char *transa, char *transb, integer *m, integer *n, integer *k, doublecomplex *alpha, doublecomplex *a, integer *lda, doublecomplex *b, integer *ldb, doublecomplex *beta, doublecomplex *c__, integer *ldc, ftnlen transa_len, ftnlen transb_len); -extern int zgemv_(char *trans, integer *m, integer *n, doublecomplex *alpha, doublecomplex *a, integer *lda, doublecomplex *x, integer *incx, doublecomplex *beta, doublecomplex *y, integer *incy, ftnlen trans_len); -extern int arpack_zgeqr2_(integer *m, integer *n, doublecomplex *a, integer *lda, doublecomplex *tau, doublecomplex *work, integer *info); -extern int zgerc_(integer *m, integer *n, doublecomplex *alpha, doublecomplex *x, integer *incx, doublecomplex *y, integer *incy, doublecomplex *a, integer *lda); -extern int zgeru_(integer *m, integer *n, doublecomplex *alpha, doublecomplex *x, integer *incx, doublecomplex *y, integer *incy, doublecomplex *a, integer *lda); -extern int zgetv0_(integer *ido, char *bmat, integer *itry, logical *initv, integer *n, integer *j, doublecomplex *v, integer *ldv, doublecomplex *resid, doublereal *rnorm, integer *ipntr, doublecomplex *workd, integer *ierr, ftnlen bmat_len); -/* comlen debug_ 96 */ -/* comlen timing_ 124 */ -extern int arpack_zgttrf_(integer *n, doublecomplex *dl, doublecomplex *d__, doublecomplex *du, doublecomplex *du2, integer *ipiv, integer *info); -extern int arpack_zgttrs_(char *trans, integer *n, integer *nrhs, doublecomplex *dl, doublecomplex *d__, doublecomplex *du, doublecomplex *du2, integer *ipiv, doublecomplex *b, integer *ldb, integer *info, ftnlen trans_len); -extern int arpack_zlacgv_(integer *n, doublecomplex *x, integer *incx); -extern int arpack_zlacon_(integer *n, doublecomplex *v, doublecomplex *x, doublereal *est, integer *kase); -extern int arpack_zlacpy_(char *uplo, integer *m, integer *n, doublecomplex *a, integer *lda, doublecomplex *b, integer *ldb, ftnlen uplo_len); -extern Z_f arpack_zladiv_(doublecomplex * ret_val, doublecomplex *x, doublecomplex *y); -extern int arpack_zlahqr_(logical *wantt, logical *wantz, integer *n, integer *ilo, integer *ihi, doublecomplex *h__, integer *ldh, doublecomplex *w, integer *iloz, integer *ihiz, doublecomplex *z__, integer *ldz, integer *info); -extern doublereal arpack_zlange_(char *norm, integer *m, integer *n, doublecomplex *a, integer *lda, doublereal *work, ftnlen norm_len); -extern doublereal arpack_zlanhs_(char *norm, integer *n, doublecomplex *a, integer *lda, doublereal *work, ftnlen norm_len); -extern int arpack_zlarf_(char *side, integer *m, integer *n, doublecomplex *v, integer *incv, doublecomplex *tau, doublecomplex *c__, integer *ldc, doublecomplex *work, ftnlen side_len); -extern int arpack_zlarfg_(integer *n, doublecomplex *alpha, doublecomplex *x, integer *incx, doublecomplex *tau); -extern int arpack_zlarnv_(integer *idist, integer *iseed, integer *n, doublecomplex *x); -extern int arpack_zlartg_(doublecomplex *f, doublecomplex *g, doublereal *cs, doublecomplex *sn, doublecomplex *r__); -extern int arpack_zlascl_(char *type__, integer *kl, integer *ku, doublereal *cfrom, doublereal *cto, integer *m, integer *n, doublecomplex *a, integer *lda, integer *info, ftnlen type_len); -extern int arpack_zlaset_(char *uplo, integer *m, integer *n, doublecomplex *alpha, doublecomplex *beta, doublecomplex *a, integer *lda, ftnlen uplo_len); -extern int arpack_zlassq_(integer *n, doublecomplex *x, integer *incx, doublereal *scale, doublereal *sumsq); -extern int arpack_zlaswp_(integer *n, doublecomplex *a, integer *lda, integer *k1, integer *k2, integer *ipiv, integer *incx); -extern int arpack_zlatrs_(char *uplo, char *trans, char *diag, char *normin, integer *n, doublecomplex *a, integer *lda, doublecomplex *x, doublereal *scale, doublereal *cnorm, integer *info, ftnlen uplo_len, ftnlen trans_len, ftnlen diag_len, ftnlen normin_len); -extern doublereal arpack_zmach_(integer *job); -extern int znaitr_(integer *ido, char *bmat, integer *n, integer *k, integer *np, integer *nb, doublecomplex *resid, doublereal *rnorm, doublecomplex *v, integer *ldv, doublecomplex *h__, integer *ldh, integer *ipntr, doublecomplex *workd, integer *info, ftnlen bmat_len); -/* comlen debug_ 96 */ -/* comlen timing_ 124 */ -extern int znapps_(integer *n, integer *kev, integer *np, doublecomplex *shift, doublecomplex *v, integer *ldv, doublecomplex *h__, integer *ldh, doublecomplex *resid, doublecomplex *q, integer *ldq, doublecomplex *workl, doublecomplex *workd); -/* comlen debug_ 96 */ -/* comlen timing_ 124 */ -extern int znaup2_(integer *ido, char *bmat, integer *n, char *which, integer *nev, integer *np, doublereal *tol, doublecomplex *resid, integer *mode, integer *iupd, integer *ishift, integer *mxiter, doublecomplex *v, integer *ldv, doublecomplex *h__, integer *ldh, doublecomplex *ritz, doublecomplex *bounds, doublecomplex *q, integer *ldq, doublecomplex *workl, integer *ipntr, doublecomplex *workd, doublereal *rwork, integer *info, ftnlen bmat_len, ftnlen which_len); -/* comlen debug_ 96 */ -/* comlen timing_ 124 */ -extern int znaupd_(integer *ido, char *bmat, integer *n, char *which, integer *nev, doublereal *tol, doublecomplex *resid, integer *ncv, doublecomplex *v, integer *ldv, integer *iparam, integer *ipntr, doublecomplex *workd, doublecomplex *workl, integer *lworkl, doublereal *rwork, integer *info, ftnlen bmat_len, ftnlen which_len); -/* comlen debug_ 96 */ -/* comlen timing_ 124 */ -extern int zneigh_(doublereal *rnorm, integer *n, doublecomplex *h__, integer *ldh, doublecomplex *ritz, doublecomplex *bounds, doublecomplex *q, integer *ldq, doublecomplex *workl, doublereal *rwork, integer *ierr); -/* comlen debug_ 96 */ -/* comlen timing_ 124 */ -extern int zneupd_(logical *rvec, char *howmny, logical *select, doublecomplex *d__, doublecomplex *z__, integer *ldz, doublecomplex *sigma, doublecomplex *workev, char *bmat, integer *n, char *which, integer *nev, doublereal *tol, doublecomplex *resid, integer *ncv, doublecomplex *v, integer *ldv, integer *iparam, integer *ipntr, doublecomplex *workd, doublecomplex *workl, integer *lworkl, doublereal *rwork, integer *info, ftnlen howmny_len, ftnlen bmat_len, ftnlen which_len); -/* comlen debug_ 96 */ -/* comlen timing_ 124 */ -extern int zngets_(integer *ishift, char *which, integer *kev, integer *np, doublecomplex *ritz, doublecomplex *bounds, ftnlen which_len); -/* comlen debug_ 96 */ -/* comlen timing_ 124 */ -extern int arpack_zrot_(integer *n, doublecomplex *cx, integer *incx, doublecomplex *cy, integer *incy, doublereal *c__, doublecomplex *s); -extern int zscal_(integer *n, doublecomplex *za, doublecomplex *zx, integer *incx); -extern int zsortc_(char *which, logical *apply, integer *n, doublecomplex *x, doublecomplex *y, ftnlen which_len); -extern int zstatn_(); -/* comlen timing_ 124 */ -extern int zswap_(integer *n, doublecomplex *zx, integer *incx, doublecomplex *zy, integer *incy); -extern int ztbsv_(char *uplo, char *trans, char *diag, integer *n, integer *k, doublecomplex *a, integer *lda, doublecomplex *x, integer *incx, ftnlen uplo_len, ftnlen trans_len, ftnlen diag_len); -extern int arpack_ztrevc_(char *side, char *howmny, logical *select, integer *n, doublecomplex *t, integer *ldt, doublecomplex *vl, integer *ldvl, doublecomplex *vr, integer *ldvr, integer *mm, integer *m, doublecomplex *work, doublereal *rwork, integer *info, ftnlen side_len, ftnlen howmny_len); -extern int arpack_ztrexc_(char *compq, integer *n, doublecomplex *t, integer *ldt, doublecomplex *q, integer *ldq, integer *ifst, integer *ilst, integer *info, ftnlen compq_len); -extern int ztrmm_(char *side, char *uplo, char *transa, char *diag, integer *m, integer *n, doublecomplex *alpha, doublecomplex *a, integer *lda, doublecomplex *b, integer *ldb, ftnlen side_len, ftnlen uplo_len, ftnlen transa_len, ftnlen diag_len); -extern int arpack_ztrsen_(char *job, char *compq, logical *select, integer *n, doublecomplex *t, integer *ldt, doublecomplex *q, integer *ldq, doublecomplex *w, integer *m, doublereal *s, doublereal *sep, doublecomplex *work, integer *lwork, integer *info, ftnlen job_len, ftnlen compq_len); -extern int ztrsm_(char *side, char *uplo, char *transa, char *diag, integer *m, integer *n, doublecomplex *alpha, doublecomplex *a, integer *lda, doublecomplex *b, integer *ldb, ftnlen side_len, ftnlen uplo_len, ftnlen transa_len, ftnlen diag_len); -extern int ztrsv_(char *uplo, char *trans, char *diag, integer *n, doublecomplex *a, integer *lda, doublecomplex *x, integer *incx, ftnlen uplo_len, ftnlen trans_len, ftnlen diag_len); -extern int arpack_ztrsyl_(char *trana, char *tranb, integer *isgn, integer *m, integer *n, doublecomplex *a, integer *lda, doublecomplex *b, integer *ldb, doublecomplex *c__, integer *ldc, doublereal *scale, integer *info, ftnlen trana_len, ftnlen tranb_len); -extern int arpack_zunm2r_(char *side, char *trans, integer *m, integer *n, integer *k, doublecomplex *a, integer *lda, doublecomplex *tau, doublecomplex *c__, integer *ldc, doublecomplex *work, integer *info, ftnlen side_len, ftnlen trans_len); - -#endif diff --git a/math/arpack/files/patch-UTIL+second.f b/math/arpack/files/patch-UTIL+second.f deleted file mode 100644 index 5a0d65eae9e..00000000000 --- a/math/arpack/files/patch-UTIL+second.f +++ /dev/null @@ -1,10 +0,0 @@ ---- UTIL/second.f.bak 2011-07-20 19:47:43.000000000 -0400 -+++ UTIL/second.f 2011-07-20 19:48:05.000000000 -0400 -@@ -21,7 +21,6 @@ - * .. - * .. External Functions .. - REAL ETIME -- EXTERNAL ETIME - * .. - * .. Executable Statements .. - * diff --git a/math/arpack/pkg-descr b/math/arpack/pkg-descr deleted file mode 100644 index 7026f07260b..00000000000 --- a/math/arpack/pkg-descr +++ /dev/null @@ -1,9 +0,0 @@ -ARPACK software is capable of solving large symmetric, nonsymmetric, and -generalized eigenproblems. The software is designed to compute a few (k) -eigenvalues with user-specified features, such as those of largest real part -or largest magnitude. Storage requirements are on the order of n*k locations, -and no auxiliary storage is required. A set of numerically orthogonal Schur -basis vectors for the desired k-dimensional eigen-space is computed. -Numerically accurate eigenvectors are available on request. - -WWW: http://www.caam.rice.edu/software/ARPACK/ diff --git a/math/arpack/pkg-plist b/math/arpack/pkg-plist deleted file mode 100644 index 1270278d488..00000000000 --- a/math/arpack/pkg-plist +++ /dev/null @@ -1,10 +0,0 @@ -lib/libarpack.a -lib/libarpack.so -lib/libarpack.so.1 -include/arpack.h -include/arpack_compat_c.h -include/arpack_compat_f.h -%%PORTDOCS%%%%DOCSDIR%%/ex-complex.doc.gz -%%PORTDOCS%%%%DOCSDIR%%/ex-nonsym.doc.gz -%%PORTDOCS%%%%DOCSDIR%%/ex-sym.doc.gz -%%PORTDOCS%%%%DOCSDIR%%/ug.ps.gz diff --git a/math/ceres-solver/Makefile b/math/ceres-solver/Makefile index 30b08cf8cd5..067d1fc3847 100644 --- a/math/ceres-solver/Makefile +++ b/math/ceres-solver/Makefile @@ -2,7 +2,7 @@ PORTNAME= ceres-solver DISTVERSION= 1.14.0 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= math MAINTAINER= jbeich@FreeBSD.org diff --git a/math/deal.ii/Makefile b/math/deal.ii/Makefile new file mode 100644 index 00000000000..c1162b65774 --- /dev/null +++ b/math/deal.ii/Makefile @@ -0,0 +1,91 @@ +# $FreeBSD$ + +PORTNAME= deal.II +DISTVERSIONPREFIX= v +DISTVERSION= 9.0.0 +PORTREVISION= 2 +CATEGORIES= math + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Finite element Differential Equations Analysis Library (DEAL) + +LICENSE= GPLv2 +LICENSE_FILE= ${WRKSRC}/LICENSE + +BUILD_DEPENDS= ${LOCALBASE}/include/boost/config.hpp:devel/boost-libs +LIB_DEPENDS= libhdf5.so:science/hdf5 \ + libmetis.so:math/metis \ + libtbb.so:devel/tbb + +USES= cmake:outsource compiler:c++17-lang localbase:ldflags +USE_GITHUB= yes +GH_ACCOUNT= ${PORTNAME:tl:S/.//} +GH_PROJECT= ${PORTNAME:tl:S/.//} +USE_LDCONFIG= yes + +CMAKE_OFF= DEAL_II_ALLOW_BUNDLED DEAL_II_COMPONENT_EXAMPLES \ + DEAL_II_WITH_P4EST DEAL_II_WITH_TRILINOS DEAL_II_WITH_UMFPACK \ + DEAL_II_WITH_NANOFLANN DEAL_II_WITH_MUPARSER DEAL_II_WITH_ASSIMP \ + DEAL_II_WITH_HDF5 + +OPTIONS_DEFINE= ADOLC ARPACK GSL LAPACK MPI NETCDF OPENCASCADE PETSC SCALAPACK SLEPC SUNDIALS +OPTIONS_DEFAULT= GSL LAPACK SUNDIALS + +ADOLC_DESC= Compile with ADOL-C +ADOLC_CMAKE_BOOL= DEAL_II_WITH_ADOLC +ADOLC_LIB_DEPENDS= libadolc.so:math/adol-c +ADOLC_BROKEN= requires the development version: see https://github.com/dealii/dealii/issues/7293 + +ARPACK_DESC= Compile with Arpack and PArpack (only with MPI, LAPACK) +ARPACK_CMAKE_BOOL= DEAL_II_WITH_ARPACK +ARPACK_CMAKE_ON= -DARPACK_LINKER_FLAGS:STRING="${LDFLAGS}" +ARPACK_BUILD_DEPENDS= arpack-ng>0:math/arpack-ng +ARPACK_RUN_DEPENDS= arpack-ng>0:math/arpack-ng # itself doesn't link to arpack, but makes depending project link to it +ARPACK_IMPLIES= LAPACK + +GSL_DESC= Compile with gsl +GSL_CMAKE_BOOL= DEAL_II_WITH_GSL +GSL_LIB_DEPENDS= libgsl.so:math/gsl + +LAPACK_DESC= Compile with LAPACK for matrix operations +LAPACK_USES= fortran +LAPACK_CMAKE_BOOL= DEAL_II_WITH_LAPACK +LAPACK_CMAKE_ON= -DLAPACK_LINKER_FLAGS:STRING="${LDFLAGS}" +LAPACK_LIB_DEPENDS= libopenblas.so:math/openblas + +MPI_USES= fortran +MPI_CMAKE_BOOL= DEAL_II_WITH_MPI +MPI_CMAKE_ON= -DMPI_LINKER_FLAGS:STRING="${LDFLAGS}" +MPI_LIB_DEPENDS= libboost_iostreams.so:devel/boost-libs \ + libmpi.so:net/openmpi +MPI_BROKEN= Could not find any suitable mpi library! (need to investigate) + +NETCDF_DESC= Compile with Netcdf (only with MPI) +NETCDF_CMAKE_BOOL= DEAL_II_WITH_NETCDF +NETCDF_CMAKE_ON= -DNETCDF_INCLUDE_DIR:STRING=${LOCALBASE}/include -DNETCDF_CPLUSPLUS_LIBRARY:STRING=${LOCALBASE}/lib/libnetcdf_c++4.so +NETCDF_BROKEN= see https://github.com/dealii/dealii/issues/7263 + +OPENCASCADE_DESC= Compile with OpenCascade +OPENCASCADE_CMAKE_BOOL= DEAL_II_WITH_OPENCASCADE +OPENCASCADE_CMAKE_ON= -DOPENCASCADE_INCLUDE_DIR:STRING=${LOCALBASE}/include/OpenCASCADE +OPENCASCADE_LIB_DEPENDS= libTKernel.so:cad/opencascade + +PETSC_DESC= Compile with Petsc (only with MPI) +PETSC_CMAKE_BOOL= DEAL_II_WITH_PETSC +PETSC_LIB_DEPENDS= libpetsc.so:science/PETSc +PETSC_BROKEN= see https://github.com/dealii/dealii/issues/7260 + +SCALAPACK_DESC= Compile with ScaLAPACK (only with MPI) +SCALAPACK_CMAKE_BOOL= DEAL_II_WITH_SCALAPACK +SCALAPACK_IMPLIES= MPI LAPACK + +SLEPC_DESC= Compile with SLEPC (only with PETSC) +SLEPC_CMAKE_BOOL= DEAL_II_WITH_SLEPC +SLEPC_LIB_DEPENDS= libslepc.so:math/slepc +SLEPC_IMPLIES= PETSC + +SUNDIALS_DESC= Compile with SUNDIALS +SUNDIALS_CMAKE_BOOL= DEAL_II_WITH_SUNDIALS +SUNDIALS_LIB_DEPENDS= libsundials_arkode.so:math/sundials + +.include diff --git a/math/deal.ii/distinfo b/math/deal.ii/distinfo new file mode 100644 index 00000000000..b4f2f2bc1ed --- /dev/null +++ b/math/deal.ii/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1538522671 +SHA256 (dealii-dealii-v9.0.0_GH0.tar.gz) = c9eed69b9909b432102055e843981df181cb96a4d274785feeb70f83a0f5bee8 +SIZE (dealii-dealii-v9.0.0_GH0.tar.gz) = 17629427 diff --git a/math/deal.ii/files/patch-doc_CMakeLists.txt b/math/deal.ii/files/patch-doc_CMakeLists.txt new file mode 100644 index 00000000000..a37add7e2c1 --- /dev/null +++ b/math/deal.ii/files/patch-doc_CMakeLists.txt @@ -0,0 +1,21 @@ +--- doc/CMakeLists.txt.orig 2018-10-03 01:10:49 UTC ++++ doc/CMakeLists.txt +@@ -55,12 +55,12 @@ ENDIF(DEAL_II_COMPONENT_DOCUMENTATION) + # Always install a minimalistic README and LICENSE file: + # + +-INSTALL(FILES +- ${CMAKE_SOURCE_DIR}/README.md +- ${CMAKE_SOURCE_DIR}/LICENSE +- DESTINATION ${DEAL_II_DOCREADME_RELDIR} +- COMPONENT library +- ) ++#INSTALL(FILES ++# ${CMAKE_SOURCE_DIR}/README.md ++# ${CMAKE_SOURCE_DIR}/LICENSE ++# DESTINATION ${DEAL_II_DOCREADME_RELDIR} ++# COMPONENT library ++# ) + + # + # Add a dummy target to make documentation files known to IDEs. diff --git a/math/deal.ii/pkg-descr b/math/deal.ii/pkg-descr new file mode 100644 index 00000000000..5bcc0b704d8 --- /dev/null +++ b/math/deal.ii/pkg-descr @@ -0,0 +1,24 @@ +deal.II - a name that originally meant to indicate that it is the successor to +the Differential Equations Analysis Library - is a C++ program library targeted +at the computational solution of partial differential equations using adaptive +finite elements. It uses state-of-the-art programming techniques to offer you a +modern interface to the complex data structures and algorithms required. + +The main aim of deal.II is to enable rapid development of modern finite element +codes, using among other aspects adaptive meshes and a wide array of tools +classes often used in finite element program. Writing such programs is a +non-trivial task, and successful programs tend to become very large and complex. +We believe that this is best done using a program library that takes care of the +details of grid handling and refinement, handling of degrees of freedom, input +of meshes and output of results in graphics formats, and the like. Likewise, +support for several space dimensions at once is included in a way such that +programs can be written independent of the space dimension without unreasonable +penalties on run-time and memory consumption. + +deal.II is widely used in many academic and commercial projects. For its +creation, its principal authors have received the 2007 J. H. Wilkinson Prize for +Numerical Software. It is also part of the industry standard SPEC CPU 2006 and +SPEC CPU 2017 benchmark suites used to determine the speed of computers and +compilers. + +WWW: https://www.dealii.org/ diff --git a/math/deal.ii/pkg-plist b/math/deal.ii/pkg-plist new file mode 100644 index 00000000000..1ae63a8af0d --- /dev/null +++ b/math/deal.ii/pkg-plist @@ -0,0 +1,509 @@ +include/deal.II/algorithms/any_data.h +include/deal.II/algorithms/named_selection.h +include/deal.II/algorithms/newton.h +include/deal.II/algorithms/newton.templates.h +include/deal.II/algorithms/operator.h +include/deal.II/algorithms/operator.templates.h +include/deal.II/algorithms/theta_timestepping.h +include/deal.II/algorithms/theta_timestepping.templates.h +include/deal.II/algorithms/timestep_control.h +include/deal.II/base/aligned_vector.h +include/deal.II/base/array_view.h +include/deal.II/base/auto_derivative_function.h +include/deal.II/base/bounding_box.h +include/deal.II/base/complex_overloads.h +include/deal.II/base/conditional_ostream.h +include/deal.II/base/config.h +include/deal.II/base/convergence_table.h +include/deal.II/base/cuda.h +include/deal.II/base/cuda_size.h +include/deal.II/base/data_out_base.h +include/deal.II/base/derivative_form.h +include/deal.II/base/event.h +include/deal.II/base/exceptions.h +include/deal.II/base/flow_function.h +include/deal.II/base/function.h +include/deal.II/base/function.templates.h +include/deal.II/base/function_bessel.h +include/deal.II/base/function_cspline.h +include/deal.II/base/function_derivative.h +include/deal.II/base/function_lib.h +include/deal.II/base/function_parser.h +include/deal.II/base/function_spherical.h +include/deal.II/base/function_time.h +include/deal.II/base/function_time.templates.h +include/deal.II/base/geometric_utilities.h +include/deal.II/base/geometry_info.h +include/deal.II/base/graph_coloring.h +include/deal.II/base/index_set.h +include/deal.II/base/iterator_range.h +include/deal.II/base/job_identifier.h +include/deal.II/base/linear_index_iterator.h +include/deal.II/base/logstream.h +include/deal.II/base/memory_consumption.h +include/deal.II/base/mg_level_object.h +include/deal.II/base/mpi.h +include/deal.II/base/mpi.templates.h +include/deal.II/base/multithread_info.h +include/deal.II/base/numbers.h +include/deal.II/base/parallel.h +include/deal.II/base/parameter_acceptor.h +include/deal.II/base/parameter_handler.h +include/deal.II/base/parsed_function.h +include/deal.II/base/partitioner.h +include/deal.II/base/partitioner.templates.h +include/deal.II/base/path_search.h +include/deal.II/base/patterns.h +include/deal.II/base/point.h +include/deal.II/base/polynomial.h +include/deal.II/base/polynomial_space.h +include/deal.II/base/polynomials_abf.h +include/deal.II/base/polynomials_adini.h +include/deal.II/base/polynomials_bdm.h +include/deal.II/base/polynomials_bernstein.h +include/deal.II/base/polynomials_integrated_legendre_sz.h +include/deal.II/base/polynomials_nedelec.h +include/deal.II/base/polynomials_p.h +include/deal.II/base/polynomials_piecewise.h +include/deal.II/base/polynomials_rannacher_turek.h +include/deal.II/base/polynomials_raviart_thomas.h +include/deal.II/base/polynomials_rt_bubbles.h +include/deal.II/base/process_grid.h +include/deal.II/base/qprojector.h +include/deal.II/base/quadrature.h +include/deal.II/base/quadrature_lib.h +include/deal.II/base/quadrature_point_data.h +include/deal.II/base/quadrature_selector.h +include/deal.II/base/revision.h +include/deal.II/base/sacado_product_type.h +include/deal.II/base/signaling_nan.h +include/deal.II/base/smartpointer.h +include/deal.II/base/std_cxx11/array.h +include/deal.II/base/std_cxx11/bind.h +include/deal.II/base/std_cxx11/condition_variable.h +include/deal.II/base/std_cxx11/function.h +include/deal.II/base/std_cxx11/iterator.h +include/deal.II/base/std_cxx11/mutex.h +include/deal.II/base/std_cxx11/shared_ptr.h +include/deal.II/base/std_cxx11/thread.h +include/deal.II/base/std_cxx11/tuple.h +include/deal.II/base/std_cxx11/type_traits.h +include/deal.II/base/std_cxx11/unique_ptr.h +include/deal.II/base/std_cxx14/algorithm.h +include/deal.II/base/std_cxx14/memory.h +include/deal.II/base/std_cxx14/utility.h +include/deal.II/base/std_cxx1x/array.h +include/deal.II/base/std_cxx1x/bind.h +include/deal.II/base/std_cxx1x/condition_variable.h +include/deal.II/base/std_cxx1x/function.h +include/deal.II/base/std_cxx1x/mutex.h +include/deal.II/base/std_cxx1x/shared_ptr.h +include/deal.II/base/std_cxx1x/thread.h +include/deal.II/base/std_cxx1x/tuple.h +include/deal.II/base/std_cxx1x/type_traits.h +include/deal.II/base/subscriptor.h +include/deal.II/base/symmetric_tensor.h +include/deal.II/base/symmetric_tensor.templates.h +include/deal.II/base/synchronous_iterator.h +include/deal.II/base/table.h +include/deal.II/base/table_handler.h +include/deal.II/base/table_indices.h +include/deal.II/base/template_constraints.h +include/deal.II/base/tensor.h +include/deal.II/base/tensor_accessors.h +include/deal.II/base/tensor_base.h +include/deal.II/base/tensor_deprecated.h +include/deal.II/base/tensor_function.h +include/deal.II/base/tensor_function.templates.h +include/deal.II/base/tensor_product_polynomials.h +include/deal.II/base/tensor_product_polynomials_bubbles.h +include/deal.II/base/tensor_product_polynomials_const.h +include/deal.II/base/thread_local_storage.h +include/deal.II/base/thread_management.h +include/deal.II/base/time_stepping.h +include/deal.II/base/time_stepping.templates.h +include/deal.II/base/timer.h +include/deal.II/base/types.h +include/deal.II/base/utilities.h +include/deal.II/base/vector_slice.h +include/deal.II/base/vectorization.h +include/deal.II/base/work_stream.h +include/deal.II/differentiation/ad.h +include/deal.II/differentiation/ad/ad_number_traits.h +include/deal.II/differentiation/ad/ad_number_types.h +include/deal.II/differentiation/ad/adolc_math.h +include/deal.II/differentiation/ad/adolc_number_types.h +include/deal.II/differentiation/ad/adolc_product_types.h +include/deal.II/differentiation/ad/sacado_math.h +include/deal.II/differentiation/ad/sacado_number_types.h +include/deal.II/differentiation/ad/sacado_product_types.h +include/deal.II/distributed/grid_refinement.h +include/deal.II/distributed/grid_tools.h +include/deal.II/distributed/p4est_wrappers.h +include/deal.II/distributed/shared_tria.h +include/deal.II/distributed/solution_transfer.h +include/deal.II/distributed/tria.h +include/deal.II/distributed/tria_base.h +include/deal.II/dofs/block_info.h +include/deal.II/dofs/dof_accessor.h +include/deal.II/dofs/dof_accessor.templates.h +include/deal.II/dofs/dof_faces.h +include/deal.II/dofs/dof_handler.h +include/deal.II/dofs/dof_handler_policy.h +include/deal.II/dofs/dof_iterator_selector.h +include/deal.II/dofs/dof_levels.h +include/deal.II/dofs/dof_objects.h +include/deal.II/dofs/dof_renumbering.h +include/deal.II/dofs/dof_tools.h +include/deal.II/dofs/function_map.h +include/deal.II/dofs/number_cache.h +include/deal.II/fe/block_mask.h +include/deal.II/fe/component_mask.h +include/deal.II/fe/fe.h +include/deal.II/fe/fe_abf.h +include/deal.II/fe/fe_base.h +include/deal.II/fe/fe_bdm.h +include/deal.II/fe/fe_bernstein.h +include/deal.II/fe/fe_dg_vector.h +include/deal.II/fe/fe_dg_vector.templates.h +include/deal.II/fe/fe_dgp.h +include/deal.II/fe/fe_dgp_monomial.h +include/deal.II/fe/fe_dgp_nonparametric.h +include/deal.II/fe/fe_dgq.h +include/deal.II/fe/fe_enriched.h +include/deal.II/fe/fe_face.h +include/deal.II/fe/fe_nedelec.h +include/deal.II/fe/fe_nothing.h +include/deal.II/fe/fe_p1nc.h +include/deal.II/fe/fe_poly.h +include/deal.II/fe/fe_poly.templates.h +include/deal.II/fe/fe_poly_face.h +include/deal.II/fe/fe_poly_face.templates.h +include/deal.II/fe/fe_poly_tensor.h +include/deal.II/fe/fe_q.h +include/deal.II/fe/fe_q_base.h +include/deal.II/fe/fe_q_bubbles.h +include/deal.II/fe/fe_q_dg0.h +include/deal.II/fe/fe_q_hierarchical.h +include/deal.II/fe/fe_q_iso_q1.h +include/deal.II/fe/fe_rannacher_turek.h +include/deal.II/fe/fe_raviart_thomas.h +include/deal.II/fe/fe_rt_bubbles.h +include/deal.II/fe/fe_series.h +include/deal.II/fe/fe_system.h +include/deal.II/fe/fe_tools.h +include/deal.II/fe/fe_tools.templates.h +include/deal.II/fe/fe_tools_extrapolate.templates.h +include/deal.II/fe/fe_tools_interpolate.templates.h +include/deal.II/fe/fe_trace.h +include/deal.II/fe/fe_update_flags.h +include/deal.II/fe/fe_values.h +include/deal.II/fe/fe_values_extractors.h +include/deal.II/fe/mapping.h +include/deal.II/fe/mapping_c1.h +include/deal.II/fe/mapping_cartesian.h +include/deal.II/fe/mapping_fe_field.h +include/deal.II/fe/mapping_manifold.h +include/deal.II/fe/mapping_q.h +include/deal.II/fe/mapping_q1.h +include/deal.II/fe/mapping_q1_eulerian.h +include/deal.II/fe/mapping_q_eulerian.h +include/deal.II/fe/mapping_q_generic.h +include/deal.II/gmsh/utilities.h +include/deal.II/grid/cell_id.h +include/deal.II/grid/composition_manifold.h +include/deal.II/grid/filtered_iterator.h +include/deal.II/grid/grid_generator.h +include/deal.II/grid/grid_in.h +include/deal.II/grid/grid_out.h +include/deal.II/grid/grid_refinement.h +include/deal.II/grid/grid_reordering.h +include/deal.II/grid/grid_tools.h +include/deal.II/grid/grid_tools_cache.h +include/deal.II/grid/grid_tools_cache_update_flags.h +include/deal.II/grid/intergrid_map.h +include/deal.II/grid/magic_numbers.h +include/deal.II/grid/manifold.h +include/deal.II/grid/manifold_lib.h +include/deal.II/grid/persistent_tria.h +include/deal.II/grid/tensor_product_manifold.h +include/deal.II/grid/tria.h +include/deal.II/grid/tria_accessor.h +include/deal.II/grid/tria_accessor.templates.h +include/deal.II/grid/tria_boundary.h +include/deal.II/grid/tria_boundary_lib.h +include/deal.II/grid/tria_faces.h +include/deal.II/grid/tria_iterator.h +include/deal.II/grid/tria_iterator.templates.h +include/deal.II/grid/tria_iterator_base.h +include/deal.II/grid/tria_iterator_selector.h +include/deal.II/grid/tria_levels.h +include/deal.II/grid/tria_object.h +include/deal.II/grid/tria_objects.h +include/deal.II/hp/dof_faces.h +include/deal.II/hp/dof_handler.h +include/deal.II/hp/dof_level.h +include/deal.II/hp/fe_collection.h +include/deal.II/hp/fe_values.h +include/deal.II/hp/mapping_collection.h +include/deal.II/hp/q_collection.h +include/deal.II/integrators/advection.h +include/deal.II/integrators/divergence.h +include/deal.II/integrators/elasticity.h +include/deal.II/integrators/grad_div.h +include/deal.II/integrators/l2.h +include/deal.II/integrators/laplace.h +include/deal.II/integrators/local_integrators.h +include/deal.II/integrators/maxwell.h +include/deal.II/integrators/patches.h +include/deal.II/lac/arpack_solver.h +include/deal.II/lac/block_indices.h +include/deal.II/lac/block_linear_operator.h +include/deal.II/lac/block_matrix_array.h +include/deal.II/lac/block_matrix_base.h +include/deal.II/lac/block_sparse_matrix.h +include/deal.II/lac/block_sparse_matrix.templates.h +include/deal.II/lac/block_sparse_matrix_ez.h +include/deal.II/lac/block_sparse_matrix_ez.templates.h +include/deal.II/lac/block_sparsity_pattern.h +include/deal.II/lac/block_vector.h +include/deal.II/lac/block_vector.templates.h +include/deal.II/lac/block_vector_base.h +include/deal.II/lac/chunk_sparse_matrix.h +include/deal.II/lac/chunk_sparse_matrix.templates.h +include/deal.II/lac/chunk_sparsity_pattern.h +include/deal.II/lac/communication_pattern_base.h +include/deal.II/lac/constrained_linear_operator.h +include/deal.II/lac/constraint_matrix.h +include/deal.II/lac/constraint_matrix.templates.h +include/deal.II/lac/cuda_atomic.h +include/deal.II/lac/cuda_solver_direct.h +include/deal.II/lac/cuda_sparse_matrix.h +include/deal.II/lac/cuda_vector.h +include/deal.II/lac/diagonal_matrix.h +include/deal.II/lac/dynamic_sparsity_pattern.h +include/deal.II/lac/eigen.h +include/deal.II/lac/exceptions.h +include/deal.II/lac/filtered_matrix.h +include/deal.II/lac/full_matrix.h +include/deal.II/lac/full_matrix.templates.h +include/deal.II/lac/generic_linear_algebra.h +include/deal.II/lac/householder.h +include/deal.II/lac/identity_matrix.h +include/deal.II/lac/la_parallel_block_vector.h +include/deal.II/lac/la_parallel_block_vector.templates.h +include/deal.II/lac/la_parallel_vector.h +include/deal.II/lac/la_parallel_vector.templates.h +include/deal.II/lac/la_vector.h +include/deal.II/lac/la_vector.templates.h +include/deal.II/lac/lapack_full_matrix.h +include/deal.II/lac/lapack_support.h +include/deal.II/lac/lapack_templates.h +include/deal.II/lac/linear_operator.h +include/deal.II/lac/linear_operator_tools.h +include/deal.II/lac/matrix_block.h +include/deal.II/lac/matrix_iterator.h +include/deal.II/lac/matrix_lib.h +include/deal.II/lac/matrix_lib.templates.h +include/deal.II/lac/matrix_out.h +include/deal.II/lac/packaged_operation.h +include/deal.II/lac/parallel_block_vector.h +include/deal.II/lac/parallel_vector.h +include/deal.II/lac/parpack_solver.h +include/deal.II/lac/petsc_compatibility.h +include/deal.II/lac/petsc_full_matrix.h +include/deal.II/lac/petsc_matrix_base.h +include/deal.II/lac/petsc_matrix_free.h +include/deal.II/lac/petsc_parallel_block_sparse_matrix.h +include/deal.II/lac/petsc_parallel_block_vector.h +include/deal.II/lac/petsc_parallel_sparse_matrix.h +include/deal.II/lac/petsc_parallel_vector.h +include/deal.II/lac/petsc_precondition.h +include/deal.II/lac/petsc_solver.h +include/deal.II/lac/petsc_sparse_matrix.h +include/deal.II/lac/petsc_vector_base.h +include/deal.II/lac/pointer_matrix.h +include/deal.II/lac/precondition.h +include/deal.II/lac/precondition_block.h +include/deal.II/lac/precondition_block.templates.h +include/deal.II/lac/precondition_block_base.h +include/deal.II/lac/precondition_selector.h +include/deal.II/lac/read_write_vector.h +include/deal.II/lac/read_write_vector.templates.h +include/deal.II/lac/relaxation_block.h +include/deal.II/lac/relaxation_block.templates.h +include/deal.II/lac/scalapack.h +include/deal.II/lac/scalapack.templates.h +include/deal.II/lac/schur_complement.h +include/deal.II/lac/slepc_solver.h +include/deal.II/lac/slepc_spectral_transformation.h +include/deal.II/lac/solver.h +include/deal.II/lac/solver_bicgstab.h +include/deal.II/lac/solver_cg.h +include/deal.II/lac/solver_control.h +include/deal.II/lac/solver_fire.h +include/deal.II/lac/solver_gmres.h +include/deal.II/lac/solver_minres.h +include/deal.II/lac/solver_qmrs.h +include/deal.II/lac/solver_relaxation.h +include/deal.II/lac/solver_richardson.h +include/deal.II/lac/solver_selector.h +include/deal.II/lac/sparse_decomposition.h +include/deal.II/lac/sparse_decomposition.templates.h +include/deal.II/lac/sparse_direct.h +include/deal.II/lac/sparse_ilu.h +include/deal.II/lac/sparse_ilu.templates.h +include/deal.II/lac/sparse_matrix.h +include/deal.II/lac/sparse_matrix.templates.h +include/deal.II/lac/sparse_matrix_ez.h +include/deal.II/lac/sparse_matrix_ez.templates.h +include/deal.II/lac/sparse_mic.h +include/deal.II/lac/sparse_mic.templates.h +include/deal.II/lac/sparse_vanka.h +include/deal.II/lac/sparse_vanka.templates.h +include/deal.II/lac/sparsity_pattern.h +include/deal.II/lac/sparsity_tools.h +include/deal.II/lac/swappable_vector.h +include/deal.II/lac/swappable_vector.templates.h +include/deal.II/lac/tensor_product_matrix.h +include/deal.II/lac/tridiagonal_matrix.h +include/deal.II/lac/trilinos_block_sparse_matrix.h +include/deal.II/lac/trilinos_epetra_communication_pattern.h +include/deal.II/lac/trilinos_epetra_vector.h +include/deal.II/lac/trilinos_index_access.h +include/deal.II/lac/trilinos_linear_operator.h +include/deal.II/lac/trilinos_parallel_block_vector.h +include/deal.II/lac/trilinos_precondition.h +include/deal.II/lac/trilinos_solver.h +include/deal.II/lac/trilinos_sparse_matrix.h +include/deal.II/lac/trilinos_sparsity_pattern.h +include/deal.II/lac/trilinos_vector.h +include/deal.II/lac/trilinos_vector_base.h +include/deal.II/lac/utilities.h +include/deal.II/lac/vector.h +include/deal.II/lac/vector.templates.h +include/deal.II/lac/vector_element_access.h +include/deal.II/lac/vector_memory.h +include/deal.II/lac/vector_memory.templates.h +include/deal.II/lac/vector_operation.h +include/deal.II/lac/vector_operations_internal.h +include/deal.II/lac/vector_space_vector.h +include/deal.II/lac/vector_type_traits.h +include/deal.II/lac/vector_view.h +include/deal.II/matrix_free/cuda_fe_evaluation.h +include/deal.II/matrix_free/cuda_matrix_free.h +include/deal.II/matrix_free/cuda_matrix_free.templates.h +include/deal.II/matrix_free/cuda_tensor_product_kernels.h +include/deal.II/matrix_free/dof_info.h +include/deal.II/matrix_free/dof_info.templates.h +include/deal.II/matrix_free/evaluation_kernels.h +include/deal.II/matrix_free/evaluation_selector.h +include/deal.II/matrix_free/face_info.h +include/deal.II/matrix_free/face_setup_internal.h +include/deal.II/matrix_free/fe_evaluation.h +include/deal.II/matrix_free/helper_functions.h +include/deal.II/matrix_free/mapping_data_on_the_fly.h +include/deal.II/matrix_free/mapping_info.h +include/deal.II/matrix_free/mapping_info.templates.h +include/deal.II/matrix_free/matrix_free.h +include/deal.II/matrix_free/matrix_free.templates.h +include/deal.II/matrix_free/operators.h +include/deal.II/matrix_free/shape_info.h +include/deal.II/matrix_free/shape_info.templates.h +include/deal.II/matrix_free/task_info.h +include/deal.II/matrix_free/tensor_product_kernels.h +include/deal.II/meshworker/assemble_flags.h +include/deal.II/meshworker/assembler.h +include/deal.II/meshworker/dof_info.h +include/deal.II/meshworker/dof_info.templates.h +include/deal.II/meshworker/functional.h +include/deal.II/meshworker/integration_info.h +include/deal.II/meshworker/integration_info.templates.h +include/deal.II/meshworker/local_integrator.h +include/deal.II/meshworker/local_results.h +include/deal.II/meshworker/loop.h +include/deal.II/meshworker/mesh_loop.h +include/deal.II/meshworker/output.h +include/deal.II/meshworker/simple.h +include/deal.II/meshworker/vector_selector.h +include/deal.II/meshworker/vector_selector.templates.h +include/deal.II/multigrid/mg_base.h +include/deal.II/multigrid/mg_block_smoother.h +include/deal.II/multigrid/mg_coarse.h +include/deal.II/multigrid/mg_constrained_dofs.h +include/deal.II/multigrid/mg_dof_accessor.h +include/deal.II/multigrid/mg_matrix.h +include/deal.II/multigrid/mg_smoother.h +include/deal.II/multigrid/mg_tools.h +include/deal.II/multigrid/mg_transfer.h +include/deal.II/multigrid/mg_transfer.templates.h +include/deal.II/multigrid/mg_transfer_block.h +include/deal.II/multigrid/mg_transfer_block.templates.h +include/deal.II/multigrid/mg_transfer_component.h +include/deal.II/multigrid/mg_transfer_component.templates.h +include/deal.II/multigrid/mg_transfer_internal.h +include/deal.II/multigrid/mg_transfer_matrix_free.h +include/deal.II/multigrid/multigrid.h +include/deal.II/multigrid/multigrid.templates.h +include/deal.II/multigrid/sparse_matrix_collection.h +include/deal.II/non_matching/coupling.h +include/deal.II/non_matching/immersed_surface_quadrature.h +include/deal.II/numerics/data_component_interpretation.h +include/deal.II/numerics/data_out.h +include/deal.II/numerics/data_out_dof_data.h +include/deal.II/numerics/data_out_dof_data.templates.h +include/deal.II/numerics/data_out_faces.h +include/deal.II/numerics/data_out_rotation.h +include/deal.II/numerics/data_out_stack.h +include/deal.II/numerics/data_postprocessor.h +include/deal.II/numerics/derivative_approximation.h +include/deal.II/numerics/dof_output_operator.h +include/deal.II/numerics/dof_output_operator.templates.h +include/deal.II/numerics/dof_print_solver_step.h +include/deal.II/numerics/error_estimator.h +include/deal.II/numerics/error_estimator.templates.h +include/deal.II/numerics/fe_field_function.h +include/deal.II/numerics/fe_field_function.templates.h +include/deal.II/numerics/histogram.h +include/deal.II/numerics/kdtree.h +include/deal.II/numerics/matrix_creator.templates.h +include/deal.II/numerics/matrix_tools.h +include/deal.II/numerics/point_value_history.h +include/deal.II/numerics/solution_transfer.h +include/deal.II/numerics/time_dependent.h +include/deal.II/numerics/vector_tools.h +include/deal.II/numerics/vector_tools.templates.h +include/deal.II/opencascade/boundary_lib.h +include/deal.II/opencascade/utilities.h +include/deal.II/optimization/rol/vector_adaptor.h +include/deal.II/particles/particle.h +include/deal.II/particles/particle_accessor.h +include/deal.II/particles/particle_handler.h +include/deal.II/particles/particle_iterator.h +include/deal.II/particles/property_pool.h +include/deal.II/physics/elasticity/kinematics.h +include/deal.II/physics/elasticity/standard_tensors.h +include/deal.II/physics/notation.h +include/deal.II/physics/transformations.h +include/deal.II/sundials/arkode.h +include/deal.II/sundials/copy.h +include/deal.II/sundials/ida.h +include/deal.II/sundials/kinsol.h +lib/cmake/deal.II/deal.IIConfig.cmake +lib/cmake/deal.II/deal.IIConfigVersion.cmake +lib/cmake/deal.II/deal.IIFeatureConfig.cmake +lib/cmake/deal.II/deal.IITargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/deal.II/deal.IITargets.cmake +lib/libdeal_II.so +lib/libdeal_II.so.9.0.0 +%%DATADIR%%/macros/macro_deal_ii_add_test.cmake +%%DATADIR%%/macros/macro_deal_ii_initialize_cached_variables.cmake +%%DATADIR%%/macros/macro_deal_ii_invoke_autopilot.cmake +%%DATADIR%%/macros/macro_deal_ii_pickup_tests.cmake +%%DATADIR%%/macros/macro_deal_ii_query_git_information.cmake +%%DATADIR%%/macros/macro_deal_ii_setup_target.cmake +%%DATADIR%%/scripts/get_closest_tag.sh +%%DATADIR%%/scripts/get_latest_tag.sh +%%DATADIR%%/scripts/normalize.pl +%%DATADIR%%/scripts/run_test.cmake +%%DATADIR%%/scripts/run_test.sh diff --git a/math/gnuplot-tex-extras/Makefile b/math/gnuplot-tex-extras/Makefile index 2773dfa784b..5c1698f6755 100644 --- a/math/gnuplot-tex-extras/Makefile +++ b/math/gnuplot-tex-extras/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= gnuplot -PORTVERSION= 5.2.4 +PORTVERSION= 5.2.5 CATEGORIES= math graphics MASTER_SITES= SF PKGNAMESUFFIX= -tex-extras diff --git a/math/gnuplot-tex-extras/distinfo b/math/gnuplot-tex-extras/distinfo index 69b0c837172..06b61fd1fc2 100644 --- a/math/gnuplot-tex-extras/distinfo +++ b/math/gnuplot-tex-extras/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1529170944 -SHA256 (gnuplot-5.2.4.tar.gz) = 1515f000bd373aaa53b16183f274189d4f5e0ae47d22f434857933d16a4770cb -SIZE (gnuplot-5.2.4.tar.gz) = 5292321 +TIMESTAMP = 1538928524 +SHA256 (gnuplot-5.2.5.tar.gz) = 039db2cce62ddcfd31a6696fe576f4224b3bc3f919e66191dfe2cdb058475caa +SIZE (gnuplot-5.2.5.tar.gz) = 5305288 diff --git a/math/gnuplot/Makefile b/math/gnuplot/Makefile index c2bfd1a968f..8a2b85aba29 100644 --- a/math/gnuplot/Makefile +++ b/math/gnuplot/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= gnuplot -PORTVERSION= 5.2.4 +PORTVERSION= 5.2.5 CATEGORIES= math graphics MASTER_SITES= SF diff --git a/math/gnuplot/distinfo b/math/gnuplot/distinfo index d4846aec0d4..06b61fd1fc2 100644 --- a/math/gnuplot/distinfo +++ b/math/gnuplot/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1529170686 -SHA256 (gnuplot-5.2.4.tar.gz) = 1515f000bd373aaa53b16183f274189d4f5e0ae47d22f434857933d16a4770cb -SIZE (gnuplot-5.2.4.tar.gz) = 5292321 +TIMESTAMP = 1538928524 +SHA256 (gnuplot-5.2.5.tar.gz) = 039db2cce62ddcfd31a6696fe576f4224b3bc3f919e66191dfe2cdb058475caa +SIZE (gnuplot-5.2.5.tar.gz) = 5305288 diff --git a/math/libxlsxwriter/Makefile b/math/libxlsxwriter/Makefile index dc32977b4bf..7c72f0aabf7 100644 --- a/math/libxlsxwriter/Makefile +++ b/math/libxlsxwriter/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= libxlsxwriter -PORTVERSION= 0.8.2 +PORTVERSION= 0.8.3 DISTVERSIONPREFIX= RELEASE_ CATEGORIES= math devel diff --git a/math/libxlsxwriter/distinfo b/math/libxlsxwriter/distinfo index 1a3d115b975..a3c80f333bd 100644 --- a/math/libxlsxwriter/distinfo +++ b/math/libxlsxwriter/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1537174006 -SHA256 (jmcnamara-libxlsxwriter-RELEASE_0.8.2_GH0.tar.gz) = e3bf67bab03eb4485dd0047627f0333fcbfad23e6cdc436388d854a8e10c28e7 -SIZE (jmcnamara-libxlsxwriter-RELEASE_0.8.2_GH0.tar.gz) = 13708624 +TIMESTAMP = 1538473254 +SHA256 (jmcnamara-libxlsxwriter-RELEASE_0.8.3_GH0.tar.gz) = 4e398f175bec4f3c0783ce8f1ee251609aafa6422fd6ee87b8e5420d541b50ac +SIZE (jmcnamara-libxlsxwriter-RELEASE_0.8.3_GH0.tar.gz) = 13978151 diff --git a/math/nanoflann/Makefile b/math/nanoflann/Makefile new file mode 100644 index 00000000000..04915215c28 --- /dev/null +++ b/math/nanoflann/Makefile @@ -0,0 +1,40 @@ +# $FreeBSD$ + +PORTNAME= nanoflann +DISTVERSIONPREFIX= v +DISTVERSION= 1.3.0 +CATEGORIES= math + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Header-only library for Nearest Neighbor (NN) search with KD-trees + +LICENSE= BSD2CLAUSE +LICENSE_FILE= ${WRKSRC}/COPYING + +USES= cmake:outsource +USE_GITHUB= yes +GH_ACCOUNT= jlblancoc + +CMAKE_OFF= BUILD_EXAMPLES BUILD_TESTS + +NO_ARCH= yes + +PLIST_FILES= include/nanoflann.hpp \ + lib/cmake/nanoflann/nanoflannConfig.cmake \ + lib/cmake/nanoflann/nanoflannConfigVersion.cmake \ + lib/cmake/nanoflann/nanoflannTargets.cmake \ + libdata/pkgconfig/nanoflann.pc + +do-test: + @cd ${BUILD_WRKSRC} && \ + ${SETENV} ${CONFIGURE_ENV} ${CMAKE_BIN} ${CMAKE_ARGS} -DBUILD_TESTS=ON ${CMAKE_SOURCE_PATH} && \ + ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} ${ALL_TARGET} && \ + ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} test + +benchmarks: build # benchmarks fail to run: https://github.com/jlblancoc/nanoflann/issues/100 + @cd ${BUILD_WRKSRC} && \ + ${SETENV} ${CONFIGURE_ENV} ${CMAKE_BIN} ${CMAKE_ARGS} -DBUILD_BENCHMARKS=ON ${CMAKE_SOURCE_PATH} && \ + ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} ${ALL_TARGET} && \ + ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} benchmarks + +.include diff --git a/math/nanoflann/distinfo b/math/nanoflann/distinfo new file mode 100644 index 00000000000..d070f5e77a9 --- /dev/null +++ b/math/nanoflann/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1538624079 +SHA256 (jlblancoc-nanoflann-v1.3.0_GH0.tar.gz) = e0efc289422bc4cbaf8811d2f2c3c080ad09ac6d68a2b70134f3595d5da010cb +SIZE (jlblancoc-nanoflann-v1.3.0_GH0.tar.gz) = 684715 diff --git a/math/nanoflann/pkg-descr b/math/nanoflann/pkg-descr new file mode 100644 index 00000000000..ec07fb91983 --- /dev/null +++ b/math/nanoflann/pkg-descr @@ -0,0 +1,11 @@ +nanoflann is a C++11 header-only library for building KD-Trees of datasets with +different topologies: R2, R3 (point clouds), SO(2) and SO(3) (2D and 3D rotation +groups). No support for approximate NN is provided. nanoflann does not require +compiling or installing. You just need to #include in your code. + +This library is a fork of the flann library by Marius Muja and David G. Lowe, +and born as a child project of MRPT. Following the original license terms, +nanoflann is distributed under the BSD license. Please, for bugs use the issues +button or fork and open a pull request. + +WWW: https://github.com/jlblancoc/nanoflann diff --git a/math/octave-forge-symbolic/Makefile b/math/octave-forge-symbolic/Makefile index 146d740fbfb..1da86e8687f 100644 --- a/math/octave-forge-symbolic/Makefile +++ b/math/octave-forge-symbolic/Makefile @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= octave-forge-symbolic -PORTVERSION= 2.7.0 -PORTREVISION= 2 +PORTVERSION= 2.7.1 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org diff --git a/math/octave-forge-symbolic/distinfo b/math/octave-forge-symbolic/distinfo index fdd0d892c8c..ad14291171a 100644 --- a/math/octave-forge-symbolic/distinfo +++ b/math/octave-forge-symbolic/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1532722259 -SHA256 (octave-forge/symbolic-2.7.0.tar.gz) = 46222cdf04e888b555ccf7426ad363837fc9c66a3533fff59f3fc400e91ab83e -SIZE (octave-forge/symbolic-2.7.0.tar.gz) = 251049 +TIMESTAMP = 1538786880 +SHA256 (octave-forge/symbolic-2.7.1.tar.gz) = 1f371bd3cbdbeae2cb2ae0b727efc5d2ea09f005867a5935a2514d78eb4b6eb1 +SIZE (octave-forge/symbolic-2.7.1.tar.gz) = 252044 diff --git a/math/octave/Makefile b/math/octave/Makefile index f059036cf76..878f816623d 100644 --- a/math/octave/Makefile +++ b/math/octave/Makefile @@ -3,7 +3,7 @@ PORTNAME= octave PORTVERSION= ${OCTAVE_VERSION} -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= math java MASTER_SITES= GNU @@ -20,7 +20,7 @@ RUN_DEPENDS= gnuplot:math/gnuplot \ gsed:textproc/gsed \ ${LOCALBASE}/bin/makeinfo:print/texinfo LIB_DEPENDS= libGraphicsMagick.so:graphics/GraphicsMagick \ - libarpack.so:math/arpack \ + libarpack.so:math/arpack-ng \ libcurl.so:ftp/curl \ libfftw3.so:math/fftw3 \ libfftw3f.so:math/fftw3-float \ diff --git a/math/p5-AI-Perceptron/Makefile b/math/p5-AI-Perceptron/Makefile index f2326719ae3..2171209629e 100644 --- a/math/p5-AI-Perceptron/Makefile +++ b/math/p5-AI-Perceptron/Makefile @@ -14,8 +14,8 @@ COMMENT= Perl module for introducing to internal operations of neural networks LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-accessors>=0:devel/p5-accessors -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-accessors>=0:devel/p5-accessors USES= perl5 USE_PERL5= modbuild diff --git a/math/p5-Algorithm-CurveFit/Makefile b/math/p5-Algorithm-CurveFit/Makefile index 8a97dc9f80f..e343472665a 100644 --- a/math/p5-Algorithm-CurveFit/Makefile +++ b/math/p5-Algorithm-CurveFit/Makefile @@ -14,9 +14,9 @@ COMMENT= Nonlinear Least Squares Fitting LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Math-MatrixReal>=0:math/p5-Math-MatrixReal \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Math-MatrixReal>=0:math/p5-Math-MatrixReal \ p5-Math-Symbolic>=0:math/p5-Math-Symbolic -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= modbuild diff --git a/math/p5-Algorithm-KMeans/Makefile b/math/p5-Algorithm-KMeans/Makefile index 5c445bc6652..b103d9a3790 100644 --- a/math/p5-Algorithm-KMeans/Makefile +++ b/math/p5-Algorithm-KMeans/Makefile @@ -13,10 +13,10 @@ COMMENT= Clustering multi-dimensional data with a pure-Perl implementation LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Graphics-GnuplotIF>=1.4:graphics/p5-Graphics-GnuplotIF \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Graphics-GnuplotIF>=1.4:graphics/p5-Graphics-GnuplotIF \ p5-Math-GSL>=0.26:math/p5-Math-GSL \ p5-Math-Random>=0.71:math/p5-Math-Random -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/math/p5-Bit-Vector/Makefile b/math/p5-Bit-Vector/Makefile index ae2b11ddbdc..28390cf6bff 100644 --- a/math/p5-Bit-Vector/Makefile +++ b/math/p5-Bit-Vector/Makefile @@ -13,8 +13,8 @@ COMMENT= Library of advanced math functions that includes a Perl OO module LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Carp-Clan>=5.3:devel/p5-Carp-Clan -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Carp-Clan>=5.3:devel/p5-Carp-Clan USES= perl5 USE_PERL5= configure diff --git a/math/p5-CAD-Calc/Makefile b/math/p5-CAD-Calc/Makefile index 525c9dbb6b0..8b6060e64f4 100644 --- a/math/p5-CAD-Calc/Makefile +++ b/math/p5-CAD-Calc/Makefile @@ -14,10 +14,10 @@ COMMENT= Generic cad-related geometry calculations LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Math-Geometry-Planar-Offset>=0:math/p5-Math-Geometry-Planar-Offset \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Math-Geometry-Planar-Offset>=0:math/p5-Math-Geometry-Planar-Offset \ p5-Math-Round-Var>=0:math/p5-Math-Round-Var \ p5-Math-Vec>=0:math/p5-Math-Vec -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= modbuild diff --git a/math/p5-Chart-Math-Axis/Makefile b/math/p5-Chart-Math-Axis/Makefile index 448465e0e50..1332afcaea5 100644 --- a/math/p5-Chart-Math-Axis/Makefile +++ b/math/p5-Chart-Math-Axis/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Implements an algorithm to find good values for chart axis -BUILD_DEPENDS= p5-Params-Util>=0.15:devel/p5-Params-Util -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Params-Util>=0.15:devel/p5-Params-Util USES= perl5 USE_PERL5= configure diff --git a/math/p5-GIS-Distance-Fast/Makefile b/math/p5-GIS-Distance-Fast/Makefile index e092190a609..f6d0319e49e 100644 --- a/math/p5-GIS-Distance-Fast/Makefile +++ b/math/p5-GIS-Distance-Fast/Makefile @@ -12,8 +12,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= C implementation of GIS::Distance formulas -BUILD_DEPENDS= p5-GIS-Distance>=0.07:math/p5-GIS-Distance -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-GIS-Distance>=0.07:math/p5-GIS-Distance USES= perl5 USE_PERL5= configure diff --git a/math/p5-GIS-Distance/Makefile b/math/p5-GIS-Distance/Makefile index 9d566941d00..df1b0de5aac 100644 --- a/math/p5-GIS-Distance/Makefile +++ b/math/p5-GIS-Distance/Makefile @@ -15,12 +15,12 @@ COMMENT= Calculate geographic distances LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Class-Measure>=0:devel/p5-Class-Measure \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Measure>=0:devel/p5-Class-Measure \ p5-Moo>=1.006000:devel/p5-Moo \ p5-Type-Tiny>=1:devel/p5-Type-Tiny \ p5-namespace-clean>=0:devel/p5-namespace-clean \ p5-strictures>=1:devel/p5-strictures -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/math/p5-Graph/Makefile b/math/p5-Graph/Makefile index a6c1bedd859..7e01c290642 100644 --- a/math/p5-Graph/Makefile +++ b/math/p5-Graph/Makefile @@ -11,10 +11,14 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Graph, the Perl module for graph operations -BUILD_DEPENDS= p5-Heap>=0:devel/p5-Heap -RUN_DEPENDS:= ${BUILD_DEPENDS} +LICENSE= ART10 GPLv1+ +LICENSE_COMB= dual + +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Heap>=0:devel/p5-Heap USES= perl5 USE_PERL5= configure +NO_ARCH= yes .include diff --git a/math/p5-Graph/pkg-descr b/math/p5-Graph/pkg-descr index b462f78a559..969fc586677 100644 --- a/math/p5-Graph/pkg-descr +++ b/math/p5-Graph/pkg-descr @@ -4,6 +4,3 @@ Jarkko Hietaniemi, and John Macdonald, published in August 1999 by the O'Reilly and Associates. WWW: https://metacpan.org/release/Graph - --Anton - diff --git a/math/p5-Math-BigInt-FastCalc/Makefile b/math/p5-Math-BigInt-FastCalc/Makefile index f4a4d6bcc59..a44bf5c44c2 100644 --- a/math/p5-Math-BigInt-FastCalc/Makefile +++ b/math/p5-Math-BigInt-FastCalc/Makefile @@ -13,8 +13,8 @@ COMMENT= Math::BigInt::Calc with some XS for more speed LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Math-BigInt>=1.999812:math/p5-Math-BigInt -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Math-BigInt>=1.999812:math/p5-Math-BigInt USES= perl5 USE_PERL5= configure diff --git a/math/p5-Math-BigInt-GMP/Makefile b/math/p5-Math-BigInt-GMP/Makefile index 80ca30540c6..ea0c89d8adc 100644 --- a/math/p5-Math-BigInt-GMP/Makefile +++ b/math/p5-Math-BigInt-GMP/Makefile @@ -13,9 +13,9 @@ COMMENT= Math::BigInt::GMP - Use the GMP library for Math::BigInt routines LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Math-BigInt>=1.999812:math/p5-Math-BigInt +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Math-BigInt>=1.999812:math/p5-Math-BigInt LIB_DEPENDS= libgmp.so:math/gmp -RUN_DEPENDS:= ${BUILD_DEPENDS} USE_PERL5= configure USES= localbase perl5 diff --git a/math/p5-Math-BigInt-Lite/Makefile b/math/p5-Math-BigInt-Lite/Makefile index 50c8e16de85..2b81a7f1637 100644 --- a/math/p5-Math-BigInt-Lite/Makefile +++ b/math/p5-Math-BigInt-Lite/Makefile @@ -14,8 +14,8 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Math-BigInt>=1.999812:math/p5-Math-BigInt -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Math-BigInt>=1.999812:math/p5-Math-BigInt NO_ARCH= yes USE_PERL5= configure diff --git a/math/p5-Math-BigInt-Pari/Makefile b/math/p5-Math-BigInt-Pari/Makefile index 5ac475d5d8c..8014f202597 100644 --- a/math/p5-Math-BigInt-Pari/Makefile +++ b/math/p5-Math-BigInt-Pari/Makefile @@ -13,9 +13,9 @@ COMMENT= Use Math::Pari for Math::BigInt routines LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Math-BigInt>=1.999812:math/p5-Math-BigInt \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Math-BigInt>=1.999812:math/p5-Math-BigInt \ p5-Math-Pari>=2.010709:math/p5-Math-Pari -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/math/p5-Math-Currency/Makefile b/math/p5-Math-Currency/Makefile index 4c41c8895dd..e63906135cc 100644 --- a/math/p5-Math-Currency/Makefile +++ b/math/p5-Math-Currency/Makefile @@ -14,8 +14,8 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Math-FixedPrecision>=0:math/p5-Math-FixedPrecision -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Math-FixedPrecision>=0:math/p5-Math-FixedPrecision TEST_DEPENDS= p5-Test-More-UTF8>=0:devel/p5-Test-More-UTF8 NO_ARCH= yes diff --git a/math/p5-Math-Geometry-Planar-Offset/Makefile b/math/p5-Math-Geometry-Planar-Offset/Makefile index bbc2c164c9e..e19560cbbd1 100644 --- a/math/p5-Math-Geometry-Planar-Offset/Makefile +++ b/math/p5-Math-Geometry-Planar-Offset/Makefile @@ -14,8 +14,8 @@ COMMENT= Calculate offset polygons LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-YAML>=0:textproc/p5-YAML -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-YAML>=0:textproc/p5-YAML USES= perl5 USE_PERL5= modbuild diff --git a/math/p5-Math-Geometry-Planar/Makefile b/math/p5-Math-Geometry-Planar/Makefile index 888950ab72c..4651ceccc38 100644 --- a/math/p5-Math-Geometry-Planar/Makefile +++ b/math/p5-Math-Geometry-Planar/Makefile @@ -14,9 +14,9 @@ COMMENT= Collection of planar geometry functions LICENSE= ART10 -BUILD_DEPENDS= p5-Math-Geometry-Planar-GPC>=0:math/p5-Math-Geometry-Planar-GPC \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Math-Geometry-Planar-GPC>=0:math/p5-Math-Geometry-Planar-GPC \ p5-Math-Geometry-Planar-Offset>=0:math/p5-Math-Geometry-Planar-Offset -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/math/p5-Math-Geometry-Voronoi/Makefile b/math/p5-Math-Geometry-Voronoi/Makefile index 48a23c13662..66e42916859 100644 --- a/math/p5-Math-Geometry-Voronoi/Makefile +++ b/math/p5-Math-Geometry-Voronoi/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Perl Module to compute Voronoi diagrams from sets of points -BUILD_DEPENDS= p5-Class-Accessor>=0.18:devel/p5-Class-Accessor \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Accessor>=0.18:devel/p5-Class-Accessor \ p5-Params-Validate>=0:devel/p5-Params-Validate -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/math/p5-Math-Geometry/Makefile b/math/p5-Math-Geometry/Makefile index bdcc8275d7c..5b8bfa589bd 100644 --- a/math/p5-Math-Geometry/Makefile +++ b/math/p5-Math-Geometry/Makefile @@ -14,8 +14,8 @@ COMMENT= Geometry related functions LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Math-Matrix>=0:math/p5-Math-Matrix -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Math-Matrix>=0:math/p5-Math-Matrix NO_ARCH= yes USE_PERL5= configure diff --git a/math/p5-Math-MPC/Makefile b/math/p5-Math-MPC/Makefile index 5e973f11aea..198c2add70e 100644 --- a/math/p5-Math-MPC/Makefile +++ b/math/p5-Math-MPC/Makefile @@ -14,11 +14,11 @@ COMMENT= Perl interface to MPC Library LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Math-MPFR>=3.23:math/p5-Math-MPFR +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Math-MPFR>=3.23:math/p5-Math-MPFR LIB_DEPENDS= libgmp.so:math/gmp \ libmpc.so:math/mpc \ libmpfr.so:math/mpfr -RUN_DEPENDS:= ${BUILD_DEPENDS} USE_PERL5= configure USES= localbase perl5 diff --git a/math/p5-Math-Polygon-Tree/Makefile b/math/p5-Math-Polygon-Tree/Makefile index b6a1e491ea6..38c7b760a85 100644 --- a/math/p5-Math-Polygon-Tree/Makefile +++ b/math/p5-Math-Polygon-Tree/Makefile @@ -12,10 +12,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= amdmi3@FreeBSD.org COMMENT= Class for fast check if point is inside polygon -BUILD_DEPENDS= p5-Test-Simple>=0:devel/p5-Test-Simple \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Test-Simple>=0:devel/p5-Test-Simple \ p5-List-MoreUtils>=0:lang/p5-List-MoreUtils \ p5-Math-Geometry-Planar-GPC-PolygonXS>=0:math/p5-Math-Geometry-Planar-GPC-PolygonXS -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS:= p5-List-MoreUtils>=0:lang/p5-List-MoreUtils USES= perl5 diff --git a/math/p5-Math-Polynomial-Solve/Makefile b/math/p5-Math-Polynomial-Solve/Makefile index 896b0db9d1d..87f5629b640 100644 --- a/math/p5-Math-Polynomial-Solve/Makefile +++ b/math/p5-Math-Polynomial-Solve/Makefile @@ -14,8 +14,8 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Math-Utils>=1.06:math/p5-Math-Utils -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Math-Utils>=1.06:math/p5-Math-Utils NO_ARCH= yes USES= dos2unix perl5 diff --git a/math/p5-Math-Prime-XS/Makefile b/math/p5-Math-Prime-XS/Makefile index 7b204595cd9..1ced2d8b14c 100644 --- a/math/p5-Math-Prime-XS/Makefile +++ b/math/p5-Math-Prime-XS/Makefile @@ -13,9 +13,9 @@ COMMENT= Detect and calculate prime numbers with deterministic tests LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Params-Validate>=0:devel/p5-Params-Validate \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Params-Validate>=0:devel/p5-Params-Validate \ p5-boolean>=0:devel/p5-boolean -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Pod>=1.14:devel/p5-Test-Pod \ p5-Test-Pod-Coverage>=1.04:devel/p5-Test-Pod-Coverage diff --git a/math/p5-Math-Random-ISAAC/Makefile b/math/p5-Math-Random-ISAAC/Makefile index cfa0518d830..46ee36c3ad2 100644 --- a/math/p5-Math-Random-ISAAC/Makefile +++ b/math/p5-Math-Random-ISAAC/Makefile @@ -12,8 +12,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= wen@FreeBSD.org COMMENT= Perl interface to the ISAAC PRNG Algorithm -BUILD_DEPENDS= p5-Math-Random-ISAAC-XS>0:math/p5-Math-Random-ISAAC-XS -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Math-Random-ISAAC-XS>0:math/p5-Math-Random-ISAAC-XS TEST_DEPENDS= p5-Test-NoWarnings>0:devel/p5-Test-NoWarnings NO_ARCH= yes diff --git a/math/p5-Math-Random-MT-Auto/Makefile b/math/p5-Math-Random-MT-Auto/Makefile index 608d2fec35f..dcce7d82c55 100644 --- a/math/p5-Math-Random-MT-Auto/Makefile +++ b/math/p5-Math-Random-MT-Auto/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Auto-seeded Mersenne Twister PRNGs -BUILD_DEPENDS= p5-Exception-Class>=1.32:devel/p5-Exception-Class \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Exception-Class>=1.32:devel/p5-Exception-Class \ p5-Object-InsideOut>=3.88:devel/p5-Object-InsideOut -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-libwww>=0:www/p5-libwww USES= perl5 diff --git a/math/p5-Math-Random-OO/Makefile b/math/p5-Math-Random-OO/Makefile index 812fd7dd833..ce133b5657a 100644 --- a/math/p5-Math-Random-OO/Makefile +++ b/math/p5-Math-Random-OO/Makefile @@ -13,9 +13,9 @@ COMMENT= Consistent object-oriented interface for generating random numbers LICENSE= APACHE20 -BUILD_DEPENDS= p5-Class-Accessor>=0:devel/p5-Class-Accessor \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Accessor>=0:devel/p5-Class-Accessor \ p5-Params-Validate>=0.76:devel/p5-Params-Validate -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-MockRandom>=0.95:devel/p5-Test-MockRandom \ p5-Test-Number-Delta>=0.14:devel/p5-Test-Number-Delta diff --git a/math/p5-Math-RandomOrg/Makefile b/math/p5-Math-RandomOrg/Makefile index cb821341d8a..8fb3c647923 100644 --- a/math/p5-Math-RandomOrg/Makefile +++ b/math/p5-Math-RandomOrg/Makefile @@ -14,8 +14,8 @@ COMMENT= Retrieve random numbers and data from random.org LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-libwww>=0:www/p5-libwww USES= perl5 USE_PERL5= configure diff --git a/math/p5-Math-Sequence/Makefile b/math/p5-Math-Sequence/Makefile index f74df6d30f4..57845e2ca76 100644 --- a/math/p5-Math-Sequence/Makefile +++ b/math/p5-Math-Sequence/Makefile @@ -14,8 +14,8 @@ COMMENT= Perl extension dealing with mathematic sequences LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Math-Symbolic>=0:math/p5-Math-Symbolic -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Math-Symbolic>=0:math/p5-Math-Symbolic USES= perl5 USE_PERL5= configure diff --git a/math/p5-Math-Series/Makefile b/math/p5-Math-Series/Makefile index 792d4a8f29c..86e6bb75791 100644 --- a/math/p5-Math-Series/Makefile +++ b/math/p5-Math-Series/Makefile @@ -14,9 +14,9 @@ COMMENT= Perl extension dealing with mathematic series LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Math-Symbolic>=0:math/p5-Math-Symbolic \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Math-Symbolic>=0:math/p5-Math-Symbolic \ p5-Math-Sequence>=0:math/p5-Math-Sequence -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/math/p5-Math-Spline/Makefile b/math/p5-Math-Spline/Makefile index 4d16517f840..2d333a7fea2 100644 --- a/math/p5-Math-Spline/Makefile +++ b/math/p5-Math-Spline/Makefile @@ -14,8 +14,8 @@ COMMENT= Cubic Spline Interpolation of data LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Math-Derivative>=0:math/p5-Math-Derivative -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Math-Derivative>=0:math/p5-Math-Derivative USES= perl5 USE_PERL5= configure diff --git a/math/p5-Math-Symbolic-Custom-CCompiler/Makefile b/math/p5-Math-Symbolic-Custom-CCompiler/Makefile index 9f83d0bc599..f1af7617af3 100644 --- a/math/p5-Math-Symbolic-Custom-CCompiler/Makefile +++ b/math/p5-Math-Symbolic-Custom-CCompiler/Makefile @@ -14,10 +14,10 @@ COMMENT= Compile Math::Symbolic trees to C LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Math-Symbolic>=0.509:math/p5-Math-Symbolic \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Math-Symbolic>=0.509:math/p5-Math-Symbolic \ p5-Inline>=0.44:devel/p5-Inline \ p5-Inline-C>=0.44:devel/p5-Inline-C -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/math/p5-Math-Symbolic-Custom-Contains/Makefile b/math/p5-Math-Symbolic-Custom-Contains/Makefile index 69bb160fece..c513879fd7c 100644 --- a/math/p5-Math-Symbolic-Custom-Contains/Makefile +++ b/math/p5-Math-Symbolic-Custom-Contains/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Find subtrees in Math::Symbolic expressions -BUILD_DEPENDS= p5-Math-Symbolic>=0:math/p5-Math-Symbolic -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Math-Symbolic>=0:math/p5-Math-Symbolic USES= perl5 USE_PERL5= modbuild diff --git a/math/p5-Math-Symbolic-Custom-ErrorPropagation/Makefile b/math/p5-Math-Symbolic-Custom-ErrorPropagation/Makefile index 7fa1bdfd5f3..cb57f829d3e 100644 --- a/math/p5-Math-Symbolic-Custom-ErrorPropagation/Makefile +++ b/math/p5-Math-Symbolic-Custom-ErrorPropagation/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Calculate Gaussian Error Propagation -BUILD_DEPENDS= p5-Math-Symbolic>=0:math/p5-Math-Symbolic -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Math-Symbolic>=0:math/p5-Math-Symbolic USES= perl5 USE_PERL5= configure diff --git a/math/p5-Math-Symbolic-Custom-LaTeXDumper/Makefile b/math/p5-Math-Symbolic-Custom-LaTeXDumper/Makefile index 6e717ebc4fa..afb2e5bda6e 100644 --- a/math/p5-Math-Symbolic-Custom-LaTeXDumper/Makefile +++ b/math/p5-Math-Symbolic-Custom-LaTeXDumper/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Math::Symbolic LaTeX output -BUILD_DEPENDS= p5-Math-Symbolic>=0.201:math/p5-Math-Symbolic -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Math-Symbolic>=0.201:math/p5-Math-Symbolic USES= perl5 USE_PERL5= configure diff --git a/math/p5-Math-Symbolic-Custom-Pattern/Makefile b/math/p5-Math-Symbolic-Custom-Pattern/Makefile index cb431b829d1..ff93775041a 100644 --- a/math/p5-Math-Symbolic-Custom-Pattern/Makefile +++ b/math/p5-Math-Symbolic-Custom-Pattern/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Pattern matching on Math::Symbolic trees -BUILD_DEPENDS= p5-Math-Symbolic>=0.510:math/p5-Math-Symbolic \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Math-Symbolic>=0.510:math/p5-Math-Symbolic \ p5-Clone>=0:devel/p5-Clone -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Pod>=1.0:devel/p5-Test-Pod \ p5-Test-Pod-Coverage>=1.0:devel/p5-Test-Pod-Coverage diff --git a/math/p5-Math-Symbolic-Custom-Simplification/Makefile b/math/p5-Math-Symbolic-Custom-Simplification/Makefile index 32fb5b49e1f..0e94454922d 100644 --- a/math/p5-Math-Symbolic-Custom-Simplification/Makefile +++ b/math/p5-Math-Symbolic-Custom-Simplification/Makefile @@ -14,8 +14,8 @@ COMMENT= User defined simplification routines LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Math-Symbolic>=0:math/p5-Math-Symbolic -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Math-Symbolic>=0:math/p5-Math-Symbolic USES= perl5 USE_PERL5= configure diff --git a/math/p5-Math-Symbolic/Makefile b/math/p5-Math-Symbolic/Makefile index c515161a299..309fb4237f2 100644 --- a/math/p5-Math-Symbolic/Makefile +++ b/math/p5-Math-Symbolic/Makefile @@ -15,8 +15,8 @@ COMMENT= Symbolic calculations LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Parse-RecDescent>=0:devel/p5-Parse-RecDescent -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Parse-RecDescent>=0:devel/p5-Parse-RecDescent USES= perl5 shebangfix SHEBANG_FILES= compile_yapp_parser.pl diff --git a/math/p5-Math-SymbolicX-BigNum/Makefile b/math/p5-Math-SymbolicX-BigNum/Makefile index fb628dea8ff..cb17a9941ce 100644 --- a/math/p5-Math-SymbolicX-BigNum/Makefile +++ b/math/p5-Math-SymbolicX-BigNum/Makefile @@ -14,9 +14,9 @@ COMMENT= Big number support for the Math::Symbolic parser LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Math-Symbolic>=0:math/p5-Math-Symbolic \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Math-Symbolic>=0:math/p5-Math-Symbolic \ p5-Math-SymbolicX-ParserExtensionFactory>=0:math/p5-Math-SymbolicX-ParserExtensionFactory -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/math/p5-Math-SymbolicX-Complex/Makefile b/math/p5-Math-SymbolicX-Complex/Makefile index 437b0fd0967..2a8a510164b 100644 --- a/math/p5-Math-SymbolicX-Complex/Makefile +++ b/math/p5-Math-SymbolicX-Complex/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Complex number support for the Math::Symbolic parser -BUILD_DEPENDS= p5-Math-Symbolic>=0:math/p5-Math-Symbolic \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Math-Symbolic>=0:math/p5-Math-Symbolic \ p5-Math-SymbolicX-ParserExtensionFactory>=0:math/p5-Math-SymbolicX-ParserExtensionFactory -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/math/p5-Math-SymbolicX-Error/Makefile b/math/p5-Math-SymbolicX-Error/Makefile index a826335a93f..276bf169496 100644 --- a/math/p5-Math-SymbolicX-Error/Makefile +++ b/math/p5-Math-SymbolicX-Error/Makefile @@ -11,10 +11,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Parser extension for dealing with numeric errors -BUILD_DEPENDS= p5-Math-Symbolic>=0:math/p5-Math-Symbolic \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Math-Symbolic>=0:math/p5-Math-Symbolic \ p5-Math-SymbolicX-ParserExtensionFactory>=0:math/p5-Math-SymbolicX-ParserExtensionFactory \ p5-Number-WithError>=0:math/p5-Number-WithError -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/math/p5-Math-SymbolicX-Inline/Makefile b/math/p5-Math-SymbolicX-Inline/Makefile index 80b5195fd96..745250bd49b 100644 --- a/math/p5-Math-SymbolicX-Inline/Makefile +++ b/math/p5-Math-SymbolicX-Inline/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Inlined Math::Symbolic functions -BUILD_DEPENDS= p5-Math-Symbolic>=0:math/p5-Math-Symbolic \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Math-Symbolic>=0:math/p5-Math-Symbolic \ p5-Math-Symbolic-Custom-Contains>=0:math/p5-Math-Symbolic-Custom-Contains -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/math/p5-Math-SymbolicX-NoSimplification/Makefile b/math/p5-Math-SymbolicX-NoSimplification/Makefile index 363267abcae..4e94500bb91 100644 --- a/math/p5-Math-SymbolicX-NoSimplification/Makefile +++ b/math/p5-Math-SymbolicX-NoSimplification/Makefile @@ -14,8 +14,8 @@ COMMENT= Turn off Math::Symbolic simplification LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Math-Symbolic>=0:math/p5-Math-Symbolic -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Math-Symbolic>=0:math/p5-Math-Symbolic USES= perl5 USE_PERL5= configure diff --git a/math/p5-Math-SymbolicX-ParserExtensionFactory/Makefile b/math/p5-Math-SymbolicX-ParserExtensionFactory/Makefile index 732a013f622..d5ee9859ee1 100644 --- a/math/p5-Math-SymbolicX-ParserExtensionFactory/Makefile +++ b/math/p5-Math-SymbolicX-ParserExtensionFactory/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Generate parser extensions -BUILD_DEPENDS= p5-Math-Symbolic>=0:math/p5-Math-Symbolic -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Math-Symbolic>=0:math/p5-Math-Symbolic USES= perl5 USE_PERL5= configure diff --git a/math/p5-Math-SymbolicX-Statistics-Distributions/Makefile b/math/p5-Math-SymbolicX-Statistics-Distributions/Makefile index 4c07b3e2a93..4e6f9a32003 100644 --- a/math/p5-Math-SymbolicX-Statistics-Distributions/Makefile +++ b/math/p5-Math-SymbolicX-Statistics-Distributions/Makefile @@ -14,9 +14,9 @@ COMMENT= Statistical distributions LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Math-Symbolic>=0:math/p5-Math-Symbolic \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Math-Symbolic>=0:math/p5-Math-Symbolic \ p5-Math-SymbolicX-ParserExtensionFactory>=0:math/p5-Math-SymbolicX-ParserExtensionFactory -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-LectroTest>=0:devel/p5-Test-LectroTest USES= perl5 diff --git a/math/p5-Number-WithError-LaTeX/Makefile b/math/p5-Number-WithError-LaTeX/Makefile index d0dc2ce434f..558c9e6db44 100644 --- a/math/p5-Number-WithError-LaTeX/Makefile +++ b/math/p5-Number-WithError-LaTeX/Makefile @@ -14,11 +14,11 @@ COMMENT= LaTeX output for Number::WithError LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Params-Util>=0:devel/p5-Params-Util \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Params-Util>=0:devel/p5-Params-Util \ p5-prefork>=0:devel/p5-prefork \ p5-Number-WithError>=0:math/p5-Number-WithError \ p5-TeX-Encode>=0:textproc/p5-TeX-Encode -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-LectroTest>=0:devel/p5-Test-LectroTest USES= perl5 diff --git a/math/p5-Number-WithError/Makefile b/math/p5-Number-WithError/Makefile index 5e226b57a29..992c538568a 100644 --- a/math/p5-Number-WithError/Makefile +++ b/math/p5-Number-WithError/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= culot@FreeBSD.org COMMENT= Numbers with error propagation and scientific rounding -BUILD_DEPENDS= p5-Params-Util>=0:devel/p5-Params-Util \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Params-Util>=0:devel/p5-Params-Util \ p5-prefork>=0:devel/p5-prefork -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-LectroTest>=0:devel/p5-Test-LectroTest diff --git a/math/p5-Parse-Range/Makefile b/math/p5-Parse-Range/Makefile index 99a15ffd29e..2f7df2c7976 100644 --- a/math/p5-Parse-Range/Makefile +++ b/math/p5-Parse-Range/Makefile @@ -15,8 +15,8 @@ COMMENT= Parses range definitions and returns an array LICENSE= ART10 BSD3CLAUSE LICENSE_COMB= dual -BUILD_DEPENDS= p5-List-MoreUtils>=0.22:lang/p5-List-MoreUtils -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-List-MoreUtils>=0.22:lang/p5-List-MoreUtils USES= perl5 USE_PERL5= modbuild diff --git a/math/p5-Set-IntSpan-Fast-XS/Makefile b/math/p5-Set-IntSpan-Fast-XS/Makefile index 2de391589f2..f1b65e70d34 100644 --- a/math/p5-Set-IntSpan-Fast-XS/Makefile +++ b/math/p5-Set-IntSpan-Fast-XS/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Faster Set::IntSpan::Fast -BUILD_DEPENDS= p5-Data-Swap>=0.07:devel/p5-Data-Swap \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Data-Swap>=0.07:devel/p5-Data-Swap \ p5-Set-IntSpan-Fast>=1.13:math/p5-Set-IntSpan-Fast -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/math/p5-Set-IntSpan-Fast/Makefile b/math/p5-Set-IntSpan-Fast/Makefile index 8a1cf67c25f..0096afd4ca1 100644 --- a/math/p5-Set-IntSpan-Fast/Makefile +++ b/math/p5-Set-IntSpan-Fast/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Fast handling of sets containing integer spans -BUILD_DEPENDS= p5-Data-Types>=0:devel/p5-Data-Types -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Data-Types>=0:devel/p5-Data-Types USES= perl5 USE_PERL5= configure diff --git a/math/p5-Statistics-Basic/Makefile b/math/p5-Statistics-Basic/Makefile index 17abd2ac488..8515d9add4f 100644 --- a/math/p5-Statistics-Basic/Makefile +++ b/math/p5-Statistics-Basic/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Collection of basic statistics modules -BUILD_DEPENDS= p5-Number-Format>=1.61:textproc/p5-Number-Format -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Number-Format>=1.61:textproc/p5-Number-Format USES= perl5 USE_PERL5= configure diff --git a/math/p5-Statistics-Contingency/Makefile b/math/p5-Statistics-Contingency/Makefile index 237b485d14d..001ab60eba0 100644 --- a/math/p5-Statistics-Contingency/Makefile +++ b/math/p5-Statistics-Contingency/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Calculate precision, recall, F1, accuracy, etc -BUILD_DEPENDS= p5-Params-Validate>=0:devel/p5-Params-Validate -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Params-Validate>=0:devel/p5-Params-Validate USES= perl5 USE_PERL5= configure diff --git a/math/p5-Statistics-TTest/Makefile b/math/p5-Statistics-TTest/Makefile index def02e6a2a4..9c301335e76 100644 --- a/math/p5-Statistics-TTest/Makefile +++ b/math/p5-Statistics-TTest/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Perl module to perform T-test on 2 independent samples -BUILD_DEPENDS= p5-Statistics-Descriptive>=0:math/p5-Statistics-Descriptive \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Statistics-Descriptive>=0:math/p5-Statistics-Descriptive \ p5-Statistics-Distributions>=0.07:math/p5-Statistics-Distributions -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/math/p5-bignum/Makefile b/math/p5-bignum/Makefile index ce2ff077082..22b26575e1a 100644 --- a/math/p5-bignum/Makefile +++ b/math/p5-bignum/Makefile @@ -13,8 +13,8 @@ COMMENT= Transparent BigNumber/BigRational support for Perl LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Math-BigInt>=1.999812:math/p5-Math-BigInt -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Math-BigInt>=1.999812:math/p5-Math-BigInt NO_ARCH= yes USES= perl5 diff --git a/math/petiga/Makefile b/math/petiga/Makefile index deb017604a1..afe79e2c641 100644 --- a/math/petiga/Makefile +++ b/math/petiga/Makefile @@ -2,7 +2,7 @@ PORTNAME= petiga DISTVERSION= g20180518 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= math python MASTER_SITES= https://bitbucket.org/${BB_ACCOUNT}/${BB_PROJECT}/get/${BB_COMMIT}.tar.gz?dummy=/ diff --git a/math/py-gau2grid/Makefile b/math/py-gau2grid/Makefile new file mode 100644 index 00000000000..aca36c1efbb --- /dev/null +++ b/math/py-gau2grid/Makefile @@ -0,0 +1,28 @@ +# $FreeBSD$ + +PORTNAME= gau2grid +DISTVERSIONPREFIX= v +DISTVERSION= 1.2.0 +CATEGORIES= math python +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Fast computation of a gaussian and its derivative on a grid + +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +BUILD_DEPENDS= ${PYNUMPY} \ + cmake:devel/cmake +RUN_DEPENDS= ${PYNUMPY} +TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>0:devel/py-pytest@${PY_FLAVOR} + +USES= python +USE_GITHUB= yes +GH_ACCOUNT= dgasmith +USE_PYTHON= distutils autoplist + +do-test: + @cd ${WRKSRC} && ${PYTHON_CMD} -m pytest + +.include diff --git a/math/py-gau2grid/distinfo b/math/py-gau2grid/distinfo new file mode 100644 index 00000000000..189a7918ed6 --- /dev/null +++ b/math/py-gau2grid/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1538885352 +SHA256 (dgasmith-gau2grid-v1.2.0_GH0.tar.gz) = 5c0312256c794d17c806bafa4a755489d21d3985e44a4429e865b51e67666b9c +SIZE (dgasmith-gau2grid-v1.2.0_GH0.tar.gz) = 124928 diff --git a/math/py-gau2grid/pkg-descr b/math/py-gau2grid/pkg-descr new file mode 100644 index 00000000000..2a8fcb58b54 --- /dev/null +++ b/math/py-gau2grid/pkg-descr @@ -0,0 +1,7 @@ +gau2grid is a python-generated C library for vectorized computation of grid to +gaussian collocation matrices + +The core of gau2grid is generating the collocation matrices between a real space +grid and a gaussian basis set expanded to a given angular momenta. + +WWW: https://github.com/dgasmith/gau2grid diff --git a/math/py-graphillion/Makefile b/math/py-graphillion/Makefile index 276396a648a..343459b773d 100644 --- a/math/py-graphillion/Makefile +++ b/math/py-graphillion/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= graphillion -PORTVERSION= 0.99 +PORTVERSION= 1.2 CATEGORIES= math python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -14,7 +14,10 @@ COMMENT= Fast, lightweight graphset operation library in Python LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt -USES= python:2.7 +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}future>0:devel/py-future@${PY_FLAVOR} + +# Python 2.7,3.4+ +USES= python USE_PYTHON= distutils autoplist post-install: diff --git a/math/py-graphillion/distinfo b/math/py-graphillion/distinfo index c88c4b42ac6..cacad45faef 100644 --- a/math/py-graphillion/distinfo +++ b/math/py-graphillion/distinfo @@ -1,2 +1,3 @@ -SHA256 (Graphillion-0.99.tar.gz) = e635f8c12a94abd4fe13bd99e33a326a661ac7d13198b6fbb11060c117b19ab0 -SIZE (Graphillion-0.99.tar.gz) = 1041596 +TIMESTAMP = 1533943617 +SHA256 (Graphillion-1.2.tar.gz) = 79c725cb05a9ac35b38d3dac43cca1e552e6e9b285bd3003386448e57c235cb2 +SIZE (Graphillion-1.2.tar.gz) = 1092143 diff --git a/math/py-intspan/Makefile b/math/py-intspan/Makefile index a692afb289a..a75a524b775 100644 --- a/math/py-intspan/Makefile +++ b/math/py-intspan/Makefile @@ -7,7 +7,7 @@ CATEGORIES= math python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -MAINTAINER= feld@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= FInite element Automatic Tabulator LICENSE= APACHE20 diff --git a/math/py-munkres/Makefile b/math/py-munkres/Makefile index 0c93a4d23bd..f4f2b0b7e63 100644 --- a/math/py-munkres/Makefile +++ b/math/py-munkres/Makefile @@ -7,7 +7,7 @@ CATEGORIES= math python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -MAINTAINER= feld@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Python implementation of the munkres algorithm LICENSE= BSD3CLAUSE diff --git a/math/py-numpy/Makefile b/math/py-numpy/Makefile index 2df53617f79..178aae76381 100644 --- a/math/py-numpy/Makefile +++ b/math/py-numpy/Makefile @@ -2,14 +2,15 @@ # $FreeBSD$ PORTNAME= numpy -PORTVERSION= 1.15.0 -DISTVERSIONPREFIX= v +PORTVERSION= 1.15.1 PORTEPOCH= 1 CATEGORIES= math python -MASTER_SITES= http://docs.scipy.org/doc/${PORTNAME}-${PORTVERSION:R}.0/:doc +MASTER_SITES= CHEESESHOP \ + https://docs.scipy.org/doc/${PORTNAME}-${PORTVERSION}/:doc PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -DISTFILES= ${PORTNAME}-ref-${PORTVERSION:R}.0.pdf:doc \ - ${PORTNAME}-user-${PORTVERSION:R}.0.pdf:doc +DISTFILES= ${DISTNAME}${EXTRACT_SUFX} \ + ${PORTNAME}-ref-${PORTVERSION}.pdf:doc \ + ${PORTNAME}-user-${PORTVERSION}.pdf:doc EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} MAINTAINER= python@FreeBSD.org @@ -18,11 +19,11 @@ COMMENT= The New Numeric Extension to Python LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE.txt +USES= fortran python zip +USE_PYTHON= allflavors autoplist concurrent cython distutils + PYDISTUTILS_BUILDARGS= --fcompiler=gnu95 PYDISTUTILS_CONFIGUREARGS= --fcompiler=gnu95 -USES= fortran python -USE_GITHUB= yes -USE_PYTHON= concurrent distutils cython allflavors autoplist LDFLAGS+= -shared OPTIONS_DEFINE= DOCS SUITESPARSE @@ -43,8 +44,6 @@ OPENBLAS_USES= blaslapack:openblas SUITESPARSE_LIB_DEPENDS=libumfpack.so:math/suitesparse TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>=0:devel/py-pytest@${PY_FLAVOR} -.include - post-extract: @${TOUCH} ${WRKSRC}/numpy/f2py/tests/src/temp @@ -89,10 +88,10 @@ post-install: post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} - ${INSTALL_DATA} ${DISTDIR}/${PORTNAME}-ref-${PORTVERSION:C/\.[0-9]+$/.0/}.pdf ${STAGEDIR}${DOCSDIR} - ${INSTALL_DATA} ${DISTDIR}/${PORTNAME}-user-${PORTVERSION:C/\.[0-9]+$/.0/}.pdf ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${DISTDIR}/${PORTNAME}-ref-${PORTVERSION}.pdf ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${DISTDIR}/${PORTNAME}-user-${PORTVERSION}.pdf ${STAGEDIR}${DOCSDIR} do-test: @cd ${WRKSRC} && ${PYTHON_CMD} runtests.py -.include +.include diff --git a/math/py-numpy/distinfo b/math/py-numpy/distinfo index f90acf2872b..7347ccf756f 100644 --- a/math/py-numpy/distinfo +++ b/math/py-numpy/distinfo @@ -1,7 +1,7 @@ -TIMESTAMP = 1532676518 -SHA256 (numpy-ref-1.15.0.pdf) = 5e2621a2d5c192a1cdd8048f923dc40429ed1805317dbef5f828b2d17cb86dc9 -SIZE (numpy-ref-1.15.0.pdf) = 4820996 -SHA256 (numpy-user-1.15.0.pdf) = d6effede9f6628bbdcdaa0732b3f5ee8513e22a374914d51d469a218d72c461d -SIZE (numpy-user-1.15.0.pdf) = 593592 -SHA256 (numpy-numpy-v1.15.0_GH0.tar.gz) = fec926cc3f157f4023e4126597dd5b9056778094393db01a3751b5e816a4a9ec -SIZE (numpy-numpy-v1.15.0_GH0.tar.gz) = 4407386 +TIMESTAMP = 1536419161 +SHA256 (numpy-1.15.1.zip) = 7b9e37f194f8bcdca8e9e6af92e2cbad79e360542effc2dd6b98d63955d8d8a3 +SIZE (numpy-1.15.1.zip) = 4482769 +SHA256 (numpy-ref-1.15.1.pdf) = 1de34b5f096e13d1bc8768d68f11802d79196281d008b92bd5eafb8075b77a7c +SIZE (numpy-ref-1.15.1.pdf) = 4843223 +SHA256 (numpy-user-1.15.1.pdf) = 2f7409221ccaf42760805bd14fd9e614ce4b45de82c7344ede2a08153655a831 +SIZE (numpy-user-1.15.1.pdf) = 596069 diff --git a/math/py-numpy/pkg-descr b/math/py-numpy/pkg-descr index de7399b2733..0d42298be8a 100644 --- a/math/py-numpy/pkg-descr +++ b/math/py-numpy/pkg-descr @@ -15,4 +15,4 @@ and can also be used to replace numarray. Note: Development for Numeric has ceased, and users should transisition to NumPy as quickly as possible. -WWW: http://www.numpy.org/ +WWW: https://www.numpy.org/ diff --git a/math/py-petsc4py/Makefile b/math/py-petsc4py/Makefile index 951368d6218..b6c3631708d 100644 --- a/math/py-petsc4py/Makefile +++ b/math/py-petsc4py/Makefile @@ -1,15 +1,11 @@ # $FreeBSD$ PORTNAME= petsc4py -DISTVERSION= 3.9.1 -PORTREVISION= 1 +DISTVERSION= 3.10.0 CATEGORIES= math python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -PATCH_SITES= https://bitbucket.org/petsc/petsc4py/commits/ -PATCHFILES= ab877906425e/raw:-p1 - MAINTAINER= yuri@FreeBSD.org COMMENT= PETSc for Python diff --git a/math/py-petsc4py/distinfo b/math/py-petsc4py/distinfo index cd4feb9981a..c1673d59fb3 100644 --- a/math/py-petsc4py/distinfo +++ b/math/py-petsc4py/distinfo @@ -1,5 +1,3 @@ -TIMESTAMP = 1528554205 -SHA256 (petsc4py-3.9.1.tar.gz) = 0ccee912216f100d9b08637e036df00e043a530303ff8afd7c3ac7c454681fb9 -SIZE (petsc4py-3.9.1.tar.gz) = 1651526 -SHA256 (ab877906425e/raw) = ef07a5622ce5a55dc555455aff5c59a6395bdef74b11aa576d58642db7c4ccfc -SIZE (ab877906425e/raw) = 2706 +TIMESTAMP = 1538518191 +SHA256 (petsc4py-3.10.0.tar.gz) = 45d4bc6be668052a68dff311c0177171b9ceced69a398252c487f6ad9b790332 +SIZE (petsc4py-3.10.0.tar.gz) = 1683666 diff --git a/math/py-petsc4py/pkg-plist b/math/py-petsc4py/pkg-plist deleted file mode 100644 index e74aeb3ae4a..00000000000 --- a/math/py-petsc4py/pkg-plist +++ /dev/null @@ -1 +0,0 @@ -%%PYTHON_SITELIBDIR%%/petsc4py/lib/PETSc.so diff --git a/math/py-slepc4py/Makefile b/math/py-slepc4py/Makefile index 23965bab071..b4735091225 100644 --- a/math/py-slepc4py/Makefile +++ b/math/py-slepc4py/Makefile @@ -1,16 +1,11 @@ # $FreeBSD$ PORTNAME= slepc4py -DISTVERSION= 3.9.0 -PORTREVISION= 2 +DISTVERSION= 3.10.0 CATEGORIES= math python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -# https://bitbucket.org/slepc/slepc4py/issues/34/freebsd-compatibility-patches -PATCH_SITES= https://bitbucket.org/petsc/petsc4py/commits/ -PATCHFILES= ab877906425e/raw:-p1 ecf673e8b8da/raw:-p1 - MAINTAINER= yuri@FreeBSD.org COMMENT= SLEPc for Python diff --git a/math/py-slepc4py/distinfo b/math/py-slepc4py/distinfo index ff34a7f6f4d..f6131da2b9b 100644 --- a/math/py-slepc4py/distinfo +++ b/math/py-slepc4py/distinfo @@ -1,7 +1,3 @@ -TIMESTAMP = 1529916157 -SHA256 (slepc4py-3.9.0.tar.gz) = 67ed4ffed36c076448d6a0148edfad65d6610b9838df97c79f6fc5d7ec06b90b -SIZE (slepc4py-3.9.0.tar.gz) = 829386 -SHA256 (ab877906425e/raw) = ef07a5622ce5a55dc555455aff5c59a6395bdef74b11aa576d58642db7c4ccfc -SIZE (ab877906425e/raw) = 2706 -SHA256 (ecf673e8b8da/raw) = a2e66c9ef4f502499236fe171fc5f7723a91f3c48122fa20de63070fbb6e704f -SIZE (ecf673e8b8da/raw) = 923 +TIMESTAMP = 1538521030 +SHA256 (slepc4py-3.10.0.tar.gz) = 326cbab709836cd5fe8e4adb60eaabe4e24537715bededd2812f3bc47c4b0474 +SIZE (slepc4py-3.10.0.tar.gz) = 835166 diff --git a/math/saga/Makefile b/math/saga/Makefile index dfd884fdd81..4e6e08e4da8 100644 --- a/math/saga/Makefile +++ b/math/saga/Makefile @@ -3,7 +3,7 @@ PORTNAME= saga PORTVERSION= 6.4.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= math MASTER_SITES= SF/saga-gis/SAGA%20-%20${PORTVERSION:C/\.[[:digit:]]\.[[:digit:]]*$//}/SAGA%20-%20${PORTVERSION} diff --git a/math/scilab/Makefile b/math/scilab/Makefile index 2caaadabe1d..e47b616cdb9 100644 --- a/math/scilab/Makefile +++ b/math/scilab/Makefile @@ -3,7 +3,7 @@ PORTNAME= scilab PORTVERSION= 5.5.2 -PORTREVISION= 13 +PORTREVISION= 14 CATEGORIES= math cad java MASTER_SITES= http://www.scilab.org/download/${PORTVERSION}/ DISTFILES= ${DISTNAME}-src${EXTRACT_SUFX} @@ -17,7 +17,7 @@ LIB_DEPENDS= libxml2.so:textproc/libxml2 \ libpcre.so:devel/pcre \ libcurl.so:ftp/curl \ libhdf5.so:science/hdf5 \ - libarpack.so:math/arpack \ + libarpack.so:math/arpack-ng \ libfftw3.so:math/fftw3 \ libmatio.so:math/matio \ libamd.so:math/suitesparse diff --git a/math/slepc/Makefile b/math/slepc/Makefile index e7e80a1653a..30eddbba6a5 100644 --- a/math/slepc/Makefile +++ b/math/slepc/Makefile @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= slepc -DISTVERSION= 3.9.2 -PORTREVISION= 2 +DISTVERSION= 3.10.0 CATEGORIES= math devel MASTER_SITES= http://slepc.upv.es/download/distrib/ @@ -19,6 +18,7 @@ LIB_DEPENDS= libblas.so:math/blas \ USES= gmake fortran python:2.7 shebangfix SHEBANG_FILES= configure +SHEBANG_GLOB= *.py MAKEFILE= makefile MAKE_ENV= PETSC_DIR=${LOCALBASE} PETSC_ARCH="" SLEPC_DIR=${WRKSRC} FREEBSD_STAGEDIR=${STAGEDIR} PYTHON=${PYTHON_CMD} USE_XORG= x11 # not really needed, but is inherited from the PETSc setup diff --git a/math/slepc/distinfo b/math/slepc/distinfo index 6cb04115cb4..3771d4c5feb 100644 --- a/math/slepc/distinfo +++ b/math/slepc/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1530608431 -SHA256 (slepc-3.9.2.tar.gz) = 247585b3f8c10bf50b9464cb8ef7b5f22bead6f96524384897a37ec4146eb03e -SIZE (slepc-3.9.2.tar.gz) = 4478227 +TIMESTAMP = 1538519652 +SHA256 (slepc-3.10.0.tar.gz) = 069d7a579995e0be1567c5bc869251e29c00044369a786933ca3040149d0412a +SIZE (slepc-3.10.0.tar.gz) = 4565134 diff --git a/math/slepc/files/patch-config_install.py b/math/slepc/files/patch-config_install.py index 374309fdd9b..b31bde13af6 100644 --- a/math/slepc/files/patch-config_install.py +++ b/math/slepc/files/patch-config_install.py @@ -1,18 +1,21 @@ ---- config/install.py.orig 2018-06-25 08:07:05 UTC +--- config/install.py.orig 2018-10-02 22:50:33 UTC +++ config/install.py -@@ -295,11 +295,11 @@ for dir in dirs: +@@ -311,13 +311,13 @@ for dir in dirs: def installShare(self): self.copies.extend(self.copytree(self.rootShareDir, self.destShareDir)) +- examplesdir=os.path.join(self.destShareDir,'slepc','examples') - if os.path.exists(os.path.join(self.destShareDir,'slepc','examples')): - shutil.rmtree(os.path.join(self.destShareDir,'slepc','examples')) - os.mkdir(os.path.join(self.destShareDir,'slepc','examples')) - self.copyExamples(self.rootDir,os.path.join(self.destShareDir,'slepc','examples')) -- self.fixExamplesMakefile(os.path.join(self.destShareDir,'slepc','examples','makefile')) ++ examplesdir=os.path.join(self.destShareDir,'examples','slepc') + if os.path.exists(os.path.join(self.destShareDir,'examples','slepc')): + shutil.rmtree(os.path.join(self.destShareDir,'examples','slepc')) + os.mkdir(os.path.join(self.destShareDir,'examples','slepc')) + self.copyExamples(self.rootDir,os.path.join(self.destShareDir,'examples','slepc')) + self.copyConfig(self.rootDir,examplesdir) +- self.fixExamplesMakefile(os.path.join(self.destShareDir,'slepc','examples','makefile')) + self.fixExamplesMakefile(os.path.join(self.destShareDir,'examples','slepc','makefile')) return diff --git a/math/slepc/files/patch-makefile b/math/slepc/files/patch-makefile index 645efb523d7..3221be9ca2d 100644 --- a/math/slepc/files/patch-makefile +++ b/math/slepc/files/patch-makefile @@ -1,11 +1,11 @@ ---- makefile.orig 2018-05-02 15:18:14 UTC +--- makefile.orig 2018-10-02 22:42:08 UTC +++ makefile -@@ -254,7 +254,7 @@ chk_slepc_dir: +@@ -210,7 +210,7 @@ chk_slepc_dir: # Install relevant files in the prefix directory # install: -- -@${PYTHON} ./config/install.py ${SLEPC_DIR} ${PETSC_DIR} ${SLEPC_DESTDIR} ${PETSC_ARCH} ${AR_LIB_SUFFIX} ${RANLIB}; -+ -@${PYTHON} ./config/install.py ${SLEPC_DIR} ${PETSC_DIR} ${FREEBSD_STAGEDIR}${SLEPC_DESTDIR} ${PETSC_ARCH} ${AR_LIB_SUFFIX} ${RANLIB}; +- @${PYTHON} ./config/install.py ${SLEPC_DIR} ${PETSC_DIR} ${SLEPC_DESTDIR} ${PETSC_ARCH} ${AR_LIB_SUFFIX} ${RANLIB}; ++ @${PYTHON} ./config/install.py ${SLEPC_DIR} ${PETSC_DIR} ${FREEBSD_STAGEDIR}${SLEPC_DESTDIR} ${PETSC_ARCH} ${AR_LIB_SUFFIX} ${RANLIB}; # ------------------------------------------------------------------ # diff --git a/math/slepc/pkg-plist b/math/slepc/pkg-plist index e2d4bb0289e..4ec6dc67f12 100644 --- a/math/slepc/pkg-plist +++ b/math/slepc/pkg-plist @@ -72,10 +72,10 @@ include/slepcsysdef.mod include/slepcvec.h include/slepcversion.h lib/libslepc.so -lib/libslepc.so.3.9 -lib/libslepc.so.3.9.2 +lib/libslepc.so.3.10 +lib/libslepc.so.3.10.0 lib/slepc/conf/SLEPcBuildInternal.cmake -lib/slepc/conf/modules/slepc/3.9.2-installed-arch-%%PYTHON_PLATFORM%%-c-debug +lib/slepc/conf/modules/slepc/3.10.0-installed-arch-%%PYTHON_PLATFORM%%-c-debug lib/slepc/conf/reconfigure-installed-arch-%%PYTHON_PLATFORM%%-c-debug.py lib/slepc/conf/slepc_common lib/slepc/conf/slepc_rules diff --git a/math/sundials/Makefile b/math/sundials/Makefile index 6a2607e7295..170609c3822 100644 --- a/math/sundials/Makefile +++ b/math/sundials/Makefile @@ -2,7 +2,7 @@ PORTNAME= sundials DISTVERSION= 3.1.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= math MASTER_SITES= https://computation.llnl.gov/projects/sundials/download/ diff --git a/misc/cloc/Makefile b/misc/cloc/Makefile index 0696f9bc6ac..32353c0e5f7 100644 --- a/misc/cloc/Makefile +++ b/misc/cloc/Makefile @@ -2,7 +2,8 @@ # $FreeBSD$ PORTNAME= cloc -PORTVERSION= 1.78 +PORTVERSION= 1.80 +DISTVERSIONPREFIX= v CATEGORIES= misc MAINTAINER= danilo@FreeBSD.org diff --git a/misc/cloc/distinfo b/misc/cloc/distinfo index ad48d0e02a1..dca62ba6322 100644 --- a/misc/cloc/distinfo +++ b/misc/cloc/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1536705157 -SHA256 (AlDanial-cloc-1.78_GH0.tar.gz) = 0d8b16f7a80a01d6e2b888a16194bddc4f64915726a5abcbf2e91eecbf2cddd4 -SIZE (AlDanial-cloc-1.78_GH0.tar.gz) = 448807 +TIMESTAMP = 1538817920 +SHA256 (AlDanial-cloc-v1.80_GH0.tar.gz) = 29f6b2a90f00b02b6197354d6d78051530e2942e3b52421ec138c4f3ab683eb0 +SIZE (AlDanial-cloc-v1.80_GH0.tar.gz) = 451896 diff --git a/misc/mdp/Makefile b/misc/mdp/Makefile index e55140894c0..13db13526c7 100644 --- a/misc/mdp/Makefile +++ b/misc/mdp/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= mdp -PORTVERSION= 1.0.14 +PORTVERSION= 1.0.15 CATEGORIES= misc MAINTAINER= neel@neelc.org diff --git a/misc/mdp/distinfo b/misc/mdp/distinfo index 87825ab6064..072cebdd74d 100644 --- a/misc/mdp/distinfo +++ b/misc/mdp/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1535492046 -SHA256 (visit1985-mdp-1.0.14_GH0.tar.gz) = 8dc6313dc8d1821df4818fce6443b71e266dddc80f1db1d2cb4877d35b947806 -SIZE (visit1985-mdp-1.0.14_GH0.tar.gz) = 37565 +TIMESTAMP = 1538789103 +SHA256 (visit1985-mdp-1.0.15_GH0.tar.gz) = 3edc8ea1551fdf290d6bba721105e2e2c23964070ac18c13b4b8d959cdf6116f +SIZE (visit1985-mdp-1.0.15_GH0.tar.gz) = 37728 diff --git a/misc/openhab2/pkg-descr b/misc/openhab2/pkg-descr index 65df0c2e603..2da29085ac0 100644 --- a/misc/openhab2/pkg-descr +++ b/misc/openhab2/pkg-descr @@ -2,4 +2,4 @@ openHAB is a software for integrating different home automation systems and technologies into one single solution that allows over-arching automation rules and that offers uniform user interfaces. -WWW: http://www.openhab.org/ +WWW: https://www.openhab.org/ diff --git a/misc/openhmd/Makefile b/misc/openhmd/Makefile index 9d2989f22b7..ebff3ddde96 100644 --- a/misc/openhmd/Makefile +++ b/misc/openhmd/Makefile @@ -14,7 +14,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libhidapi.so:comms/hidapi -USES= cmake:outsource +USES= cmake:outsource compiler:c++11-lang USE_GITHUB= yes USE_LDCONFIG= yes diff --git a/misc/p5-Array-Compare/Makefile b/misc/p5-Array-Compare/Makefile index 8cbfd0335b7..d9b1890c731 100644 --- a/misc/p5-Array-Compare/Makefile +++ b/misc/p5-Array-Compare/Makefile @@ -14,9 +14,9 @@ COMMENT= Perl extension for comparing arrays LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Moo>0:devel/p5-Moo \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Moo>0:devel/p5-Moo \ p5-Type-Tiny>0:devel/p5-Type-Tiny -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-NoWarnings>0:devel/p5-Test-NoWarnings NO_ARCH= yes diff --git a/misc/p5-Bot-Training/Makefile b/misc/p5-Bot-Training/Makefile index 9dda454b269..9b57e259782 100644 --- a/misc/p5-Bot-Training/Makefile +++ b/misc/p5-Bot-Training/Makefile @@ -15,7 +15,8 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Any-Moose>=0:devel/p5-Any-Moose \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Any-Moose>=0:devel/p5-Any-Moose \ p5-Class-Load>=0:devel/p5-Class-Load \ p5-Dir-Self>=0:devel/p5-Dir-Self \ p5-File-ShareDir>=0:devel/p5-File-ShareDir \ @@ -23,7 +24,6 @@ BUILD_DEPENDS= p5-Any-Moose>=0:devel/p5-Any-Moose \ p5-Moose>=0.82:devel/p5-Moose \ p5-MooseX-Getopt>=0:devel/p5-MooseX-Getopt \ p5-namespace-clean>=0:devel/p5-namespace-clean -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/misc/p5-Business-EDI/Makefile b/misc/p5-Business-EDI/Makefile index 6f7472aaf0f..094894d98d1 100644 --- a/misc/p5-Business-EDI/Makefile +++ b/misc/p5-Business-EDI/Makefile @@ -15,12 +15,12 @@ COMMENT= Class for generating EDI objects and subobjects LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Exporter-Easy>=0.14:devel/p5-Exporter-Easy \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Exporter-Easy>=0.14:devel/p5-Exporter-Easy \ p5-File-Find-Rule>=0.32:devel/p5-File-Find-Rule \ p5-JSON-XS>=2.01:converters/p5-JSON-XS \ p5-List-MoreUtils>=0.22:lang/p5-List-MoreUtils \ p5-UNIVERSAL-require>=0.10:devel/p5-UNIVERSAL-require -RUN_DEPENDS:= ${BUILD_DEPENDS} WRKSRC= ${WRKDIR}/atz-${PORTNAME}-327e01f diff --git a/misc/p5-Business-Hours/Makefile b/misc/p5-Business-Hours/Makefile index 304fdf217dc..33981db23bb 100644 --- a/misc/p5-Business-Hours/Makefile +++ b/misc/p5-Business-Hours/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= matthew@FreeBSD.org COMMENT= Calculate business hours during a time period -BUILD_DEPENDS= p5-Set-IntSpan>1.12:math/p5-Set-IntSpan -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Set-IntSpan>1.12:math/p5-Set-IntSpan TEST_DEPENDS= p5-Test-Pod>-1.0:devel/p5-Test-Pod \ p5-Test-Pod-Coverage>0:devel/p5-Test-Pod-Coverage diff --git a/misc/p5-Business-ISBN/Makefile b/misc/p5-Business-ISBN/Makefile index c2aaa7f1279..108838c9bea 100644 --- a/misc/p5-Business-ISBN/Makefile +++ b/misc/p5-Business-ISBN/Makefile @@ -14,8 +14,8 @@ COMMENT= Work with International Standard Book Numbers LICENSE= ART20 LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Business-ISBN-Data>=20140910.002:misc/p5-Business-ISBN-Data -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Business-ISBN-Data>=20140910.002:misc/p5-Business-ISBN-Data TEST_DEPENDS= p5-GD-Barcode>=0:graphics/p5-GD-Barcode OPTIONS_DEFINE= BARCODE XISBN diff --git a/misc/p5-Business-ISIN/Makefile b/misc/p5-Business-ISIN/Makefile index d22ee01c9f2..03f34687682 100644 --- a/misc/p5-Business-ISIN/Makefile +++ b/misc/p5-Business-ISIN/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Validate International Securities Identification Numbers -BUILD_DEPENDS= p5-Locale-Codes>=0:misc/p5-Locale-Codes -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Locale-Codes>=0:misc/p5-Locale-Codes USES= perl5 tar:tgz USE_PERL5= configure diff --git a/misc/p5-Business-UPS/Makefile b/misc/p5-Business-UPS/Makefile index a6d2d89ccfc..9b5663839dd 100644 --- a/misc/p5-Business-UPS/Makefile +++ b/misc/p5-Business-UPS/Makefile @@ -14,8 +14,8 @@ COMMENT= UPS Interface Module LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-libwww>=0:www/p5-libwww NO_ARCH= yes USES= perl5 diff --git a/misc/p5-Geo-Coder-Bing/Makefile b/misc/p5-Geo-Coder-Bing/Makefile index a1bf1d5e09d..974ea6e295e 100644 --- a/misc/p5-Geo-Coder-Bing/Makefile +++ b/misc/p5-Geo-Coder-Bing/Makefile @@ -13,12 +13,12 @@ COMMENT= Geocode addresses with the Bing Maps API LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-JSON>=2:converters/p5-JSON \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-JSON>=2:converters/p5-JSON \ p5-JSON-XS>=2:converters/p5-JSON-XS \ p5-LWP-Protocol-https>=6.02:www/p5-LWP-Protocol-https \ p5-URI>=1.36:net/p5-URI \ p5-libwww>=6.02:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USE_PERL5= configure diff --git a/misc/p5-Geo-Coder-Google/Makefile b/misc/p5-Geo-Coder-Google/Makefile index e3703b8707f..12b8cb8d71f 100644 --- a/misc/p5-Geo-Coder-Google/Makefile +++ b/misc/p5-Geo-Coder-Google/Makefile @@ -13,12 +13,12 @@ COMMENT= Google Maps Geocoding API LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Digest-HMAC>=0:security/p5-Digest-HMAC \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Digest-HMAC>=0:security/p5-Digest-HMAC \ p5-JSON>=2.27:converters/p5-JSON \ p5-HTTP-Message>=0:www/p5-HTTP-Message \ p5-URI>=0:net/p5-URI \ p5-libwww>=5.5:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Number-Delta>=0:devel/p5-Test-Number-Delta PORTSCOUT= limit:^[0-9\.]*$$ diff --git a/misc/p5-Geo-Coder-Googlev3/Makefile b/misc/p5-Geo-Coder-Googlev3/Makefile index d27350d96e7..cdc0a6ff21f 100644 --- a/misc/p5-Geo-Coder-Googlev3/Makefile +++ b/misc/p5-Geo-Coder-Googlev3/Makefile @@ -13,10 +13,10 @@ COMMENT= Google Maps v3 Geocoding API LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-JSON-XS>=0:converters/p5-JSON-XS \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-JSON-XS>=0:converters/p5-JSON-XS \ p5-URI>=0:net/p5-URI \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USE_PERL5= configure diff --git a/misc/p5-Geo-Coder-Mapquest/Makefile b/misc/p5-Geo-Coder-Mapquest/Makefile index 9859b160995..11ab03ec07d 100644 --- a/misc/p5-Geo-Coder-Mapquest/Makefile +++ b/misc/p5-Geo-Coder-Mapquest/Makefile @@ -14,12 +14,12 @@ COMMENT= Geocode addresses with Mapquest LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-JSON>=2:converters/p5-JSON \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-JSON>=2:converters/p5-JSON \ p5-JSON-XS>=2:converters/p5-JSON-XS \ p5-LWP-Protocol-https>=6.02:www/p5-LWP-Protocol-https \ p5-URI>=1.36:net/p5-URI \ p5-libwww>=6.02:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USE_PERL5= configure diff --git a/misc/p5-Geo-Coder-Multimap/Makefile b/misc/p5-Geo-Coder-Multimap/Makefile index 3956e50436c..d18e6d952ac 100644 --- a/misc/p5-Geo-Coder-Multimap/Makefile +++ b/misc/p5-Geo-Coder-Multimap/Makefile @@ -14,11 +14,11 @@ COMMENT= Geocode addresses with the Multimap Open API LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-JSON>=2:converters/p5-JSON \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-JSON>=2:converters/p5-JSON \ p5-JSON-XS>=2:converters/p5-JSON-XS \ p5-URI>=1.36:net/p5-URI \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USE_PERL5= configure diff --git a/misc/p5-Geo-Coder-Navteq/Makefile b/misc/p5-Geo-Coder-Navteq/Makefile index b4877194d1d..816f49e2ae0 100644 --- a/misc/p5-Geo-Coder-Navteq/Makefile +++ b/misc/p5-Geo-Coder-Navteq/Makefile @@ -14,10 +14,10 @@ COMMENT= Geocode addresses with the Navteq MapTP AJAX API LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-URI>=1.36:net/p5-URI \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-URI>=1.36:net/p5-URI \ p5-XML-Simple>=0:textproc/p5-XML-Simple \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USE_PERL5= configure diff --git a/misc/p5-Geo-Coder-OSM/Makefile b/misc/p5-Geo-Coder-OSM/Makefile index 642208d39da..dec688aafa8 100644 --- a/misc/p5-Geo-Coder-OSM/Makefile +++ b/misc/p5-Geo-Coder-OSM/Makefile @@ -14,11 +14,11 @@ COMMENT= Geocode addresses with the OpenStreetMap Nominatim API LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-JSON>=2:converters/p5-JSON \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-JSON>=2:converters/p5-JSON \ p5-JSON-XS>=2:converters/p5-JSON-XS \ p5-URI>=1.36:net/p5-URI \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USE_PERL5= configure diff --git a/misc/p5-Geo-Coder-OpenCage/Makefile b/misc/p5-Geo-Coder-OpenCage/Makefile index 5483d91be85..382882fb74d 100644 --- a/misc/p5-Geo-Coder-OpenCage/Makefile +++ b/misc/p5-Geo-Coder-OpenCage/Makefile @@ -14,10 +14,10 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-JSON>=2.94:converters/p5-JSON \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-JSON>=2.94:converters/p5-JSON \ p5-JSON-XS>=3.04:converters/p5-JSON-XS \ p5-URI>=0:net/p5-URI -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Exception>=0.32:devel/p5-Test-Exception \ p5-Test-Pod>=1.51:devel/p5-Test-Pod \ p5-Test-Warn>=0:devel/p5-Test-Warn diff --git a/misc/p5-Geo-Coder-Ovi/Makefile b/misc/p5-Geo-Coder-Ovi/Makefile index 391cbb165aa..3371c93a0c5 100644 --- a/misc/p5-Geo-Coder-Ovi/Makefile +++ b/misc/p5-Geo-Coder-Ovi/Makefile @@ -14,11 +14,11 @@ COMMENT= Geocode addresses with the Ovi Maps API LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-JSON>=2:converters/p5-JSON \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-JSON>=2:converters/p5-JSON \ p5-JSON-XS>=2:converters/p5-JSON-XS \ p5-URI>=1.36:net/p5-URI \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USE_PERL5= configure diff --git a/misc/p5-Geo-Coder-PlaceFinder/Makefile b/misc/p5-Geo-Coder-PlaceFinder/Makefile index dab16d7ba96..daa1fea0fca 100644 --- a/misc/p5-Geo-Coder-PlaceFinder/Makefile +++ b/misc/p5-Geo-Coder-PlaceFinder/Makefile @@ -14,11 +14,11 @@ COMMENT= Geocode addresses with Yahoo PlaceFinder LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-JSON>=2:converters/p5-JSON \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-JSON>=2:converters/p5-JSON \ p5-JSON-XS>=2:converters/p5-JSON-XS \ p5-URI>=1.36:net/p5-URI \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USE_PERL5= configure diff --git a/misc/p5-Geo-Coder-TomTom/Makefile b/misc/p5-Geo-Coder-TomTom/Makefile index e7e54b754d1..753320898a8 100644 --- a/misc/p5-Geo-Coder-TomTom/Makefile +++ b/misc/p5-Geo-Coder-TomTom/Makefile @@ -13,12 +13,12 @@ COMMENT= Geocode addresses with the TomTom route planner LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-JSON>=2:converters/p5-JSON \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-JSON>=2:converters/p5-JSON \ p5-JSON-XS>=2:converters/p5-JSON-XS \ p5-LWP-Protocol-https>=6.02:www/p5-LWP-Protocol-https \ p5-URI>=1.36:net/p5-URI \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USE_PERL5= configure diff --git a/misc/p5-Geo-GeoNames/Makefile b/misc/p5-Geo-GeoNames/Makefile index e69fb629a34..29572fd0681 100644 --- a/misc/p5-Geo-GeoNames/Makefile +++ b/misc/p5-Geo-GeoNames/Makefile @@ -14,10 +14,10 @@ COMMENT= Perform geographical queries using GeoNames Web Services LICENSE= ART20 LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-JSON>=1.14:converters/p5-JSON \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-JSON>=1.14:converters/p5-JSON \ p5-Mojolicious>=0:www/p5-Mojolicious \ p5-XML-Simple>=2.13:textproc/p5-XML-Simple -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USE_PERL5= configure diff --git a/misc/p5-Locale-SubCountry/Makefile b/misc/p5-Locale-SubCountry/Makefile index d225bfd1053..906ffb473fd 100644 --- a/misc/p5-Locale-SubCountry/Makefile +++ b/misc/p5-Locale-SubCountry/Makefile @@ -13,8 +13,8 @@ COMMENT= Convert state, province, county etc. names to/from code LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-JSON>=1:converters/p5-JSON -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-JSON>=1:converters/p5-JSON NO_ARCH= yes USES= dos2unix perl5 diff --git a/misc/p5-asterisk-perl/Makefile b/misc/p5-asterisk-perl/Makefile index 8f03746478c..ea191bdc32d 100644 --- a/misc/p5-asterisk-perl/Makefile +++ b/misc/p5-asterisk-perl/Makefile @@ -14,8 +14,8 @@ COMMENT= Asterisk perl library LICENSE= ART10 LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Net-Telnet>=0:net/p5-Net-Telnet -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Net-Telnet>=0:net/p5-Net-Telnet NO_ARCH= yes USES= perl5 diff --git a/misc/qt5ct/Makefile b/misc/qt5ct/Makefile index df3e604655a..cc58a6254f4 100644 --- a/misc/qt5ct/Makefile +++ b/misc/qt5ct/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= qt5ct -DISTVERSION= 0.35 +DISTVERSION= 0.36 CATEGORIES= misc MASTER_SITES= SF/${PORTNAME} @@ -13,7 +13,7 @@ LICENSE= BSD2CLAUSE LIB_DEPENDS= libfontconfig.so:x11-fonts/fontconfig \ libfreetype.so:print/freetype2 -USES= gettext-runtime qmake qt:5 tar:bz2 +USES= compiler:c++11-lang gettext-runtime qmake qt:5 tar:bz2 USE_QT= core dbus gui svg widgets buildtools_build \ linguisttools_build USE_GL= egl gl diff --git a/misc/qt5ct/distinfo b/misc/qt5ct/distinfo index 36ae14bbcc6..9805c97b90d 100644 --- a/misc/qt5ct/distinfo +++ b/misc/qt5ct/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1520584800 -SHA256 (qt5ct-0.35.tar.bz2) = 1ceb5097bf48a313a6f9a50088825b863855db8fa62b8ce8f79bd4cd4468ef77 -SIZE (qt5ct-0.35.tar.bz2) = 62547 +TIMESTAMP = 1538781047 +SHA256 (qt5ct-0.36.tar.bz2) = 8fc3942f34d377af5533a0953cca633a7babc60c0476fd4318b617702183ee89 +SIZE (qt5ct-0.36.tar.bz2) = 68181 diff --git a/misc/susv2/Makefile b/misc/susv2/Makefile index 26749c2b673..9df29dd9462 100644 --- a/misc/susv2/Makefile +++ b/misc/susv2/Makefile @@ -2,26 +2,34 @@ # $FreeBSD$ PORTNAME= susv2 -PORTVERSION= 1.0 +PORTVERSION= 1.0.20010716 CATEGORIES= misc MASTER_SITES= # DISTNAME= susv2 -MAINTAINER= ports@FreeBSD.org +MAINTAINER= mandree@FreeBSD.org COMMENT= Single UNIX Specification Version 2 +LICENSE= NONE + +USES= tar:bzip2 + RESTRICTED= Redistribution of the documents is not permitted -USES= tar:bzip2 NO_BUILD= yes PORTDOCS= * OPTIONS_DEFINE= DOCS +# Fix fallout of https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=230864 and force the option on; +# meaning is to force this option on. The previous change around Sept 2018 introduced a regression in +# that PORTDOCS only works if there is a DOCS option. It does not, however, make sense to install +# empty documentation ports. +OPTIONS_SLAVE= DOCS .include .if !exists(${DISTDIR}/${DISTNAME}${EXTRACT_SUFX}) -IGNORE= may not be redistributed because of licensing reasons. Please visit http://www.unix.org/version2/online.html to accept their license and download ${DISTFILES} into ${DISTDIR} +IGNORE= may not be redistributed because of licensing reasons. Please visit http://www.unix.org/version2/online.html or http://pubs.opengroup.org/onlinepubs/7908799/download/ to accept their license and download ${DISTFILES} into ${DISTDIR} .endif do-install: diff --git a/misc/susv3/Makefile b/misc/susv3/Makefile index e78307f4034..815737714b2 100644 --- a/misc/susv3/Makefile +++ b/misc/susv3/Makefile @@ -2,26 +2,34 @@ # $FreeBSD$ PORTNAME= susv3 -PORTVERSION= 1.2 +PORTVERSION= 1.2.20050121 CATEGORIES= misc MASTER_SITES= # DISTNAME= susv3 -MAINTAINER= ports@FreeBSD.org +MAINTAINER= mandree@FreeBSD.org COMMENT= Single UNIX Specification Version 3 +LICENSE= NONE + +USES= tar:bzip2 + RESTRICTED= Redistribution of the documents is not permitted -USES= tar:bzip2 NO_BUILD= yes PORTDOCS= * OPTIONS_DEFINE= DOCS +# Fix fallout of https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=230864 and force the option on; +# meaning is to force this option on. The previous change around Sept 2018 introduced a regression in +# that PORTDOCS only works if there is a DOCS option. It does not, however, make sense to install +# empty documentation ports. +OPTIONS_SLAVE= DOCS .include .if !exists(${DISTDIR}/${DISTNAME}${EXTRACT_SUFX}) -IGNORE= may not be redistributed because of licensing reasons. Please visit http://www.unix.org/version3/online.html to accept their license and download ${DISTFILES} into ${DISTDIR} +IGNORE= may not be redistributed because of licensing reasons. Please visit http://www.unix.org/version3/online.html or https://publications.opengroup.org/t041 to accept their license and download ${DISTFILES} into ${DISTDIR} . You may need to choose "Read HTML Edition Online", navigate to it, and then find the Download link at the bottom right of the page .endif do-install: diff --git a/misc/susv4/Makefile b/misc/susv4/Makefile index 6c33773db9b..ce793ff4211 100644 --- a/misc/susv4/Makefile +++ b/misc/susv4/Makefile @@ -1,26 +1,31 @@ -# Based on a port created by: Simon 'corecode' Schubert # $FreeBSD$ PORTNAME= susv4 -PORTVERSION= 20160930 +PORTVERSION= 20180131 CATEGORIES= misc MASTER_SITES= # -DISTNAME= susv4tc2 +DISTNAME= susv4-2018 DIST_SUBDIR= ${PORTNAME}-${PORTVERSION} MAINTAINER= mandree@FreeBSD.org -COMMENT= Open Group Base Specifications Issue 7/IEEE Std 1003.1, 2016 Edition +COMMENT= Open Group Base Specifications Issue 7/IEEE Std 1003.1, 2018 Edition LICENSE= NONE +USES= tar:bzip2 + RESTRICTED= Redistribution of the documents is not permitted -USES= tar:bzip2 NO_ARCH= yes NO_BUILD= yes PORTDOCS= * OPTIONS_DEFINE= DOCS +# Fix fallout of https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=230864 and force the option on; +# meaning is to force this option on. The previous change around Sept 2018 introduced a regression in +# that PORTDOCS only works if there is a DOCS option. It does not, however, make sense to install +# empty documentation ports. +OPTIONS_SLAVE= DOCS .include @@ -30,6 +35,8 @@ IGNORE= may not be redistributed because of licensing reasons. Please visit htt do-install: @${MKDIR} ${STAGEDIR}${DOCSDIR} - cd ${WRKSRC} && ${COPYTREE_SHARE} \* ${STAGEDIR}${DOCSDIR} + cd ${WRKSRC} && \ + ${FIND} . -name '*~' -delete && \ + ${COPYTREE_SHARE} '*' ${STAGEDIR}${DOCSDIR} .include diff --git a/misc/susv4/distinfo b/misc/susv4/distinfo index e84ce3b72a0..eb95ac96bb7 100644 --- a/misc/susv4/distinfo +++ b/misc/susv4/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1475876435 -SHA256 (susv4-20160930/susv4tc2.tar.bz2) = 9b50e290912dff356687b7585ea2d7a7e746231e1dd4adcb20833fa54e1f4d35 -SIZE (susv4-20160930/susv4tc2.tar.bz2) = 3649434 +TIMESTAMP = 1538830673 +SHA256 (susv4-20180131/susv4-2018.tar.bz2) = 73cc1347aa7e19d69265c62570696c8b9d2d06665c5d81d6acb1ea825b25534b +SIZE (susv4-20180131/susv4-2018.tar.bz2) = 3665202 diff --git a/misc/susv4/pkg-descr b/misc/susv4/pkg-descr index 66d1944ae3c..f87ced3cc5f 100644 --- a/misc/susv4/pkg-descr +++ b/misc/susv4/pkg-descr @@ -1,8 +1,19 @@ -The Single UNIX Specification Version 4, technically identical to IEEE -Std 1003.1, 2016 Edition or The Open Group Base Specifications Issue 7 -is a technical standard. It includes IEEE Std 1003.1-2008/Cor 1-2013, -the Technical Corrigenda No. 1 and No. 2 addressing problems discovered -since the approval of the 2008 edition. +The Single UNIX Specification Version 4, 2018 Edition, alias POSIX.1-2017, +reference T101. Technically identical to IEEE Std 1003.1-2017 and ISO/IEC +9945:2009 including ISO/IEC 9945:2009/Cor 1:2013(E) and ISO/IEC 9945:2009/Cor +2:2017(E) with the addition of X/Open Curses. + +It is simultaneously The Open Group Base Specifications Issue 7. + +POSIX.1-2017 defines a standard operating system interface and environment, +including a command interpreter (or “shell”), and common utility programs to +support applications portability at the source code level. POSIX.1-2017 is +intended to be used by both application developers and system implementors. + +This set consists of the Base Specifications, Issue 7 that make up the Single +UNIX Specification, Version 4, together with X/Open Curses, Issue 7. The Base +Specifications were developed by the Austin Group, a joint working group of the +IEEE, The Open Group, and ISO/IEC JTC 1/SC22/WG15. This port permits to install and register the HTML personal copy that the user must download in .tar.bz2 format by himself. diff --git a/misc/urh/Makefile b/misc/urh/Makefile index f2fd71a9b92..a68b8cbb7ce 100644 --- a/misc/urh/Makefile +++ b/misc/urh/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= urh -DISTVERSION= 2.2.4 +DISTVERSION= 2.3.0 CATEGORIES= misc hamradio python MASTER_SITES= CHEESESHOP diff --git a/misc/urh/distinfo b/misc/urh/distinfo index 3ffa30df502..68dcca8ff9e 100644 --- a/misc/urh/distinfo +++ b/misc/urh/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1535643126 -SHA256 (urh-2.2.4.tar.gz) = 94f660b79505621a4bd530ff062fc8346af1671a7bc78596c627233da595699f -SIZE (urh-2.2.4.tar.gz) = 2797760 +TIMESTAMP = 1538456652 +SHA256 (urh-2.3.0.tar.gz) = 8c5f35ee54cbdd824e003720a902e3892fb6d84c217ee47fd35aa792b04c64be +SIZE (urh-2.3.0.tar.gz) = 3038001 diff --git a/multimedia/aom/Makefile b/multimedia/aom/Makefile index ef0d5a183bf..13f97a278cf 100644 --- a/multimedia/aom/Makefile +++ b/multimedia/aom/Makefile @@ -2,8 +2,8 @@ PORTNAME= aom DISTVERSIONPREFIX= v -DISTVERSION= 1.0.0-699 -DISTVERSIONSUFFIX= -g563a0d1eb +DISTVERSION= 1.0.0-733 +DISTVERSIONSUFFIX= -gb38b3d7f7 CATEGORIES= multimedia MAINTAINER= jbeich@FreeBSD.org diff --git a/multimedia/aom/distinfo b/multimedia/aom/distinfo index e531b9d5e08..7a38e28b1fb 100644 --- a/multimedia/aom/distinfo +++ b/multimedia/aom/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1538434833 -SHA256 (jbeich-aom-v1.0.0-699-g563a0d1eb_GH0.tar.gz) = bf329ae2765fe664d4c229348f26588d4d451d611b38ef746895bd1d3ba41c2d -SIZE (jbeich-aom-v1.0.0-699-g563a0d1eb_GH0.tar.gz) = 2981073 +TIMESTAMP = 1538764645 +SHA256 (jbeich-aom-v1.0.0-733-gb38b3d7f7_GH0.tar.gz) = bee2896e2deaf679e8b6d7e91a349b3d5a83284c6fdd3580b1c4d292539727f1 +SIZE (jbeich-aom-v1.0.0-733-gb38b3d7f7_GH0.tar.gz) = 2995296 diff --git a/multimedia/assimp/Makefile b/multimedia/assimp/Makefile index 4ee29477f26..027fcea271f 100644 --- a/multimedia/assimp/Makefile +++ b/multimedia/assimp/Makefile @@ -14,8 +14,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libminizip.so:archivers/minizip -BROKEN_powerpc64= Does not build: error: ByteSwap has not been declared - USES= cmake compiler:c++11-lib localbase:ldflags pkgconfig USE_GITHUB= yes USE_LDCONFIG= yes diff --git a/multimedia/kodi-devel/Makefile b/multimedia/kodi-devel/Makefile index f0db2f3363b..795fcc7df43 100644 --- a/multimedia/kodi-devel/Makefile +++ b/multimedia/kodi-devel/Makefile @@ -2,8 +2,7 @@ PORTNAME= kodi CATEGORIES= multimedia -DISTVERSION= 18.0.g201809092101 -PORTREVISION= 2 +DISTVERSION= 18.0.g201810021630 PKGNAMESUFFIX?= -devel MAINTAINER= tobik@FreeBSD.org @@ -55,7 +54,7 @@ USES= autoreconf:build cmake:outsource,noninja compiler:c++11-lib \ USE_GITHUB= yes GH_ACCOUNT= xbmc GH_PROJECT= xbmc -GH_TAGNAME= 18.0b2-Leia +GH_TAGNAME= 18.0b3-Leia USE_GNOME= libxslt libxml2 USE_JAVA= yes JAVA_BUILD= yes @@ -109,7 +108,10 @@ DBUS_CMAKE_BOOL= ENABLE_DBUS GBM_BUILD_DEPENDS= v4l_compat>=0:multimedia/v4l_compat GBM_CMAKE_ON= -DCORE_PLATFORM_NAME:STRING="gbm" \ -DGBM_RENDER_SYSTEM:STRING="gl" -GBM_LIB_DEPENDS= libinput.so:x11/libinput \ +GBM_CFLAGS= -I${LOCALBASE}/include/libepoll-shim +GBM_LDFLAGS= -L${LOCALBASE}/lib -lepoll-shim +GBM_LIB_DEPENDS= libepoll-shim.so:devel/libepoll-shim \ + libinput.so:x11/libinput \ libxkbcommon.so:x11/libxkbcommon LIBBLURAY_LIB_DEPENDS= libbluray.so:multimedia/libbluray @@ -131,6 +133,7 @@ RPI_CMAKE_ON= -DCORE_PLATFORM_NAME:STRING="rbpi" RPI_LIB_DEPENDS= libbrcmEGL.so:misc/raspberrypi-userland RPI_LIB_DEPENDS_OFF= libdrm.so:graphics/libdrm RPI_PREVENTS= VAAPI VDPAU +RPI_USES_OFF= gl RPI_USE_OFF= GL=egl,gl,glu SMB_USES= samba:lib diff --git a/multimedia/kodi-devel/distinfo b/multimedia/kodi-devel/distinfo index 387592a8d03..e3e8938ca3e 100644 --- a/multimedia/kodi-devel/distinfo +++ b/multimedia/kodi-devel/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1536563272 -SHA256 (xbmc-xbmc-18.0.g201809092101-18.0b2-Leia_GH0.tar.gz) = 25fc0aabfb523d4db19e08b1990d4851592ee2adec0424f5fb729bd3672eae69 -SIZE (xbmc-xbmc-18.0.g201809092101-18.0b2-Leia_GH0.tar.gz) = 50470777 +TIMESTAMP = 1538519280 +SHA256 (xbmc-xbmc-18.0.g201810021630-18.0b3-Leia_GH0.tar.gz) = cc5f1a75287438b2336c49a265019a4cab9626235e05a70345d77e4cecd6dce3 +SIZE (xbmc-xbmc-18.0.g201810021630-18.0b3-Leia_GH0.tar.gz) = 50833569 diff --git a/multimedia/kodi-devel/files/patch-rbpi b/multimedia/kodi-devel/files/patch-rbpi index 725a07fc187..e26034052fb 100644 --- a/multimedia/kodi-devel/files/patch-rbpi +++ b/multimedia/kodi-devel/files/patch-rbpi @@ -1,56 +1,26 @@ ---- xbmc/windowing/rpi/WinSystemRpi.cpp.orig 2018-05-22 11:44:17 UTC +--- xbmc/windowing/rpi/WinSystemRpi.cpp.orig 2018-10-02 14:30:37 UTC +++ xbmc/windowing/rpi/WinSystemRpi.cpp -@@ -32,8 +32,15 @@ - #include "settings/DisplaySettings.h" - #include "guilib/DispResource.h" - #include "utils/log.h" -+#include "utils/StringUtils.h" - #include "cores/AudioEngine/AESinkFactory.h" - #include "cores/AudioEngine/Sinks/AESinkPi.h" -+#ifdef HAS_PULSEAUDIO -+#include "cores/AudioEngine/Sinks/AESinkPULSE.h" -+#endif -+#ifdef HAS_SNDIO -+#include "cores/AudioEngine/Sinks/AESinkSNDIO.h" -+#endif - #include "platform/linux/powermanagement/LinuxPowerSyscall.h" - - #include -@@ -54,7 +61,36 @@ CWinSystemRpi::CWinSystemRpi() : - m_rpi = new CRPIUtils(); - - AE::CAESinkFactory::ClearSinks(); -- CAESinkPi::Register(); -+ -+ std::string envSink; -+ if (getenv("AE_SINK")) -+ envSink = getenv("AE_SINK"); -+ if (StringUtils::EqualsNoCase(envSink, "PULSE")) +@@ -52,9 +52,22 @@ CWinSystemRpi::CWinSystemRpi() : + { + OPTIONALS::PulseAudioRegister(); + } ++ else if (StringUtils::EqualsNoCase(envSink, "OSS")) + { -+#ifdef HAS_PULSEAUDIO -+ CAESinkPulseaudio::Register(); -+#endif ++ OPTIONALS::OSSRegister(); + } + else if (StringUtils::EqualsNoCase(envSink, "SNDIO")) + { -+#ifdef HAS_SNDIO -+ CAESinkSNDIO::Register(); -+#endif -+ } -+ else if (StringUtils::EqualsNoCase(envSink, "PI")) -+ { -+ CAESinkPi::Register(); -+ } -+ else -+ { -+#if defined(HAS_PULSEAUDIO) -+ CAESinkPulseaudio::Register(); -+#elif defined(HAS_SNDIO) -+ CAESinkSNDIO::Register(); -+#else -+ CAESinkPi::Register(); -+#endif ++ OPTIONALS::SndioRegister(); + } + else + { +- OPTIONALS::ALSARegister(); ++ if (!OPTIONALS::SndioRegister()) ++ { ++ if(!OPTIONALS::ALSARegister()) ++ { ++ OPTIONALS::OSSRegister(); ++ } + } + CLinuxPowerSyscall::Register(); - m_lirc.reset(OPTIONALS::LircRegister()); - m_libinput->Start(); diff --git a/multimedia/libfame/Makefile b/multimedia/libfame/Makefile index c704e0b3e08..0e430ca56c0 100644 --- a/multimedia/libfame/Makefile +++ b/multimedia/libfame/Makefile @@ -3,27 +3,30 @@ PORTNAME= libfame PORTVERSION= 0.9.1 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= multimedia MASTER_SITES= SF/fame/${PORTNAME}/${PORTVERSION} MAINTAINER= multimedia@FreeBSD.org COMMENT= Video encoding library -GNU_CONFIGURE= yes -INSTALL_TARGET= install-strip +LICENSE= LGPL20 +LICENSE_FILE= ${WRKSRC}/COPYING + USES= libtool USE_LDCONFIG= yes +GNU_CONFIGURE= yes +INSTALL_TARGET= install-strip + OPTIONS_DEFINE= MMX OPTIONS_DEFAULT=MMX MMX_CONFIGURE_ENABLE= mmx .include - -.if ${ARCH}=="i386" -LLD_UNSAFE= yes # cf. PR 226980 +.if ${ARCH} == "i386" +MAKE_ARGS= CFLAGS="${CLFAGS}" CC="${CC}" .endif post-patch: diff --git a/multimedia/libva-utils/Makefile b/multimedia/libva-utils/Makefile index 49aaf619154..fa5a10043c8 100644 --- a/multimedia/libva-utils/Makefile +++ b/multimedia/libva-utils/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= libva-utils -PORTVERSION= 2.2.0 +PORTVERSION= 2.3.0 CATEGORIES= multimedia MAINTAINER= madpilot@FreeBSD.org @@ -19,7 +19,7 @@ GNU_CONFIGURE= yes INSTALL_TARGET= install-strip USE_GITHUB= yes -GH_ACCOUNT= 01org +GH_ACCOUNT= intel OPTIONS_DEFINE= DEBUG WAYLAND WAYLAND_DESC= Support wayland protocol diff --git a/multimedia/libva-utils/distinfo b/multimedia/libva-utils/distinfo index 78314a525a8..2b030093847 100644 --- a/multimedia/libva-utils/distinfo +++ b/multimedia/libva-utils/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1531505935 -SHA256 (01org-libva-utils-2.2.0_GH0.tar.gz) = 1c45452090456f2b972d51960b1294215615b0dd925aa36b90eceac77777f3e3 -SIZE (01org-libva-utils-2.2.0_GH0.tar.gz) = 1037165 +TIMESTAMP = 1538516390 +SHA256 (intel-libva-utils-2.3.0_GH0.tar.gz) = f338497b867bbc9bf008e4892eaebda08955785dc7eb2005855bba5f1a20b037 +SIZE (intel-libva-utils-2.3.0_GH0.tar.gz) = 1086331 diff --git a/multimedia/libva-utils/pkg-descr b/multimedia/libva-utils/pkg-descr index 7e18f24afe8..e29726bccc3 100644 --- a/multimedia/libva-utils/pkg-descr +++ b/multimedia/libva-utils/pkg-descr @@ -1,4 +1,4 @@ libva-utils is a collection of utilities and examples to exercise VA-API in accordance with the libva project. -WWW: https://github.com/01org/libva-utils +WWW: https://github.com/intel/libva-utils diff --git a/multimedia/libva-utils/pkg-plist b/multimedia/libva-utils/pkg-plist index dc7e34461f8..9d3da15dd00 100644 --- a/multimedia/libva-utils/pkg-plist +++ b/multimedia/libva-utils/pkg-plist @@ -1,5 +1,7 @@ bin/avcenc +bin/avcstreamoutdemo bin/h264encode +bin/hevcencode bin/jpegenc bin/loadjpeg bin/mpeg2vaenc @@ -8,4 +10,5 @@ bin/putsurface %%WAYLAND%%bin/putsurface_wayland bin/vainfo bin/vavpp +bin/vp8enc bin/vp9enc diff --git a/multimedia/libva/Makefile b/multimedia/libva/Makefile index 73d4f6a6134..5e9d29b3607 100644 --- a/multimedia/libva/Makefile +++ b/multimedia/libva/Makefile @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= libva -PORTVERSION= 2.2.0 -PORTREVISION= 3 +PORTVERSION= 2.3.0 CATEGORIES= multimedia MAINTAINER= madpilot@FreeBSD.org @@ -24,7 +23,7 @@ USE_LDCONFIG= yes INSTALL_TARGET= install-strip USE_GITHUB= yes -GH_ACCOUNT= 01org +GH_ACCOUNT= intel LDFLAGS+= -lpthread # prevent types conflict: videodev2.h vs. drm.h diff --git a/multimedia/libva/distinfo b/multimedia/libva/distinfo index de53fc9d69f..89b63444100 100644 --- a/multimedia/libva/distinfo +++ b/multimedia/libva/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1531505858 -SHA256 (01org-libva-2.2.0_GH0.tar.gz) = 327181061056b49f8f9b5c5ee08fdd9832df06f4282451b218d1d0bde26a99b7 -SIZE (01org-libva-2.2.0_GH0.tar.gz) = 218971 +TIMESTAMP = 1538516302 +SHA256 (intel-libva-2.3.0_GH0.tar.gz) = 8d95e65c4d84d0f82097581e163d3770694c600cbb040ebd827f2d375e004f4b +SIZE (intel-libva-2.3.0_GH0.tar.gz) = 222152 diff --git a/multimedia/libva/pkg-descr b/multimedia/libva/pkg-descr index 1377e3d5e27..b075ef0b945 100644 --- a/multimedia/libva/pkg-descr +++ b/multimedia/libva/pkg-descr @@ -3,4 +3,4 @@ hardware accelerated video decode/encode at various entry-points (VLD, IDCT, Motion Compensation etc.) for the prevailing coding standards today (MPEG-2, MPEG-4 ASP/H.263, MPEG-4 AVC/H.264, and VC-1/VMW3). -WWW: https://github.com/01org/libva +WWW: https://github.com/intel/libva diff --git a/multimedia/libva/pkg-plist b/multimedia/libva/pkg-plist index a3bd2ae1f2f..794d53abeaf 100644 --- a/multimedia/libva/pkg-plist +++ b/multimedia/libva/pkg-plist @@ -31,19 +31,19 @@ include/va/va_vpp.h include/va/va_x11.h lib/libva-drm.so lib/libva-drm.so.2 -lib/libva-drm.so.2.200.0 +lib/libva-drm.so.2.300.0 lib/libva-glx.so lib/libva-glx.so.2 -lib/libva-glx.so.2.200.0 +lib/libva-glx.so.2.300.0 %%WAYLAND%%lib/libva-wayland.so %%WAYLAND%%lib/libva-wayland.so.2 -%%WAYLAND%%lib/libva-wayland.so.2.200.0 +%%WAYLAND%%lib/libva-wayland.so.2.300.0 lib/libva-x11.so lib/libva-x11.so.2 -lib/libva-x11.so.2.200.0 +lib/libva-x11.so.2.300.0 lib/libva.so lib/libva.so.2 -lib/libva.so.2.200.0 +lib/libva.so.2.300.0 libdata/pkgconfig/libva-drm.pc libdata/pkgconfig/libva-glx.pc %%WAYLAND%%libdata/pkgconfig/libva-wayland.pc diff --git a/multimedia/miro/Makefile b/multimedia/miro/Makefile index cd39f2d48d6..eea881a16be 100644 --- a/multimedia/miro/Makefile +++ b/multimedia/miro/Makefile @@ -3,7 +3,7 @@ PORTNAME= miro PORTVERSION= 6.0 -PORTREVISION= 19 +PORTREVISION= 21 CATEGORIES= multimedia MASTER_SITES= ftp://ftp.osuosl.org/pub/pculture.org/miro/src/ \ http://ftp.osuosl.org/pub/pculture.org/miro/src/ @@ -24,7 +24,7 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}bsddb>0:databases/py-bsddb@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}sqlite3>0:databases/py-sqlite3@${PY_FLAVOR} \ ${PYTHON_SITELIBDIR}/dbus/glib.py:devel/py-dbus@${PY_FLAVOR} \ ${PYTHON_SITELIBDIR}/gtk-2.0/pynotify/_pynotify.so:devel/py-notify@${PY_FLAVOR} \ - ${PYTHON_SITELIBDIR}/libtorrent.so:net-p2p/libtorrent-rasterbar-python \ + ${PYTHON_PKGNAMEPREFIX}libtorrent-rasterbar>0:net-p2p/py-libtorrent-rasterbar@${PY_FLAVOR} \ ${PYTHON_SITELIBDIR}/webkit/webkit.so:www/py-webkitgtk@${PY_FLAVOR} \ ${PYTHON_SITELIBDIR}/gtk-2.0/gconf.so:x11-toolkits/py-gnome2@${PY_FLAVOR} \ ${PYTHON_SITELIBDIR}/pycurl.so:ftp/py-pycurl@${PY_FLAVOR} \ diff --git a/multimedia/mpv/Makefile b/multimedia/mpv/Makefile index e13d773365b..2601a2310ad 100644 --- a/multimedia/mpv/Makefile +++ b/multimedia/mpv/Makefile @@ -2,9 +2,8 @@ # $FreeBSD$ PORTNAME= mpv -PORTVERSION= 0.29.0 +PORTVERSION= 0.29.1 DISTVERSIONPREFIX= v -PORTREVISION= 6 PORTEPOCH= 1 CATEGORIES= multimedia audio MASTER_SITES= https://waf.io/:waf @@ -110,6 +109,7 @@ OPENAL_CONFIGURE_ENABLE= openal OPENAL_USES= openal OPENAL_VARS= LLD_UNSAFE=yes # cf. PR 226980 +OPENGL_USES= gl OPENGL_USE= GL=egl,gbm,gl OPENGL_CONFIGURE_OFF= --disable-gl OPENGL_IMPLIES= X11 @@ -149,6 +149,7 @@ WAYLAND_LIB_DEPENDS= libwayland-client.so:graphics/wayland \ libxkbcommon.so:x11/libxkbcommon WAYLAND_CONFIGURE_OFF= --disable-wayland +X11_USES= gnome X11_USE= XORG=x11,xext,xinerama,xorgproto,xrandr,xscrnsaver,xv,xxf86vm X11_VARS= INSTALLS_ICONS=yes X11_CONFIGURE_OFF= --disable-x11 diff --git a/multimedia/mpv/distinfo b/multimedia/mpv/distinfo index a491068f513..5fe8ac80e13 100644 --- a/multimedia/mpv/distinfo +++ b/multimedia/mpv/distinfo @@ -1,5 +1,5 @@ -TIMESTAMP = 1534349028 +TIMESTAMP = 1538931998 SHA256 (waf-2.0.9.tar.bz2) = cb40489da7a78384dbc8281e6bc3e88005885a5d07de5bf75c29514e05830277 SIZE (waf-2.0.9.tar.bz2) = 645737 -SHA256 (mpv-player-mpv-v0.29.0_GH0.tar.gz) = 772af878cee5495dcd342788a6d120b90c5b1e677e225c7198f1e76506427319 -SIZE (mpv-player-mpv-v0.29.0_GH0.tar.gz) = 3057997 +SHA256 (mpv-player-mpv-v0.29.1_GH0.tar.gz) = f9f9d461d1990f9728660b4ccb0e8cb5dce29ccaa6af567bec481b79291ca623 +SIZE (mpv-player-mpv-v0.29.1_GH0.tar.gz) = 3059503 diff --git a/multimedia/p5-Audio-M4P/Makefile b/multimedia/p5-Audio-M4P/Makefile index 692014c110e..dece4414ca4 100644 --- a/multimedia/p5-Audio-M4P/Makefile +++ b/multimedia/p5-Audio-M4P/Makefile @@ -13,10 +13,10 @@ COMMENT= M4P / MP4 / m4a Quicktime audio and video tools LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Crypt-Rijndael>=0:security/p5-Crypt-Rijndael \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Crypt-Rijndael>=0:security/p5-Crypt-Rijndael \ p5-Tree-Simple>=0:devel/p5-Tree-Simple \ p5-Tree-Simple-View>=0:devel/p5-Tree-Simple-View -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Memory-Cycle>=0:devel/p5-Test-Memory-Cycle USES= perl5 diff --git a/multimedia/p5-FFmpeg-Command/Makefile b/multimedia/p5-FFmpeg-Command/Makefile index 99851c20235..b79e19b0b45 100644 --- a/multimedia/p5-FFmpeg-Command/Makefile +++ b/multimedia/p5-FFmpeg-Command/Makefile @@ -12,10 +12,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Wrapper class for ffmpeg command line utility -BUILD_DEPENDS= p5-Class-Accessor>=0:devel/p5-Class-Accessor \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Accessor>=0:devel/p5-Class-Accessor \ p5-Class-ErrorHandler>=0:devel/p5-Class-ErrorHandler \ p5-IPC-Run>=0:devel/p5-IPC-Run -RUN_DEPENDS:= ${BUILD_DEPENDS} RUN_DEPENDS+= ffmpeg:multimedia/ffmpeg USES= perl5 diff --git a/multimedia/p5-FLV-Info/Makefile b/multimedia/p5-FLV-Info/Makefile index 4898e67ee40..38397cdcb37 100644 --- a/multimedia/p5-FLV-Info/Makefile +++ b/multimedia/p5-FLV-Info/Makefile @@ -12,11 +12,11 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Extract metadata from Flash Video files -BUILD_DEPENDS= p5-AMF-Perl>=0.15:www/p5-AMF-Perl \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-AMF-Perl>=0.15:www/p5-AMF-Perl \ p5-List-MoreUtils>=0:lang/p5-List-MoreUtils \ p5-Readonly>=0:devel/p5-Readonly \ p5-SWF-File>=0.033:graphics/p5-SWF-File -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/multimedia/p5-MP4-Info/Makefile b/multimedia/p5-MP4-Info/Makefile index 244f3db2e78..56791bb47f8 100644 --- a/multimedia/p5-MP4-Info/Makefile +++ b/multimedia/p5-MP4-Info/Makefile @@ -14,8 +14,8 @@ COMMENT= Fetch info from MPEG-4 files LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-IO-String>=0:devel/p5-IO-String -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-IO-String>=0:devel/p5-IO-String NO_ARCH= yes USES= perl5 diff --git a/multimedia/p5-Video-OpenQuicktime/Makefile b/multimedia/p5-Video-OpenQuicktime/Makefile index c79746f84bd..c1a6103e658 100644 --- a/multimedia/p5-Video-OpenQuicktime/Makefile +++ b/multimedia/p5-Video-OpenQuicktime/Makefile @@ -11,10 +11,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Interface to the OpenQuicktime library -BUILD_DEPENDS= p5-Inline>=0:devel/p5-Inline \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Inline>=0:devel/p5-Inline \ p5-Inline-C>=0.01:devel/p5-Inline-C LIB_DEPENDS= libopenquicktime.so:multimedia/openquicktime -RUN_DEPENDS:= ${BUILD_DEPENDS} MAKE_JOBS_UNSAFE= yes diff --git a/multimedia/phonon/Makefile b/multimedia/phonon/Makefile index 421ed4096e8..cd033685f96 100644 --- a/multimedia/phonon/Makefile +++ b/multimedia/phonon/Makefile @@ -10,7 +10,8 @@ DIST_SUBDIR= KDE/phonon MAINTAINER= kde@FreeBSD.org COMMENT= KDE multimedia framework -LICENSE= LGPL21 +LICENSE= LGPL21+ +LICENSE_FILE= ${WRKSRC}/COPYING.LIB FLAVORS= qt4 qt5 FLAVOR?= ${FLAVORS:[1]} diff --git a/multimedia/phonon/pkg-descr b/multimedia/phonon/pkg-descr index 063d5211dfd..cf63a3a9fb8 100644 --- a/multimedia/phonon/pkg-descr +++ b/multimedia/phonon/pkg-descr @@ -1,4 +1,4 @@ Phonon is the framework responsible for an ubiquitous multimedia experience in KDE Software Compilation 4 and KDe Plasma Desktop. -WWW: http://phonon.kde.org +WWW: https://phonon.kde.org/ diff --git a/multimedia/py-mido/Makefile b/multimedia/py-mido/Makefile index b684bea75f0..b30f7208f23 100644 --- a/multimedia/py-mido/Makefile +++ b/multimedia/py-mido/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= mido -DISTVERSION= 1.2.8 +DISTVERSION= 1.2.9 CATEGORIES= multimedia python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/multimedia/py-mido/distinfo b/multimedia/py-mido/distinfo index 8d2023e278a..8161c3ef655 100644 --- a/multimedia/py-mido/distinfo +++ b/multimedia/py-mido/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1510112765 -SHA256 (mido-1.2.8.tar.gz) = 35142874d4521dc5fcebcdc3a645df87cb0ecad129dd031cbca391e2d052313f -SIZE (mido-1.2.8.tar.gz) = 93671 +TIMESTAMP = 1538874687 +SHA256 (mido-1.2.9.tar.gz) = c4a7d5528fefa3d3dcaa2056d4bc873e2c96a395658d15af5a89c8c3fa7c7acc +SIZE (mido-1.2.9.tar.gz) = 96112 diff --git a/multimedia/tautulli/Makefile b/multimedia/tautulli/Makefile index 99729cda736..4c9c90c7418 100644 --- a/multimedia/tautulli/Makefile +++ b/multimedia/tautulli/Makefile @@ -7,7 +7,7 @@ DISTVERSIONPREFIX=v PORTREVISION= 0 CATEGORIES= multimedia python -MAINTAINER= feld@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Monitoring, analytics, and notifications for Plex Media Server LICENSE= GPLv3 diff --git a/multimedia/totem-pl-parser/pkg-plist b/multimedia/totem-pl-parser/pkg-plist index d75018af9e7..4b765b1f4cd 100644 --- a/multimedia/totem-pl-parser/pkg-plist +++ b/multimedia/totem-pl-parser/pkg-plist @@ -12,7 +12,7 @@ lib/libtotem-plparser.so.18 lib/libtotem-plparser.so.18.1.2 libdata/pkgconfig/totem-plparser-mini.pc libdata/pkgconfig/totem-plparser.pc -libexec/totem-pl-parser/99-totem-pl-parser-videosite +%%QUVI%%libexec/totem-pl-parser/99-totem-pl-parser-videosite share/gir-1.0/TotemPlParser-1.0.gir share/locale/af/LC_MESSAGES/totem-pl-parser.mo share/locale/am/LC_MESSAGES/totem-pl-parser.mo diff --git a/net-im/Makefile b/net-im/Makefile index 58fca138f68..65410bfec84 100644 --- a/net-im/Makefile +++ b/net-im/Makefile @@ -199,8 +199,7 @@ SUBDIR += telepathy-logger-qt5 SUBDIR += telepathy-mission-control SUBDIR += telepathy-python - SUBDIR += telepathy-qt4 - SUBDIR += telepathy-qt5 + SUBDIR += telepathy-qt SUBDIR += telepathy-rakia SUBDIR += telepathy-salut SUBDIR += telepathy-sofiasip diff --git a/net-im/ktp-accounts-kcm-kde4/Makefile b/net-im/ktp-accounts-kcm-kde4/Makefile index 659ec3e5286..f7ddeb47bf7 100644 --- a/net-im/ktp-accounts-kcm-kde4/Makefile +++ b/net-im/ktp-accounts-kcm-kde4/Makefile @@ -13,7 +13,7 @@ COMMENT= KDE instant messaging account management module DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -LIB_DEPENDS= libtelepathy-qt4.so:net-im/telepathy-qt4 \ +LIB_DEPENDS= libtelepathy-qt4.so:net-im/telepathy-qt@qt4 \ libtelepathy-logger-qt4.so:net-im/telepathy-logger-qt4 \ libktpcommoninternalsprivate.so:net-im/ktp-common-internals-kde4 RUN_DEPENDS= ${KDE_PREFIX}/bin/ktp-contactlist:net-im/ktp-contact-list-kde4 diff --git a/net-im/ktp-accounts-kcm/Makefile b/net-im/ktp-accounts-kcm/Makefile index bc9c58654ce..eab8cd351dd 100644 --- a/net-im/ktp-accounts-kcm/Makefile +++ b/net-im/ktp-accounts-kcm/Makefile @@ -9,7 +9,7 @@ COMMENT= KDE instant messaging account management module LIB_DEPENDS= libaccounts-qt5.so:net-im/libaccounts-qt5 \ libkaccounts.so:net-im/kaccounts-integration \ - libtelepathy-qt5.so:net-im/telepathy-qt5 \ + libtelepathy-qt5.so:net-im/telepathy-qt@qt5 \ libtelepathy-logger-qt.so:net-im/telepathy-logger-qt5 \ libKTpCommonInternals.so:net-im/ktp-common-internals \ libKF5AkonadiPrivate.so:databases/akonadi \ diff --git a/net-im/ktp-approver-kde4/Makefile b/net-im/ktp-approver-kde4/Makefile index b3efeb46cb4..f63b1a29901 100644 --- a/net-im/ktp-approver-kde4/Makefile +++ b/net-im/ktp-approver-kde4/Makefile @@ -13,7 +13,7 @@ COMMENT= KDE instant messaging notifier DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -LIB_DEPENDS= libtelepathy-qt4.so:net-im/telepathy-qt4 \ +LIB_DEPENDS= libtelepathy-qt4.so:net-im/telepathy-qt@qt4 \ libktpcommoninternalsprivate.so:net-im/ktp-common-internals-kde4 RUN_DEPENDS= ${KDE_PREFIX}/bin/ktp-contactlist:net-im/ktp-contact-list-kde4 diff --git a/net-im/ktp-approver/Makefile b/net-im/ktp-approver/Makefile index 1362ea87d92..f12d261b4c7 100644 --- a/net-im/ktp-approver/Makefile +++ b/net-im/ktp-approver/Makefile @@ -7,7 +7,7 @@ CATEGORIES= net-im kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE instant messaging notifier -LIB_DEPENDS= libtelepathy-qt5.so:net-im/telepathy-qt5 \ +LIB_DEPENDS= libtelepathy-qt5.so:net-im/telepathy-qt@qt5 \ libKTpCommonInternals.so:net-im/ktp-common-internals RUN_DEPENDS= ${KDE_PREFIX}/bin/ktp-contactlist:net-im/ktp-contact-list diff --git a/net-im/ktp-auth-handler-kde4/Makefile b/net-im/ktp-auth-handler-kde4/Makefile index e62e9628b38..dec140b052b 100644 --- a/net-im/ktp-auth-handler-kde4/Makefile +++ b/net-im/ktp-auth-handler-kde4/Makefile @@ -15,7 +15,7 @@ EXPIRATION_DATE= 2018-12-31 LIB_DEPENDS= libqjson.so:devel/qjson \ libqca.so:devel/qca \ - libtelepathy-qt4.so:net-im/telepathy-qt4 \ + libtelepathy-qt4.so:net-im/telepathy-qt@qt4 \ libktpcommoninternalsprivate.so:net-im/ktp-common-internals-kde4 USES= cmake gettext kde:4 qt:4 tar:bzip2 diff --git a/net-im/ktp-auth-handler/Makefile b/net-im/ktp-auth-handler/Makefile index faa51062d6d..f0ea8110ecd 100644 --- a/net-im/ktp-auth-handler/Makefile +++ b/net-im/ktp-auth-handler/Makefile @@ -8,7 +8,7 @@ MAINTAINER= kde@FreeBSD.org COMMENT= KWallet integration module for KDE Telepathy LIB_DEPENDS= libqca-qt5.so:devel/qca@qt5 \ - libtelepathy-qt5.so:net-im/telepathy-qt5 \ + libtelepathy-qt5.so:net-im/telepathy-qt@qt5 \ libKTpCommonInternals.so:net-im/ktp-common-internals \ libaccounts-qt5.so:net-im/libaccounts-qt5 \ libkaccounts.so:net-im/kaccounts-integration \ diff --git a/net-im/ktp-call-ui/Makefile b/net-im/ktp-call-ui/Makefile index 290e61ba7d1..b24fce9d968 100644 --- a/net-im/ktp-call-ui/Makefile +++ b/net-im/ktp-call-ui/Makefile @@ -13,7 +13,7 @@ LIB_DEPENDS= libKTpCommonInternals.so:net-im/ktp-common-internals \ libfarstream-0.2.so:net-im/farstream \ libtelepathy-farstream.so:net-im/telepathy-farstream \ libtelepathy-glib.so:net-im/telepathy-glib \ - libtelepathy-qt5-farstream.so:net-im/telepathy-qt5 + libtelepathy-qt5-farstream.so:net-im/telepathy-qt@qt5 USES= cmake:outsource compiler:c++11-lang gettext kde:5 pkgconfig \ python:2.7 qt:5 tar:xz diff --git a/net-im/ktp-common-internals-kde4/Makefile b/net-im/ktp-common-internals-kde4/Makefile index 02d6ecc5b5b..6e443b5b680 100644 --- a/net-im/ktp-common-internals-kde4/Makefile +++ b/net-im/ktp-common-internals-kde4/Makefile @@ -13,7 +13,7 @@ COMMENT= KDE Telepathy internal library DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -LIB_DEPENDS= libtelepathy-qt4.so:net-im/telepathy-qt4 \ +LIB_DEPENDS= libtelepathy-qt4.so:net-im/telepathy-qt@qt4 \ libtelepathy-logger-qt4.so:net-im/telepathy-logger-qt4 RUN_DEPENDS= ${LOCALBASE}/libexec/mission-control-5:net-im/telepathy-mission-control diff --git a/net-im/ktp-common-internals/Makefile b/net-im/ktp-common-internals/Makefile index 0de901f12ec..f754ef3b4f3 100644 --- a/net-im/ktp-common-internals/Makefile +++ b/net-im/ktp-common-internals/Makefile @@ -9,7 +9,7 @@ COMMENT= KDE Telepathy internal library LIB_DEPENDS= libgcrypt.so:security/libgcrypt \ libsignon-qt5.so:sysutils/signon-qt5 \ - libtelepathy-qt5.so:net-im/telepathy-qt5 \ + libtelepathy-qt5.so:net-im/telepathy-qt@qt5 \ libtelepathy-logger-qt.so:net-im/telepathy-logger-qt5 \ libotr.so:security/libotr \ libaccounts-qt5.so:net-im/libaccounts-qt5 \ diff --git a/net-im/ktp-contact-list-kde4/Makefile b/net-im/ktp-contact-list-kde4/Makefile index 9dd8e2b77ab..e4436d83876 100644 --- a/net-im/ktp-contact-list-kde4/Makefile +++ b/net-im/ktp-contact-list-kde4/Makefile @@ -13,7 +13,7 @@ COMMENT= KDE instant messaging contact list application DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -LIB_DEPENDS= libtelepathy-qt4.so:net-im/telepathy-qt4 \ +LIB_DEPENDS= libtelepathy-qt4.so:net-im/telepathy-qt@qt4 \ libtelepathy-logger-qt4.so:net-im/telepathy-logger-qt4 \ libktpcommoninternalsprivate.so:net-im/ktp-common-internals-kde4 diff --git a/net-im/ktp-contact-list/Makefile b/net-im/ktp-contact-list/Makefile index 73ac7955a3b..ebfe7912f58 100644 --- a/net-im/ktp-contact-list/Makefile +++ b/net-im/ktp-contact-list/Makefile @@ -7,7 +7,7 @@ CATEGORIES= net-im kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE instant messaging contact list application -LIB_DEPENDS= libtelepathy-qt5.so:net-im/telepathy-qt5 \ +LIB_DEPENDS= libtelepathy-qt5.so:net-im/telepathy-qt@qt5 \ libtelepathy-logger-qt.so:net-im/telepathy-logger-qt5 \ libKTpCommonInternals.so:net-im/ktp-common-internals diff --git a/net-im/ktp-contact-runner-kde4/Makefile b/net-im/ktp-contact-runner-kde4/Makefile index 5fd9cecc6c2..3c3ea6465e4 100644 --- a/net-im/ktp-contact-runner-kde4/Makefile +++ b/net-im/ktp-contact-runner-kde4/Makefile @@ -13,7 +13,7 @@ COMMENT= KRunner integration module for KDE Telepathy DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -LIB_DEPENDS= libtelepathy-qt4.so:net-im/telepathy-qt4 \ +LIB_DEPENDS= libtelepathy-qt4.so:net-im/telepathy-qt@qt4 \ libktpcommoninternalsprivate.so:net-im/ktp-common-internals-kde4 USES= cmake gettext kde:4 qt:4 tar:bzip2 diff --git a/net-im/ktp-contact-runner/Makefile b/net-im/ktp-contact-runner/Makefile index 8ad68352698..afd9079cb1a 100644 --- a/net-im/ktp-contact-runner/Makefile +++ b/net-im/ktp-contact-runner/Makefile @@ -7,7 +7,7 @@ CATEGORIES= net-im kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KRunner integration module for KDE Telepathy -LIB_DEPENDS= libtelepathy-qt5.so:net-im/telepathy-qt5 \ +LIB_DEPENDS= libtelepathy-qt5.so:net-im/telepathy-qt@qt5 \ libKTpCommonInternals.so:net-im/ktp-common-internals USES= cmake:outsource gettext kde:5 qt:5 tar:xz diff --git a/net-im/ktp-filetransfer-handler-kde4/Makefile b/net-im/ktp-filetransfer-handler-kde4/Makefile index 95b59baf407..4a3e9627438 100644 --- a/net-im/ktp-filetransfer-handler-kde4/Makefile +++ b/net-im/ktp-filetransfer-handler-kde4/Makefile @@ -13,7 +13,7 @@ COMMENT= KDE instant messaging file transfer handler DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -LIB_DEPENDS= libtelepathy-qt4.so:net-im/telepathy-qt4 \ +LIB_DEPENDS= libtelepathy-qt4.so:net-im/telepathy-qt@qt4 \ libktpcommoninternalsprivate.so:net-im/ktp-common-internals-kde4 USES= cmake gettext kde:4 qt:4 tar:bzip2 diff --git a/net-im/ktp-filetransfer-handler/Makefile b/net-im/ktp-filetransfer-handler/Makefile index 99b2471d00d..d116dbe2e67 100644 --- a/net-im/ktp-filetransfer-handler/Makefile +++ b/net-im/ktp-filetransfer-handler/Makefile @@ -7,7 +7,7 @@ CATEGORIES= net-im kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE instant messaging file transfer handler -LIB_DEPENDS= libtelepathy-qt5.so:net-im/telepathy-qt5 \ +LIB_DEPENDS= libtelepathy-qt5.so:net-im/telepathy-qt@qt5 \ libKTpCommonInternals.so:net-im/ktp-common-internals USES= cmake:outsource gettext kde:5 qt:5 tar:xz diff --git a/net-im/ktp-kded-integration-module-kde4/Makefile b/net-im/ktp-kded-integration-module-kde4/Makefile index 70239a72371..030d3f2e94a 100644 --- a/net-im/ktp-kded-integration-module-kde4/Makefile +++ b/net-im/ktp-kded-integration-module-kde4/Makefile @@ -13,7 +13,7 @@ COMMENT= Module for integration of instant messaging into KDE Workspaces DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -LIB_DEPENDS= libtelepathy-qt4.so:net-im/telepathy-qt4 \ +LIB_DEPENDS= libtelepathy-qt4.so:net-im/telepathy-qt@qt4 \ libktpcommoninternalsprivate.so:net-im/ktp-common-internals-kde4 USES= cmake gettext kde:4 qt:4 tar:bzip2 diff --git a/net-im/ktp-kded-module/Makefile b/net-im/ktp-kded-module/Makefile index 74c55782fbd..f37de473748 100644 --- a/net-im/ktp-kded-module/Makefile +++ b/net-im/ktp-kded-module/Makefile @@ -7,7 +7,7 @@ CATEGORIES= net-im kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Module for integration of instant messaging into KDE Workspaces -LIB_DEPENDS= libtelepathy-qt5.so:net-im/telepathy-qt5 \ +LIB_DEPENDS= libtelepathy-qt5.so:net-im/telepathy-qt@qt5 \ libKTpCommonInternals.so:net-im/ktp-common-internals USES= cmake:outsource gettext kde:5 qt:5 tar:xz diff --git a/net-im/ktp-send-file-kde4/Makefile b/net-im/ktp-send-file-kde4/Makefile index 16eb28fd220..ea2fb14abf1 100644 --- a/net-im/ktp-send-file-kde4/Makefile +++ b/net-im/ktp-send-file-kde4/Makefile @@ -13,7 +13,7 @@ COMMENT= KDE instant messaging file transfer application DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -LIB_DEPENDS= libtelepathy-qt4.so:net-im/telepathy-qt4 \ +LIB_DEPENDS= libtelepathy-qt4.so:net-im/telepathy-qt@qt4 \ libktpcommoninternalsprivate.so:net-im/ktp-common-internals-kde4 RUN_DEPENDS= ${KDE_PREFIX}/lib/kde4/libexec/ktp-filetransfer-handler:net-im/ktp-filetransfer-handler-kde4 \ ${KDE_PREFIX}/bin/ktp-contactlist:net-im/ktp-contact-list-kde4 diff --git a/net-im/ktp-send-file/Makefile b/net-im/ktp-send-file/Makefile index 12eff9f09f5..02c67da93d5 100644 --- a/net-im/ktp-send-file/Makefile +++ b/net-im/ktp-send-file/Makefile @@ -7,7 +7,7 @@ CATEGORIES= net-im kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE instant messaging file transfer application -LIB_DEPENDS= libtelepathy-qt5.so:net-im/telepathy-qt5 \ +LIB_DEPENDS= libtelepathy-qt5.so:net-im/telepathy-qt@qt5 \ libKTpCommonInternals.so:net-im/ktp-common-internals RUN_DEPENDS= ${KDE_PREFIX}/lib/libexec/ktp-filetransfer-handler:net-im/ktp-filetransfer-handler \ ${KDE_PREFIX}/bin/ktp-contactlist:net-im/ktp-contact-list diff --git a/net-im/ktp-text-ui-kde4/Makefile b/net-im/ktp-text-ui-kde4/Makefile index 6d5290efd94..f489888f3e1 100644 --- a/net-im/ktp-text-ui-kde4/Makefile +++ b/net-im/ktp-text-ui-kde4/Makefile @@ -13,7 +13,7 @@ COMMENT= KDE chat window application DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -LIB_DEPENDS= libtelepathy-qt4.so:net-im/telepathy-qt4 \ +LIB_DEPENDS= libtelepathy-qt4.so:net-im/telepathy-qt@qt4 \ libtelepathy-logger-qt4.so:net-im/telepathy-logger-qt4 \ libktpcommoninternalsprivate.so:net-im/ktp-common-internals-kde4 RUN_DEPENDS= ${KDE_PREFIX}/bin/ktp-contactlist:net-im/ktp-contact-list-kde4 diff --git a/net-im/ktp-text-ui/Makefile b/net-im/ktp-text-ui/Makefile index 85aeb6835ab..571aaabe99f 100644 --- a/net-im/ktp-text-ui/Makefile +++ b/net-im/ktp-text-ui/Makefile @@ -7,7 +7,7 @@ CATEGORIES= net-im kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE chat window application -LIB_DEPENDS= libtelepathy-qt5.so:net-im/telepathy-qt5 \ +LIB_DEPENDS= libtelepathy-qt5.so:net-im/telepathy-qt@qt5 \ libtelepathy-logger-qt.so:net-im/telepathy-logger-qt5 \ libKTpCommonInternals.so:net-im/ktp-common-internals RUN_DEPENDS= ${KDE_PREFIX}/bin/ktp-contactlist:net-im/ktp-contact-list diff --git a/net-im/libaccounts-glib/Makefile b/net-im/libaccounts-glib/Makefile index 811b74ffb83..0f7ffe945bb 100644 --- a/net-im/libaccounts-glib/Makefile +++ b/net-im/libaccounts-glib/Makefile @@ -20,9 +20,10 @@ GNU_CONFIGURE= YES CONFIGURE_ARGS= --disable-tests --enable-gtk-doc INSTALL_TARGET= install-strip -USES= autoreconf gmake libtool pathfix pkgconfig python sqlite:3 +USES= autoreconf gmake gnome libtool pathfix pkgconfig python sqlite:3 USE_GNOME= pygobject3 introspection libxml2 USE_PYTHON= py3kplist +CFLAGS_powerpc64= -Wno-error # GitLab variables. USE_GITLAB= yes diff --git a/net-im/p5-AnyEvent-XMPP/Makefile b/net-im/p5-AnyEvent-XMPP/Makefile index 0f3533426c8..920775082af 100644 --- a/net-im/p5-AnyEvent-XMPP/Makefile +++ b/net-im/p5-AnyEvent-XMPP/Makefile @@ -14,14 +14,14 @@ COMMENT= Implementation of the XMPP Protocol LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-AnyEvent>=0:devel/p5-AnyEvent \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-AnyEvent>=0:devel/p5-AnyEvent \ p5-Authen-SASL>=0:security/p5-Authen-SASL \ p5-Digest-SHA1>=0:security/p5-Digest-SHA1 \ p5-Net-LibIDN>=0:dns/p5-Net-LibIDN \ p5-Object-Event>=0.7:devel/p5-Object-Event \ p5-XML-Parser>=0:textproc/p5-XML-Parser \ p5-XML-Writer>=0:textproc/p5-XML-Writer -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/net-im/p5-DJabberd/Makefile b/net-im/p5-DJabberd/Makefile index 592bb8eae4c..dbc9d7df387 100644 --- a/net-im/p5-DJabberd/Makefile +++ b/net-im/p5-DJabberd/Makefile @@ -12,7 +12,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Scalable, extensible Jabber/XMPP server framework -BUILD_DEPENDS= p5-Danga-Socket>=0:devel/p5-Danga-Socket \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Danga-Socket>=0:devel/p5-Danga-Socket \ p5-XML-SAX>=0:textproc/p5-XML-SAX \ p5-XML-LibXML>=0:textproc/p5-XML-LibXML \ p5-Net-DNS>=0:dns/p5-Net-DNS \ @@ -20,7 +21,6 @@ BUILD_DEPENDS= p5-Danga-Socket>=0:devel/p5-Danga-Socket \ p5-Log-Log4perl>=0:devel/p5-Log-Log4perl \ p5-Digest-HMAC>=0:security/p5-Digest-HMAC \ p5-Unicode-Stringprep>=0:converters/p5-Unicode-Stringprep -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Digest-SHA1>=0:security/p5-Digest-SHA1 PORTSCOUT= limit:^[0-9\.]*$$ diff --git a/net-im/p5-Jabber-Lite/Makefile b/net-im/p5-Jabber-Lite/Makefile index dced6f66b16..18a4da47535 100644 --- a/net-im/p5-Jabber-Lite/Makefile +++ b/net-im/p5-Jabber-Lite/Makefile @@ -15,11 +15,11 @@ COMMENT= Standalone library for communicating with Jabber servers LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Authen-SASL>=0:security/p5-Authen-SASL \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Authen-SASL>=0:security/p5-Authen-SASL \ p5-Digest-SHA1>=0:security/p5-Digest-SHA1 \ p5-IO-Socket-SSL>=0:security/p5-IO-Socket-SSL \ p5-Net-DNS>=0:dns/p5-Net-DNS -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USE_PERL5= configure diff --git a/net-im/p5-Net-Async-XMPP/Makefile b/net-im/p5-Net-Async-XMPP/Makefile index a62b69542a1..14b160969eb 100644 --- a/net-im/p5-Net-Async-XMPP/Makefile +++ b/net-im/p5-Net-Async-XMPP/Makefile @@ -15,14 +15,14 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Future>=0.29:devel/p5-Future \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Future>=0.29:devel/p5-Future \ p5-IO-Async>=0.60:devel/p5-IO-Async \ p5-IO-Async-Resolver-DNS>=0.04:dns/p5-IO-Async-Resolver-DNS \ p5-IO-Async-SSL>=0.14:security/p5-IO-Async-SSL \ p5-Mixin-Event-Dispatch>=1:devel/p5-Mixin-Event-Dispatch \ p5-Protocol-XMPP>=0.006:net-im/p5-Protocol-XMPP \ p5-curry>=0:devel/p5-curry -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-CheckDeps>=0.010:devel/p5-Test-CheckDeps \ p5-Test-Fatal>=0.010:devel/p5-Test-Fatal diff --git a/net-im/p5-Net-Jabber/Makefile b/net-im/p5-Net-Jabber/Makefile index d3aa86077f2..d815af153c3 100644 --- a/net-im/p5-Net-Jabber/Makefile +++ b/net-im/p5-Net-Jabber/Makefile @@ -12,8 +12,8 @@ DIST_SUBDIR= jabber MAINTAINER= perl@FreeBSD.org COMMENT= Net::Jabber provides Perl Developer access to the Jabber protocol -BUILD_DEPENDS= p5-Net-XMPP>=0:net-im/p5-Net-XMPP -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Net-XMPP>=0:net-im/p5-Net-XMPP USES= perl5 USE_PERL5= configure diff --git a/net-im/p5-Net-OSCAR/Makefile b/net-im/p5-Net-OSCAR/Makefile index 48b6b55b18b..470ed89d82e 100644 --- a/net-im/p5-Net-OSCAR/Makefile +++ b/net-im/p5-Net-OSCAR/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Perl extension for the AOL Instant Messenger OSCAR protocol -BUILD_DEPENDS= p5-SOCKS>=0:net/p5-Socks \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-SOCKS>=0:net/p5-Socks \ p5-XML-Parser>=0:textproc/p5-XML-Parser -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/net-im/p5-Net-Stomp/Makefile b/net-im/p5-Net-Stomp/Makefile index be6823caffe..5a63d4cd459 100644 --- a/net-im/p5-Net-Stomp/Makefile +++ b/net-im/p5-Net-Stomp/Makefile @@ -13,8 +13,8 @@ COMMENT= Streaming Text Orientated Messaging Protocol Client LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Class-Accessor>=0:devel/p5-Class-Accessor -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Accessor>=0:devel/p5-Class-Accessor TEST_DEPENDS= p5-Test-Deep>=0:devel/p5-Test-Deep \ p5-Test-Fatal>=0:devel/p5-Test-Fatal diff --git a/net-im/p5-Net-XMPP/Makefile b/net-im/p5-Net-XMPP/Makefile index dec298e22c2..c6006bf47ac 100644 --- a/net-im/p5-Net-XMPP/Makefile +++ b/net-im/p5-Net-XMPP/Makefile @@ -14,9 +14,9 @@ COMMENT= Net::XMPP provides Perl Developer access to the XMPP protocol LICENSE= LGPL21 LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Authen-SASL>=2.12:security/p5-Authen-SASL \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Authen-SASL>=2.12:security/p5-Authen-SASL \ p5-XML-Stream>=1.24:textproc/p5-XML-Stream -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-LWP-Online>=1.07:www/p5-LWP-Online \ p5-YAML-Tiny>=1.41:textproc/p5-YAML-Tiny diff --git a/net-im/p5-Net-XMPP2/Makefile b/net-im/p5-Net-XMPP2/Makefile index 51e57dd4217..cfda92a08b0 100644 --- a/net-im/p5-Net-XMPP2/Makefile +++ b/net-im/p5-Net-XMPP2/Makefile @@ -15,7 +15,8 @@ COMMENT= Implementation of the XMPP Protocol LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-AnyEvent>=0:devel/p5-AnyEvent \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-AnyEvent>=0:devel/p5-AnyEvent \ p5-Authen-SASL>=0:security/p5-Authen-SASL \ p5-BS-Event>=0:devel/p5-BS-Event \ p5-Digest-SHA1>=0:security/p5-Digest-SHA1 \ @@ -25,7 +26,6 @@ BUILD_DEPENDS= p5-AnyEvent>=0:devel/p5-AnyEvent \ p5-Object-Event>=0:devel/p5-Object-Event \ p5-XML-Parser>=0:textproc/p5-XML-Parser \ p5-XML-Writer>=0:textproc/p5-XML-Writer -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/net-im/p5-SOAP-Transport-JABBER/Makefile b/net-im/p5-SOAP-Transport-JABBER/Makefile index 0f5f9126395..8c498925143 100644 --- a/net-im/p5-SOAP-Transport-JABBER/Makefile +++ b/net-im/p5-SOAP-Transport-JABBER/Makefile @@ -13,9 +13,9 @@ COMMENT= Jabber-based transport backend for SOAP::Lite LICENSE= ART10 -BUILD_DEPENDS= p5-Net-Jabber>=0:net-im/p5-Net-Jabber \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Net-Jabber>=0:net-im/p5-Net-Jabber \ p5-SOAP-Lite>=0.711:net/p5-SOAP-Lite -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USE_PERL5= modbuild diff --git a/net-im/plasma-applet-ktp-kde4/Makefile b/net-im/plasma-applet-ktp-kde4/Makefile index 56461ca1e31..360b4727074 100644 --- a/net-im/plasma-applet-ktp-kde4/Makefile +++ b/net-im/plasma-applet-ktp-kde4/Makefile @@ -15,7 +15,7 @@ COMMENT= KDE instant messaging Plasma applets DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -LIB_DEPENDS= libtelepathy-qt4.so:net-im/telepathy-qt4 \ +LIB_DEPENDS= libtelepathy-qt4.so:net-im/telepathy-qt@qt4 \ libktpcommoninternalsprivate.so:net-im/ktp-common-internals-kde4 USES= cmake gettext kde:4 qt:4 tar:bzip2 diff --git a/net-im/py-matrix-synapse/Makefile b/net-im/py-matrix-synapse/Makefile index 8637a058716..6ef035993ee 100644 --- a/net-im/py-matrix-synapse/Makefile +++ b/net-im/py-matrix-synapse/Makefile @@ -3,7 +3,7 @@ PORTNAME= matrix-synapse DISTVERSIONPREFIX= v -DISTVERSION= 0.33.3.1 +DISTVERSION= 0.33.5.1 CATEGORIES= net-im python PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -20,8 +20,9 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}jsonschema>=2.5.1:devel/py-jsonschema@${PY_F ${PYTHON_PKGNAMEPREFIX}canonicaljson>=1.1.3:devel/py-canonicaljson@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}signedjson>=1.0.0:security/py-signedjson@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}pynacl>=1.2.1:security/py-pynacl@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}service_identity>=16.0:security/py-service_identity@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}twisted>=16.6.0:devel/py-twisted@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}service_identity>=1.0.0:security/py-service_identity@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}twisted>=17.1.0:devel/py-twisted@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}treq>=15.1:www/py-treq@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}openssl>=16.0.0:security/py-openssl@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}yaml>=3.11:devel/py-yaml@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}pyasn1>=0.1.9:devel/py-pyasn1@${PY_FLAVOR} \ @@ -48,7 +49,8 @@ RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}simplejson>=3.10.0:devel/py-simplejson@${PY ${LOCALBASE}/share/certs/ca-root-nss.crt:security/ca_root_nss TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}virtualenv>=15.0:devel/py-virtualenv@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}tox>=2.3.1:devel/py-tox@${PY_FLAVOR} + ${PYTHON_PKGNAMEPREFIX}tox>=2.3.1:devel/py-tox@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}lxml>0:devel/py-lxml@${PY_FLAVOR} USES= python USE_GITHUB= yes @@ -74,9 +76,10 @@ PLIST_FILES+= "@sample %%ETCDIR%%/log.config.sample" NO_ARCH= yes -OPTIONS_DEFINE= EMAIL LDAP PGSQL SQLITE +OPTIONS_DEFINE= EMAIL LDAP PGSQL SQLITE URL_PREVIEW OPTIONS_DEFAULT= SQLITE -EMAIL_DESC= Email notifications for missed messages +EMAIL_DESC= Email notifications for missed messages +URL_PREVIEW_DESC= Add dependencies necessary for URL previews EMAIL_RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}Jinja2>=2.8:devel/py-Jinja2@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}bleach>=1.4.2:www/py-bleach@${PY_FLAVOR} LDAP_RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}matrix-synapse-ldap3>=0.1:net/py-matrix-synapse-ldap3@${PY_FLAVOR} @@ -87,9 +90,7 @@ post-patch: @${REINPLACE_CMD} -e 's|msgpack-python|msgpack|' ${WRKSRC}/synapse/python_dependencies.py do-test: - # -epy27 added to skip running python packaging and other dist tests - @(cd ${WRKSRC} && ${PYTHON_CMD} ${PYDISTUTILS_SETUP} ${TEST_TARGET} \ - -a "-epy27") + cd ${WRKSRC} && PYTHONPATH="." trial tests post-install: ${MKDIR} ${STAGEDIR}${ETCDIR} diff --git a/net-im/py-matrix-synapse/distinfo b/net-im/py-matrix-synapse/distinfo index 82a286b4ef2..3cf1079ccbb 100644 --- a/net-im/py-matrix-synapse/distinfo +++ b/net-im/py-matrix-synapse/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1536235704 -SHA256 (matrix-org-synapse-v0.33.3.1_GH0.tar.gz) = c611fe29a4b4e13417f0fff9c4dc38117d3bba19d071bd138400c77ac961d894 -SIZE (matrix-org-synapse-v0.33.3.1_GH0.tar.gz) = 1015144 +TIMESTAMP = 1538476562 +SHA256 (matrix-org-synapse-v0.33.5.1_GH0.tar.gz) = 2828f271c3bd1f38d7e55746b4a41c44e60b440e35aa466e1710386a4035deab +SIZE (matrix-org-synapse-v0.33.5.1_GH0.tar.gz) = 1035101 diff --git a/net-im/telepathy-logger-qt4/Makefile b/net-im/telepathy-logger-qt4/Makefile index 5495d805778..894e88b49c7 100644 --- a/net-im/telepathy-logger-qt4/Makefile +++ b/net-im/telepathy-logger-qt4/Makefile @@ -15,7 +15,7 @@ LIB_DEPENDS= libdbus-1.so:devel/dbus \ libdbus-glib-1.so:devel/dbus-glib \ libtelepathy-glib.so:net-im/telepathy-glib \ libtelepathy-logger.so:net-im/telepathy-logger \ - libtelepathy-qt4.so:net-im/telepathy-qt4 + libtelepathy-qt4.so:net-im/telepathy-qt@qt4 USES= bison:build cmake kde:4 pkgconfig python:2.7,build qt:4 tar:bzip2 USE_GNOME= glib20 libxml2 diff --git a/net-im/telepathy-logger-qt5/Makefile b/net-im/telepathy-logger-qt5/Makefile index dd52122f16f..d4a1565a291 100644 --- a/net-im/telepathy-logger-qt5/Makefile +++ b/net-im/telepathy-logger-qt5/Makefile @@ -18,7 +18,7 @@ LIB_DEPENDS= libdbus-1.so:devel/dbus \ libdbus-glib-1.so:devel/dbus-glib \ libtelepathy-glib.so:net-im/telepathy-glib \ libtelepathy-logger.so:net-im/telepathy-logger \ - libtelepathy-qt5.so:net-im/telepathy-qt5 + libtelepathy-qt5.so:net-im/telepathy-qt@qt5 USES= bison:build cmake:outsource kde:5 pkgconfig python:2.7,build qt:5 tar:xz USE_GNOME= glib20 libxml2 diff --git a/net-im/telepathy-qt4/Makefile b/net-im/telepathy-qt/Makefile similarity index 64% rename from net-im/telepathy-qt4/Makefile rename to net-im/telepathy-qt/Makefile index 4141c076745..5664cb3780b 100644 --- a/net-im/telepathy-qt4/Makefile +++ b/net-im/telepathy-qt/Makefile @@ -3,10 +3,9 @@ PORTNAME= telepathy-qt PORTVERSION= 0.9.7 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net-im MASTER_SITES= https://telepathy.freedesktop.org/releases/${PORTNAME}/ -PKGNAMESUFFIX?= 4 MAINTAINER= kde@FreeBSD.org COMMENT= High-level Qt binding for Telepathy @@ -18,21 +17,26 @@ LIB_DEPENDS= libtelepathy-farstream.so:net-im/telepathy-farstream \ libtelepathy-glib.so:net-im/telepathy-glib RUN_DEPENDS= ${PYTHON_SITELIBDIR}/_dbus_bindings.so:devel/py-dbus@${PY_FLAVOR} -OPTIONS_DEFINE= DOCS +FLAVORS= qt4 qt5 +FLAVOR?= ${FLAVORS:[1]} +qt4_PKGNAMESUFFIX= 4 +qt5_PKGNAMESUFFIX= 5 + +USES= cmake:outsource gettext gnome localbase:ldflags pathfix pkgconfig python:2.7,build USE_GNOME= glib20 libxslt:build USE_GSTREAMER= yes -USES= cmake:outsource gettext pathfix pkgconfig python:2.7,build -CMAKE_ARGS= -DENABLE_EXAMPLES:BOOL=False \ - -DENABLE_FARSIGHT:BOOL=False \ - -DENABLE_FARSTREAM:BOOL=True \ - -DENABLE_TESTS:BOOL=False \ - -DDESIRED_QT_VERSION:STRING=${PKGNAMESUFFIX} \ +USE_LDCONFIG= yes + +CMAKE_ON= ENABLE_FARSTREAM CMAKE_DISABLE_FIND_PACKAGE_Doxygen +CMAKE_OFF= ENABLE_EXAMPLES ENABLE_FARSIGHT ENABLE_TESTS +CMAKE_ARGS= -DDESIRED_QT_VERSION:STRING=${PKGNAMESUFFIX} \ -DQT_QMAKE_EXECUTABLE:FILEPATH=${QMAKE} -. if ${PKGNAMESUFFIX:M4} + +. if ${FLAVOR} == qt4 USES+= qt:4 -USE_QT= corelib dbus gui network qtestlib_build xml \ - moc_build qmake_build rcc_build uic_build +USE_QT= corelib dbus gui network xml \ + moc_build qmake_build qtestlib_build rcc_build uic_build SHLIB_SUFFIX= 2 . else USES+= qt:5 @@ -41,16 +45,7 @@ USE_QT= core dbus gui network xml \ SHLIB_SUFFIX= 0 . endif -USE_LDCONFIG= yes - -# Required because FindGObject.cmake is too old and uses the pkg-config values -# directly (-lgobject-2.0 instead of /path/to/libgobject-2.0.so). -CXXFLAGS+= -I${LOCALBASE}/include -LDFLAGS+= -L${LOCALBASE}/lib - -# We do not need Doxygen because the tarball already ships with prebuilt -# documentation. -CMAKE_ARGS+= -DDOXYGEN_EXECUTABLE:FILEPATH="" +OPTIONS_DEFINE= DOCS PLIST_SUB= PORTVERSION="${PORTVERSION}" \ QTVER_SUFFIX="${PKGNAMESUFFIX}" \ diff --git a/net-im/telepathy-qt4/distinfo b/net-im/telepathy-qt/distinfo similarity index 100% rename from net-im/telepathy-qt4/distinfo rename to net-im/telepathy-qt/distinfo diff --git a/net-im/telepathy-qt4/pkg-descr b/net-im/telepathy-qt/pkg-descr similarity index 100% rename from net-im/telepathy-qt4/pkg-descr rename to net-im/telepathy-qt/pkg-descr diff --git a/net-im/telepathy-qt4/pkg-plist b/net-im/telepathy-qt/pkg-plist similarity index 100% rename from net-im/telepathy-qt4/pkg-plist rename to net-im/telepathy-qt/pkg-plist diff --git a/net-im/telepathy-qt5/Makefile b/net-im/telepathy-qt5/Makefile deleted file mode 100644 index 569cd634757..00000000000 --- a/net-im/telepathy-qt5/Makefile +++ /dev/null @@ -1,8 +0,0 @@ -# $FreeBSD$ - -PORTREVISION= 1 -PKGNAMESUFFIX= 5 - -MASTERDIR= ${.CURDIR:H}/telepathy-qt4 - -.include "${MASTERDIR}/Makefile" diff --git a/net-mgmt/Makefile b/net-mgmt/Makefile index eca8731d177..8e8c2f7a891 100644 --- a/net-mgmt/Makefile +++ b/net-mgmt/Makefile @@ -423,5 +423,10 @@ SUBDIR += zabbix34-java SUBDIR += zabbix34-proxy SUBDIR += zabbix34-server + SUBDIR += zabbix4-agent + SUBDIR += zabbix4-frontend + SUBDIR += zabbix4-java + SUBDIR += zabbix4-proxy + SUBDIR += zabbix4-server .include diff --git a/net-mgmt/mdata-client/Makefile b/net-mgmt/mdata-client/Makefile index 9ca22cb26a4..b50de98ffaa 100644 --- a/net-mgmt/mdata-client/Makefile +++ b/net-mgmt/mdata-client/Makefile @@ -10,9 +10,8 @@ COMMENT= Metadata tools for use within guests of the SmartOS LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE -BROKEN_mips= fails to compile: unrecognized command line option "-Wno-typedef-redefinition" -BROKEN_mips64= fails to compile: unrecognized command line option "-Wno-typedef-redefinition" -BROKEN_powerpc64= fails to compile: unrecognized command line option "-Wno-typedef-redefinition" +ONLY_FOR_ARCHS= amd64 +ONLY_FOR_ARCHS_REASON= SmartOS only runs on amd64 USES= gmake USE_GITHUB= yes diff --git a/net-mgmt/nfsen/Makefile b/net-mgmt/nfsen/Makefile index 43beb9950b0..8fc1612c3fc 100644 --- a/net-mgmt/nfsen/Makefile +++ b/net-mgmt/nfsen/Makefile @@ -8,7 +8,7 @@ CATEGORIES= net-mgmt MASTER_SITES= SF/${PORTNAME}/stable/${PORTNAME}-${PORTVERSION} \ http://nfsen.sourceforge.net/ -MAINTAINER= feld@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Web based frontend to nfdump netflow collector LICENSE= BSD3CLAUSE diff --git a/net-mgmt/p5-FusionInventory-Agent-Task-NetDiscovery/Makefile b/net-mgmt/p5-FusionInventory-Agent-Task-NetDiscovery/Makefile index e0976ecfa00..005b9145103 100644 --- a/net-mgmt/p5-FusionInventory-Agent-Task-NetDiscovery/Makefile +++ b/net-mgmt/p5-FusionInventory-Agent-Task-NetDiscovery/Makefile @@ -15,12 +15,12 @@ COMMENT= Network discovery support for FusionInventory Agent LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-FusionInventory-Agent>=2.2.0:net-mgmt/p5-FusionInventory-Agent \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-FusionInventory-Agent>=2.2.0:net-mgmt/p5-FusionInventory-Agent \ p5-Net-IP>=0:net-mgmt/p5-Net-IP \ p5-Net-NBName>=0:net/p5-Net-NBName \ p5-Net-SNMP>=0:net-mgmt/p5-Net-SNMP \ p5-XML-TreePP>=0.26:textproc/p5-XML-TreePP -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/net-mgmt/p5-FusionInventory-Agent-Task-SNMPQuery/Makefile b/net-mgmt/p5-FusionInventory-Agent-Task-SNMPQuery/Makefile index 40f87277a27..75d614d300e 100644 --- a/net-mgmt/p5-FusionInventory-Agent-Task-SNMPQuery/Makefile +++ b/net-mgmt/p5-FusionInventory-Agent-Task-SNMPQuery/Makefile @@ -15,15 +15,12 @@ COMMENT= SNMP support for FusionInventory Agent LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/LICENSE -DEPRECATED= No longer needed -EXPIRATION_DATE= 2018-10-22 - -BUILD_DEPENDS= p5-FusionInventory-Agent>=0:net-mgmt/p5-FusionInventory-Agent \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-FusionInventory-Agent>=0:net-mgmt/p5-FusionInventory-Agent \ p5-Net-IP>=0:net-mgmt/p5-Net-IP \ p5-Net-SNMP>=0:net-mgmt/p5-Net-SNMP \ p5-Parallel-ForkManager>=0:devel/p5-Parallel-ForkManager \ p5-XML-Simple>=0:textproc/p5-XML-Simple -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/net-mgmt/p5-FusionInventory-Agent/Makefile b/net-mgmt/p5-FusionInventory-Agent/Makefile index 8447ab74837..4d795372885 100644 --- a/net-mgmt/p5-FusionInventory-Agent/Makefile +++ b/net-mgmt/p5-FusionInventory-Agent/Makefile @@ -14,13 +14,13 @@ COMMENT= Agent for OCS Inventory server and FusionInventory for GLPI servers LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-File-Which>=0:sysutils/p5-File-Which \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-File-Which>=0:sysutils/p5-File-Which \ p5-libwww>=0:www/p5-libwww \ p5-Net-IP>=0:net-mgmt/p5-Net-IP \ p5-UNIVERSAL-require>=0:devel/p5-UNIVERSAL-require \ p5-Text-Template>=0:textproc/p5-Text-Template \ p5-XML-TreePP>=0:textproc/p5-XML-TreePP -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-File-Copy-Recursive>=0:devel/p5-File-Copy-Recursive \ p5-POE-Component-Client-Ping>=0:net/p5-POE-Component-Client-Ping \ p5-HTTP-Proxy>=0:www/p5-HTTP-Proxy \ diff --git a/net-mgmt/p5-GRNOC-Config/Makefile b/net-mgmt/p5-GRNOC-Config/Makefile index e1885856042..70db7f9631b 100644 --- a/net-mgmt/p5-GRNOC-Config/Makefile +++ b/net-mgmt/p5-GRNOC-Config/Makefile @@ -11,10 +11,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= bofh@FreeBSD.org COMMENT= Module to allow everyone to access config files -BUILD_DEPENDS= p5-XML-LibXML>=2:textproc/p5-XML-LibXML \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-XML-LibXML>=2:textproc/p5-XML-LibXML \ p5-XML-XPath>=1:textproc/p5-XML-XPath \ p5-XML-Simple>=2:textproc/p5-XML-Simple -RUN_DEPENDS:= ${BUILD_DEPENDS} USE_PERL5= configure USES= perl5 diff --git a/net-mgmt/p5-GRNOC-TL1/Makefile b/net-mgmt/p5-GRNOC-TL1/Makefile index 4f7c76d9d05..8d2b4a0137e 100644 --- a/net-mgmt/p5-GRNOC-TL1/Makefile +++ b/net-mgmt/p5-GRNOC-TL1/Makefile @@ -11,10 +11,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= bofh@FreeBSD.org COMMENT= Retrieve data from different models of TL1 devices -BUILD_DEPENDS= p5-Date-Calc>0:devel/p5-Date-Calc \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Date-Calc>0:devel/p5-Date-Calc \ p5-Net-SSH-Expect>0:net/p5-Net-SSH-Expect \ p5-Net-Telnet>0:net/p5-Net-Telnet -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/net-mgmt/p5-Monitoring-Plugin/Makefile b/net-mgmt/p5-Monitoring-Plugin/Makefile index d28299bd341..afeb37340c6 100644 --- a/net-mgmt/p5-Monitoring-Plugin/Makefile +++ b/net-mgmt/p5-Monitoring-Plugin/Makefile @@ -14,11 +14,11 @@ COMMENT= Modules to streamline writing Monitoring plugins LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Class-Accessor>=0:devel/p5-Class-Accessor \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Accessor>=0:devel/p5-Class-Accessor \ p5-Params-Validate>=0:devel/p5-Params-Validate \ p5-Math-Calc-Units>=0:math/p5-Math-Calc-Units \ p5-Config-Tiny>=0:devel/p5-Config-Tiny -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/net-mgmt/p5-Nagios-Object/Makefile b/net-mgmt/p5-Nagios-Object/Makefile index 06c4c60ee1e..53ac77fa4fe 100644 --- a/net-mgmt/p5-Nagios-Object/Makefile +++ b/net-mgmt/p5-Nagios-Object/Makefile @@ -11,11 +11,11 @@ PKGNAMEPREFIX= p5- MAINTAINER= skreuzer@FreeBSD.org COMMENT= Perl objects to represent Nagios configuration -BUILD_DEPENDS= p5-Test-Exception>=0.31:devel/p5-Test-Exception \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Test-Exception>=0.31:devel/p5-Test-Exception \ p5-Module-Build>=0.3607:devel/p5-Module-Build \ p5-List-Compare>=0.37:misc/p5-List-Compare \ p5-Test-NoWarnings>=1.01:devel/p5-Test-NoWarnings -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/net-mgmt/p5-Nagios-Plugin-Beanstalk/Makefile b/net-mgmt/p5-Nagios-Plugin-Beanstalk/Makefile index 9fd45a59f97..d8bf37b6e1e 100644 --- a/net-mgmt/p5-Nagios-Plugin-Beanstalk/Makefile +++ b/net-mgmt/p5-Nagios-Plugin-Beanstalk/Makefile @@ -12,10 +12,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= thompsa@FreeBSD.org COMMENT= Module to check beanstalkd via nagios -BUILD_DEPENDS= p5-Nagios-Plugin>=0:net-mgmt/p5-Nagios-Plugin \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Nagios-Plugin>=0:net-mgmt/p5-Nagios-Plugin \ p5-Beanstalk-Client>=0:net/p5-Beanstalk-Client -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/net-mgmt/p5-Nagios-Plugin-LDAP/Makefile b/net-mgmt/p5-Nagios-Plugin-LDAP/Makefile index 1c6b57f5235..4572ac3caf1 100644 --- a/net-mgmt/p5-Nagios-Plugin-LDAP/Makefile +++ b/net-mgmt/p5-Nagios-Plugin-LDAP/Makefile @@ -18,10 +18,10 @@ NO_ARCH= yes USES= perl5 USE_PERL5= configure -BUILD_DEPENDS= p5-perl-ldap>=0:net/p5-perl-ldap \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-perl-ldap>=0:net/p5-perl-ldap \ p5-Nagios-Plugin>=0:net-mgmt/p5-Nagios-Plugin \ p5-DateTime>=0:devel/p5-DateTime -RUN_DEPENDS:= ${BUILD_DEPENDS} post-patch: @${FIND} ${WRKSRC} -name "*.orig" -delete diff --git a/net-mgmt/p5-Nagios-Plugin/Makefile b/net-mgmt/p5-Nagios-Plugin/Makefile index a5e18322375..dd2dfdf2268 100644 --- a/net-mgmt/p5-Nagios-Plugin/Makefile +++ b/net-mgmt/p5-Nagios-Plugin/Makefile @@ -12,11 +12,11 @@ PKGNAMEPREFIX= p5- MAINTAINER= gjb@FreeBSD.org COMMENT= Modules to streamline writing Nagios plugins -BUILD_DEPENDS= p5-Class-Accessor>=0:devel/p5-Class-Accessor \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Accessor>=0:devel/p5-Class-Accessor \ p5-Params-Validate>=0:devel/p5-Params-Validate \ p5-Math-Calc-Units>=0:math/p5-Math-Calc-Units \ p5-Config-Tiny>=0:devel/p5-Config-Tiny -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/net-mgmt/p5-Nagios-Plugins-Memcached/Makefile b/net-mgmt/p5-Nagios-Plugins-Memcached/Makefile index 88ede00d4fb..c721be05fed 100644 --- a/net-mgmt/p5-Nagios-Plugins-Memcached/Makefile +++ b/net-mgmt/p5-Nagios-Plugins-Memcached/Makefile @@ -14,10 +14,10 @@ COMMENT= Module to check memcached via nagios USES= perl5 shebangfix USE_PERL5= configure -BUILD_DEPENDS= p5-Nagios-Plugin>=0:net-mgmt/p5-Nagios-Plugin \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Nagios-Plugin>=0:net-mgmt/p5-Nagios-Plugin \ p5-Cache-Memcached>=0:databases/p5-Cache-Memcached \ p5-Carp-Clan>=0:devel/p5-Carp-Clan -RUN_DEPENDS:= ${BUILD_DEPENDS} PORTDOCS= Changes README diff --git a/net-mgmt/p5-Net-ACL/Makefile b/net-mgmt/p5-Net-ACL/Makefile index f4e2007efdd..7ff71c345e4 100644 --- a/net-mgmt/p5-Net-ACL/Makefile +++ b/net-mgmt/p5-Net-ACL/Makefile @@ -14,10 +14,10 @@ COMMENT= Class representing a generic access-list/route-map LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Cisco-Reconfig>=0.05:net-mgmt/p5-Cisco-Reconfig \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Cisco-Reconfig>=0.05:net-mgmt/p5-Cisco-Reconfig \ p5-IO-String>=1.02:devel/p5-IO-String \ p5-Net-Netmask>=0:net-mgmt/p5-Net-Netmask -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Signature>=1.04:devel/p5-Test-Signature NO_ARCH= yes diff --git a/net-mgmt/p5-Net-Abuse-Utils-Spamhaus/Makefile b/net-mgmt/p5-Net-Abuse-Utils-Spamhaus/Makefile index 7600f3bdbd2..abb91ec93bb 100644 --- a/net-mgmt/p5-Net-Abuse-Utils-Spamhaus/Makefile +++ b/net-mgmt/p5-Net-Abuse-Utils-Spamhaus/Makefile @@ -12,8 +12,8 @@ COMMENT= Routines useful for checking data against the spamhaus blacklists LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Net-DNS>=0.72:dns/p5-Net-DNS -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Net-DNS>=0.72:dns/p5-Net-DNS USES= perl5 USE_PERL5= configure diff --git a/net-mgmt/p5-Net-Abuse-Utils/Makefile b/net-mgmt/p5-Net-Abuse-Utils/Makefile index 46b63aaced4..05c819b67c6 100644 --- a/net-mgmt/p5-Net-Abuse-Utils/Makefile +++ b/net-mgmt/p5-Net-Abuse-Utils/Makefile @@ -14,11 +14,11 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Email-Address-XS>=0:mail/p5-Email-Address-XS \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Email-Address-XS>=0:mail/p5-Email-Address-XS \ p5-Net-DNS>=0:dns/p5-Net-DNS \ p5-Net-IP>=0:net-mgmt/p5-Net-IP \ p5-Net-Whois-IP>=1.11:net/p5-Net-Whois-IP -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/net-mgmt/p5-Net-ILO/Makefile b/net-mgmt/p5-Net-ILO/Makefile index 7acc68d9fbe..016c14d9057 100644 --- a/net-mgmt/p5-Net-ILO/Makefile +++ b/net-mgmt/p5-Net-ILO/Makefile @@ -14,9 +14,9 @@ COMMENT= Interface to HP Integrated Lights-Out LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-IO-Socket-SSL>0:security/p5-IO-Socket-SSL \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-IO-Socket-SSL>0:security/p5-IO-Socket-SSL \ p5-XML-Simple>0:textproc/p5-XML-Simple -RUN_DEPENDS:= ${BUILD_DEPENDS} WRKSRC= ${WRKDIR}/${PORTNAME} diff --git a/net-mgmt/p5-Net-IPv6Addr/Makefile b/net-mgmt/p5-Net-IPv6Addr/Makefile index 87857fc8ade..0df95d6d5a9 100644 --- a/net-mgmt/p5-Net-IPv6Addr/Makefile +++ b/net-mgmt/p5-Net-IPv6Addr/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Net-IPv6Addr -PORTVERSION= 0.91 +PORTVERSION= 0.93 CATEGORIES= net-mgmt perl5 ipv6 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -13,9 +13,9 @@ COMMENT= Perl extension for manipulating IPv6 addresses LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Math-Base85>=0.2:math/p5-Math-Base85 \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Math-Base85>=0.2:math/p5-Math-Base85 \ p5-Net-IPv4Addr>=0.10:net-mgmt/p5-Net-IPv4Addr -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/net-mgmt/p5-Net-IPv6Addr/distinfo b/net-mgmt/p5-Net-IPv6Addr/distinfo index d983080304b..e9f0c875aab 100644 --- a/net-mgmt/p5-Net-IPv6Addr/distinfo +++ b/net-mgmt/p5-Net-IPv6Addr/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1507282020 -SHA256 (Net-IPv6Addr-0.91.tar.gz) = 84d86116b9a5c2a1b8dfe3f5a5dceb257b2e462c480ee261974a812e1cb521c0 -SIZE (Net-IPv6Addr-0.91.tar.gz) = 14002 +TIMESTAMP = 1538715202 +SHA256 (Net-IPv6Addr-0.93.tar.gz) = fe2d88017137e0e8db70842713ef91e690a74af13effe16b6540cea6ebc2199c +SIZE (Net-IPv6Addr-0.93.tar.gz) = 16059 diff --git a/net-mgmt/p5-Net-SNMP/Makefile b/net-mgmt/p5-Net-SNMP/Makefile index b7668bb3cbd..a110c180bf8 100644 --- a/net-mgmt/p5-Net-SNMP/Makefile +++ b/net-mgmt/p5-Net-SNMP/Makefile @@ -17,10 +17,10 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Crypt-DES>=0:security/p5-Crypt-DES \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Crypt-DES>=0:security/p5-Crypt-DES \ p5-Digest-SHA1>=0:security/p5-Digest-SHA1 \ p5-Digest-HMAC>=0:security/p5-Digest-HMAC -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/net-mgmt/p5-Net-SNMPTrapd/Makefile b/net-mgmt/p5-Net-SNMPTrapd/Makefile index bd84d1563e1..eb8c789556f 100644 --- a/net-mgmt/p5-Net-SNMPTrapd/Makefile +++ b/net-mgmt/p5-Net-SNMPTrapd/Makefile @@ -13,8 +13,8 @@ COMMENT= SNMP Trap Listener in Perl LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Convert-ASN1>=0.22:converters/p5-Convert-ASN1 -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Convert-ASN1>=0.22:converters/p5-Convert-ASN1 USES= perl5 USE_PERL5= configure diff --git a/net-mgmt/p5-NetApp/Makefile b/net-mgmt/p5-NetApp/Makefile index 689b3b9ba3c..6dd91fb036b 100644 --- a/net-mgmt/p5-NetApp/Makefile +++ b/net-mgmt/p5-NetApp/Makefile @@ -14,13 +14,13 @@ COMMENT= Perl interface to manage NetApp NAS devices LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Class-Std>=0:devel/p5-Class-Std \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Std>=0:devel/p5-Class-Std \ p5-Clone>=0:devel/p5-Clone \ p5-IPC-Cmd>=0:devel/p5-IPC-Cmd \ p5-Net-Telnet>=0:net/p5-Net-Telnet \ p5-Params-Validate>=0:devel/p5-Params-Validate \ p5-Regexp-Common>=0:textproc/p5-Regexp-Common -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Exception>=0:devel/p5-Test-Exception USES= perl5 diff --git a/net-mgmt/p5-POE-Component-SNMP/Makefile b/net-mgmt/p5-POE-Component-SNMP/Makefile index 049c0932bce..683f73130dd 100644 --- a/net-mgmt/p5-POE-Component-SNMP/Makefile +++ b/net-mgmt/p5-POE-Component-SNMP/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Event-driven SNMP interface -BUILD_DEPENDS= p5-POE>=0.31:devel/p5-POE \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-POE>=0.31:devel/p5-POE \ p5-Net-SNMP>=0:net-mgmt/p5-Net-SNMP -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/net-mgmt/p5-Tie-NetAddr-IP/Makefile b/net-mgmt/p5-Tie-NetAddr-IP/Makefile index 36d378897f6..0f9540a95dd 100644 --- a/net-mgmt/p5-Tie-NetAddr-IP/Makefile +++ b/net-mgmt/p5-Tie-NetAddr-IP/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Tie::NetAddr::IP - Implements a Hash where the key is a subnet -BUILD_DEPENDS= p5-NetAddr-IP>0:net-mgmt/p5-NetAddr-IP -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-NetAddr-IP>0:net-mgmt/p5-NetAddr-IP USES= perl5 USE_PERL5= configure diff --git a/net-mgmt/pdagent-integrations/Makefile b/net-mgmt/pdagent-integrations/Makefile index 65d68d43f12..8a6570eb503 100644 --- a/net-mgmt/pdagent-integrations/Makefile +++ b/net-mgmt/pdagent-integrations/Makefile @@ -6,7 +6,7 @@ PORTVERSION= 1.4 DISTVERSIONPREFIX=v CATEGORIES= net-mgmt python -MAINTAINER= feld@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= PagerDuty integrations for monitoring monitoring tools LICENSE= BSD3CLAUSE diff --git a/net-mgmt/py-ncclient/Makefile b/net-mgmt/py-ncclient/Makefile index e85ab66b6cb..8e025150dfb 100644 --- a/net-mgmt/py-ncclient/Makefile +++ b/net-mgmt/py-ncclient/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= ncclient -DISTVERSION= 0.6.2 +DISTVERSION= 0.6.3 CATEGORIES= net-mgmt python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/net-mgmt/py-ncclient/distinfo b/net-mgmt/py-ncclient/distinfo index 7025c00d292..a6b220abe48 100644 --- a/net-mgmt/py-ncclient/distinfo +++ b/net-mgmt/py-ncclient/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1534958756 -SHA256 (ncclient-0.6.2.tar.gz) = 6616828f9c5d318906dae22378a78342bbfa5983f1775c1af8bfecc779434c38 -SIZE (ncclient-0.6.2.tar.gz) = 85063 +TIMESTAMP = 1538043419 +SHA256 (ncclient-0.6.3.tar.gz) = 3ab58ee0d71069cb5b0e2f29a4e605d1d8417bd10af45b73ee3e817fe389fadc +SIZE (ncclient-0.6.3.tar.gz) = 88022 diff --git a/net-mgmt/py-pdagent/Makefile b/net-mgmt/py-pdagent/Makefile index f44803ff0c0..dda8f73aa10 100644 --- a/net-mgmt/py-pdagent/Makefile +++ b/net-mgmt/py-pdagent/Makefile @@ -8,7 +8,7 @@ PORTREVISION= 2 CATEGORIES= net-mgmt python PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -MAINTAINER= feld@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= PagerDuty Agent software LICENSE= BSD3CLAUSE diff --git a/net-mgmt/py-prometheus-client/Makefile b/net-mgmt/py-prometheus-client/Makefile index f81f128442e..ecbce98ba66 100644 --- a/net-mgmt/py-prometheus-client/Makefile +++ b/net-mgmt/py-prometheus-client/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= prometheus-client -PORTVERSION= 0.3.1 +PORTVERSION= 0.4.0 DISTVERSIONPREFIX= v CATEGORIES= net-mgmt python PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/net-mgmt/py-prometheus-client/distinfo b/net-mgmt/py-prometheus-client/distinfo index 79f772895c0..29ebbb98cef 100644 --- a/net-mgmt/py-prometheus-client/distinfo +++ b/net-mgmt/py-prometheus-client/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1533922079 -SHA256 (prometheus-client_python-v0.3.1_GH0.tar.gz) = e0c2c534ad2b5937b053da6eed357e8fe64c73e2e1222aa7c1b75c34e3c53fe7 -SIZE (prometheus-client_python-v0.3.1_GH0.tar.gz) = 43185 +TIMESTAMP = 1538654408 +SHA256 (prometheus-client_python-v0.4.0_GH0.tar.gz) = 5b32cae31ee66e4369944358e43840ff05f7ae6a36040a503940d0e8f2132bdf +SIZE (prometheus-client_python-v0.4.0_GH0.tar.gz) = 57033 diff --git a/net-mgmt/zabbix4-agent/Makefile b/net-mgmt/zabbix4-agent/Makefile new file mode 100644 index 00000000000..22e4c1ab076 --- /dev/null +++ b/net-mgmt/zabbix4-agent/Makefile @@ -0,0 +1,14 @@ +# Created by: Pakhom Golynga +# $FreeBSD$ + +PORTNAME= zabbix4 +CATEGORIES= net-mgmt +PKGNAMESUFFIX= -agent + +MASTERDIR= ${.CURDIR}/../zabbix4-server +PLIST= ${PKGDIR}/pkg-plist.agent + +OPTIONS_DEFINE= IPV6 +OPTIONS_DEFAULT= OPENSSL + +.include "${MASTERDIR}/Makefile" diff --git a/net-mgmt/zabbix4-frontend/Makefile b/net-mgmt/zabbix4-frontend/Makefile new file mode 100644 index 00000000000..c7a194cea80 --- /dev/null +++ b/net-mgmt/zabbix4-frontend/Makefile @@ -0,0 +1,37 @@ +# Created by: Pakhom Golynga +# $FreeBSD$ + +PORTNAME= zabbix4 +CATEGORIES= net-mgmt +PKGNAMESUFFIX= -frontend + +MASTERDIR= ${.CURDIR}/../zabbix4-server + +NO_BUILD= yes +NO_ARCH= yes +PATCHDIR= +PLIST= ${PKGDIR}/pkg-plist.frontend + +USE_PHP= bcmath ctype dom gd gettext json ldap mbstring pcre \ + session simplexml snmp sockets xml xmlreader xmlwriter +USES+= php:web + +OPTIONS_DEFINE= MYSQL MYSQLI PGSQL ORACLE +OPTIONS_DEFAULT= MYSQLI +MYSQLI_DESC= MySQLI backend + +MYSQL_VARS= IGNORE_WITH_PHP+="70 71 72" +MYSQL_USE= PHP=mysql + +MYSQLI_USE= PHP=mysqli + +PGSQL_USE= PHP=pgsql + +ORACLE_CONFIGURE_WITH= oracle + +do-install: + @${MKDIR} ${STAGEDIR}${WWWDIR} + (cd ${WRKSRC}/frontends/php && \ + ${COPYTREE_SHARE} . ${STAGEDIR}${WWWDIR}) + +.include "${MASTERDIR}/Makefile" diff --git a/net-mgmt/zabbix4-java/Makefile b/net-mgmt/zabbix4-java/Makefile new file mode 100644 index 00000000000..6e0624eb552 --- /dev/null +++ b/net-mgmt/zabbix4-java/Makefile @@ -0,0 +1,14 @@ +# $FreeBSD$ + +PORTNAME= zabbix4 +CATEGORIES= net-mgmt +PKGNAMESUFFIX= -java + +MASTERDIR= ${.CURDIR}/../zabbix4-server +PLIST= ${PKGDIR}/pkg-plist.java + +OPTIONS_DEFINE= IPV6 + +USE_JAVA= yes + +.include "${MASTERDIR}/Makefile" diff --git a/net-mgmt/zabbix4-proxy/Makefile b/net-mgmt/zabbix4-proxy/Makefile new file mode 100644 index 00000000000..6833d7ad9a5 --- /dev/null +++ b/net-mgmt/zabbix4-proxy/Makefile @@ -0,0 +1,12 @@ +# Created by: Pakhom Golynga +# $FreeBSD$ + +PORTNAME= zabbix4 +CATEGORIES= net-mgmt +PKGNAMESUFFIX= -proxy + +MASTERDIR= ${.CURDIR}/../zabbix4-server + +OPTIONS_SINGLE_DB= MYSQL PGSQL SQLITE ORACLE + +.include "${MASTERDIR}/Makefile" diff --git a/net-mgmt/zabbix4-server/Makefile b/net-mgmt/zabbix4-server/Makefile new file mode 100644 index 00000000000..095d659d1f9 --- /dev/null +++ b/net-mgmt/zabbix4-server/Makefile @@ -0,0 +1,211 @@ +# Created by: Pakhom Golynga +# $FreeBSD$ + +PORTNAME= zabbix4 +PORTVERSION= 4.0.0 +PORTREVISION?= 0 +CATEGORIES= net-mgmt +MASTER_SITES= SF/zabbix/ZABBIX%20Latest%20Stable/${PORTVERSION} +PKGNAMESUFFIX?= -server +DISTNAME= zabbix-${PORTVERSION} + +MAINTAINER= pg@pakhom.spb.ru +COMMENT= Enterprise-class open source distributed monitoring (${PKGNAMESUFFIX:S/^-//}) LTS + +LICENSE= GPLv2+ +LICENSE_FILE= ${WRKSRC}/COPYING + +LIB_DEPENDS= libpcre.so:devel/pcre + +CONFLICTS= zabbix[0-9][0-9]${PKGNAMESUFFIX} zabbix[0-35-9]${PKGNAMESUFFIX} + +ZABBIX_BUILD= ${PKGNAMESUFFIX:S/^-//} + +.if ${ZABBIX_BUILD} != "frontend" # frontend only needs the version/distribution settings +.if ${ZABBIX_BUILD} != "agent" +CONFIGURE_ARGS+= --with-libevent=${LOCALBASE} +LIB_DEPENDS+= libevent.so:devel/libevent +USE_RC_SUBR= zabbix_${ZABBIX_BUILD} +.else +USE_RC_SUBR= zabbix_${ZABBIX_BUILD}d +.endif + +USES= pkgconfig iconv + +USERS= zabbix +GROUPS= zabbix + +.if ${ZABBIX_BUILD} != "proxy" +PLIST_SUB= PROXY="@comment " +.else +PLIST_SUB= PROXY="" +.endif + +.if ${ZABBIX_BUILD} == "server" +PLIST_SUB+= SERVER="" +.else +PLIST_SUB+= SERVER="@comment " +.endif + +PLIST_SUB+= ZABBIX_BUILD=${ZABBIX_BUILD} PORTVERSION=${PORTVERSION} +SUB_LIST= ZABBIX_BUILD=${ZABBIX_BUILD} + +MAKE_ARGS+= ARCH=freebsd +GNU_CONFIGURE= yes +CONFIGURE_ARGS+= --enable-${ZABBIX_BUILD} \ + --sysconfdir=${ETCDIR} \ + --datadir=${ETCDIR} \ + --with-iconv=${ICONV_PREFIX} + +.if ${ZABBIX_BUILD} != "agent" && ${ZABBIX_BUILD} != "java" +LIB_DEPENDS+= libnetsnmp.so:net-mgmt/net-snmp + +CPPFLAGS+= -I${LOCALBASE}/include + +SUB_FILES= pkg-message + +CONFIGURE_ARGS+= --with-net-snmp + +OPTIONS_DEFINE= IPV6 FPING JABBER CURL LDAP IPMI SSH NMAP LIBXML2 UNIXODBC + +OPTIONS_DEFAULT= FPING CURL UNIXODBC MYSQL OPENSSL +OPTIONS_SUB= yes + +CURL_DESC= Support for web monitoring +FPING_DESC= Build/install fping for ping checks +IPMI_DESC= Support for IPMI checks +JABBER_DESC= Support for Jabber media type +LDAP_DESC= Support for LDAP server checks +NMAP_DESC= Build/install nmap for o/s detection +SSH_DESC= Support for SSH-based checks +UNIXODBC_DESC= Support for database checks via ODBC +LIBXML2_DESC= Support for libxml2 (required by monitoring VMware) + +OPTIONS_SINGLE= DB SSL +OPTIONS_SINGLE_DB?= MYSQL PGSQL ORACLE +OPTIONS_SINGLE_SSL= OPENSSL GNUTLS + +MYSQL_CONFIGURE_WITH= mysql +MYSQL_USES+= mysql + +PGSQL_CONFIGURE_WITH= postgresql +PGSQL_USES+= pgsql + +SQLITE_CONFIGURE_WITH= sqlite3 +SQLITE_USES+= sqlite:3 + +ORACLE_CONFIGURE_WITH= oracle + +CURL_CONFIGURE_WITH= libcurl +CURL_LIB_DEPENDS= libcurl.so:ftp/curl + +LDAP_CONFIGURE_WITH= ldap +LDAP_USE= OPENLDAP=yes + +IPMI_CONFIGURE_WITH= openipmi +IPMI_LIB_DEPENDS= libOpenIPMI.so:sysutils/openipmi + +JABBER_CONFIGURE_WITH= jabber +JABBER_LIB_DEPENDS= libiksemel.so:textproc/iksemel + +FPING_RUN_DEPENDS= fping:net/fping + +SSH_CONFIGURE_WITH= ssh2 +SSH_LIB_DEPENDS= libssh2.so:security/libssh2 + +UNIXODBC_CONFIGURE_WITH=unixodbc +UNIXODBC_LIB_DEPENDS= libodbc.so:databases/unixODBC +.elif ${ZABBIX_BUILD} == "agent" +OPTIONS_SINGLE= SSL +OPTIONS_SINGLE_SSL= OPENSSL GNUTLS +.endif # if ${ZABBIX_BUILD} != "agent" && ${ZABBIX_BUILD} != "java" + +IPV6_CONFIGURE_ENABLE= ipv6 + +NMAP_RUN_DEPENDS= nmap:security/nmap \ + sudo:security/sudo + +LIBXML2_CONFIGURE_WITH= libxml2 +LIBXML2_LIB_DEPENDS= libxml2.so:textproc/libxml2 + +OPENSSL_CONFIGURE_WITH= openssl +OPENSSL_USES= ssl +OPENSSL_VARS= BROKEN_SSL="libressl libressl-devel" \ + BROKEN_SSL_REASON="PSK is not provided by LibreSSL" + +GNUTLS_CONFIGURE_WITH= gnutls +GNUTLS_LIB_DEPENDS= libgnutls.so:security/gnutls + +.include + +post-patch: + @${GREP} -rl "/etc/zabbix" ${WRKSRC} \ + | ${XARGS} ${REINPLACE_CMD} -e 's#/usr/local/etc#${ETCDIR}#g' + + @${REINPLACE_CMD} -e 's#/usr/sbin/fping#${LOCALBASE}/sbin/fping#g' \ + ${WRKSRC}/conf/zabbix_*.conf \ + ${WRKSRC}/src/zabbix_proxy/proxy.c \ + ${WRKSRC}/src/zabbix_server/server.c + +.if ${ZABBIX_BUILD} == "server" + @${REINPLACE_CMD} -e 's#/tmp/zabbix_server.pid#/var/run/zabbix/zabbix_server.pid#g' \ + ${WRKSRC}/conf/zabbix_server.conf \ + ${WRKSRC}/src/zabbix_server/server.c +.endif + +.if ${ZABBIX_BUILD} == "proxy" + @${REINPLACE_CMD} -e 's#/tmp/zabbix_proxy.pid#/var/run/zabbix/zabbix_proxy.pid#g' \ + ${WRKSRC}/conf/zabbix_proxy.conf \ + ${WRKSRC}/src/zabbix_proxy/proxy.c +.endif + +.if ${ZABBIX_BUILD} == "agent" + @${REINPLACE_CMD} -e 's#/tmp/zabbix_agentd.pid#/var/run/zabbix/zabbix_agentd.pid#g' \ + ${WRKSRC}/conf/zabbix_agentd.conf \ + ${WRKSRC}/src/zabbix_agent/zabbix_agentd.c +.endif + +.if ${ZABBIX_BUILD} == "java" + @${REINPLACE_CMD} -e 's#/tmp/zabbix_java.pid#/var/run/zabbix/zabbix_java.pid#g' \ + ${WRKSRC}/src/zabbix_java/settings.sh +.endif + +.if ${ZABBIX_BUILD} != "agent" +. for d in mysql oracle postgresql sqlite3 + @${REINPLACE_CMD} \ + -e 's|/usr/bin/traceroute|/usr/sbin/traceroute|g' \ + -e 's|sudo /usr/bin/nmap|sudo ${LOCALBASE}/bin/nmap|g' \ + ${WRKSRC}/database/${d}/data.sql +. endfor +.endif + @${FIND} ${WRKSRC} -type f \( -name '*.bak' -or -name '*.orig' \) \ + -exec ${RM} {} + + +post-install: +.if ${ZABBIX_BUILD} == "java" + ${MV} ${STAGEDIR}${PREFIX}/sbin/zabbix_java/settings.sh \ + ${STAGEDIR}${PREFIX}/sbin/zabbix_java/settings.sh.sample + @${MKDIR} ${STAGEDIR}/var/run/zabbix +.endif + +.if ${ZABBIX_BUILD} != "agent" && ${ZABBIX_BUILD} != "java" + ${MKDIR} ${STAGEDIR}${DATADIR}/${ZABBIX_BUILD:Q}/database + @${RM} ${WRKSRC}/database/*/Makefile* + (cd ${WRKSRC}/database/ && \ + ${COPYTREE_SHARE} "ibm_db2 mysql oracle postgresql sqlite3" \ + ${STAGEDIR}${DATADIR}/${ZABBIX_BUILD:Q}/database/) + + ${MV} ${STAGEDIR}${ETCDIR}/zabbix_${ZABBIX_BUILD}.conf \ + ${STAGEDIR}${ETCDIR}/zabbix_${ZABBIX_BUILD}.conf.sample +.endif + +.if ${ZABBIX_BUILD} == "agent" + ${MV} ${STAGEDIR}${ETCDIR}/zabbix_${ZABBIX_BUILD}d.conf \ + ${STAGEDIR}${ETCDIR}/zabbix_${ZABBIX_BUILD}d.conf.sample +.endif + +.else # frontend +.include +.endif + +.include diff --git a/net-mgmt/zabbix4-server/distinfo b/net-mgmt/zabbix4-server/distinfo new file mode 100644 index 00000000000..768e2b89046 --- /dev/null +++ b/net-mgmt/zabbix4-server/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1538482288 +SHA256 (zabbix-4.0.0.tar.gz) = 5673e106156102aff8c6781a890da6cedfc975cf13d96d8749b4c7126f426bc7 +SIZE (zabbix-4.0.0.tar.gz) = 17984379 diff --git a/net-mgmt/zabbix4-server/files/pkg-message.in b/net-mgmt/zabbix4-server/files/pkg-message.in new file mode 100644 index 00000000000..806983eb50c --- /dev/null +++ b/net-mgmt/zabbix4-server/files/pkg-message.in @@ -0,0 +1,40 @@ +====================================================================== +For Zabbix server and proxy daemons, as well as Zabbix frontend, a database is +required. It is not needed to run Zabbix agent. + +% cd %%DATADIR%%/%%ZABBIX_BUILD%%/database + +And follow the instructions: +https://www.zabbix.com/documentation/4.0/manual/appendix/install/db_scripts + +Upgrade notes for 4.0.0: +https://www.zabbix.com/documentation/4.0/manual/installation/upgrade_notes_400 + +Upgrade procedure: +https://www.zabbix.com/documentation/4.0/manual/installation/upgrade/sources + +Please see https://www.zabbix.com/ for detailed information about Zabbix. + +Official Zabbix documentation: +https://www.zabbix.com/documentation/4.0/start + +For Zabbix frontend "Welcome" screen. Enter the user name Admin with password +zabbix to log in as a Zabbix superuser. + +For use NMAP please edit sudoers +====================================================================== +This is a Zabbix LTS release! + +Zabbix LTS releases are supported for Zabbix customers during five (5) years +i.e. 3 years of Full Support (general, critical and security issues) and 2 +additional years of Limited Support (critical and security issues only). +Zabbix LTS version release will result in change of the first version number. + +Stable release: Zabbix 4.0 +Release date: 1 October, 2018 +End of Full Support: 31 October, 2021 +End of Limited Support: 31 October, 2023 + +Zabbix Life Cycle & Release Policy: +https://www.zabbix.com/life_cycle_and_release_policy +====================================================================== diff --git a/net-mgmt/zabbix4-server/files/zabbix_agentd.in b/net-mgmt/zabbix4-server/files/zabbix_agentd.in new file mode 100644 index 00000000000..d3ac5102f81 --- /dev/null +++ b/net-mgmt/zabbix4-server/files/zabbix_agentd.in @@ -0,0 +1,64 @@ +#!/bin/sh + +# PROVIDE: zabbix_agentd +# REQUIRE: DAEMON +# KEYWORD: shutdown +# +# Add the following lines to /etc/rc.conf.local or /etc/rc.conf to +# enable zabbix_agentd: +# +# zabbix_agentd_enable (bool): Set to NO by default. Set it to YES to +# enable zabbix_agentd. +# zabbix_agentd_config (string): Set to the standard config file path by +# default. +# zabbix_agentd_pidfile (string): Location of the zabbix_agent pid file +# Default is /var/run/zabbix/zabbix_agentd.pid +# zabbix_agentd_paths (string): Set to standard path by default. Set a search +# if you have custom userparams that need binaries elsewhere. +# + +. /etc/rc.subr + +name="zabbix_agentd" +rcvar=zabbix_agentd_enable + +load_rc_config $name + +: ${zabbix_agentd_enable:=NO} +: ${zabbix_agentd_config:=%%ETCDIR%%/${name}.conf} +: ${zabbix_agentd_pidfile:=/var/run/zabbix/zabbix_agentd.pid} +: ${zabbix_agentd_paths:=$PATH} + +command="%%PREFIX%%/sbin/${name}" +required_files="${zabbix_agentd_config}" + +start_cmd=zabbix_agentd_cmd +start_precmd=zabbix_agentd_precmd +status_precmd=zabbix_agentd_precmd +stop_precmd=zabbix_agentd_precmd + +zabbix_agentd_precmd() +{ + if get_pidfile_from_conf PidFile ${zabbix_agentd_config}; then + pidfile="$_pidfile_from_conf" + else + pidfile=${zabbix_agentd_pidfile} + local rundir=${zabbix_agentd_pidfile%/*} + if [ ! -d $rundir ] ; then + install -d -m 0755 -o zabbix -g zabbix $rundir + fi + fi + + # This shouldn't be necessary with pidfile, but empirically it was the + # only way to reap the parent PID instead of all PIDs from + # check_process, which may leak SysV IPC objects and prevent restart + # and/or race condition on restart. + rc_pid=$(check_pidfile ${pidfile} ${command}) +} + +zabbix_agentd_cmd() +{ + PATH=$zabbix_agentd_paths $command -c $zabbix_agentd_config +} + +run_rc_command "$1" diff --git a/net-mgmt/zabbix4-server/files/zabbix_java.in b/net-mgmt/zabbix4-server/files/zabbix_java.in new file mode 100644 index 00000000000..afb4423f999 --- /dev/null +++ b/net-mgmt/zabbix4-server/files/zabbix_java.in @@ -0,0 +1,27 @@ +#!/bin/sh + +# PROVIDE: zabbix_java +# REQUIRE: NETWORKING SERVERS +# BEFORE: DAEMON +# KEYWORD: shutdown +# +# Options to configure zabbix_java via /etc/rc.conf: +# +# zabbix_java_enable (bool): +# Enable service on boot. +# Default: NO +# + +. /etc/rc.subr + +name="zabbix_java" +rcvar=zabbix_java_enable + +load_rc_config $name + +: ${zabbix_java_enable:=NO} + +start_cmd="/usr/bin/su -m zabbix -c %%PREFIX%%/sbin/zabbix_java/startup.sh" +stop_cmd="/usr/bin/su -m zabbix -c %%PREFIX%%/sbin/zabbix_java/shutdown.sh" + +run_rc_command "$1" diff --git a/net-mgmt/zabbix4-server/files/zabbix_proxy.in b/net-mgmt/zabbix4-server/files/zabbix_proxy.in new file mode 100644 index 00000000000..f202f382511 --- /dev/null +++ b/net-mgmt/zabbix4-server/files/zabbix_proxy.in @@ -0,0 +1,65 @@ +#!/bin/sh + +# PROVIDE: zabbix_proxy +# REQUIRE: DAEMON +%%PGSQL%%# REQUIRE: postgresql +%%MYSQL%%# REQUIRE: mysql-server +# KEYWORD: shutdown +# +# Add the following lines to /etc/rc.conf.local or /etc/rc.conf to +# enable zabbix_proxy: +# +# zabbix_proxy_enable (bool): Set to NO by default. Set it to YES to +# enable zabbix_proxy. +# zabbix_proxy_config (string): Set to the standard config file path by +# default. +# zabbix_proxy_pidfile (string): Location of the zabbix_proxy pid file +# Default is /var/run/zabbix/zabbix_proxy.pid +# zabbix_proxy_paths (string): Set to standard path by default. Set a search +# if you have custom userparams that need binaries elsewhere. +# + +. /etc/rc.subr + +name="zabbix_proxy" +rcvar=zabbix_proxy_enable + +load_rc_config $name + +: ${zabbix_proxy_enable:=NO} +: ${zabbix_proxy_config:=%%ETCDIR%%/${name}.conf} +: ${zabbix_proxy_pidfile:=/var/run/zabbix/zabbix_proxy.pid} + +command="%%PREFIX%%/sbin/${name}" +required_files="${zabbix_proxy_config}" + +start_cmd=zabbix_proxy_cmd +start_precmd=zabbix_proxy_precmd +status_precmd=zabbix_proxy_precmd +stop_precmd=zabbix_proxy_precmd + +zabbix_proxy_precmd() +{ + if get_pidfile_from_conf PidFile ${zabbix_proxy_config}; then + pidfile="$_pidfile_from_conf" + else + pidfile=${zabbix_proxy_pidfile} + local rundir=${zabbix_proxy_pidfile%/*} + if [ ! -d $rundir ] ; then + install -d -m 0755 -o zabbix -g zabbix $rundir + fi + fi + + # This shouldn't be necessary with pidfile, but empirically it was the + # only way to reap the parent PID instead of all PIDs from + # check_process, which may leak SysV IPC objects and prevent restart + # and/or race condition on restart. + rc_pid=$(check_pidfile ${pidfile} ${command}) +} + +zabbix_proxy_cmd() +{ + PATH=$zabbix_proxy_paths $command -c $zabbix_proxy_config +} + +run_rc_command "$1" diff --git a/net-mgmt/zabbix4-server/files/zabbix_server.in b/net-mgmt/zabbix4-server/files/zabbix_server.in new file mode 100644 index 00000000000..5454914ff3b --- /dev/null +++ b/net-mgmt/zabbix4-server/files/zabbix_server.in @@ -0,0 +1,66 @@ +#!/bin/sh + +# PROVIDE: zabbix_server +# REQUIRE: DAEMON +%%PGSQL%%# REQUIRE: postgresql +%%MYSQL%%# REQUIRE: mysql-server +# KEYWORD: shutdown +# +# Add the following lines to /etc/rc.conf.local or /etc/rc.conf to +# enable zabbix_server: +# +# zabbix_server_enable (bool): Set to NO by default. Set it to YES to +# enable zabbix_server. +# zabbix_server_config (string): Set to the standard config file path by +# default. +# zabbix_server_pidfile (string): Location of the zabbix_server pid file +# Default is /var/run/zabbix/zabbix_server.pid +# zabbix_server_paths (string): Set to standard path by default. Set a search +# if you have custom userparams that need binaries elsewhere. +# + +. /etc/rc.subr + +name="zabbix_server" +rcvar=zabbix_server_enable + +load_rc_config $name + +: ${zabbix_server_enable:=NO} +: ${zabbix_server_config:=%%ETCDIR%%/${name}.conf} +: ${zabbix_server_pidfile:=/var/run/zabbix/zabbix_server.pid} +: ${zabbix_server_paths:=$PATH} + +command="%%PREFIX%%/sbin/${name}" +required_files="${zabbix_server_config}" + +start_cmd=zabbix_server_cmd +start_precmd=zabbix_server_precmd +status_precmd=zabbix_server_precmd +stop_precmd=zabbix_server_precmd + +zabbix_server_precmd() +{ + if get_pidfile_from_conf PidFile ${zabbix_server_config}; then + pidfile="$_pidfile_from_conf" + else + pidfile=${zabbix_server_pidfile} + local rundir=${zabbix_server_pidfile%/*} + if [ ! -d $rundir ] ; then + install -d -m 0755 -o zabbix -g zabbix $rundir + fi + fi + + # This shouldn't be necessary with pidfile, but empirically it was the + # only way to reap the parent PID instead of all PIDs from + # check_process, which may leak SysV IPC objects and prevent restart + # and/or race condition on restart. + rc_pid=$(check_pidfile ${pidfile} ${command}) +} + +zabbix_server_cmd() +{ + PATH=$zabbix_server_paths $command -c $zabbix_server_config +} + +run_rc_command "$1" diff --git a/net-mgmt/zabbix4-server/pkg-descr b/net-mgmt/zabbix4-server/pkg-descr new file mode 100644 index 00000000000..28b4da564fb --- /dev/null +++ b/net-mgmt/zabbix4-server/pkg-descr @@ -0,0 +1,10 @@ +Zabbix is an enterprise-class open source distributed monitoring solution. + +Zabbix is software that monitors numerous parameters of a network and the +health and integrity of servers. Zabbix uses a flexible notification +mechanism that allows users to configure e-mail based alerts for virtually +any event. This allows a fast reaction to server problems. Zabbix offers +excellent reporting and data visualisation features based on the stored +data. This makes Zabbix ideal for capacity planning. + +WWW: https://www.zabbix.com/ diff --git a/net-mgmt/zabbix4-server/pkg-plist b/net-mgmt/zabbix4-server/pkg-plist new file mode 100644 index 00000000000..9444718a389 --- /dev/null +++ b/net-mgmt/zabbix4-server/pkg-plist @@ -0,0 +1,23 @@ +%%DATADIR%%/%%ZABBIX_BUILD%%/database/ibm_db2/data.sql +%%DATADIR%%/%%ZABBIX_BUILD%%/database/ibm_db2/images.sql +%%DATADIR%%/%%ZABBIX_BUILD%%/database/ibm_db2/schema.sql +%%DATADIR%%/%%ZABBIX_BUILD%%/database/mysql/data.sql +%%DATADIR%%/%%ZABBIX_BUILD%%/database/mysql/images.sql +%%DATADIR%%/%%ZABBIX_BUILD%%/database/mysql/schema.sql +%%DATADIR%%/%%ZABBIX_BUILD%%/database/oracle/data.sql +%%DATADIR%%/%%ZABBIX_BUILD%%/database/oracle/images.sql +%%DATADIR%%/%%ZABBIX_BUILD%%/database/oracle/schema.sql +%%DATADIR%%/%%ZABBIX_BUILD%%/database/postgresql/data.sql +%%DATADIR%%/%%ZABBIX_BUILD%%/database/postgresql/images.sql +%%DATADIR%%/%%ZABBIX_BUILD%%/database/postgresql/schema.sql +%%DATADIR%%/%%ZABBIX_BUILD%%/database/sqlite3/data.sql +%%DATADIR%%/%%ZABBIX_BUILD%%/database/sqlite3/images.sql +%%DATADIR%%/%%ZABBIX_BUILD%%/database/sqlite3/schema.sql +%%ETCDIR%%/zabbix_%%ZABBIX_BUILD%%.conf.sample +%%PROXY%%@dir %%ETCDIR%%/zabbix_proxy.conf.d +%%SERVER%%@dir %%ETCDIR%%/zabbix_server.conf.d +%%SERVER%%@dir %%ETCDIR%%/zabbix/alertscripts +man/man8/zabbix_%%ZABBIX_BUILD%%.8.gz +sbin/zabbix_%%ZABBIX_BUILD%% +@dir %%ETCDIR%%/zabbix/externalscripts +@dir lib/modules diff --git a/net-mgmt/zabbix4-server/pkg-plist.agent b/net-mgmt/zabbix4-server/pkg-plist.agent new file mode 100644 index 00000000000..ca02f1d8b4e --- /dev/null +++ b/net-mgmt/zabbix4-server/pkg-plist.agent @@ -0,0 +1,9 @@ +%%ETCDIR%%/zabbix_agentd.conf.sample +bin/zabbix_get +bin/zabbix_sender +man/man1/zabbix_get.1.gz +man/man1/zabbix_sender.1.gz +man/man8/zabbix_%%ZABBIX_BUILD%%d.8.gz +sbin/zabbix_agentd +@dir %%ETCDIR%%/zabbix_agentd.conf.d +@dir lib/modules diff --git a/net-mgmt/zabbix4-server/pkg-plist.frontend b/net-mgmt/zabbix4-server/pkg-plist.frontend new file mode 100644 index 00000000000..e5e848c92f9 --- /dev/null +++ b/net-mgmt/zabbix4-server/pkg-plist.frontend @@ -0,0 +1,935 @@ +%%WWWDIR%%/actionconf.php +%%WWWDIR%%/adm.gui.php +%%WWWDIR%%/adm.housekeeper.php +%%WWWDIR%%/adm.iconmapping.php +%%WWWDIR%%/adm.images.php +%%WWWDIR%%/adm.macros.php +%%WWWDIR%%/adm.other.php +%%WWWDIR%%/adm.regexps.php +%%WWWDIR%%/adm.triggerdisplayoptions.php +%%WWWDIR%%/adm.triggerseverities.php +%%WWWDIR%%/adm.valuemapping.php +%%WWWDIR%%/adm.workingtime.php +%%WWWDIR%%/api_jsonrpc.php +%%WWWDIR%%/app/.htaccess +%%WWWDIR%%/app/controllers/CControllerAcknowledgeCreate.php +%%WWWDIR%%/app/controllers/CControllerAcknowledgeEdit.php +%%WWWDIR%%/app/controllers/CControllerAuthenticationEdit.php +%%WWWDIR%%/app/controllers/CControllerAuthenticationUpdate.php +%%WWWDIR%%/app/controllers/CControllerDashboardAbstract.php +%%WWWDIR%%/app/controllers/CControllerDashboardDelete.php +%%WWWDIR%%/app/controllers/CControllerDashboardList.php +%%WWWDIR%%/app/controllers/CControllerDashboardPropertiesCheck.php +%%WWWDIR%%/app/controllers/CControllerDashboardPropertiesEdit.php +%%WWWDIR%%/app/controllers/CControllerDashboardShareEdit.php +%%WWWDIR%%/app/controllers/CControllerDashboardShareUpdate.php +%%WWWDIR%%/app/controllers/CControllerDashboardUpdate.php +%%WWWDIR%%/app/controllers/CControllerDashboardView.php +%%WWWDIR%%/app/controllers/CControllerDashboardWidgetCheck.php +%%WWWDIR%%/app/controllers/CControllerDashboardWidgetEdit.php +%%WWWDIR%%/app/controllers/CControllerDashboardWidgetRfRate.php +%%WWWDIR%%/app/controllers/CControllerDiscoveryView.php +%%WWWDIR%%/app/controllers/CControllerFavouriteCreate.php +%%WWWDIR%%/app/controllers/CControllerFavouriteDelete.php +%%WWWDIR%%/app/controllers/CControllerMapView.php +%%WWWDIR%%/app/controllers/CControllerMediatypeCreate.php +%%WWWDIR%%/app/controllers/CControllerMediatypeDelete.php +%%WWWDIR%%/app/controllers/CControllerMediatypeDisable.php +%%WWWDIR%%/app/controllers/CControllerMediatypeEdit.php +%%WWWDIR%%/app/controllers/CControllerMediatypeEnable.php +%%WWWDIR%%/app/controllers/CControllerMediatypeList.php +%%WWWDIR%%/app/controllers/CControllerMediatypeUpdate.php +%%WWWDIR%%/app/controllers/CControllerPopupGeneric.php +%%WWWDIR%%/app/controllers/CControllerPopupHttpStep.php +%%WWWDIR%%/app/controllers/CControllerPopupMedia.php +%%WWWDIR%%/app/controllers/CControllerPopupScriptExec.php +%%WWWDIR%%/app/controllers/CControllerPopupServices.php +%%WWWDIR%%/app/controllers/CControllerPopupTestTriggerExpr.php +%%WWWDIR%%/app/controllers/CControllerPopupTrigDescView.php +%%WWWDIR%%/app/controllers/CControllerPopupTriggerExpr.php +%%WWWDIR%%/app/controllers/CControllerPopupTriggerWizard.php +%%WWWDIR%%/app/controllers/CControllerProblemView.php +%%WWWDIR%%/app/controllers/CControllerProfileUpdate.php +%%WWWDIR%%/app/controllers/CControllerProxyCreate.php +%%WWWDIR%%/app/controllers/CControllerProxyDelete.php +%%WWWDIR%%/app/controllers/CControllerProxyEdit.php +%%WWWDIR%%/app/controllers/CControllerProxyHostDisable.php +%%WWWDIR%%/app/controllers/CControllerProxyHostEnable.php +%%WWWDIR%%/app/controllers/CControllerProxyList.php +%%WWWDIR%%/app/controllers/CControllerProxyUpdate.php +%%WWWDIR%%/app/controllers/CControllerReportServices.php +%%WWWDIR%%/app/controllers/CControllerReportStatus.php +%%WWWDIR%%/app/controllers/CControllerScriptCreate.php +%%WWWDIR%%/app/controllers/CControllerScriptDelete.php +%%WWWDIR%%/app/controllers/CControllerScriptEdit.php +%%WWWDIR%%/app/controllers/CControllerScriptList.php +%%WWWDIR%%/app/controllers/CControllerScriptUpdate.php +%%WWWDIR%%/app/controllers/CControllerSystemWarning.php +%%WWWDIR%%/app/controllers/CControllerTimeSelectorUpdate.php +%%WWWDIR%%/app/controllers/CControllerTrigDescUpdate.php +%%WWWDIR%%/app/controllers/CControllerWebView.php +%%WWWDIR%%/app/controllers/CControllerWidget.php +%%WWWDIR%%/app/controllers/CControllerWidgetActionLogView.php +%%WWWDIR%%/app/controllers/CControllerWidgetClockView.php +%%WWWDIR%%/app/controllers/CControllerWidgetDataOverView.php +%%WWWDIR%%/app/controllers/CControllerWidgetDiscoveryView.php +%%WWWDIR%%/app/controllers/CControllerWidgetFavGraphsView.php +%%WWWDIR%%/app/controllers/CControllerWidgetFavMapsView.php +%%WWWDIR%%/app/controllers/CControllerWidgetFavScreensView.php +%%WWWDIR%%/app/controllers/CControllerWidgetGraphView.php +%%WWWDIR%%/app/controllers/CControllerWidgetMapView.php +%%WWWDIR%%/app/controllers/CControllerWidgetNavTreeItemEdit.php +%%WWWDIR%%/app/controllers/CControllerWidgetNavTreeItemUpdate.php +%%WWWDIR%%/app/controllers/CControllerWidgetNavTreeView.php +%%WWWDIR%%/app/controllers/CControllerWidgetPlainTextView.php +%%WWWDIR%%/app/controllers/CControllerWidgetProblemHostsView.php +%%WWWDIR%%/app/controllers/CControllerWidgetProblemsBySvView.php +%%WWWDIR%%/app/controllers/CControllerWidgetProblemsView.php +%%WWWDIR%%/app/controllers/CControllerWidgetSvgGraphView.php +%%WWWDIR%%/app/controllers/CControllerWidgetSystemInfoView.php +%%WWWDIR%%/app/controllers/CControllerWidgetTrigOverView.php +%%WWWDIR%%/app/controllers/CControllerWidgetUrlView.php +%%WWWDIR%%/app/controllers/CControllerWidgetWebView.php +%%WWWDIR%%/app/views/administration.authentication.edit.js.php +%%WWWDIR%%/app/views/administration.authentication.edit.php +%%WWWDIR%%/app/views/administration.mediatype.edit.js.php +%%WWWDIR%%/app/views/administration.mediatype.edit.php +%%WWWDIR%%/app/views/administration.mediatype.list.php +%%WWWDIR%%/app/views/administration.proxy.edit.js.php +%%WWWDIR%%/app/views/administration.proxy.edit.php +%%WWWDIR%%/app/views/administration.proxy.list.php +%%WWWDIR%%/app/views/administration.script.edit.js.php +%%WWWDIR%%/app/views/administration.script.edit.php +%%WWWDIR%%/app/views/administration.script.list.php +%%WWWDIR%%/app/views/dashboard.properties.edit.php +%%WWWDIR%%/app/views/dashboard.sharing.edit.php +%%WWWDIR%%/app/views/layout.csv.php +%%WWWDIR%%/app/views/layout.htmlpage.footer.php +%%WWWDIR%%/app/views/layout.htmlpage.header.php +%%WWWDIR%%/app/views/layout.htmlpage.menu.php +%%WWWDIR%%/app/views/layout.htmlpage.php +%%WWWDIR%%/app/views/layout.javascript.php +%%WWWDIR%%/app/views/layout.json.php +%%WWWDIR%%/app/views/layout.warning.php +%%WWWDIR%%/app/views/layout.widget.php +%%WWWDIR%%/app/views/monitoring.acknowledge.edit.js.php +%%WWWDIR%%/app/views/monitoring.acknowledge.edit.php +%%WWWDIR%%/app/views/monitoring.dashboard.breadcrumbs.php +%%WWWDIR%%/app/views/monitoring.dashboard.list.php +%%WWWDIR%%/app/views/monitoring.dashboard.view.js.php +%%WWWDIR%%/app/views/monitoring.dashboard.view.php +%%WWWDIR%%/app/views/monitoring.dashboard.widget.edit.php +%%WWWDIR%%/app/views/monitoring.discovery.view.php +%%WWWDIR%%/app/views/monitoring.map.view.php +%%WWWDIR%%/app/views/monitoring.problem.view.js.php +%%WWWDIR%%/app/views/monitoring.problem.view.php +%%WWWDIR%%/app/views/monitoring.web.view.php +%%WWWDIR%%/app/views/monitoring.widget.actionlog.view.php +%%WWWDIR%%/app/views/monitoring.widget.clock.view.php +%%WWWDIR%%/app/views/monitoring.widget.dataover.view.php +%%WWWDIR%%/app/views/monitoring.widget.discovery.view.php +%%WWWDIR%%/app/views/monitoring.widget.favgraphs.view.php +%%WWWDIR%%/app/views/monitoring.widget.favmaps.view.php +%%WWWDIR%%/app/views/monitoring.widget.favscreens.view.php +%%WWWDIR%%/app/views/monitoring.widget.graph.view.php +%%WWWDIR%%/app/views/monitoring.widget.map.view.php +%%WWWDIR%%/app/views/monitoring.widget.navtree.view.php +%%WWWDIR%%/app/views/monitoring.widget.plaintext.view.php +%%WWWDIR%%/app/views/monitoring.widget.problemhosts.view.php +%%WWWDIR%%/app/views/monitoring.widget.problems.view.php +%%WWWDIR%%/app/views/monitoring.widget.problemsbysv.view.php +%%WWWDIR%%/app/views/monitoring.widget.svggraph.view.php +%%WWWDIR%%/app/views/monitoring.widget.systeminfo.view.php +%%WWWDIR%%/app/views/monitoring.widget.trigover.view.php +%%WWWDIR%%/app/views/monitoring.widget.url.view.php +%%WWWDIR%%/app/views/monitoring.widget.web.view.php +%%WWWDIR%%/app/views/popup.generic.php +%%WWWDIR%%/app/views/popup.httpstep.js.php +%%WWWDIR%%/app/views/popup.httpstep.php +%%WWWDIR%%/app/views/popup.media.js.php +%%WWWDIR%%/app/views/popup.media.php +%%WWWDIR%%/app/views/popup.scriptexec.php +%%WWWDIR%%/app/views/popup.services.php +%%WWWDIR%%/app/views/popup.testtriggerexpr.php +%%WWWDIR%%/app/views/popup.trigdesc.view.php +%%WWWDIR%%/app/views/popup.triggerexpr.php +%%WWWDIR%%/app/views/popup.triggerwizard.js.php +%%WWWDIR%%/app/views/popup.triggerwizard.php +%%WWWDIR%%/app/views/report.services.php +%%WWWDIR%%/app/views/report.status.php +%%WWWDIR%%/app/views/system.warning.php +%%WWWDIR%%/applications.php +%%WWWDIR%%/audio/alarm_average.wav +%%WWWDIR%%/audio/alarm_disaster.wav +%%WWWDIR%%/audio/alarm_high.wav +%%WWWDIR%%/audio/alarm_information.wav +%%WWWDIR%%/audio/alarm_ok.wav +%%WWWDIR%%/audio/alarm_warning.wav +%%WWWDIR%%/audio/no_sound.wav +%%WWWDIR%%/auditacts.php +%%WWWDIR%%/auditlogs.php +%%WWWDIR%%/browserwarning.php +%%WWWDIR%%/chart.php +%%WWWDIR%%/chart2.php +%%WWWDIR%%/chart3.php +%%WWWDIR%%/chart4.php +%%WWWDIR%%/chart5.php +%%WWWDIR%%/chart6.php +%%WWWDIR%%/chart7.php +%%WWWDIR%%/charts.php +%%WWWDIR%%/conf.import.php +%%WWWDIR%%/conf/.htaccess +%%WWWDIR%%/conf/maintenance.inc.php +%%WWWDIR%%/conf/zabbix.conf.php.example +%%WWWDIR%%/correlation.php +%%WWWDIR%%/disc_prototypes.php +%%WWWDIR%%/discoveryconf.php +%%WWWDIR%%/favicon.ico +%%WWWDIR%%/fonts/DejaVuSans.ttf +%%WWWDIR%%/graphs.php +%%WWWDIR%%/history.php +%%WWWDIR%%/host_discovery.php +%%WWWDIR%%/host_prototypes.php +%%WWWDIR%%/host_screen.php +%%WWWDIR%%/hostgroups.php +%%WWWDIR%%/hostinventories.php +%%WWWDIR%%/hostinventoriesoverview.php +%%WWWDIR%%/hosts.php +%%WWWDIR%%/httpconf.php +%%WWWDIR%%/httpdetails.php +%%WWWDIR%%/image.php +%%WWWDIR%%/images/general/arrow_down.png +%%WWWDIR%%/images/general/arrow_up.png +%%WWWDIR%%/images/general/no_icon.png +%%WWWDIR%%/images/general/tr_space.gif +%%WWWDIR%%/images/general/tr_top_bottom.gif +%%WWWDIR%%/images/general/tr_top_right.gif +%%WWWDIR%%/images/general/tr_top_right_bottom.gif +%%WWWDIR%%/images/general/tree/zero.gif +%%WWWDIR%%/img/apple-touch-icon-120x120-precomposed.png +%%WWWDIR%%/img/apple-touch-icon-152x152-precomposed.png +%%WWWDIR%%/img/apple-touch-icon-180x180-precomposed.png +%%WWWDIR%%/img/apple-touch-icon-76x76-precomposed.png +%%WWWDIR%%/img/browser-sprite.png +%%WWWDIR%%/img/icon-sprite.svg +%%WWWDIR%%/img/ms-tile-144x144.png +%%WWWDIR%%/img/touch-icon-192x192.png +%%WWWDIR%%/imgstore.php +%%WWWDIR%%/include/.htaccess +%%WWWDIR%%/include/actions.inc.php +%%WWWDIR%%/include/audit.inc.php +%%WWWDIR%%/include/blocks.inc.php +%%WWWDIR%%/include/classes/api/API.php +%%WWWDIR%%/include/classes/api/APIException.php +%%WWWDIR%%/include/classes/api/CApiClientResponse.php +%%WWWDIR%%/include/classes/api/CApiService.php +%%WWWDIR%%/include/classes/api/CApiServiceFactory.php +%%WWWDIR%%/include/classes/api/CAudit.php +%%WWWDIR%%/include/classes/api/CRelationMap.php +%%WWWDIR%%/include/classes/api/clients/CApiClient.php +%%WWWDIR%%/include/classes/api/clients/CLocalApiClient.php +%%WWWDIR%%/include/classes/api/managers/CApplicationManager.php +%%WWWDIR%%/include/classes/api/managers/CHistoryManager.php +%%WWWDIR%%/include/classes/api/managers/CHttpTestManager.php +%%WWWDIR%%/include/classes/api/services/CAPIInfo.php +%%WWWDIR%%/include/classes/api/services/CAction.php +%%WWWDIR%%/include/classes/api/services/CAlert.php +%%WWWDIR%%/include/classes/api/services/CApplication.php +%%WWWDIR%%/include/classes/api/services/CConfiguration.php +%%WWWDIR%%/include/classes/api/services/CCorrelation.php +%%WWWDIR%%/include/classes/api/services/CDCheck.php +%%WWWDIR%%/include/classes/api/services/CDHost.php +%%WWWDIR%%/include/classes/api/services/CDRule.php +%%WWWDIR%%/include/classes/api/services/CDService.php +%%WWWDIR%%/include/classes/api/services/CDashboard.php +%%WWWDIR%%/include/classes/api/services/CDiscoveryRule.php +%%WWWDIR%%/include/classes/api/services/CEvent.php +%%WWWDIR%%/include/classes/api/services/CGraph.php +%%WWWDIR%%/include/classes/api/services/CGraphGeneral.php +%%WWWDIR%%/include/classes/api/services/CGraphItem.php +%%WWWDIR%%/include/classes/api/services/CGraphPrototype.php +%%WWWDIR%%/include/classes/api/services/CHistory.php +%%WWWDIR%%/include/classes/api/services/CHost.php +%%WWWDIR%%/include/classes/api/services/CHostBase.php +%%WWWDIR%%/include/classes/api/services/CHostGeneral.php +%%WWWDIR%%/include/classes/api/services/CHostGroup.php +%%WWWDIR%%/include/classes/api/services/CHostInterface.php +%%WWWDIR%%/include/classes/api/services/CHostPrototype.php +%%WWWDIR%%/include/classes/api/services/CHttpTest.php +%%WWWDIR%%/include/classes/api/services/CIconMap.php +%%WWWDIR%%/include/classes/api/services/CImage.php +%%WWWDIR%%/include/classes/api/services/CItem.php +%%WWWDIR%%/include/classes/api/services/CItemGeneral.php +%%WWWDIR%%/include/classes/api/services/CItemPrototype.php +%%WWWDIR%%/include/classes/api/services/CMaintenance.php +%%WWWDIR%%/include/classes/api/services/CMap.php +%%WWWDIR%%/include/classes/api/services/CMapElement.php +%%WWWDIR%%/include/classes/api/services/CMediatype.php +%%WWWDIR%%/include/classes/api/services/CProblem.php +%%WWWDIR%%/include/classes/api/services/CProxy.php +%%WWWDIR%%/include/classes/api/services/CScreen.php +%%WWWDIR%%/include/classes/api/services/CScreenItem.php +%%WWWDIR%%/include/classes/api/services/CScript.php +%%WWWDIR%%/include/classes/api/services/CService.php +%%WWWDIR%%/include/classes/api/services/CTask.php +%%WWWDIR%%/include/classes/api/services/CTemplate.php +%%WWWDIR%%/include/classes/api/services/CTemplateScreen.php +%%WWWDIR%%/include/classes/api/services/CTemplateScreenItem.php +%%WWWDIR%%/include/classes/api/services/CTrend.php +%%WWWDIR%%/include/classes/api/services/CTrigger.php +%%WWWDIR%%/include/classes/api/services/CTriggerGeneral.php +%%WWWDIR%%/include/classes/api/services/CTriggerPrototype.php +%%WWWDIR%%/include/classes/api/services/CUser.php +%%WWWDIR%%/include/classes/api/services/CUserGroup.php +%%WWWDIR%%/include/classes/api/services/CUserMacro.php +%%WWWDIR%%/include/classes/api/services/CValueMap.php +%%WWWDIR%%/include/classes/api/wrappers/CApiWrapper.php +%%WWWDIR%%/include/classes/api/wrappers/CFrontendApiWrapper.php +%%WWWDIR%%/include/classes/core/CAjaxResponse.php +%%WWWDIR%%/include/classes/core/CAutoloader.php +%%WWWDIR%%/include/classes/core/CConfigFile.php +%%WWWDIR%%/include/classes/core/CHttpRequest.php +%%WWWDIR%%/include/classes/core/CJsonRpc.php +%%WWWDIR%%/include/classes/core/CRegistryFactory.php +%%WWWDIR%%/include/classes/core/CSession.php +%%WWWDIR%%/include/classes/core/ConfigFileException.php +%%WWWDIR%%/include/classes/core/Manager.php +%%WWWDIR%%/include/classes/core/Z.php +%%WWWDIR%%/include/classes/core/ZBase.php +%%WWWDIR%%/include/classes/db/DB.php +%%WWWDIR%%/include/classes/db/DBException.php +%%WWWDIR%%/include/classes/db/Db2DbBackend.php +%%WWWDIR%%/include/classes/db/DbBackend.php +%%WWWDIR%%/include/classes/db/MysqlDbBackend.php +%%WWWDIR%%/include/classes/db/OracleDbBackend.php +%%WWWDIR%%/include/classes/db/PostgresqlDbBackend.php +%%WWWDIR%%/include/classes/debug/CProfiler.php +%%WWWDIR%%/include/classes/export/CConfigurationExport.php +%%WWWDIR%%/include/classes/export/CConfigurationExportBuilder.php +%%WWWDIR%%/include/classes/export/writers/CExportWriter.php +%%WWWDIR%%/include/classes/export/writers/CExportWriterFactory.php +%%WWWDIR%%/include/classes/export/writers/CJsonExportWriter.php +%%WWWDIR%%/include/classes/export/writers/CXmlExportWriter.php +%%WWWDIR%%/include/classes/graph/CSvgGraph.php +%%WWWDIR%%/include/classes/graphdraw/CGraphDraw.php +%%WWWDIR%%/include/classes/graphdraw/CLineGraphDraw.php +%%WWWDIR%%/include/classes/graphdraw/CPieGraphDraw.php +%%WWWDIR%%/include/classes/helpers/CArrayHelper.php +%%WWWDIR%%/include/classes/helpers/CBrandHelper.php +%%WWWDIR%%/include/classes/helpers/CConditionHelper.php +%%WWWDIR%%/include/classes/helpers/CElasticsearchHelper.php +%%WWWDIR%%/include/classes/helpers/CHtml.php +%%WWWDIR%%/include/classes/helpers/CJs.php +%%WWWDIR%%/include/classes/helpers/CMapHelper.php +%%WWWDIR%%/include/classes/helpers/CMenuPopupHelper.php +%%WWWDIR%%/include/classes/helpers/CSvgGraphHelper.php +%%WWWDIR%%/include/classes/helpers/CUploadFile.php +%%WWWDIR%%/include/classes/helpers/CViewHelper.php +%%WWWDIR%%/include/classes/html/CActionButtonList.php +%%WWWDIR%%/include/classes/html/CArea.php +%%WWWDIR%%/include/classes/html/CAreaMap.php +%%WWWDIR%%/include/classes/html/CButton.php +%%WWWDIR%%/include/classes/html/CButtonCancel.php +%%WWWDIR%%/include/classes/html/CButtonDelete.php +%%WWWDIR%%/include/classes/html/CButtonQMessage.php +%%WWWDIR%%/include/classes/html/CCheckBox.php +%%WWWDIR%%/include/classes/html/CClock.php +%%WWWDIR%%/include/classes/html/CCol.php +%%WWWDIR%%/include/classes/html/CColHeader.php +%%WWWDIR%%/include/classes/html/CCollapsibleUiWidget.php +%%WWWDIR%%/include/classes/html/CColor.php +%%WWWDIR%%/include/classes/html/CComboBox.php +%%WWWDIR%%/include/classes/html/CComboItem.php +%%WWWDIR%%/include/classes/html/CDashboardWidgetMap.php +%%WWWDIR%%/include/classes/html/CDateSelector.php +%%WWWDIR%%/include/classes/html/CDiv.php +%%WWWDIR%%/include/classes/html/CFile.php +%%WWWDIR%%/include/classes/html/CFilter.php +%%WWWDIR%%/include/classes/html/CForm.php +%%WWWDIR%%/include/classes/html/CFormList.php +%%WWWDIR%%/include/classes/html/CHorList.php +%%WWWDIR%%/include/classes/html/CIFrame.php +%%WWWDIR%%/include/classes/html/CImageTextTable.php +%%WWWDIR%%/include/classes/html/CImg.php +%%WWWDIR%%/include/classes/html/CInput.php +%%WWWDIR%%/include/classes/html/CJsScript.php +%%WWWDIR%%/include/classes/html/CLabel.php +%%WWWDIR%%/include/classes/html/CLink.php +%%WWWDIR%%/include/classes/html/CLinkAction.php +%%WWWDIR%%/include/classes/html/CList.php +%%WWWDIR%%/include/classes/html/CListBox.php +%%WWWDIR%%/include/classes/html/CListItem.php +%%WWWDIR%%/include/classes/html/CMultiSelect.php +%%WWWDIR%%/include/classes/html/CNavigationTree.php +%%WWWDIR%%/include/classes/html/CNumericBox.php +%%WWWDIR%%/include/classes/html/CObject.php +%%WWWDIR%%/include/classes/html/CParam.php +%%WWWDIR%%/include/classes/html/CPassBox.php +%%WWWDIR%%/include/classes/html/CPre.php +%%WWWDIR%%/include/classes/html/CRadioButtonList.php +%%WWWDIR%%/include/classes/html/CRangeControl.php +%%WWWDIR%%/include/classes/html/CRedirectButton.php +%%WWWDIR%%/include/classes/html/CRow.php +%%WWWDIR%%/include/classes/html/CRowHeader.php +%%WWWDIR%%/include/classes/html/CSeverity.php +%%WWWDIR%%/include/classes/html/CSimpleButton.php +%%WWWDIR%%/include/classes/html/CSpan.php +%%WWWDIR%%/include/classes/html/CSubmit.php +%%WWWDIR%%/include/classes/html/CSubmitButton.php +%%WWWDIR%%/include/classes/html/CSup.php +%%WWWDIR%%/include/classes/html/CTabView.php +%%WWWDIR%%/include/classes/html/CTable.php +%%WWWDIR%%/include/classes/html/CTableInfo.php +%%WWWDIR%%/include/classes/html/CTag.php +%%WWWDIR%%/include/classes/html/CTextArea.php +%%WWWDIR%%/include/classes/html/CTextBox.php +%%WWWDIR%%/include/classes/html/CTriggersInfo.php +%%WWWDIR%%/include/classes/html/CUiWidget.php +%%WWWDIR%%/include/classes/html/CVar.php +%%WWWDIR%%/include/classes/html/CVisibilityBox.php +%%WWWDIR%%/include/classes/html/CWarning.php +%%WWWDIR%%/include/classes/html/interfaces/CButtonInterface.php +%%WWWDIR%%/include/classes/html/pageheader/CPageHeader.php +%%WWWDIR%%/include/classes/html/svg/CSvg.php +%%WWWDIR%%/include/classes/html/svg/CSvgCircle.php +%%WWWDIR%%/include/classes/html/svg/CSvgGraphAnnotation.php +%%WWWDIR%%/include/classes/html/svg/CSvgGraphArea.php +%%WWWDIR%%/include/classes/html/svg/CSvgGraphAxis.php +%%WWWDIR%%/include/classes/html/svg/CSvgGraphGrid.php +%%WWWDIR%%/include/classes/html/svg/CSvgGraphLegend.php +%%WWWDIR%%/include/classes/html/svg/CSvgGraphLine.php +%%WWWDIR%%/include/classes/html/svg/CSvgGraphPoints.php +%%WWWDIR%%/include/classes/html/svg/CSvgGroup.php +%%WWWDIR%%/include/classes/html/svg/CSvgLine.php +%%WWWDIR%%/include/classes/html/svg/CSvgPath.php +%%WWWDIR%%/include/classes/html/svg/CSvgPolygon.php +%%WWWDIR%%/include/classes/html/svg/CSvgRect.php +%%WWWDIR%%/include/classes/html/svg/CSvgTag.php +%%WWWDIR%%/include/classes/html/svg/CSvgText.php +%%WWWDIR%%/include/classes/html/widget/CWidget.php +%%WWWDIR%%/include/classes/import/CConfigurationImport.php +%%WWWDIR%%/include/classes/import/CImportDataAdapter.php +%%WWWDIR%%/include/classes/import/CImportReferencer.php +%%WWWDIR%%/include/classes/import/CImportedObjectContainer.php +%%WWWDIR%%/include/classes/import/converters/C10ImportConverter.php +%%WWWDIR%%/include/classes/import/converters/C10ItemKeyConverter.php +%%WWWDIR%%/include/classes/import/converters/C10TriggerConverter.php +%%WWWDIR%%/include/classes/import/converters/C20ImportConverter.php +%%WWWDIR%%/include/classes/import/converters/C20ItemKeyConverter.php +%%WWWDIR%%/include/classes/import/converters/C20TriggerConverter.php +%%WWWDIR%%/include/classes/import/converters/C30ImportConverter.php +%%WWWDIR%%/include/classes/import/converters/C32ImportConverter.php +%%WWWDIR%%/include/classes/import/converters/C34ImportConverter.php +%%WWWDIR%%/include/classes/import/converters/CConverter.php +%%WWWDIR%%/include/classes/import/converters/CConverterChain.php +%%WWWDIR%%/include/classes/import/converters/CImportConverterFactory.php +%%WWWDIR%%/include/classes/import/importers/CAbstractScreenImporter.php +%%WWWDIR%%/include/classes/import/importers/CHostImporter.php +%%WWWDIR%%/include/classes/import/importers/CImporter.php +%%WWWDIR%%/include/classes/import/importers/CMapImporter.php +%%WWWDIR%%/include/classes/import/importers/CScreenImporter.php +%%WWWDIR%%/include/classes/import/importers/CTemplateImporter.php +%%WWWDIR%%/include/classes/import/importers/CTemplateScreenImporter.php +%%WWWDIR%%/include/classes/import/readers/CImportReader.php +%%WWWDIR%%/include/classes/import/readers/CImportReaderFactory.php +%%WWWDIR%%/include/classes/import/readers/CJsonImportReader.php +%%WWWDIR%%/include/classes/import/readers/CXmlImportReader.php +%%WWWDIR%%/include/classes/import/validators/C10XmlValidator.php +%%WWWDIR%%/include/classes/import/validators/C20XmlValidator.php +%%WWWDIR%%/include/classes/import/validators/C30XmlValidator.php +%%WWWDIR%%/include/classes/import/validators/C32XmlValidator.php +%%WWWDIR%%/include/classes/import/validators/C34XmlValidator.php +%%WWWDIR%%/include/classes/import/validators/C40XmlValidator.php +%%WWWDIR%%/include/classes/import/validators/CXmlValidator.php +%%WWWDIR%%/include/classes/import/validators/CXmlValidatorGeneral.php +%%WWWDIR%%/include/classes/items/CHelpItems.php +%%WWWDIR%%/include/classes/json/CJson.php +%%WWWDIR%%/include/classes/ldap/CLdap.php +%%WWWDIR%%/include/classes/macros/CMacrosResolver.php +%%WWWDIR%%/include/classes/macros/CMacrosResolverGeneral.php +%%WWWDIR%%/include/classes/macros/CMacrosResolverHelper.php +%%WWWDIR%%/include/classes/mvc/CController.php +%%WWWDIR%%/include/classes/mvc/CControllerResponse.php +%%WWWDIR%%/include/classes/mvc/CControllerResponseData.php +%%WWWDIR%%/include/classes/mvc/CControllerResponseFatal.php +%%WWWDIR%%/include/classes/mvc/CControllerResponseRedirect.php +%%WWWDIR%%/include/classes/mvc/CRouter.php +%%WWWDIR%%/include/classes/mvc/CView.php +%%WWWDIR%%/include/classes/pagefilter/CPageFilter.php +%%WWWDIR%%/include/classes/parsers/CADNameAttributeParser.php +%%WWWDIR%%/include/classes/parsers/CAbsoluteTimeParser.php +%%WWWDIR%%/include/classes/parsers/CConditionFormula.php +%%WWWDIR%%/include/classes/parsers/CDnsParser.php +%%WWWDIR%%/include/classes/parsers/CFlexibleIntervalParser.php +%%WWWDIR%%/include/classes/parsers/CFunctionIdParser.php +%%WWWDIR%%/include/classes/parsers/CFunctionMacroParser.php +%%WWWDIR%%/include/classes/parsers/CFunctionParser.php +%%WWWDIR%%/include/classes/parsers/CHostGroupNameParser.php +%%WWWDIR%%/include/classes/parsers/CHostNameParser.php +%%WWWDIR%%/include/classes/parsers/CIPParser.php +%%WWWDIR%%/include/classes/parsers/CIPRangeParser.php +%%WWWDIR%%/include/classes/parsers/CIPv4Parser.php +%%WWWDIR%%/include/classes/parsers/CIPv6Parser.php +%%WWWDIR%%/include/classes/parsers/CItemKey.php +%%WWWDIR%%/include/classes/parsers/CLLDMacroFunctionParser.php +%%WWWDIR%%/include/classes/parsers/CLLDMacroParser.php +%%WWWDIR%%/include/classes/parsers/CMacroFunctionParser.php +%%WWWDIR%%/include/classes/parsers/CMacroParser.php +%%WWWDIR%%/include/classes/parsers/CParser.php +%%WWWDIR%%/include/classes/parsers/CRangeParser.php +%%WWWDIR%%/include/classes/parsers/CRangeTimeParser.php +%%WWWDIR%%/include/classes/parsers/CRangesParser.php +%%WWWDIR%%/include/classes/parsers/CReferenceParser.php +%%WWWDIR%%/include/classes/parsers/CRelativeTimeParser.php +%%WWWDIR%%/include/classes/parsers/CReplacementParser.php +%%WWWDIR%%/include/classes/parsers/CSchedulingIntervalParser.php +%%WWWDIR%%/include/classes/parsers/CSetParser.php +%%WWWDIR%%/include/classes/parsers/CSimpleIntervalParser.php +%%WWWDIR%%/include/classes/parsers/CTimePeriodParser.php +%%WWWDIR%%/include/classes/parsers/CTimePeriodsParser.php +%%WWWDIR%%/include/classes/parsers/CTriggerExpression.php +%%WWWDIR%%/include/classes/parsers/CUpdateIntervalParser.php +%%WWWDIR%%/include/classes/parsers/CUserMacroParser.php +%%WWWDIR%%/include/classes/parsers/CValidationRule.php +%%WWWDIR%%/include/classes/parsers/results/CParserResult.php +%%WWWDIR%%/include/classes/parsers/results/CTriggerExpressionParserResult.php +%%WWWDIR%%/include/classes/regexp/CGlobalRegexp.php +%%WWWDIR%%/include/classes/routing/CUrl.php +%%WWWDIR%%/include/classes/routing/CUrlFactory.php +%%WWWDIR%%/include/classes/screens/CScreenActions.php +%%WWWDIR%%/include/classes/screens/CScreenBase.php +%%WWWDIR%%/include/classes/screens/CScreenBuilder.php +%%WWWDIR%%/include/classes/screens/CScreenChart.php +%%WWWDIR%%/include/classes/screens/CScreenClock.php +%%WWWDIR%%/include/classes/screens/CScreenDataOverview.php +%%WWWDIR%%/include/classes/screens/CScreenDiscovery.php +%%WWWDIR%%/include/classes/screens/CScreenEvents.php +%%WWWDIR%%/include/classes/screens/CScreenGraph.php +%%WWWDIR%%/include/classes/screens/CScreenHistory.php +%%WWWDIR%%/include/classes/screens/CScreenHostTriggers.php +%%WWWDIR%%/include/classes/screens/CScreenHostgroupTriggers.php +%%WWWDIR%%/include/classes/screens/CScreenHostsInfo.php +%%WWWDIR%%/include/classes/screens/CScreenHttpTest.php +%%WWWDIR%%/include/classes/screens/CScreenHttpTestDetails.php +%%WWWDIR%%/include/classes/screens/CScreenLldGraph.php +%%WWWDIR%%/include/classes/screens/CScreenLldGraphBase.php +%%WWWDIR%%/include/classes/screens/CScreenLldSimpleGraph.php +%%WWWDIR%%/include/classes/screens/CScreenMap.php +%%WWWDIR%%/include/classes/screens/CScreenPlainText.php +%%WWWDIR%%/include/classes/screens/CScreenProblem.php +%%WWWDIR%%/include/classes/screens/CScreenScreen.php +%%WWWDIR%%/include/classes/screens/CScreenServerInfo.php +%%WWWDIR%%/include/classes/screens/CScreenSimpleGraph.php +%%WWWDIR%%/include/classes/screens/CScreenSystemStatus.php +%%WWWDIR%%/include/classes/screens/CScreenTriggersInfo.php +%%WWWDIR%%/include/classes/screens/CScreenTriggersOverview.php +%%WWWDIR%%/include/classes/screens/CScreenUrl.php +%%WWWDIR%%/include/classes/server/CZabbixServer.php +%%WWWDIR%%/include/classes/services/CServicesSlaCalculator.php +%%WWWDIR%%/include/classes/setup/CFrontendSetup.php +%%WWWDIR%%/include/classes/setup/CSetupWizard.php +%%WWWDIR%%/include/classes/tree/CServiceTree.php +%%WWWDIR%%/include/classes/tree/CTree.php +%%WWWDIR%%/include/classes/triggers/CTextTriggerConstructor.php +%%WWWDIR%%/include/classes/user/CFavorite.php +%%WWWDIR%%/include/classes/user/CProfile.php +%%WWWDIR%%/include/classes/user/CWebUser.php +%%WWWDIR%%/include/classes/validators/CActionCondValidator.php +%%WWWDIR%%/include/classes/validators/CApiInputValidator.php +%%WWWDIR%%/include/classes/validators/CCollectionValidator.php +%%WWWDIR%%/include/classes/validators/CColorValidator.php +%%WWWDIR%%/include/classes/validators/CDecimalStringValidator.php +%%WWWDIR%%/include/classes/validators/CDecimalValidator.php +%%WWWDIR%%/include/classes/validators/CEmailValidator.php +%%WWWDIR%%/include/classes/validators/CFunctionValidator.php +%%WWWDIR%%/include/classes/validators/CHtmlUrlValidator.php +%%WWWDIR%%/include/classes/validators/CIdValidator.php +%%WWWDIR%%/include/classes/validators/CLdapAuthValidator.php +%%WWWDIR%%/include/classes/validators/CLimitedSetValidator.php +%%WWWDIR%%/include/classes/validators/CNewValidator.php +%%WWWDIR%%/include/classes/validators/CPartialValidatorInterface.php +%%WWWDIR%%/include/classes/validators/CRegexValidator.php +%%WWWDIR%%/include/classes/validators/CStringValidator.php +%%WWWDIR%%/include/classes/validators/CValidator.php +%%WWWDIR%%/include/classes/validators/event/CEventSourceObjectValidator.php +%%WWWDIR%%/include/classes/validators/host/CHostNormalValidator.php +%%WWWDIR%%/include/classes/validators/object/CConditionValidator.php +%%WWWDIR%%/include/classes/validators/object/CUpdateDiscoveredValidator.php +%%WWWDIR%%/include/classes/validators/schema/CSchemaValidator.php +%%WWWDIR%%/include/classes/widgets/CWidgetConfig.php +%%WWWDIR%%/include/classes/widgets/CWidgetHelper.php +%%WWWDIR%%/include/classes/widgets/fields/CWidgetField.php +%%WWWDIR%%/include/classes/widgets/fields/CWidgetFieldCheckBox.php +%%WWWDIR%%/include/classes/widgets/fields/CWidgetFieldComboBox.php +%%WWWDIR%%/include/classes/widgets/fields/CWidgetFieldDatePicker.php +%%WWWDIR%%/include/classes/widgets/fields/CWidgetFieldGraphDataSet.php +%%WWWDIR%%/include/classes/widgets/fields/CWidgetFieldGraphOverride.php +%%WWWDIR%%/include/classes/widgets/fields/CWidgetFieldGroup.php +%%WWWDIR%%/include/classes/widgets/fields/CWidgetFieldHidden.php +%%WWWDIR%%/include/classes/widgets/fields/CWidgetFieldHost.php +%%WWWDIR%%/include/classes/widgets/fields/CWidgetFieldIntegerBox.php +%%WWWDIR%%/include/classes/widgets/fields/CWidgetFieldItem.php +%%WWWDIR%%/include/classes/widgets/fields/CWidgetFieldNumericBox.php +%%WWWDIR%%/include/classes/widgets/fields/CWidgetFieldRadioButtonList.php +%%WWWDIR%%/include/classes/widgets/fields/CWidgetFieldRangeControl.php +%%WWWDIR%%/include/classes/widgets/fields/CWidgetFieldReference.php +%%WWWDIR%%/include/classes/widgets/fields/CWidgetFieldSelectResource.php +%%WWWDIR%%/include/classes/widgets/fields/CWidgetFieldSeverities.php +%%WWWDIR%%/include/classes/widgets/fields/CWidgetFieldTags.php +%%WWWDIR%%/include/classes/widgets/fields/CWidgetFieldTextArea.php +%%WWWDIR%%/include/classes/widgets/fields/CWidgetFieldTextBox.php +%%WWWDIR%%/include/classes/widgets/fields/CWidgetFieldUrl.php +%%WWWDIR%%/include/classes/widgets/fields/CWidgetFieldWidgetListComboBox.php +%%WWWDIR%%/include/classes/widgets/forms/CWidgetForm.php +%%WWWDIR%%/include/classes/widgets/forms/CWidgetFormActionLog.php +%%WWWDIR%%/include/classes/widgets/forms/CWidgetFormClock.php +%%WWWDIR%%/include/classes/widgets/forms/CWidgetFormDataOver.php +%%WWWDIR%%/include/classes/widgets/forms/CWidgetFormGraph.php +%%WWWDIR%%/include/classes/widgets/forms/CWidgetFormMap.php +%%WWWDIR%%/include/classes/widgets/forms/CWidgetFormNavTree.php +%%WWWDIR%%/include/classes/widgets/forms/CWidgetFormPlainText.php +%%WWWDIR%%/include/classes/widgets/forms/CWidgetFormProblemHosts.php +%%WWWDIR%%/include/classes/widgets/forms/CWidgetFormProblems.php +%%WWWDIR%%/include/classes/widgets/forms/CWidgetFormProblemsBySv.php +%%WWWDIR%%/include/classes/widgets/forms/CWidgetFormSvgGraph.php +%%WWWDIR%%/include/classes/widgets/forms/CWidgetFormTrigOver.php +%%WWWDIR%%/include/classes/widgets/forms/CWidgetFormUrl.php +%%WWWDIR%%/include/classes/widgets/forms/CWidgetFormWeb.php +%%WWWDIR%%/include/classes/widgets/views/widget.actionlog.form.view.php +%%WWWDIR%%/include/classes/widgets/views/widget.clock.form.view.php +%%WWWDIR%%/include/classes/widgets/views/widget.dataover.form.view.php +%%WWWDIR%%/include/classes/widgets/views/widget.discovery.form.view.php +%%WWWDIR%%/include/classes/widgets/views/widget.favgraphs.form.view.php +%%WWWDIR%%/include/classes/widgets/views/widget.favmaps.form.view.php +%%WWWDIR%%/include/classes/widgets/views/widget.favscreens.form.view.php +%%WWWDIR%%/include/classes/widgets/views/widget.graph.form.view.php +%%WWWDIR%%/include/classes/widgets/views/widget.map.form.view.php +%%WWWDIR%%/include/classes/widgets/views/widget.navtree.form.view.php +%%WWWDIR%%/include/classes/widgets/views/widget.plaintext.form.view.php +%%WWWDIR%%/include/classes/widgets/views/widget.problemhosts.form.view.php +%%WWWDIR%%/include/classes/widgets/views/widget.problems.form.view.php +%%WWWDIR%%/include/classes/widgets/views/widget.problemsbysv.form.view.php +%%WWWDIR%%/include/classes/widgets/views/widget.svggraph.form.view.php +%%WWWDIR%%/include/classes/widgets/views/widget.systeminfo.form.view.php +%%WWWDIR%%/include/classes/widgets/views/widget.trigover.form.view.php +%%WWWDIR%%/include/classes/widgets/views/widget.url.form.view.php +%%WWWDIR%%/include/classes/widgets/views/widget.web.form.view.php +%%WWWDIR%%/include/config.inc.php +%%WWWDIR%%/include/correlation.inc.php +%%WWWDIR%%/include/db.inc.php +%%WWWDIR%%/include/debug.inc.php +%%WWWDIR%%/include/defines.inc.php +%%WWWDIR%%/include/discovery.inc.php +%%WWWDIR%%/include/draw.inc.php +%%WWWDIR%%/include/events.inc.php +%%WWWDIR%%/include/forms.inc.php +%%WWWDIR%%/include/func.inc.php +%%WWWDIR%%/include/gettextwrapper.inc.php +%%WWWDIR%%/include/graphs.inc.php +%%WWWDIR%%/include/hostgroups.inc.php +%%WWWDIR%%/include/hosts.inc.php +%%WWWDIR%%/include/html.inc.php +%%WWWDIR%%/include/httptest.inc.php +%%WWWDIR%%/include/ident.inc.php +%%WWWDIR%%/include/images.inc.php +%%WWWDIR%%/include/items.inc.php +%%WWWDIR%%/include/js.inc.php +%%WWWDIR%%/include/locales.inc.php +%%WWWDIR%%/include/maintenances.inc.php +%%WWWDIR%%/include/maps.inc.php +%%WWWDIR%%/include/media.inc.php +%%WWWDIR%%/include/menu.inc.php +%%WWWDIR%%/include/page_footer.php +%%WWWDIR%%/include/page_header.php +%%WWWDIR%%/include/perm.inc.php +%%WWWDIR%%/include/profiles.inc.php +%%WWWDIR%%/include/regexp.inc.php +%%WWWDIR%%/include/schema.inc.php +%%WWWDIR%%/include/screens.inc.php +%%WWWDIR%%/include/services.inc.php +%%WWWDIR%%/include/sounds.inc.php +%%WWWDIR%%/include/translateDefines.inc.php +%%WWWDIR%%/include/triggers.inc.php +%%WWWDIR%%/include/users.inc.php +%%WWWDIR%%/include/validate.inc.php +%%WWWDIR%%/include/valuemap.inc.php +%%WWWDIR%%/include/views/administration.auditacts.list.php +%%WWWDIR%%/include/views/administration.auditlogs.list.php +%%WWWDIR%%/include/views/administration.general.gui.edit.php +%%WWWDIR%%/include/views/administration.general.housekeeper.edit.php +%%WWWDIR%%/include/views/administration.general.iconmap.edit.php +%%WWWDIR%%/include/views/administration.general.iconmap.list.php +%%WWWDIR%%/include/views/administration.general.image.edit.php +%%WWWDIR%%/include/views/administration.general.image.list.php +%%WWWDIR%%/include/views/administration.general.macros.edit.php +%%WWWDIR%%/include/views/administration.general.other.edit.php +%%WWWDIR%%/include/views/administration.general.regularexpressions.edit.php +%%WWWDIR%%/include/views/administration.general.regularexpressions.list.php +%%WWWDIR%%/include/views/administration.general.trigger.options.edit.php +%%WWWDIR%%/include/views/administration.general.triggerSeverity.edit.php +%%WWWDIR%%/include/views/administration.general.valuemapping.edit.php +%%WWWDIR%%/include/views/administration.general.valuemapping.list.php +%%WWWDIR%%/include/views/administration.general.workingtime.edit.php +%%WWWDIR%%/include/views/administration.usergroups.edit.php +%%WWWDIR%%/include/views/administration.usergroups.list.php +%%WWWDIR%%/include/views/administration.users.edit.php +%%WWWDIR%%/include/views/administration.users.list.php +%%WWWDIR%%/include/views/common.filter.trigger.php +%%WWWDIR%%/include/views/conf.import.php +%%WWWDIR%%/include/views/configuration.action.edit.php +%%WWWDIR%%/include/views/configuration.action.list.php +%%WWWDIR%%/include/views/configuration.application.edit.php +%%WWWDIR%%/include/views/configuration.application.list.php +%%WWWDIR%%/include/views/configuration.copy.elements.php +%%WWWDIR%%/include/views/configuration.correlation.edit.php +%%WWWDIR%%/include/views/configuration.correlation.list.php +%%WWWDIR%%/include/views/configuration.discovery.edit.php +%%WWWDIR%%/include/views/configuration.discovery.list.php +%%WWWDIR%%/include/views/configuration.graph.edit.php +%%WWWDIR%%/include/views/configuration.graph.list.php +%%WWWDIR%%/include/views/configuration.host.discovery.edit.php +%%WWWDIR%%/include/views/configuration.host.discovery.list.php +%%WWWDIR%%/include/views/configuration.host.edit.php +%%WWWDIR%%/include/views/configuration.host.list.php +%%WWWDIR%%/include/views/configuration.host.massupdate.php +%%WWWDIR%%/include/views/configuration.host.prototype.edit.php +%%WWWDIR%%/include/views/configuration.host.prototype.list.php +%%WWWDIR%%/include/views/configuration.hostgroups.edit.php +%%WWWDIR%%/include/views/configuration.hostgroups.list.php +%%WWWDIR%%/include/views/configuration.httpconf.edit.php +%%WWWDIR%%/include/views/configuration.httpconf.list.php +%%WWWDIR%%/include/views/configuration.item.edit.php +%%WWWDIR%%/include/views/configuration.item.list.php +%%WWWDIR%%/include/views/configuration.item.massupdate.php +%%WWWDIR%%/include/views/configuration.item.prototype.edit.php +%%WWWDIR%%/include/views/configuration.item.prototype.list.php +%%WWWDIR%%/include/views/configuration.maintenance.edit.php +%%WWWDIR%%/include/views/configuration.maintenance.list.php +%%WWWDIR%%/include/views/configuration.services.edit.php +%%WWWDIR%%/include/views/configuration.services.list.php +%%WWWDIR%%/include/views/configuration.services.parent.list.php +%%WWWDIR%%/include/views/configuration.template.edit.php +%%WWWDIR%%/include/views/configuration.template.list.php +%%WWWDIR%%/include/views/configuration.trigger.prototype.edit.php +%%WWWDIR%%/include/views/configuration.trigger.prototype.list.php +%%WWWDIR%%/include/views/configuration.trigger.prototype.massupdate.php +%%WWWDIR%%/include/views/configuration.triggers.edit.php +%%WWWDIR%%/include/views/configuration.triggers.list.php +%%WWWDIR%%/include/views/configuration.triggers.massupdate.php +%%WWWDIR%%/include/views/general.browserwarning.php +%%WWWDIR%%/include/views/general.login.php +%%WWWDIR%%/include/views/general.warning.php +%%WWWDIR%%/include/views/hostmacros.php +%%WWWDIR%%/include/views/inventory.host.list.php +%%WWWDIR%%/include/views/inventory.host.view.php +%%WWWDIR%%/include/views/js/adm.regexprs.edit.js.php +%%WWWDIR%%/include/views/js/administration.general.gui.php +%%WWWDIR%%/include/views/js/administration.general.housekeeper.edit.js.php +%%WWWDIR%%/include/views/js/administration.general.iconmap.js.php +%%WWWDIR%%/include/views/js/administration.general.macros.edit.js.php +%%WWWDIR%%/include/views/js/administration.general.trigger.options.js.php +%%WWWDIR%%/include/views/js/administration.general.triggerSeverity.js.php +%%WWWDIR%%/include/views/js/administration.general.valuemapping.edit.js.php +%%WWWDIR%%/include/views/js/administration.users.edit.js.php +%%WWWDIR%%/include/views/js/common.filter.trigger.js.php +%%WWWDIR%%/include/views/js/common.init.js.php +%%WWWDIR%%/include/views/js/common.item.edit.js.php +%%WWWDIR%%/include/views/js/conf.import.js.php +%%WWWDIR%%/include/views/js/configuration.action.edit.js.php +%%WWWDIR%%/include/views/js/configuration.correlation.edit.js.php +%%WWWDIR%%/include/views/js/configuration.discovery.edit.js.php +%%WWWDIR%%/include/views/js/configuration.graph.edit.js.php +%%WWWDIR%%/include/views/js/configuration.host.discovery.edit.js.php +%%WWWDIR%%/include/views/js/configuration.host.edit.js.php +%%WWWDIR%%/include/views/js/configuration.host.list.js.php +%%WWWDIR%%/include/views/js/configuration.host.massupdate.js.php +%%WWWDIR%%/include/views/js/configuration.host.prototype.edit.js.php +%%WWWDIR%%/include/views/js/configuration.httpconf.edit.js.php +%%WWWDIR%%/include/views/js/configuration.item.edit.js.php +%%WWWDIR%%/include/views/js/configuration.item.list.js.php +%%WWWDIR%%/include/views/js/configuration.item.massupdate.js.php +%%WWWDIR%%/include/views/js/configuration.item.prototype.edit.js.php +%%WWWDIR%%/include/views/js/configuration.maintenance.edit.js.php +%%WWWDIR%%/include/views/js/configuration.services.edit.js.php +%%WWWDIR%%/include/views/js/configuration.triggers.edit.js.php +%%WWWDIR%%/include/views/js/configuration.triggers.list.js.php +%%WWWDIR%%/include/views/js/hostmacros.js.php +%%WWWDIR%%/include/views/js/monitoring.latest.js.php +%%WWWDIR%%/include/views/js/monitoring.screen.edit.js.php +%%WWWDIR%%/include/views/js/monitoring.slideconf.edit.js.php +%%WWWDIR%%/include/views/js/monitoring.slides.js.php +%%WWWDIR%%/include/views/js/monitoring.sysmap.edit.js.php +%%WWWDIR%%/include/views/js/monitoring.sysmaps.js.php +%%WWWDIR%%/include/views/monitoring.charts.php +%%WWWDIR%%/include/views/monitoring.history.php +%%WWWDIR%%/include/views/monitoring.hostscreen.php +%%WWWDIR%%/include/views/monitoring.overview.items.php +%%WWWDIR%%/include/views/monitoring.overview.triggers.php +%%WWWDIR%%/include/views/monitoring.screen.constructor.edit.php +%%WWWDIR%%/include/views/monitoring.screen.constructor.list.php +%%WWWDIR%%/include/views/monitoring.screen.edit.php +%%WWWDIR%%/include/views/monitoring.screen.list.php +%%WWWDIR%%/include/views/monitoring.screen.php +%%WWWDIR%%/include/views/monitoring.slideconf.edit.php +%%WWWDIR%%/include/views/monitoring.slideconf.list.php +%%WWWDIR%%/include/views/monitoring.slides.php +%%WWWDIR%%/include/views/monitoring.sysmap.constructor.php +%%WWWDIR%%/include/views/monitoring.sysmap.edit.php +%%WWWDIR%%/include/views/monitoring.sysmap.list.php +%%WWWDIR%%/include/views/reports.toptriggers.php +%%WWWDIR%%/index.php +%%WWWDIR%%/index_http.php +%%WWWDIR%%/items.php +%%WWWDIR%%/js/browsers.js +%%WWWDIR%%/js/chkbxrange.js +%%WWWDIR%%/js/class.bbcode.js +%%WWWDIR%%/js/class.calendar.js +%%WWWDIR%%/js/class.cclock.js +%%WWWDIR%%/js/class.cdate.js +%%WWWDIR%%/js/class.cdebug.js +%%WWWDIR%%/js/class.cmap.js +%%WWWDIR%%/js/class.cmessages.js +%%WWWDIR%%/js/class.cnavtree.js +%%WWWDIR%%/js/class.cookie.js +%%WWWDIR%%/js/class.coverride.js +%%WWWDIR%%/js/class.crangecontrol.js +%%WWWDIR%%/js/class.cscreen.js +%%WWWDIR%%/js/class.csuggest.js +%%WWWDIR%%/js/class.csvggraph.js +%%WWWDIR%%/js/class.ctree.js +%%WWWDIR%%/js/class.curl.js +%%WWWDIR%%/js/class.cverticalaccordion.js +%%WWWDIR%%/js/class.cviewswitcher.js +%%WWWDIR%%/js/class.mapWidget.js +%%WWWDIR%%/js/class.pmaster.js +%%WWWDIR%%/js/class.rpc.js +%%WWWDIR%%/js/colorpicker.js +%%WWWDIR%%/js/common.js +%%WWWDIR%%/js/csvggraphwidget.js +%%WWWDIR%%/js/dashboard.grid.js +%%WWWDIR%%/js/flickerfreescreen.js +%%WWWDIR%%/js/functions.js +%%WWWDIR%%/js/gtlc.js +%%WWWDIR%%/js/init.js +%%WWWDIR%%/js/layout.mode.js +%%WWWDIR%%/js/main.js +%%WWWDIR%%/js/menupopup.js +%%WWWDIR%%/js/multiselect.js +%%WWWDIR%%/js/pages/items.js +%%WWWDIR%%/js/servercheck.js +%%WWWDIR%%/js/vector/class.svg.canvas.js +%%WWWDIR%%/js/vector/class.svg.map.js +%%WWWDIR%%/js/vendors/jquery-ui.js +%%WWWDIR%%/js/vendors/jquery.js +%%WWWDIR%%/js/vendors/prototype.js +%%WWWDIR%%/jsLoader.php +%%WWWDIR%%/jsrpc.php +%%WWWDIR%%/latest.php +%%WWWDIR%%/local/.htaccess +%%WWWDIR%%/local/README +%%WWWDIR%%/locale/README +%%WWWDIR%%/locale/add_new_language.sh +%%WWWDIR%%/locale/bg/LC_MESSAGES/frontend.mo +%%WWWDIR%%/locale/bg/LC_MESSAGES/frontend.po +%%WWWDIR%%/locale/ca/LC_MESSAGES/frontend.mo +%%WWWDIR%%/locale/ca/LC_MESSAGES/frontend.po +%%WWWDIR%%/locale/cs/LC_MESSAGES/frontend.mo +%%WWWDIR%%/locale/cs/LC_MESSAGES/frontend.po +%%WWWDIR%%/locale/de/LC_MESSAGES/frontend.mo +%%WWWDIR%%/locale/de/LC_MESSAGES/frontend.po +%%WWWDIR%%/locale/el/LC_MESSAGES/frontend.mo +%%WWWDIR%%/locale/el/LC_MESSAGES/frontend.po +%%WWWDIR%%/locale/en_US/LC_MESSAGES/frontend.mo +%%WWWDIR%%/locale/en_US/LC_MESSAGES/frontend.po +%%WWWDIR%%/locale/es/LC_MESSAGES/frontend.mo +%%WWWDIR%%/locale/es/LC_MESSAGES/frontend.po +%%WWWDIR%%/locale/fa/LC_MESSAGES/frontend.mo +%%WWWDIR%%/locale/fa/LC_MESSAGES/frontend.po +%%WWWDIR%%/locale/fi/LC_MESSAGES/frontend.mo +%%WWWDIR%%/locale/fi/LC_MESSAGES/frontend.po +%%WWWDIR%%/locale/fr/LC_MESSAGES/frontend.mo +%%WWWDIR%%/locale/fr/LC_MESSAGES/frontend.po +%%WWWDIR%%/locale/he/LC_MESSAGES/frontend.mo +%%WWWDIR%%/locale/he/LC_MESSAGES/frontend.po +%%WWWDIR%%/locale/hu/LC_MESSAGES/frontend.mo +%%WWWDIR%%/locale/hu/LC_MESSAGES/frontend.po +%%WWWDIR%%/locale/id/LC_MESSAGES/frontend.mo +%%WWWDIR%%/locale/id/LC_MESSAGES/frontend.po +%%WWWDIR%%/locale/it/LC_MESSAGES/frontend.mo +%%WWWDIR%%/locale/it/LC_MESSAGES/frontend.po +%%WWWDIR%%/locale/ja/LC_MESSAGES/frontend.mo +%%WWWDIR%%/locale/ja/LC_MESSAGES/frontend.po +%%WWWDIR%%/locale/ka/LC_MESSAGES/frontend.mo +%%WWWDIR%%/locale/ka/LC_MESSAGES/frontend.po +%%WWWDIR%%/locale/ko/LC_MESSAGES/frontend.mo +%%WWWDIR%%/locale/ko/LC_MESSAGES/frontend.po +%%WWWDIR%%/locale/lt/LC_MESSAGES/frontend.mo +%%WWWDIR%%/locale/lt/LC_MESSAGES/frontend.po +%%WWWDIR%%/locale/lv/LC_MESSAGES/frontend.mo +%%WWWDIR%%/locale/lv/LC_MESSAGES/frontend.po +%%WWWDIR%%/locale/make_mo.sh +%%WWWDIR%%/locale/nb/LC_MESSAGES/frontend.mo +%%WWWDIR%%/locale/nb/LC_MESSAGES/frontend.po +%%WWWDIR%%/locale/nl/LC_MESSAGES/frontend.mo +%%WWWDIR%%/locale/nl/LC_MESSAGES/frontend.po +%%WWWDIR%%/locale/pl/LC_MESSAGES/frontend.mo +%%WWWDIR%%/locale/pl/LC_MESSAGES/frontend.po +%%WWWDIR%%/locale/pt_BR/LC_MESSAGES/frontend.mo +%%WWWDIR%%/locale/pt_BR/LC_MESSAGES/frontend.po +%%WWWDIR%%/locale/pt_PT/LC_MESSAGES/frontend.mo +%%WWWDIR%%/locale/pt_PT/LC_MESSAGES/frontend.po +%%WWWDIR%%/locale/ro/LC_MESSAGES/frontend.mo +%%WWWDIR%%/locale/ro/LC_MESSAGES/frontend.po +%%WWWDIR%%/locale/ru/LC_MESSAGES/frontend.mo +%%WWWDIR%%/locale/ru/LC_MESSAGES/frontend.po +%%WWWDIR%%/locale/sk/LC_MESSAGES/frontend.mo +%%WWWDIR%%/locale/sk/LC_MESSAGES/frontend.po +%%WWWDIR%%/locale/sv/LC_MESSAGES/frontend.mo +%%WWWDIR%%/locale/sv/LC_MESSAGES/frontend.po +%%WWWDIR%%/locale/tr/LC_MESSAGES/frontend.mo +%%WWWDIR%%/locale/tr/LC_MESSAGES/frontend.po +%%WWWDIR%%/locale/uk/LC_MESSAGES/frontend.mo +%%WWWDIR%%/locale/uk/LC_MESSAGES/frontend.po +%%WWWDIR%%/locale/update_po.sh +%%WWWDIR%%/locale/vi/LC_MESSAGES/frontend.mo +%%WWWDIR%%/locale/vi/LC_MESSAGES/frontend.po +%%WWWDIR%%/locale/zh_CN/LC_MESSAGES/frontend.mo +%%WWWDIR%%/locale/zh_CN/LC_MESSAGES/frontend.po +%%WWWDIR%%/locale/zh_TW/LC_MESSAGES/frontend.mo +%%WWWDIR%%/locale/zh_TW/LC_MESSAGES/frontend.po +%%WWWDIR%%/maintenance.php +%%WWWDIR%%/map.import.php +%%WWWDIR%%/map.php +%%WWWDIR%%/overview.php +%%WWWDIR%%/profile.php +%%WWWDIR%%/queue.php +%%WWWDIR%%/report2.php +%%WWWDIR%%/report4.php +%%WWWDIR%%/robots.txt +%%WWWDIR%%/screen.import.php +%%WWWDIR%%/screenconf.php +%%WWWDIR%%/screenedit.php +%%WWWDIR%%/screens.php +%%WWWDIR%%/search.php +%%WWWDIR%%/services.php +%%WWWDIR%%/setup.php +%%WWWDIR%%/slideconf.php +%%WWWDIR%%/slides.php +%%WWWDIR%%/srv_status.php +%%WWWDIR%%/styles/blue-theme.css +%%WWWDIR%%/styles/dark-theme.css +%%WWWDIR%%/styles/hc-dark.css +%%WWWDIR%%/styles/hc-light.css +%%WWWDIR%%/sysmap.php +%%WWWDIR%%/sysmaps.php +%%WWWDIR%%/templates.php +%%WWWDIR%%/toptriggers.php +%%WWWDIR%%/tr_events.php +%%WWWDIR%%/trigger_prototypes.php +%%WWWDIR%%/triggers.php +%%WWWDIR%%/usergrps.php +%%WWWDIR%%/users.php +%%WWWDIR%%/zabbix.php +@dir %%WWWDIR%%/local/app/controllers +@dir %%WWWDIR%%/local/app/views +@dir %%WWWDIR%%/local/conf diff --git a/net-mgmt/zabbix4-server/pkg-plist.java b/net-mgmt/zabbix4-server/pkg-plist.java new file mode 100644 index 00000000000..4b0bd8f968d --- /dev/null +++ b/net-mgmt/zabbix4-server/pkg-plist.java @@ -0,0 +1,11 @@ +sbin/zabbix_java/shutdown.sh +sbin/zabbix_java/lib/logback-console.xml +sbin/zabbix_java/lib/logback-core-0.9.27.jar +sbin/zabbix_java/lib/logback-classic-0.9.27.jar +sbin/zabbix_java/lib/logback.xml +sbin/zabbix_java/lib/slf4j-api-1.6.1.jar +sbin/zabbix_java/lib/android-json-4.3_r3.1.jar +@sample sbin/zabbix_java/settings.sh.sample +sbin/zabbix_java/startup.sh +sbin/zabbix_java/bin/zabbix-java-gateway-%%PORTVERSION%%.jar +@dir(zabbix,zabbix,755) /var/run/zabbix diff --git a/net-p2p/Makefile b/net-p2p/Makefile index c3ca1de26c3..e2e44a2a7a1 100644 --- a/net-p2p/Makefile +++ b/net-p2p/Makefile @@ -48,7 +48,6 @@ SUBDIR += libswift SUBDIR += libtorrent SUBDIR += libtorrent-rasterbar - SUBDIR += libtorrent-rasterbar-python SUBDIR += linuxdcpp SUBDIR += litecoin SUBDIR += litecoin-daemon @@ -72,6 +71,7 @@ SUBDIR += p5-Net-DirectConnect SUBDIR += p5-WWW-BitTorrent SUBDIR += phex + SUBDIR += py-libtorrent-rasterbar SUBDIR += py-py2play SUBDIR += py-transmissionrpc SUBDIR += py-tremc diff --git a/net-p2p/deluge-cli/Makefile b/net-p2p/deluge-cli/Makefile index f103bb6c97f..52da67fd6f8 100644 --- a/net-p2p/deluge-cli/Makefile +++ b/net-p2p/deluge-cli/Makefile @@ -3,7 +3,7 @@ PORTNAME= deluge DISTVERSIONPREFIX= ${PORTNAME}- DISTVERSION= 1.3.15 -PORTREVISION= 5 +PORTREVISION= 7 CATEGORIES= net-p2p python PKGNAMESUFFIX= -cli @@ -15,7 +15,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE BUILD_DEPENDS= intltool-merge:textproc/intltool RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}xdg>=0.18:devel/py-xdg@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}libtorrent-rasterbar>=0:net-p2p/libtorrent-rasterbar-python@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}libtorrent-rasterbar>=0:net-p2p/py-libtorrent-rasterbar@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}openssl>=0.8:security/py-openssl@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}chardet>=1.0.1:textproc/py-chardet@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}mako>=0.2.5:textproc/py-mako@${PY_FLAVOR} \ diff --git a/net-p2p/libtorrent-rasterbar-python/Makefile b/net-p2p/libtorrent-rasterbar-python/Makefile deleted file mode 100644 index a2ac28b2408..00000000000 --- a/net-p2p/libtorrent-rasterbar-python/Makefile +++ /dev/null @@ -1,31 +0,0 @@ -# Created by: Doug Barton -# $FreeBSD$ - -CATEGORIES= net-p2p python -PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} - -COMMENT= Python bindings for libtorrent-rasterbar - -LIB_DEPENDS= libtorrent-rasterbar.so:net-p2p/libtorrent-rasterbar \ - ${PY_BOOST} - -MASTERDIR= ${.CURDIR}/../libtorrent-rasterbar - -BUILD_WRKSRC= ${WRKSRC}/bindings/python -INSTALL_WRKSRC= ${BUILD_WRKSRC} - -SLAVE_PORT= yes -USES= python:2.7 -USE_PYTHON= distutils -PYDISTUTILS_PKGNAME= python_libtorrent - -PLIST= ${NONEXISTENT} -PLIST_FILES= %%PYTHON_SITELIBDIR%%/libtorrent.so - -OPTIONS_EXCLUDE= DOCS EXAMPLES - -# ensure python paths are correctly identified -CONFIGURE_ENV= PYTHON_INCLUDEDIR="${PYTHON_INCLUDEDIR}" \ - PYTHON_VERSION="${PYTHON_VERSION}" - -.include "${MASTERDIR}/Makefile" diff --git a/net-p2p/libtorrent-rasterbar/Makefile b/net-p2p/libtorrent-rasterbar/Makefile index 40e4e48bc54..2e83ec17291 100644 --- a/net-p2p/libtorrent-rasterbar/Makefile +++ b/net-p2p/libtorrent-rasterbar/Makefile @@ -2,35 +2,22 @@ # $FreeBSD$ PORTNAME= libtorrent-rasterbar -DISTVERSION= 1.1.9 -CATEGORIES?= net-p2p ipv6 +DISTVERSION= 1.1.10 +CATEGORIES= net-p2p ipv6 MASTER_SITES= https://github.com/arvidn/libtorrent/releases/download/libtorrent-${PORTVERSION:S/./_/g}/ MAINTAINER= yuri@FreeBSD.org -COMMENT?= C++ library implementing a BitTorrent client +COMMENT= C++ library implementing a BitTorrent client LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/COPYING -BROKEN_powerpc64= fails to build: client_test.cpp: undefined reference to std::__cxx11::basic_string - -LIB_DEPENDS+= libboost_chrono.so:devel/boost-libs \ +LIB_DEPENDS= libboost_chrono.so:devel/boost-libs \ libboost_random.so:devel/boost-libs \ libboost_system.so:devel/boost-libs -USES+= compiler:c++11-lib iconv:wchar_t libtool pathfix pkgconfig ssl -USE_CXXSTD= c++11 -GNU_CONFIGURE= yes +USES= cmake:outsource compiler:c++14-lang iconv:wchar_t libtool pathfix pkgconfig ssl USE_LDCONFIG= yes -TEST_TARGET= check - -CONFIGURE_ARGS= --disable-static \ - --enable-dht \ - --enable-encryption \ - --enable-pool-allocators \ - --enable-deprecated-functions \ - --with-boost=${LOCALBASE} \ - --with-libiconv \ - --with-openssl=${OPENSSLBASE} SHLIB_VER= 9 PLIST_SUB+= SHLIB_VER="${SHLIB_VER}" @@ -39,7 +26,7 @@ DOCFILES= AUTHORS ChangeLog PORTDOCS= ${DOCFILES} docs/* PORTEXAMPLES= *.cpp -OPTIONS_DEFINE= DEBUG DOCS EXAMPLES LOGGING TEST +OPTIONS_DEFINE= DEBUG DOCS EXAMPLES LOGGING OPTIONS_DEFAULT=LOGGING OPTIONS_SUB= yes LOGGING_DESC= Enable disk stat logging and logging to disk @@ -47,36 +34,18 @@ LOGGING_DESC= Enable disk stat logging and logging to disk DEBUG_CONFIGURE_ENABLE= debug EXAMPLES_CONFIGURE_ENABLE= examples LOGGING_CONFIGURE_ENABLE= logging disk-stats -TEST_CONFIGURE_ENABLE= tests - -.include - -.if defined(SLAVE_PORT) && ${SLAVE_PORT:tl} == "yes" && defined(USE_PYTHON) -CONFIGURE_ARGS+= --enable-python-binding -.else -CONFIGURE_ARGS+= --disable-python-binding -.endif post-patch: @${REINPLACE_CMD} -e 's|/usr/local/include|${PREFIX}/include|' \ ${WRKSRC}/Jamfile -post-configure: - ${FIND} ${WRKSRC} -name Makefile -o -name link_flags | \ - ${XARGS} ${REINPLACE_CMD} 's| *-R${LOCALBASE}/lib||' - post-install: -.if defined(SLAVE_PORT) && ${SLAVE_PORT:tl} == "yes" && defined(USE_PYTHON) - ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/libtorrent.so -.else - ${STRIP_CMD} \ - ${STAGEDIR}${PREFIX}/lib/libtorrent-rasterbar.so.${SHLIB_VER} -.endif + @${RM} ${STAGEDIR}${PREFIX}/include/libtorrent/tommath.h.orig ${STAGEDIR}${PREFIX}/include/libtorrent/Makefile* post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${DOCFILES:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR} - (cd ${WRKSRC} && ${COPYTREE_SHARE} docs ${STAGEDIR}${DOCSDIR}) + cd ${WRKSRC} && ${COPYTREE_SHARE} docs ${STAGEDIR}${DOCSDIR} ${RM} ${STAGEDIR}${DOCSDIR}/docs/._* post-install-EXAMPLES-on: @@ -84,4 +53,10 @@ post-install-EXAMPLES-on: ${INSTALL_DATA} ${WRKSRC}/examples/${PORTEXAMPLES} \ ${STAGEDIR}${EXAMPLESDIR} +do-test: # broken: https://github.com/arvidn/libtorrent/issues/3327 + @cd ${BUILD_WRKSRC} && \ + ${SETENV} ${CONFIGURE_ENV} ${CMAKE_BIN} ${CMAKE_ARGS} -Dbuild_tests=ON ${CMAKE_SOURCE_PATH} && \ + ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} ${ALL_TARGET} && \ + ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} test + .include diff --git a/net-p2p/libtorrent-rasterbar/distinfo b/net-p2p/libtorrent-rasterbar/distinfo index 4dd25594ccd..f10367fe991 100644 --- a/net-p2p/libtorrent-rasterbar/distinfo +++ b/net-p2p/libtorrent-rasterbar/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1534791500 -SHA256 (libtorrent-rasterbar-1.1.9.tar.gz) = d57a0f5b159f58003c3031943463503f0d05ae3e428dd7c2383d1e35fb2c4e8c -SIZE (libtorrent-rasterbar-1.1.9.tar.gz) = 3903742 +TIMESTAMP = 1538843172 +SHA256 (libtorrent-rasterbar-1.1.10.tar.gz) = 07b2b391e0d16bc693d793e352338488a0e41f3130b70884bb2e0270ea00b8c2 +SIZE (libtorrent-rasterbar-1.1.10.tar.gz) = 3902542 diff --git a/net-p2p/libtorrent-rasterbar/files/patch-CMakeLists.txt b/net-p2p/libtorrent-rasterbar/files/patch-CMakeLists.txt new file mode 100644 index 00000000000..42fb9c447cd --- /dev/null +++ b/net-p2p/libtorrent-rasterbar/files/patch-CMakeLists.txt @@ -0,0 +1,10 @@ +--- CMakeLists.txt.orig 2018-10-06 18:06:13 UTC ++++ CMakeLists.txt +@@ -1,6 +1,6 @@ + cmake_minimum_required(VERSION 3.8) + project(libtorrent) +-set (SOVERSION "8") ++set (SOVERSION "9") # https://github.com/arvidn/libtorrent/issues/3326 + set (VERSION "1.1.10") + + set(sources diff --git a/net-p2p/libtorrent-rasterbar/pkg-plist b/net-p2p/libtorrent-rasterbar/pkg-plist index 8eb932a2342..bf642754415 100644 --- a/net-p2p/libtorrent-rasterbar/pkg-plist +++ b/net-p2p/libtorrent-rasterbar/pkg-plist @@ -1,12 +1,3 @@ -%%TEST%%bin/bt_get -%%TEST%%bin/bt_get2 -%%TEST%%bin/client_test -%%TEST%%bin/connection_tester -%%TEST%%bin/dump_torrent -%%TEST%%bin/make_torrent -%%TEST%%bin/simple_client -%%TEST%%bin/stats_counters -%%TEST%%bin/upnp_test include/libtorrent/ConvertUTF.h include/libtorrent/add_torrent_params.hpp include/libtorrent/address.hpp @@ -206,5 +197,4 @@ include/libtorrent/web_peer_connection.hpp include/libtorrent/xml_parse.hpp lib/libtorrent-rasterbar.so lib/libtorrent-rasterbar.so.%%SHLIB_VER%% -lib/libtorrent-rasterbar.so.%%SHLIB_VER%%.0.0 libdata/pkgconfig/libtorrent-rasterbar.pc diff --git a/net-p2p/p5-Net-BitTorrent-File/Makefile b/net-p2p/p5-Net-BitTorrent-File/Makefile index a1e46f3f93e..1ffb93f177c 100644 --- a/net-p2p/p5-Net-BitTorrent-File/Makefile +++ b/net-p2p/p5-Net-BitTorrent-File/Makefile @@ -15,9 +15,9 @@ COMMENT= Perl5 module for handles loading and saving of .torrent file LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Convert-Bencode>=0:converters/p5-Convert-Bencode \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Convert-Bencode>=0:converters/p5-Convert-Bencode \ p5-Digest-SHA1>=0:security/p5-Digest-SHA1 -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USE_PERL5= configure diff --git a/net-p2p/p5-Net-DirectConnect/Makefile b/net-p2p/p5-Net-DirectConnect/Makefile index f5e09da53bb..f9fe3f0abe9 100644 --- a/net-p2p/p5-Net-DirectConnect/Makefile +++ b/net-p2p/p5-Net-DirectConnect/Makefile @@ -14,7 +14,8 @@ COMMENT= Perl Direct Connect lib and client LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-DBD-SQLite>=0:databases/p5-DBD-SQLite \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-DBD-SQLite>=0:databases/p5-DBD-SQLite \ p5-DBI>=0:databases/p5-DBI \ p5-IO-Socket-INET6>=0:net/p5-IO-Socket-INET6 \ p5-IO-Socket-SSL>=0:security/p5-IO-Socket-SSL \ @@ -23,7 +24,6 @@ BUILD_DEPENDS= p5-DBD-SQLite>=0:databases/p5-DBD-SQLite \ p5-lib-abs>=0:devel/p5-lib-abs \ p5-MIME-Base32>=0:converters/p5-MIME-Base32 \ p5-Sys-Sendfile-FreeBSD>=0:devel/p5-Sys-Sendfile-FreeBSD -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/net-p2p/p5-WWW-BitTorrent/Makefile b/net-p2p/p5-WWW-BitTorrent/Makefile index 077e4253879..cf5b29086fc 100644 --- a/net-p2p/p5-WWW-BitTorrent/Makefile +++ b/net-p2p/p5-WWW-BitTorrent/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= snowfly@yuntech.edu.tw COMMENT= Search and Download .torrent(s) files from BitTorrents boards -BUILD_DEPENDS= p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-libwww>=0:www/p5-libwww USES= perl5 shebangfix SHEBANG_FILES= bittorrent.pl diff --git a/net-p2p/py-libtorrent-rasterbar/Makefile b/net-p2p/py-libtorrent-rasterbar/Makefile new file mode 100644 index 00000000000..6f35b2faf3f --- /dev/null +++ b/net-p2p/py-libtorrent-rasterbar/Makefile @@ -0,0 +1,32 @@ +# Created by: Doug Barton +# $FreeBSD$ + +PORTNAME= libtorrent-rasterbar +DISTVERSION= 1.1.10 +PORTREVISION= 1 +CATEGORIES= net-p2p ipv6 python +MASTER_SITES= https://github.com/arvidn/libtorrent/releases/download/libtorrent-${PORTVERSION:S/./_/g}/ +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Python bindings for libtorrent-rasterbar + +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/../../COPYING + +LIB_DEPENDS= libtorrent-rasterbar.so:net-p2p/libtorrent-rasterbar \ + ${PY_BOOST} + +USES= iconv localbase python +USE_PYTHON= distutils autoplist + +CFLAGS+= -DTORRENT_DISABLE_LOGGING # undefined symbol: https://github.com/arvidn/libtorrent/issues/3331 +LDFLAGS+= ${LOCALBASE}/lib/libboost_python${PYTHON_SUFFIX}.so ${LOCALBASE}/lib/libiconv.so # fails to link libs: https://github.com/arvidn/libtorrent/issues/3330 + +WRKSRC_SUBDIR= bindings/python + +# ensure python paths are correctly identified +CONFIGURE_ENV= PYTHON_INCLUDEDIR="${PYTHON_INCLUDEDIR}" \ + PYTHON_VERSION="${PYTHON_VERSION}" + +.include diff --git a/net-p2p/py-libtorrent-rasterbar/distinfo b/net-p2p/py-libtorrent-rasterbar/distinfo new file mode 100644 index 00000000000..2bb772897d2 --- /dev/null +++ b/net-p2p/py-libtorrent-rasterbar/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1538852302 +SHA256 (libtorrent-rasterbar-1.1.10.tar.gz) = 07b2b391e0d16bc693d793e352338488a0e41f3130b70884bb2e0270ea00b8c2 +SIZE (libtorrent-rasterbar-1.1.10.tar.gz) = 3902542 diff --git a/net-p2p/py-libtorrent-rasterbar/files/patch-setup.py b/net-p2p/py-libtorrent-rasterbar/files/patch-setup.py new file mode 100644 index 00000000000..d7365e7de3e --- /dev/null +++ b/net-p2p/py-libtorrent-rasterbar/files/patch-setup.py @@ -0,0 +1,17 @@ +--- setup.py.orig 2018-10-06 18:51:57 UTC ++++ setup.py +@@ -131,11 +131,11 @@ else: + source_list = os.listdir(os.path.join(os.path.dirname(__file__), "src")) + source_list = [os.path.abspath(os.path.join(os.path.dirname(__file__), "src", s)) for s in source_list if s.endswith(".cpp")] + +- if extra_cmd: ++ if True or extra_cmd: + flags = flags_parser() + # ldflags must be parsed first to ensure the correct library search path order +- extra_link = flags.parse(ldflags) +- extra_compile = flags.parse(extra_cmd) ++ extra_link = flags.parse(os.environ['LDFLAGS']) ++ extra_compile = flags.parse(os.environ['CFLAGS']) + + # for some reason distutils uses the CC environment variable to determine + # the compiler to use for C++ diff --git a/net-p2p/py-libtorrent-rasterbar/pkg-descr b/net-p2p/py-libtorrent-rasterbar/pkg-descr new file mode 100644 index 00000000000..7fb71ee25e7 --- /dev/null +++ b/net-p2p/py-libtorrent-rasterbar/pkg-descr @@ -0,0 +1,4 @@ +The python binding of libtorrent, an open source C++ library implementing the +BitTorrent protocol. + +WWW: http://libtorrent.org/ diff --git a/net-p2p/py-tremc/Makefile b/net-p2p/py-tremc/Makefile index c97df129833..6f5c574dbc7 100644 --- a/net-p2p/py-tremc/Makefile +++ b/net-p2p/py-tremc/Makefile @@ -6,7 +6,7 @@ DISTVERSIONSUFFIX= -g54a873f CATEGORIES= net-p2p python PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -MAINTAINER= lebarondemerde@privacychain.ch +MAINTAINER= rigoletto@FreeBSD.org COMMENT= Console client for the BitTorrent client Transmission LICENSE= GPLv3 diff --git a/net-p2p/qbittorrent/Makefile b/net-p2p/qbittorrent/Makefile index 60ff69308ab..37add220366 100644 --- a/net-p2p/qbittorrent/Makefile +++ b/net-p2p/qbittorrent/Makefile @@ -3,6 +3,7 @@ PORTNAME= qbittorrent DISTVERSION= 4.1.3 +PORTREVISION= 1 CATEGORIES= net-p2p ipv6 MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION} diff --git a/net-p2p/transmission-cli/Makefile b/net-p2p/transmission-cli/Makefile index 61e5f71db5c..1f665e02f40 100644 --- a/net-p2p/transmission-cli/Makefile +++ b/net-p2p/transmission-cli/Makefile @@ -6,7 +6,7 @@ CATEGORIES+= net-p2p SLAVEPORT?= cli PKGNAMESUFFIX?= -cli -MAINTAINER= lebarondemerde@privacychain.ch +MAINTAINER= rigoletto@FreeBSD.org COMMENT= Meta-port for Transmission BitTorrent client LICENSE+= MIT diff --git a/net-p2p/transmission/Makefile b/net-p2p/transmission/Makefile index 11fce850339..56b331eecca 100644 --- a/net-p2p/transmission/Makefile +++ b/net-p2p/transmission/Makefile @@ -5,7 +5,7 @@ DISTVERSION= 2.94 PORTREVISION= 1 CATEGORIES= net-p2p -MAINTAINER= lebarondemerde@privacychain.ch +MAINTAINER= rigoletto@FreeBSD.org COMMENT= Meta-port for Transmission BitTorrent client LICENSE= GPLv2+ MIT diff --git a/net-p2p/tribler/Makefile b/net-p2p/tribler/Makefile index 8749f86b229..1d49fc6a10d 100644 --- a/net-p2p/tribler/Makefile +++ b/net-p2p/tribler/Makefile @@ -3,7 +3,7 @@ PORTNAME= tribler PORTVERSION= 6.5.2 -PORTREVISION= 8 +PORTREVISION= 10 CATEGORIES= net-p2p MASTER_SITES= https://github.com/Tribler/tribler/releases/download/v${PORTVERSION}/ DISTNAME= Tribler-v${PORTVERSION} @@ -22,7 +22,7 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}apsw>0:databases/py-apsw@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}pillow>0:graphics/py-pillow@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}gmpy>0:math/py-gmpy@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}netifaces>0:net/py-netifaces@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}libtorrent-rasterbar>=0.16.4:net-p2p/libtorrent-rasterbar-python@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}libtorrent-rasterbar>=0.16.4:net-p2p/py-libtorrent-rasterbar@${PY_FLAVOR} \ libsodium>0:security/libsodium \ ${PYTHON_PKGNAMEPREFIX}m2crypto>0:security/py-m2crypto@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}pycrypto>0:security/py-pycrypto@${PY_FLAVOR} \ diff --git a/net/bosh-bootloader/Makefile b/net/bosh-bootloader/Makefile index ac0c28cb41d..f5de4cc3b33 100644 --- a/net/bosh-bootloader/Makefile +++ b/net/bosh-bootloader/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= bosh-bootloader -PORTVERSION= 6.10.3 +PORTVERSION= 6.10.12 CATEGORIES= net sysutils MAINTAINER= dumbbell@FreeBSD.org diff --git a/net/bosh-bootloader/distinfo b/net/bosh-bootloader/distinfo index 8dbdb77fcc8..98003a8f32c 100644 --- a/net/bosh-bootloader/distinfo +++ b/net/bosh-bootloader/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1537782591 -SHA256 (cloudfoundry-bosh-bootloader-6.10.3-v6.10.3_GH0.tar.gz) = 3aef810ec7db101d0639acff9f1fd39023d0f583dfa351f7a8def0febae45b43 -SIZE (cloudfoundry-bosh-bootloader-6.10.3-v6.10.3_GH0.tar.gz) = 8558569 +TIMESTAMP = 1538562553 +SHA256 (cloudfoundry-bosh-bootloader-6.10.12-v6.10.12_GH0.tar.gz) = f27935c493a3de847f1eb70bac3a339eaeee1ba27d9e507091a85fadd0548b45 +SIZE (cloudfoundry-bosh-bootloader-6.10.12-v6.10.12_GH0.tar.gz) = 8561830 diff --git a/net/fiche/Makefile b/net/fiche/Makefile index 65d36767ce2..d3645fb59de 100644 --- a/net/fiche/Makefile +++ b/net/fiche/Makefile @@ -14,6 +14,7 @@ LICENSE= MIT USERS= ${PORTNAME} GROUPS= ${PORTNAME} +USES= compiler:c++11-lang USE_GITHUB= yes GH_ACCOUNT= solusipse diff --git a/net/frr4/Makefile b/net/frr4/Makefile index 6c8e4eb33b2..74bf5bf564a 100644 --- a/net/frr4/Makefile +++ b/net/frr4/Makefile @@ -3,7 +3,7 @@ PORTNAME= frr PORTVERSION= 4.0 DISTVERSIONPREFIX= frr- -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= net ipv6 PKGNAMESUFFIX= 4 diff --git a/net/frr4/files/frr.in b/net/frr4/files/frr.in index 20dbdd3248e..462d0a940a6 100644 --- a/net/frr4/files/frr.in +++ b/net/frr4/files/frr.in @@ -89,6 +89,7 @@ do_cmd() { local ret ret=0 + frr_cmd=$1 for daemon in ${frr_daemons}; do command=%%PREFIX%%/sbin/${daemon} required_files=%%ETCDIR%%/${daemon}.conf @@ -118,11 +119,11 @@ frr_cmd=$1 case "$1" in force*) - frr_cmd=${frr_cmd#force} - ;; + frr_cmd=${frr_cmd#force} + ;; fast*) - frr_cmd=${frr_cmd#fast} - ;; + frr_cmd=${frr_cmd#fast} + ;; esac shift @@ -131,24 +132,24 @@ if [ $# -ge 1 ]; then fi case "${frr_cmd}" in - start) - if [ -n "${frr_extralibs_path}" ]; then - /sbin/ldconfig -m ${frr_extralibs_path} - fi - # Why should I need to add this check ? - checkyesno frr_enable && do_cmd "start" - ;; + start|quietstart) + if [ -n "${frr_extralibs_path}" ]; then + /sbin/ldconfig -m ${frr_extralibs_path} + fi + # Why should I need to add this check ? + checkyesno frr_enable && do_cmd "start" + ;; stop) - frr_daemons=$(reverse_list ${frr_daemons}) - do_cmd "stop" - ;; + frr_daemons=$(reverse_list ${frr_daemons}) + do_cmd "stop" + ;; restart) - frr_daemons=$(reverse_list ${frr_daemons}) - do_cmd "stop" - frr_daemons=$(reverse_list ${frr_daemons}) - checkyesno frr_enable && do_cmd "start" - ;; + frr_daemons=$(reverse_list ${frr_daemons}) + do_cmd "stop" + frr_daemons=$(reverse_list ${frr_daemons}) + checkyesno frr_enable && do_cmd "start" + ;; *) - do_cmd "${frr_cmd}" - ;; + do_cmd "${frr_cmd}" + ;; esac diff --git a/net/gtk-vnc/Makefile b/net/gtk-vnc/Makefile index d9dc4a80263..d59c62e708c 100644 --- a/net/gtk-vnc/Makefile +++ b/net/gtk-vnc/Makefile @@ -19,7 +19,7 @@ LIB_DEPENDS= libgnutls.so:security/gnutls \ libsasl2.so:security/cyrus-sasl2 USE_GNOME= cairo gdkpixbuf2 gtk30 intltool introspection:build -USES= gettext gmake gnome libtool localbase pathfix pkgconfig tar:xz +USES= gettext gmake gnome libtool localbase pathfix pkgconfig python tar:xz USE_XORG= x11 USE_LDCONFIG= yes GNU_CONFIGURE= yes diff --git a/net/intel-ixl-kmod/Makefile b/net/intel-ixl-kmod/Makefile index 473a01da67f..20991b1fb9f 100644 --- a/net/intel-ixl-kmod/Makefile +++ b/net/intel-ixl-kmod/Makefile @@ -3,6 +3,7 @@ PORTNAME?= ixl PORTVERSION?= 1.9.13 +PORTREVISION?= 1 CATEGORIES= net MASTER_SITES= https://downloadmirror.intel.com/${MASTER_SITE_SUBDIR}/ \ http://downloadmirror.intel.com/${MASTER_SITE_SUBDIR}/ @@ -15,6 +16,8 @@ COMMENT?= 40 gigabit FreeBSD Base Driver for Intel(R) Network Connections LICENSE= BSD2CLAUSE +USES= kmod + # Present version of net/intel-em-kmod has issues building with netmap(4) # support on 11+. Narrowing netmap(4) support to this port only .if ${PORTNAME} == ixl @@ -30,15 +33,19 @@ NETMAP_ON_CFLAGS= -DDEV_NETMAP NETMAP_OFF_CFLAGS= -UDEV_NETMAP .endif -USES= kmod WRKSRC_SUBDIR= src SUB_FILES= pkg-message SUB_LIST= PORTNAME=${PORTNAME} MANPAGENAME?= ${PORTNAME} +MANPAGELINKS?= if_${PORTNAME} PLIST_FILES= ${KMODDIR}/if_${PORTNAME}_updated.ko \ man/man4/${MANPAGENAME}.4.gz +.for link in ${MANPAGELINKS} +PLIST_FILES+= man/man4/${link}.4.gz +.endfor + .include # Fixup for slave ports that use this as a master port. sbruno @@ -53,6 +60,10 @@ CFLAGS+= -DDEV_NETMAP do-install: ${INSTALL_KLD} ${WRKSRC}/if_${PORTNAME}.ko ${STAGEDIR}${KMODDIR}/if_${PORTNAME}_updated.ko - ${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.4 ${STAGEDIR}${MAN4PREFIX}/man/man4/ + ${INSTALL_MAN} ${WRKSRC}/${MANPAGENAME}.4 ${STAGEDIR}${MAN4PREFIX}/man/man4/ + +.for link in ${MANPAGELINKS} + ${LN} ${STAGEDIR}${MAN4PREFIX}/man/man4/${MANPAGENAME}.4 ${STAGEDIR}${MAN4PREFIX}/man/man4/${link}.4 +.endfor .include diff --git a/net/krdc-kde4/Makefile b/net/krdc-kde4/Makefile index 11b18db89a0..7c0c84a7eec 100644 --- a/net/krdc-kde4/Makefile +++ b/net/krdc-kde4/Makefile @@ -12,7 +12,7 @@ DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 LIB_DEPENDS= libvncserver.so:net/libvncserver \ - libtelepathy-qt4.so:net-im/telepathy-qt4 + libtelepathy-qt4.so:net-im/telepathy-qt@qt4 USES= cmake:outsource kde:4 qt:4 tar:xz USE_KDE= kdelibs automoc4 diff --git a/net/krfb-kde4/Makefile b/net/krfb-kde4/Makefile index 0c9a5d35983..fe7a784124a 100644 --- a/net/krfb-kde4/Makefile +++ b/net/krfb-kde4/Makefile @@ -11,7 +11,7 @@ COMMENT= VNC server for KDE DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -LIB_DEPENDS= libtelepathy-qt4.so:net-im/telepathy-qt4 +LIB_DEPENDS= libtelepathy-qt4.so:net-im/telepathy-qt@qt4 USES= alias cmake:outsource jpeg kde:4 qt:4 tar:xz USE_KDE= kdelibs automoc4 diff --git a/net/krfb/Makefile b/net/krfb/Makefile index 06f65bd3ed1..70f4c2cda29 100644 --- a/net/krfb/Makefile +++ b/net/krfb/Makefile @@ -22,6 +22,6 @@ USE_XORG= x11 xcb xdamage xext xtst OPTIONS_DEFINE= TELEPATHY DOCS OPTIONS_SUB= yes TELEPATHY_DESC= Support for Telepathy Tubes -TELEPATHY_LIB_DEPENDS= libtelepathy-qt5.so:net-im/telepathy-qt5 +TELEPATHY_LIB_DEPENDS= libtelepathy-qt5.so:net-im/telepathy-qt@qt5 .include diff --git a/net/libmaia/Makefile b/net/libmaia/Makefile index 4421f2c3d3d..6a9b406c0a6 100644 --- a/net/libmaia/Makefile +++ b/net/libmaia/Makefile @@ -10,7 +10,7 @@ CATEGORIES= net MAINTAINER= kde@FreeBSD.org COMMENT= XML-RPC lib for Qt -USES= gmake qmake qt:5 +USES= compiler:c++11-lang gmake qmake qt:5 USE_GITHUB= yes GH_ACCOUNT= wiedi USE_QT= buildtools_build network xml diff --git a/net/librouteros/Makefile b/net/librouteros/Makefile index b3451725381..93ac33e44ad 100644 --- a/net/librouteros/Makefile +++ b/net/librouteros/Makefile @@ -7,7 +7,7 @@ PORTREVISION= 5 CATEGORIES= net MASTER_SITES= http://verplant.org/librouteros/files/ -MAINTAINER= feld@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Library for communicating with network devices by MikroTik LICENSE= GPLv2 diff --git a/net/libwebsockets/Makefile b/net/libwebsockets/Makefile index 62fc44033ad..91ff02b679c 100644 --- a/net/libwebsockets/Makefile +++ b/net/libwebsockets/Makefile @@ -2,10 +2,9 @@ # $FreeBSD: head/net/libwebsockets/Makefile 446392 2017-07-22 12:02:56Z jbeich $ PORTNAME= libwebsockets -PORTVERSION= 2.2.2 +PORTVERSION= 2.4.2 DISTVERSIONPREFIX= v CATEGORIES= net devel -MASTER_SITES= GITHUB MAINTAINER= iblis@hs.ntnu.edu.tw COMMENT= C library for lightweight websocket clients and servers @@ -13,13 +12,13 @@ COMMENT= C library for lightweight websocket clients and servers LICENSE= LGPL21 LICENSE_FILE= ${WRKSRC}/LICENSE -USE_GITHUB= yes -GH_ACCOUNT= warmcat +USES= cmake pkgconfig ssl +USE_LDCONFIG= yes PORTSCOUT= limit:^v\d+\.* -USES= cmake pkgconfig ssl -USE_LDCONFIG= yes +USE_GITHUB= yes +GH_ACCOUNT= warmcat CMAKE_ARGS= -DLWS_WITHOUT_TESTAPPS=ON \ -DLWS_WITHOUT_TEST_SERVER=ON \ @@ -31,6 +30,7 @@ CMAKE_ARGS= -DLWS_WITHOUT_TESTAPPS=ON \ -DLWS_HAVE_X509_VERIFY_PARAM_set1_host=0 OPTIONS_DEFINE= HTTP2 HTTP_PROXY IPV6 LIBEV LIBUV UNIX_SOCK WEBSERVER PLUGINS +OPTIONS_DEFAULT=HTTP2 OPTIONS_SUB= yes HTTP_PROXY_DESC= HTTP proxy support @@ -54,7 +54,7 @@ LIBUV_LIB_DEPENDS= libuv.so:devel/libuv UNIX_SOCK_CMAKE_ON= -DLWS_UNIX_SOCK=ON WEBSERVER_CMAKE_ON= -DLWS_WITH_LWSWS=ON -WEBSERVER_LIB_DEPENDS= libuv.so:devel/libuv +WEBSERVER_IMPLIES= LIBUV PLUGINS_CMAKE_ON= -DLWS_WITH_PLUGINS=ON \ -DLWS_WITH_SERVER_STATUS=ON \ diff --git a/net/libwebsockets/distinfo b/net/libwebsockets/distinfo index 8cbb8b3fc2d..568f607a1ef 100644 --- a/net/libwebsockets/distinfo +++ b/net/libwebsockets/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1500465747 -SHA256 (warmcat-libwebsockets-v2.2.2_GH0.tar.gz) = e38a7d981fe87b9a86b1f1cddd1f9e062d3896c488e6b2a32cb700d4c959ecba -SIZE (warmcat-libwebsockets-v2.2.2_GH0.tar.gz) = 3548981 +TIMESTAMP = 1538641163 +SHA256 (warmcat-libwebsockets-v2.4.2_GH0.tar.gz) = 73012d7fcf428dedccc816e83a63a01462e27819d5537b8e0d0c7264bfacfad6 +SIZE (warmcat-libwebsockets-v2.4.2_GH0.tar.gz) = 3777160 diff --git a/net/libwebsockets/files/patch-CMakeLists.txt b/net/libwebsockets/files/patch-CMakeLists.txt index 22e72e469f9..0592f26fc7e 100644 --- a/net/libwebsockets/files/patch-CMakeLists.txt +++ b/net/libwebsockets/files/patch-CMakeLists.txt @@ -1,20 +1,20 @@ ---- CMakeLists.txt.orig 2016-10-06 19:19:50 UTC +--- CMakeLists.txt.orig 2018-03-08 10:28:37 UTC +++ CMakeLists.txt -@@ -682,7 +682,7 @@ if (CMAKE_COMPILER_IS_GNUCC OR CMAKE_COM - set(VISIBILITY_FLAG -fvisibility=hidden) - endif() - if (UNIX OR LWS_WITH_ESP8266) -- set(CMAKE_C_FLAGS "-Wall -Werror ${VISIBILITY_FLAG} ${CMAKE_C_FLAGS}" ) -+ set(CMAKE_C_FLAGS "-Wall ${VISIBILITY_FLAG} ${CMAKE_C_FLAGS}" ) - else() - set(CMAKE_C_FLAGS "-Wall ${VISIBILITY_FLAG} ${CMAKE_C_FLAGS}" ) - endif() -@@ -1416,7 +1416,7 @@ Cflags: -I\${includedir}" +@@ -1739,7 +1739,7 @@ Cflags: -I\${includedir}" ) install(FILES "${PROJECT_BINARY_DIR}/libwebsockets.pc" - DESTINATION lib${LIB_SUFFIX}/pkgconfig) + DESTINATION libdata/pkgconfig) - endif(UNIX) - # + file(WRITE "${PROJECT_BINARY_DIR}/libwebsockets_static.pc" + "prefix=\"${CMAKE_INSTALL_PREFIX}\" +@@ -1757,7 +1757,7 @@ Cflags: -I\${includedir}" + ) + + install(FILES "${PROJECT_BINARY_DIR}/libwebsockets_static.pc" +- DESTINATION lib${LIB_SUFFIX}/pkgconfig) ++ DESTINATION libdata/pkgconfig) + + + endif(UNIX) diff --git a/net/libwebsockets/pkg-plist b/net/libwebsockets/pkg-plist index e000a41b915..54306f2b9da 100644 --- a/net/libwebsockets/pkg-plist +++ b/net/libwebsockets/pkg-plist @@ -1,6 +1,7 @@ %%WEBSERVER%%bin/lwsws %%WEBSERVER%%include/lejp.h include/libwebsockets.h +include/lws-plugin-ssh.h include/lws_config.h lib/cmake/libwebsockets/LibwebsocketsConfig.cmake lib/cmake/libwebsockets/LibwebsocketsConfigVersion.cmake @@ -8,8 +9,11 @@ lib/cmake/libwebsockets/LibwebsocketsTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/libwebsockets/LibwebsocketsTargets.cmake lib/libwebsockets.a lib/libwebsockets.so -lib/libwebsockets.so.10 +lib/libwebsockets.so.12 libdata/pkgconfig/libwebsockets.pc +libdata/pkgconfig/libwebsockets_static.pc +%%DATADIR%%-test-server/lws-ssh-test-keys +%%DATADIR%%-test-server/lws-ssh-test-keys.pub %%PLUGINS%%%%DATADIR%%-test-server/generic-sessions/failed-login.html %%PLUGINS%%%%DATADIR%%-test-server/generic-sessions/index.html %%PLUGINS%%%%DATADIR%%-test-server/generic-sessions/lwsgs-logo.png diff --git a/net/libyang/Makefile b/net/libyang/Makefile index 949e850b8ef..84dee08cf07 100644 --- a/net/libyang/Makefile +++ b/net/libyang/Makefile @@ -4,7 +4,7 @@ PORTNAME= libyang PORTVERSION= 0.16 DISTVERSIONPREFIX= v DISTVERSIONSUFFIX= -r1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net MAINTAINER= olivier@FreeBSD.org @@ -15,7 +15,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libpcre.so:devel/pcre -USES= cmake +USES= cmake pkgconfig USE_LDCONFIG= yes USE_GITHUB= yes diff --git a/net/libyang/pkg-plist b/net/libyang/pkg-plist index 4fd15e20af6..8e7bded534e 100644 --- a/net/libyang/pkg-plist +++ b/net/libyang/pkg-plist @@ -14,4 +14,5 @@ lib/libyang/extensions/metadata.so lib/libyang/extensions/nacm.so lib/libyang/extensions/yangdata.so lib/libyang/user_types/user_date_and_time.so +libdata/pkgconfig/libyang.pc man/man1/yanglint.1.gz diff --git a/net/mDNSResponder/Makefile b/net/mDNSResponder/Makefile index 08d3f6af174..55e66c1f80e 100644 --- a/net/mDNSResponder/Makefile +++ b/net/mDNSResponder/Makefile @@ -2,9 +2,9 @@ # $FreeBSD$ PORTNAME= mDNSResponder -PORTVERSION= 878.30.4 +PORTVERSION= 878.70.2 CATEGORIES= net dns -MASTER_SITES= http://opensource.apple.com/tarballs/${PORTNAME}/ +MASTER_SITES= https://opensource.apple.com/tarballs/mDNSResponder/ MAINTAINER= sunpoet@FreeBSD.org COMMENT= Bonjour (zero-configuration networking) by Apple diff --git a/net/mDNSResponder/distinfo b/net/mDNSResponder/distinfo index e55535c2476..29f11647ada 100644 --- a/net/mDNSResponder/distinfo +++ b/net/mDNSResponder/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1517844631 -SHA256 (mDNSResponder-878.30.4.tar.gz) = 83ae1245ce8612438dd358a83c8c4a4f1348725d0dbf0703cf520882589229af -SIZE (mDNSResponder-878.30.4.tar.gz) = 2490030 +TIMESTAMP = 1538591479 +SHA256 (mDNSResponder-878.70.2.tar.gz) = cdd03171ca05f16ea987bba1f8b0c4847d3035283ea0f5fa0ade75f64ec83ed5 +SIZE (mDNSResponder-878.70.2.tar.gz) = 2497624 diff --git a/net/nfs-ganesha-kmod/Makefile b/net/nfs-ganesha-kmod/Makefile index 7f63eacf216..16dcbf20294 100644 --- a/net/nfs-ganesha-kmod/Makefile +++ b/net/nfs-ganesha-kmod/Makefile @@ -1,20 +1,19 @@ # $FreeBSD$ PORTNAME= nfs-ganesha-kmod +DISTVERSIONPREFIX= v DISTVERSION= 0.2 CATEGORIES= net -DISTVERSIONPREFIX= v MAINTAINER= fatih@gandi.net COMMENT= Modules to implement required syscalls for userspace fileservers LICENSE= BSD3CLAUSE -USES= kmod uidfix +USES= kmod USE_GITHUB= yes GH_ACCOUNT= Gandi -GH_PROJECT= nfs-ganesha-kmod GANESHA_MODULE= getfhat \ fhreadlink \ diff --git a/net/nfs-ganesha/Makefile b/net/nfs-ganesha/Makefile index b23ed1fafa3..131d9a683a6 100644 --- a/net/nfs-ganesha/Makefile +++ b/net/nfs-ganesha/Makefile @@ -1,29 +1,40 @@ # $FreeBSD$ PORTNAME= nfs-ganesha +DISTVERSIONPREFIX= V DISTVERSION= 2.7.0 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= net MAINTAINER= fatih@gandi.net COMMENT= NFS fileserver that runs in user mode LIB_DEPENDS= libdbus-1.so:devel/dbus -RUN_DEPENDS= ${KMODDIR}/getfhat.ko:net/nfs-ganesha-kmod +RUN_DEPENDS= nfs-ganesha-kmod>0:net/nfs-ganesha-kmod \ + ${PYTHON_PKGNAMEPREFIX}pyparsing>0:devel/py-pyparsing@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}gobject>0:devel/py-gobject@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}dbus>0:devel/py-dbus@${PY_FLAVOR} -USES= cmake bison kmod pkgconfig python:build +USES= cmake bison pkgconfig python:2.7 USE_RC_SUBR= ganesha USE_GITHUB= yes -GH_ACCOUNT= nfs-ganesha -GH_TAGNAME= V2.7.0 -CFLAGS+= -Wno-error GH_TUPLE= nfs-ganesha:ntirpc:v1.7.0:ganesha/src/libntirpc +CFLAGS+= -Wno-error + CMAKE_ARGS= -DLIB_INSTALL_DIR=${LOCALBASE}/lib -DUSE_GSS=OFF -DUSE_9P=OFF \ -DUSE_FSAL_PROXY=OFF -DUSE_FSAL_GPFS=OFF -DUSE_FSAL_CEPH=OFF \ -DUSE_FSAL_GLUSTER=OFF -DUSE_FSAL_RGW=OFF -DUSE_RADOS_RECOV=OFF \ -DUSE_DBUS=ON -DUSE_ADMIN_TOOLS=ON CMAKE_SOURCE_PATH= ${WRKSRC}/src +post-install: + @${RM} -rf ${STAGEDIR}${PREFIX}/var + @${MKDIR} ${STAGEDIR}/var/run/ganesha + @${MV} ${STAGEDIR}${PREFIX}/etc/ganesha/ganesha.conf ${STAGEDIR}${PREFIX}/etc/ganesha/ganesha.conf.sample + @${FIND} ${STAGEDIR}${PYTHON_SITELIBDIR} -name '*.pyc' -delete + @${PYTHON_CMD} -m compileall -d ${PYTHON_SITELIBDIR} ${STAGEDIR}${PYTHON_SITELIBDIR} + @${PYTHON_CMD} -O -m compileall -d ${PYTHON_SITELIBDIR} ${STAGEDIR}${PYTHON_SITELIBDIR} + .include diff --git a/net/nfs-ganesha/distinfo b/net/nfs-ganesha/distinfo index dea3b000ab0..1c1642558e0 100644 --- a/net/nfs-ganesha/distinfo +++ b/net/nfs-ganesha/distinfo @@ -1,5 +1,5 @@ -TIMESTAMP = 1537179573 -SHA256 (nfs-ganesha-nfs-ganesha-2.7.0-V2.7.0_GH0.tar.gz) = a458bd461049e4800bad24a2fd01335de6020f46ee495d5b2621eb3270097bca -SIZE (nfs-ganesha-nfs-ganesha-2.7.0-V2.7.0_GH0.tar.gz) = 1691800 +TIMESTAMP = 1538575190 +SHA256 (nfs-ganesha-nfs-ganesha-V2.7.0_GH0.tar.gz) = a458bd461049e4800bad24a2fd01335de6020f46ee495d5b2621eb3270097bca +SIZE (nfs-ganesha-nfs-ganesha-V2.7.0_GH0.tar.gz) = 1691800 SHA256 (nfs-ganesha-ntirpc-v1.7.0_GH0.tar.gz) = 61c72b481cd75945852df2f9ee5a6080e6f8cca7e57f4c7bc950f6cea0a7fbdb SIZE (nfs-ganesha-ntirpc-v1.7.0_GH0.tar.gz) = 373195 diff --git a/net/nfs-ganesha/pkg-plist b/net/nfs-ganesha/pkg-plist index 24bdde2adb4..13163b084da 100644 --- a/net/nfs-ganesha/pkg-plist +++ b/net/nfs-ganesha/pkg-plist @@ -1,131 +1,144 @@ -include/ntirpc/libc_private.h -include/ntirpc/version.h -include/ntirpc/intrinsic.h -include/ntirpc/rpcsvc/crypt.h -include/ntirpc/reentrant.h -include/ntirpc/getpeereid.h -include/ntirpc/un-namespace.h +bin/fake_recall +bin/ganesha.nfsd +bin/ganesha_conf +bin/ganesha_mgr +bin/ganesha_stats +bin/get_clientids +bin/grace_period +@sample etc/ganesha/ganesha.conf.sample include/ntirpc/fpmath.h +include/ntirpc/getpeereid.h +include/ntirpc/intrinsic.h +include/ntirpc/libc_private.h include/ntirpc/lttng/rpcping.h include/ntirpc/lttng/xprt.h +include/ntirpc/misc/abstract_atomic.h +include/ntirpc/misc/bsd_epoll.h +include/ntirpc/misc/city.h +include/ntirpc/misc/citycrc.h +include/ntirpc/misc/event.h +include/ntirpc/misc/opr.h +include/ntirpc/misc/opr_queue.h +include/ntirpc/misc/os_epoll.h +include/ntirpc/misc/portable.h +include/ntirpc/misc/queue.h +include/ntirpc/misc/rbtree.h +include/ntirpc/misc/rbtree_x.h include/ntirpc/misc/socket.h include/ntirpc/misc/stdint.h include/ntirpc/misc/stdio.h -include/ntirpc/misc/os_epoll.h -include/ntirpc/misc/portable.h -include/ntirpc/misc/rbtree_x.h -include/ntirpc/misc/bsd_epoll.h -include/ntirpc/misc/citycrc.h -include/ntirpc/misc/opr.h -include/ntirpc/misc/event.h -include/ntirpc/misc/city.h -include/ntirpc/misc/abstract_atomic.h -include/ntirpc/misc/queue.h -include/ntirpc/misc/wait_queue.h -include/ntirpc/misc/opr_queue.h include/ntirpc/misc/timespec.h +include/ntirpc/misc/wait_queue.h include/ntirpc/misc/winpthreads.h -include/ntirpc/misc/rbtree.h include/ntirpc/namespace.h -include/ntirpc/rpc/pmap_prot.h -include/ntirpc/rpc/rpc_com.h -include/ntirpc/rpc/xdr_inline.h -include/ntirpc/rpc/gss_internal.h -include/ntirpc/rpc/rpcb_prot.x -include/ntirpc/rpc/rpcb_prot.h -include/ntirpc/rpc/tirpc_compat.h -include/ntirpc/rpc/xdr.h -include/ntirpc/rpc/rpc_msg.h -include/ntirpc/rpc/svc_rqst.h -include/ntirpc/rpc/auth_inline.h -include/ntirpc/rpc/rpc_cksum.h -include/ntirpc/rpc/clnt.h -include/ntirpc/rpc/des_crypt.h -include/ntirpc/rpc/auth_stat.h -include/ntirpc/rpc/clnt_stat.h -include/ntirpc/rpc/xdr_ioq.h +include/ntirpc/netconfig.h +include/ntirpc/reentrant.h +include/ntirpc/rpc/auth.h include/ntirpc/rpc/auth_gss.h -include/ntirpc/rpc/rpcent.h -include/ntirpc/rpc/rpcb_clnt.h -include/ntirpc/rpc/rpc_err.h -include/ntirpc/rpc/svc.h +include/ntirpc/rpc/auth_inline.h +include/ntirpc/rpc/auth_stat.h include/ntirpc/rpc/auth_unix.h +include/ntirpc/rpc/clnt.h +include/ntirpc/rpc/clnt_stat.h +include/ntirpc/rpc/des.h +include/ntirpc/rpc/des_crypt.h +include/ntirpc/rpc/gss_internal.h +include/ntirpc/rpc/nettype.h +include/ntirpc/rpc/pmap_prot.h +include/ntirpc/rpc/pmap_rmt.h +include/ntirpc/rpc/pool_queue.h +include/ntirpc/rpc/rpc.h +include/ntirpc/rpc/rpc_cksum.h +include/ntirpc/rpc/rpc_com.h +include/ntirpc/rpc/rpc_err.h +include/ntirpc/rpc/rpc_msg.h +include/ntirpc/rpc/rpcb_clnt.h +include/ntirpc/rpc/rpcb_prot.h +include/ntirpc/rpc/rpcb_prot.x +include/ntirpc/rpc/rpcent.h +include/ntirpc/rpc/svc.h +include/ntirpc/rpc/svc_auth.h +include/ntirpc/rpc/svc_rqst.h +include/ntirpc/rpc/tirpc_compat.h include/ntirpc/rpc/types.h include/ntirpc/rpc/work_pool.h -include/ntirpc/rpc/des.h -include/ntirpc/rpc/pool_queue.h -include/ntirpc/rpc/nettype.h -include/ntirpc/rpc/auth.h -include/ntirpc/rpc/svc_auth.h -include/ntirpc/rpc/pmap_rmt.h -include/ntirpc/rpc/rpc.h -include/ntirpc/netconfig.h -bin/ganesha_stats -bin/ganesha_conf -bin/ganesha_mgr -bin/fake_recall -bin/get_clientids -bin/grace_period -bin/ganesha.nfsd -lib/libntirpc.so.1.7 -lib/libntirpc.so.1.7.0 -lib/libntirpc.so -lib/ganesha/libfsalmem.so.4 -lib/ganesha/libfsalnull.so +include/ntirpc/rpc/xdr.h +include/ntirpc/rpc/xdr_inline.h +include/ntirpc/rpc/xdr_ioq.h +include/ntirpc/rpcsvc/crypt.h +include/ntirpc/un-namespace.h +include/ntirpc/version.h lib/ganesha/libfsaldummylustre.so lib/ganesha/libfsalmem.so -lib/ganesha/libfsalvfs.so +lib/ganesha/libfsalmem.so.4 lib/ganesha/libfsalmem.so.4.2.0 -lib/python2.7/site-packages/Ganesha/config_editor.pyc -lib/python2.7/site-packages/Ganesha/glib_dbus_stats.pyc -lib/python2.7/site-packages/Ganesha/glib_dbus_stats.py -lib/python2.7/site-packages/Ganesha/io_stats.py -lib/python2.7/site-packages/Ganesha/admin.py -lib/python2.7/site-packages/Ganesha/ganesha_mgr_utils.pyc -lib/python2.7/site-packages/Ganesha/admin.pyc -lib/python2.7/site-packages/Ganesha/QtUI/log_settings.py -lib/python2.7/site-packages/Ganesha/QtUI/__init__.py -lib/python2.7/site-packages/Ganesha/QtUI/exports_table.pyc -lib/python2.7/site-packages/Ganesha/QtUI/log_settings.pyc -lib/python2.7/site-packages/Ganesha/QtUI/exports_table.py -lib/python2.7/site-packages/Ganesha/QtUI/clients_table.pyc -lib/python2.7/site-packages/Ganesha/QtUI/__init__.pyc -lib/python2.7/site-packages/Ganesha/QtUI/clients_table.py -lib/python2.7/site-packages/Ganesha/io_stats.pyc -lib/python2.7/site-packages/Ganesha/__init__.py -lib/python2.7/site-packages/Ganesha/config_editor.py -lib/python2.7/site-packages/Ganesha/__init__.pyc -lib/python2.7/site-packages/Ganesha/export_mgr.py -lib/python2.7/site-packages/Ganesha/ganesha_mgr_utils.py -lib/python2.7/site-packages/Ganesha/log_mgr.py -lib/python2.7/site-packages/Ganesha/client_mgr.pyc -lib/python2.7/site-packages/Ganesha/log_mgr.pyc -lib/python2.7/site-packages/Ganesha/export_mgr.pyc -lib/python2.7/site-packages/Ganesha/client_mgr.py -lib/python2.7/site-packages/ganeshactl-2.7.0-py2.7.egg-info +lib/ganesha/libfsalnull.so +lib/ganesha/libfsalvfs.so +lib/libntirpc.so +lib/libntirpc.so.1.7 +lib/libntirpc.so.1.7.0 +%%PYTHON_SITELIBDIR%%/Ganesha/QtUI/__init__.py +%%PYTHON_SITELIBDIR%%/Ganesha/QtUI/__init__.pyc +%%PYTHON_SITELIBDIR%%/Ganesha/QtUI/__init__.pyo +%%PYTHON_SITELIBDIR%%/Ganesha/QtUI/clients_table.py +%%PYTHON_SITELIBDIR%%/Ganesha/QtUI/clients_table.pyc +%%PYTHON_SITELIBDIR%%/Ganesha/QtUI/clients_table.pyo +%%PYTHON_SITELIBDIR%%/Ganesha/QtUI/exports_table.py +%%PYTHON_SITELIBDIR%%/Ganesha/QtUI/exports_table.pyc +%%PYTHON_SITELIBDIR%%/Ganesha/QtUI/exports_table.pyo +%%PYTHON_SITELIBDIR%%/Ganesha/QtUI/log_settings.py +%%PYTHON_SITELIBDIR%%/Ganesha/QtUI/log_settings.pyc +%%PYTHON_SITELIBDIR%%/Ganesha/QtUI/log_settings.pyo +%%PYTHON_SITELIBDIR%%/Ganesha/__init__.py +%%PYTHON_SITELIBDIR%%/Ganesha/__init__.pyc +%%PYTHON_SITELIBDIR%%/Ganesha/__init__.pyo +%%PYTHON_SITELIBDIR%%/Ganesha/admin.py +%%PYTHON_SITELIBDIR%%/Ganesha/admin.pyc +%%PYTHON_SITELIBDIR%%/Ganesha/admin.pyo +%%PYTHON_SITELIBDIR%%/Ganesha/client_mgr.py +%%PYTHON_SITELIBDIR%%/Ganesha/client_mgr.pyc +%%PYTHON_SITELIBDIR%%/Ganesha/client_mgr.pyo +%%PYTHON_SITELIBDIR%%/Ganesha/config_editor.py +%%PYTHON_SITELIBDIR%%/Ganesha/config_editor.pyc +%%PYTHON_SITELIBDIR%%/Ganesha/config_editor.pyo +%%PYTHON_SITELIBDIR%%/Ganesha/export_mgr.py +%%PYTHON_SITELIBDIR%%/Ganesha/export_mgr.pyc +%%PYTHON_SITELIBDIR%%/Ganesha/export_mgr.pyo +%%PYTHON_SITELIBDIR%%/Ganesha/ganesha_mgr_utils.py +%%PYTHON_SITELIBDIR%%/Ganesha/ganesha_mgr_utils.pyc +%%PYTHON_SITELIBDIR%%/Ganesha/ganesha_mgr_utils.pyo +%%PYTHON_SITELIBDIR%%/Ganesha/glib_dbus_stats.py +%%PYTHON_SITELIBDIR%%/Ganesha/glib_dbus_stats.pyc +%%PYTHON_SITELIBDIR%%/Ganesha/glib_dbus_stats.pyo +%%PYTHON_SITELIBDIR%%/Ganesha/io_stats.py +%%PYTHON_SITELIBDIR%%/Ganesha/io_stats.pyc +%%PYTHON_SITELIBDIR%%/Ganesha/io_stats.pyo +%%PYTHON_SITELIBDIR%%/Ganesha/log_mgr.py +%%PYTHON_SITELIBDIR%%/Ganesha/log_mgr.pyc +%%PYTHON_SITELIBDIR%%/Ganesha/log_mgr.pyo +%%PYTHON_SITELIBDIR%%/ganeshactl-%%PYTHON_VER%%.0-py%%PYTHON_VER%%.egg-info libdata/pkgconfig/libntirpc.pc -share/doc/ganesha/config_samples/vfs.conf -share/doc/ganesha/config_samples/config.txt -share/doc/ganesha/config_samples/logrotate_ganesha -share/doc/ganesha/config_samples/gpfs.ganesha.exports.conf -share/doc/ganesha/config_samples/gpfs.ganesha.nfsd.conf -share/doc/ganesha/config_samples/ganesha.conf.example -share/doc/ganesha/config_samples/gpfs.ganesha.main.conf -share/doc/ganesha/config_samples/logrotate_fsal_gluster -share/doc/ganesha/config_samples/gluster.conf -share/doc/ganesha/config_samples/mem.conf -share/doc/ganesha/config_samples/gpfs.ganesha.log.conf -share/doc/ganesha/config_samples/export.txt -share/doc/ganesha/config_samples/ds.conf -share/doc/ganesha/config_samples/ceph.conf -share/doc/ganesha/config_samples/rgw.conf share/doc/ganesha/config_samples/README -share/doc/ganesha/config_samples/logging.txt -share/doc/ganesha/config_samples/xfs.conf -share/doc/ganesha/config_samples/rgw_bucket.conf +share/doc/ganesha/config_samples/ceph.conf +share/doc/ganesha/config_samples/config.txt +share/doc/ganesha/config_samples/ds.conf +share/doc/ganesha/config_samples/export.txt +share/doc/ganesha/config_samples/ganesha.conf.example +share/doc/ganesha/config_samples/gluster.conf share/doc/ganesha/config_samples/gpfs.conf -share/doc/ganesha/config_samples/proxy.conf +share/doc/ganesha/config_samples/gpfs.ganesha.exports.conf +share/doc/ganesha/config_samples/gpfs.ganesha.log.conf +share/doc/ganesha/config_samples/gpfs.ganesha.main.conf +share/doc/ganesha/config_samples/gpfs.ganesha.nfsd.conf +share/doc/ganesha/config_samples/logging.txt +share/doc/ganesha/config_samples/logrotate_fsal_gluster +share/doc/ganesha/config_samples/logrotate_ganesha share/doc/ganesha/config_samples/lustre.conf +share/doc/ganesha/config_samples/mem.conf +share/doc/ganesha/config_samples/proxy.conf +share/doc/ganesha/config_samples/rgw.conf +share/doc/ganesha/config_samples/rgw_bucket.conf +share/doc/ganesha/config_samples/vfs.conf +share/doc/ganesha/config_samples/xfs.conf share/man/man8/ganesha_conf.8 -etc/ganesha/ganesha.conf -@dir var/run/ganesha +@dir /var/run/ganesha diff --git a/net/ns3/Makefile b/net/ns3/Makefile index 665328d906e..6e40a852c01 100644 --- a/net/ns3/Makefile +++ b/net/ns3/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= ns3 -PORTVERSION= 3.28.1 +PORTVERSION= 3.29 CATEGORIES= net MASTER_SITES= https://www.nsnam.org/release/ DISTNAME= ns-allinone-${PORTVERSION} diff --git a/net/ns3/distinfo b/net/ns3/distinfo index 8e9802e011a..c318f29b27a 100644 --- a/net/ns3/distinfo +++ b/net/ns3/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1535537143 -SHA256 (ns-allinone-3.28.1.tar.bz2) = 1a777216ef88cfa3ede700582781c4b7ae69b26649406b8749d5588d5d43ea8e -SIZE (ns-allinone-3.28.1.tar.bz2) = 27165424 +TIMESTAMP = 1538661355 +SHA256 (ns-allinone-3.29.tar.bz2) = 4ddfa5c07845c41265efaf25fb3d18d66b916e8885984e6a98d884e057bd2d55 +SIZE (ns-allinone-3.29.tar.bz2) = 27158284 diff --git a/net/ns3/pkg-plist b/net/ns3/pkg-plist index 585f05adf20..4d3a87eb57e 100644 --- a/net/ns3/pkg-plist +++ b/net/ns3/pkg-plist @@ -28,6 +28,7 @@ bin/ns%%VERSION%%-bench-simulator%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-double-probe-example%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-dsdv-manet%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-dsr%%DEBUG_SUFX%% +%%EXAMPLES%%bin/ns%%VERSION%%-dsss-validation%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-dumbbell-animation%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-dynamic-global-routing%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-energy-model-example%%DEBUG_SUFX%% @@ -90,7 +91,6 @@ bin/ns%%VERSION%%-bench-simulator%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-main-ptr%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-main-random-topology%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-main-random-variable-stream%%DEBUG_SUFX%% -%%EXAMPLES%%bin/ns%%VERSION%%-main-random-variable%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-main-random-walk%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-main-simple%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-main-test-sync%%DEBUG_SUFX%% @@ -169,6 +169,7 @@ bin/ns%%VERSION%%-print-introspected-doxygen%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-test-string-value-formatting%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-third-distributed%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-third%%DEBUG_SUFX%% +%%EXAMPLES%%bin/ns%%VERSION%%-three-gpp-http-example%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-time-probe-example%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-topology-example-sim%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-traffic-control%%DEBUG_SUFX%% @@ -199,6 +200,8 @@ bin/ns%%VERSION%%-print-introspected-doxygen%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-wifi-hidden-terminal%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-wifi-manager-example%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-wifi-multi-tos%%DEBUG_SUFX%% +%%EXAMPLES%%bin/ns%%VERSION%%-wifi-pcf%%DEBUG_SUFX%% +%%EXAMPLES%%bin/ns%%VERSION%%-wifi-phy-configuration%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-wifi-phy-test%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-wifi-simple-adhoc-grid%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-wifi-simple-adhoc%%DEBUG_SUFX%% @@ -257,6 +260,7 @@ include/ns%%VERSION%%/ns3/arf-wifi-manager.h include/ns%%VERSION%%/ns3/arp-cache.h include/ns%%VERSION%%/ns3/arp-header.h include/ns%%VERSION%%/ns3/arp-l3-protocol.h +include/ns%%VERSION%%/ns3/arp-queue-disc-item.h include/ns%%VERSION%%/ns3/ascii-file.h include/ns%%VERSION%%/ns3/ascii-test.h include/ns%%VERSION%%/ns3/assert.h @@ -275,6 +279,7 @@ include/ns%%VERSION%%/ns3/basic-energy-source.h include/ns%%VERSION%%/ns3/block-ack-agreement.h include/ns%%VERSION%%/ns3/block-ack-cache.h include/ns%%VERSION%%/ns3/block-ack-manager.h +include/ns%%VERSION%%/ns3/block-ack-type.h include/ns%%VERSION%%/ns3/boolean-probe.h include/ns%%VERSION%%/ns3/boolean.h include/ns%%VERSION%%/ns3/box.h @@ -314,6 +319,8 @@ include/ns%%VERSION%%/ns3/candidate-queue.h include/ns%%VERSION%%/ns3/capability-information.h include/ns%%VERSION%%/ns3/cara-wifi-manager.h include/ns%%VERSION%%/ns3/cc-helper.h +include/ns%%VERSION%%/ns3/cf-parameter-set.h +include/ns%%VERSION%%/ns3/channel-access-manager.h include/ns%%VERSION%%/ns3/channel-coordinator.h include/ns%%VERSION%%/ns3/channel-list.h include/ns%%VERSION%%/ns3/channel-manager.h @@ -358,9 +365,6 @@ include/ns%%VERSION%%/ns3/data-collection-object.h include/ns%%VERSION%%/ns3/data-collector.h include/ns%%VERSION%%/ns3/data-output-interface.h include/ns%%VERSION%%/ns3/data-rate.h -include/ns%%VERSION%%/ns3/dca-txop.h -include/ns%%VERSION%%/ns3/dcf-manager.h -include/ns%%VERSION%%/ns3/dcf-state.h include/ns%%VERSION%%/ns3/default-channel-scheduler.h include/ns%%VERSION%%/ns3/default-deleter.h include/ns%%VERSION%%/ns3/default-simulator-impl.h @@ -404,7 +408,6 @@ include/ns%%VERSION%%/ns3/dsss-error-rate-model.h include/ns%%VERSION%%/ns3/dsss-parameter-set.h include/ns%%VERSION%%/ns3/dynamic-queue-limits.h include/ns%%VERSION%%/ns3/edca-parameter-set.h -include/ns%%VERSION%%/ns3/edca-txop-n.h include/ns%%VERSION%%/ns3/empty.h include/ns%%VERSION%%/ns3/energy-harvester-container.h include/ns%%VERSION%%/ns3/energy-harvester-helper.h @@ -515,6 +518,7 @@ include/ns%%VERSION%%/ns3/ie-dot11s-rann.h include/ns%%VERSION%%/ns3/inet-socket-address.h include/ns%%VERSION%%/ns3/inet-topology-reader.h include/ns%%VERSION%%/ns3/inet6-socket-address.h +include/ns%%VERSION%%/ns3/infrastructure-wifi-mac.h include/ns%%VERSION%%/ns3/int-to-type.h include/ns%%VERSION%%/ns3/int64x64-cairo.h include/ns%%VERSION%%/ns3/int64x64-double.h @@ -817,6 +821,7 @@ include/ns%%VERSION%%/ns3/point-to-point-star.h include/ns%%VERSION%%/ns3/pointer.h include/ns%%VERSION%%/ns3/position-allocator.h include/ns%%VERSION%%/ns3/ppp-header.h +include/ns%%VERSION%%/ns3/prio-queue-disc.h include/ns%%VERSION%%/ns3/probe.h include/ns%%VERSION%%/ns3/propagation-cache.h include/ns%%VERSION%%/ns3/propagation-delay-model.h @@ -826,6 +831,7 @@ include/ns%%VERSION%%/ns3/propagation-module.h include/ns%%VERSION%%/ns3/pss-ff-mac-scheduler.h include/ns%%VERSION%%/ns3/ptr.h include/ns%%VERSION%%/ns3/qos-blocked-destinations.h +include/ns%%VERSION%%/ns3/qos-txop.h include/ns%%VERSION%%/ns3/qos-utils.h include/ns%%VERSION%%/ns3/queue-disc-container.h include/ns%%VERSION%%/ns3/queue-disc.h @@ -955,10 +961,13 @@ include/ns%%VERSION%%/ns3/tcp-option-sack-permitted.h include/ns%%VERSION%%/ns3/tcp-option-sack.h include/ns%%VERSION%%/ns3/tcp-option-ts.h include/ns%%VERSION%%/ns3/tcp-option-winscale.h +include/ns%%VERSION%%/ns3/tcp-prr-recovery.h +include/ns%%VERSION%%/ns3/tcp-recovery-ops.h include/ns%%VERSION%%/ns3/tcp-rx-buffer.h include/ns%%VERSION%%/ns3/tcp-scalable.h include/ns%%VERSION%%/ns3/tcp-socket-base.h include/ns%%VERSION%%/ns3/tcp-socket-factory.h +include/ns%%VERSION%%/ns3/tcp-socket-state.h include/ns%%VERSION%%/ns3/tcp-socket.h include/ns%%VERSION%%/ns3/tcp-tx-buffer.h include/ns%%VERSION%%/ns3/tcp-vegas.h @@ -969,6 +978,11 @@ include/ns%%VERSION%%/ns3/tdbet-ff-mac-scheduler.h include/ns%%VERSION%%/ns3/tdmt-ff-mac-scheduler.h include/ns%%VERSION%%/ns3/tdtbfq-ff-mac-scheduler.h include/ns%%VERSION%%/ns3/test.h +include/ns%%VERSION%%/ns3/three-gpp-http-client.h +include/ns%%VERSION%%/ns3/three-gpp-http-header.h +include/ns%%VERSION%%/ns3/three-gpp-http-helper.h +include/ns%%VERSION%%/ns3/three-gpp-http-server.h +include/ns%%VERSION%%/ns3/three-gpp-http-variables.h include/ns%%VERSION%%/ns3/time-data-calculators.h include/ns%%VERSION%%/ns3/time-probe.h include/ns%%VERSION%%/ns3/time-series-adaptor.h @@ -989,6 +1003,7 @@ include/ns%%VERSION%%/ns3/trailer.h include/ns%%VERSION%%/ns3/tta-ff-mac-scheduler.h include/ns%%VERSION%%/ns3/tv-spectrum-transmitter-helper.h include/ns%%VERSION%%/ns3/tv-spectrum-transmitter.h +include/ns%%VERSION%%/ns3/txop.h include/ns%%VERSION%%/ns3/type-id.h include/ns%%VERSION%%/ns3/type-name.h include/ns%%VERSION%%/ns3/type-traits.h @@ -1068,6 +1083,7 @@ include/ns%%VERSION%%/ns3/wifi-mac-trailer.h include/ns%%VERSION%%/ns3/wifi-mac.h include/ns%%VERSION%%/ns3/wifi-mode.h include/ns%%VERSION%%/ns3/wifi-module.h +include/ns%%VERSION%%/ns3/wifi-mpdu-type.h include/ns%%VERSION%%/ns3/wifi-net-device.h include/ns%%VERSION%%/ns3/wifi-phy-listener.h include/ns%%VERSION%%/ns3/wifi-phy-standard.h diff --git a/net/openafs/Makefile b/net/openafs/Makefile index ca10b1442ba..184d7c83457 100644 --- a/net/openafs/Makefile +++ b/net/openafs/Makefile @@ -21,7 +21,7 @@ LICENSE_NAME= IBM Public License Version 1.0 LICENSE_FILE= ${WRKSRC}/doc/LICENSE LICENSE_PERMS= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept -BROKEN_FreeBSD_12= does not build (use of undeclared identifier 'ROOTINO') +BROKEN= fails to build ONLY_FOR_ARCHS= i386 amd64 AFS_DISTVERSION= 1.6.22 diff --git a/net/p5-Acme-HTTP/Makefile b/net/p5-Acme-HTTP/Makefile index c447608d5c4..909b60e1469 100644 --- a/net/p5-Acme-HTTP/Makefile +++ b/net/p5-Acme-HTTP/Makefile @@ -13,9 +13,9 @@ COMMENT= High-level access to Net::HTTP::NB and Net::HTTPS::NB LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Net-HTTP>=0:net/p5-Net-HTTP \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Net-HTTP>=0:net/p5-Net-HTTP \ p5-Net-HTTPS-NB>=0:net/p5-Net-HTTPS-NB -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USE_PERL5= configure diff --git a/net/p5-Amazon-SQS-Simple/Makefile b/net/p5-Amazon-SQS-Simple/Makefile index 0e2ee23b7ea..80261f36c7c 100644 --- a/net/p5-Amazon-SQS-Simple/Makefile +++ b/net/p5-Amazon-SQS-Simple/Makefile @@ -15,11 +15,11 @@ COMMENT= OO API for accessing the Amazon Simple Queue Service LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Digest-HMAC>=0:security/p5-Digest-HMAC \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Digest-HMAC>=0:security/p5-Digest-HMAC \ p5-URI>=0:net/p5-URI \ p5-XML-Simple>=0:textproc/p5-XML-Simple \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/net/p5-AnyEvent-MQTT/Makefile b/net/p5-AnyEvent-MQTT/Makefile index 9595953dbe4..d2b39eac824 100644 --- a/net/p5-AnyEvent-MQTT/Makefile +++ b/net/p5-AnyEvent-MQTT/Makefile @@ -15,12 +15,12 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Net-MQTT>=0:net/p5-Net-MQTT \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Net-MQTT>=0:net/p5-Net-MQTT \ p5-AnyEvent>=0:devel/p5-AnyEvent \ p5-Module-Pluggable>=0:devel/p5-Module-Pluggable \ p5-Sub-Name>=0:devel/p5-Sub-Name -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Pod-Usage>=0:devel/p5-Pod-Usage USES= perl5 diff --git a/net/p5-AnyEvent-RabbitMQ/Makefile b/net/p5-AnyEvent-RabbitMQ/Makefile index dbba798a9ad..3dd87154a4a 100644 --- a/net/p5-AnyEvent-RabbitMQ/Makefile +++ b/net/p5-AnyEvent-RabbitMQ/Makefile @@ -14,14 +14,14 @@ COMMENT= Asynchronous and multi channel Perl AMQP client LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-AnyEvent>=0:devel/p5-AnyEvent \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-AnyEvent>=0:devel/p5-AnyEvent \ p5-Devel-GlobalDestruction>=0:devel/p5-Devel-GlobalDestruction \ p5-File-ShareDir>=0:devel/p5-File-ShareDir \ p5-List-MoreUtils>=0:lang/p5-List-MoreUtils \ p5-Net-AMQP>=0.6:net/p5-Net-AMQP \ p5-Readonly>=1.03:devel/p5-Readonly \ p5-namespace-clean>=0:devel/p5-namespace-clean -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Exception>=0:devel/p5-Test-Exception NO_ARCH= yes diff --git a/net/p5-AnyEvent-Twitter/Makefile b/net/p5-AnyEvent-Twitter/Makefile index a53f2f90a86..4d32358f947 100644 --- a/net/p5-AnyEvent-Twitter/Makefile +++ b/net/p5-AnyEvent-Twitter/Makefile @@ -11,12 +11,12 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Implementation of the Twitter API for AnyEvent -BUILD_DEPENDS= p5-AnyEvent>=5.34:devel/p5-AnyEvent \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-AnyEvent>=5.34:devel/p5-AnyEvent \ p5-AnyEvent-HTTP>=2.12:www/p5-AnyEvent-HTTP \ p5-JSON>=2.53:converters/p5-JSON \ p5-Net-OAuth>=0.27:net/p5-Net-OAuth \ p5-URI>=1.58:net/p5-URI -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/net/p5-Apache2-SOAP/Makefile b/net/p5-Apache2-SOAP/Makefile index 7631f4f75e0..871e0d70a4a 100644 --- a/net/p5-Apache2-SOAP/Makefile +++ b/net/p5-Apache2-SOAP/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= numisemis@yahoo.com COMMENT= Apache2 mod_perl2 SOAP Server -BUILD_DEPENDS= ${APACHE_PKGNAMEPREFIX}mod_perl2>=0:www/mod_perl2 \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= ${APACHE_PKGNAMEPREFIX}mod_perl2>=0:www/mod_perl2 \ p5-SOAP-Lite>=0:net/p5-SOAP-Lite -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= apache:2.2+ perl5 USE_PERL5= configure diff --git a/net/p5-BBS-Client/Makefile b/net/p5-BBS-Client/Makefile index 6deb536a1c4..f4e48bf31d9 100644 --- a/net/p5-BBS-Client/Makefile +++ b/net/p5-BBS-Client/Makefile @@ -15,8 +15,8 @@ COMMENT= Client Module For BBS Systems LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Net-Telnet>=0:net/p5-Net-Telnet -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Net-Telnet>=0:net/p5-Net-Telnet USES= perl5 USE_PERL5= configure diff --git a/net/p5-BBS-UserInfo-Maple3/Makefile b/net/p5-BBS-UserInfo-Maple3/Makefile index 23e3e3a4c0d..7aa0e0ab3a2 100644 --- a/net/p5-BBS-UserInfo-Maple3/Makefile +++ b/net/p5-BBS-UserInfo-Maple3/Makefile @@ -15,8 +15,8 @@ COMMENT= Get user information of Maple3-style BBS LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Expect>=0:lang/p5-Expect -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Expect>=0:lang/p5-Expect NO_ARCH= yes USE_PERL5= configure diff --git a/net/p5-BBS-UserInfo-Maple3itoc/Makefile b/net/p5-BBS-UserInfo-Maple3itoc/Makefile index 9947bec9884..b7d2230edad 100644 --- a/net/p5-BBS-UserInfo-Maple3itoc/Makefile +++ b/net/p5-BBS-UserInfo-Maple3itoc/Makefile @@ -15,8 +15,8 @@ COMMENT= Get user information of Maple3itoc-style BBS LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Expect>=0:lang/p5-Expect -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Expect>=0:lang/p5-Expect NO_ARCH= yes USE_PERL5= configure diff --git a/net/p5-BBS-UserInfo-Ptt/Makefile b/net/p5-BBS-UserInfo-Ptt/Makefile index b50f37ca9c7..700a6cdb5e0 100644 --- a/net/p5-BBS-UserInfo-Ptt/Makefile +++ b/net/p5-BBS-UserInfo-Ptt/Makefile @@ -15,8 +15,8 @@ COMMENT= Get user information of PTT-style BBS LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Expect>=0:lang/p5-Expect -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Expect>=0:lang/p5-Expect NO_ARCH= yes USE_PERL5= configure diff --git a/net/p5-BBS-UserInfo-SOB/Makefile b/net/p5-BBS-UserInfo-SOB/Makefile index ac580cd7112..d9d3d7f2162 100644 --- a/net/p5-BBS-UserInfo-SOB/Makefile +++ b/net/p5-BBS-UserInfo-SOB/Makefile @@ -15,8 +15,8 @@ COMMENT= Get user information of SOB-style BBS LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Expect>=0:lang/p5-Expect -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Expect>=0:lang/p5-Expect NO_ARCH= yes USE_PERL5= configure diff --git a/net/p5-BBS-UserInfo-Wretch/Makefile b/net/p5-BBS-UserInfo-Wretch/Makefile index 78a90f38274..3170de38821 100644 --- a/net/p5-BBS-UserInfo-Wretch/Makefile +++ b/net/p5-BBS-UserInfo-Wretch/Makefile @@ -15,8 +15,8 @@ COMMENT= Get user information of Wretch-style BBS LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Expect>=0:lang/p5-Expect -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Expect>=0:lang/p5-Expect NO_ARCH= yes USE_PERL5= configure diff --git a/net/p5-Beanstalk-Client/Makefile b/net/p5-Beanstalk-Client/Makefile index 06967ad5b74..7779efce629 100644 --- a/net/p5-Beanstalk-Client/Makefile +++ b/net/p5-Beanstalk-Client/Makefile @@ -11,10 +11,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= vsevolod@FreeBSD.org COMMENT= Perl API for beanstalkd, a distributed queue daemon -BUILD_DEPENDS= p5-YAML-Syck>=0:textproc/p5-YAML-Syck \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-YAML-Syck>=0:textproc/p5-YAML-Syck \ p5-Class-Accessor>=0:devel/p5-Class-Accessor \ p5-Error>=0:lang/p5-Error -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/net/p5-Daemon-Generic/Makefile b/net/p5-Daemon-Generic/Makefile index 71f1aaca047..f88bc8443e9 100644 --- a/net/p5-Daemon-Generic/Makefile +++ b/net/p5-Daemon-Generic/Makefile @@ -10,12 +10,12 @@ PKGNAMEPREFIX= p5- MAINTAINER= danilo@FreeBSD.org COMMENT= Framework to provide start/stop/reload for a daemon -BUILD_DEPENDS= p5-File-Flock>=0:devel/p5-File-Flock \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-File-Flock>=0:devel/p5-File-Flock \ p5-File-Slurp>=0:devel/p5-File-Slurp \ p5-AnyEvent>=0:devel/p5-AnyEvent \ p5-Event>=0:devel/p5-Event \ p5-Eval-LineNumbers>=0:devel/p5-Eval-LineNumbers -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/net/p5-EasyTCP/Makefile b/net/p5-EasyTCP/Makefile index 79fed74451d..b7f84cf88e2 100644 --- a/net/p5-EasyTCP/Makefile +++ b/net/p5-EasyTCP/Makefile @@ -12,8 +12,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Easily create TCP/IP clients and servers -BUILD_DEPENDS= p5-Crypt-RSA>=0:security/p5-Crypt-RSA -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Crypt-RSA>=0:security/p5-Crypt-RSA USES= perl5 USE_PERL5= configure diff --git a/net/p5-Event-tcp/Makefile b/net/p5-Event-tcp/Makefile index 4e2fe23996f..1e5cfeb5d46 100644 --- a/net/p5-Event-tcp/Makefile +++ b/net/p5-Event-tcp/Makefile @@ -14,9 +14,9 @@ COMMENT= Glue code to build client-server style TCP-based services LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Event>=0:devel/p5-Event \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Event>=0:devel/p5-Event \ p5-Ioctl>=0:devel/p5-Ioctl -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/net/p5-File-Rsync/Makefile b/net/p5-File-Rsync/Makefile index c2ea2d593c2..18aeac45c9f 100644 --- a/net/p5-File-Rsync/Makefile +++ b/net/p5-File-Rsync/Makefile @@ -13,9 +13,9 @@ COMMENT= Perl convenience wrapper for the rsync(1) program LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= rsync:net/rsync \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= rsync:net/rsync \ p5-IPC-Run3>=0.042:devel/p5-IPC-Run3 -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/net/p5-Frontier-RPC/Makefile b/net/p5-Frontier-RPC/Makefile index 1cbb2782000..09a43cff45f 100644 --- a/net/p5-Frontier-RPC/Makefile +++ b/net/p5-Frontier-RPC/Makefile @@ -13,9 +13,9 @@ DISTNAME= ${PORTNAME}-0.07b4 MAINTAINER= perl@FreeBSD.org COMMENT= Frontier::RPC implements UserLand Software's XML RPC -BUILD_DEPENDS= p5-XML-Parser>=0:textproc/p5-XML-Parser \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-XML-Parser>=0:textproc/p5-XML-Parser \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/net/p5-Google-SAML-Request/Makefile b/net/p5-Google-SAML-Request/Makefile index 72b8635c282..64560f40e1b 100644 --- a/net/p5-Google-SAML-Request/Makefile +++ b/net/p5-Google-SAML-Request/Makefile @@ -13,10 +13,10 @@ COMMENT= Create or parse Google SAML requests LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-TimeDate>0:devel/p5-TimeDate \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-TimeDate>0:devel/p5-TimeDate \ p5-URI>0:net/p5-URI \ p5-XML-Simple>0:textproc/p5-XML-Simple -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Exception>=0:devel/p5-Test-Exception USES= perl5 diff --git a/net/p5-Google-SAML-Response/Makefile b/net/p5-Google-SAML-Response/Makefile index 553e02f7ce3..05043936f72 100644 --- a/net/p5-Google-SAML-Response/Makefile +++ b/net/p5-Google-SAML-Response/Makefile @@ -13,7 +13,8 @@ COMMENT= SAML responses for Google SSO implementation LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Crypt-OpenSSL-Bignum>=0:security/p5-Crypt-OpenSSL-Bignum \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Crypt-OpenSSL-Bignum>=0:security/p5-Crypt-OpenSSL-Bignum \ p5-Crypt-OpenSSL-DSA>=0:security/p5-Crypt-OpenSSL-DSA \ p5-Crypt-OpenSSL-RSA>=0:security/p5-Crypt-OpenSSL-RSA \ p5-File-Which>=0:sysutils/p5-File-Which \ @@ -21,7 +22,6 @@ BUILD_DEPENDS= p5-Crypt-OpenSSL-Bignum>=0:security/p5-Crypt-OpenSSL-Bignum \ p5-HTML-Parser>=0:www/p5-HTML-Parser \ p5-TimeDate>=0:devel/p5-TimeDate \ p5-XML-CanonicalizeXML>=0:textproc/p5-XML-CanonicalizeXML -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Exception>=0:devel/p5-Test-Exception USES= perl5 diff --git a/net/p5-Growl-GNTP/Makefile b/net/p5-Growl-GNTP/Makefile index 70b1230b753..0c2b08a97a5 100644 --- a/net/p5-Growl-GNTP/Makefile +++ b/net/p5-Growl-GNTP/Makefile @@ -13,9 +13,9 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Crypt-CBC>=2.29:security/p5-Crypt-CBC \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Crypt-CBC>=2.29:security/p5-Crypt-CBC \ p5-Data-UUID>=0.149:devel/p5-Data-UUID -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= modbuildtiny diff --git a/net/p5-IO-Socket-Multicast6/Makefile b/net/p5-IO-Socket-Multicast6/Makefile index faf3b2c2fd4..37ddab8ab48 100644 --- a/net/p5-IO-Socket-Multicast6/Makefile +++ b/net/p5-IO-Socket-Multicast6/Makefile @@ -14,11 +14,11 @@ COMMENT= Send and receive IPv4 and IPv6 multicast messages LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-IO-Interface>=1.01:net/p5-IO-Interface \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-IO-Interface>=1.01:net/p5-IO-Interface \ p5-IO-Socket-INET6>=0:net/p5-IO-Socket-INET6 \ p5-Socket-Multicast6>=0.01:net/p5-Socket-Multicast6 \ p5-Socket6>=0.19:net/p5-Socket6 -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= modbuild diff --git a/net/p5-IO-Socket-Timeout/Makefile b/net/p5-IO-Socket-Timeout/Makefile index 2092e9ca90f..bc61f3a7076 100644 --- a/net/p5-IO-Socket-Timeout/Makefile +++ b/net/p5-IO-Socket-Timeout/Makefile @@ -13,8 +13,8 @@ COMMENT= IO::Socket with read/write timeout LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-PerlIO-via-Timeout>=0.32:devel/p5-PerlIO-via-Timeout -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-PerlIO-via-Timeout>=0.32:devel/p5-PerlIO-via-Timeout NO_ARCH= yes diff --git a/net/p5-IP-Country/Makefile b/net/p5-IP-Country/Makefile index abca0c6b9f2..07b7c5027fc 100644 --- a/net/p5-IP-Country/Makefile +++ b/net/p5-IP-Country/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= dikshie@lapi.itb.ac.id COMMENT= Fast lookup of country codes from IP addresses -BUILD_DEPENDS= p5-Geography-Countries>=0:misc/p5-Geography-Countries -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Geography-Countries>=0:misc/p5-Geography-Countries USES= perl5 USE_PERL5= configure diff --git a/net/p5-Kafka/Makefile b/net/p5-Kafka/Makefile index 0f0a57b851c..db14bd01aad 100644 --- a/net/p5-Kafka/Makefile +++ b/net/p5-Kafka/Makefile @@ -15,7 +15,8 @@ COMMENT= Apache Kafka interface for Perl LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Compress-Snappy>=0:archivers/p5-Compress-Snappy \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Compress-Snappy>=0:archivers/p5-Compress-Snappy \ p5-Try-Tiny>=0:lang/p5-Try-Tiny \ p5-Const-Fast>=0:devel/p5-Const-Fast \ p5-Data-Compare>=0:devel/p5-Data-Compare \ @@ -24,7 +25,6 @@ BUILD_DEPENDS= p5-Compress-Snappy>=0:archivers/p5-Compress-Snappy \ p5-Sys-SigAction>=0:devel/p5-Sys-SigAction \ p5-Scalar-Util-Numeric>=0:devel/p5-Scalar-Util-Numeric \ p5-Data-HexDump-Range>=0:devel/p5-Data-HexDump-Range -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/net/p5-MaxMind-DB-Common/Makefile b/net/p5-MaxMind-DB-Common/Makefile index 7a3d167156d..fef02f36704 100644 --- a/net/p5-MaxMind-DB-Common/Makefile +++ b/net/p5-MaxMind-DB-Common/Makefile @@ -15,13 +15,13 @@ COMMENT= Code shared by the DB reader and writer modules LICENSE= ART20 LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Data-Dumper-Concise>=0:devel/p5-Data-Dumper-Concise \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Data-Dumper-Concise>=0:devel/p5-Data-Dumper-Concise \ p5-DateTime>=0:devel/p5-DateTime \ p5-List-AllUtils>=0:devel/p5-List-AllUtils \ p5-Moo>=0:devel/p5-Moo \ p5-MooX-StrictConstructor>=0:devel/p5-MooX-StrictConstructor \ p5-namespace-autoclean>=0:devel/p5-namespace-autoclean -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USE_PERL5= configure diff --git a/net/p5-MaxMind-DB-Reader/Makefile b/net/p5-MaxMind-DB-Reader/Makefile index cfbd74dc5be..ae36baaa128 100644 --- a/net/p5-MaxMind-DB-Reader/Makefile +++ b/net/p5-MaxMind-DB-Reader/Makefile @@ -14,7 +14,8 @@ COMMENT= Read MaxMind DB files LICENSE= ART20 LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Data-IEEE754>=0:devel/p5-Data-IEEE754 \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Data-IEEE754>=0:devel/p5-Data-IEEE754 \ p5-Data-Printer>=0:devel/p5-Data-Printer \ p5-Data-Validate-IP>=0.25:net-mgmt/p5-Data-Validate-IP \ p5-DateTime>=0:devel/p5-DateTime \ @@ -25,7 +26,6 @@ BUILD_DEPENDS= p5-Data-IEEE754>=0:devel/p5-Data-IEEE754 \ p5-MooX-StrictConstructor>=0:devel/p5-MooX-StrictConstructor \ p5-Role-Tiny>=0:devel/p5-Role-Tiny \ p5-namespace-autoclean>=0:devel/p5-namespace-autoclean -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Path-Class>=0.27:devel/p5-Path-Class \ p5-Test-Bits>=0:devel/p5-Test-Bits \ p5-Test-Fatal>=0:devel/p5-Test-Fatal \ diff --git a/net/p5-MaxMind-DB-Writer/Makefile b/net/p5-MaxMind-DB-Writer/Makefile index 83a164b9b9f..c76941e57d5 100644 --- a/net/p5-MaxMind-DB-Writer/Makefile +++ b/net/p5-MaxMind-DB-Writer/Makefile @@ -15,7 +15,8 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Data-Dumper-Concise>=0:devel/p5-Data-Dumper-Concise \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Data-Dumper-Concise>=0:devel/p5-Data-Dumper-Concise \ p5-Data-IEEE754>=0:devel/p5-Data-IEEE754 \ p5-Digest-SHA1>=0:security/p5-Digest-SHA1 \ p5-Math-Int128>=0.21:math/p5-Math-Int128 \ @@ -30,7 +31,6 @@ BUILD_DEPENDS= p5-Data-Dumper-Concise>=0:devel/p5-Data-Dumper-Concise \ p5-Sereal-Encoder>=3.002:converters/p5-Sereal-Encoder \ p5-Test-Deep>=0:devel/p5-Test-Deep \ p5-namespace-autoclean>=0:devel/p5-namespace-autoclean -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Data-Printer>=0:devel/p5-Data-Printer \ p5-Devel-Refcount>=0:devel/p5-Devel-Refcount \ p5-List-AllUtils>=0:devel/p5-List-AllUtils \ diff --git a/net/p5-Net-ACME2/Makefile b/net/p5-Net-ACME2/Makefile index 5827872e723..f873eff745c 100644 --- a/net/p5-Net-ACME2/Makefile +++ b/net/p5-Net-ACME2/Makefile @@ -11,7 +11,8 @@ COMMENT= Interface to the Let's Encrypt ACMEv2 API LICENSE= ART20 -BUILD_DEPENDS= p5-Call-Context>=0.02:devel/p5-Call-Context \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Call-Context>=0.02:devel/p5-Call-Context \ p5-Crypt-Format>=0.06:security/p5-Crypt-Format \ p5-Crypt-Perl>=0.17:security/p5-Crypt-Perl \ p5-Crypt-OpenSSL-Bignum>=0.06:security/p5-Crypt-OpenSSL-Bignum \ @@ -27,7 +28,6 @@ BUILD_DEPENDS= p5-Call-Context>=0.02:devel/p5-Call-Context \ p5-Test-Exception>=0.43:devel/p5-Test-Exception \ p5-Test-NoWarnings>=1.04:devel/p5-Test-NoWarnings \ p5-X-Tiny>=0.13:devel/p5-X-Tiny -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/net/p5-Net-AMQP-RabbitMQ/Makefile b/net/p5-Net-AMQP-RabbitMQ/Makefile index 2d6a1b6ed6a..7c4e7342397 100644 --- a/net/p5-Net-AMQP-RabbitMQ/Makefile +++ b/net/p5-Net-AMQP-RabbitMQ/Makefile @@ -12,8 +12,8 @@ COMMENT= Interact with RabbitMQ over AMQP using librabbitmq NOT_FOR_ARCHS= mips mips64 NOT_FOR_ARCHS_REASON= Endianness not known -BUILD_DEPENDS= p5-Math-Int64>0.34:math/p5-Math-Int64 -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Math-Int64>0.34:math/p5-Math-Int64 USES= perl5 USE_PERL5= configure diff --git a/net/p5-Net-AMQP/Makefile b/net/p5-Net-AMQP/Makefile index 67158de457d..90cddade1b4 100644 --- a/net/p5-Net-AMQP/Makefile +++ b/net/p5-Net-AMQP/Makefile @@ -14,11 +14,11 @@ COMMENT= Advanced Message Queue Protocol (de)serialization and representation LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-XML-LibXML>=0:textproc/p5-XML-LibXML \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-XML-LibXML>=0:textproc/p5-XML-LibXML \ p5-Class-Accessor>=0:devel/p5-Class-Accessor \ p5-Class-Data-Inheritable>=0:devel/p5-Class-Data-Inheritable \ p5-Params-Validate>=0:devel/p5-Params-Validate -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Deep>=0:devel/p5-Test-Deep USES= perl5 diff --git a/net/p5-Net-Address-Ethernet/Makefile b/net/p5-Net-Address-Ethernet/Makefile index 0d5ac00d9ef..971e59afc1b 100644 --- a/net/p5-Net-Address-Ethernet/Makefile +++ b/net/p5-Net-Address-Ethernet/Makefile @@ -13,10 +13,10 @@ COMMENT= Find hardware ethernet address LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Env-Path>=0:devel/p5-Env-Path \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Env-Path>=0:devel/p5-Env-Path \ p5-Net-Ifconfig-Wrapper>=0:net/p5-Net-Ifconfig-Wrapper \ p5-Regexp-Common>=0:textproc/p5-Regexp-Common -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/net/p5-Net-Address-IPv4-Local/Makefile b/net/p5-Net-Address-IPv4-Local/Makefile index 346c57dd959..8084c0086af 100644 --- a/net/p5-Net-Address-IPv4-Local/Makefile +++ b/net/p5-Net-Address-IPv4-Local/Makefile @@ -14,8 +14,8 @@ COMMENT= Class for discovering the local system's IP address LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Error>=0:lang/p5-Error -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Error>=0:lang/p5-Error USES= perl5 USE_PERL5= modbuild diff --git a/net/p5-Net-Amazon-EC2/Makefile b/net/p5-Net-Amazon-EC2/Makefile index 2e3f0fbe483..742e7993597 100644 --- a/net/p5-Net-Amazon-EC2/Makefile +++ b/net/p5-Net-Amazon-EC2/Makefile @@ -13,13 +13,13 @@ COMMENT= Perl interface to the Amazon Elastic Compute Cloud LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-LWP-Protocol-https>=0:www/p5-LWP-Protocol-https \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-LWP-Protocol-https>=0:www/p5-LWP-Protocol-https \ p5-Moose>=0.38:devel/p5-Moose \ p5-Params-Validate>=0:devel/p5-Params-Validate \ p5-XML-Simple>=2.18:textproc/p5-XML-Simple \ p5-libwww>=0:www/p5-libwww \ p5-Test-Exception>=0.31:devel/p5-Test-Exception -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Exception>=0:devel/p5-Test-Exception USES= perl5 diff --git a/net/p5-Net-Amazon-MechanicalTurk/Makefile b/net/p5-Net-Amazon-MechanicalTurk/Makefile index 9538784c5b7..18ce5142e31 100644 --- a/net/p5-Net-Amazon-MechanicalTurk/Makefile +++ b/net/p5-Net-Amazon-MechanicalTurk/Makefile @@ -13,14 +13,14 @@ COMMENT= Perl interface to the Amazon Mechanical Turk LICENSE= APACHE20 -BUILD_DEPENDS= p5-Digest-HMAC>=0:security/p5-Digest-HMAC \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Digest-HMAC>=0:security/p5-Digest-HMAC \ p5-IO-String>=0:devel/p5-IO-String \ p5-Mozilla-CA>=0:www/p5-Mozilla-CA \ p5-Net-SSLeay>=1.33:security/p5-Net-SSLeay \ p5-URI>=0:net/p5-URI \ p5-XML-Parser>=0:textproc/p5-XML-Parser \ p5-libwww>=6:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 shebangfix USE_PERL5= configure diff --git a/net/p5-Net-Amazon-S3/Makefile b/net/p5-Net-Amazon-S3/Makefile index 0b7d3bf9757..8d7ab516aed 100644 --- a/net/p5-Net-Amazon-S3/Makefile +++ b/net/p5-Net-Amazon-S3/Makefile @@ -13,7 +13,8 @@ COMMENT= Use the Amazon S3 - Simple Storage Service LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Class-Accessor>=0:devel/p5-Class-Accessor \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Accessor>=0:devel/p5-Class-Accessor \ p5-Data-Stream-Bulk>=0.06:devel/p5-Data-Stream-Bulk \ p5-DateTime-Format-HTTP>=0:devel/p5-DateTime-Format-HTTP \ p5-DateTime-Format-ISO8601>=0:devel/p5-DateTime-Format-ISO8601 \ @@ -32,7 +33,6 @@ BUILD_DEPENDS= p5-Class-Accessor>=0:devel/p5-Class-Accessor \ p5-VM-EC2-Security-CredentialCache>=0:net/p5-VM-EC2-Security-CredentialCache \ p5-XML-LibXML>=0:textproc/p5-XML-LibXML \ p5-libwww>=6.03:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Exception>=0:devel/p5-Test-Exception \ p5-Test-LoadAllModules>=0:devel/p5-Test-LoadAllModules \ p5-Test-MockTime>=0:devel/p5-Test-MockTime \ diff --git a/net/p5-Net-Amazon-Thumbnail/Makefile b/net/p5-Net-Amazon-Thumbnail/Makefile index a92372d436e..159bd8a216b 100644 --- a/net/p5-Net-Amazon-Thumbnail/Makefile +++ b/net/p5-Net-Amazon-Thumbnail/Makefile @@ -14,12 +14,12 @@ COMMENT= Perl interface to Amazon Alexa Site Thumbnail web service LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Class-Accessor>=0:devel/p5-Class-Accessor \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Accessor>=0:devel/p5-Class-Accessor \ p5-Digest-HMAC>=0:security/p5-Digest-HMAC \ p5-URI>=0:net/p5-URI \ p5-XML-XPath>=0:textproc/p5-XML-XPath \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Exception>=0.15:devel/p5-Test-Exception USES= perl5 diff --git a/net/p5-Net-Amazon/Makefile b/net/p5-Net-Amazon/Makefile index 36f33fad844..7c0e3667221 100644 --- a/net/p5-Net-Amazon/Makefile +++ b/net/p5-Net-Amazon/Makefile @@ -14,11 +14,11 @@ COMMENT= Framework for accessing amazon.com via SOAP and XML/HTTP LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Log-Log4perl>=0:devel/p5-Log-Log4perl \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Log-Log4perl>=0:devel/p5-Log-Log4perl \ p5-URI>=0:net/p5-URI \ p5-XML-Simple>=0:textproc/p5-XML-Simple \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/net/p5-Net-Appliance-Phrasebook/Makefile b/net/p5-Net-Appliance-Phrasebook/Makefile index bafdb916346..7ea59b47895 100644 --- a/net/p5-Net-Appliance-Phrasebook/Makefile +++ b/net/p5-Net-Appliance-Phrasebook/Makefile @@ -14,11 +14,11 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Class-Data-Inheritable>=0:devel/p5-Class-Data-Inheritable \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Data-Inheritable>=0:devel/p5-Class-Data-Inheritable \ p5-Data-Phrasebook>=0:textproc/p5-Data-Phrasebook \ p5-Data-Phrasebook-Loader-YAML>=0:textproc/p5-Data-Phrasebook-Loader-YAML \ p5-List-MoreUtils>=0:lang/p5-List-MoreUtils -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/net/p5-Net-Appliance-Session/Makefile b/net/p5-Net-Appliance-Session/Makefile index a5d2ed3b950..b0bf0122ab4 100644 --- a/net/p5-Net-Appliance-Session/Makefile +++ b/net/p5-Net-Appliance-Session/Makefile @@ -13,14 +13,14 @@ COMMENT= Run command-line sessions to network appliances LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-IO-Prompt-Tiny>=0:devel/p5-IO-Prompt-Tiny \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-IO-Prompt-Tiny>=0:devel/p5-IO-Prompt-Tiny \ p5-Moo>=0:devel/p5-Moo \ p5-MooX-Types-MooseLike>=0:devel/p5-MooX-Types-MooseLike \ p5-Net-CLI-Interact>=2.300002:net/p5-Net-CLI-Interact \ p5-Term-ReadPassword>=0:devel/p5-Term-ReadPassword \ p5-Text-Glob>=0:textproc/p5-Text-Glob \ p5-Try-Tiny>=0:lang/p5-Try-Tiny -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/net/p5-Net-Blogger/Makefile b/net/p5-Net-Blogger/Makefile index a3cec61f743..f4c18452931 100644 --- a/net/p5-Net-Blogger/Makefile +++ b/net/p5-Net-Blogger/Makefile @@ -11,11 +11,11 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= OOP-ish interface for accessing a weblog via the XML-RPC API -BUILD_DEPENDS= p5-Error>=0:lang/p5-Error \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Error>=0:lang/p5-Error \ p5-URI>=0:net/p5-URI \ p5-libwww>=0:www/p5-libwww \ p5-SOAP-Lite>0.55:net/p5-SOAP-Lite -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Term-ReadKey>=0:devel/p5-Term-ReadKey USES= perl5 diff --git a/net/p5-Net-CLI-Interact/Makefile b/net/p5-Net-CLI-Interact/Makefile index de07ba59620..1ec79d49810 100644 --- a/net/p5-Net-CLI-Interact/Makefile +++ b/net/p5-Net-CLI-Interact/Makefile @@ -13,7 +13,8 @@ COMMENT= Toolkit for CLI Automation LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Class-Load>=0:devel/p5-Class-Load \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Load>=0:devel/p5-Class-Load \ p5-Class-Mix>=0:devel/p5-Class-Mix \ p5-Config-Any>=0.27:devel/p5-Config-Any \ p5-File-ShareDir>=1:devel/p5-File-ShareDir \ @@ -25,7 +26,6 @@ BUILD_DEPENDS= p5-Class-Load>=0:devel/p5-Class-Load \ p5-MooX-Types-MooseLike>=0:devel/p5-MooX-Types-MooseLike \ p5-Net-Telnet>=0:net/p5-Net-Telnet \ p5-Path-Class>=0:devel/p5-Path-Class -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USE_PERL5= modbuild diff --git a/net/p5-Net-CascadeCopy/Makefile b/net/p5-Net-CascadeCopy/Makefile index d82c0a855ba..605c1df7353 100644 --- a/net/p5-Net-CascadeCopy/Makefile +++ b/net/p5-Net-CascadeCopy/Makefile @@ -11,11 +11,11 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Rapidly propagate files to many servers in multiple locations -BUILD_DEPENDS= p5-Class-Std-Utils>=v0.0.0:devel/p5-Class-Std-Utils \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Std-Utils>=v0.0.0:devel/p5-Class-Std-Utils \ p5-Mouse>=0:devel/p5-Mouse \ p5-Log-Log4perl>=0:devel/p5-Log-Log4perl \ p5-Proc-Queue>=0:devel/p5-Proc-Queue -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Differences>=0:devel/p5-Test-Differences USES= perl5 diff --git a/net/p5-Net-Cassandra-Easy/Makefile b/net/p5-Net-Cassandra-Easy/Makefile index 77e7859d8f7..8fb5fb09fce 100644 --- a/net/p5-Net-Cassandra-Easy/Makefile +++ b/net/p5-Net-Cassandra-Easy/Makefile @@ -14,12 +14,12 @@ COMMENT= Perlish interface to the Cassandra database LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Class-Accessor>=0:devel/p5-Class-Accessor \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Accessor>=0:devel/p5-Class-Accessor \ p5-Bit-Vector>=0:math/p5-Bit-Vector \ p5-Hash-Merge>=0:textproc/p5-Hash-Merge \ p5-Modern-Perl>=0:lang/p5-Modern-Perl \ p5-Moose>=0:devel/p5-Moose -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 shebangfix USE_PERL5= configure diff --git a/net/p5-Net-Cassandra/Makefile b/net/p5-Net-Cassandra/Makefile index a224e8482a3..36339e4952d 100644 --- a/net/p5-Net-Cassandra/Makefile +++ b/net/p5-Net-Cassandra/Makefile @@ -14,9 +14,9 @@ COMMENT= Interface to Cassandra LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Moose>=0:devel/p5-Moose \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Moose>=0:devel/p5-Moose \ p5-MooseX-StrictConstructor>=0:devel/p5-MooseX-StrictConstructor -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USE_PERL5= configure diff --git a/net/p5-Net-DAV-Server/Makefile b/net/p5-Net-DAV-Server/Makefile index ab570af8237..b93bb460152 100644 --- a/net/p5-Net-DAV-Server/Makefile +++ b/net/p5-Net-DAV-Server/Makefile @@ -12,7 +12,8 @@ DISTNAME= ${PORTNAME}-${PORTVERSION:C/\.(.)$/\1/} MAINTAINER= perl@FreeBSD.org COMMENT= Provide a DAV Server -BUILD_DEPENDS= p5-DBD-SQLite>=0:databases/p5-DBD-SQLite \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-DBD-SQLite>=0:databases/p5-DBD-SQLite \ p5-DBI>=0:databases/p5-DBI \ p5-Digest-SHA1>=0:security/p5-Digest-SHA1 \ p5-File-Find-Rule-Filesys-Virtual>=0:devel/p5-File-Find-Rule-Filesys-Virtual \ @@ -20,7 +21,6 @@ BUILD_DEPENDS= p5-DBD-SQLite>=0:databases/p5-DBD-SQLite \ p5-URI>=0:net/p5-URI \ p5-XML-LibXML>=1.62000:textproc/p5-XML-LibXML \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= modbuild diff --git a/net/p5-Net-Delicious/Makefile b/net/p5-Net-Delicious/Makefile index 36b8c56b7a5..4b0016ab64d 100644 --- a/net/p5-Net-Delicious/Makefile +++ b/net/p5-Net-Delicious/Makefile @@ -13,7 +13,8 @@ COMMENT= OOP for managing posts on del.icio.us LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Config-Simple>=2:devel/p5-Config-Simple \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Config-Simple>=2:devel/p5-Config-Simple \ p5-Crypt-SSLeay>=0:security/p5-Crypt-SSLeay \ p5-IO-stringy>=2.1:devel/p5-IO-stringy \ p5-Log-Dispatch>=2:devel/p5-Log-Dispatch \ @@ -22,7 +23,6 @@ BUILD_DEPENDS= p5-Config-Simple>=2:devel/p5-Config-Simple \ p5-XML-Simple>=2:textproc/p5-XML-Simple \ p5-YAML>=0.35:textproc/p5-YAML \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/net/p5-Net-Dropbox-API/Makefile b/net/p5-Net-Dropbox-API/Makefile index 6743931d1d3..9f8349bccf4 100644 --- a/net/p5-Net-Dropbox-API/Makefile +++ b/net/p5-Net-Dropbox-API/Makefile @@ -11,14 +11,14 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Dropbox API interface -BUILD_DEPENDS= p5-Data-Random>=0:devel/p5-Data-Random \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Data-Random>=0:devel/p5-Data-Random \ p5-HTTP-Message>=0:www/p5-HTTP-Message \ p5-JSON>=0:converters/p5-JSON \ p5-Mouse>=0:devel/p5-Mouse \ p5-Net-OAuth>=0:net/p5-Net-OAuth \ p5-common-sense>=0:devel/p5-common-sense \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/net/p5-Net-EPP-Proxy/Makefile b/net/p5-Net-EPP-Proxy/Makefile index 3d754d1a592..b067c3bb73c 100644 --- a/net/p5-Net-EPP-Proxy/Makefile +++ b/net/p5-Net-EPP-Proxy/Makefile @@ -11,12 +11,12 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Proxy server for the EPP protocol -BUILD_DEPENDS= p5-Digest-SHA1>=0:security/p5-Digest-SHA1 \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Digest-SHA1>=0:security/p5-Digest-SHA1 \ p5-IO-Multiplex>=0:devel/p5-IO-Multiplex \ p5-Net-EPP>=0.03:net/p5-Net-EPP \ p5-Net-Server>=0:net/p5-Net-Server \ p5-XML-LibXML>=0:textproc/p5-XML-LibXML -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/net/p5-Net-EPP/Makefile b/net/p5-Net-EPP/Makefile index 4c36b790de2..8e2d7c71182 100644 --- a/net/p5-Net-EPP/Makefile +++ b/net/p5-Net-EPP/Makefile @@ -13,10 +13,10 @@ COMMENT= Client library for the TCP transport for EPP LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING -BUILD_DEPENDS= p5-Digest-SHA1>=2.12:security/p5-Digest-SHA1 \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Digest-SHA1>=2.12:security/p5-Digest-SHA1 \ p5-IO-Socket-SSL>=0:security/p5-IO-Socket-SSL \ p5-XML-LibXML>=0:textproc/p5-XML-LibXML -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/net/p5-Net-FS-Flickr/Makefile b/net/p5-Net-FS-Flickr/Makefile index cdb70a95e53..32e05e26e76 100644 --- a/net/p5-Net-FS-Flickr/Makefile +++ b/net/p5-Net-FS-Flickr/Makefile @@ -11,10 +11,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= snowfly@yuntech.edu.tw COMMENT= Perl interface for store and retrieve files on Flickr -BUILD_DEPENDS= p5-libwww>=0:www/p5-libwww \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-libwww>=0:www/p5-libwww \ p5-Acme-Steganography-Image-Png>=0:graphics/p5-Acme-Steganography-Image-Png \ p5-Flickr-Upload>=0:www/p5-Flickr-Upload -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= modbuild diff --git a/net/p5-Net-FS-Gmail/Makefile b/net/p5-Net-FS-Gmail/Makefile index 389a062472d..4ef8f0bdd0d 100644 --- a/net/p5-Net-FS-Gmail/Makefile +++ b/net/p5-Net-FS-Gmail/Makefile @@ -11,10 +11,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= snowfly@yuntech.edu.tw COMMENT= Perl interface for store and retrieve files on Gmail -BUILD_DEPENDS= p5-Mail-Webmail-Gmail>=0:mail/p5-Mail-Webmail-Gmail \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Mail-Webmail-Gmail>=0:mail/p5-Mail-Webmail-Gmail \ p5-Time-modules>=0:devel/p5-Time-modules \ p5-URI>=0:net/p5-URI -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/net/p5-Net-Frame-Device/Makefile b/net/p5-Net-Frame-Device/Makefile index f52f4e02e2b..9953f155e38 100644 --- a/net/p5-Net-Frame-Device/Makefile +++ b/net/p5-Net-Frame-Device/Makefile @@ -11,13 +11,13 @@ COMMENT= Get network device and gateway information LICENSE= ART10 -BUILD_DEPENDS= p5-Net-Write>=1.05:net/p5-Net-Write \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Net-Write>=1.05:net/p5-Net-Write \ p5-Net-Frame-Dump>=1.08:net/p5-Net-Frame-Dump \ p5-Net-Frame-Simple>=1.07:net/p5-Net-Frame-Simple \ p5-Net-Frame-Layer-IPv6>=1.07:net/p5-Net-Frame-Layer-IPv6 \ p5-Net-Frame-Layer-ICMPv6>=1.09:net/p5-Net-Frame-Layer-ICMPv6 \ p5-Net-Libdnet6>=0.27:net/p5-Net-Libdnet6 -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/net/p5-Net-Frame-Dump/Makefile b/net/p5-Net-Frame-Dump/Makefile index 666ff3c4792..631e7417056 100644 --- a/net/p5-Net-Frame-Dump/Makefile +++ b/net/p5-Net-Frame-Dump/Makefile @@ -13,10 +13,10 @@ COMMENT= Tcpdump like perl implementation LICENSE= ART10 LICENSE_FILE= ${WRKSRC}/LICENSE.Artistic -BUILD_DEPENDS= p5-Class-Gomor>=1.00:devel/p5-Class-Gomor \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Gomor>=1.00:devel/p5-Class-Gomor \ p5-Net-Frame>=0:net/p5-Net-Frame \ p5-Net-Pcap>=0.12:net/p5-Net-Pcap -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/net/p5-Net-Frame-Layer-ICMPv6/Makefile b/net/p5-Net-Frame-Layer-ICMPv6/Makefile index 02c74988d01..491dd5a640e 100644 --- a/net/p5-Net-Frame-Layer-ICMPv6/Makefile +++ b/net/p5-Net-Frame-Layer-ICMPv6/Makefile @@ -10,11 +10,11 @@ PKGNAMEPREFIX= p5- MAINTAINER= spry@anarchy.in.the.ph COMMENT= Perl encoding/decoding implementation of the ICMPv6 layer -BUILD_DEPENDS= p5-Bit-Vector>=0:math/p5-Bit-Vector \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Bit-Vector>=0:math/p5-Bit-Vector \ p5-Net-Frame>=0:net/p5-Net-Frame \ p5-Net-Pcap>=0.12:net/p5-Net-Pcap \ p5-Class-Gomor>=1.00:devel/p5-Class-Gomor -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/net/p5-Net-Frame-Layer-IPv6/Makefile b/net/p5-Net-Frame-Layer-IPv6/Makefile index 525c264498a..f54f82982a2 100644 --- a/net/p5-Net-Frame-Layer-IPv6/Makefile +++ b/net/p5-Net-Frame-Layer-IPv6/Makefile @@ -10,11 +10,11 @@ PKGNAMEPREFIX= p5- MAINTAINER= spry@anarchy.in.the.ph COMMENT= Perl encoding/decoding implementation of the IPv6 layer -BUILD_DEPENDS= p5-Bit-Vector>=0:math/p5-Bit-Vector \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Bit-Vector>=0:math/p5-Bit-Vector \ p5-Net-Frame>=0:net/p5-Net-Frame \ p5-Net-Pcap>=0.12:net/p5-Net-Pcap \ p5-Class-Gomor>=1.00:devel/p5-Class-Gomor -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/net/p5-Net-Frame-Simple/Makefile b/net/p5-Net-Frame-Simple/Makefile index 734a071ed40..fa3e3ff750e 100644 --- a/net/p5-Net-Frame-Simple/Makefile +++ b/net/p5-Net-Frame-Simple/Makefile @@ -12,9 +12,9 @@ COMMENT= Base framework for frame crafting LICENSE= ART10 LICENSE_FILE= ${WRKSRC}/LICENSE.Artistic -BUILD_DEPENDS= p5-Class-Gomor>=1.03:devel/p5-Class-Gomor \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Gomor>=1.03:devel/p5-Class-Gomor \ p5-Net-Frame>=1.16:net/p5-Net-Frame -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/net/p5-Net-Frame/Makefile b/net/p5-Net-Frame/Makefile index c9b7c05983e..58452b9c51f 100644 --- a/net/p5-Net-Frame/Makefile +++ b/net/p5-Net-Frame/Makefile @@ -13,11 +13,11 @@ COMMENT= Base framework for frame crafting LICENSE= ART10 LICENSE_FILE= ${WRKSRC}/LICENSE.Artistic -BUILD_DEPENDS= p5-Bit-Vector>=0:math/p5-Bit-Vector \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Bit-Vector>=0:math/p5-Bit-Vector \ p5-Class-Gomor>=1.00:devel/p5-Class-Gomor \ p5-Net-IPv6Addr>=0:net-mgmt/p5-Net-IPv6Addr \ p5-Socket6>=0:net/p5-Socket6 -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/net/p5-Net-GitHub/Makefile b/net/p5-Net-GitHub/Makefile index 1cc0d29e65b..6696b2f0c0e 100644 --- a/net/p5-Net-GitHub/Makefile +++ b/net/p5-Net-GitHub/Makefile @@ -14,7 +14,8 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Cache-LRU>=0:devel/p5-Cache-LRU \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Cache-LRU>=0:devel/p5-Cache-LRU \ p5-HTTP-Message>0:www/p5-HTTP-Message \ p5-JSON-MaybeXS>=0:converters/p5-JSON-MaybeXS \ p5-LWP-Protocol-https>=0:www/p5-LWP-Protocol-https \ @@ -22,7 +23,6 @@ BUILD_DEPENDS= p5-Cache-LRU>=0:devel/p5-Cache-LRU \ p5-Type-Tiny>=0:devel/p5-Type-Tiny \ p5-URI>=0:net/p5-URI \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/net/p5-Net-Gnats/Makefile b/net/p5-Net-Gnats/Makefile index 584d6462abc..f631c7a21bb 100644 --- a/net/p5-Net-Gnats/Makefile +++ b/net/p5-Net-Gnats/Makefile @@ -13,8 +13,8 @@ COMMENT= Perl interface to GNU Gnats daemon LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-strictures>=0:devel/p5-strictures -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-strictures>=0:devel/p5-strictures TEST_DEPENDS= p5-Test-MockObject>=0:devel/p5-Test-MockObject NO_ARCH= yes diff --git a/net/p5-Net-Google-Calendar/Makefile b/net/p5-Net-Google-Calendar/Makefile index 00337b2e7f1..b7b76ad6da2 100644 --- a/net/p5-Net-Google-Calendar/Makefile +++ b/net/p5-Net-Google-Calendar/Makefile @@ -11,13 +11,13 @@ PKGNAMEPREFIX= p5- MAINTAINER= mhsin@mhsin.org COMMENT= Programmatic access to Google's Calendar API -BUILD_DEPENDS= p5-XML-Atom>=0.37:textproc/p5-XML-Atom \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-XML-Atom>=0.37:textproc/p5-XML-Atom \ p5-libwww>=0:www/p5-libwww \ p5-URI>=0:net/p5-URI \ p5-DateTime>=0:devel/p5-DateTime \ p5-Net-SSLeay>=0:security/p5-Net-SSLeay \ p5-Net-Google-AuthSub>=0:net/p5-Net-Google-AuthSub -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= modbuild diff --git a/net/p5-Net-Google-DataAPI/Makefile b/net/p5-Net-Google-DataAPI/Makefile index 045bbfc9234..a44d079c9ce 100644 --- a/net/p5-Net-Google-DataAPI/Makefile +++ b/net/p5-Net-Google-DataAPI/Makefile @@ -12,7 +12,8 @@ DISTNAME= ${PORTNAME}-${PORTVERSION:R}${PORTVERSION:E} MAINTAINER= gunter@six-two.net COMMENT= Base implementations for modules to negotiate with Google Data APIs -BUILD_DEPENDS= p5-Any-Moose>=0.04:devel/p5-Any-Moose \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Any-Moose>=0.04:devel/p5-Any-Moose \ p5-Digest-SHA1>=0:security/p5-Digest-SHA1 \ p5-LWP-Protocol-https>=0:www/p5-LWP-Protocol-https \ p5-Lingua-EN-Inflect-Number>=0:textproc/p5-Lingua-EN-Inflect-Number \ @@ -25,7 +26,6 @@ BUILD_DEPENDS= p5-Any-Moose>=0.04:devel/p5-Any-Moose \ p5-XML-Atom>=0:textproc/p5-XML-Atom \ p5-libwww>=0:www/p5-libwww \ p5-namespace-autoclean>=0:devel/p5-namespace-autoclean -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Exception>=0:devel/p5-Test-Exception \ p5-Test-MockModule>=0:devel/p5-Test-MockModule \ p5-Test-MockObject>=0:devel/p5-Test-MockObject \ diff --git a/net/p5-Net-Google-PicasaWeb/Makefile b/net/p5-Net-Google-PicasaWeb/Makefile index f2790207eca..fc22e52e5df 100644 --- a/net/p5-Net-Google-PicasaWeb/Makefile +++ b/net/p5-Net-Google-PicasaWeb/Makefile @@ -14,14 +14,14 @@ COMMENT= Use Google Picasa Web API LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-IO-Prompt>=0:devel/p5-IO-Prompt \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-IO-Prompt>=0:devel/p5-IO-Prompt \ p5-Moose>=0:devel/p5-Moose \ p5-MooseX-Role-Matcher>=0:devel/p5-MooseX-Role-Matcher \ p5-Net-Google-AuthSub>=0:net/p5-Net-Google-AuthSub \ p5-URI>=0:net/p5-URI \ p5-XML-Twig>=3.30:textproc/p5-XML-Twig \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Able>=0.09:devel/p5-Test-Able \ p5-Test-Able-Runner>=1.000:devel/p5-Test-Able-Runner \ p5-Test-Mock-LWP>=0:devel/p5-Test-Mock-LWP diff --git a/net/p5-Net-Google-SafeBrowsing2/Makefile b/net/p5-Net-Google-SafeBrowsing2/Makefile index 5396a1c285e..c06d55fd51b 100644 --- a/net/p5-Net-Google-SafeBrowsing2/Makefile +++ b/net/p5-Net-Google-SafeBrowsing2/Makefile @@ -11,7 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= ale@biancalanas.net COMMENT= Perl extension for the Google Safe Browsing v2 API -BUILD_DEPENDS= p5-libwww>=5:www/p5-libwww \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-libwww>=5:www/p5-libwww \ p5-URI>=1:net/p5-URI \ p5-Net-IPAddress>=1:net-mgmt/p5-Net-IPAddress \ p5-Text-Trim>=1:textproc/p5-Text-Trim \ @@ -20,7 +21,6 @@ BUILD_DEPENDS= p5-libwww>=5:www/p5-libwww \ p5-String-HexConvert>=0.01:textproc/p5-String-HexConvert \ p5-File-Slurp>9:devel/p5-File-Slurp -RUN_DEPENDS:= ${BUILD_DEPENDS} OPTIONS_DEFINE= MySQL SQLite Postgres diff --git a/net/p5-Net-Google-Spreadsheets/Makefile b/net/p5-Net-Google-Spreadsheets/Makefile index d9713de49bc..a96e9e3600b 100644 --- a/net/p5-Net-Google-Spreadsheets/Makefile +++ b/net/p5-Net-Google-Spreadsheets/Makefile @@ -12,13 +12,13 @@ DISTNAME= ${PORTNAME}-${PORTVERSION:R}${PORTVERSION:E} MAINTAINER= gunter@six-two.net COMMENT= Perl module for using Google Spreadsheets API -BUILD_DEPENDS= p5-Any-Moose>=0:devel/p5-Any-Moose \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Any-Moose>=0:devel/p5-Any-Moose \ p5-Mouse>=0.51:devel/p5-Mouse \ p5-Net-Google-AuthSub>=0:net/p5-Net-Google-AuthSub \ p5-Net-Google-DataAPI>=0.27:net/p5-Net-Google-DataAPI \ p5-URI>=0:net/p5-URI \ p5-XML-Atom>=0:textproc/p5-XML-Atom -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Exception>=0:devel/p5-Test-Exception \ p5-Test-MockModule>=0:devel/p5-Test-MockModule \ p5-Test-MockObject>=0:devel/p5-Test-MockObject diff --git a/net/p5-Net-Google/Makefile b/net/p5-Net-Google/Makefile index c6200470bb8..bdf4f2e6ae2 100644 --- a/net/p5-Net-Google/Makefile +++ b/net/p5-Net-Google/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Simple OOP-ish interface to the Google SOAP API -BUILD_DEPENDS= p5-SOAP-Lite>=0:net/p5-SOAP-Lite -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-SOAP-Lite>=0:net/p5-SOAP-Lite USES= perl5 USE_PERL5= modbuild diff --git a/net/p5-Net-HTTP-Spore-Middleware-Header/Makefile b/net/p5-Net-HTTP-Spore-Middleware-Header/Makefile index 30b261b57b9..5509d1354d7 100644 --- a/net/p5-Net-HTTP-Spore-Middleware-Header/Makefile +++ b/net/p5-Net-HTTP-Spore-Middleware-Header/Makefile @@ -14,9 +14,9 @@ COMMENT= Spore Middleware to add header on each request LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Moose>=0:devel/p5-Moose \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Moose>=0:devel/p5-Moose \ p5-Net-HTTP-Spore>=0:net/p5-Net-HTTP-Spore -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USE_PERL5= modbuild diff --git a/net/p5-Net-HTTP-Spore/Makefile b/net/p5-Net-HTTP-Spore/Makefile index de6b5e220cf..aaa4074ff4f 100644 --- a/net/p5-Net-HTTP-Spore/Makefile +++ b/net/p5-Net-HTTP-Spore/Makefile @@ -14,7 +14,8 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Class-Load>=0:devel/p5-Class-Load \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Load>=0:devel/p5-Class-Load \ p5-HTTP-Message>=0:www/p5-HTTP-Message \ p5-IO-All>=0:devel/p5-IO-All \ p5-JSON>=0:converters/p5-JSON \ @@ -27,7 +28,6 @@ BUILD_DEPENDS= p5-Class-Load>=0:devel/p5-Class-Load \ p5-XML-Simple>=0:textproc/p5-XML-Simple \ p5-YAML>=0:textproc/p5-YAML \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Exception>=0:devel/p5-Test-Exception NO_ARCH= yes diff --git a/net/p5-Net-HTTPS-Any/Makefile b/net/p5-Net-HTTPS-Any/Makefile index 8e0304f4d7a..60825ccd74f 100644 --- a/net/p5-Net-HTTPS-Any/Makefile +++ b/net/p5-Net-HTTPS-Any/Makefile @@ -13,10 +13,10 @@ COMMENT= Simple HTTPS class using whichever underlying SSL module is available LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Tie-IxHash>=0:devel/p5-Tie-IxHash \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Tie-IxHash>=0:devel/p5-Tie-IxHash \ p5-URI>=0:net/p5-URI \ p5-Net-SSLeay>=1.30:security/p5-Net-SSLeay -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/net/p5-Net-HTTPS-NB/Makefile b/net/p5-Net-HTTPS-NB/Makefile index 61c663f2dd3..15d86360dee 100644 --- a/net/p5-Net-HTTPS-NB/Makefile +++ b/net/p5-Net-HTTPS-NB/Makefile @@ -13,9 +13,9 @@ COMMENT= Non-blocking HTTPS client LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-IO-Socket-SSL>=0.98:security/p5-IO-Socket-SSL \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-IO-Socket-SSL>=0.98:security/p5-IO-Socket-SSL \ p5-Net-HTTP>=0:net/p5-Net-HTTP -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USE_PERL5= configure diff --git a/net/p5-Net-INET6Glue/Makefile b/net/p5-Net-INET6Glue/Makefile index efb12c1526d..acf5c4a6591 100644 --- a/net/p5-Net-INET6Glue/Makefile +++ b/net/p5-Net-INET6Glue/Makefile @@ -12,8 +12,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= ume@FreeBSD.org COMMENT= Make common modules IPv6 ready by hotpatching -BUILD_DEPENDS= p5-IO-Socket-INET6>=0:net/p5-IO-Socket-INET6 -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-IO-Socket-INET6>=0:net/p5-IO-Socket-INET6 USES= perl5 USE_PERL5= configure diff --git a/net/p5-Net-IP-RangeCompare/Makefile b/net/p5-Net-IP-RangeCompare/Makefile index 5a8f96e5d78..f1ea980082e 100644 --- a/net/p5-Net-IP-RangeCompare/Makefile +++ b/net/p5-Net-IP-RangeCompare/Makefile @@ -14,9 +14,9 @@ COMMENT= Perl extension for IP Range Comparisons LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Data-IPV4-Range-Parse>=0.05:net/p5-Data-IPV4-Range-Parse \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Data-IPV4-Range-Parse>=0.05:net/p5-Data-IPV4-Range-Parse \ p5-Data-Range-Compare>=1.030:devel/p5-Data-Range-Compare -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USE_PERL5= configure diff --git a/net/p5-Net-IPTrie/Makefile b/net/p5-Net-IPTrie/Makefile index 2874d2366c1..892679210ae 100644 --- a/net/p5-Net-IPTrie/Makefile +++ b/net/p5-Net-IPTrie/Makefile @@ -14,8 +14,8 @@ COMMENT= Module for building IPv4 and IPv6 address space hierarchies LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-NetAddr-IP>=4.00.7:net-mgmt/p5-NetAddr-IP -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-NetAddr-IP>=4.00.7:net-mgmt/p5-NetAddr-IP USES= perl5 USE_PERL5= modbuild diff --git a/net/p5-Net-Jifty/Makefile b/net/p5-Net-Jifty/Makefile index 7e4ef4283b8..1abb836fed4 100644 --- a/net/p5-Net-Jifty/Makefile +++ b/net/p5-Net-Jifty/Makefile @@ -14,7 +14,8 @@ COMMENT= Perl interface to online Jifty applications LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Any-Moose>=0.04:devel/p5-Any-Moose \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Any-Moose>=0.04:devel/p5-Any-Moose \ p5-DateTime>=0:devel/p5-DateTime \ p5-Email-Address>=0:mail/p5-Email-Address \ p5-Hash-Merge>=0:textproc/p5-Hash-Merge \ @@ -23,7 +24,6 @@ BUILD_DEPENDS= p5-Any-Moose>=0.04:devel/p5-Any-Moose \ p5-URI>=0:net/p5-URI \ p5-YAML>=0:textproc/p5-YAML \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-MockObject>=0:devel/p5-Test-MockObject USES= perl5 diff --git a/net/p5-Net-LDAP-Express/Makefile b/net/p5-Net-LDAP-Express/Makefile index adf7815afde..57bdd0c6303 100644 --- a/net/p5-Net-LDAP-Express/Makefile +++ b/net/p5-Net-LDAP-Express/Makefile @@ -14,8 +14,8 @@ COMMENT= Module to simplify connecting up to a LDAP server LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-perl-ldap>=0.23:net/p5-perl-ldap -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-perl-ldap>=0.23:net/p5-perl-ldap USES= perl5 USE_PERL5= configure diff --git a/net/p5-Net-LDAP-Server/Makefile b/net/p5-Net-LDAP-Server/Makefile index c88fdae45d7..05524474cea 100644 --- a/net/p5-Net-LDAP-Server/Makefile +++ b/net/p5-Net-LDAP-Server/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= wen@FreeBSD.org COMMENT= Perl module for LDAP server side protocol handling -BUILD_DEPENDS= p5-Convert-ASN1>=0.22:converters/p5-Convert-ASN1 \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Convert-ASN1>=0.22:converters/p5-Convert-ASN1 \ p5-perl-ldap>=0.39:net/p5-perl-ldap -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/net/p5-Net-Libdnet/Makefile b/net/p5-Net-Libdnet/Makefile index 4c5d585a1f2..5f0a39045f8 100644 --- a/net/p5-Net-Libdnet/Makefile +++ b/net/p5-Net-Libdnet/Makefile @@ -13,9 +13,9 @@ COMMENT= Libdnet interface LICENSE= BSD3CLAUSE -BUILD_DEPENDS= p5-Class-Gomor>=0:devel/p5-Class-Gomor +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Gomor>=0:devel/p5-Class-Gomor LIB_DEPENDS= libdnet.so:net/libdnet -RUN_DEPENDS:= ${BUILD_DEPENDS} CONFIGURE_ARGS= INC='-I${LOCALBASE}/include' USES= perl5 diff --git a/net/p5-Net-Libdnet6/Makefile b/net/p5-Net-Libdnet6/Makefile index f74606b1a35..38f2a8c5e36 100644 --- a/net/p5-Net-Libdnet6/Makefile +++ b/net/p5-Net-Libdnet6/Makefile @@ -11,9 +11,9 @@ COMMENT= Add IPv6 support to Net::Libdnet LICENSE= ART10 -BUILD_DEPENDS= p5-Net-Libdnet>=0.98:net/p5-Net-Libdnet \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Net-Libdnet>=0.98:net/p5-Net-Libdnet \ p5-Net-IPv6Addr>=0.2:net-mgmt/p5-Net-IPv6Addr -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/net/p5-Net-LimeLight-Purge/Makefile b/net/p5-Net-LimeLight-Purge/Makefile index 080792aec70..94726f93033 100644 --- a/net/p5-Net-LimeLight-Purge/Makefile +++ b/net/p5-Net-LimeLight-Purge/Makefile @@ -14,11 +14,11 @@ COMMENT= LimeLight Purge Service API LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-DateTime-Format-ISO8601>=0.06:devel/p5-DateTime-Format-ISO8601 \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-DateTime-Format-ISO8601>=0.06:devel/p5-DateTime-Format-ISO8601 \ p5-Moose>=0.72:devel/p5-Moose \ p5-MooseX-AttributeHelpers>=0.14:devel/p5-MooseX-AttributeHelpers \ p5-SOAP-Lite>=0.710.08:net/p5-SOAP-Lite -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USE_PERL5= configure diff --git a/net/p5-Net-MAC-Vendor/Makefile b/net/p5-Net-MAC-Vendor/Makefile index d7661a09af2..c5b2b6e5b51 100644 --- a/net/p5-Net-MAC-Vendor/Makefile +++ b/net/p5-Net-MAC-Vendor/Makefile @@ -15,8 +15,8 @@ COMMENT= Look up the vendor for a MAC LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-libwww>=0:www/p5-libwww USES= perl5 USE_PERL5= configure diff --git a/net/p5-Net-MQTT/Makefile b/net/p5-Net-MQTT/Makefile index b506df13a87..276039ebfae 100644 --- a/net/p5-Net-MQTT/Makefile +++ b/net/p5-Net-MQTT/Makefile @@ -15,10 +15,10 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Module-Pluggable>=0:devel/p5-Module-Pluggable \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Module-Pluggable>=0:devel/p5-Module-Pluggable \ p5-Net-Pcap>=0:net/p5-Net-Pcap -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Pod-Usage>=0:devel/p5-Pod-Usage USES= perl5 diff --git a/net/p5-Net-Mosso-CloudFiles/Makefile b/net/p5-Net-Mosso-CloudFiles/Makefile index 07c745b771a..1b5fdf93548 100644 --- a/net/p5-Net-Mosso-CloudFiles/Makefile +++ b/net/p5-Net-Mosso-CloudFiles/Makefile @@ -14,7 +14,8 @@ COMMENT= Perl interface to the Mosso CloudFiles service LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Crypt-SSLeay>=0:security/p5-Crypt-SSLeay \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Crypt-SSLeay>=0:security/p5-Crypt-SSLeay \ p5-Data-Stream-Bulk>=0:devel/p5-Data-Stream-Bulk \ p5-DateTime-Format-HTTP>=0:devel/p5-DateTime-Format-HTTP \ p5-Digest-MD5-File>=0:security/p5-Digest-MD5-File \ @@ -25,7 +26,6 @@ BUILD_DEPENDS= p5-Crypt-SSLeay>=0:security/p5-Crypt-SSLeay \ p5-Moose>=0:devel/p5-Moose \ p5-MooseX-StrictConstructor>=0:devel/p5-MooseX-StrictConstructor \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Exception>=0:devel/p5-Test-Exception USES= perl5 diff --git a/net/p5-Net-MovableType/Makefile b/net/p5-Net-MovableType/Makefile index f472514b085..af9858377a3 100644 --- a/net/p5-Net-MovableType/Makefile +++ b/net/p5-Net-MovableType/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Lightweight MovableType client Perl module -BUILD_DEPENDS= p5-SOAP-Lite>=0:net/p5-SOAP-Lite -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-SOAP-Lite>=0:net/p5-SOAP-Lite USES= perl5 USE_PERL5= configure diff --git a/net/p5-Net-NBsocket/Makefile b/net/p5-Net-NBsocket/Makefile index f4abbfb752b..66021ce4738 100644 --- a/net/p5-Net-NBsocket/Makefile +++ b/net/p5-Net-NBsocket/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Non-Blocking Sockets -BUILD_DEPENDS= p5-NetAddr-IP>=4.049:net-mgmt/p5-NetAddr-IP -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-NetAddr-IP>=4.049:net-mgmt/p5-NetAddr-IP USES= perl5 USE_PERL5= configure diff --git a/net/p5-Net-Nessus-XMLRPC/Makefile b/net/p5-Net-Nessus-XMLRPC/Makefile index da5d849e6c0..829eb861d2c 100644 --- a/net/p5-Net-Nessus-XMLRPC/Makefile +++ b/net/p5-Net-Nessus-XMLRPC/Makefile @@ -15,11 +15,11 @@ COMMENT= Perl5 interface for communication with Nessus scanner over XMLRPC LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-HTTP-Message>=0:www/p5-HTTP-Message \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTTP-Message>=0:www/p5-HTTP-Message \ p5-IO-Socket-SSL>=0:security/p5-IO-Socket-SSL \ p5-XML-Simple>=0:textproc/p5-XML-Simple \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/net/p5-Net-OAuth-Simple/Makefile b/net/p5-Net-OAuth-Simple/Makefile index 75eac297f35..d6e18c99db3 100644 --- a/net/p5-Net-OAuth-Simple/Makefile +++ b/net/p5-Net-OAuth-Simple/Makefile @@ -13,12 +13,12 @@ COMMENT= Simple wrapper around the OAuth protocol LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Crypt-SSLeay>=0.57:security/p5-Crypt-SSLeay \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Crypt-SSLeay>=0.57:security/p5-Crypt-SSLeay \ p5-libwww>=5.825:www/p5-libwww \ p5-Net-OAuth>=0.27:net/p5-Net-OAuth \ p5-URI>=1.37:net/p5-URI \ p5-Test-Simple>=0.86:devel/p5-Test-Simple -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/net/p5-Net-OAuth/Makefile b/net/p5-Net-OAuth/Makefile index f0ebb21c94e..93e1dd6d8e7 100644 --- a/net/p5-Net-OAuth/Makefile +++ b/net/p5-Net-OAuth/Makefile @@ -14,11 +14,11 @@ COMMENT= Implementation of the OAuth protocol LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Class-Accessor>=0.31:devel/p5-Class-Accessor \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Accessor>=0.31:devel/p5-Class-Accessor \ p5-Class-Data-Inheritable>=0.06:devel/p5-Class-Data-Inheritable \ p5-Digest-HMAC>=1.01:security/p5-Digest-HMAC \ p5-URI>=1.35:net/p5-URI -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Warn>=0.21:devel/p5-Test-Warn USE_PERL5= modbuild diff --git a/net/p5-Net-OAuth2/Makefile b/net/p5-Net-OAuth2/Makefile index a1d0180c777..d6e695f1348 100644 --- a/net/p5-Net-OAuth2/Makefile +++ b/net/p5-Net-OAuth2/Makefile @@ -13,11 +13,11 @@ COMMENT= OAuth 2.0 for Perl LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-HTTP-Message>=0:www/p5-HTTP-Message \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTTP-Message>=0:www/p5-HTTP-Message \ p5-JSON>=0:converters/p5-JSON \ p5-URI>=0:net/p5-URI \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Mock-LWP-Dispatch>=0:devel/p5-Test-Mock-LWP-Dispatch \ p5-Test-NoWarnings>=0:devel/p5-Test-NoWarnings \ p5-Test-Pod>=1.22:devel/p5-Test-Pod \ diff --git a/net/p5-Net-OpenID-Consumer/Makefile b/net/p5-Net-OpenID-Consumer/Makefile index 8f44e582652..4264dbb72d4 100644 --- a/net/p5-Net-OpenID-Consumer/Makefile +++ b/net/p5-Net-OpenID-Consumer/Makefile @@ -14,12 +14,12 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-HTTP-Message>=0:www/p5-HTTP-Message \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTTP-Message>=0:www/p5-HTTP-Message \ p5-JSON>=0:converters/p5-JSON \ p5-Net-OpenID-Common>=1.18:security/p5-Net-OpenID-Common \ p5-URI>=0:net/p5-URI \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-CGI>=0:www/p5-CGI NO_ARCH= yes diff --git a/net/p5-Net-OpenSSH-Parallel/Makefile b/net/p5-Net-OpenSSH-Parallel/Makefile index c2fecb11da3..93511ae3ffc 100644 --- a/net/p5-Net-OpenSSH-Parallel/Makefile +++ b/net/p5-Net-OpenSSH-Parallel/Makefile @@ -13,8 +13,8 @@ COMMENT= Run SSH jobs in parallel LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Net-OpenSSH>=0.39:net/p5-Net-OpenSSH -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Net-OpenSSH>=0.39:net/p5-Net-OpenSSH NO_ARCH= yes USE_PERL5= configure diff --git a/net/p5-Net-OpenSSH/Makefile b/net/p5-Net-OpenSSH/Makefile index bbdf1de71d3..c74f5bd1ff8 100644 --- a/net/p5-Net-OpenSSH/Makefile +++ b/net/p5-Net-OpenSSH/Makefile @@ -13,8 +13,8 @@ COMMENT= Perl SSH client package implemented on top of OpenSSH LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-IO-Tty>=0:devel/p5-IO-Tty -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-IO-Tty>=0:devel/p5-IO-Tty USES= perl5 USE_PERL5= configure diff --git a/net/p5-Net-OpenStack-Attack/Makefile b/net/p5-Net-OpenStack-Attack/Makefile index 2ab3a3d7f63..45ab72a15fd 100644 --- a/net/p5-Net-OpenStack-Attack/Makefile +++ b/net/p5-Net-OpenStack-Attack/Makefile @@ -13,13 +13,13 @@ COMMENT= Tools for stress testing an OpenStack deployment LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Any-Moose>=0:devel/p5-Any-Moose \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Any-Moose>=0:devel/p5-Any-Moose \ p5-App-Rad>=0:devel/p5-App-Rad \ p5-HTTP-Async>=0:www/p5-HTTP-Async \ p5-JSON>=0:converters/p5-JSON \ p5-Net-HTTPS-NB>=0:net/p5-Net-HTTPS-NB \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USE_PERL5= configure diff --git a/net/p5-Net-Packet-Target/Makefile b/net/p5-Net-Packet-Target/Makefile index 7bd1b847ca0..7e67fbb4def 100644 --- a/net/p5-Net-Packet-Target/Makefile +++ b/net/p5-Net-Packet-Target/Makefile @@ -14,9 +14,9 @@ COMMENT= Target object for all Net-Packet related stuff LICENSE= ART10 LICENSE_FILE= ${WRKSRC}/LICENSE.Artistic -BUILD_DEPENDS= p5-Class-Gomor>=1.00:devel/p5-Class-Gomor \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Gomor>=1.00:devel/p5-Class-Gomor \ p5-Net-Packet>=3.00:net/p5-Net-Packet -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/net/p5-Net-Packet/Makefile b/net/p5-Net-Packet/Makefile index c36c6968e8c..0d8bd147c99 100644 --- a/net/p5-Net-Packet/Makefile +++ b/net/p5-Net-Packet/Makefile @@ -11,14 +11,14 @@ PKGNAMEPREFIX= p5- MAINTAINER= netpkt@gomor.org COMMENT= Send and receive frames from layer 2 to layer 7 -BUILD_DEPENDS= p5-Bit-Vector>=6.4:math/p5-Bit-Vector \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Bit-Vector>=6.4:math/p5-Bit-Vector \ p5-Class-Gomor>=1.00:devel/p5-Class-Gomor \ p5-Net-IPv6Addr>=0.2:net-mgmt/p5-Net-IPv6Addr \ p5-Net-Libdnet>=0.01:net/p5-Net-Libdnet \ p5-Net-Write>=1.00:net/p5-Net-Write \ p5-Net-Pcap>=0.14:net/p5-Net-Pcap \ p5-Socket6>=0.19:net/p5-Socket6 -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/net/p5-Net-Pcap/Makefile b/net/p5-Net-Pcap/Makefile index 352085d004b..7fb919b7db9 100644 --- a/net/p5-Net-Pcap/Makefile +++ b/net/p5-Net-Pcap/Makefile @@ -13,8 +13,8 @@ COMMENT= Interface to pcap(3) LBL packet capture library LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-IO-Interface>=0:net/p5-IO-Interface -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-IO-Interface>=0:net/p5-IO-Interface TEST_DEPENDS= p5-Test-Exception>=0:devel/p5-Test-Exception USES= perl5 diff --git a/net/p5-Net-PcapUtils/Makefile b/net/p5-Net-PcapUtils/Makefile index 8a575d25060..75c5aaa2770 100644 --- a/net/p5-Net-PcapUtils/Makefile +++ b/net/p5-Net-PcapUtils/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Utility routines for Net::Pcap module -BUILD_DEPENDS= p5-Net-Pcap>=0:net/p5-Net-Pcap -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Net-Pcap>=0:net/p5-Net-Pcap USES= perl5 USE_PERL5= configure diff --git a/net/p5-Net-PubSubHubbub-Publisher/Makefile b/net/p5-Net-PubSubHubbub-Publisher/Makefile index fd37a72e2f6..2d2a8c90c0b 100644 --- a/net/p5-Net-PubSubHubbub-Publisher/Makefile +++ b/net/p5-Net-PubSubHubbub-Publisher/Makefile @@ -14,8 +14,8 @@ COMMENT= Client library to ping a PubSubHubbub hub LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-libwww>=0:www/p5-libwww NO_ARCH= yes USE_PERL5= configure diff --git a/net/p5-Net-RTP/Makefile b/net/p5-Net-RTP/Makefile index 501c0733ea9..fe561354632 100644 --- a/net/p5-Net-RTP/Makefile +++ b/net/p5-Net-RTP/Makefile @@ -11,11 +11,11 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Send and receive RTP packets (RFC3550) -BUILD_DEPENDS= p5-IO-Socket-Multicast6>=0.02:net/p5-IO-Socket-Multicast6 \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-IO-Socket-Multicast6>=0.02:net/p5-IO-Socket-Multicast6 \ p5-IO-Socket-Multicast>=1.00:net/p5-IO-Socket-Multicast \ p5-IO-Socket-INET6>=1.20:net/p5-IO-Socket-INET6 \ p5-Socket6>=0.19:net/p5-Socket6 -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= modbuild diff --git a/net/p5-Net-RabbitFoot/Makefile b/net/p5-Net-RabbitFoot/Makefile index ad492983aa4..710950a635e 100644 --- a/net/p5-Net-RabbitFoot/Makefile +++ b/net/p5-Net-RabbitFoot/Makefile @@ -14,7 +14,8 @@ COMMENT= Synchronous interface to AnyEvent::RabbitMQ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-AnyEvent-RabbitMQ>=0:net/p5-AnyEvent-RabbitMQ \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-AnyEvent-RabbitMQ>=0:net/p5-AnyEvent-RabbitMQ \ p5-Config-Any>=0:devel/p5-Config-Any \ p5-Coro>=0:devel/p5-Coro \ p5-JSON-XS>=0:converters/p5-JSON-XS \ @@ -22,7 +23,6 @@ BUILD_DEPENDS= p5-AnyEvent-RabbitMQ>=0:net/p5-AnyEvent-RabbitMQ \ p5-Moose>=0:devel/p5-Moose \ p5-MooseX-App-Cmd>=0:devel/p5-MooseX-App-Cmd \ p5-MooseX-ConfigFromFile>=0:devel/p5-MooseX-ConfigFromFile -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Exception>=0:devel/p5-Test-Exception NO_ARCH= yes diff --git a/net/p5-Net-Random/Makefile b/net/p5-Net-Random/Makefile index 76759f3b0bc..ea5c9f35333 100644 --- a/net/p5-Net-Random/Makefile +++ b/net/p5-Net-Random/Makefile @@ -14,9 +14,9 @@ COMMENT= Perl5 module to get random data from online sources LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-JSON>=0:converters/p5-JSON \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-JSON>=0:converters/p5-JSON \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-MockObject>=0:devel/p5-Test-MockObject PORTSCOUT= skipv:2.21,2.22 diff --git a/net/p5-Net-Rendezvous-Publish/Makefile b/net/p5-Net-Rendezvous-Publish/Makefile index d4f6de78d08..0c9a8362dfa 100644 --- a/net/p5-Net-Rendezvous-Publish/Makefile +++ b/net/p5-Net-Rendezvous-Publish/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= markun@onohara.to COMMENT= Publish Rendezvous services -BUILD_DEPENDS= p5-Class-Accessor-Lvalue>=0:devel/p5-Class-Accessor-Lvalue -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Accessor-Lvalue>=0:devel/p5-Class-Accessor-Lvalue USES= perl5 USE_PERL5= configure diff --git a/net/p5-Net-Riak/Makefile b/net/p5-Net-Riak/Makefile index 0084402acab..c888e8ecd41 100644 --- a/net/p5-Net-Riak/Makefile +++ b/net/p5-Net-Riak/Makefile @@ -14,7 +14,8 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Data-Dump>=0:devel/p5-Data-Dump \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Data-Dump>=0:devel/p5-Data-Dump \ p5-Google-ProtocolBuffers>=0:devel/p5-Google-ProtocolBuffers \ p5-JSON>=0:converters/p5-JSON \ p5-Moose>=0:devel/p5-Moose \ @@ -24,7 +25,6 @@ BUILD_DEPENDS= p5-Data-Dump>=0:devel/p5-Data-Dump \ p5-MooseX-Types-Structured>=0:devel/p5-MooseX-Types-Structured \ p5-URI>=0:net/p5-URI \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/net/p5-Net-SAP/Makefile b/net/p5-Net-SAP/Makefile index b85828fefd8..16b1b532fd2 100644 --- a/net/p5-Net-SAP/Makefile +++ b/net/p5-Net-SAP/Makefile @@ -11,10 +11,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Session Announcement Protocol (rfc2974) packet parser -BUILD_DEPENDS= p5-IO-Interface>=0:net/p5-IO-Interface \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-IO-Interface>=0:net/p5-IO-Interface \ p5-IO-Socket-Multicast6>=0:net/p5-IO-Socket-Multicast6 \ p5-Net-SDP>=0:net/p5-Net-SDP -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= modbuild diff --git a/net/p5-Net-SCP-Expect/Makefile b/net/p5-Net-SCP-Expect/Makefile index f9ffca7ed66..50b2e4958cf 100644 --- a/net/p5-Net-SCP-Expect/Makefile +++ b/net/p5-Net-SCP-Expect/Makefile @@ -11,10 +11,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= numisemis@yahoo.com COMMENT= Perl5 wrapper for scp that allows passwords via Expect -BUILD_DEPENDS= p5-Expect>=1.14:lang/p5-Expect \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Expect>=1.14:lang/p5-Expect \ p5-Net-IPv6Addr>=0:net-mgmt/p5-Net-IPv6Addr \ p5-Term-ReadPassword>=0.01:devel/p5-Term-ReadPassword -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/net/p5-Net-SCP/Makefile b/net/p5-Net-SCP/Makefile index 85dbed69d0d..d325fb7f434 100644 --- a/net/p5-Net-SCP/Makefile +++ b/net/p5-Net-SCP/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Perl5 module to access and use scp protocol -BUILD_DEPENDS= p5-Net-SSH>=0:net/p5-Net-SSH \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Net-SSH>=0:net/p5-Net-SSH \ p5-String-ShellQuote>=0:textproc/p5-String-ShellQuote -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/net/p5-Net-SDP/Makefile b/net/p5-Net-SDP/Makefile index 2044675f548..af0b52fd0f5 100644 --- a/net/p5-Net-SDP/Makefile +++ b/net/p5-Net-SDP/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Session Description Protocol (RFC 2327) packet parser/generator -BUILD_DEPENDS= p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-libwww>=0:www/p5-libwww USES= perl5 USE_PERL5= modbuild diff --git a/net/p5-Net-SFTP/Makefile b/net/p5-Net-SFTP/Makefile index b461e1d9874..25808b22e4c 100644 --- a/net/p5-Net-SFTP/Makefile +++ b/net/p5-Net-SFTP/Makefile @@ -14,8 +14,8 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Net-SSH-Perl>=0:net/p5-Net-SSH-Perl -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Net-SSH-Perl>=0:net/p5-Net-SSH-Perl NO_ARCH= yes USES= perl5 diff --git a/net/p5-Net-SIP/Makefile b/net/p5-Net-SIP/Makefile index 8d4ae44b76c..e160c36a4cb 100644 --- a/net/p5-Net-SIP/Makefile +++ b/net/p5-Net-SIP/Makefile @@ -13,8 +13,8 @@ COMMENT= Framework SIP (Voice Over IP, RFC3261) LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Net-DNS>=0.56:dns/p5-Net-DNS -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Net-DNS>=0.56:dns/p5-Net-DNS NO_ARCH= yes USES= perl5 diff --git a/net/p5-Net-SMS-Mollie/Makefile b/net/p5-Net-SMS-Mollie/Makefile index 9df0404c4b3..94337aabb4e 100644 --- a/net/p5-Net-SMS-Mollie/Makefile +++ b/net/p5-Net-SMS-Mollie/Makefile @@ -14,8 +14,8 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE_ART10= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-XML-Simple>=0:textproc/p5-XML-Simple -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-XML-Simple>=0:textproc/p5-XML-Simple USES= perl5 USE_PERL5= configure diff --git a/net/p5-Net-SMS-PChome/Makefile b/net/p5-Net-SMS-PChome/Makefile index 862c6d653c8..0b4ea8691c8 100644 --- a/net/p5-Net-SMS-PChome/Makefile +++ b/net/p5-Net-SMS-PChome/Makefile @@ -11,10 +11,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= snowfly@yuntech.edu.tw COMMENT= Send SMS messages via the sms.pchome.com.tw service -BUILD_DEPENDS= p5-WWW-Mechanize>=0:www/p5-WWW-Mechanize \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-WWW-Mechanize>=0:www/p5-WWW-Mechanize \ p5-HTML-TagParser>=0:www/p5-HTML-TagParser \ p5-Date-Calc>=0:devel/p5-Date-Calc -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/net/p5-Net-SPDY/Makefile b/net/p5-Net-SPDY/Makefile index f07d65e2b08..e85c81fa82d 100644 --- a/net/p5-Net-SPDY/Makefile +++ b/net/p5-Net-SPDY/Makefile @@ -15,9 +15,9 @@ COMMENT= SPDY protocol client and server implementation LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-IO-Socket-SSL>=0:security/p5-IO-Socket-SSL \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-IO-Socket-SSL>=0:security/p5-IO-Socket-SSL \ p5-URI>=0:net/p5-URI -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Deep>=0:devel/p5-Test-Deep \ p5-Test-Pod>=0:devel/p5-Test-Pod diff --git a/net/p5-Net-SSH-Perl/Makefile b/net/p5-Net-SSH-Perl/Makefile index 237163d0d61..177a83dd37c 100644 --- a/net/p5-Net-SSH-Perl/Makefile +++ b/net/p5-Net-SSH-Perl/Makefile @@ -14,7 +14,8 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Crypt-Curve25519>=0.05:security/p5-Crypt-Curve25519 \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Crypt-Curve25519>=0.05:security/p5-Crypt-Curve25519 \ p5-Crypt-DES>0:security/p5-Crypt-DES \ p5-Crypt-DSA>=0.11:security/p5-Crypt-DSA \ p5-Crypt-IDEA>=0:security/p5-Crypt-IDEA \ @@ -24,7 +25,6 @@ BUILD_DEPENDS= p5-Crypt-Curve25519>=0.05:security/p5-Crypt-Curve25519 \ p5-File-HomeDir>=0:devel/p5-File-HomeDir \ p5-Math-GMP>=1.04:math/p5-Math-GMP \ p5-String-CRC32>=1.2:devel/p5-String-CRC32 -RUN_DEPENDS:= ${BUILD_DEPENDS} CONFIGURE_ENV= PERL_MM_USE_DEFAULT="1" USES= compiler:c11 perl5 diff --git a/net/p5-Net-STOMP-Client/Makefile b/net/p5-Net-STOMP-Client/Makefile index 224f44947de..f6e9bcd5926 100644 --- a/net/p5-Net-STOMP-Client/Makefile +++ b/net/p5-Net-STOMP-Client/Makefile @@ -12,9 +12,9 @@ COMMENT= Streaming Text Orientated Messaging Protocol Client LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-No-Worries>=0:devel/p5-No-Worries \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-No-Worries>=0:devel/p5-No-Worries \ p5-Params-Validate>=0:devel/p5-Params-Validate -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/net/p5-Net-Server-SS-PreFork/Makefile b/net/p5-Net-Server-SS-PreFork/Makefile index 72b9801e1e1..d84094ab907 100644 --- a/net/p5-Net-Server-SS-PreFork/Makefile +++ b/net/p5-Net-Server-SS-PreFork/Makefile @@ -14,9 +14,9 @@ COMMENT= Hot-deployable variant of Net::Server::PreFork LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Net-Server>0:net/p5-Net-Server \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Net-Server>0:net/p5-Net-Server \ p5-Server-Starter>=0.02:net/p5-Server-Starter -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-HTTP-Server-Simple>0:www/p5-HTTP-Server-Simple \ p5-Test-SharedFork>0:devel/p5-Test-SharedFork \ diff --git a/net/p5-Net-Server/Makefile b/net/p5-Net-Server/Makefile index 0a1ec05f1f5..26252eb0a0f 100644 --- a/net/p5-Net-Server/Makefile +++ b/net/p5-Net-Server/Makefile @@ -14,8 +14,8 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-IO-Multiplex>=1.05:devel/p5-IO-Multiplex -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-IO-Multiplex>=1.05:devel/p5-IO-Multiplex OPTIONS_DEFINE= IPV6 diff --git a/net/p5-Net-Subnet/Makefile b/net/p5-Net-Subnet/Makefile index 14fae6d602a..c19a75c2340 100644 --- a/net/p5-Net-Subnet/Makefile +++ b/net/p5-Net-Subnet/Makefile @@ -13,8 +13,8 @@ COMMENT= Fast IP-in-subnet matcher for IPv4 and IPv6, CIDR or mask LICENSE= ART10 -BUILD_DEPENDS= p5-Socket6>=0.23:net/p5-Socket6 -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Socket6>=0.23:net/p5-Socket6 USES= perl5 USE_PERL5= configure diff --git a/net/p5-Net-Telnet-Netscreen/Makefile b/net/p5-Net-Telnet-Netscreen/Makefile index a8c03bdf4a8..59e39b7564a 100644 --- a/net/p5-Net-Telnet-Netscreen/Makefile +++ b/net/p5-Net-Telnet-Netscreen/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= snowfly@yuntech.edu.tw COMMENT= Perl interface for interact with a Netscreen firewall -BUILD_DEPENDS= p5-Net-Telnet>=0:net/p5-Net-Telnet -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Net-Telnet>=0:net/p5-Net-Telnet USES= perl5 USE_PERL5= configure diff --git a/net/p5-Net-TiVo/Makefile b/net/p5-Net-TiVo/Makefile index b549607f040..0e9af139c33 100644 --- a/net/p5-Net-TiVo/Makefile +++ b/net/p5-Net-TiVo/Makefile @@ -11,11 +11,11 @@ PKGNAMEPREFIX= p5- MAINTAINER= eg@fbsd.lt COMMENT= Framework for accessing TiVo using XML/HTTP -BUILD_DEPENDS= p5-libwww>=0:www/p5-libwww \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-libwww>=0:www/p5-libwww \ p5-XML-Simple>=0:textproc/p5-XML-Simple \ p5-Log-Log4perl>=0:devel/p5-Log-Log4perl \ p5-Crypt-SSLeay>=0:security/p5-Crypt-SSLeay -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/net/p5-Net-Todoist/Makefile b/net/p5-Net-Todoist/Makefile index 128557291f3..1c36fa0b7c0 100644 --- a/net/p5-Net-Todoist/Makefile +++ b/net/p5-Net-Todoist/Makefile @@ -14,9 +14,9 @@ COMMENT= Todoist API LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-JSON-XS>=0:converters/p5-JSON-XS \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-JSON-XS>=0:converters/p5-JSON-XS \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USE_PERL5= configure diff --git a/net/p5-Net-Traceroute-PurePerl/Makefile b/net/p5-Net-Traceroute-PurePerl/Makefile index 1be9a6d02fd..5545c6b28d6 100644 --- a/net/p5-Net-Traceroute-PurePerl/Makefile +++ b/net/p5-Net-Traceroute-PurePerl/Makefile @@ -14,8 +14,8 @@ COMMENT= Traceroute(1) functionality in perl via raw sockets LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Net-Traceroute>=0:net/p5-Net-Traceroute -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Net-Traceroute>=0:net/p5-Net-Traceroute USES= perl5 USE_PERL5= configure diff --git a/net/p5-Net-Traceroute6/Makefile b/net/p5-Net-Traceroute6/Makefile index 4bbee4dea4c..b88bd8398d0 100644 --- a/net/p5-Net-Traceroute6/Makefile +++ b/net/p5-Net-Traceroute6/Makefile @@ -13,8 +13,8 @@ COMMENT= Perl module to parse traceroute6(8) output LICENSE= MIT -BUILD_DEPENDS= p5-Socket6>=0:net/p5-Socket6 -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Socket6>=0:net/p5-Socket6 USES= perl5 USE_PERL5= configure diff --git a/net/p5-Net-Twitter/Makefile b/net/p5-Net-Twitter/Makefile index e8ce9484e09..837135cfe99 100644 --- a/net/p5-Net-Twitter/Makefile +++ b/net/p5-Net-Twitter/Makefile @@ -14,7 +14,8 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Carp-Clan>=0:devel/p5-Carp-Clan \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Carp-Clan>=0:devel/p5-Carp-Clan \ p5-Class-Load>=0:devel/p5-Class-Load \ p5-Data-Visitor>=0:devel/p5-Data-Visitor \ p5-DateTime>=0.51:devel/p5-DateTime \ @@ -33,7 +34,6 @@ BUILD_DEPENDS= p5-Carp-Clan>=0:devel/p5-Carp-Clan \ p5-URI>=1.40:net/p5-URI \ p5-libwww>=2.032:www/p5-libwww \ p5-namespace-autoclean>=0.09:devel/p5-namespace-autoclean -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Deep>=0:devel/p5-Test-Deep \ p5-Test-Fatal>=0:devel/p5-Test-Fatal \ p5-Test-Warn>=0:devel/p5-Test-Warn @@ -45,7 +45,8 @@ USE_PERL5= configure .include .if ${PERL_LEVEL} < 502502 -BUILD_DEPENDS+= p5-ExtUtils-MakeMaker>=7.11.01:devel/p5-ExtUtils-MakeMaker +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS+= p5-ExtUtils-MakeMaker>=7.11.01:devel/p5-ExtUtils-MakeMaker .endif .include diff --git a/net/p5-Net-VNC/Makefile b/net/p5-Net-VNC/Makefile index 0e1fff54009..600c737f100 100644 --- a/net/p5-Net-VNC/Makefile +++ b/net/p5-Net-VNC/Makefile @@ -14,10 +14,10 @@ COMMENT= Simple VNC client LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Class-Accessor>=0:devel/p5-Class-Accessor \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Accessor>=0:devel/p5-Class-Accessor \ p5-Crypt-DES>=0:security/p5-Crypt-DES \ p5-Image-Imlib2>=0:graphics/p5-Image-Imlib2 -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/net/p5-Net-WhitePages/Makefile b/net/p5-Net-WhitePages/Makefile index 602c2bc647b..0fe55f2833b 100644 --- a/net/p5-Net-WhitePages/Makefile +++ b/net/p5-Net-WhitePages/Makefile @@ -11,10 +11,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= vvelox@vvelox.net COMMENT= Provides access to the XML API for WhitePages.com -BUILD_DEPENDS= p5-Params-Validate>=0:devel/p5-Params-Validate \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Params-Validate>=0:devel/p5-Params-Validate \ p5-URI>=0:net/p5-URI \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/net/p5-Net-Whois-RIPE/Makefile b/net/p5-Net-Whois-RIPE/Makefile index 3328c6d52fd..15a0eac91aa 100644 --- a/net/p5-Net-Whois-RIPE/Makefile +++ b/net/p5-Net-Whois-RIPE/Makefile @@ -14,8 +14,8 @@ COMMENT= Implementation of RIPE Whois LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Iterator-Util>=0:devel/p5-Iterator-Util -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Iterator-Util>=0:devel/p5-Iterator-Util TEST_DEPENDS= p5-Test-Exception>=0:devel/p5-Test-Exception \ p5-WWW-Mechanize>=0:www/p5-WWW-Mechanize diff --git a/net/p5-Net-Works/Makefile b/net/p5-Net-Works/Makefile index 229264b9228..09b87488a06 100644 --- a/net/p5-Net-Works/Makefile +++ b/net/p5-Net-Works/Makefile @@ -12,11 +12,11 @@ COMMENT= APIs for IP addresses and networks LICENSE= ART20 -BUILD_DEPENDS= p5-List-AllUtils>=0.03:devel/p5-List-AllUtils \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-List-AllUtils>=0.03:devel/p5-List-AllUtils \ p5-Math-Int128>=0.07:math/p5-Math-Int128 \ p5-namespace-autoclean>=0.13:devel/p5-namespace-autoclean \ p5-Moo>=0:devel/p5-Moo -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Fatal>=0:devel/p5-Test-Fatal USES= perl5 diff --git a/net/p5-Net-Write/Makefile b/net/p5-Net-Write/Makefile index 9e6120769fd..11233b39570 100644 --- a/net/p5-Net-Write/Makefile +++ b/net/p5-Net-Write/Makefile @@ -14,10 +14,10 @@ COMMENT= Interface to open and send raw frames to the network LICENSE= ART10 LICENSE_FILE= ${WRKSRC}/LICENSE.Artistic -BUILD_DEPENDS= p5-Class-Gomor>=1.00:devel/p5-Class-Gomor \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Gomor>=1.00:devel/p5-Class-Gomor \ p5-Socket6>=0.19:net/p5-Socket6 \ p5-Net-Pcap>=0.14:net/p5-Net-Pcap -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/net/p5-Net-uFTP/Makefile b/net/p5-Net-uFTP/Makefile index 4f52d4d3096..3edd3cb41b8 100644 --- a/net/p5-Net-uFTP/Makefile +++ b/net/p5-Net-uFTP/Makefile @@ -15,12 +15,12 @@ COMMENT= Universal interface for FTP-like modules (FTP, SFTP, SCP) LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Class-Accessor-Fast-XS>=0:devel/p5-Class-Accessor-Fast-XS \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Accessor-Fast-XS>=0:devel/p5-Class-Accessor-Fast-XS \ p5-File-Stat-ModeString>=0:sysutils/p5-File-Stat-ModeString \ p5-Net-FTP-AutoReconnect>=0:net/p5-Net-FTP-AutoReconnect \ p5-Net-SSH2>=0:net/p5-Net-SSH2 \ p5-UNIVERSAL-require>=0:devel/p5-UNIVERSAL-require -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/net/p5-NetAddr-IP-Count/Makefile b/net/p5-NetAddr-IP-Count/Makefile index 536502345c6..0d70bbf3514 100644 --- a/net/p5-NetAddr-IP-Count/Makefile +++ b/net/p5-NetAddr-IP-Count/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= NetAddr::IP::Count - Count hosts in named subnets -BUILD_DEPENDS= p5-NetAddr-IP>0:net-mgmt/p5-NetAddr-IP -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-NetAddr-IP>0:net-mgmt/p5-NetAddr-IP USES= perl5 USE_PERL5= configure diff --git a/net/p5-OAI-Harvester/Makefile b/net/p5-OAI-Harvester/Makefile index 11fbc7bd5c9..091bb7b7c22 100644 --- a/net/p5-OAI-Harvester/Makefile +++ b/net/p5-OAI-Harvester/Makefile @@ -15,11 +15,11 @@ COMMENT= Perl module to harvest using the OAI protocol LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-URI>=1.30:net/p5-URI \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-URI>=1.30:net/p5-URI \ p5-XML-SAX>=0.12:textproc/p5-XML-SAX \ p5-XML-SAX-Base>=1.04:textproc/p5-XML-SAX-Base \ p5-libwww>=2.0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-LWP-Protocol-https>=0:www/p5-LWP-Protocol-https \ p5-XML-SAX-Writer>=0:textproc/p5-XML-SAX-Writer diff --git a/net/p5-OurNet-BBS/Makefile b/net/p5-OurNet-BBS/Makefile index 25f6c7dbb49..e39cd0091a8 100644 --- a/net/p5-OurNet-BBS/Makefile +++ b/net/p5-OurNet-BBS/Makefile @@ -11,7 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Component Object Model for BBS systems -BUILD_DEPENDS= p5-Class-MethodMaker>=0:devel/p5-Class-MethodMaker \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-MethodMaker>=0:devel/p5-Class-MethodMaker \ p5-Crypt-Blowfish>=0:security/p5-Crypt-Blowfish \ p5-Crypt-DES>=0:security/p5-Crypt-DES \ p5-Crypt-GOST>=0:security/p5-Crypt-GOST \ @@ -36,7 +37,6 @@ BUILD_DEPENDS= p5-Class-MethodMaker>=0:devel/p5-Class-MethodMaker \ p5-OurNet-BBSAgent>=0:net/p5-OurNet-BBSAgent \ p5-PlRPC>=0:net/p5-PlRPC \ p5-enum>=0:devel/p5-enum -RUN_DEPENDS:= ${BUILD_DEPENDS} PORTSCOUT= skipv:1.67 diff --git a/net/p5-OurNet-BBSAgent/Makefile b/net/p5-OurNet-BBSAgent/Makefile index 150819d44af..efa52a9de66 100644 --- a/net/p5-OurNet-BBSAgent/Makefile +++ b/net/p5-OurNet-BBSAgent/Makefile @@ -14,8 +14,8 @@ COMMENT= Scriptable telnet-based virtual users LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Net-Telnet>=0:net/p5-Net-Telnet -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Net-Telnet>=0:net/p5-Net-Telnet NO_ARCH= yes USE_PERL5= configure diff --git a/net/p5-POE-Component-Client-Ident/Makefile b/net/p5-POE-Component-Client-Ident/Makefile index 44a3013c6c1..772624aba15 100644 --- a/net/p5-POE-Component-Client-Ident/Makefile +++ b/net/p5-POE-Component-Client-Ident/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= POE component for non-blocking ident lookups -BUILD_DEPENDS= p5-POE>=0.9999:devel/p5-POE -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-POE>=0.9999:devel/p5-POE TEST_DEPENDS= p5-Test-POE-Server-TCP>=0:devel/p5-Test-POE-Server-TCP USES= perl5 diff --git a/net/p5-POE-Component-Client-Keepalive/Makefile b/net/p5-POE-Component-Client-Keepalive/Makefile index 66e5478582b..f9eb0afb8c2 100644 --- a/net/p5-POE-Component-Client-Keepalive/Makefile +++ b/net/p5-POE-Component-Client-Keepalive/Makefile @@ -16,10 +16,10 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Net-IP-Minimal>=0.02:net/p5-Net-IP-Minimal \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Net-IP-Minimal>=0.02:net/p5-Net-IP-Minimal \ p5-POE>=1.311:devel/p5-POE \ p5-POE-Component-Resolver>=0.917:dns/p5-POE-Component-Resolver -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/net/p5-POE-Component-Client-Ping/Makefile b/net/p5-POE-Component-Client-Ping/Makefile index 153a5a896a5..4241f161646 100644 --- a/net/p5-POE-Component-Client-Ping/Makefile +++ b/net/p5-POE-Component-Client-Ping/Makefile @@ -13,8 +13,8 @@ COMMENT= POE component for non-blocking/concurrent ICMP ping LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-POE>=1.0070:devel/p5-POE -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-POE>=1.0070:devel/p5-POE NO_ARCH= yes USES= perl5 diff --git a/net/p5-POE-Component-Client-Telnet/Makefile b/net/p5-POE-Component-Client-Telnet/Makefile index 413b0c5f350..fce33001cc8 100644 --- a/net/p5-POE-Component-Client-Telnet/Makefile +++ b/net/p5-POE-Component-Client-Telnet/Makefile @@ -14,10 +14,10 @@ COMMENT= POE component that provides non-blocking access to Net::Telnet LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Devel-Symdump>=0:devel/p5-Devel-Symdump \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Devel-Symdump>=0:devel/p5-Devel-Symdump \ p5-Net-Telnet>=0:net/p5-Net-Telnet \ p5-POE>=0.31:devel/p5-POE -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/net/p5-POE-Component-Client-Twitter/Makefile b/net/p5-POE-Component-Client-Twitter/Makefile index 47bc2fec869..50c816ac11a 100644 --- a/net/p5-POE-Component-Client-Twitter/Makefile +++ b/net/p5-POE-Component-Client-Twitter/Makefile @@ -11,7 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= markun@onohara.to COMMENT= POE chat component for twitter.com -BUILD_DEPENDS= p5-libwww>=0:www/p5-libwww \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-libwww>=0:www/p5-libwww \ p5-JSON-Any>=0:converters/p5-JSON-Any \ p5-POE>=0:devel/p5-POE \ p5-POE-Component-Client-HTTP>=0:www/p5-POE-Component-Client-HTTP \ @@ -20,7 +21,6 @@ BUILD_DEPENDS= p5-libwww>=0:www/p5-libwww \ p5-Test-Base>=0:devel/p5-Test-Base \ p5-Module-Install-TestBase>=0:devel/p5-Module-Install-TestBase \ p5-Module-Install>=0:devel/p5-Module-Install -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/net/p5-POE-Component-Client-Whois/Makefile b/net/p5-POE-Component-Client-Whois/Makefile index 51bc1aed6ce..e46a5a86cbc 100644 --- a/net/p5-POE-Component-Client-Whois/Makefile +++ b/net/p5-POE-Component-Client-Whois/Makefile @@ -13,9 +13,9 @@ COMMENT= One shot non-blocking RFC 812 WHOIS query LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Net-Netmask>=1.9012:net-mgmt/p5-Net-Netmask \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Net-Netmask>=1.9012:net-mgmt/p5-Net-Netmask \ p5-POE>=1.004:devel/p5-POE -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/net/p5-POE-Component-Generic/Makefile b/net/p5-POE-Component-Generic/Makefile index 6d7c00a92c2..f214db1846d 100644 --- a/net/p5-POE-Component-Generic/Makefile +++ b/net/p5-POE-Component-Generic/Makefile @@ -13,10 +13,10 @@ COMMENT= Provides non-blocking access to a blocking object LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Devel-Symdump>=0:devel/p5-Devel-Symdump \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Devel-Symdump>=0:devel/p5-Devel-Symdump \ p5-Net-SSH2>=0:net/p5-Net-SSH2 \ p5-POE>=0.31:devel/p5-POE -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/net/p5-POE-Component-Jabber/Makefile b/net/p5-POE-Component-Jabber/Makefile index a2d7374a17f..959b67cfea0 100644 --- a/net/p5-POE-Component-Jabber/Makefile +++ b/net/p5-POE-Component-Jabber/Makefile @@ -11,7 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= POE Component for communicating over Jabber -BUILD_DEPENDS= p5-Authen-SASL>=0:security/p5-Authen-SASL \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Authen-SASL>=0:security/p5-Authen-SASL \ p5-Digest-SHA1>=0:security/p5-Digest-SHA1 \ p5-Filter-Template>=0:devel/p5-Filter-Template \ p5-Net-SSLeay>=0:security/p5-Net-SSLeay \ @@ -19,7 +20,6 @@ BUILD_DEPENDS= p5-Authen-SASL>=0:security/p5-Authen-SASL \ p5-POE-Component-SSLify>=0:security/p5-POE-Component-SSLify \ p5-POE-Filter-XML>=0:textproc/p5-POE-Filter-XML \ p5-POE>=0:devel/p5-POE -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 shebangfix SHEBANG_FILES= examples/* diff --git a/net/p5-POE-Component-Pcap/Makefile b/net/p5-POE-Component-Pcap/Makefile index b909cdfbc31..b9743b4a7ca 100644 --- a/net/p5-POE-Component-Pcap/Makefile +++ b/net/p5-POE-Component-Pcap/Makefile @@ -11,10 +11,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= POE component for non-blocking use of Net::Pcap -BUILD_DEPENDS= p5-POE>=0:devel/p5-POE \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-POE>=0:devel/p5-POE \ p5-Net-Pcap>=0:net/p5-Net-Pcap \ p5-NetPacket>=0:net/p5-NetPacket -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/net/p5-POE-Component-PubSub/Makefile b/net/p5-POE-Component-PubSub/Makefile index 2c01016957f..cd4b29cfc52 100644 --- a/net/p5-POE-Component-PubSub/Makefile +++ b/net/p5-POE-Component-PubSub/Makefile @@ -14,7 +14,8 @@ COMMENT= Generic publish/subscribe POE::Component LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Moose>=0.79:devel/p5-Moose \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Moose>=0.79:devel/p5-Moose \ p5-MooseX-Declare>=0.22:devel/p5-MooseX-Declare \ p5-MooseX-Types>=0:devel/p5-MooseX-Types \ p5-MooseX-Types-Set-Object>=0.02:devel/p5-MooseX-Types-Set-Object \ @@ -23,7 +24,6 @@ BUILD_DEPENDS= p5-Moose>=0.79:devel/p5-Moose \ p5-POE-API-Peek>=2.15:devel/p5-POE-API-Peek \ p5-POEx-Role-SessionInstantiation>=0.01:devel/p5-POEx-Role-SessionInstantiation \ p5-signatures>=0.05:lang/p5-signatures -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/net/p5-POE-Component-Server-Twirc/Makefile b/net/p5-POE-Component-Server-Twirc/Makefile index fa90ac71461..db8abdb7af2 100644 --- a/net/p5-POE-Component-Server-Twirc/Makefile +++ b/net/p5-POE-Component-Server-Twirc/Makefile @@ -13,7 +13,8 @@ COMMENT= Twitter/IRC gateway LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-AnyEvent>=0:devel/p5-AnyEvent \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-AnyEvent>=0:devel/p5-AnyEvent \ p5-AnyEvent-Twitter>=0:net/p5-AnyEvent-Twitter \ p5-AnyEvent-Twitter-Stream>=0:net/p5-AnyEvent-Twitter-Stream \ p5-Config-Any>=0:devel/p5-Config-Any \ @@ -34,7 +35,6 @@ BUILD_DEPENDS= p5-AnyEvent>=0:devel/p5-AnyEvent \ p5-Regexp-Common>=0:textproc/p5-Regexp-Common \ p5-String-Truncate>=0:textproc/p5-String-Truncate \ p5-Try-Tiny>=0:lang/p5-Try-Tiny -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/net/p5-PlRPC/Makefile b/net/p5-PlRPC/Makefile index d3bf4a19a18..644804202c6 100644 --- a/net/p5-PlRPC/Makefile +++ b/net/p5-PlRPC/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Perl module for writing RPC servers and clients -BUILD_DEPENDS= p5-Net-Daemon>=0:net/p5-Net-Daemon -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Net-Daemon>=0:net/p5-Net-Daemon USES= perl5 USE_PERL5= configure diff --git a/net/p5-REST-Application/Makefile b/net/p5-REST-Application/Makefile index 1a138a7821b..0b40c269583 100644 --- a/net/p5-REST-Application/Makefile +++ b/net/p5-REST-Application/Makefile @@ -12,8 +12,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Framework for building RESTful web-applications -BUILD_DEPENDS= p5-Tie-IxHash>=0:devel/p5-Tie-IxHash -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Tie-IxHash>=0:devel/p5-Tie-IxHash USES= perl5 USE_PERL5= configure diff --git a/net/p5-RPC-XML/Makefile b/net/p5-RPC-XML/Makefile index 1e17dd38240..cd103285766 100644 --- a/net/p5-RPC-XML/Makefile +++ b/net/p5-RPC-XML/Makefile @@ -13,9 +13,9 @@ COMMENT= XML-RPC client and server library for Perl LICENSE= ART20 LGPL21 LICENSE_COMB= dual -BUILD_DEPENDS= p5-XML-Parser>=2.31:textproc/p5-XML-Parser \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-XML-Parser>=2.31:textproc/p5-XML-Parser \ p5-libwww>=5.834:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-DateTime-Format-ISO8601>=0.07:devel/p5-DateTime-Format-ISO8601 NO_ARCH= yes diff --git a/net/p5-ResourcePool-Resource-Net-LDAP/Makefile b/net/p5-ResourcePool-Resource-Net-LDAP/Makefile index 1ce652fcd65..5fb0d96bc8c 100644 --- a/net/p5-ResourcePool-Resource-Net-LDAP/Makefile +++ b/net/p5-ResourcePool-Resource-Net-LDAP/Makefile @@ -13,9 +13,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= ResourcePool wrapper for Net::LDAP -BUILD_DEPENDS= p5-ResourcePool>=0:devel/p5-ResourcePool \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-ResourcePool>=0:devel/p5-ResourcePool \ p5-perl-ldap>=0:net/p5-perl-ldap -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/net/p5-Rose-URI/Makefile b/net/p5-Rose-URI/Makefile index 06f1ecb6209..15eeb9d5dc2 100644 --- a/net/p5-Rose-URI/Makefile +++ b/net/p5-Rose-URI/Makefile @@ -14,9 +14,9 @@ COMMENT= Easy and efficient manipulation of URI components LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Rose-Object>=0.854:devel/p5-Rose-Object \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Rose-Object>=0.854:devel/p5-Rose-Object \ p5-URI>0:net/p5-URI -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/net/p5-SOAP-Amazon-S3/Makefile b/net/p5-SOAP-Amazon-S3/Makefile index caddd44c15e..20186f87d53 100644 --- a/net/p5-SOAP-Amazon-S3/Makefile +++ b/net/p5-SOAP-Amazon-S3/Makefile @@ -13,10 +13,10 @@ COMMENT= Module for interfacing with Amazon S3 through SOAP LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Digest-HMAC>=0:security/p5-Digest-HMAC \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Digest-HMAC>=0:security/p5-Digest-HMAC \ p5-SOAP-MySOAP>=0:net/p5-SOAP-MySOAP \ p5-XML-MyXML>=0:textproc/p5-XML-MyXML -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/net/p5-SOAP-Data-Builder/Makefile b/net/p5-SOAP-Data-Builder/Makefile index 11db24a3c89..8e64860f86a 100644 --- a/net/p5-SOAP-Data-Builder/Makefile +++ b/net/p5-SOAP-Data-Builder/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Wrapper simplifying SOAP::Data and SOAP::Serialiser -BUILD_DEPENDS= p5-SOAP-Lite>=0:net/p5-SOAP-Lite -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-SOAP-Lite>=0:net/p5-SOAP-Lite USES= perl5 USE_PERL5= configure diff --git a/net/p5-SOAP-Lite/Makefile b/net/p5-SOAP-Lite/Makefile index 02db8b8035c..31077bab35c 100644 --- a/net/p5-SOAP-Lite/Makefile +++ b/net/p5-SOAP-Lite/Makefile @@ -14,7 +14,8 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Class-Inspector>=0:devel/p5-Class-Inspector \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Inspector>=0:devel/p5-Class-Inspector \ p5-IO-SessionData>=1.03:devel/p5-IO-SessionData \ p5-IO-Socket-SSL>=0:security/p5-IO-Socket-SSL \ p5-LWP-Protocol-https>=0:www/p5-LWP-Protocol-https \ @@ -24,7 +25,6 @@ BUILD_DEPENDS= p5-Class-Inspector>=0:devel/p5-Class-Inspector \ p5-XML-Parser>=2.23:textproc/p5-XML-Parser \ p5-XML-Parser-Lite>=0.715:textproc/p5-XML-Parser-Lite \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-MockObject>=0:devel/p5-Test-MockObject \ p5-Test-Warn>=0:devel/p5-Test-Warn \ p5-Test-XML>=0:devel/p5-Test-XML diff --git a/net/p5-SOAP-MySOAP/Makefile b/net/p5-SOAP-MySOAP/Makefile index 58c479151e7..ad2eb777249 100644 --- a/net/p5-SOAP-MySOAP/Makefile +++ b/net/p5-SOAP-MySOAP/Makefile @@ -14,8 +14,8 @@ COMMENT= Extremely basic SOAP client module LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-libwww>=0:www/p5-libwww NO_ARCH= yes USE_PERL5= configure diff --git a/net/p5-SOAP-XML-Client/Makefile b/net/p5-SOAP-XML-Client/Makefile index 8c3debbd798..9e4e0a5544c 100644 --- a/net/p5-SOAP-XML-Client/Makefile +++ b/net/p5-SOAP-XML-Client/Makefile @@ -14,12 +14,12 @@ COMMENT= Simple frame work for talking with web services LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Class-Accessor>=0:devel/p5-Class-Accessor \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Accessor>=0:devel/p5-Class-Accessor \ p5-File-Slurp>=0:devel/p5-File-Slurp \ p5-SOAP-Data-Builder>=0.8:net/p5-SOAP-Data-Builder \ p5-SOAP-Lite>=0.67:net/p5-SOAP-Lite \ p5-XML-LibXML>=0.6:textproc/p5-XML-LibXML -RUN_DEPENDS:= ${BUILD_DEPENDS} PORTSCOUT= skipv:2.26 diff --git a/net/p5-SOAP/Makefile b/net/p5-SOAP/Makefile index 4417b777682..5bfc0d60898 100644 --- a/net/p5-SOAP/Makefile +++ b/net/p5-SOAP/Makefile @@ -14,9 +14,9 @@ COMMENT= Perl modules providing an API to the Simple Object Access Protocol LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-XML-Parser>=0:textproc/p5-XML-Parser \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-XML-Parser>=0:textproc/p5-XML-Parser \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} CONFLICTS= p5-SOAP-Lite-[0-9]* diff --git a/net/p5-Samba-LDAP/Makefile b/net/p5-Samba-LDAP/Makefile index b51ef35ff1e..9ee14468140 100644 --- a/net/p5-Samba-LDAP/Makefile +++ b/net/p5-Samba-LDAP/Makefile @@ -11,7 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Manage a Samba PDC with an LDAP Backend -BUILD_DEPENDS= p5-Digest-SHA1>=0:security/p5-Digest-SHA1 \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Digest-SHA1>=0:security/p5-Digest-SHA1 \ p5-List-MoreUtils>=0:lang/p5-List-MoreUtils \ p5-Readonly>=0:devel/p5-Readonly \ p5-Class-Base>=0:devel/p5-Class-Base \ @@ -21,7 +22,6 @@ BUILD_DEPENDS= p5-Digest-SHA1>=0:security/p5-Digest-SHA1 \ p5-Regexp-DefaultFlags>=0:textproc/p5-Regexp-DefaultFlags \ p5-UNIVERSAL-require>=0:devel/p5-UNIVERSAL-require \ p5-Unicode-MapUTF8>=0:converters/p5-Unicode-MapUTF8 -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/net/p5-Test-URI/Makefile b/net/p5-Test-URI/Makefile index 7da5c892ed3..339cc0ed1d1 100644 --- a/net/p5-Test-URI/Makefile +++ b/net/p5-Test-URI/Makefile @@ -13,8 +13,8 @@ COMMENT= Check Uniform Resource Identifiers LICENSE= ART20 LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-URI>=0:net/p5-URI -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-URI>=0:net/p5-URI NO_ARCH= yes USE_PERL5= configure diff --git a/net/p5-URI-FromHash/Makefile b/net/p5-URI-FromHash/Makefile index 19cc011338b..7d746eee37a 100644 --- a/net/p5-URI-FromHash/Makefile +++ b/net/p5-URI-FromHash/Makefile @@ -12,9 +12,9 @@ COMMENT= Create URI from hash of components LICENSE= ART20 -BUILD_DEPENDS= p5-Params-Validate>=0:devel/p5-Params-Validate \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Params-Validate>=0:devel/p5-Params-Validate \ p5-URI>=1.68:net/p5-URI -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/net/p5-URI-OpenURL/Makefile b/net/p5-URI-OpenURL/Makefile index 1ea1792af95..7cfd2264cdc 100644 --- a/net/p5-URI-OpenURL/Makefile +++ b/net/p5-URI-OpenURL/Makefile @@ -14,8 +14,8 @@ COMMENT= Parse and construct OpenURL's (NISO Z39.88-2004) LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-URI>=0:net/p5-URI -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-URI>=0:net/p5-URI USES= perl5 USE_PERL5= configure diff --git a/net/p5-URI-Query/Makefile b/net/p5-URI-Query/Makefile index f1fa044f6a3..259c2fa6ec0 100644 --- a/net/p5-URI-Query/Makefile +++ b/net/p5-URI-Query/Makefile @@ -14,9 +14,9 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Clone>=0:devel/p5-Clone \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Clone>=0:devel/p5-Clone \ p5-URI>=0:net/p5-URI -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USE_PERL5= configure diff --git a/net/p5-URI-SmartURI/Makefile b/net/p5-URI-SmartURI/Makefile index 09fcb465dda..bb4eddb1e28 100644 --- a/net/p5-URI-SmartURI/Makefile +++ b/net/p5-URI-SmartURI/Makefile @@ -14,14 +14,14 @@ COMMENT= Subclassable and hostless URIs LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Class-C3-Componentised>=0:devel/p5-Class-C3-Componentised \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-C3-Componentised>=0:devel/p5-Class-C3-Componentised \ p5-File-Find-Rule>=0:devel/p5-File-Find-Rule \ p5-List-MoreUtils>=0:lang/p5-List-MoreUtils \ p5-MRO-Compat>=0.09:devel/p5-MRO-Compat \ p5-Moose>=0:devel/p5-Moose \ p5-URI>=1.51:net/p5-URI \ p5-namespace-clean>=0:devel/p5-namespace-clean -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Fatal>0:devel/p5-Test-Fatal \ p5-Test-NoWarnings>0:devel/p5-Test-NoWarnings diff --git a/net/p5-URI-Template/Makefile b/net/p5-URI-Template/Makefile index 424ee5c8a12..e81439989ef 100644 --- a/net/p5-URI-Template/Makefile +++ b/net/p5-URI-Template/Makefile @@ -13,8 +13,8 @@ COMMENT= Object for handling URI templates LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-URI>0:net/p5-URI -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-URI>0:net/p5-URI TEST_DEPENDS= p5-JSON>=0:converters/p5-JSON USES= perl5 diff --git a/net/p5-URI-db/Makefile b/net/p5-URI-db/Makefile index 10a6bd839d8..d9751fe9b3b 100644 --- a/net/p5-URI-db/Makefile +++ b/net/p5-URI-db/Makefile @@ -14,9 +14,9 @@ COMMENT= Perl5 module representing database URIs LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-URI>=1.40:net/p5-URI \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-URI>=1.40:net/p5-URI \ p5-URI-Nested>=0.10:net/p5-URI-Nested -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/net/p5-URI-ws/Makefile b/net/p5-URI-ws/Makefile index 8a01eb8bd87..81817e8bea9 100644 --- a/net/p5-URI-ws/Makefile +++ b/net/p5-URI-ws/Makefile @@ -13,8 +13,8 @@ COMMENT= WebSocket support for URI package LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-URI>=0:net/p5-URI -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-URI>=0:net/p5-URI USE_PERL5= configure USES= perl5 diff --git a/net/p5-VM-EC2-Security-CredentialCache/Makefile b/net/p5-VM-EC2-Security-CredentialCache/Makefile index 060787db9cc..0398eaa5624 100644 --- a/net/p5-VM-EC2-Security-CredentialCache/Makefile +++ b/net/p5-VM-EC2-Security-CredentialCache/Makefile @@ -13,9 +13,9 @@ COMMENT= Cache credentials respecting expriation time for IAM roles LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-DateTime-Format-ISO8601>=0:devel/p5-DateTime-Format-ISO8601 \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-DateTime-Format-ISO8601>=0:devel/p5-DateTime-Format-ISO8601 \ p5-VM-EC2>=0:net/p5-VM-EC2 -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USE_PERL5= configure diff --git a/net/p5-VM-EC2/Makefile b/net/p5-VM-EC2/Makefile index 26abaacb54c..1bf4370eed7 100644 --- a/net/p5-VM-EC2/Makefile +++ b/net/p5-VM-EC2/Makefile @@ -15,7 +15,8 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-AnyEvent-CacheDNS>=0.08:dns/p5-AnyEvent-CacheDNS \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-AnyEvent-CacheDNS>=0.08:dns/p5-AnyEvent-CacheDNS \ p5-AnyEvent-HTTP>=2.15:www/p5-AnyEvent-HTTP \ p5-AnyEvent>=7.04:devel/p5-AnyEvent \ p5-JSON>=0:converters/p5-JSON \ @@ -23,7 +24,6 @@ BUILD_DEPENDS= p5-AnyEvent-CacheDNS>=0.08:dns/p5-AnyEvent-CacheDNS \ p5-URI>=1.40:net/p5-URI \ p5-XML-Simple>=2.18:textproc/p5-XML-Simple \ p5-libwww>=5.835:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USE_PERL5= modbuild diff --git a/net/p5-Validate-Net/Makefile b/net/p5-Validate-Net/Makefile index a8fe6489933..0e75b44bec9 100644 --- a/net/p5-Validate-Net/Makefile +++ b/net/p5-Validate-Net/Makefile @@ -12,8 +12,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Format validation and more for Net:: related strings -BUILD_DEPENDS= p5-Class-Default>=0:devel/p5-Class-Default -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Default>=0:devel/p5-Class-Default USES= perl5 USE_PERL5= configure diff --git a/net/p5-WebService-Dropbox/Makefile b/net/p5-WebService-Dropbox/Makefile index 9aa73ddd184..3bc0b6be4c6 100644 --- a/net/p5-WebService-Dropbox/Makefile +++ b/net/p5-WebService-Dropbox/Makefile @@ -14,14 +14,13 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -MY_DEPENDS= p5-HTTP-Message>=6.06:www/p5-HTTP-Message \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTTP-Message>=6.06:www/p5-HTTP-Message \ p5-JSON>=2.59:converters/p5-JSON \ p5-LWP-Protocol-https>=6.04:www/p5-LWP-Protocol-https \ p5-Net-OAuth>=0.28:net/p5-Net-OAuth \ p5-URI>=1.60:net/p5-URI \ p5-libwww>=6.05:www/p5-libwww -BUILD_DEPENDS= ${MY_DEPENDS} -RUN_DEPENDS= ${MY_DEPENDS} OPTIONS_DEFINE= FURL OPTIONS_DEFAULT=FURL @@ -31,9 +30,8 @@ USES= perl5 USE_PERL5= modbuildtiny NO_ARCH= yes -FURL_BUILD_DEPENDS= p5-Furl>=2.19:www/p5-Furl \ +FURL_RUN_DEPENDS= p5-Furl>=2.19:www/p5-Furl \ p5-IO-Socket-SSL>=1.954:security/p5-IO-Socket-SSL \ p5-JSON-XS>=3.02:converters/p5-JSON-XS -FURL_RUN_DEPENDS= ${FURL_BUILD_DEPENDS} .include diff --git a/net/p5-WebService-Prowl/Makefile b/net/p5-WebService-Prowl/Makefile index dae9ea6a9f3..3c259931c4a 100644 --- a/net/p5-WebService-Prowl/Makefile +++ b/net/p5-WebService-Prowl/Makefile @@ -14,10 +14,10 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-libwww>=0:www/p5-libwww \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-libwww>=0:www/p5-libwww \ p5-LWP-Protocol-https>=0:www/p5-LWP-Protocol-https \ p5-XML-Simple>=0:textproc/p5-XML-Simple -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= modbuildtiny diff --git a/net/p5-What/Makefile b/net/p5-What/Makefile index 4d398b1d67f..4afe74bb5e6 100644 --- a/net/p5-What/Makefile +++ b/net/p5-What/Makefile @@ -15,9 +15,9 @@ COMMENT= Find out about running services LICENSE= GPLv2 GPLv3 LICENSE_COMB= dual -BUILD_DEPENDS= p5-Error>=0:lang/p5-Error \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Error>=0:lang/p5-Error \ p5-Exception-Class>=1.21:devel/p5-Exception-Class -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Exception>=0:devel/p5-Test-Exception \ p5-Test-Pod>=1:devel/p5-Test-Pod diff --git a/net/p5-X500-DN/Makefile b/net/p5-X500-DN/Makefile index 7ebc114e8b4..445581b6791 100644 --- a/net/p5-X500-DN/Makefile +++ b/net/p5-X500-DN/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Handle X.500 DNs (Distinguished Names), parse, and format them -BUILD_DEPENDS= p5-Parse-RecDescent>=0:devel/p5-Parse-RecDescent -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Parse-RecDescent>=0:devel/p5-Parse-RecDescent USES= perl5 USE_PERL5= configure diff --git a/net/p5-XML-Compile-SOAP-AnyEvent/Makefile b/net/p5-XML-Compile-SOAP-AnyEvent/Makefile index 0e9e2cbe699..4437e7a74c0 100644 --- a/net/p5-XML-Compile-SOAP-AnyEvent/Makefile +++ b/net/p5-XML-Compile-SOAP-AnyEvent/Makefile @@ -10,11 +10,11 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Exchange XML via AnyEvent::HTTP -BUILD_DEPENDS= p5-AnyEvent-HTTP>=1.46:www/p5-AnyEvent-HTTP \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-AnyEvent-HTTP>=1.46:www/p5-AnyEvent-HTTP \ p5-HTTP-Message>=0:www/p5-HTTP-Message \ p5-Log-Report>=1.05:devel/p5-Log-Report \ p5-XML-Compile-SOAP>=3.05:net/p5-XML-Compile-SOAP -RUN_DEPENDS:= ${BUILD_DEPENDS} LICENSE= ART10 GPLv1+ LICENSE_COMB= dual diff --git a/net/p5-XML-Compile-SOAP-Daemon/Makefile b/net/p5-XML-Compile-SOAP-Daemon/Makefile index 8f41437aafb..b1ab739e29d 100644 --- a/net/p5-XML-Compile-SOAP-Daemon/Makefile +++ b/net/p5-XML-Compile-SOAP-Daemon/Makefile @@ -13,12 +13,12 @@ COMMENT= Base class for SOAP message servers LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Log-Report>=1.23:devel/p5-Log-Report \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Log-Report>=1.23:devel/p5-Log-Report \ p5-XML-Compile>=1.44:textproc/p5-XML-Compile \ p5-XML-Compile-Cache>=0.991:textproc/p5-XML-Compile-Cache \ p5-XML-Compile-SOAP>=3.00:net/p5-XML-Compile-SOAP \ p5-XML-Compile-WSDL11>=3.00:net/p5-XML-Compile-WSDL11 -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-XML-Compile-Tester>=0.90:devel/p5-XML-Compile-Tester NO_ARCH= yes diff --git a/net/p5-XML-Compile-SOAP-WSA/Makefile b/net/p5-XML-Compile-SOAP-WSA/Makefile index 9dcf603e4ab..53713d0dfba 100644 --- a/net/p5-XML-Compile-SOAP-WSA/Makefile +++ b/net/p5-XML-Compile-SOAP-WSA/Makefile @@ -14,13 +14,13 @@ COMMENT= SOAP message messages with WSA fields LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Net-Server>=0.97:net/p5-Net-Server \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Net-Server>=0.97:net/p5-Net-Server \ p5-libwww>=5.803:www/p5-libwww \ p5-Log-Report>=0.22:devel/p5-Log-Report \ p5-XML-Compile-SOAP>=2.10:net/p5-XML-Compile-SOAP \ p5-XML-Compile>=1.01:textproc/p5-XML-Compile \ p5-XML-Compile-Cache>=0.91:textproc/p5-XML-Compile-Cache -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/net/p5-XML-Compile-SOAP/Makefile b/net/p5-XML-Compile-SOAP/Makefile index 37eb754b937..80fc19b32ff 100644 --- a/net/p5-XML-Compile-SOAP/Makefile +++ b/net/p5-XML-Compile-SOAP/Makefile @@ -13,13 +13,13 @@ COMMENT= Base-class for SOAP implementations LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-File-Slurp-Tiny>=0:devel/p5-File-Slurp-Tiny \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-File-Slurp-Tiny>=0:devel/p5-File-Slurp-Tiny \ p5-Log-Report>=1.05:devel/p5-Log-Report \ p5-Net-HTTP>=6.16:net/p5-Net-HTTP \ p5-XML-Compile>=1.58:textproc/p5-XML-Compile \ p5-XML-Compile-Cache>=1.03:textproc/p5-XML-Compile-Cache \ p5-libwww>=6.08:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-XML-Compile-Tester>=0.90:devel/p5-XML-Compile-Tester NO_ARCH= yes diff --git a/net/p5-XML-Compile-WSDL11/Makefile b/net/p5-XML-Compile-WSDL11/Makefile index 68350ca6632..d69a88ce4fa 100644 --- a/net/p5-XML-Compile-WSDL11/Makefile +++ b/net/p5-XML-Compile-WSDL11/Makefile @@ -13,11 +13,11 @@ COMMENT= Create SOAP messages defined by WSDL 1.1 LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Log-Report>=1.05:devel/p5-Log-Report \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Log-Report>=1.05:devel/p5-Log-Report \ p5-XML-Compile>=1.48:textproc/p5-XML-Compile \ p5-XML-Compile-Cache>=1.03:textproc/p5-XML-Compile-Cache \ p5-XML-Compile-SOAP>=3.23:net/p5-XML-Compile-SOAP -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USE_PERL5= configure diff --git a/net/p5-XML-RPC-Fast/Makefile b/net/p5-XML-RPC-Fast/Makefile index b19412a82b5..817e7203e0a 100644 --- a/net/p5-XML-RPC-Fast/Makefile +++ b/net/p5-XML-RPC-Fast/Makefile @@ -11,12 +11,12 @@ PKGNAMEPREFIX= p5- MAINTAINER= mons@cpan.org COMMENT= Fast and modular implementation for an XML-RPC client and server -BUILD_DEPENDS= p5-HTTP-Message>=0:www/p5-HTTP-Message \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTTP-Message>=0:www/p5-HTTP-Message \ p5-WWW-Curl>=0:www/p5-WWW-Curl \ p5-XML-Hash-LX>=0.05:textproc/p5-XML-Hash-LX \ p5-XML-LibXML>=1.58:textproc/p5-XML-LibXML \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-NoWarnings>=0:devel/p5-Test-NoWarnings diff --git a/net/p5-XMLRPC-Lite/Makefile b/net/p5-XMLRPC-Lite/Makefile index 4ec7783bfea..910318290b7 100644 --- a/net/p5-XMLRPC-Lite/Makefile +++ b/net/p5-XMLRPC-Lite/Makefile @@ -12,9 +12,9 @@ COMMENT= Client and server side XMLRPC implementation LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-SOAP-Lite>=1.11:net/p5-SOAP-Lite +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-SOAP-Lite>=1.11:net/p5-SOAP-Lite -RUN_DEPENDS:= ${BUILD_DEPENDS} CONFIGURE_ARGS= --noprompt INSTALL_TARGET= pure_install diff --git a/net/p5-XPC/Makefile b/net/p5-XPC/Makefile index 1f5a33e6a71..52c36af8a81 100644 --- a/net/p5-XPC/Makefile +++ b/net/p5-XPC/Makefile @@ -12,10 +12,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= XML Procedure Call (XPC) -BUILD_DEPENDS= p5-XML-Parser>=0:textproc/p5-XML-Parser \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-XML-Parser>=0:textproc/p5-XML-Parser \ p5-libwww>=0:www/p5-libwww \ p5-URI>=0:net/p5-URI -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/net/p5-perl-ldap/Makefile b/net/p5-perl-ldap/Makefile index 72a6db54c1a..42ce8e99969 100644 --- a/net/p5-perl-ldap/Makefile +++ b/net/p5-perl-ldap/Makefile @@ -15,14 +15,14 @@ COMMENT= Client interface to LDAP (includes Net::LDAP) LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Authen-SASL>=2.00:security/p5-Authen-SASL \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Authen-SASL>=2.00:security/p5-Authen-SASL \ p5-Convert-ASN1>=0.20:converters/p5-Convert-ASN1 \ p5-IO-Socket-SSL>=1.26:security/p5-IO-Socket-SSL \ p5-Text-Soundex>=0:textproc/p5-Text-Soundex \ p5-URI>=1.10:net/p5-URI \ p5-XML-SAX-Base>0:textproc/p5-XML-SAX-Base \ p5-XML-SAX-Writer>0:textproc/p5-XML-SAX-Writer -RUN_DEPENDS:= ${BUILD_DEPENDS} OPTIONS_DEFINE= LWP LWP_DESC= LDAP support via LWP diff --git a/net/pecl-oauth2/Makefile b/net/pecl-oauth2/Makefile index 7f070cf0f71..ff3c334905a 100644 --- a/net/pecl-oauth2/Makefile +++ b/net/pecl-oauth2/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= oauth -PORTVERSION= 2.0.2 +PORTVERSION= 2.0.3 CATEGORIES= net pear MAINTAINER= dbaio@FreeBSD.org diff --git a/net/pecl-oauth2/distinfo b/net/pecl-oauth2/distinfo index 5b6a7ea6cf1..3cda2937375 100644 --- a/net/pecl-oauth2/distinfo +++ b/net/pecl-oauth2/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1474130147 -SHA256 (PECL/oauth-2.0.2.tgz) = 87ce1a5d585f439f0ead2683f2f7dca76d538df9143da681978356b5e1c6e8e8 -SIZE (PECL/oauth-2.0.2.tgz) = 49115 +TIMESTAMP = 1538435085 +SHA256 (PECL/oauth-2.0.3.tgz) = cb4b65bed8854f01bdf741e23f0a27cdc29618d588d8222a7bb0519b0332b4ae +SIZE (PECL/oauth-2.0.3.tgz) = 49413 diff --git a/net/py-netif/Makefile b/net/py-netif/Makefile index 5da61c024ab..dabe28a11f9 100644 --- a/net/py-netif/Makefile +++ b/net/py-netif/Makefile @@ -2,7 +2,8 @@ # $FreeBSD$ PORTNAME= netif -PORTVERSION= 1.0.20171226 +PORTVERSION= 1.0.20181005 +PORTREVISION= 1 CATEGORIES= net python PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -17,8 +18,9 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}bsd>0:devel/py-bsd@${PY_FLAVOR} \ USE_GITHUB= yes GH_ACCOUNT= freenas GH_PROJECT= py-netif -GH_TAGNAME= 52675e6 +GH_TAGNAME= ebffafe +HAS_CONFIGURE= yes USES= python USE_PYTHON= autoplist distutils cython diff --git a/net/py-netif/distinfo b/net/py-netif/distinfo index a928eb8d674..02ba6898889 100644 --- a/net/py-netif/distinfo +++ b/net/py-netif/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1514291490 -SHA256 (freenas-py-netif-1.0.20171226-52675e6_GH0.tar.gz) = b5fd7cfa45048426dd67781964d43f825d04f9d4e8ca09d03a15201cb19f2795 -SIZE (freenas-py-netif-1.0.20171226-52675e6_GH0.tar.gz) = 21654 +TIMESTAMP = 1538733910 +SHA256 (freenas-py-netif-1.0.20181005-ebffafe_GH0.tar.gz) = b81a78efc134a7a68a1ab5a7f0af366a66ae7d88931e10be8c38e836ee550bfc +SIZE (freenas-py-netif-1.0.20181005-ebffafe_GH0.tar.gz) = 59574 diff --git a/net/py-pyshark/Makefile b/net/py-pyshark/Makefile index 62c415cd187..c879bb05069 100644 --- a/net/py-pyshark/Makefile +++ b/net/py-pyshark/Makefile @@ -7,7 +7,7 @@ CATEGORIES= net python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -MAINTAINER= feld@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Pyhon packet parsing using wireshark dissectors LICENSE= MIT diff --git a/net/py-softlayer/Makefile b/net/py-softlayer/Makefile index 4d8bbec361d..49597a05cdc 100644 --- a/net/py-softlayer/Makefile +++ b/net/py-softlayer/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= softlayer -PORTVERSION= 5.5.2 +PORTVERSION= 5.5.3 CATEGORIES= net python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -22,8 +22,9 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}click>=5:devel/py-click@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}six>=1.7.0:devel/py-six@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}urllib3>=1.22:net/py-urllib3@${PY_FLAVOR} -NO_ARCH= yes -USE_PYTHON= autoplist concurrent distutils USES= python +USE_PYTHON= autoplist concurrent distutils + +NO_ARCH= yes .include diff --git a/net/py-softlayer/distinfo b/net/py-softlayer/distinfo index 2fdc5879df6..ec6798c2ec0 100644 --- a/net/py-softlayer/distinfo +++ b/net/py-softlayer/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1535829088 -SHA256 (SoftLayer-5.5.2.tar.gz) = 5565b9640d9300d3645074c9e7d4bff024f496746acc4d6b37bea8bddb6b21d2 -SIZE (SoftLayer-5.5.2.tar.gz) = 272198 +TIMESTAMP = 1538663122 +SHA256 (SoftLayer-5.5.3.tar.gz) = dde0801a32bcb5fe96fb88c0aaf3612994ea0eedd56b765443fed7df12d02848 +SIZE (SoftLayer-5.5.3.tar.gz) = 276555 diff --git a/net/rubygem-fog-openstack/Makefile b/net/rubygem-fog-openstack/Makefile index aebbe2fc40b..c78cdd56785 100644 --- a/net/rubygem-fog-openstack/Makefile +++ b/net/rubygem-fog-openstack/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= fog-openstack -PORTVERSION= 1.0.2 +PORTVERSION= 1.0.3 CATEGORIES= net rubygems MASTER_SITES= RG diff --git a/net/rubygem-fog-openstack/distinfo b/net/rubygem-fog-openstack/distinfo index c7375bb9de0..e4ad2a9b21c 100644 --- a/net/rubygem-fog-openstack/distinfo +++ b/net/rubygem-fog-openstack/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1538160086 -SHA256 (rubygem/fog-openstack-1.0.2.gem) = d136b7dfdfd09d285ab51437f8dae897efa5b98071334b9a22520125c24eab47 -SIZE (rubygem/fog-openstack-1.0.2.gem) = 227328 +TIMESTAMP = 1538592094 +SHA256 (rubygem/fog-openstack-1.0.3.gem) = ed0407e63a0f367ae87e3f33d3e48d873f448a62d5dd91cce5f2232dba34f246 +SIZE (rubygem/fog-openstack-1.0.3.gem) = 227328 diff --git a/net/rubygem-ovirt-engine-sdk/Makefile b/net/rubygem-ovirt-engine-sdk/Makefile index 55e847514df..655bd5e20f7 100644 --- a/net/rubygem-ovirt-engine-sdk/Makefile +++ b/net/rubygem-ovirt-engine-sdk/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= ovirt-engine-sdk -PORTVERSION= 4.2.4 +PORTVERSION= 4.2.5 CATEGORIES= net rubygems MASTER_SITES= RG diff --git a/net/rubygem-ovirt-engine-sdk/distinfo b/net/rubygem-ovirt-engine-sdk/distinfo index 5c6ab28b446..a5e86cd3986 100644 --- a/net/rubygem-ovirt-engine-sdk/distinfo +++ b/net/rubygem-ovirt-engine-sdk/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1524081705 -SHA256 (rubygem/ovirt-engine-sdk-4.2.4.gem) = 845a9f03d307293699bc299f5fd216e780b4c537ece22ad7e26d963cd413dd41 -SIZE (rubygem/ovirt-engine-sdk-4.2.4.gem) = 320512 +TIMESTAMP = 1538814826 +SHA256 (rubygem/ovirt-engine-sdk-4.2.5.gem) = d1ddc391191bbc05ef1e727a797e9ce1cad329585a6767504dda8c27f6c521dd +SIZE (rubygem/ovirt-engine-sdk-4.2.5.gem) = 322560 diff --git a/net/samba46/Makefile b/net/samba46/Makefile index c619a4ac2f0..bb372be1790 100644 --- a/net/samba46/Makefile +++ b/net/samba46/Makefile @@ -3,7 +3,7 @@ PORTNAME?= ${SAMBA4_BASENAME}46 PORTVERSION?= ${SAMBA4_VERSION} -PORTREVISION?= 0 +PORTREVISION?= 1 CATEGORIES?= net MASTER_SITES= SAMBA/samba/stable SAMBA/samba/rc DISTNAME= ${SAMBA4_DISTNAME} diff --git a/net/samba46/files/patch-source3__wscript_build b/net/samba46/files/patch-source3__wscript_build index 61831292bfb..1e51d37da3b 100644 --- a/net/samba46/files/patch-source3__wscript_build +++ b/net/samba46/files/patch-source3__wscript_build @@ -1,6 +1,14 @@ --- source3/wscript_build.orig 2017-05-23 08:19:23 UTC +++ source3/wscript_build -@@ -741,6 +741,7 @@ bld.SAMBA3_LIBRARY('smbd_base', +@@ -151,7 +151,6 @@ ldapsam_pdb_match = ['!priv2ld', '!smbldap_search_doma + '!get_attr_list'] + private_pdb_match.append('!pdb_nds_*') + private_pdb_match.append('!pdb_ldapsam_init*') +-private_pdb_match.append('!pdb_*_init') + private_pdb_match = private_pdb_match + ldapsam_pdb_match + + bld.SAMBA3_LIBRARY('samba-passdb', +@@ -741,6 +740,7 @@ bld.SAMBA3_LIBRARY('smbd_base', smbd_conn param_service AVAHI @@ -8,7 +16,7 @@ PRINTBASE PROFILE LOCKING -@@ -1129,6 +1130,7 @@ bld.SAMBA3_BINARY('client/smbclient', +@@ -1129,6 +1129,7 @@ bld.SAMBA3_BINARY('client/smbclient', msrpc3 RPC_NDR_SRVSVC cli_smb_common diff --git a/net/samba47/Makefile b/net/samba47/Makefile index 5ca2e0daa67..ebeb385842d 100644 --- a/net/samba47/Makefile +++ b/net/samba47/Makefile @@ -3,7 +3,7 @@ PORTNAME= ${SAMBA4_BASENAME}47 PORTVERSION= ${SAMBA4_VERSION} -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES?= net MASTER_SITES= SAMBA/samba/stable SAMBA/samba/rc DISTNAME= ${SAMBA4_DISTNAME} diff --git a/net/samba47/files/patch-source3__wscript_build b/net/samba47/files/patch-source3__wscript_build index 66817d31791..e81cd49bb22 100644 --- a/net/samba47/files/patch-source3__wscript_build +++ b/net/samba47/files/patch-source3__wscript_build @@ -1,6 +1,14 @@ ---- source3/wscript_build.orig 2017-07-25 13:09:58 UTC +--- source3/wscript_build.orig 2018-08-11 19:50:02 UTC +++ source3/wscript_build -@@ -240,11 +240,9 @@ bld.SAMBA3_SUBSYSTEM('SMBREGISTRY', +@@ -143,7 +143,6 @@ ldapsam_pdb_match = ['!priv2ld', '!smbldap_search_doma + '!get_attr_list'] + private_pdb_match.append('!pdb_nds_*') + private_pdb_match.append('!pdb_ldapsam_init*') +-private_pdb_match.append('!pdb_*_init') + private_pdb_match = private_pdb_match + ldapsam_pdb_match + + bld.SAMBA3_LIBRARY('samba-passdb', +@@ -240,11 +239,9 @@ bld.SAMBA3_SUBSYSTEM('SMBREGISTRY', talloc replace util_reg @@ -13,7 +21,7 @@ ''') # Do not link against this use 'smbconf' -@@ -509,7 +507,7 @@ bld.SAMBA3_LIBRARY('secrets3', +@@ -510,7 +507,7 @@ bld.SAMBA3_LIBRARY('secrets3', bld.SAMBA3_LIBRARY('smbldap', source='lib/smbldap.c', @@ -22,7 +30,7 @@ enabled=bld.CONFIG_SET("HAVE_LDAP"), private_library=False, abi_directory='lib/ABI', -@@ -733,6 +731,7 @@ bld.SAMBA3_LIBRARY('smbd_base', +@@ -734,6 +731,7 @@ bld.SAMBA3_LIBRARY('smbd_base', smbd_conn param_service AVAHI @@ -30,7 +38,7 @@ PRINTBASE PROFILE LOCKING -@@ -1121,6 +1120,7 @@ bld.SAMBA3_BINARY('client/smbclient', +@@ -1122,6 +1120,7 @@ bld.SAMBA3_BINARY('client/smbclient', msrpc3 RPC_NDR_SRVSVC cli_smb_common diff --git a/net/tcpflow/Makefile b/net/tcpflow/Makefile index 98900c79eba..a16641dace8 100644 --- a/net/tcpflow/Makefile +++ b/net/tcpflow/Makefile @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= tcpflow -PORTVERSION= 1.4.5 -PORTREVISION= 8 +PORTVERSION= 1.5.0 CATEGORIES= net MASTER_SITES= http://digitalcorpora.org/downloads/${PORTNAME}/ @@ -11,11 +10,16 @@ MAINTAINER= antoine@FreeBSD.org COMMENT= Program that captures data transmitted as part of TCP connections LICENSE= GPLv3 +LICENSE_FILE= ${WRKSRC}/COPYING BUILD_DEPENDS= ${LOCALBASE}/include/boost/icl/interval.hpp:devel/boost-libs -LIB_DEPENDS= libcairo.so:graphics/cairo +LIB_DEPENDS= libcairo.so:graphics/cairo \ + libexpat.so:textproc/expat2 \ + libfontconfig.so:x11-fonts/fontconfig \ + libfreetype.so:print/freetype2 -USES= ssl +USES= python:2.7 ssl +USE_XORG= pixman GNU_CONFIGURE= yes CONFIGURE_ENV= ac_cv_lib_md_MD5=no \ ac_cv_header_tre_tre_h=no ac_cv_lib_tre_tre_regcomp=no \ @@ -24,12 +28,5 @@ CPPFLAGS+= -I${LOCALBASE}/include LIBS+= -L${LOCALBASE}/lib PLIST_FILES= bin/tcpflow man/man1/tcpflow.1.gz -PORTDOCS= AUTHORS ChangeLog NEWS README - -OPTIONS_DEFINE= DOCS - -post-install-DOCS-on: - @${MKDIR} ${STAGEDIR}${DOCSDIR} - ${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR} .include diff --git a/net/tcpflow/distinfo b/net/tcpflow/distinfo index e719b5612a4..e489f3ba4d4 100644 --- a/net/tcpflow/distinfo +++ b/net/tcpflow/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1474383833 -SHA256 (tcpflow-1.4.5.tar.gz) = f39fed437911b858c97937bc902f68f9a690753617abe825411a8483a7f70c72 -SIZE (tcpflow-1.4.5.tar.gz) = 450450 +TIMESTAMP = 1534763117 +SHA256 (tcpflow-1.5.0.tar.gz) = 20abe3353a49a13dcde17ad318d839df6312aa6e958203ea710b37bede33d988 +SIZE (tcpflow-1.5.0.tar.gz) = 471429 diff --git a/net/traefik/Makefile b/net/traefik/Makefile index 6f7d5d090b2..7a7662d7457 100644 --- a/net/traefik/Makefile +++ b/net/traefik/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= traefik -PORTVERSION= 1.6.6 +PORTVERSION= 1.7.1 DISTVERSIONPREFIX= v CATEGORIES= net MASTER_SITES= LOCAL/riggs/${PORTNAME}:webui diff --git a/net/traefik/distinfo b/net/traefik/distinfo index 6f8bf406b97..6cc79cc6490 100644 --- a/net/traefik/distinfo +++ b/net/traefik/distinfo @@ -1,5 +1,5 @@ -TIMESTAMP = 1535614354 -SHA256 (traefik-webui-static-1.6.6.tar.gz) = 22293c2e04213fc37bb1dac2ef9447ea2856c01cc3ff212dde4d614fd7f57608 -SIZE (traefik-webui-static-1.6.6.tar.gz) = 920499 -SHA256 (containous-traefik-v1.6.6_GH0.tar.gz) = f5b5e5b6c990e1e06d2ae599e5cc04864831b3072b2d7c3fcdd71fbd7100fb52 -SIZE (containous-traefik-v1.6.6_GH0.tar.gz) = 9775054 +TIMESTAMP = 1538589536 +SHA256 (traefik-webui-static-1.7.1.tar.gz) = 36b85e607588b81981642d68fe72c0796d345be06b1eefa5f7d859b019172210 +SIZE (traefik-webui-static-1.7.1.tar.gz) = 924811 +SHA256 (containous-traefik-v1.7.1_GH0.tar.gz) = 4059f119fec2365739a95c1c583efc8d106f9bebda9e9b676da1ae09b491c5f2 +SIZE (containous-traefik-v1.7.1_GH0.tar.gz) = 10366440 diff --git a/net/turnserver/Makefile b/net/turnserver/Makefile index d74bc9e484f..e8a795daf7a 100644 --- a/net/turnserver/Makefile +++ b/net/turnserver/Makefile @@ -1,15 +1,12 @@ # $FreeBSD$ PORTNAME= turnserver -PORTVERSION= 4.5.0.7 +PORTVERSION= 4.5.0.8 CATEGORIES= net -MASTER_SITES= http://turnserver.open-sys.org/downloads/v${PORTVERSION}/:prog \ - http://turnserver.open-sys.org/downloads/extradocs/:xdocs \ - http://coturn.net/turnserver/v${PORTVERSION}/:prog \ +MASTER_SITES= http://turnserver.open-sys.org/downloads/extradocs/:xdocs \ http://coturn.net/turnserver/extradocs/:xdocs PKGNAMEPREFIX= -DISTFILES= ${DISTNAME}${EXTRACT_SUFX}:prog \ - turn.extra.docs-2.0.0.1.tar.gz:xdocs +DISTFILES= turn.extra.docs-2.0.0.1.tar.gz:xdocs MAINTAINER= bhughes@FreeBSD.org COMMENT= STUN/TURN Server; IPv6, DTLS support; RFCs 5389, 5766, 6062, 6156 @@ -27,6 +24,10 @@ CONFIGURE_ENV+= PTHREAD_LIBS=-pthread TURN_DISABLE_RPATH=1 CONFIGURE_ENV+= TURN_NO_MONGO=1 TEST_TARGET= test +USE_GITHUB= yes +GH_ACCOUNT= coturn +GH_PROJECT= coturn + SUB_FILES= pkg-message USE_RC_SUBR= turnserver diff --git a/net/turnserver/distinfo b/net/turnserver/distinfo index bf8394d0d48..1ef9ccbf536 100644 --- a/net/turnserver/distinfo +++ b/net/turnserver/distinfo @@ -1,5 +1,5 @@ -TIMESTAMP = 1512977497 -SHA256 (turnserver-4.5.0.7.tar.gz) = 86248c541a1184eb388c54d4178cffbf16ef53504fbb60106e575194f078b221 -SIZE (turnserver-4.5.0.7.tar.gz) = 400577 +TIMESTAMP = 1538858258 SHA256 (turn.extra.docs-2.0.0.1.tar.gz) = 3a86600fd0a30ce7aeb547e80402ce68ea9959f7dd58697e5b47fda6e33ab9ce SIZE (turn.extra.docs-2.0.0.1.tar.gz) = 485379 +SHA256 (coturn-coturn-4.5.0.8_GH0.tar.gz) = 330c4dc55eef8d5f5d918a68122899395f2fa63821bc5493e1e2971355857e20 +SIZE (coturn-coturn-4.5.0.8_GH0.tar.gz) = 403711 diff --git a/net/uget/Makefile b/net/uget/Makefile index 2fd21197f9d..356d6926764 100644 --- a/net/uget/Makefile +++ b/net/uget/Makefile @@ -7,7 +7,7 @@ PORTREVISION= 1 CATEGORIES= net MASTER_SITES= SF/urlget/${PORTNAME}%20%28stable%29/${PORTVERSION} -MAINTAINER= ndowens.fbsd@yandex.com +MAINTAINER= ndowens@yahoo.com COMMENT= Lightweight and full-featured graphical download manager LICENSE= LGPL21 diff --git a/news/nzbget/Makefile b/news/nzbget/Makefile index 85bab1c53d4..8a0c80328ee 100644 --- a/news/nzbget/Makefile +++ b/news/nzbget/Makefile @@ -2,8 +2,8 @@ # $FreeBSD$ PORTNAME= nzbget -PORTVERSION= 19.1 -PORTREVISION= 2 +PORTVERSION= 20.0 +PORTREVISION= 0 DISTVERSIONPREFIX= v CATEGORIES= news @@ -12,9 +12,11 @@ COMMENT= Binary newsreader supporting NZB files LICENSE= GPLv2 +BROKEN= fails to package + LIB_DEPENDS= libxml2.so:textproc/libxml2 -USES= compiler:c++14-lang ncurses pkgconfig shebangfix ssl +USES= autoreconf compiler:c++14-lang gmake localbase ncurses pkgconfig shebangfix ssl USE_RC_SUBR= nzbget GNU_CONFIGURE= yes CONFIGURE_ARGS= --with-libcurses-includes=${NCURSESINC} \ @@ -23,10 +25,6 @@ CONFIGURE_ARGS= --with-libcurses-includes=${NCURSESINC} \ --with-openssl-includes=${OPENSSLINC} \ --with-openssl-libraries=${OPENSSLLIB} -CONFIGURE_ENV= LOCALBASE="${LOCALBASE}" -MAKE_JOBS_UNSAFE= yes -CPPFLAGS+= -I${LOCALBASE}/include -LDFLAGS+= -lpthread BINMODE= 0755 SHEBANG_FILES= scripts/*.py @@ -34,14 +32,17 @@ SUB_FILES= pkg-message USE_GITHUB= yes -OPTIONS_DEFINE= 7Z PYTHON RAR DOCS +OPTIONS_DEFINE= 7Z OPTIMIZED_FLAGS PYTHON RAR OPTIONS_DEFAULT= PAR PYTHON RAR 7Z 7Z_DESC= Support extraction of 7z archives +OPTIMIZED_FLAGS_DESC= Enable optimized CPU instructions (SSE2/SSE3/NEON/etc) PYTHON_DESC= Support for python post-processing scripts RAR_DESC= Support extraction of rar archives 7Z_RUN_DEPENDS= 7z:archivers/p7zip +OPTIMIZED_FLAGS_EXTRA_PATCHES_OFF= ${FILESDIR}/extra-disable-optimized-flags.patch + PYTHON_USES= python:run RAR_RUN_DEPENDS= unrar:archivers/unrar diff --git a/news/nzbget/distinfo b/news/nzbget/distinfo index 7bbb1e871e4..4a7a3ce612c 100644 --- a/news/nzbget/distinfo +++ b/news/nzbget/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1502370865 -SHA256 (nzbget-nzbget-v19.1_GH0.tar.gz) = 392c5aab41438faa3ad37a8497b5ff75f60cca3c9ba20c1764c592f6ce1be178 -SIZE (nzbget-nzbget-v19.1_GH0.tar.gz) = 1834888 +TIMESTAMP = 1528390488 +SHA256 (nzbget-nzbget-v20.0_GH0.tar.gz) = c04c4fca1ea226b767d922de041b3604bd9a53226878ab532e96b1ef31562361 +SIZE (nzbget-nzbget-v20.0_GH0.tar.gz) = 1952219 diff --git a/news/nzbget/files/extra-disable-optimized-flags.patch b/news/nzbget/files/extra-disable-optimized-flags.patch new file mode 100644 index 00000000000..e138ea5bfbc --- /dev/null +++ b/news/nzbget/files/extra-disable-optimized-flags.patch @@ -0,0 +1,16 @@ +--- configure.ac.orig 2018-06-06 19:34:34 UTC ++++ configure.ac +@@ -569,12 +569,8 @@ case $host_cpu in + USE_SIMD=yes + ;; + esac ++USE_SIMD=no + AC_MSG_RESULT($USE_SIMD) +-AC_SUBST([SSE2_CXXFLAGS]) +-AC_SUBST([SSSE3_CXXFLAGS]) +-AC_SUBST([PCLMUL_CXXFLAGS]) +-AC_SUBST([NEON_CXXFLAGS]) +-AC_SUBST([ACLECRC_CXXFLAGS]) + + + dnl diff --git a/news/nzbget/files/patch-configure.ac b/news/nzbget/files/patch-configure.ac new file mode 100644 index 00000000000..727d6b320cf --- /dev/null +++ b/news/nzbget/files/patch-configure.ac @@ -0,0 +1,20 @@ +--- configure.ac.orig 2018-06-06 19:34:34 UTC ++++ configure.ac +@@ -37,7 +37,7 @@ dnl Check for programs. + dnl + AC_PROG_CXX + AC_PATH_PROG(TAR, tar, $FALSE) +-AC_PATH_PROG(MAKE, make, $FALSE) ++AC_PATH_PROG(MAKE, gmake, $FALSE) + AC_PROG_INSTALL + + +@@ -553,7 +553,7 @@ dnl + AC_MSG_CHECKING(whether to use SIMD-optimized routines) + USE_SIMD=no + case $host_cpu in +- i?86|x86_64) ++ i?86|x86_64|amd64) + SSE2_CXXFLAGS="-msse2" + SSSE3_CXXFLAGS="-mssse3" + PCLMUL_CXXFLAGS="-msse4.1 -mpclmul" diff --git a/news/nzbget/pkg-plist b/news/nzbget/pkg-plist index 092db15acdb..3055dcc3374 100644 --- a/news/nzbget/pkg-plist +++ b/news/nzbget/pkg-plist @@ -15,6 +15,8 @@ bin/nzbget %%DATADIR%%/webui/history.js %%DATADIR%%/webui/img/download-anim-green-2x.png %%DATADIR%%/webui/img/download-anim-orange-2x.png +%%DATADIR%%/webui/img/favicon-256x256-opaque.png +%%DATADIR%%/webui/img/favicon-256x256.png %%DATADIR%%/webui/img/favicon.ico %%DATADIR%%/webui/img/icons-2x.png %%DATADIR%%/webui/img/icons.png diff --git a/news/p5-News-Newsrc/Makefile b/news/p5-News-Newsrc/Makefile index 386addf7215..2fc53a347f9 100644 --- a/news/p5-News-Newsrc/Makefile +++ b/news/p5-News-Newsrc/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Manage newsrc files -BUILD_DEPENDS= p5-Set-IntSpan>=0:math/p5-Set-IntSpan -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Set-IntSpan>=0:math/p5-Set-IntSpan USES= perl5 USE_PERL5= configure diff --git a/news/p5-POE-Component-Server-NNTP/Makefile b/news/p5-POE-Component-Server-NNTP/Makefile index 905ccd1894a..1e1ee47062b 100644 --- a/news/p5-POE-Component-Server-NNTP/Makefile +++ b/news/p5-POE-Component-Server-NNTP/Makefile @@ -14,10 +14,10 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-POE>=0.38:devel/p5-POE \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-POE>=0.38:devel/p5-POE \ p5-POE-Component-Client-NNTP>=1.05:news/p5-POE-Component-Client-NNTP \ p5-POE-Component-Pluggable>=0.03:devel/p5-POE-Component-Pluggable -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/polish/hunspell/Makefile b/polish/hunspell/Makefile index 11377c84805..dd286ca2395 100644 --- a/polish/hunspell/Makefile +++ b/polish/hunspell/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= hunspell -PORTVERSION= 20180919 +PORTVERSION= 20180925 CATEGORIES= polish textproc MASTER_SITES= https://sjp.pl/slownik/ort/ \ LOCAL/sunpoet/${PORTNAME} diff --git a/polish/hunspell/distinfo b/polish/hunspell/distinfo index f5fad4f9084..c0d957567ac 100644 --- a/polish/hunspell/distinfo +++ b/polish/hunspell/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1537766890 -SHA256 (hunspell/sjp-myspell-pl-20180919.zip) = 6415566b8ee61f7739900f9016efd3306cb7960ee3416f838545020edbffaf74 -SIZE (hunspell/sjp-myspell-pl-20180919.zip) = 1208418 +TIMESTAMP = 1538505395 +SHA256 (hunspell/sjp-myspell-pl-20180925.zip) = 9f7d22107b4a9ef5c26dcc22eaeaa548c8a782c67d71b4e13814276e7ee86eb2 +SIZE (hunspell/sjp-myspell-pl-20180925.zip) = 1208418 diff --git a/ports-mgmt/p5-FreeBSD-Portindex/Makefile b/ports-mgmt/p5-FreeBSD-Portindex/Makefile index 4c3f701837b..cc4d54299b1 100644 --- a/ports-mgmt/p5-FreeBSD-Portindex/Makefile +++ b/ports-mgmt/p5-FreeBSD-Portindex/Makefile @@ -12,8 +12,8 @@ COMMENT= Incremental FreeBSD ports INDEX file generation LICENSE= BSD2CLAUSE -BUILD_DEPENDS= p5-BerkeleyDB>0:databases/p5-BerkeleyDB -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-BerkeleyDB>0:databases/p5-BerkeleyDB USES= perl5 tar:xz USE_PERL5= configure diff --git a/print/Makefile b/print/Makefile index 5e8e5ad961e..8b65e1ec334 100644 --- a/print/Makefile +++ b/print/Makefile @@ -234,6 +234,7 @@ SUBDIR += rubygem-rbpdf-font SUBDIR += rubygem-ttfunk SUBDIR += scribus + SUBDIR += scribus-devel SUBDIR += sgf2tex SUBDIR += splix SUBDIR += system-config-printer diff --git a/print/epson-inkjet-printer-escpr/Makefile b/print/epson-inkjet-printer-escpr/Makefile index b0132c0cace..c05dd94f4cd 100644 --- a/print/epson-inkjet-printer-escpr/Makefile +++ b/print/epson-inkjet-printer-escpr/Makefile @@ -1,10 +1,10 @@ # $FreeBSD$ PORTNAME= epson-inkjet-printer-escpr -PORTVERSION= 1.6.21 +PORTVERSION= 1.6.30 DISTVERSIONSUFFIX= -1lsb3.2 CATEGORIES= print -MASTER_SITES= https://download3.ebz.epson.net/dsc/f/03/00/07/53/64/c366153bbae7cd4f77ea24d03e575b09df03a709/ +MASTER_SITES= https://download3.ebz.epson.net/dsc/f/03/00/08/18/20/e94de600e28e510c1cfa158929d8b2c0aadc8aa0/ MAINTAINER= tatsuki_makino@hotmail.com COMMENT= Epson Inkjet Printer Driver (ESC/P-R) for Linux diff --git a/print/epson-inkjet-printer-escpr/distinfo b/print/epson-inkjet-printer-escpr/distinfo index 2194a8d3c45..b8739620e83 100644 --- a/print/epson-inkjet-printer-escpr/distinfo +++ b/print/epson-inkjet-printer-escpr/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1529028000 -SHA256 (epson-inkjet-printer-escpr-1.6.21-1lsb3.2.tar.gz) = 3eaefa76d45ff99e5b6329340641d6422cfc10ee610b6b0e4e30c87b2ad03eb3 -SIZE (epson-inkjet-printer-escpr-1.6.21-1lsb3.2.tar.gz) = 4096372 +TIMESTAMP = 1538532000 +SHA256 (epson-inkjet-printer-escpr-1.6.30-1lsb3.2.tar.gz) = 22b8df9069ae4f63f6ee6203aa74fcbf04ab232043764ed90657c71ea7f31755 +SIZE (epson-inkjet-printer-escpr-1.6.30-1lsb3.2.tar.gz) = 4311820 diff --git a/print/epson-inkjet-printer-escpr/files/pkg-message.in b/print/epson-inkjet-printer-escpr/files/pkg-message.in index 6c3f4580ad1..fce00a4ec04 100644 --- a/print/epson-inkjet-printer-escpr/files/pkg-message.in +++ b/print/epson-inkjet-printer-escpr/files/pkg-message.in @@ -1,18 +1,19 @@ Examples to add printer for EP-803AW +Start cupsd and then do the following: # The printer connected with USB cable (using ulpt0) -lpadmin -p EPSON_EP-803AW -m "`lpinfo --make-and-model 'EPSON EP-803A' -m | cut -f 1 -d ' '`" -v 'usb:/dev/ulpt0' -D 'EPSON EP-803AW (ulpt0)' -E +lpadmin -p EPSON_EP-803AW -m "`lpinfo --make-and-model 'EPSON EP-803A' -m | cut -f 1 -w | grep escpr | head -n 1`" -v 'usb:/dev/ulpt0' -D 'EPSON EP-803AW (ulpt0)' -E # The printer connected with USB cable (using unlpt0) -lpadmin -p EPSON_EP-803AW -m "`lpinfo --make-and-model 'EPSON EP-803A' -m | cut -f 1 -d ' '`" -v 'usb:/dev/unlpt0' -D 'EPSON EP-803AW (unlpt0)' -E +lpadmin -p EPSON_EP-803AW -m "`lpinfo --make-and-model 'EPSON EP-803A' -m | cut -f 1 -w | grep escpr | head -n 1`" -v 'usb:/dev/unlpt0' -D 'EPSON EP-803AW (unlpt0)' -E # The printer joined network (using LPD port) -lpadmin -p EPSON_EP-803AW -m "`lpinfo --make-and-model 'EPSON EP-803A' -m | cut -f 1 -d ' '`" -v 'lpd://192.0.2.100:515/PASSTHRU' -D 'EPSON EP-803AW (LPR)' -E +lpadmin -p EPSON_EP-803AW -m "`lpinfo --make-and-model 'EPSON EP-803A' -m | cut -f 1 -w | grep escpr | head -n 1`" -v 'lpd://192.0.2.100:515/PASSTHRU' -D 'EPSON EP-803AW (LPR)' -E # The printer joined network (using port 9100) -lpadmin -p EPSON_EP-803AW -m "`lpinfo --make-and-model 'EPSON EP-803A' -m | cut -f 1 -d ' '`" -v 'socket://192.0.2.100:9100' -D 'EPSON EP-803AW (RAW)' -E +lpadmin -p EPSON_EP-803AW -m "`lpinfo --make-and-model 'EPSON EP-803A' -m | cut -f 1 -w | grep escpr | head -n 1`" -v 'socket://192.0.2.100:9100' -D 'EPSON EP-803AW (RAW)' -E diff --git a/print/epson-inkjet-printer-escpr/pkg-plist b/print/epson-inkjet-printer-escpr/pkg-plist index 84f383c468d..4fbeb142a05 100644 --- a/print/epson-inkjet-printer-escpr/pkg-plist +++ b/print/epson-inkjet-printer-escpr/pkg-plist @@ -48,6 +48,7 @@ share/cups/model/epson-inkjet-printer-escpr/Epson-EP-707A_Series-epson-escpr-en. share/cups/model/epson-inkjet-printer-escpr/Epson-EP-708A_Series-epson-escpr-en.ppd share/cups/model/epson-inkjet-printer-escpr/Epson-EP-709A_Series-epson-escpr-en.ppd share/cups/model/epson-inkjet-printer-escpr/Epson-EP-710A_Series-epson-escpr-en.ppd +share/cups/model/epson-inkjet-printer-escpr/Epson-EP-711A_Series-epson-escpr-en.ppd share/cups/model/epson-inkjet-printer-escpr/Epson-EP-774A-epson-escpr-en.ppd share/cups/model/epson-inkjet-printer-escpr/Epson-EP-775A_Series-epson-escpr-en.ppd share/cups/model/epson-inkjet-printer-escpr/Epson-EP-776A_Series-epson-escpr-en.ppd @@ -61,6 +62,7 @@ share/cups/model/epson-inkjet-printer-escpr/Epson-EP-806A_Series-epson-escpr-en. share/cups/model/epson-inkjet-printer-escpr/Epson-EP-807A_Series-epson-escpr-en.ppd share/cups/model/epson-inkjet-printer-escpr/Epson-EP-808A_Series-epson-escpr-en.ppd share/cups/model/epson-inkjet-printer-escpr/Epson-EP-810A_Series-epson-escpr-en.ppd +share/cups/model/epson-inkjet-printer-escpr/Epson-EP-811A_Series-epson-escpr-en.ppd share/cups/model/epson-inkjet-printer-escpr/Epson-EP-901A-epson-escpr-en.ppd share/cups/model/epson-inkjet-printer-escpr/Epson-EP-901F-epson-escpr-en.ppd share/cups/model/epson-inkjet-printer-escpr/Epson-EP-902A-epson-escpr-en.ppd @@ -84,11 +86,14 @@ share/cups/model/epson-inkjet-printer-escpr/Epson-ET-2600_Series-epson-escpr-en. share/cups/model/epson-inkjet-printer-escpr/Epson-ET-2610_Series-epson-escpr-en.ppd share/cups/model/epson-inkjet-printer-escpr/Epson-ET-2650_Series-epson-escpr-en.ppd share/cups/model/epson-inkjet-printer-escpr/Epson-ET-2700_Series-epson-escpr-en.ppd +share/cups/model/epson-inkjet-printer-escpr/Epson-ET-2710_Series-epson-escpr-en.ppd share/cups/model/epson-inkjet-printer-escpr/Epson-ET-2750_Series-epson-escpr-en.ppd share/cups/model/epson-inkjet-printer-escpr/Epson-ET-4500_Series-epson-escpr-en.ppd share/cups/model/epson-inkjet-printer-escpr/Epson-ET-4550_Series-epson-escpr-en.ppd share/cups/model/epson-inkjet-printer-escpr/Epson-ET-7700_Series-epson-escpr-en.ppd share/cups/model/epson-inkjet-printer-escpr/Epson-ET-7750_Series-epson-escpr-en.ppd +share/cups/model/epson-inkjet-printer-escpr/Epson-ET-M1100_Series-epson-escpr-en.ppd +share/cups/model/epson-inkjet-printer-escpr/Epson-ET-M1120_Series-epson-escpr-en.ppd share/cups/model/epson-inkjet-printer-escpr/Epson-EW-M5071FT_Series-epson-escpr-en.ppd share/cups/model/epson-inkjet-printer-escpr/Epson-EW-M571T_Series-epson-escpr-en.ppd share/cups/model/epson-inkjet-printer-escpr/Epson-EW-M660FT_Series-epson-escpr-en.ppd @@ -100,7 +105,9 @@ share/cups/model/epson-inkjet-printer-escpr/Epson-L1455_Series-epson-escpr-en.pp share/cups/model/epson-inkjet-printer-escpr/Epson-L3050_Series-epson-escpr-en.ppd share/cups/model/epson-inkjet-printer-escpr/Epson-L3060_Series-epson-escpr-en.ppd share/cups/model/epson-inkjet-printer-escpr/Epson-L3070_Series-epson-escpr-en.ppd +share/cups/model/epson-inkjet-printer-escpr/Epson-L3100_Series-epson-escpr-en.ppd share/cups/model/epson-inkjet-printer-escpr/Epson-L3110_Series-epson-escpr-en.ppd +share/cups/model/epson-inkjet-printer-escpr/Epson-L3150_Series-epson-escpr-en.ppd share/cups/model/epson-inkjet-printer-escpr/Epson-L364_Series-epson-escpr-en.ppd share/cups/model/epson-inkjet-printer-escpr/Epson-L375_Series-epson-escpr-en.ppd share/cups/model/epson-inkjet-printer-escpr/Epson-L385_Series-epson-escpr-en.ppd @@ -119,9 +126,12 @@ share/cups/model/epson-inkjet-printer-escpr/Epson-L565_Series-epson-escpr-en.ppd share/cups/model/epson-inkjet-printer-escpr/Epson-L575_Series-epson-escpr-en.ppd share/cups/model/epson-inkjet-printer-escpr/Epson-L605_Series-epson-escpr-en.ppd share/cups/model/epson-inkjet-printer-escpr/Epson-L655_Series-epson-escpr-en.ppd +share/cups/model/epson-inkjet-printer-escpr/Epson-L7160_Series-epson-escpr-en.ppd share/cups/model/epson-inkjet-printer-escpr/Epson-L805_Series-epson-escpr-en.ppd share/cups/model/epson-inkjet-printer-escpr/Epson-L810_Series-epson-escpr-en.ppd share/cups/model/epson-inkjet-printer-escpr/Epson-L850_Series-epson-escpr-en.ppd +share/cups/model/epson-inkjet-printer-escpr/Epson-M1100_Series-epson-escpr-en.ppd +share/cups/model/epson-inkjet-printer-escpr/Epson-M1120_Series-epson-escpr-en.ppd share/cups/model/epson-inkjet-printer-escpr/Epson-M200_Series-epson-escpr-en.ppd share/cups/model/epson-inkjet-printer-escpr/Epson-M205_Series-epson-escpr-en.ppd share/cups/model/epson-inkjet-printer-escpr/Epson-ME-301_Series-epson-escpr-en.ppd @@ -215,6 +225,8 @@ share/cups/model/epson-inkjet-printer-escpr/Epson-PX-M840FX-epson-escpr-en.ppd share/cups/model/epson-inkjet-printer-escpr/Epson-PX-M860F-epson-escpr-en.ppd share/cups/model/epson-inkjet-printer-escpr/Epson-PX-S05_Series-epson-escpr-en.ppd share/cups/model/epson-inkjet-printer-escpr/Epson-PX-S160T_Series-epson-escpr-en.ppd +share/cups/model/epson-inkjet-printer-escpr/Epson-PX-S170T_Series-epson-escpr-en.ppd +share/cups/model/epson-inkjet-printer-escpr/Epson-PX-S170UT_Series-epson-escpr-en.ppd share/cups/model/epson-inkjet-printer-escpr/Epson-PX-S350-epson-escpr-en.ppd share/cups/model/epson-inkjet-printer-escpr/Epson-PX-S5040-epson-escpr-en.ppd share/cups/model/epson-inkjet-printer-escpr/Epson-PX-S7050PS-epson-escpr-en.ppd @@ -519,6 +531,7 @@ share/cups/model/epson-inkjet-printer-escpr/Epson-XP-620_Series-epson-escpr-en.p share/cups/model/epson-inkjet-printer-escpr/Epson-XP-630_Series-epson-escpr-en.ppd share/cups/model/epson-inkjet-printer-escpr/Epson-XP-640_Series-epson-escpr-en.ppd share/cups/model/epson-inkjet-printer-escpr/Epson-XP-700_Series-epson-escpr-en.ppd +share/cups/model/epson-inkjet-printer-escpr/Epson-XP-7100_Series-epson-escpr-en.ppd share/cups/model/epson-inkjet-printer-escpr/Epson-XP-710_Series-epson-escpr-en.ppd share/cups/model/epson-inkjet-printer-escpr/Epson-XP-720_Series-epson-escpr-en.ppd share/cups/model/epson-inkjet-printer-escpr/Epson-XP-750_Series-epson-escpr-en.ppd diff --git a/print/p5-PDF-Template/Makefile b/print/p5-PDF-Template/Makefile index c642ba4c7a6..87c8ae866a3 100644 --- a/print/p5-PDF-Template/Makefile +++ b/print/p5-PDF-Template/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= yaizawa@2004.jukuin.keio.ac.jp COMMENT= PDF layout system that uses the same data structures as HTML::Template -BUILD_DEPENDS+= pdflib-perl>=0:print/pdflib-perl \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= pdflib-perl>=0:print/pdflib-perl \ p5-XML-Parser>=0:textproc/p5-XML-Parser -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/print/p5-PDFLib/Makefile b/print/p5-PDFLib/Makefile index c3cd87ddda1..089b37d0cd3 100644 --- a/print/p5-PDFLib/Makefile +++ b/print/p5-PDFLib/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= More OO interface to pdflib_pl.pm -BUILD_DEPENDS= pdflib-perl>=0:print/pdflib-perl -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= pdflib-perl>=0:print/pdflib-perl USES= perl5 USE_PERL5= configure diff --git a/print/p5-XML-ApacheFOP/Makefile b/print/p5-XML-ApacheFOP/Makefile index decee5c5881..8c5a3939de7 100644 --- a/print/p5-XML-ApacheFOP/Makefile +++ b/print/p5-XML-ApacheFOP/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= numisemis@yahoo.com COMMENT= Access Apache FOP from Perl to create PDF files using XSL-FO -BUILD_DEPENDS= p5-Java>=0:devel/p5-Java \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Java>=0:devel/p5-Java \ ${LOCALBASE}/share/java/fop/build/fop.jar:textproc/fop -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/print/p5-XML-Handler-AxPoint/Makefile b/print/p5-XML-Handler-AxPoint/Makefile index f2d951d441e..01b4a8b5451 100644 --- a/print/p5-XML-Handler-AxPoint/Makefile +++ b/print/p5-XML-Handler-AxPoint/Makefile @@ -14,12 +14,12 @@ COMMENT= XML Based Presentations LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-PDFLib>=0.14:print/p5-PDFLib \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-PDFLib>=0.14:print/p5-PDFLib \ p5-Text-Iconv>=0:converters/p5-Text-Iconv \ p5-XML-Filter-XSLT>=0:textproc/p5-XML-Filter-XSLT \ p5-XML-SAX>=0.09:textproc/p5-XML-SAX \ p5-XML-SAX-Writer>=0.39:textproc/p5-XML-SAX-Writer -RUN_DEPENDS:= ${BUILD_DEPENDS} PORTSCOUT= skipv:1.21,1.30 diff --git a/print/py-pycups/Makefile b/print/py-pycups/Makefile index 6e82a0a86b4..940cb6f1aa0 100644 --- a/print/py-pycups/Makefile +++ b/print/py-pycups/Makefile @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= pycups -PORTVERSION= 1.9.73 -PORTREVISION= 1 +PORTVERSION= 1.9.74 CATEGORIES= print python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -16,8 +15,8 @@ LICENSE_COMB= dual LIB_DEPENDS= libcups.so:print/cups -USE_PYTHON= autoplist concurrent distutils USES= iconv localbase python tar:bzip2 +USE_PYTHON= autoplist concurrent distutils .include diff --git a/print/py-pycups/distinfo b/print/py-pycups/distinfo index 6b7832ee525..160cd09733c 100644 --- a/print/py-pycups/distinfo +++ b/print/py-pycups/distinfo @@ -1,2 +1,3 @@ -SHA256 (pycups-1.9.73.tar.bz2) = c381be011889ca6f728598578c89c8ac9f7ab1e95b614474df9f2fa831ae5335 -SIZE (pycups-1.9.73.tar.bz2) = 52732 +TIMESTAMP = 1538663166 +SHA256 (pycups-1.9.74.tar.bz2) = 86090f259a7c5d0d5caa3407a0e57c9e134027620cbc8f90bf4e37c8b53ed7b9 +SIZE (pycups-1.9.74.tar.bz2) = 52831 diff --git a/print/py-pycups/pkg-descr b/print/py-pycups/pkg-descr index 2eddade839a..0a9cc53c4a5 100644 --- a/print/py-pycups/pkg-descr +++ b/print/py-pycups/pkg-descr @@ -1,4 +1,4 @@ CUPS bindings for Python WWW: https://pypi.org/project/pycups/ -WWW: http://cyberelk.net/tim/software/pycups/ +WWW: https://github.com/zdohnal/pycups diff --git a/print/py-relatorio/Makefile b/print/py-relatorio/Makefile index a0a594ebb53..2dac15e2407 100644 --- a/print/py-relatorio/Makefile +++ b/print/py-relatorio/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= relatorio -PORTVERSION= 0.8.0 +PORTVERSION= 0.8.1 CATEGORIES= print python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -19,8 +19,9 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}Genshi>=0.5:textproc/py-genshi@${PY_FLAVOR} ${PYTHON_PKGNAMEPREFIX}pycha>=0.4.0:graphics/py-pycha@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}yaml>=0:devel/py-yaml@${PY_FLAVOR} -NO_ARCH= yes USES= python -USE_PYTHON= autoplist distutils +USE_PYTHON= autoplist concurrent distutils + +NO_ARCH= yes .include diff --git a/print/py-relatorio/distinfo b/print/py-relatorio/distinfo index f8e174a960b..b1dfe349ad9 100644 --- a/print/py-relatorio/distinfo +++ b/print/py-relatorio/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1513861301 -SHA256 (relatorio-0.8.0.tar.gz) = bddf85d029c5c85a0f976d73907e14e4c3093065fe8527170c91abf0218546d9 -SIZE (relatorio-0.8.0.tar.gz) = 1096794 +TIMESTAMP = 1538591770 +SHA256 (relatorio-0.8.1.tar.gz) = 149a1c4c2a35d9b9e634fe80cac405bc9b4c03a42f818302362183515e7e835d +SIZE (relatorio-0.8.1.tar.gz) = 1099129 diff --git a/print/scribus-devel/Makefile b/print/scribus-devel/Makefile new file mode 100644 index 00000000000..f057d582fcc --- /dev/null +++ b/print/scribus-devel/Makefile @@ -0,0 +1,61 @@ +# Created by: Piotr Kubaj +# $FreeBSD$ + +PORTNAME= scribus +PORTVERSION= 1.5.4 +CATEGORIES= print editors +MASTER_SITES= SF/${PORTNAME}/${PORTNAME}${PKGNAMESUFFIX}/${PORTVERSION}/ \ + http://www.scribus.net/downloads/${PORTVERSION}/ +PKGNAMESUFFIX= -devel + +MAINTAINER= pkubaj@anongoth.pl +COMMENT= Comprehensive desktop publishing program (development version) + +LICENSE= GPLv2+ +LICENSE_FILE= ${WRKSRC}/COPYING + +LIB_DEPENDS= liblcms2.so:graphics/lcms2 \ + libboost_thread.so:devel/boost-libs \ + libhunspell-1.6.so:textproc/hunspell \ + libcairo.so:graphics/cairo \ + librevenge-0.0.so:textproc/librevenge \ + libcups.so:print/cups \ + libwpg-0.3.so:graphics/libwpg03 \ + libcdr-0.1.so:graphics/libcdr01 \ + libfreehand-0.1.so:graphics/libfreehand \ + libpagemaker-0.0.so:print/libpagemaker \ + libmspub-0.1.so:print/libmspub01 \ + libvisio-0.1.so:textproc/libvisio01 \ + libfreetype.so:print/freetype2 \ + libtiff.so:graphics/tiff \ + libpoppler.so:graphics/poppler \ + libharfbuzz-icu.so:print/harfbuzz-icu \ + libfontconfig.so:x11-fonts/fontconfig \ + libpodofo.so:graphics/podofo \ + libharfbuzz.so:print/harfbuzz \ + libicuuc.so:devel/icu + +USES= cmake:outsource desktop-file-utils jpeg pkgconfig python qt:5 shared-mime-info ssl tar:xz +USE_QT= buildtools_build core gui linguisttools_build network opengl \ + printsupport qmake_build qml quick widgets xml +USE_GNOME= libxml2 +INSTALLS_ICONS= yes +USE_LDCONFIG= yes + +CMAKE_ARGS+= -DWANT_HUNSPELL=YES -Wno-ferror-limit + +OPTIONS_DEFINE= DOCS + +post-install: + ${LN} -sf ../share/icons/1_5_1/scribus.png \ + ${STAGEDIR}${PREFIX}/share/pixmaps/ + ${MKDIR} ${STAGEDIR}${PREFIX}/man/de/man1 \ + ${STAGEDIR}${PREFIX}/man/pl/man1 + ${MV} ${STAGEDIR}${PREFIX}/share/man/de/man1/scribus.1 \ + ${STAGEDIR}${PREFIX}/man/de/man1/ + ${MV} ${STAGEDIR}${PREFIX}/share/man/man1/scribus.1 \ + ${STAGEDIR}${PREFIX}/man/man1/ + ${MV} ${STAGEDIR}${PREFIX}/share/man/pl/man1/scribus.1 \ + ${STAGEDIR}${PREFIX}/man/pl/man1/ + +.include diff --git a/print/scribus-devel/distinfo b/print/scribus-devel/distinfo new file mode 100644 index 00000000000..4a57038e57d --- /dev/null +++ b/print/scribus-devel/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1538746925 +SHA256 (scribus-1.5.4.tar.xz) = 6480925250b2bb07028e2f378c02b67fe3e33206743671e03c07c701cd05da03 +SIZE (scribus-1.5.4.tar.xz) = 72832248 diff --git a/print/scribus-devel/pkg-descr b/print/scribus-devel/pkg-descr new file mode 100644 index 00000000000..04e1e91e1e3 --- /dev/null +++ b/print/scribus-devel/pkg-descr @@ -0,0 +1,8 @@ +Scribus is a desktop publishing program, similar to Adobe PageMaker(TM), +QuarkXPress(TM) or Adobe InDesign(TM). + +Scribus offers support for professional publishing features, such +as CMYK color, easy PDF creation, Encapsulated Postscript import/export +and creation of color separations. + +WWW: http://www.scribus.net diff --git a/print/scribus-devel/pkg-plist b/print/scribus-devel/pkg-plist new file mode 100644 index 00000000000..fbea98c6310 --- /dev/null +++ b/print/scribus-devel/pkg-plist @@ -0,0 +1,3025 @@ +bin/scribus +lib/scribus/plugins/gettext/libcsvim.so +lib/scribus/plugins/gettext/libdocim.so +lib/scribus/plugins/gettext/libdocximplugin.so +lib/scribus/plugins/gettext/libhtmlim.so +lib/scribus/plugins/gettext/libodtimplugin.so +lib/scribus/plugins/gettext/libpdbim.so +lib/scribus/plugins/gettext/librtfimplugin.so +lib/scribus/plugins/gettext/libsxwimplugin.so +lib/scribus/plugins/gettext/libtextfilterplugin.so +lib/scribus/plugins/gettext/libtxtim.so +lib/scribus/plugins/gettext/libxtgimplugin.so +lib/scribus/plugins/libbarcodegenerator.so +lib/scribus/plugins/libcolorwheel.so +lib/scribus/plugins/libflattenpath.so +lib/scribus/plugins/libfontpreview.so +lib/scribus/plugins/libhunspellplugin.so +lib/scribus/plugins/libimportai.so +lib/scribus/plugins/libimportcdr.so +lib/scribus/plugins/libimportcgm.so +lib/scribus/plugins/libimportcvg.so +lib/scribus/plugins/libimportdrw.so +lib/scribus/plugins/libimportemf.so +lib/scribus/plugins/libimportfh.so +lib/scribus/plugins/libimportidml.so +lib/scribus/plugins/libimportodg.so +lib/scribus/plugins/libimportpages.so +lib/scribus/plugins/libimportpct.so +lib/scribus/plugins/libimportpdf.so +lib/scribus/plugins/libimportpm.so +lib/scribus/plugins/libimportpub.so +lib/scribus/plugins/libimportshape.so +lib/scribus/plugins/libimportsml.so +lib/scribus/plugins/libimportsvm.so +lib/scribus/plugins/libimportviva.so +lib/scribus/plugins/libimportvsd.so +lib/scribus/plugins/libimportwpg.so +lib/scribus/plugins/libimportxar.so +lib/scribus/plugins/libimportxfig.so +lib/scribus/plugins/libimportxps.so +lib/scribus/plugins/liblenseffects.so +lib/scribus/plugins/libmeshdistortion.so +lib/scribus/plugins/liboodrawimp.so +lib/scribus/plugins/libpathalongpath.so +lib/scribus/plugins/libpathconnect.so +lib/scribus/plugins/libpathcut.so +lib/scribus/plugins/libpathfinder.so +lib/scribus/plugins/libpathstroker.so +lib/scribus/plugins/libpicturebrowser.so +lib/scribus/plugins/libsaveastemplateplugin.so +lib/scribus/plugins/libscribus12format.so +lib/scribus/plugins/libscribus134format.so +lib/scribus/plugins/libscribus13format.so +lib/scribus/plugins/libscribus150format.so +lib/scribus/plugins/libscribusexportpixmap.so +lib/scribus/plugins/libscribusshortwords.so +lib/scribus/plugins/libscriptplugin.so +lib/scribus/plugins/libshapeplugin.so +lib/scribus/plugins/libsmoothpath.so +lib/scribus/plugins/libsubdivide.so +lib/scribus/plugins/libsvgexplugin.so +lib/scribus/plugins/libsvgimplugin.so +lib/scribus/plugins/libuniconvertorplugin.so +lib/scribus/plugins/libwmfimplugin.so +lib/scribus/plugins/libxpsexplugin.so +lib/scribus/scribus.css +man/de/man1/scribus.1.gz +man/man1/scribus.1.gz +man/pl/man1/scribus.1.gz +share/applications/scribus.desktop +%%PORTDOCS%%%%DOCSDIR%%/AUTHORS +%%PORTDOCS%%%%DOCSDIR%%/COPYING +%%PORTDOCS%%%%DOCSDIR%%/ChangeLog +%%PORTDOCS%%%%DOCSDIR%%/LINKS +%%PORTDOCS%%%%DOCSDIR%%/README +%%PORTDOCS%%%%DOCSDIR%%/TRANSLATION +%%PORTDOCS%%%%DOCSDIR%%/de/about1.html +%%PORTDOCS%%%%DOCSDIR%%/de/about2.html +%%PORTDOCS%%%%DOCSDIR%%/de/bugreport.html +%%PORTDOCS%%%%DOCSDIR%%/de/cms.html +%%PORTDOCS%%%%DOCSDIR%%/de/cms2.html +%%PORTDOCS%%%%DOCSDIR%%/de/cms3.html +%%PORTDOCS%%%%DOCSDIR%%/de/codingstandards.html +%%PORTDOCS%%%%DOCSDIR%%/de/color1.html +%%PORTDOCS%%%%DOCSDIR%%/de/color2.html +%%PORTDOCS%%%%DOCSDIR%%/de/color3.html +%%PORTDOCS%%%%DOCSDIR%%/de/color4.html +%%PORTDOCS%%%%DOCSDIR%%/de/color4a.html +%%PORTDOCS%%%%DOCSDIR%%/de/color7a.html +%%PORTDOCS%%%%DOCSDIR%%/de/color7b.html +%%PORTDOCS%%%%DOCSDIR%%/de/color7c.html +%%PORTDOCS%%%%DOCSDIR%%/de/config.html +%%PORTDOCS%%%%DOCSDIR%%/de/contributions.html +%%PORTDOCS%%%%DOCSDIR%%/de/developers.html +%%PORTDOCS%%%%DOCSDIR%%/de/doccopyright.html +%%PORTDOCS%%%%DOCSDIR%%/de/docinfo.html +%%PORTDOCS%%%%DOCSDIR%%/de/documentation.html +%%PORTDOCS%%%%DOCSDIR%%/de/download.html +%%PORTDOCS%%%%DOCSDIR%%/de/editorial.html +%%PORTDOCS%%%%DOCSDIR%%/de/faq1.html +%%PORTDOCS%%%%DOCSDIR%%/de/faq2.html +%%PORTDOCS%%%%DOCSDIR%%/de/faq3.html +%%PORTDOCS%%%%DOCSDIR%%/de/fonts1.html +%%PORTDOCS%%%%DOCSDIR%%/de/fonts2.html +%%PORTDOCS%%%%DOCSDIR%%/de/gettexthowto.html +%%PORTDOCS%%%%DOCSDIR%%/de/gsview.html +%%PORTDOCS%%%%DOCSDIR%%/de/hyphenator.html +%%PORTDOCS%%%%DOCSDIR%%/de/images/CH_1.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/CH_2.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/CH_3.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/CH_4.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/CH_5.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/CH_6.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/CH_7.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/CH_8.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/Cover_en1-page1.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/DrawLatexFrame.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/GG_CE1.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/GG_CE10.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/GG_CE11.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/GG_CE12.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/GG_CE13.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/GG_CE14.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/GG_CE15.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/GG_CE16.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/GG_CE17.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/GG_CE18.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/GG_CE19.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/GG_CE2.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/GG_CE20.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/GG_CE21.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/GG_CE22.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/GG_CE23.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/GG_CE24.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/GG_CE25.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/GG_CE26.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/GG_CE27.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/GG_CE28.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/GG_CE29.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/GG_CE3.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/GG_CE30.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/GG_CE31.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/GG_CE32.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/GG_CE33.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/GG_CE4.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/GG_CE5.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/GG_CE6.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/GG_CE7.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/GG_CE8.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/GG_CE9.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/GG_CE_a.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/GG_CE_b.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/GG_CE_c.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/GG_CE_colour_select.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/GG_CE_ex1.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/GG_CE_ex2.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/GG_CE_ex3.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/GG_CE_ex4.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/GG_CE_ex5.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/GG_CE_ex6.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/GG_CE_ex7.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/GG_CE_ex8.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/GG_CE_ex9.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/Image_Properties.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/LAB.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/Mantis_my_view.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/Mantis_new_report1.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/Mantis_new_report2.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/Mantis_new_report3.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/Mantis_searching.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/Mantis_signup.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/RM-CM.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/RM-PUB.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/RM-Scribus-1.5-Color_Fills.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/RM-imp3.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/RM-picture_browser.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/RM-tables.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/RM_CHF.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/RM_DS.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/RM_symb.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/RYB_color_wheel.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/Rembrandt1.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/Rembrandt10.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/Rembrandt11.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/Rembrandt12.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/Rembrandt13.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/Rembrandt14.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/Rembrandt15.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/Rembrandt16.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/Rembrandt17.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/Rembrandt17a.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/Rembrandt17b.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/Rembrandt18.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/Rembrandt18b.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/Rembrandt19.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/Rembrandt2.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/Rembrandt20.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/Rembrandt21.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/Rembrandt3.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/Rembrandt4.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/Rembrandt5.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/Rembrandt6.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/Rembrandt7.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/Rembrandt8.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/Rembrandt9.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/Scribus-1.5-AIorPDF-dialog.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/Scribus-Arcs.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/Scribus-CalligraphicPen.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/Scribus-Spirals.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/Scribus_Haiku.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/Scripter.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/SwB.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/XYZ_Prop.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/XYZ_Prop1.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/alert.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/batik1.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/boundingbox.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/boundingbox1.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/cmcanvas.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/cms-gamut1.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/cms-gamut2.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/cms.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/cmsmodify1.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/cmyk.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/colormanager2.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/colorwheel.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/colrs-caricature.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/colrs-mgt1.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/colrs-mgt2.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/combine_polygons.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/combine_polygons1.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/combine_polygons2.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/combine_polygons3.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/combine_polygons4.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/combine_polygons5.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/context_image.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/context_shape.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/context_text135.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/contourline_flow.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/cw-analogous.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/cw-compl.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/cw-splitcompl.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/cw-tetradic.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/cw-triadic.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/cw-warning.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/docheader1.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/docheader2.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/docinfo.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/docinfo1.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/docinfo2.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/dtp-studio.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/duotone-imp.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/duotone-imp2.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/edit_shapes.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/editcols1.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/editcols1a.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/editcols2.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/editcols3.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/eps-imp1.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/eps-imp2.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/eps-imp3.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/eps-imp4.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/eps-imp5.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/faecher_hlc-lab.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/file-error1.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/file-error2.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/file-error3.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/fileimport.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/font-preview.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/font-subst.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/fontmatrix.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/fontpref1.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/fontpref2.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/fontpref3.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/fonts.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/fonts2.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/frame_shape_flow.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/galaxy_gauge.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/galaxy_harmonizer1.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/galaxy_harmonizer2.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/geometry.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/geometry1.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/gimpoptions1.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/gimpoptions2.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/gimpoptions3.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/gradient_adjuster.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/gradient_adjuster1.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/gradient_adjuster_vector.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/htmlimport.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/htmlstyle.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/hyphen1.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/hyphen2.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/hyphen3.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/import-pdfimage.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/ink-cov.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/insert-frame-1.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/insert-frame-2.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/krita.jpg +%%PORTDOCS%%%%DOCSDIR%%/de/images/krita1.jpg +%%PORTDOCS%%%%DOCSDIR%%/de/images/layers1.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/layers2.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/lilyp.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/line_tab.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/line_tab1.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/line_tab2.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/line_tab3.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/line_tab4.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/line_tab5.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/line_tab6.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/line_tab7.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/lprof.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/missing-gs.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/mpage1.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/mpage2.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/mpage3.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/mpage4.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/mpage5.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/multipledup_copies.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/multipledup_rotation.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/multipledup_rows.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/new-icons.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/new1.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/new2.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/new3.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/new4.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/new5.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/new6.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/node_edit_close.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/nodes_edit.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/numb-sections.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/oogettext1.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/pagenumbering.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/patterns1.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/patterns2.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/pdf-form-ht1.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/pdf-form-ht2.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/pdf-form-ht3.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/pdf-form-ht4.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/pdf-form-ht5.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/pdf-form-ht6.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/pdfx1a-lo.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/pdfx3-1.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/pdfxcolor.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/pdfxintent.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/plot1.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/plot2.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/polygons.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/polygons1.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/povray.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/preflight-v.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/prefs-mac-1.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/prefs_9parts.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/prefs_colormgmt.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/prefs_display.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/prefs_document.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/prefs_document1.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/prefs_exttools.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/prefs_fibonacci.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/prefs_general.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/prefs_goldenmean.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/prefs_guides.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/prefs_guides1.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/prefs_gutenberg.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/prefs_keyboard.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/prefs_magazine.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/prefs_misc.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/prefs_pdfexport.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/prefs_pdfexport1.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/prefs_preflight.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/prefs_shortwords.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/prefs_tools.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/prefs_tools1.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/prefs_tools2.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/prefs_tools3.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/prefs_tools4.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/prefs_tools5.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/prefs_tools6.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/prefs_typog.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/print-dialog1.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/print-dialog2.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/printer2.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/printpreview.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/prop_shape.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/qsg-col1.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/qsg-col2.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/register.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/resene-pal.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/result.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/rf-error1.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/rf-error2.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/rf-error3.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/rf1.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/rf2.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/rf3.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/rf4.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/rf5.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/rf6.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/rf7.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/rf8.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/rgb-cmyk.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/rgb.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/round_rectangle.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/sadie4by2b.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/scribus-os2.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/scribus-pres1.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/scribus-pres2.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/shape_edit.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/shapes7.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/shapes8.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/skewing.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/spot.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/squat_tux.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/style_manager1.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/style_manager10.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/style_manager1b.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/style_manager3b.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/style_manager7.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/style_manager8.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/style_manager9.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/swdialog.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/table-import-1.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/table-import-2.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/table-import-3.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/tb-bookbinder.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/tb-gsview.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/tb-inkscape.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/tb-jpdf.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/tb-libreoffice.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/tb-pdf-imp.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/text-frame-link.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/text-frame-unlink.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/text_filter135.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/text_filter136.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/text_filter136b.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/text_flow.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/text_linking.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/text_tab1.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/text_tab10.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/text_tab11.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/text_tab11b.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/text_tab12.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/text_tab13.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/text_tab2.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/text_tab3.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/text_tab4.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/text_tab5.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/text_tab6.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/text_tab7.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/text_tab7a.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/text_tab7b.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/text_tab8.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/text_tab9.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/transform_dialogb.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/transform_translaterotation.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/transform_translaterotation1.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/transform_translatescaling.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/transform_translateskewing.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/transform_translateskewing1.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/vectimp1.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/vectimp2.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/vectimp3.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/vectimp4.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/vectimp5.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/vector-advanced.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/vector-clipart.png +%%PORTDOCS%%%%DOCSDIR%%/de/images/xnview.png +%%PORTDOCS%%%%DOCSDIR%%/de/importhints.html +%%PORTDOCS%%%%DOCSDIR%%/de/importhints1.html +%%PORTDOCS%%%%DOCSDIR%%/de/importhints2.html +%%PORTDOCS%%%%DOCSDIR%%/de/importhints3.html +%%PORTDOCS%%%%DOCSDIR%%/de/importhints4.html +%%PORTDOCS%%%%DOCSDIR%%/de/index.html +%%PORTDOCS%%%%DOCSDIR%%/de/install-dpkg.html +%%PORTDOCS%%%%DOCSDIR%%/de/install.html +%%PORTDOCS%%%%DOCSDIR%%/de/install1.html +%%PORTDOCS%%%%DOCSDIR%%/de/install2.html +%%PORTDOCS%%%%DOCSDIR%%/de/install4.html +%%PORTDOCS%%%%DOCSDIR%%/de/install5.html +%%PORTDOCS%%%%DOCSDIR%%/de/intro.html +%%PORTDOCS%%%%DOCSDIR%%/de/irc.html +%%PORTDOCS%%%%DOCSDIR%%/de/keys.html +%%PORTDOCS%%%%DOCSDIR%%/de/layers.html +%%PORTDOCS%%%%DOCSDIR%%/de/mailing_lists.html +%%PORTDOCS%%%%DOCSDIR%%/de/menu.xml +%%PORTDOCS%%%%DOCSDIR%%/de/moncal.html +%%PORTDOCS%%%%DOCSDIR%%/de/mouse.html +%%PORTDOCS%%%%DOCSDIR%%/de/otherinfo.html +%%PORTDOCS%%%%DOCSDIR%%/de/pagenumber.html +%%PORTDOCS%%%%DOCSDIR%%/de/pagetemplate1.html +%%PORTDOCS%%%%DOCSDIR%%/de/pdf_form.html +%%PORTDOCS%%%%DOCSDIR%%/de/pdfexport1.html +%%PORTDOCS%%%%DOCSDIR%%/de/pdfexport2.html +%%PORTDOCS%%%%DOCSDIR%%/de/pdfexport3.html +%%PORTDOCS%%%%DOCSDIR%%/de/pdfexport4.html +%%PORTDOCS%%%%DOCSDIR%%/de/pdflavor.html +%%PORTDOCS%%%%DOCSDIR%%/de/pdfx3.html +%%PORTDOCS%%%%DOCSDIR%%/de/plugin_howto.html +%%PORTDOCS%%%%DOCSDIR%%/de/print1.html +%%PORTDOCS%%%%DOCSDIR%%/de/print2.html +%%PORTDOCS%%%%DOCSDIR%%/de/print3.html +%%PORTDOCS%%%%DOCSDIR%%/de/psd.html +%%PORTDOCS%%%%DOCSDIR%%/de/readme-haiku.html +%%PORTDOCS%%%%DOCSDIR%%/de/readme-macosx.html +%%PORTDOCS%%%%DOCSDIR%%/de/readme-os2.html +%%PORTDOCS%%%%DOCSDIR%%/de/readme-win32.html +%%PORTDOCS%%%%DOCSDIR%%/de/readme.html +%%PORTDOCS%%%%DOCSDIR%%/de/%%CMAKE_BUILD_TYPE%%s.html +%%PORTDOCS%%%%DOCSDIR%%/de/resources.html +%%PORTDOCS%%%%DOCSDIR%%/de/scribus-svg.html +%%PORTDOCS%%%%DOCSDIR%%/de/scribuscopyright.html +%%PORTDOCS%%%%DOCSDIR%%/de/scribusfileformat.html +%%PORTDOCS%%%%DOCSDIR%%/de/scripter-extensions.html +%%PORTDOCS%%%%DOCSDIR%%/de/scripter-faq.html +%%PORTDOCS%%%%DOCSDIR%%/de/scripter1.html +%%PORTDOCS%%%%DOCSDIR%%/de/scripterapi-ImageExport.html +%%PORTDOCS%%%%DOCSDIR%%/de/scripterapi-PDFfile.html +%%PORTDOCS%%%%DOCSDIR%%/de/scripterapi-Printer.html +%%PORTDOCS%%%%DOCSDIR%%/de/scripterapi-color.html +%%PORTDOCS%%%%DOCSDIR%%/de/scripterapi-constants.html +%%PORTDOCS%%%%DOCSDIR%%/de/scripterapi-dialogs.html +%%PORTDOCS%%%%DOCSDIR%%/de/scripterapi-doc.html +%%PORTDOCS%%%%DOCSDIR%%/de/scripterapi-extensions.html +%%PORTDOCS%%%%DOCSDIR%%/de/scripterapi-font.html +%%PORTDOCS%%%%DOCSDIR%%/de/scripterapi-getobjprop.html +%%PORTDOCS%%%%DOCSDIR%%/de/scripterapi-layer.html +%%PORTDOCS%%%%DOCSDIR%%/de/scripterapi-manobj.html +%%PORTDOCS%%%%DOCSDIR%%/de/scripterapi-object.html +%%PORTDOCS%%%%DOCSDIR%%/de/scripterapi-page.html +%%PORTDOCS%%%%DOCSDIR%%/de/scripterapi-pydoc.html +%%PORTDOCS%%%%DOCSDIR%%/de/scripterapi-select.html +%%PORTDOCS%%%%DOCSDIR%%/de/scripterapi-setobjprop.html +%%PORTDOCS%%%%DOCSDIR%%/de/scripterapi-textframes.html +%%PORTDOCS%%%%DOCSDIR%%/de/scripterapi.html +%%PORTDOCS%%%%DOCSDIR%%/de/settings1.html +%%PORTDOCS%%%%DOCSDIR%%/de/short-words.html +%%PORTDOCS%%%%DOCSDIR%%/de/specs.html +%%PORTDOCS%%%%DOCSDIR%%/de/toolbox.html +%%PORTDOCS%%%%DOCSDIR%%/de/toolbox1.html +%%PORTDOCS%%%%DOCSDIR%%/de/toolbox12.html +%%PORTDOCS%%%%DOCSDIR%%/de/toolbox13.html +%%PORTDOCS%%%%DOCSDIR%%/de/toolbox14.html +%%PORTDOCS%%%%DOCSDIR%%/de/toolbox15.html +%%PORTDOCS%%%%DOCSDIR%%/de/toolbox17.html +%%PORTDOCS%%%%DOCSDIR%%/de/toolbox2.html +%%PORTDOCS%%%%DOCSDIR%%/de/toolbox3.html +%%PORTDOCS%%%%DOCSDIR%%/de/toolbox4.html +%%PORTDOCS%%%%DOCSDIR%%/de/toolbox5.html +%%PORTDOCS%%%%DOCSDIR%%/de/toolbox6.html +%%PORTDOCS%%%%DOCSDIR%%/de/toolbox7.html +%%PORTDOCS%%%%DOCSDIR%%/de/toolbox8.html +%%PORTDOCS%%%%DOCSDIR%%/de/toolbox9.html +%%PORTDOCS%%%%DOCSDIR%%/de/topten.html +%%PORTDOCS%%%%DOCSDIR%%/de/translation_howto.html +%%PORTDOCS%%%%DOCSDIR%%/de/tutorials.html +%%PORTDOCS%%%%DOCSDIR%%/en/DropShadows.html +%%PORTDOCS%%%%DOCSDIR%%/en/EditingShapes.html +%%PORTDOCS%%%%DOCSDIR%%/en/SearchReplace.html +%%PORTDOCS%%%%DOCSDIR%%/en/TextProp.html +%%PORTDOCS%%%%DOCSDIR%%/en/WwFill.html +%%PORTDOCS%%%%DOCSDIR%%/en/WwFrames.html +%%PORTDOCS%%%%DOCSDIR%%/en/WwImages.html +%%PORTDOCS%%%%DOCSDIR%%/en/WwLines.html +%%PORTDOCS%%%%DOCSDIR%%/en/WwRenderframes.html +%%PORTDOCS%%%%DOCSDIR%%/en/WwShapes.html +%%PORTDOCS%%%%DOCSDIR%%/en/WwStyles.html +%%PORTDOCS%%%%DOCSDIR%%/en/WwText.html +%%PORTDOCS%%%%DOCSDIR%%/en/about1.html +%%PORTDOCS%%%%DOCSDIR%%/en/about2.html +%%PORTDOCS%%%%DOCSDIR%%/en/add_colors.html +%%PORTDOCS%%%%DOCSDIR%%/en/bugreport.html +%%PORTDOCS%%%%DOCSDIR%%/en/cli.html +%%PORTDOCS%%%%DOCSDIR%%/en/cms.html +%%PORTDOCS%%%%DOCSDIR%%/en/cms2.html +%%PORTDOCS%%%%DOCSDIR%%/en/cms3.html +%%PORTDOCS%%%%DOCSDIR%%/en/collect4output.html +%%PORTDOCS%%%%DOCSDIR%%/en/color1.html +%%PORTDOCS%%%%DOCSDIR%%/en/color2.html +%%PORTDOCS%%%%DOCSDIR%%/en/color3.html +%%PORTDOCS%%%%DOCSDIR%%/en/color4.html +%%PORTDOCS%%%%DOCSDIR%%/en/color4a.html +%%PORTDOCS%%%%DOCSDIR%%/en/color5.html +%%PORTDOCS%%%%DOCSDIR%%/en/color6.html +%%PORTDOCS%%%%DOCSDIR%%/en/color7a.html +%%PORTDOCS%%%%DOCSDIR%%/en/color7b.html +%%PORTDOCS%%%%DOCSDIR%%/en/color7c.html +%%PORTDOCS%%%%DOCSDIR%%/en/color8.html +%%PORTDOCS%%%%DOCSDIR%%/en/color_editing.html +%%PORTDOCS%%%%DOCSDIR%%/en/colorwheel.html +%%PORTDOCS%%%%DOCSDIR%%/en/config.html +%%PORTDOCS%%%%DOCSDIR%%/en/configfiles.html +%%PORTDOCS%%%%DOCSDIR%%/en/contributions.html +%%PORTDOCS%%%%DOCSDIR%%/en/createlinks.html +%%PORTDOCS%%%%DOCSDIR%%/en/developers.html +%%PORTDOCS%%%%DOCSDIR%%/en/doccopyright.html +%%PORTDOCS%%%%DOCSDIR%%/en/docinfo.html +%%PORTDOCS%%%%DOCSDIR%%/en/documentation.html +%%PORTDOCS%%%%DOCSDIR%%/en/editorial.html +%%PORTDOCS%%%%DOCSDIR%%/en/faq1.html +%%PORTDOCS%%%%DOCSDIR%%/en/faq3.html +%%PORTDOCS%%%%DOCSDIR%%/en/fileproblems.html +%%PORTDOCS%%%%DOCSDIR%%/en/fonts1.html +%%PORTDOCS%%%%DOCSDIR%%/en/fonts2.html +%%PORTDOCS%%%%DOCSDIR%%/en/gsview.html +%%PORTDOCS%%%%DOCSDIR%%/en/help.html +%%PORTDOCS%%%%DOCSDIR%%/en/hyphenator.html +%%PORTDOCS%%%%DOCSDIR%%/en/images/CH_1.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/CH_2.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/CH_3.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/CH_4.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/CH_5.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/CH_6.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/CH_7.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/CH_8.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/Cover_en1-page1.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/DrawLatexFrame.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/GG_CE1.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/GG_CE10.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/GG_CE11.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/GG_CE12.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/GG_CE13.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/GG_CE14.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/GG_CE15.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/GG_CE16.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/GG_CE17.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/GG_CE18.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/GG_CE19.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/GG_CE2.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/GG_CE20.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/GG_CE21.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/GG_CE22.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/GG_CE23.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/GG_CE24.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/GG_CE25.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/GG_CE26.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/GG_CE27.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/GG_CE28.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/GG_CE29.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/GG_CE3.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/GG_CE30.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/GG_CE31.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/GG_CE32.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/GG_CE33.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/GG_CE4.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/GG_CE5.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/GG_CE6.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/GG_CE7.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/GG_CE8.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/GG_CE9.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/GG_CE_a.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/GG_CE_b.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/GG_CE_c.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/GG_CE_colour_select.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/GG_CE_ex1.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/GG_CE_ex2.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/GG_CE_ex3.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/GG_CE_ex4.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/GG_CE_ex5.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/GG_CE_ex6.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/GG_CE_ex7.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/GG_CE_ex8.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/GG_CE_ex9.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/Image_Properties.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/Image_warning.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/LAB.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/LatinModernRomanOTFFeatures.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/Mantis_my_view.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/Mantis_new_report1.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/Mantis_new_report2.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/Mantis_new_report3.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/Mantis_searching.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/Mantis_signup.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/MontserratOTFFeatures.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/RM-CM.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/RM-PUB.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/RM-Scribus-1.5-Color_Fills.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/RM-imp3.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/RM-picture_browser.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/RM-tables.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/RM_CHF.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/RM_DS.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/RM_symb.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/RYB_color_wheel.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/Rembrandt1.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/Rembrandt10.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/Rembrandt11.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/Rembrandt12.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/Rembrandt13.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/Rembrandt14.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/Rembrandt15.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/Rembrandt16.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/Rembrandt17.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/Rembrandt17a.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/Rembrandt17b.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/Rembrandt18.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/Rembrandt18b.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/Rembrandt19.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/Rembrandt2.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/Rembrandt20.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/Rembrandt21.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/Rembrandt3.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/Rembrandt4.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/Rembrandt5.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/Rembrandt6.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/Rembrandt7.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/Rembrandt8.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/Rembrandt9.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/Scribus-1.5-AIorPDF-dialog.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/Scribus-Arcs.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/Scribus-CalligraphicPen.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/Scribus-Spirals.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/Scribus_Haiku.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/Scripter.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/SwB.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/XYZ_Prop.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/XYZ_Prop1.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/add_colors1.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/add_colors3.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/add_colors4.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/add_colors5.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/add_colors6.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/add_colors7.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/alert.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/annotation.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/batik1.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/boundingbox.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/boundingbox1.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/cmcanvas.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/cms-gamut1.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/cms-gamut2.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/cmsmodify1.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/cmyk.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/collect_out1.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/collect_out2.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/collect_out3.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/collect_out5.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/collect_out6.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/colormanager2.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/colorwheel.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/colrs-caricature.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/colrs-mgt1.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/colrs-mgt2.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/combine_polygons.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/combine_polygons1.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/combine_polygons2.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/combine_polygons3.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/combine_polygons4.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/combine_polygons5.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/context_image.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/context_shape.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/context_text15.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/contourline_flow.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/cw-analogous.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/cw-analogous_20.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/cw-analogous_30.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/cw-compl.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/cw-complementary.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/cw-splitcompl.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/cw-splitcompl_20.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/cw-splitcompl_40.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/cw-tetradic.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/cw-tetradic_20.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/cw-tetradic_40.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/cw-triadic.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/cw-warning.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/docheader1.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/docheader2.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/docinfo.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/docinfo2.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/drawview.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/dropshadows1.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/dropshadows3.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/dropshadows4.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/dropshadows5.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/dropshadows6.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/dropshadows7.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/dtp-studio.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/duotone-imp.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/duotone-imp2.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/edit_shapes.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/editcols1.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/editcols1a.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/editcols2.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/editcols3.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/eps-imp1.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/eps-imp2.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/eps-imp3.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/eps-imp4.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/eps-imp5.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/externallink.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/externalweblink.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/faecher_hlc-lab.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/file-error1.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/file-error2.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/file-error3.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/fileimport.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/font-preview.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/font-subst.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/fontmatrix.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/fontpref1.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/fontpref2.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/fontpref3.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/fonts.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/fonts2.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/frame_shape_flow.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/galaxy_gauge.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/galaxy_harmonizer1.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/galaxy_harmonizer2.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/geometry.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/geometry1.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/gimpoptions1.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/gimpoptions2.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/gimpoptions3.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/gradient_adjuster.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/gradient_adjuster1.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/gradient_adjuster_vector.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/htmlimport.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/htmlstyle.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/hyphen1.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/hyphen2.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/hyphen3.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/hyphen4.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/hyphen5.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/image_compress.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/import-pdf1.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/import-pdf2.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/import-pdfimage.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/importvisio.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/importwmf.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/ink-cov.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/insert-frame-1.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/insert-frame-2.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/insertframes.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/insertframes1.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/insertframes2.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/insertframes3.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/insertframes4.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/krita.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/layers1.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/layers2.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/lilyp.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/line_tab.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/line_tab1.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/line_tab2.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/line_tab3.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/line_tab4.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/line_tab5.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/line_tab6.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/line_tab7.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/link.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/loadimages.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/lprof.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/missing-gs.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/mpage1.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/mpage2.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/mpage3.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/mpage4.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/mpage5.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/multipledup_copies.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/multipledup_rotation.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/multipledup_rows.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/new-icons.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/new1.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/new2.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/new3.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/new4.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/new5.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/new6.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/node_edit_close.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/nodes_edit.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/numb-sections.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/oogettext1.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/pathops.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/pathops1.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/pathops2.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/pathops3.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/pathops4.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/pathops5.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/pathops6.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/pathops7.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/pathops8.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/pathtools.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/pathtools1.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/pathtools2.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/patterns1.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/patterns2.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/pdf-form-ht1.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/pdf-form-ht2.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/pdf-form-ht3.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/pdf-form-ht4.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/pdf-form-ht5.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/pdf-form-ht6.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/pdftools.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/pdfx1a-lo.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/pdfx3-1.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/pdfxcolor.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/pdfxintent.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/plot1.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/plot2.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/polygons.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/povray.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/preflight-v.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/prefs-mac-1.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/prefs_15x.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/prefs_9parts.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/prefs_colormanagement.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/prefs_colormgmt.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/prefs_display.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/prefs_docsetup.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/prefs_document1.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/prefs_documentsetup_tab1.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/prefs_documentsetup_tab2.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/prefs_documentsetup_tab3.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/prefs_documentsetup_tab4.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/prefs_exttools.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/prefs_exttools2.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/prefs_fibonacci.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/prefs_goldenmean.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/prefs_guides.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/prefs_guides1.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/prefs_guides_tab1.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/prefs_guides_tab2.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/prefs_guides_tab3.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/prefs_gutenberg.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/prefs_imagecache.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/prefs_itemtools.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/prefs_itemtools_tab1.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/prefs_itemtools_tab2.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/prefs_itemtools_tab3.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/prefs_itemtools_tab4.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/prefs_itemtools_tab5.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/prefs_itemtools_tab6.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/prefs_itemtools_tab7.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/prefs_itemtools_tab8.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/prefs_keyb_shortcuts.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/prefs_keyboard.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/prefs_magazine.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/prefs_misc.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/prefs_operatortools_tab1.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/prefs_operatortools_tab2.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/prefs_pagesizes.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/prefs_paths.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/prefs_pdfexport.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/prefs_pdfexport_tab1.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/prefs_pdfexport_tab2.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/prefs_pdfexport_tab3.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/prefs_pdfexport_tab4.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/prefs_pdfexport_tab5.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/prefs_preflight.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/prefs_shortwords.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/prefs_spelling.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/prefs_typog2.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/prefs_typography.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/prefs_userinterface_tab1.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/prefs_userinterface_tab2.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/prefs_userinterface_tab3.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/prefs_userinterface_tab4.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/print-dialog1.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/print-dialog2.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/printer2.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/printingprefs1.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/printingprefs2.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/printingprefs3.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/printpreview.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/prop_shape.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/qsg-col1.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/qsg-col2.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/register.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/resene-pal.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/result.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/rf-error1.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/rf-error2.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/rf-error3.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/rf1.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/rf2.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/rf3.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/rf4.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/rf5.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/rf6.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/rf7.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/rf8.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/rgb-cmyk.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/rgb.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/round_rectangle.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/sadie4by2b.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/scribus-os2.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/scribus-pres1.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/scribus-pres2.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/searchreplace.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/shape_edit.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/shapes7.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/shapes8.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/skewing.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/spot.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/squat_tux.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/style_manager1.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/style_manager10.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/style_manager1b.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/style_manager3b.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/style_manager7.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/style_manager8.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/style_manager9.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/swdialog.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/table-import-1.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/table-import-2.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/table-import-3.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/tb-bookbinder.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/tb-gsview.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/tb-inkscape.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/tb-jpdf.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/tb-libreoffice.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/tb-pdf-imp.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/text-frame-link.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/text-frame-unlink.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/text_filter135.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/text_filter136.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/text_filter136b.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/text_flow.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/text_linking.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/text_tab1.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/text_tab10.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/text_tab11.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/text_tab11b.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/text_tab12.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/text_tab13.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/text_tab14.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/text_tab15.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/text_tab16.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/text_tab17.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/text_tab18.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/text_tab2.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/text_tab3.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/text_tab4.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/text_tab5.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/text_tab6.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/text_tab7.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/text_tab7a.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/text_tab7b.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/text_tab8.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/text_tab9.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/transform_dialogb.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/transform_translaterotation.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/transform_translaterotation1.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/transform_translatescaling.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/transform_translateskewing.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/transform_translateskewing1.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/vectimp1.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/vectimp2.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/vectimp3.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/vectimp4.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/vectimp5.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/vector-advanced.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/vector-clipart.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/wwframes_fillspace.png +%%PORTDOCS%%%%DOCSDIR%%/en/images/xnview.png +%%PORTDOCS%%%%DOCSDIR%%/en/importbitmap1.html +%%PORTDOCS%%%%DOCSDIR%%/en/importclipart.html +%%PORTDOCS%%%%DOCSDIR%%/en/importhints.html +%%PORTDOCS%%%%DOCSDIR%%/en/importhints1.html +%%PORTDOCS%%%%DOCSDIR%%/en/importhints2.html +%%PORTDOCS%%%%DOCSDIR%%/en/importhints3.html +%%PORTDOCS%%%%DOCSDIR%%/en/importhints4.html +%%PORTDOCS%%%%DOCSDIR%%/en/importoutput.html +%%PORTDOCS%%%%DOCSDIR%%/en/index.html +%%PORTDOCS%%%%DOCSDIR%%/en/install.html +%%PORTDOCS%%%%DOCSDIR%%/en/install1.html +%%PORTDOCS%%%%DOCSDIR%%/en/install2.html +%%PORTDOCS%%%%DOCSDIR%%/en/install4.html +%%PORTDOCS%%%%DOCSDIR%%/en/install5.html +%%PORTDOCS%%%%DOCSDIR%%/en/intro.html +%%PORTDOCS%%%%DOCSDIR%%/en/irc.html +%%PORTDOCS%%%%DOCSDIR%%/en/keys.html +%%PORTDOCS%%%%DOCSDIR%%/en/layers.html +%%PORTDOCS%%%%DOCSDIR%%/en/lipsum.html +%%PORTDOCS%%%%DOCSDIR%%/en/mailing_lists.html +%%PORTDOCS%%%%DOCSDIR%%/en/manual.css +%%PORTDOCS%%%%DOCSDIR%%/en/menu.xml +%%PORTDOCS%%%%DOCSDIR%%/en/moncal.html +%%PORTDOCS%%%%DOCSDIR%%/en/mouse.html +%%PORTDOCS%%%%DOCSDIR%%/en/multiple_transform.html +%%PORTDOCS%%%%DOCSDIR%%/en/otherinfo.html +%%PORTDOCS%%%%DOCSDIR%%/en/pagenumber.html +%%PORTDOCS%%%%DOCSDIR%%/en/pagetemplate1.html +%%PORTDOCS%%%%DOCSDIR%%/en/pdf_form.html +%%PORTDOCS%%%%DOCSDIR%%/en/pdfexport1.html +%%PORTDOCS%%%%DOCSDIR%%/en/pdfexport2.html +%%PORTDOCS%%%%DOCSDIR%%/en/pdfexport3.html +%%PORTDOCS%%%%DOCSDIR%%/en/pdfexport4.html +%%PORTDOCS%%%%DOCSDIR%%/en/pdfexport_image.html +%%PORTDOCS%%%%DOCSDIR%%/en/pdflavor.html +%%PORTDOCS%%%%DOCSDIR%%/en/pdfx3.html +%%PORTDOCS%%%%DOCSDIR%%/en/print1.html +%%PORTDOCS%%%%DOCSDIR%%/en/print2.html +%%PORTDOCS%%%%DOCSDIR%%/en/print3.html +%%PORTDOCS%%%%DOCSDIR%%/en/print4.html +%%PORTDOCS%%%%DOCSDIR%%/en/psd.html +%%PORTDOCS%%%%DOCSDIR%%/en/qsg.html +%%PORTDOCS%%%%DOCSDIR%%/en/readme-haiku.html +%%PORTDOCS%%%%DOCSDIR%%/en/readme-macosx.html +%%PORTDOCS%%%%DOCSDIR%%/en/readme-os2.html +%%PORTDOCS%%%%DOCSDIR%%/en/readme-win32.html +%%PORTDOCS%%%%DOCSDIR%%/en/readme.html +%%PORTDOCS%%%%DOCSDIR%%/en/%%CMAKE_BUILD_TYPE%%s.html +%%PORTDOCS%%%%DOCSDIR%%/en/renderframes.html +%%PORTDOCS%%%%DOCSDIR%%/en/resources.html +%%PORTDOCS%%%%DOCSDIR%%/en/scribus-manual.xsl +%%PORTDOCS%%%%DOCSDIR%%/en/scribus-svg.html +%%PORTDOCS%%%%DOCSDIR%%/en/scribuscopyright.html +%%PORTDOCS%%%%DOCSDIR%%/en/scripter-extensions.html +%%PORTDOCS%%%%DOCSDIR%%/en/scripter-faq.html +%%PORTDOCS%%%%DOCSDIR%%/en/scripter1.html +%%PORTDOCS%%%%DOCSDIR%%/en/scripter2.html +%%PORTDOCS%%%%DOCSDIR%%/en/scripterapi-ImageExport.html +%%PORTDOCS%%%%DOCSDIR%%/en/scripterapi-PDFfile.html +%%PORTDOCS%%%%DOCSDIR%%/en/scripterapi-Printer.html +%%PORTDOCS%%%%DOCSDIR%%/en/scripterapi-color.html +%%PORTDOCS%%%%DOCSDIR%%/en/scripterapi-constants.html +%%PORTDOCS%%%%DOCSDIR%%/en/scripterapi-dialogs.html +%%PORTDOCS%%%%DOCSDIR%%/en/scripterapi-doc.html +%%PORTDOCS%%%%DOCSDIR%%/en/scripterapi-extensions.html +%%PORTDOCS%%%%DOCSDIR%%/en/scripterapi-font.html +%%PORTDOCS%%%%DOCSDIR%%/en/scripterapi-getobjprop.html +%%PORTDOCS%%%%DOCSDIR%%/en/scripterapi-images.html +%%PORTDOCS%%%%DOCSDIR%%/en/scripterapi-layer.html +%%PORTDOCS%%%%DOCSDIR%%/en/scripterapi-lines.html +%%PORTDOCS%%%%DOCSDIR%%/en/scripterapi-manobj.html +%%PORTDOCS%%%%DOCSDIR%%/en/scripterapi-masterpages.html +%%PORTDOCS%%%%DOCSDIR%%/en/scripterapi-object.html +%%PORTDOCS%%%%DOCSDIR%%/en/scripterapi-page.html +%%PORTDOCS%%%%DOCSDIR%%/en/scripterapi-pdfannotations.html +%%PORTDOCS%%%%DOCSDIR%%/en/scripterapi-select.html +%%PORTDOCS%%%%DOCSDIR%%/en/scripterapi-setobjprop.html +%%PORTDOCS%%%%DOCSDIR%%/en/scripterapi-textframes.html +%%PORTDOCS%%%%DOCSDIR%%/en/scripterapi.html +%%PORTDOCS%%%%DOCSDIR%%/en/settings1.html +%%PORTDOCS%%%%DOCSDIR%%/en/short-words.html +%%PORTDOCS%%%%DOCSDIR%%/en/specs.html +%%PORTDOCS%%%%DOCSDIR%%/en/toolbox.html +%%PORTDOCS%%%%DOCSDIR%%/en/toolbox1.html +%%PORTDOCS%%%%DOCSDIR%%/en/toolbox12.html +%%PORTDOCS%%%%DOCSDIR%%/en/toolbox13.html +%%PORTDOCS%%%%DOCSDIR%%/en/toolbox14.html +%%PORTDOCS%%%%DOCSDIR%%/en/toolbox15.html +%%PORTDOCS%%%%DOCSDIR%%/en/toolbox16.html +%%PORTDOCS%%%%DOCSDIR%%/en/toolbox17.html +%%PORTDOCS%%%%DOCSDIR%%/en/toolbox18.html +%%PORTDOCS%%%%DOCSDIR%%/en/toolbox19.html +%%PORTDOCS%%%%DOCSDIR%%/en/toolbox2.html +%%PORTDOCS%%%%DOCSDIR%%/en/toolbox20.html +%%PORTDOCS%%%%DOCSDIR%%/en/toolbox3.html +%%PORTDOCS%%%%DOCSDIR%%/en/toolbox4.html +%%PORTDOCS%%%%DOCSDIR%%/en/toolbox5.html +%%PORTDOCS%%%%DOCSDIR%%/en/toolbox6.html +%%PORTDOCS%%%%DOCSDIR%%/en/toolbox7.html +%%PORTDOCS%%%%DOCSDIR%%/en/toolbox8.html +%%PORTDOCS%%%%DOCSDIR%%/en/toolbox9.html +%%PORTDOCS%%%%DOCSDIR%%/en/topten.html +%%PORTDOCS%%%%DOCSDIR%%/en/tutorials.html +%%PORTDOCS%%%%DOCSDIR%%/en/tutorials/scribus-short-words/after_short_words.png +%%PORTDOCS%%%%DOCSDIR%%/en/tutorials/scribus-short-words/before_short_words.png +%%PORTDOCS%%%%DOCSDIR%%/en/tutorials/scribus-short-words/dialog.png +%%PORTDOCS%%%%DOCSDIR%%/en/tutorials/scribus-short-words/menu.png +%%PORTDOCS%%%%DOCSDIR%%/en/tutorials/scribus-short-words/menu.xml +%%PORTDOCS%%%%DOCSDIR%%/en/tutorials/scribus-short-words/short-words-manual.html +%%PORTDOCS%%%%DOCSDIR%%/en/workspace1.html +%%PORTDOCS%%%%DOCSDIR%%/it/EditingShapes.html +%%PORTDOCS%%%%DOCSDIR%%/it/WwFill.html +%%PORTDOCS%%%%DOCSDIR%%/it/WwFrames.html +%%PORTDOCS%%%%DOCSDIR%%/it/WwImages.html +%%PORTDOCS%%%%DOCSDIR%%/it/WwLines.html +%%PORTDOCS%%%%DOCSDIR%%/it/WwRenderframes.html +%%PORTDOCS%%%%DOCSDIR%%/it/WwShapes.html +%%PORTDOCS%%%%DOCSDIR%%/it/WwStyles.html +%%PORTDOCS%%%%DOCSDIR%%/it/WwText.html +%%PORTDOCS%%%%DOCSDIR%%/it/about1.html +%%PORTDOCS%%%%DOCSDIR%%/it/about2.html +%%PORTDOCS%%%%DOCSDIR%%/it/bugreport.html +%%PORTDOCS%%%%DOCSDIR%%/it/cli.html +%%PORTDOCS%%%%DOCSDIR%%/it/cms.html +%%PORTDOCS%%%%DOCSDIR%%/it/cms2.html +%%PORTDOCS%%%%DOCSDIR%%/it/cms3.html +%%PORTDOCS%%%%DOCSDIR%%/it/codingstandards.html +%%PORTDOCS%%%%DOCSDIR%%/it/color1.html +%%PORTDOCS%%%%DOCSDIR%%/it/color2.html +%%PORTDOCS%%%%DOCSDIR%%/it/color3.html +%%PORTDOCS%%%%DOCSDIR%%/it/color4.html +%%PORTDOCS%%%%DOCSDIR%%/it/color5.html +%%PORTDOCS%%%%DOCSDIR%%/it/color6.html +%%PORTDOCS%%%%DOCSDIR%%/it/color7a.html +%%PORTDOCS%%%%DOCSDIR%%/it/color7b.html +%%PORTDOCS%%%%DOCSDIR%%/it/color7c.html +%%PORTDOCS%%%%DOCSDIR%%/it/color8.html +%%PORTDOCS%%%%DOCSDIR%%/it/colorwheel.html +%%PORTDOCS%%%%DOCSDIR%%/it/config.html +%%PORTDOCS%%%%DOCSDIR%%/it/contributions.html +%%PORTDOCS%%%%DOCSDIR%%/it/developers.html +%%PORTDOCS%%%%DOCSDIR%%/it/doccopyright.html +%%PORTDOCS%%%%DOCSDIR%%/it/docinfo.html +%%PORTDOCS%%%%DOCSDIR%%/it/documentation.html +%%PORTDOCS%%%%DOCSDIR%%/it/download.html +%%PORTDOCS%%%%DOCSDIR%%/it/editorial.html +%%PORTDOCS%%%%DOCSDIR%%/it/faq1.html +%%PORTDOCS%%%%DOCSDIR%%/it/faq3.html +%%PORTDOCS%%%%DOCSDIR%%/it/fileproblems.html +%%PORTDOCS%%%%DOCSDIR%%/it/fonts1.html +%%PORTDOCS%%%%DOCSDIR%%/it/fonts2.html +%%PORTDOCS%%%%DOCSDIR%%/it/gettexthowto.html +%%PORTDOCS%%%%DOCSDIR%%/it/gsview.html +%%PORTDOCS%%%%DOCSDIR%%/it/hyphenator.html +%%PORTDOCS%%%%DOCSDIR%%/it/images/CH_1.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/CH_2.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/CH_3.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/CH_4.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/CH_5.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/CH_6.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/CH_7.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/CH_8.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/Cover_en1-page1.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/DrawLatexFrame.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/GG_CE1.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/GG_CE10.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/GG_CE11.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/GG_CE12.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/GG_CE13.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/GG_CE14.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/GG_CE15.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/GG_CE16.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/GG_CE17.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/GG_CE18.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/GG_CE19.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/GG_CE2.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/GG_CE20.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/GG_CE21.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/GG_CE22.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/GG_CE23.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/GG_CE24.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/GG_CE25.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/GG_CE26.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/GG_CE27.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/GG_CE28.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/GG_CE29.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/GG_CE3.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/GG_CE30.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/GG_CE31.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/GG_CE32.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/GG_CE33.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/GG_CE4.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/GG_CE5.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/GG_CE6.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/GG_CE7.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/GG_CE8.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/GG_CE9.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/GG_CE_a.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/GG_CE_b.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/GG_CE_c.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/GG_CE_colour_select.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/GG_CE_ex1.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/GG_CE_ex2.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/GG_CE_ex3.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/GG_CE_ex4.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/GG_CE_ex5.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/GG_CE_ex6.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/GG_CE_ex7.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/GG_CE_ex8.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/GG_CE_ex9.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/Image_Properties.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/Mantis_my_view.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/Mantis_new_report1.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/Mantis_new_report2.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/Mantis_new_report3.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/Mantis_searching.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/Mantis_signup.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/RM-CM.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/RM-PUB.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/RM-Scribus-1.5-Color_Fills.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/RM-imp3.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/RM-picture_browser.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/RM-tables.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/RM_CHF.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/RM_DS.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/RM_symb.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/RYB_color_wheel.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/Rembrandt1.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/Rembrandt10.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/Rembrandt11.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/Rembrandt12.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/Rembrandt13.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/Rembrandt14.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/Rembrandt15.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/Rembrandt16.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/Rembrandt17.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/Rembrandt17a.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/Rembrandt17b.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/Rembrandt18.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/Rembrandt18b.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/Rembrandt19.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/Rembrandt2.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/Rembrandt20.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/Rembrandt21.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/Rembrandt3.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/Rembrandt4.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/Rembrandt5.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/Rembrandt6.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/Rembrandt7.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/Rembrandt8.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/Rembrandt9.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/Scribus-1.5-AIorPDF-dialog.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/Scribus-Arcs.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/Scribus-CalligraphicPen.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/Scribus-Spirals.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/Scripter.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/SwB.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/XYZ_Prop.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/XYZ_Prop1.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/alert.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/batik1.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/boundingbox.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/boundingbox1.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/cmcanvas.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/cms-gamut1.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/cms-gamut2.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/cmsmodify1.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/cmyk.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/colormanager2.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/colorwheel.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/colrs-caricature.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/colrs-mgt1.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/colrs-mgt2.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/combine_polygons.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/combine_polygons1.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/combine_polygons2.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/combine_polygons3.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/combine_polygons4.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/combine_polygons5.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/context_image.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/context_shape.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/context_text135.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/contourline_flow.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/cw-analogous.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/cw-compl.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/cw-splitcompl.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/cw-tetradic.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/cw-triadic.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/cw-warning.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/docheader1.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/docheader2.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/docinfo.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/docinfo2.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/dtp-studio.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/duotone-imp.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/duotone-imp2.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/edit_shapes.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/editcols1.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/editcols1a.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/editcols2.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/editcols3.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/eps-imp1.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/eps-imp2.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/eps-imp3.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/eps-imp4.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/eps-imp5.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/file-error1.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/file-error2.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/file-error3.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/fileimport.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/font-preview.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/font-subst.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/fontmatrix.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/fontpref1.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/fontpref2.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/fontpref3.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/fonts.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/fonts2.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/frame_shape_flow.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/galaxy_gauge.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/galaxy_harmonizer1.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/galaxy_harmonizer2.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/geometry.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/geometry1.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/gimpoptions1.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/gimpoptions2.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/gimpoptions3.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/gradient_adjuster.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/gradient_adjuster1.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/gradient_adjuster_vector.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/htmlimport.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/htmlstyle.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/hyphen1.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/import-pdfimage.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/ink-cov.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/insert-frame-1.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/insert-frame-2.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/krita1.jpg +%%PORTDOCS%%%%DOCSDIR%%/it/images/layers1.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/layers2.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/lilyp.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/line_tab.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/line_tab1.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/line_tab2.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/line_tab3.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/line_tab4.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/line_tab5.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/line_tab6.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/line_tab7.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/lprof.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/missing-gs.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/mpage1.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/mpage2.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/mpage3.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/mpage4.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/mpage5.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/multipledup_copies.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/multipledup_rotation.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/multipledup_rows.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/new1.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/new2.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/new3.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/new4.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/new5.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/new6.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/node_edit_close.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/nodes_edit.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/numb-sections.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/oogettext1.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/patterns1.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/patterns2.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/pdf-form-ht1.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/pdf-form-ht2.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/pdf-form-ht3.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/pdf-form-ht4.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/pdf-form-ht5.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/pdf-form-ht6.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/pdfx1a-lo.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/pdfx3-1.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/pdfxcolor.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/pdfxintent.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/plot1.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/plot2.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/polygons.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/polygons1.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/povray.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/preflight-v.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/prefs-mac-1.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/prefs_9parts.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/prefs_colormgmt.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/prefs_display.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/prefs_document.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/prefs_document1.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/prefs_exttools.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/prefs_fibonacci.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/prefs_general.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/prefs_goldenmean.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/prefs_guides.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/prefs_guides1.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/prefs_gutenberg.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/prefs_keyboard.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/prefs_magazine.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/prefs_misc.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/prefs_pdfexport.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/prefs_pdfexport1.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/prefs_preflight.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/prefs_shortwords.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/prefs_tools.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/prefs_tools1.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/prefs_tools2.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/prefs_tools3.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/prefs_tools4.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/prefs_tools5.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/prefs_tools6.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/prefs_typog.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/print-dialog1.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/print-dialog2.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/printer2.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/printpreview.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/prop_shape.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/qsg-col1.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/qsg-col2.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/register.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/resene-pal.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/result.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/rf-error1.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/rf-error2.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/rf-error3.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/rf1.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/rf2.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/rf3.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/rf4.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/rf5.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/rf6.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/rf7.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/rf8.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/rgb-cmyk.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/rgb.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/round_rectangle.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/sadie4by2b.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/scribus-os2.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/scribus-pres1.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/scribus-pres2.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/shape_edit.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/shapes7.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/shapes8.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/skewing.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/spot.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/squat_tux.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/style_manager1.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/style_manager10.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/style_manager1b.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/style_manager3b.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/style_manager7.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/style_manager8.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/style_manager9.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/swdialog.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/table-import-1.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/table-import-2.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/table-import-3.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/tb-bookbinder.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/tb-gsview.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/tb-inkscape.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/tb-jpdf.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/tb-libreoffice.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/tb-pdf-imp.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/text-frame-link.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/text-frame-unlink.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/text_filter135.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/text_filter136.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/text_filter136b.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/text_flow.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/text_linking.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/text_tab1.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/text_tab10.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/text_tab11.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/text_tab11b.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/text_tab12.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/text_tab13.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/text_tab2.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/text_tab3.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/text_tab4.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/text_tab5.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/text_tab6.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/text_tab7.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/text_tab7a.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/text_tab7b.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/text_tab8.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/text_tab9.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/transform_dialogb.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/transform_translaterotation.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/transform_translaterotation1.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/transform_translatescaling.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/transform_translateskewing.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/transform_translateskewing1.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/vectimp1.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/vectimp2.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/vectimp3.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/vectimp4.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/vectimp5.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/vector-advanced.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/vector-clipart.png +%%PORTDOCS%%%%DOCSDIR%%/it/images/xnview.png +%%PORTDOCS%%%%DOCSDIR%%/it/importbitmap1.html +%%PORTDOCS%%%%DOCSDIR%%/it/importhints.html +%%PORTDOCS%%%%DOCSDIR%%/it/importhints1.html +%%PORTDOCS%%%%DOCSDIR%%/it/importhints2.html +%%PORTDOCS%%%%DOCSDIR%%/it/importhints3.html +%%PORTDOCS%%%%DOCSDIR%%/it/importhints4.html +%%PORTDOCS%%%%DOCSDIR%%/it/index.html +%%PORTDOCS%%%%DOCSDIR%%/it/install-dpkg.html +%%PORTDOCS%%%%DOCSDIR%%/it/install.html +%%PORTDOCS%%%%DOCSDIR%%/it/install1.html +%%PORTDOCS%%%%DOCSDIR%%/it/install2.html +%%PORTDOCS%%%%DOCSDIR%%/it/install3.html +%%PORTDOCS%%%%DOCSDIR%%/it/install4.html +%%PORTDOCS%%%%DOCSDIR%%/it/install5.html +%%PORTDOCS%%%%DOCSDIR%%/it/intro.html +%%PORTDOCS%%%%DOCSDIR%%/it/irc.html +%%PORTDOCS%%%%DOCSDIR%%/it/keys.html +%%PORTDOCS%%%%DOCSDIR%%/it/layers.html +%%PORTDOCS%%%%DOCSDIR%%/it/lipsum.html +%%PORTDOCS%%%%DOCSDIR%%/it/mailing_lists.html +%%PORTDOCS%%%%DOCSDIR%%/it/menu.xml +%%PORTDOCS%%%%DOCSDIR%%/it/moncal.html +%%PORTDOCS%%%%DOCSDIR%%/it/mouse.html +%%PORTDOCS%%%%DOCSDIR%%/it/multiple_transform.html +%%PORTDOCS%%%%DOCSDIR%%/it/otherinfo.html +%%PORTDOCS%%%%DOCSDIR%%/it/pagenumber.html +%%PORTDOCS%%%%DOCSDIR%%/it/pagetemplate1.html +%%PORTDOCS%%%%DOCSDIR%%/it/pdf_form.html +%%PORTDOCS%%%%DOCSDIR%%/it/pdfexport1.html +%%PORTDOCS%%%%DOCSDIR%%/it/pdfexport2.html +%%PORTDOCS%%%%DOCSDIR%%/it/pdfexport3.html +%%PORTDOCS%%%%DOCSDIR%%/it/pdfexport4.html +%%PORTDOCS%%%%DOCSDIR%%/it/pdflavor.html +%%PORTDOCS%%%%DOCSDIR%%/it/pdfx3.html +%%PORTDOCS%%%%DOCSDIR%%/it/plugin_howto.html +%%PORTDOCS%%%%DOCSDIR%%/it/print1.html +%%PORTDOCS%%%%DOCSDIR%%/it/print2.html +%%PORTDOCS%%%%DOCSDIR%%/it/print3.html +%%PORTDOCS%%%%DOCSDIR%%/it/print4.html +%%PORTDOCS%%%%DOCSDIR%%/it/psd.html +%%PORTDOCS%%%%DOCSDIR%%/it/qsg.html +%%PORTDOCS%%%%DOCSDIR%%/it/readme-macosx.html +%%PORTDOCS%%%%DOCSDIR%%/it/readme-os2.html +%%PORTDOCS%%%%DOCSDIR%%/it/readme-win32.html +%%PORTDOCS%%%%DOCSDIR%%/it/readme.html +%%PORTDOCS%%%%DOCSDIR%%/it/%%CMAKE_BUILD_TYPE%%s.html +%%PORTDOCS%%%%DOCSDIR%%/it/renderframes.html +%%PORTDOCS%%%%DOCSDIR%%/it/resources.html +%%PORTDOCS%%%%DOCSDIR%%/it/scribus-svg.html +%%PORTDOCS%%%%DOCSDIR%%/it/scribuscopyright.html +%%PORTDOCS%%%%DOCSDIR%%/it/scribusfileformat.html +%%PORTDOCS%%%%DOCSDIR%%/it/scripter-extensions.html +%%PORTDOCS%%%%DOCSDIR%%/it/scripter-faq.html +%%PORTDOCS%%%%DOCSDIR%%/it/scripter1.html +%%PORTDOCS%%%%DOCSDIR%%/it/scripterapi-ImageExport.html +%%PORTDOCS%%%%DOCSDIR%%/it/scripterapi-PDFfile.html +%%PORTDOCS%%%%DOCSDIR%%/it/scripterapi-Printer.html +%%PORTDOCS%%%%DOCSDIR%%/it/scripterapi-color.html +%%PORTDOCS%%%%DOCSDIR%%/it/scripterapi-constants.html +%%PORTDOCS%%%%DOCSDIR%%/it/scripterapi-dialogs.html +%%PORTDOCS%%%%DOCSDIR%%/it/scripterapi-doc.html +%%PORTDOCS%%%%DOCSDIR%%/it/scripterapi-extensions.html +%%PORTDOCS%%%%DOCSDIR%%/it/scripterapi-font.html +%%PORTDOCS%%%%DOCSDIR%%/it/scripterapi-getobjprop.html +%%PORTDOCS%%%%DOCSDIR%%/it/scripterapi-layer.html +%%PORTDOCS%%%%DOCSDIR%%/it/scripterapi-manobj.html +%%PORTDOCS%%%%DOCSDIR%%/it/scripterapi-object.html +%%PORTDOCS%%%%DOCSDIR%%/it/scripterapi-page.html +%%PORTDOCS%%%%DOCSDIR%%/it/scripterapi-select.html +%%PORTDOCS%%%%DOCSDIR%%/it/scripterapi-setobjprop.html +%%PORTDOCS%%%%DOCSDIR%%/it/scripterapi-textframes.html +%%PORTDOCS%%%%DOCSDIR%%/it/scripterapi.html +%%PORTDOCS%%%%DOCSDIR%%/it/settings1.html +%%PORTDOCS%%%%DOCSDIR%%/it/short-words.html +%%PORTDOCS%%%%DOCSDIR%%/it/specs.html +%%PORTDOCS%%%%DOCSDIR%%/it/toolbox.html +%%PORTDOCS%%%%DOCSDIR%%/it/toolbox1.html +%%PORTDOCS%%%%DOCSDIR%%/it/toolbox12.html +%%PORTDOCS%%%%DOCSDIR%%/it/toolbox13.html +%%PORTDOCS%%%%DOCSDIR%%/it/toolbox14.html +%%PORTDOCS%%%%DOCSDIR%%/it/toolbox15.html +%%PORTDOCS%%%%DOCSDIR%%/it/toolbox16.html +%%PORTDOCS%%%%DOCSDIR%%/it/toolbox17.html +%%PORTDOCS%%%%DOCSDIR%%/it/toolbox18.html +%%PORTDOCS%%%%DOCSDIR%%/it/toolbox19.html +%%PORTDOCS%%%%DOCSDIR%%/it/toolbox2.html +%%PORTDOCS%%%%DOCSDIR%%/it/toolbox3.html +%%PORTDOCS%%%%DOCSDIR%%/it/toolbox4.html +%%PORTDOCS%%%%DOCSDIR%%/it/toolbox5.html +%%PORTDOCS%%%%DOCSDIR%%/it/toolbox6.html +%%PORTDOCS%%%%DOCSDIR%%/it/toolbox7.html +%%PORTDOCS%%%%DOCSDIR%%/it/toolbox8.html +%%PORTDOCS%%%%DOCSDIR%%/it/toolbox9.html +%%PORTDOCS%%%%DOCSDIR%%/it/topten.html +%%PORTDOCS%%%%DOCSDIR%%/it/translation_howto.html +%%PORTDOCS%%%%DOCSDIR%%/it/tutorials.html +%%PORTDOCS%%%%DOCSDIR%%/it/workspace1.html +share/icons/hicolor/1024x1024/apps/scribus.png +share/icons/hicolor/128x128/apps/scribus.png +share/icons/hicolor/16x16/apps/scribus.png +share/icons/hicolor/256x256/apps/scribus.png +share/icons/hicolor/32x32/apps/scribus.png +share/icons/hicolor/512x512/apps/scribus.png +share/metainfo/scribus.appdata.xml +share/mime/packages/scribus.xml +share/pixmaps/scribus.png +%%DATADIR%%/dicts/hyph/README_ca_ES.txt +%%DATADIR%%/dicts/hyph/README_cs_CZ.txt +%%DATADIR%%/dicts/hyph/README_cy_GB.txt +%%DATADIR%%/dicts/hyph/README_de_1901.txt +%%DATADIR%%/dicts/hyph/README_de_DE.txt +%%DATADIR%%/dicts/hyph/README_en_EN.txt +%%DATADIR%%/dicts/hyph/README_en_GB.txt +%%DATADIR%%/dicts/hyph/README_es_ES.txt +%%DATADIR%%/dicts/hyph/README_fi_FI.txt +%%DATADIR%%/dicts/hyph/README_hu_HU.txt +%%DATADIR%%/dicts/hyph/README_hyph_da_DK.txt +%%DATADIR%%/dicts/hyph/README_hyph_de_CH.txt +%%DATADIR%%/dicts/hyph/README_hyph_de_DE.txt +%%DATADIR%%/dicts/hyph/README_hyph_ia.txt +%%DATADIR%%/dicts/hyph/README_hyph_ml_IN.txt +%%DATADIR%%/dicts/hyph/README_hyph_nb_NO.txt +%%DATADIR%%/dicts/hyph/README_hyph_nn_NO.txt +%%DATADIR%%/dicts/hyph/README_hyph_pl_PL.txt +%%DATADIR%%/dicts/hyph/README_hyph_ro_RO.txt +%%DATADIR%%/dicts/hyph/README_id_ID.txt +%%DATADIR%%/dicts/hyph/README_is_IS.txt +%%DATADIR%%/dicts/hyph/README_ku.txt +%%DATADIR%%/dicts/hyph/README_lt_LT.txt +%%DATADIR%%/dicts/hyph/README_pt_BR.txt +%%DATADIR%%/dicts/hyph/README_pt_PT.txt +%%DATADIR%%/dicts/hyph/README_ru_RU_0.txt +%%DATADIR%%/dicts/hyph/README_sk_SK.txt +%%DATADIR%%/dicts/hyph/README_sl_SI.txt +%%DATADIR%%/dicts/hyph/README_sv_SE.txt +%%DATADIR%%/dicts/hyph/README_uk_UA.txt +%%DATADIR%%/dicts/hyph/hyph_af.dic +%%DATADIR%%/dicts/hyph/hyph_bg.dic +%%DATADIR%%/dicts/hyph/hyph_ca.dic +%%DATADIR%%/dicts/hyph/hyph_cs.dic +%%DATADIR%%/dicts/hyph/hyph_da.dic +%%DATADIR%%/dicts/hyph/hyph_de.dic +%%DATADIR%%/dicts/hyph/hyph_de_1901.dic +%%DATADIR%%/dicts/hyph/hyph_de_CH.dic +%%DATADIR%%/dicts/hyph/hyph_el.dic +%%DATADIR%%/dicts/hyph/hyph_en_GB.dic +%%DATADIR%%/dicts/hyph/hyph_eo.dic +%%DATADIR%%/dicts/hyph/hyph_es.dic +%%DATADIR%%/dicts/hyph/hyph_fi.dic +%%DATADIR%%/dicts/hyph/hyph_fr.dic +%%DATADIR%%/dicts/hyph/hyph_gl.dic +%%DATADIR%%/dicts/hyph/hyph_hr.dic +%%DATADIR%%/dicts/hyph/hyph_hu.dic +%%DATADIR%%/dicts/hyph/hyph_ia.dic +%%DATADIR%%/dicts/hyph/hyph_id.dic +%%DATADIR%%/dicts/hyph/hyph_is.dic +%%DATADIR%%/dicts/hyph/hyph_it.dic +%%DATADIR%%/dicts/hyph/hyph_ku.dic +%%DATADIR%%/dicts/hyph/hyph_lt.dic +%%DATADIR%%/dicts/hyph/hyph_ml_IN.dic +%%DATADIR%%/dicts/hyph/hyph_nb_NO.dic +%%DATADIR%%/dicts/hyph/hyph_nl.dic +%%DATADIR%%/dicts/hyph/hyph_nn_NO.dic +%%DATADIR%%/dicts/hyph/hyph_pl.dic +%%DATADIR%%/dicts/hyph/hyph_pt.dic +%%DATADIR%%/dicts/hyph/hyph_pt_BR.dic +%%DATADIR%%/dicts/hyph/hyph_ro.dic +%%DATADIR%%/dicts/hyph/hyph_ru.dic +%%DATADIR%%/dicts/hyph/hyph_sk.dic +%%DATADIR%%/dicts/hyph/hyph_sl.dic +%%DATADIR%%/dicts/hyph/hyph_sv.dic +%%DATADIR%%/dicts/hyph/hyph_uk.dic +%%DATADIR%%/dtd/scribuspdfoptions.dtd +%%DATADIR%%/editorconfig/100_latex.tar +%%DATADIR%%/editorconfig/100_latex.xml +%%DATADIR%%/editorconfig/200_gnuplot.xml +%%DATADIR%%/editorconfig/300_lilypond.xml +%%DATADIR%%/editorconfig/400_dot.xml +%%DATADIR%%/editorconfig/500_povray.xml +%%DATADIR%%/editorconfig/dot.svg +%%DATADIR%%/editorconfig/gnuplot.png +%%DATADIR%%/editorconfig/lilypond.png +%%DATADIR%%/editorconfig/povray_32.png +%%DATADIR%%/icons/1_5_0.xml +%%DATADIR%%/icons/1_5_0/16/accessories-text-editor.png +%%DATADIR%%/icons/1_5_0/16/align-horizontal-center.png +%%DATADIR%%/icons/1_5_0/16/align-horizontal-left-out.png +%%DATADIR%%/icons/1_5_0/16/align-horizontal-left.png +%%DATADIR%%/icons/1_5_0/16/align-horizontal-right-out.png +%%DATADIR%%/icons/1_5_0/16/align-horizontal-right.png +%%DATADIR%%/icons/1_5_0/16/align-vertical-bottom-out.png +%%DATADIR%%/icons/1_5_0/16/align-vertical-bottom.png +%%DATADIR%%/icons/1_5_0/16/align-vertical-center.png +%%DATADIR%%/icons/1_5_0/16/align-vertical-top-out.png +%%DATADIR%%/icons/1_5_0/16/align-vertical-top.png +%%DATADIR%%/icons/1_5_0/16/annot3d.png +%%DATADIR%%/icons/1_5_0/16/checkbox.png +%%DATADIR%%/icons/1_5_0/16/close.png +%%DATADIR%%/icons/1_5_0/16/color-fill.png +%%DATADIR%%/icons/1_5_0/16/color-picker.png +%%DATADIR%%/icons/1_5_0/16/color-stroke.png +%%DATADIR%%/icons/1_5_0/16/combobox.png +%%DATADIR%%/icons/1_5_0/16/configure.png +%%DATADIR%%/icons/1_5_0/16/delete-table-columns.png +%%DATADIR%%/icons/1_5_0/16/delete-table-rows.png +%%DATADIR%%/icons/1_5_0/16/distribute-horizontal-center.png +%%DATADIR%%/icons/1_5_0/16/distribute-horizontal-equal.png +%%DATADIR%%/icons/1_5_0/16/distribute-horizontal-left.png +%%DATADIR%%/icons/1_5_0/16/distribute-horizontal-right.png +%%DATADIR%%/icons/1_5_0/16/distribute-vertical-bottom.png +%%DATADIR%%/icons/1_5_0/16/distribute-vertical-center.png +%%DATADIR%%/icons/1_5_0/16/distribute-vertical-equal.png +%%DATADIR%%/icons/1_5_0/16/distribute-vertical-top.png +%%DATADIR%%/icons/1_5_0/16/document-new.png +%%DATADIR%%/icons/1_5_0/16/document-open.png +%%DATADIR%%/icons/1_5_0/16/document-print-preview.png +%%DATADIR%%/icons/1_5_0/16/document-print.png +%%DATADIR%%/icons/1_5_0/16/document-properties.png +%%DATADIR%%/icons/1_5_0/16/document-save-as.png +%%DATADIR%%/icons/1_5_0/16/document-save.png +%%DATADIR%%/icons/1_5_0/16/draw-arc.png +%%DATADIR%%/icons/1_5_0/16/draw-arrow-back.png +%%DATADIR%%/icons/1_5_0/16/draw-arrow-down.png +%%DATADIR%%/icons/1_5_0/16/draw-arrow-forward.png +%%DATADIR%%/icons/1_5_0/16/draw-arrow-up.png +%%DATADIR%%/icons/1_5_0/16/draw-bezier-curves.png +%%DATADIR%%/icons/1_5_0/16/draw-calligraphic.png +%%DATADIR%%/icons/1_5_0/16/draw-cross.png +%%DATADIR%%/icons/1_5_0/16/draw-donut.png +%%DATADIR%%/icons/1_5_0/16/draw-ellipse.png +%%DATADIR%%/icons/1_5_0/16/draw-freehand.png +%%DATADIR%%/icons/1_5_0/16/draw-halfcircle1.png +%%DATADIR%%/icons/1_5_0/16/draw-halfcircle2.png +%%DATADIR%%/icons/1_5_0/16/draw-halfcircle3.png +%%DATADIR%%/icons/1_5_0/16/draw-halfcircle4.png +%%DATADIR%%/icons/1_5_0/16/draw-path.png +%%DATADIR%%/icons/1_5_0/16/draw-polygon.png +%%DATADIR%%/icons/1_5_0/16/draw-polyline.png +%%DATADIR%%/icons/1_5_0/16/draw-rectangle.png +%%DATADIR%%/icons/1_5_0/16/draw-spiral.png +%%DATADIR%%/icons/1_5_0/16/draw-square-inverted-corners.png +%%DATADIR%%/icons/1_5_0/16/draw-star.png +%%DATADIR%%/icons/1_5_0/16/draw-text.png +%%DATADIR%%/icons/1_5_0/16/draw-triangle.png +%%DATADIR%%/icons/1_5_0/16/draw-triangle1.png +%%DATADIR%%/icons/1_5_0/16/draw-triangle2.png +%%DATADIR%%/icons/1_5_0/16/draw-triangle3.png +%%DATADIR%%/icons/1_5_0/16/draw-triangle4.png +%%DATADIR%%/icons/1_5_0/16/edit-clear.png +%%DATADIR%%/icons/1_5_0/16/edit-copy.png +%%DATADIR%%/icons/1_5_0/16/edit-cut.png +%%DATADIR%%/icons/1_5_0/16/edit-delete.png +%%DATADIR%%/icons/1_5_0/16/edit-find-replace.png +%%DATADIR%%/icons/1_5_0/16/edit-guides.png +%%DATADIR%%/icons/1_5_0/16/edit-paste.png +%%DATADIR%%/icons/1_5_0/16/edit-redo.png +%%DATADIR%%/icons/1_5_0/16/edit-select-all.png +%%DATADIR%%/icons/1_5_0/16/edit-undo.png +%%DATADIR%%/icons/1_5_0/16/editdoc.png +%%DATADIR%%/icons/1_5_0/16/exit.png +%%DATADIR%%/icons/1_5_0/16/flip-object-horizontal.png +%%DATADIR%%/icons/1_5_0/16/flip-object-vertical.png +%%DATADIR%%/icons/1_5_0/16/folder.png +%%DATADIR%%/icons/1_5_0/16/format-justify-center.png +%%DATADIR%%/icons/1_5_0/16/format-justify-fill-block-right.png +%%DATADIR%%/icons/1_5_0/16/format-justify-fill-block.png +%%DATADIR%%/icons/1_5_0/16/format-justify-fill.png +%%DATADIR%%/icons/1_5_0/16/format-justify-left.png +%%DATADIR%%/icons/1_5_0/16/format-justify-right.png +%%DATADIR%%/icons/1_5_0/16/go-bottom.png +%%DATADIR%%/icons/1_5_0/16/go-down.png +%%DATADIR%%/icons/1_5_0/16/go-first.png +%%DATADIR%%/icons/1_5_0/16/go-home.png +%%DATADIR%%/icons/1_5_0/16/go-last.png +%%DATADIR%%/icons/1_5_0/16/go-next.png +%%DATADIR%%/icons/1_5_0/16/go-previous.png +%%DATADIR%%/icons/1_5_0/16/go-top.png +%%DATADIR%%/icons/1_5_0/16/go-up.png +%%DATADIR%%/icons/1_5_0/16/help-browser.png +%%DATADIR%%/icons/1_5_0/16/image-x-generic.png +%%DATADIR%%/icons/1_5_0/16/information.png +%%DATADIR%%/icons/1_5_0/16/insert-barcode.png +%%DATADIR%%/icons/1_5_0/16/insert-button.png +%%DATADIR%%/icons/1_5_0/16/insert-image.png +%%DATADIR%%/icons/1_5_0/16/insert-latex.png +%%DATADIR%%/icons/1_5_0/16/insert-renderframe.png +%%DATADIR%%/icons/1_5_0/16/insert-table-columns.png +%%DATADIR%%/icons/1_5_0/16/insert-table-rows.png +%%DATADIR%%/icons/1_5_0/16/insert-table.png +%%DATADIR%%/icons/1_5_0/16/insert-text-frame.png +%%DATADIR%%/icons/1_5_0/16/layer-flow-around.png +%%DATADIR%%/icons/1_5_0/16/list-add.png +%%DATADIR%%/icons/1_5_0/16/list-box.png +%%DATADIR%%/icons/1_5_0/16/list-remove.png +%%DATADIR%%/icons/1_5_0/16/lock-unlocked.png +%%DATADIR%%/icons/1_5_0/16/lock.png +%%DATADIR%%/icons/1_5_0/16/measure.png +%%DATADIR%%/icons/1_5_0/16/merge-table-cells.png +%%DATADIR%%/icons/1_5_0/16/page-3fold.png +%%DATADIR%%/icons/1_5_0/16/page-4fold.png +%%DATADIR%%/icons/1_5_0/16/page-doublesided.png +%%DATADIR%%/icons/1_5_0/16/page-simple.png +%%DATADIR%%/icons/1_5_0/16/pdf-annotations.png +%%DATADIR%%/icons/1_5_0/16/pointer.png +%%DATADIR%%/icons/1_5_0/16/preferences-desktop-font.png +%%DATADIR%%/icons/1_5_0/16/preferences-desktop-keyboard-shortcuts.png +%%DATADIR%%/icons/1_5_0/16/preflight-verifier.png +%%DATADIR%%/icons/1_5_0/16/printer.png +%%DATADIR%%/icons/1_5_0/16/radiobutton.png +%%DATADIR%%/icons/1_5_0/16/scale.png +%%DATADIR%%/icons/1_5_0/16/show-object.png +%%DATADIR%%/icons/1_5_0/16/split-table-cells.png +%%DATADIR%%/icons/1_5_0/16/story-editor.png +%%DATADIR%%/icons/1_5_0/16/stroke-cap-butt.png +%%DATADIR%%/icons/1_5_0/16/stroke-cap-round.png +%%DATADIR%%/icons/1_5_0/16/stroke-cap-square.png +%%DATADIR%%/icons/1_5_0/16/stroke-join-bevel.png +%%DATADIR%%/icons/1_5_0/16/stroke-join-miter.png +%%DATADIR%%/icons/1_5_0/16/stroke-join-round.png +%%DATADIR%%/icons/1_5_0/16/system-file-manager.png +%%DATADIR%%/icons/1_5_0/16/text-direction-ltr.png +%%DATADIR%%/icons/1_5_0/16/text-direction-rtl.png +%%DATADIR%%/icons/1_5_0/16/text-field.png +%%DATADIR%%/icons/1_5_0/16/text-frame-link.png +%%DATADIR%%/icons/1_5_0/16/text-frame-unlink.png +%%DATADIR%%/icons/1_5_0/16/transform-rotate.png +%%DATADIR%%/icons/1_5_0/16/video-display.png +%%DATADIR%%/icons/1_5_0/16/zoom-in.png +%%DATADIR%%/icons/1_5_0/16/zoom-original.png +%%DATADIR%%/icons/1_5_0/16/zoom-out.png +%%DATADIR%%/icons/1_5_0/16/zoom.png +%%DATADIR%%/icons/1_5_0/22/accessories-text-editor.png +%%DATADIR%%/icons/1_5_0/22/align-horizontal-center.png +%%DATADIR%%/icons/1_5_0/22/align-horizontal-left-out.png +%%DATADIR%%/icons/1_5_0/22/align-horizontal-left.png +%%DATADIR%%/icons/1_5_0/22/align-horizontal-right-out.png +%%DATADIR%%/icons/1_5_0/22/align-horizontal-right.png +%%DATADIR%%/icons/1_5_0/22/align-vertical-bottom-out.png +%%DATADIR%%/icons/1_5_0/22/align-vertical-bottom.png +%%DATADIR%%/icons/1_5_0/22/align-vertical-center.png +%%DATADIR%%/icons/1_5_0/22/align-vertical-top-out.png +%%DATADIR%%/icons/1_5_0/22/align-vertical-top.png +%%DATADIR%%/icons/1_5_0/22/annot3d.png +%%DATADIR%%/icons/1_5_0/22/checkbox.png +%%DATADIR%%/icons/1_5_0/22/close.png +%%DATADIR%%/icons/1_5_0/22/color-picker.png +%%DATADIR%%/icons/1_5_0/22/combobox.png +%%DATADIR%%/icons/1_5_0/22/delete-table-columns.png +%%DATADIR%%/icons/1_5_0/22/delete-table-rows.png +%%DATADIR%%/icons/1_5_0/22/dialog-error.png +%%DATADIR%%/icons/1_5_0/22/dialog-warning.png +%%DATADIR%%/icons/1_5_0/22/distribute-horizontal-center.png +%%DATADIR%%/icons/1_5_0/22/distribute-horizontal-equal.png +%%DATADIR%%/icons/1_5_0/22/distribute-horizontal-left.png +%%DATADIR%%/icons/1_5_0/22/distribute-horizontal-margin.png +%%DATADIR%%/icons/1_5_0/22/distribute-horizontal-page.png +%%DATADIR%%/icons/1_5_0/22/distribute-horizontal-right.png +%%DATADIR%%/icons/1_5_0/22/distribute-horizontal-x.png +%%DATADIR%%/icons/1_5_0/22/distribute-vertical-bottom.png +%%DATADIR%%/icons/1_5_0/22/distribute-vertical-center.png +%%DATADIR%%/icons/1_5_0/22/distribute-vertical-equal.png +%%DATADIR%%/icons/1_5_0/22/distribute-vertical-margin.png +%%DATADIR%%/icons/1_5_0/22/distribute-vertical-page.png +%%DATADIR%%/icons/1_5_0/22/distribute-vertical-top.png +%%DATADIR%%/icons/1_5_0/22/distribute-vertical-y.png +%%DATADIR%%/icons/1_5_0/22/document-new.png +%%DATADIR%%/icons/1_5_0/22/document-open.png +%%DATADIR%%/icons/1_5_0/22/document-print-preview.png +%%DATADIR%%/icons/1_5_0/22/document-print.png +%%DATADIR%%/icons/1_5_0/22/document-properties.png +%%DATADIR%%/icons/1_5_0/22/document-save-as.png +%%DATADIR%%/icons/1_5_0/22/document-save.png +%%DATADIR%%/icons/1_5_0/22/draw-arc.png +%%DATADIR%%/icons/1_5_0/22/draw-arrow-back.png +%%DATADIR%%/icons/1_5_0/22/draw-arrow-down.png +%%DATADIR%%/icons/1_5_0/22/draw-arrow-forward.png +%%DATADIR%%/icons/1_5_0/22/draw-arrow-up.png +%%DATADIR%%/icons/1_5_0/22/draw-bezier-curves.png +%%DATADIR%%/icons/1_5_0/22/draw-calligraphic.png +%%DATADIR%%/icons/1_5_0/22/draw-cross.png +%%DATADIR%%/icons/1_5_0/22/draw-donut.png +%%DATADIR%%/icons/1_5_0/22/draw-ellipse.png +%%DATADIR%%/icons/1_5_0/22/draw-freehand.png +%%DATADIR%%/icons/1_5_0/22/draw-halfcircle1.png +%%DATADIR%%/icons/1_5_0/22/draw-halfcircle2.png +%%DATADIR%%/icons/1_5_0/22/draw-halfcircle3.png +%%DATADIR%%/icons/1_5_0/22/draw-halfcircle4.png +%%DATADIR%%/icons/1_5_0/22/draw-path.png +%%DATADIR%%/icons/1_5_0/22/draw-polygon.png +%%DATADIR%%/icons/1_5_0/22/draw-polyline.png +%%DATADIR%%/icons/1_5_0/22/draw-rectangle.png +%%DATADIR%%/icons/1_5_0/22/draw-spiral.png +%%DATADIR%%/icons/1_5_0/22/draw-square-inverted-corners.png +%%DATADIR%%/icons/1_5_0/22/draw-star.png +%%DATADIR%%/icons/1_5_0/22/draw-text.png +%%DATADIR%%/icons/1_5_0/22/draw-triangle.png +%%DATADIR%%/icons/1_5_0/22/draw-triangle1.png +%%DATADIR%%/icons/1_5_0/22/draw-triangle2.png +%%DATADIR%%/icons/1_5_0/22/draw-triangle3.png +%%DATADIR%%/icons/1_5_0/22/draw-triangle4.png +%%DATADIR%%/icons/1_5_0/22/edit-clear.png +%%DATADIR%%/icons/1_5_0/22/edit-copy.png +%%DATADIR%%/icons/1_5_0/22/edit-cut.png +%%DATADIR%%/icons/1_5_0/22/edit-delete.png +%%DATADIR%%/icons/1_5_0/22/edit-find-replace.png +%%DATADIR%%/icons/1_5_0/22/edit-guides.png +%%DATADIR%%/icons/1_5_0/22/edit-paste.png +%%DATADIR%%/icons/1_5_0/22/edit-redo.png +%%DATADIR%%/icons/1_5_0/22/edit-select-all.png +%%DATADIR%%/icons/1_5_0/22/edit-undo.png +%%DATADIR%%/icons/1_5_0/22/editdoc.png +%%DATADIR%%/icons/1_5_0/22/exit.png +%%DATADIR%%/icons/1_5_0/22/folder.png +%%DATADIR%%/icons/1_5_0/22/go-bottom.png +%%DATADIR%%/icons/1_5_0/22/go-down.png +%%DATADIR%%/icons/1_5_0/22/go-first.png +%%DATADIR%%/icons/1_5_0/22/go-home.png +%%DATADIR%%/icons/1_5_0/22/go-last.png +%%DATADIR%%/icons/1_5_0/22/go-next.png +%%DATADIR%%/icons/1_5_0/22/go-previous.png +%%DATADIR%%/icons/1_5_0/22/go-top.png +%%DATADIR%%/icons/1_5_0/22/go-up.png +%%DATADIR%%/icons/1_5_0/22/image-x-generic.png +%%DATADIR%%/icons/1_5_0/22/insert-barcode.png +%%DATADIR%%/icons/1_5_0/22/insert-button.png +%%DATADIR%%/icons/1_5_0/22/insert-image.png +%%DATADIR%%/icons/1_5_0/22/insert-latex.png +%%DATADIR%%/icons/1_5_0/22/insert-renderframe.png +%%DATADIR%%/icons/1_5_0/22/insert-table-columns.png +%%DATADIR%%/icons/1_5_0/22/insert-table-rows.png +%%DATADIR%%/icons/1_5_0/22/insert-table.png +%%DATADIR%%/icons/1_5_0/22/insert-text-frame.png +%%DATADIR%%/icons/1_5_0/22/list-add.png +%%DATADIR%%/icons/1_5_0/22/list-box.png +%%DATADIR%%/icons/1_5_0/22/list-remove.png +%%DATADIR%%/icons/1_5_0/22/lock-unlocked.png +%%DATADIR%%/icons/1_5_0/22/lock.png +%%DATADIR%%/icons/1_5_0/22/measure.png +%%DATADIR%%/icons/1_5_0/22/merge-table-cells.png +%%DATADIR%%/icons/1_5_0/22/pdf-annotations.png +%%DATADIR%%/icons/1_5_0/22/pointer.png +%%DATADIR%%/icons/1_5_0/22/preferences-desktop-font.png +%%DATADIR%%/icons/1_5_0/22/preferences-desktop-keyboard-shortcuts.png +%%DATADIR%%/icons/1_5_0/22/preflight-verifier.png +%%DATADIR%%/icons/1_5_0/22/printer.png +%%DATADIR%%/icons/1_5_0/22/radiobutton.png +%%DATADIR%%/icons/1_5_0/22/scale.png +%%DATADIR%%/icons/1_5_0/22/split-table-cells.png +%%DATADIR%%/icons/1_5_0/22/story-editor.png +%%DATADIR%%/icons/1_5_0/22/swap-left.png +%%DATADIR%%/icons/1_5_0/22/swap-right.png +%%DATADIR%%/icons/1_5_0/22/system-file-manager.png +%%DATADIR%%/icons/1_5_0/22/text-field.png +%%DATADIR%%/icons/1_5_0/22/text-frame-link.png +%%DATADIR%%/icons/1_5_0/22/text-frame-unlink.png +%%DATADIR%%/icons/1_5_0/22/transform-crop-and-resize.png +%%DATADIR%%/icons/1_5_0/22/transform-rotate.png +%%DATADIR%%/icons/1_5_0/22/transform-shear-down.png +%%DATADIR%%/icons/1_5_0/22/transform-shear-left.png +%%DATADIR%%/icons/1_5_0/22/transform-shear-right.png +%%DATADIR%%/icons/1_5_0/22/transform-shear-up.png +%%DATADIR%%/icons/1_5_0/22/video-display.png +%%DATADIR%%/icons/1_5_0/22/zoom-in.png +%%DATADIR%%/icons/1_5_0/22/zoom-original.png +%%DATADIR%%/icons/1_5_0/22/zoom-out.png +%%DATADIR%%/icons/1_5_0/22/zoom.png +%%DATADIR%%/icons/1_5_0/32/insert-renderframe.png +%%DATADIR%%/icons/1_5_0/32/page-3fold.png +%%DATADIR%%/icons/1_5_0/32/page-4fold.png +%%DATADIR%%/icons/1_5_0/32/page-doublesided.png +%%DATADIR%%/icons/1_5_0/32/page-simple.png +%%DATADIR%%/icons/1_5_0/AddNode.png +%%DATADIR%%/icons/1_5_0/AddPoint.png +%%DATADIR%%/icons/1_5_0/AllCaps.png +%%DATADIR%%/icons/1_5_0/AppIcon.png +%%DATADIR%%/icons/1_5_0/AppIcon2.png +%%DATADIR%%/icons/1_5_0/BevelJoin.png +%%DATADIR%%/icons/1_5_0/BezierClose.png +%%DATADIR%%/icons/1_5_0/ButtCap.png +%%DATADIR%%/icons/1_5_0/Corner.xpm +%%DATADIR%%/icons/1_5_0/DelPoint.png +%%DATADIR%%/icons/1_5_0/DeleteNode.png +%%DATADIR%%/icons/1_5_0/Deletelayer.png +%%DATADIR%%/icons/1_5_0/DragPix.xpm +%%DATADIR%%/icons/1_5_0/DrawCalligraphy.xpm +%%DATADIR%%/icons/1_5_0/DrawFrame.xpm +%%DATADIR%%/icons/1_5_0/DrawFreeLine.png +%%DATADIR%%/icons/1_5_0/DrawImageFrame.xpm +%%DATADIR%%/icons/1_5_0/DrawLatexFrame.xpm +%%DATADIR%%/icons/1_5_0/DrawPolylineFrame.xpm +%%DATADIR%%/icons/1_5_0/DrawTable.xpm +%%DATADIR%%/icons/1_5_0/DrawTextFrame.xpm +%%DATADIR%%/icons/1_5_0/Editm.xpm +%%DATADIR%%/icons/1_5_0/Editm16.png +%%DATADIR%%/icons/1_5_0/HandC.xpm +%%DATADIR%%/icons/1_5_0/Hoch.xpm +%%DATADIR%%/icons/1_5_0/Kapital.xpm +%%DATADIR%%/icons/1_5_0/Kern.xpm +%%DATADIR%%/icons/1_5_0/Kreise.xpm +%%DATADIR%%/icons/1_5_0/Kreuz.xpm +%%DATADIR%%/icons/1_5_0/LinkTextFrame.png +%%DATADIR%%/icons/1_5_0/Lock.xpm +%%DATADIR%%/icons/1_5_0/Lupe.xpm +%%DATADIR%%/icons/1_5_0/LupeZ.xpm +%%DATADIR%%/icons/1_5_0/LupeZm.xpm +%%DATADIR%%/icons/1_5_0/MiterJoin.png +%%DATADIR%%/icons/1_5_0/MoveAsym.png +%%DATADIR%%/icons/1_5_0/MoveKontrol.png +%%DATADIR%%/icons/1_5_0/MoveNode.png +%%DATADIR%%/icons/1_5_0/MoveSym.png +%%DATADIR%%/icons/1_5_0/NoPrint.png +%%DATADIR%%/icons/1_5_0/PolyCut.png +%%DATADIR%%/icons/1_5_0/Reset1Node.png +%%DATADIR%%/icons/1_5_0/ResetNode.png +%%DATADIR%%/icons/1_5_0/Revers.png +%%DATADIR%%/icons/1_5_0/Rotieren2.png +%%DATADIR%%/icons/1_5_0/Rotieren2.xpm +%%DATADIR%%/icons/1_5_0/RoundCap.png +%%DATADIR%%/icons/1_5_0/RoundJoin.png +%%DATADIR%%/icons/1_5_0/Spacing.xpm +%%DATADIR%%/icons/1_5_0/Splash.png +%%DATADIR%%/icons/1_5_0/Split.png +%%DATADIR%%/icons/1_5_0/SquareCap.png +%%DATADIR%%/icons/1_5_0/Stift.xpm +%%DATADIR%%/icons/1_5_0/Stift16.xpm +%%DATADIR%%/icons/1_5_0/Strike.xpm +%%DATADIR%%/icons/1_5_0/Tief.xpm +%%DATADIR%%/icons/1_5_0/Unlock.xpm +%%DATADIR%%/icons/1_5_0/Unter.xpm +%%DATADIR%%/icons/1_5_0/Winkel.xpm +%%DATADIR%%/icons/1_5_0/Zeichen.xpm +%%DATADIR%%/icons/1_5_0/above.png +%%DATADIR%%/icons/1_5_0/acroread16.png +%%DATADIR%%/icons/1_5_0/acroread22.png +%%DATADIR%%/icons/1_5_0/acroread32.png +%%DATADIR%%/icons/1_5_0/alert.png +%%DATADIR%%/icons/1_5_0/below.png +%%DATADIR%%/icons/1_5_0/beziertool.png +%%DATADIR%%/icons/1_5_0/beziertool16.png +%%DATADIR%%/icons/1_5_0/blend.png +%%DATADIR%%/icons/1_5_0/blend_16.png +%%DATADIR%%/icons/1_5_0/blend_22.png +%%DATADIR%%/icons/1_5_0/chain-closed.png +%%DATADIR%%/icons/1_5_0/chain-open.png +%%DATADIR%%/icons/1_5_0/charset.png +%%DATADIR%%/icons/1_5_0/checkdoc.png +%%DATADIR%%/icons/1_5_0/checkdoc_16.png +%%DATADIR%%/icons/1_5_0/clear_right.png +%%DATADIR%%/icons/1_5_0/cmsOff.png +%%DATADIR%%/icons/1_5_0/cmsOn.png +%%DATADIR%%/icons/1_5_0/cmyk.png +%%DATADIR%%/icons/1_5_0/colorpicker.png +%%DATADIR%%/icons/1_5_0/colorpickercursor.png +%%DATADIR%%/icons/1_5_0/compfile.png +%%DATADIR%%/icons/1_5_0/compfile16.png +%%DATADIR%%/icons/1_5_0/configure.png +%%DATADIR%%/icons/1_5_0/crop.png +%%DATADIR%%/icons/1_5_0/curve.png +%%DATADIR%%/icons/1_5_0/curvebezier.png +%%DATADIR%%/icons/1_5_0/curvelinear.png +%%DATADIR%%/icons/1_5_0/dist.png +%%DATADIR%%/icons/1_5_0/dist22.png +%%DATADIR%%/icons/1_5_0/doc.png +%%DATADIR%%/icons/1_5_0/docattributes.png +%%DATADIR%%/icons/1_5_0/docattributes_16.png +%%DATADIR%%/icons/1_5_0/document2.png +%%DATADIR%%/icons/1_5_0/documentinfo.png +%%DATADIR%%/icons/1_5_0/documentinfo32.png +%%DATADIR%%/icons/1_5_0/dragpix.png +%%DATADIR%%/icons/1_5_0/drawcalligraphy.png +%%DATADIR%%/icons/1_5_0/drawframe.png +%%DATADIR%%/icons/1_5_0/drawimageframe.png +%%DATADIR%%/icons/1_5_0/drawlatexframe.png +%%DATADIR%%/icons/1_5_0/drawpolyline.png +%%DATADIR%%/icons/1_5_0/drawtable.png +%%DATADIR%%/icons/1_5_0/drawtextframe.png +%%DATADIR%%/icons/1_5_0/ellipsis.png +%%DATADIR%%/icons/1_5_0/exit.png +%%DATADIR%%/icons/1_5_0/exit22.png +%%DATADIR%%/icons/1_5_0/expand.png +%%DATADIR%%/icons/1_5_0/externaltools.png +%%DATADIR%%/icons/1_5_0/find.png +%%DATADIR%%/icons/1_5_0/find16.png +%%DATADIR%%/icons/1_5_0/firstline.png +%%DATADIR%%/icons/1_5_0/flow-bounding.png +%%DATADIR%%/icons/1_5_0/flow-contour.png +%%DATADIR%%/icons/1_5_0/flow-frame.png +%%DATADIR%%/icons/1_5_0/flow-none.png +%%DATADIR%%/icons/1_5_0/folder.png +%%DATADIR%%/icons/1_5_0/font.png +%%DATADIR%%/icons/1_5_0/font_otf.png +%%DATADIR%%/icons/1_5_0/font_otf16.png +%%DATADIR%%/icons/1_5_0/font_subst16.png +%%DATADIR%%/icons/1_5_0/font_truetype.png +%%DATADIR%%/icons/1_5_0/font_truetype16.png +%%DATADIR%%/icons/1_5_0/font_type1.png +%%DATADIR%%/icons/1_5_0/font_type1_16.png +%%DATADIR%%/icons/1_5_0/framenoresize.png +%%DATADIR%%/icons/1_5_0/frameresize.png +%%DATADIR%%/icons/1_5_0/gear_16.png +%%DATADIR%%/icons/1_5_0/gear_22.png +%%DATADIR%%/icons/1_5_0/goto.png +%%DATADIR%%/icons/1_5_0/goto16.png +%%DATADIR%%/icons/1_5_0/group.png +%%DATADIR%%/icons/1_5_0/guides.png +%%DATADIR%%/icons/1_5_0/handc.png +%%DATADIR%%/icons/1_5_0/hmirror.png +%%DATADIR%%/icons/1_5_0/hyphenate.png +%%DATADIR%%/icons/1_5_0/invert.png +%%DATADIR%%/icons/1_5_0/irreg.png +%%DATADIR%%/icons/1_5_0/key_bindings.png +%%DATADIR%%/icons/1_5_0/lab.png +%%DATADIR%%/icons/1_5_0/launch.png +%%DATADIR%%/icons/1_5_0/launch16.png +%%DATADIR%%/icons/1_5_0/layer-outline.png +%%DATADIR%%/icons/1_5_0/leftindent.png +%%DATADIR%%/icons/1_5_0/linespacing.png +%%DATADIR%%/icons/1_5_0/linespacing2.png +%%DATADIR%%/icons/1_5_0/locked.png +%%DATADIR%%/icons/1_5_0/lower-to-bottom.png +%%DATADIR%%/icons/1_5_0/lower.png +%%DATADIR%%/icons/1_5_0/lupe.png +%%DATADIR%%/icons/1_5_0/lupez.png +%%DATADIR%%/icons/1_5_0/lupezm.png +%%DATADIR%%/icons/1_5_0/misc.png +%%DATADIR%%/icons/1_5_0/misc_16.png +%%DATADIR%%/icons/1_5_0/mover.png +%%DATADIR%%/icons/1_5_0/noicon.xpm +%%DATADIR%%/icons/1_5_0/ok.png +%%DATADIR%%/icons/1_5_0/ok22.png +%%DATADIR%%/icons/1_5_0/ooo_draw.png +%%DATADIR%%/icons/1_5_0/ooo_writer.png +%%DATADIR%%/icons/1_5_0/outlined.png +%%DATADIR%%/icons/1_5_0/pdf.png +%%DATADIR%%/icons/1_5_0/penciladd.png +%%DATADIR%%/icons/1_5_0/pencilsub.png +%%DATADIR%%/icons/1_5_0/plugins.png +%%DATADIR%%/icons/1_5_0/plugins_16.png +%%DATADIR%%/icons/1_5_0/postscript.png +%%DATADIR%%/icons/1_5_0/previewOff.png +%%DATADIR%%/icons/1_5_0/previewOn.png +%%DATADIR%%/icons/1_5_0/printer.png +%%DATADIR%%/icons/1_5_0/python.png +%%DATADIR%%/icons/1_5_0/python_16.png +%%DATADIR%%/icons/1_5_0/raise-to-top.png +%%DATADIR%%/icons/1_5_0/raise.png +%%DATADIR%%/icons/1_5_0/register.png +%%DATADIR%%/icons/1_5_0/reload.png +%%DATADIR%%/icons/1_5_0/reload16.png +%%DATADIR%%/icons/1_5_0/revert.png +%%DATADIR%%/icons/1_5_0/rgb.png +%%DATADIR%%/icons/1_5_0/rightindent.png +%%DATADIR%%/icons/1_5_0/rotate_ccw.png +%%DATADIR%%/icons/1_5_0/rotate_cw.png +%%DATADIR%%/icons/1_5_0/scrap.png +%%DATADIR%%/icons/1_5_0/scrap_16.png +%%DATADIR%%/icons/1_5_0/screen.png +%%DATADIR%%/icons/1_5_0/scribus.png +%%DATADIR%%/icons/1_5_0/scribus16.png +%%DATADIR%%/icons/1_5_0/scribus_logo.png +%%DATADIR%%/icons/1_5_0/scribus_splash.png +%%DATADIR%%/icons/1_5_0/scribusdoc.png +%%DATADIR%%/icons/1_5_0/scribusdoc16.png +%%DATADIR%%/icons/1_5_0/select_column.png +%%DATADIR%%/icons/1_5_0/select_row.png +%%DATADIR%%/icons/1_5_0/shade.png +%%DATADIR%%/icons/1_5_0/shadow.png +%%DATADIR%%/icons/1_5_0/shortwords.png +%%DATADIR%%/icons/1_5_0/shortwords_16.png +%%DATADIR%%/icons/1_5_0/signature_16.png +%%DATADIR%%/icons/1_5_0/signature_22.png +%%DATADIR%%/icons/1_5_0/spacewidth.png +%%DATADIR%%/icons/1_5_0/spiral.png +%%DATADIR%%/icons/1_5_0/spline.png +%%DATADIR%%/icons/1_5_0/spline16.png +%%DATADIR%%/icons/1_5_0/spot.png +%%DATADIR%%/icons/1_5_0/stylesheet/down_arrow.png +%%DATADIR%%/icons/1_5_0/tab.png +%%DATADIR%%/icons/1_5_0/tabtocindex.png +%%DATADIR%%/icons/1_5_0/tabtocindex_16.png +%%DATADIR%%/icons/1_5_0/testfill.png +%%DATADIR%%/icons/1_5_0/textbase.png +%%DATADIR%%/icons/1_5_0/textkern.png +%%DATADIR%%/icons/1_5_0/textscaleh.png +%%DATADIR%%/icons/1_5_0/textscalev.png +%%DATADIR%%/icons/1_5_0/tools.png +%%DATADIR%%/icons/1_5_0/tools_16.png +%%DATADIR%%/icons/1_5_0/trashcan.png +%%DATADIR%%/icons/1_5_0/trashcan2.png +%%DATADIR%%/icons/1_5_0/triangle.png +%%DATADIR%%/icons/1_5_0/txt.png +%%DATADIR%%/icons/1_5_0/typography.png +%%DATADIR%%/icons/1_5_0/u_align.png +%%DATADIR%%/icons/1_5_0/u_arrow.png +%%DATADIR%%/icons/1_5_0/u_create.png +%%DATADIR%%/icons/1_5_0/u_cut.png +%%DATADIR%%/icons/1_5_0/u_delete.png +%%DATADIR%%/icons/1_5_0/u_disableprint.png +%%DATADIR%%/icons/1_5_0/u_enableprint.png +%%DATADIR%%/icons/1_5_0/u_eps.png +%%DATADIR%%/icons/1_5_0/u_fill.png +%%DATADIR%%/icons/1_5_0/u_fliph.png +%%DATADIR%%/icons/1_5_0/u_flipv.png +%%DATADIR%%/icons/1_5_0/u_font.png +%%DATADIR%%/icons/1_5_0/u_group.png +%%DATADIR%%/icons/1_5_0/u_line.png +%%DATADIR%%/icons/1_5_0/u_lock.png +%%DATADIR%%/icons/1_5_0/u_margins.png +%%DATADIR%%/icons/1_5_0/u_margins_locked.png +%%DATADIR%%/icons/1_5_0/u_move.png +%%DATADIR%%/icons/1_5_0/u_multiple.png +%%DATADIR%%/icons/1_5_0/u_redo.png +%%DATADIR%%/icons/1_5_0/u_redo16.png +%%DATADIR%%/icons/1_5_0/u_resize.png +%%DATADIR%%/icons/1_5_0/u_rotate.png +%%DATADIR%%/icons/1_5_0/u_scale_image.png +%%DATADIR%%/icons/1_5_0/u_shade.png +%%DATADIR%%/icons/1_5_0/u_shape.png +%%DATADIR%%/icons/1_5_0/u_svg.png +%%DATADIR%%/icons/1_5_0/u_transp.png +%%DATADIR%%/icons/1_5_0/u_undo.png +%%DATADIR%%/icons/1_5_0/u_undo16.png +%%DATADIR%%/icons/1_5_0/u_unlock.png +%%DATADIR%%/icons/1_5_0/ungroup.png +%%DATADIR%%/icons/1_5_0/unlock.png +%%DATADIR%%/icons/1_5_0/vectorgfx.png +%%DATADIR%%/icons/1_5_0/view.png +%%DATADIR%%/icons/1_5_0/viewmag1.png +%%DATADIR%%/icons/1_5_0/viewmagin.png +%%DATADIR%%/icons/1_5_0/viewmagout.png +%%DATADIR%%/icons/1_5_0/vmirror.png +%%DATADIR%%/icons/1_5_0/vpl.png +%%DATADIR%%/icons/1_5_0/wizard.png +%%DATADIR%%/icons/1_5_0/wizard16.png +%%DATADIR%%/icons/1_5_0/wordsOnly.png +%%DATADIR%%/icons/1_5_0/zeichen.png +%%DATADIR%%/icons/1_5_1.xml +%%DATADIR%%/icons/1_5_1/16/accessories-text-editor.png +%%DATADIR%%/icons/1_5_1/16/annot3d.png +%%DATADIR%%/icons/1_5_1/16/checkbox.png +%%DATADIR%%/icons/1_5_1/16/close.png +%%DATADIR%%/icons/1_5_1/16/color-fill.png +%%DATADIR%%/icons/1_5_1/16/color-picker.png +%%DATADIR%%/icons/1_5_1/16/color-stroke.png +%%DATADIR%%/icons/1_5_1/16/combobox.png +%%DATADIR%%/icons/1_5_1/16/configure.png +%%DATADIR%%/icons/1_5_1/16/delete-table-columns.png +%%DATADIR%%/icons/1_5_1/16/delete-table-rows.png +%%DATADIR%%/icons/1_5_1/16/document-new.png +%%DATADIR%%/icons/1_5_1/16/document-open.png +%%DATADIR%%/icons/1_5_1/16/document-print-preview.png +%%DATADIR%%/icons/1_5_1/16/document-print.png +%%DATADIR%%/icons/1_5_1/16/document-properties.png +%%DATADIR%%/icons/1_5_1/16/document-save-as.png +%%DATADIR%%/icons/1_5_1/16/document-save.png +%%DATADIR%%/icons/1_5_1/16/draw-arc.png +%%DATADIR%%/icons/1_5_1/16/draw-arrow-back.png +%%DATADIR%%/icons/1_5_1/16/draw-arrow-down.png +%%DATADIR%%/icons/1_5_1/16/draw-arrow-forward.png +%%DATADIR%%/icons/1_5_1/16/draw-arrow-up.png +%%DATADIR%%/icons/1_5_1/16/draw-bezier-curves.png +%%DATADIR%%/icons/1_5_1/16/draw-calligraphic.png +%%DATADIR%%/icons/1_5_1/16/draw-cross.png +%%DATADIR%%/icons/1_5_1/16/draw-donut.png +%%DATADIR%%/icons/1_5_1/16/draw-ellipse.png +%%DATADIR%%/icons/1_5_1/16/draw-freehand.png +%%DATADIR%%/icons/1_5_1/16/draw-halfcircle1.png +%%DATADIR%%/icons/1_5_1/16/draw-halfcircle2.png +%%DATADIR%%/icons/1_5_1/16/draw-halfcircle3.png +%%DATADIR%%/icons/1_5_1/16/draw-halfcircle4.png +%%DATADIR%%/icons/1_5_1/16/draw-path.png +%%DATADIR%%/icons/1_5_1/16/draw-polygon.png +%%DATADIR%%/icons/1_5_1/16/draw-polyline.png +%%DATADIR%%/icons/1_5_1/16/draw-rectangle.png +%%DATADIR%%/icons/1_5_1/16/draw-spiral.png +%%DATADIR%%/icons/1_5_1/16/draw-square-inverted-corners.png +%%DATADIR%%/icons/1_5_1/16/draw-star.png +%%DATADIR%%/icons/1_5_1/16/draw-text.png +%%DATADIR%%/icons/1_5_1/16/draw-triangle.png +%%DATADIR%%/icons/1_5_1/16/draw-triangle1.png +%%DATADIR%%/icons/1_5_1/16/draw-triangle2.png +%%DATADIR%%/icons/1_5_1/16/draw-triangle3.png +%%DATADIR%%/icons/1_5_1/16/draw-triangle4.png +%%DATADIR%%/icons/1_5_1/16/edit-clear.png +%%DATADIR%%/icons/1_5_1/16/edit-copy.png +%%DATADIR%%/icons/1_5_1/16/edit-cut.png +%%DATADIR%%/icons/1_5_1/16/edit-delete.png +%%DATADIR%%/icons/1_5_1/16/edit-find-replace.png +%%DATADIR%%/icons/1_5_1/16/edit-guides.png +%%DATADIR%%/icons/1_5_1/16/edit-paste.png +%%DATADIR%%/icons/1_5_1/16/edit-redo.png +%%DATADIR%%/icons/1_5_1/16/edit-select-all.png +%%DATADIR%%/icons/1_5_1/16/edit-undo.png +%%DATADIR%%/icons/1_5_1/16/editdoc.png +%%DATADIR%%/icons/1_5_1/16/exit.png +%%DATADIR%%/icons/1_5_1/16/flip-object-horizontal.png +%%DATADIR%%/icons/1_5_1/16/flip-object-vertical.png +%%DATADIR%%/icons/1_5_1/16/folder.png +%%DATADIR%%/icons/1_5_1/16/format-justify-center.png +%%DATADIR%%/icons/1_5_1/16/format-justify-fill-block-right.png +%%DATADIR%%/icons/1_5_1/16/format-justify-fill-block.png +%%DATADIR%%/icons/1_5_1/16/format-justify-fill.png +%%DATADIR%%/icons/1_5_1/16/format-justify-left.png +%%DATADIR%%/icons/1_5_1/16/format-justify-right.png +%%DATADIR%%/icons/1_5_1/16/go-bottom.png +%%DATADIR%%/icons/1_5_1/16/go-down.png +%%DATADIR%%/icons/1_5_1/16/go-first.png +%%DATADIR%%/icons/1_5_1/16/go-home.png +%%DATADIR%%/icons/1_5_1/16/go-last.png +%%DATADIR%%/icons/1_5_1/16/go-next.png +%%DATADIR%%/icons/1_5_1/16/go-previous.png +%%DATADIR%%/icons/1_5_1/16/go-top.png +%%DATADIR%%/icons/1_5_1/16/go-up.png +%%DATADIR%%/icons/1_5_1/16/help-browser.png +%%DATADIR%%/icons/1_5_1/16/image-x-generic.png +%%DATADIR%%/icons/1_5_1/16/information.png +%%DATADIR%%/icons/1_5_1/16/insert-barcode.png +%%DATADIR%%/icons/1_5_1/16/insert-button.png +%%DATADIR%%/icons/1_5_1/16/insert-image.png +%%DATADIR%%/icons/1_5_1/16/insert-renderframe.png +%%DATADIR%%/icons/1_5_1/16/insert-table-columns.png +%%DATADIR%%/icons/1_5_1/16/insert-table-rows.png +%%DATADIR%%/icons/1_5_1/16/insert-table.png +%%DATADIR%%/icons/1_5_1/16/insert-text-frame.png +%%DATADIR%%/icons/1_5_1/16/layer-flow-around.png +%%DATADIR%%/icons/1_5_1/16/list-add.png +%%DATADIR%%/icons/1_5_1/16/list-box.png +%%DATADIR%%/icons/1_5_1/16/list-remove.png +%%DATADIR%%/icons/1_5_1/16/lock-unlocked.png +%%DATADIR%%/icons/1_5_1/16/lock.png +%%DATADIR%%/icons/1_5_1/16/measure.png +%%DATADIR%%/icons/1_5_1/16/merge-table-cells.png +%%DATADIR%%/icons/1_5_1/16/page-3fold.png +%%DATADIR%%/icons/1_5_1/16/page-4fold.png +%%DATADIR%%/icons/1_5_1/16/page-doublesided.png +%%DATADIR%%/icons/1_5_1/16/page-simple.png +%%DATADIR%%/icons/1_5_1/16/pdf-annotations.png +%%DATADIR%%/icons/1_5_1/16/pointer.png +%%DATADIR%%/icons/1_5_1/16/preferences-desktop-font.png +%%DATADIR%%/icons/1_5_1/16/preferences-desktop-keyboard-shortcuts.png +%%DATADIR%%/icons/1_5_1/16/preflight-verifier.png +%%DATADIR%%/icons/1_5_1/16/printer.png +%%DATADIR%%/icons/1_5_1/16/radiobutton.png +%%DATADIR%%/icons/1_5_1/16/scale.png +%%DATADIR%%/icons/1_5_1/16/show-object.png +%%DATADIR%%/icons/1_5_1/16/split-table-cells.png +%%DATADIR%%/icons/1_5_1/16/story-editor.png +%%DATADIR%%/icons/1_5_1/16/stroke-cap-butt.png +%%DATADIR%%/icons/1_5_1/16/stroke-cap-round.png +%%DATADIR%%/icons/1_5_1/16/stroke-cap-square.png +%%DATADIR%%/icons/1_5_1/16/stroke-join-bevel.png +%%DATADIR%%/icons/1_5_1/16/stroke-join-miter.png +%%DATADIR%%/icons/1_5_1/16/stroke-join-round.png +%%DATADIR%%/icons/1_5_1/16/system-file-manager.png +%%DATADIR%%/icons/1_5_1/16/text-direction-ltr.png +%%DATADIR%%/icons/1_5_1/16/text-direction-rtl.png +%%DATADIR%%/icons/1_5_1/16/text-field.png +%%DATADIR%%/icons/1_5_1/16/text-frame-link.png +%%DATADIR%%/icons/1_5_1/16/text-frame-unlink.png +%%DATADIR%%/icons/1_5_1/16/transform-rotate.png +%%DATADIR%%/icons/1_5_1/16/video-display.png +%%DATADIR%%/icons/1_5_1/16/zoom-in.png +%%DATADIR%%/icons/1_5_1/16/zoom-original.png +%%DATADIR%%/icons/1_5_1/16/zoom-out.png +%%DATADIR%%/icons/1_5_1/16/zoom.png +%%DATADIR%%/icons/1_5_1/22/align-horizontal-center.png +%%DATADIR%%/icons/1_5_1/22/align-horizontal-left-out.png +%%DATADIR%%/icons/1_5_1/22/align-horizontal-left.png +%%DATADIR%%/icons/1_5_1/22/align-horizontal-right-out.png +%%DATADIR%%/icons/1_5_1/22/align-horizontal-right.png +%%DATADIR%%/icons/1_5_1/22/align-vertical-bottom-out.png +%%DATADIR%%/icons/1_5_1/22/align-vertical-bottom.png +%%DATADIR%%/icons/1_5_1/22/align-vertical-center.png +%%DATADIR%%/icons/1_5_1/22/align-vertical-top-out.png +%%DATADIR%%/icons/1_5_1/22/align-vertical-top.png +%%DATADIR%%/icons/1_5_1/22/annot3d.png +%%DATADIR%%/icons/1_5_1/22/checkbox.png +%%DATADIR%%/icons/1_5_1/22/close.png +%%DATADIR%%/icons/1_5_1/22/color-picker.png +%%DATADIR%%/icons/1_5_1/22/combobox.png +%%DATADIR%%/icons/1_5_1/22/delete-table-columns.png +%%DATADIR%%/icons/1_5_1/22/delete-table-rows.png +%%DATADIR%%/icons/1_5_1/22/dialog-error.png +%%DATADIR%%/icons/1_5_1/22/dialog-warning.png +%%DATADIR%%/icons/1_5_1/22/distribute-horizontal-center.png +%%DATADIR%%/icons/1_5_1/22/distribute-horizontal-equal.png +%%DATADIR%%/icons/1_5_1/22/distribute-horizontal-left.png +%%DATADIR%%/icons/1_5_1/22/distribute-horizontal-margin.png +%%DATADIR%%/icons/1_5_1/22/distribute-horizontal-page.png +%%DATADIR%%/icons/1_5_1/22/distribute-horizontal-right.png +%%DATADIR%%/icons/1_5_1/22/distribute-horizontal-x.png +%%DATADIR%%/icons/1_5_1/22/distribute-vertical-bottom.png +%%DATADIR%%/icons/1_5_1/22/distribute-vertical-center.png +%%DATADIR%%/icons/1_5_1/22/distribute-vertical-equal.png +%%DATADIR%%/icons/1_5_1/22/distribute-vertical-margin.png +%%DATADIR%%/icons/1_5_1/22/distribute-vertical-page.png +%%DATADIR%%/icons/1_5_1/22/distribute-vertical-top.png +%%DATADIR%%/icons/1_5_1/22/distribute-vertical-y.png +%%DATADIR%%/icons/1_5_1/22/document-new.png +%%DATADIR%%/icons/1_5_1/22/document-open.png +%%DATADIR%%/icons/1_5_1/22/document-print-preview.png +%%DATADIR%%/icons/1_5_1/22/document-print.png +%%DATADIR%%/icons/1_5_1/22/document-properties.png +%%DATADIR%%/icons/1_5_1/22/document-save-as.png +%%DATADIR%%/icons/1_5_1/22/document-save.png +%%DATADIR%%/icons/1_5_1/22/draw-arc.png +%%DATADIR%%/icons/1_5_1/22/draw-calligraphic.png +%%DATADIR%%/icons/1_5_1/22/draw-freehand.png +%%DATADIR%%/icons/1_5_1/22/draw-path.png +%%DATADIR%%/icons/1_5_1/22/draw-polygon.png +%%DATADIR%%/icons/1_5_1/22/draw-rectangle.png +%%DATADIR%%/icons/1_5_1/22/draw-spiral.png +%%DATADIR%%/icons/1_5_1/22/draw-star.png +%%DATADIR%%/icons/1_5_1/22/edit-copy.png +%%DATADIR%%/icons/1_5_1/22/edit-cut.png +%%DATADIR%%/icons/1_5_1/22/edit-delete.png +%%DATADIR%%/icons/1_5_1/22/edit-find-replace.png +%%DATADIR%%/icons/1_5_1/22/edit-paste.png +%%DATADIR%%/icons/1_5_1/22/edit-redo.png +%%DATADIR%%/icons/1_5_1/22/edit-undo.png +%%DATADIR%%/icons/1_5_1/22/exit.png +%%DATADIR%%/icons/1_5_1/22/folder.png +%%DATADIR%%/icons/1_5_1/22/go-bottom.png +%%DATADIR%%/icons/1_5_1/22/go-down.png +%%DATADIR%%/icons/1_5_1/22/go-next.png +%%DATADIR%%/icons/1_5_1/22/go-previous.png +%%DATADIR%%/icons/1_5_1/22/go-top.png +%%DATADIR%%/icons/1_5_1/22/go-up.png +%%DATADIR%%/icons/1_5_1/22/insert-barcode.png +%%DATADIR%%/icons/1_5_1/22/insert-button.png +%%DATADIR%%/icons/1_5_1/22/insert-image.png +%%DATADIR%%/icons/1_5_1/22/insert-latex.png +%%DATADIR%%/icons/1_5_1/22/insert-renderframe.png +%%DATADIR%%/icons/1_5_1/22/insert-table-columns.png +%%DATADIR%%/icons/1_5_1/22/insert-table-rows.png +%%DATADIR%%/icons/1_5_1/22/insert-table.png +%%DATADIR%%/icons/1_5_1/22/insert-text-frame.png +%%DATADIR%%/icons/1_5_1/22/list-box.png +%%DATADIR%%/icons/1_5_1/22/measure.png +%%DATADIR%%/icons/1_5_1/22/merge-table-cells.png +%%DATADIR%%/icons/1_5_1/22/pdf-annotations.png +%%DATADIR%%/icons/1_5_1/22/pointer.png +%%DATADIR%%/icons/1_5_1/22/preflight-verifier.png +%%DATADIR%%/icons/1_5_1/22/radiobutton.png +%%DATADIR%%/icons/1_5_1/22/split-table-cells.png +%%DATADIR%%/icons/1_5_1/22/story-editor.png +%%DATADIR%%/icons/1_5_1/22/swap-left.png +%%DATADIR%%/icons/1_5_1/22/swap-right.png +%%DATADIR%%/icons/1_5_1/22/text-field.png +%%DATADIR%%/icons/1_5_1/22/text-frame-link.png +%%DATADIR%%/icons/1_5_1/22/text-frame-unlink.png +%%DATADIR%%/icons/1_5_1/22/transform-crop-and-resize.png +%%DATADIR%%/icons/1_5_1/22/transform-rotate.png +%%DATADIR%%/icons/1_5_1/22/transform-shear-down.png +%%DATADIR%%/icons/1_5_1/22/transform-shear-left.png +%%DATADIR%%/icons/1_5_1/22/transform-shear-right.png +%%DATADIR%%/icons/1_5_1/22/transform-shear-up.png +%%DATADIR%%/icons/1_5_1/22/zoom-in.png +%%DATADIR%%/icons/1_5_1/22/zoom-original.png +%%DATADIR%%/icons/1_5_1/22/zoom-out.png +%%DATADIR%%/icons/1_5_1/22/zoom.png +%%DATADIR%%/icons/1_5_1/32/insert-renderframe.png +%%DATADIR%%/icons/1_5_1/32/page-3fold.png +%%DATADIR%%/icons/1_5_1/32/page-4fold.png +%%DATADIR%%/icons/1_5_1/32/page-doublesided.png +%%DATADIR%%/icons/1_5_1/32/page-simple.png +%%DATADIR%%/icons/1_5_1/AddNode.png +%%DATADIR%%/icons/1_5_1/AllCaps.png +%%DATADIR%%/icons/1_5_1/AppIcon.png +%%DATADIR%%/icons/1_5_1/AppIcon2.png +%%DATADIR%%/icons/1_5_1/BezierClose.png +%%DATADIR%%/icons/1_5_1/DeleteNode.png +%%DATADIR%%/icons/1_5_1/Editm.xpm +%%DATADIR%%/icons/1_5_1/Editm16.png +%%DATADIR%%/icons/1_5_1/Hoch.xpm +%%DATADIR%%/icons/1_5_1/Kapital.xpm +%%DATADIR%%/icons/1_5_1/MoveAsym.png +%%DATADIR%%/icons/1_5_1/MoveKontrol.png +%%DATADIR%%/icons/1_5_1/MoveNode.png +%%DATADIR%%/icons/1_5_1/MoveSym.png +%%DATADIR%%/icons/1_5_1/NoPrint.png +%%DATADIR%%/icons/1_5_1/PolyCut.png +%%DATADIR%%/icons/1_5_1/Reset1Node.png +%%DATADIR%%/icons/1_5_1/ResetNode.png +%%DATADIR%%/icons/1_5_1/Revers.png +%%DATADIR%%/icons/1_5_1/Stift.xpm +%%DATADIR%%/icons/1_5_1/Stift16.png +%%DATADIR%%/icons/1_5_1/Stift16.xpm +%%DATADIR%%/icons/1_5_1/Strike.xpm +%%DATADIR%%/icons/1_5_1/Tief.xpm +%%DATADIR%%/icons/1_5_1/Unter.xpm +%%DATADIR%%/icons/1_5_1/Zeichen.png +%%DATADIR%%/icons/1_5_1/Zeichen.xpm +%%DATADIR%%/icons/1_5_1/above.png +%%DATADIR%%/icons/1_5_1/acroread16.png +%%DATADIR%%/icons/1_5_1/acroread22.png +%%DATADIR%%/icons/1_5_1/alert.png +%%DATADIR%%/icons/1_5_1/below.png +%%DATADIR%%/icons/1_5_1/beziertool16.png +%%DATADIR%%/icons/1_5_1/blend_16.png +%%DATADIR%%/icons/1_5_1/chain-closed.png +%%DATADIR%%/icons/1_5_1/chain-open.png +%%DATADIR%%/icons/1_5_1/cmsOff.png +%%DATADIR%%/icons/1_5_1/cmsOn.png +%%DATADIR%%/icons/1_5_1/cmyk.png +%%DATADIR%%/icons/1_5_1/compfile.png +%%DATADIR%%/icons/1_5_1/compfile16.png +%%DATADIR%%/icons/1_5_1/configure.png +%%DATADIR%%/icons/1_5_1/crop.png +%%DATADIR%%/icons/1_5_1/doc.png +%%DATADIR%%/icons/1_5_1/docattributes.png +%%DATADIR%%/icons/1_5_1/docattributes_16.png +%%DATADIR%%/icons/1_5_1/document2.png +%%DATADIR%%/icons/1_5_1/documentinfo.png +%%DATADIR%%/icons/1_5_1/editm.png +%%DATADIR%%/icons/1_5_1/exit.png +%%DATADIR%%/icons/1_5_1/exit22.png +%%DATADIR%%/icons/1_5_1/expand.png +%%DATADIR%%/icons/1_5_1/find.png +%%DATADIR%%/icons/1_5_1/find16.png +%%DATADIR%%/icons/1_5_1/firstline.png +%%DATADIR%%/icons/1_5_1/flow-bounding.png +%%DATADIR%%/icons/1_5_1/flow-contour.png +%%DATADIR%%/icons/1_5_1/flow-frame.png +%%DATADIR%%/icons/1_5_1/flow-none.png +%%DATADIR%%/icons/1_5_1/folder.png +%%DATADIR%%/icons/1_5_1/font_otf16.png +%%DATADIR%%/icons/1_5_1/font_subst16.png +%%DATADIR%%/icons/1_5_1/font_truetype16.png +%%DATADIR%%/icons/1_5_1/font_type1_16.png +%%DATADIR%%/icons/1_5_1/framenoresize.png +%%DATADIR%%/icons/1_5_1/frameresize.png +%%DATADIR%%/icons/1_5_1/gear_16.png +%%DATADIR%%/icons/1_5_1/goto.png +%%DATADIR%%/icons/1_5_1/goto16.png +%%DATADIR%%/icons/1_5_1/group.png +%%DATADIR%%/icons/1_5_1/guides.png +%%DATADIR%%/icons/1_5_1/hmirror.png +%%DATADIR%%/icons/1_5_1/hoch.png +%%DATADIR%%/icons/1_5_1/kapital.png +%%DATADIR%%/icons/1_5_1/layer-outline.png +%%DATADIR%%/icons/1_5_1/leftindent.png +%%DATADIR%%/icons/1_5_1/linespacing2.png +%%DATADIR%%/icons/1_5_1/lupe.png +%%DATADIR%%/icons/1_5_1/lupez.png +%%DATADIR%%/icons/1_5_1/lupezm.png +%%DATADIR%%/icons/1_5_1/misc_16.png +%%DATADIR%%/icons/1_5_1/mover.png +%%DATADIR%%/icons/1_5_1/noicon.png +%%DATADIR%%/icons/1_5_1/noicon.xpm +%%DATADIR%%/icons/1_5_1/ok.png +%%DATADIR%%/icons/1_5_1/ok22.png +%%DATADIR%%/icons/1_5_1/ooo_draw.png +%%DATADIR%%/icons/1_5_1/ooo_writer.png +%%DATADIR%%/icons/1_5_1/outlined.png +%%DATADIR%%/icons/1_5_1/pathexclusion.png +%%DATADIR%%/icons/1_5_1/pathintersection.png +%%DATADIR%%/icons/1_5_1/pathparts.png +%%DATADIR%%/icons/1_5_1/pathsubtraction.png +%%DATADIR%%/icons/1_5_1/pathunite.png +%%DATADIR%%/icons/1_5_1/pdf.png +%%DATADIR%%/icons/1_5_1/penciladd.png +%%DATADIR%%/icons/1_5_1/pencilsub.png +%%DATADIR%%/icons/1_5_1/plugins_16.png +%%DATADIR%%/icons/1_5_1/postscript.png +%%DATADIR%%/icons/1_5_1/previewOff.png +%%DATADIR%%/icons/1_5_1/previewOn.png +%%DATADIR%%/icons/1_5_1/python_16.png +%%DATADIR%%/icons/1_5_1/reload.png +%%DATADIR%%/icons/1_5_1/reload16.png +%%DATADIR%%/icons/1_5_1/revert.png +%%DATADIR%%/icons/1_5_1/rgb.png +%%DATADIR%%/icons/1_5_1/rightindent.png +%%DATADIR%%/icons/1_5_1/rotate_ccw.png +%%DATADIR%%/icons/1_5_1/rotate_cw.png +%%DATADIR%%/icons/1_5_1/scrap_16.png +%%DATADIR%%/icons/1_5_1/scribus.png +%%DATADIR%%/icons/1_5_1/scribus16.png +%%DATADIR%%/icons/1_5_1/scribus_logo.png +%%DATADIR%%/icons/1_5_1/scribus_splash.png +%%DATADIR%%/icons/1_5_1/scribusdoc16.png +%%DATADIR%%/icons/1_5_1/shade.png +%%DATADIR%%/icons/1_5_1/shadow.png +%%DATADIR%%/icons/1_5_1/shortwords_16.png +%%DATADIR%%/icons/1_5_1/signature_16.png +%%DATADIR%%/icons/1_5_1/spacewidth.png +%%DATADIR%%/icons/1_5_1/spline.png +%%DATADIR%%/icons/1_5_1/spline16.png +%%DATADIR%%/icons/1_5_1/stift.png +%%DATADIR%%/icons/1_5_1/strike.png +%%DATADIR%%/icons/1_5_1/stylesheet/down_arrow.png +%%DATADIR%%/icons/1_5_1/tabtocindex_16.png +%%DATADIR%%/icons/1_5_1/textbase.png +%%DATADIR%%/icons/1_5_1/textkern.png +%%DATADIR%%/icons/1_5_1/textscaleh.png +%%DATADIR%%/icons/1_5_1/textscalev.png +%%DATADIR%%/icons/1_5_1/tief.png +%%DATADIR%%/icons/1_5_1/tools_16.png +%%DATADIR%%/icons/1_5_1/transform-crop-and-resize.png +%%DATADIR%%/icons/1_5_1/trashcan.png +%%DATADIR%%/icons/1_5_1/trashcan2.png +%%DATADIR%%/icons/1_5_1/txt.png +%%DATADIR%%/icons/1_5_1/u_group.png +%%DATADIR%%/icons/1_5_1/ungroup.png +%%DATADIR%%/icons/1_5_1/unter.png +%%DATADIR%%/icons/1_5_1/vectorgfx.png +%%DATADIR%%/icons/1_5_1/view.png +%%DATADIR%%/icons/1_5_1/viewmagin.png +%%DATADIR%%/icons/1_5_1/viewmagout.png +%%DATADIR%%/icons/1_5_1/vmirror.png +%%DATADIR%%/icons/1_5_1/wizard.png +%%DATADIR%%/icons/1_5_1/wizard16.png +%%DATADIR%%/icons/1_5_1/wordsOnly.png +%%DATADIR%%/icons/pitr_green_arrows_set_1.svg +%%DATADIR%%/icons/pitr_green_arrows_set_5.svg +%%DATADIR%%/icons/sarxos_Paper_Sheets.svg +%%DATADIR%%/icons/sarxos_Simple_Folder_Seek.svg +%%DATADIR%%/icons/sarxos_Simple_Green_Yellow_Blue_Violet_Folders.svg +%%DATADIR%%/icons/testfill.png +%%DATADIR%%/keysets/icalamus.xml +%%DATADIR%%/keysets/pageplusx3.xml +%%DATADIR%%/keysets/pagestream.xml +%%DATADIR%%/keysets/scribus15.xml +%%DATADIR%%/loremipsum/ar.xml +%%DATADIR%%/loremipsum/cs.xml +%%DATADIR%%/loremipsum/da.xml +%%DATADIR%%/loremipsum/de.xml +%%DATADIR%%/loremipsum/el.xml +%%DATADIR%%/loremipsum/en_GB.xml +%%DATADIR%%/loremipsum/eo.xml +%%DATADIR%%/loremipsum/fi.xml +%%DATADIR%%/loremipsum/fr.xml +%%DATADIR%%/loremipsum/he.xml +%%DATADIR%%/loremipsum/hu.xml +%%DATADIR%%/loremipsum/it.xml +%%DATADIR%%/loremipsum/ja.xml +%%DATADIR%%/loremipsum/la.xml +%%DATADIR%%/loremipsum/lt.xml +%%DATADIR%%/loremipsum/nl.xml +%%DATADIR%%/loremipsum/pt_BR.xml +%%DATADIR%%/loremipsum/ru.xml +%%DATADIR%%/loremipsum/sk.xml +%%DATADIR%%/loremipsum/sl.xml +%%DATADIR%%/plugins/barcode.ps +%%DATADIR%%/plugins/collectionsdb.xml +%%DATADIR%%/plugins/scribus-short-words.rc +%%DATADIR%%/profiles/GenericCMYK.icm +%%DATADIR%%/profiles/GenericCMYK.txt +%%DATADIR%%/profiles/Readme +%%DATADIR%%/profiles/sRGB.icm +%%DATADIR%%/profiles/srgb.license +%%DATADIR%%/qml/qtq_test1.qml +%%DATADIR%%/samples/3columnA4.py +%%DATADIR%%/samples/3columnUSLTR.py +%%DATADIR%%/samples/Calender.py +%%DATADIR%%/samples/ExtractText.py +%%DATADIR%%/samples/Sample1.py +%%DATADIR%%/samples/boilerplate.py +%%DATADIR%%/samples/golden-mean.py +%%DATADIR%%/samples/legende.py +%%DATADIR%%/samples/moins_10_pourcent_group.py +%%DATADIR%%/samples/plus_10_pourcent_group.py +%%DATADIR%%/samples/pochette_cd.py +%%DATADIR%%/samples/quote.py +%%DATADIR%%/samples/sample_db_usage.py +%%DATADIR%%/samples/trait_de_coupe.py +%%DATADIR%%/samples/wordcount.py +%%DATADIR%%/scripts/Autoquote.py +%%DATADIR%%/scripts/Autoquote2.py +%%DATADIR%%/scripts/CalendarWizard.py +%%DATADIR%%/scripts/Caption.py +%%DATADIR%%/scripts/ColorChart.py +%%DATADIR%%/scripts/DirectImageImport.py +%%DATADIR%%/scripts/FontSample.py +%%DATADIR%%/scripts/InfoBox.py +%%DATADIR%%/scripts/Ligatursatz.py +%%DATADIR%%/scripts/color2csv.py +%%DATADIR%%/scripts/csv2color.py +%%DATADIR%%/scripts/importcsv2table.py +%%DATADIR%%/swatches/All_Color_Kit.xml +%%DATADIR%%/swatches/Android_TM.xml +%%DATADIR%%/swatches/Bundesregierung_CMYK.xml +%%DATADIR%%/swatches/Bundesregierung_CMYK_TZ.xml +%%DATADIR%%/swatches/Bundesregierung_HKS.xml +%%DATADIR%%/swatches/CIE-HLC.sbz +%%DATADIR%%/swatches/CIE-LAB.sbz +%%DATADIR%%/swatches/COPYING_RESENE.txt +%%DATADIR%%/swatches/Classic_Kit.xml +%%DATADIR%%/swatches/CrayonTM.xml +%%DATADIR%%/swatches/Creative_Commons_2013.xml +%%DATADIR%%/swatches/Federal_Identity_Program.xml +%%DATADIR%%/swatches/GCMI_Colors.xml +%%DATADIR%%/swatches/Galaxy_Blackbody_Spectrum.xml +%%DATADIR%%/swatches/Galaxy_Color_Directory.xml +%%DATADIR%%/swatches/Galaxy_Color_Emotions.xml +%%DATADIR%%/swatches/Galaxy_Color_Harmonizer.xml +%%DATADIR%%/swatches/Galaxy_Color_Pro.xml +%%DATADIR%%/swatches/Galaxy_Color_Zil.xml +%%DATADIR%%/swatches/Galaxy_Neutrals_and_Rich_Blacks.xml +%%DATADIR%%/swatches/Galaxy_Pocket_Map.xml +%%DATADIR%%/swatches/Galaxy_Visible_Spectrum.xml +%%DATADIR%%/swatches/Gnome.xml +%%DATADIR%%/swatches/Government_UK.xml +%%DATADIR%%/swatches/Inkscape.xml +%%DATADIR%%/swatches/JIS_8721.xml +%%DATADIR%%/swatches/Japanese_Traditional.xml +%%DATADIR%%/swatches/Japanese_Traditional_README.txt +%%DATADIR%%/swatches/LaTeX_Beamer.xml +%%DATADIR%%/swatches/LibreOffice.xml +%%DATADIR%%/swatches/NBS-ISCC_Colors.xml +%%DATADIR%%/swatches/OpenOffice_dot_org_CMYK.xml +%%DATADIR%%/swatches/OpenSUSE.xml +%%DATADIR%%/swatches/Oxygen.xml +%%DATADIR%%/swatches/Resene_BS2660_101.xml +%%DATADIR%%/swatches/Resene_BS5252_2008.xml +%%DATADIR%%/swatches/Resene_Decks_Paths_2009.xml +%%DATADIR%%/swatches/Resene_Heritage_2008.xml +%%DATADIR%%/swatches/Resene_Karen_Walker_2008.xml +%%DATADIR%%/swatches/Resene_KidzColour_2008.xml +%%DATADIR%%/swatches/Resene_Multi-Finish.xml +%%DATADIR%%/swatches/Resene_Summit_Roof_2010.xml +%%DATADIR%%/swatches/Resene_Summit_Roof_systems_2011.xml +%%DATADIR%%/swatches/Resene_TCS_-_Colorwood_2011.xml +%%DATADIR%%/swatches/Resene_TCS_-_Decks_Paths_Driveways_Recreational_Areas_2011.xml +%%DATADIR%%/swatches/Resene_TCS_-_Karen_Walker_2012.xml +%%DATADIR%%/swatches/Resene_TCS_-_KidzColour_2012.xml +%%DATADIR%%/swatches/Resene_TCS_-_The_Range_Whites_and_neutrals_2012.xml +%%DATADIR%%/swatches/Resene_TCS_-_Whites_and_Neutrals_2012.xml +%%DATADIR%%/swatches/Resene_The_Range_2011-12.xml +%%DATADIR%%/swatches/Resene_The_Range_WandN_2010.xml +%%DATADIR%%/swatches/Resene_Woodsman_2008.xml +%%DATADIR%%/swatches/Rijksoverheid_Gestreken.xml +%%DATADIR%%/swatches/Rijksoverheid_Ongestreken.xml +%%DATADIR%%/swatches/SVG.xml +%%DATADIR%%/swatches/Scribus_Basic.xml +%%DATADIR%%/swatches/Scribus_Splash.xml +%%DATADIR%%/swatches/Shades_of_K.xml +%%DATADIR%%/swatches/Standardised_Rock_Colours.xml +%%DATADIR%%/swatches/Tango.xml +%%DATADIR%%/swatches/US_FS_595.xml +%%DATADIR%%/swatches/Ubuntu_CMYK.xml +%%DATADIR%%/swatches/Ubuntu_RGB.xml +%%DATADIR%%/swatches/Wikipedia_RAL_Classic.sbz +%%DATADIR%%/swatches/X11.xml +%%DATADIR%%/swatches/X11Grey.xml +%%DATADIR%%/swatches/Xfig.xml +%%DATADIR%%/templates/Lulu_and_Createspace_6x9_paper_book/Lulu_and_Createspace_6x9_paper_book.png +%%DATADIR%%/templates/Lulu_and_Createspace_6x9_paper_book/Lulu_and_Createspace_6x9_paper_book.sla.gz +%%DATADIR%%/templates/Lulu_and_Createspace_6x9_paper_book/Lulu_and_Createspace_6x9_paper_booktn.png +%%DATADIR%%/templates/Lulu_and_Createspace_6x9_paper_book/Tomato_Clipart.png +%%DATADIR%%/templates/br1/br1.png +%%DATADIR%%/templates/br1/br1.sla.gz +%%DATADIR%%/templates/br1/br1tn.png +%%DATADIR%%/templates/br1/map.jpg +%%DATADIR%%/templates/buscard1/Business_Card_1.png +%%DATADIR%%/templates/buscard1/Business_Card_1tn.png +%%DATADIR%%/templates/buscard1/buscard1.sla.gz +%%DATADIR%%/templates/buscard10/Business_Card_10.png +%%DATADIR%%/templates/buscard10/Business_Card_10tn.png +%%DATADIR%%/templates/buscard10/buscard10.sla.gz +%%DATADIR%%/templates/buscard11/Business_Card_11.png +%%DATADIR%%/templates/buscard11/Business_Card_11tn.png +%%DATADIR%%/templates/buscard11/buscard11.sla.gz +%%DATADIR%%/templates/buscard2/Business_Card_2.png +%%DATADIR%%/templates/buscard2/Business_Card_2tn.png +%%DATADIR%%/templates/buscard2/buscard2.sla.gz +%%DATADIR%%/templates/buscard3/Business_Card_3.png +%%DATADIR%%/templates/buscard3/Business_Card_3tn.png +%%DATADIR%%/templates/buscard3/buscard3.sla.gz +%%DATADIR%%/templates/buscard4/Business_Card_4.png +%%DATADIR%%/templates/buscard4/Business_Card_4tn.png +%%DATADIR%%/templates/buscard4/buscard4.sla.gz +%%DATADIR%%/templates/buscard5/Business_Card_5.png +%%DATADIR%%/templates/buscard5/Business_Card_5tn.png +%%DATADIR%%/templates/buscard5/buscard5.sla.gz +%%DATADIR%%/templates/buscard6/Business_Card_6.png +%%DATADIR%%/templates/buscard6/Business_Card_6tn.png +%%DATADIR%%/templates/buscard6/buscard6.sla.gz +%%DATADIR%%/templates/buscard7/Business_Card_7.png +%%DATADIR%%/templates/buscard7/Business_Card_7tn.png +%%DATADIR%%/templates/buscard7/buscard7.sla.gz +%%DATADIR%%/templates/buscard8/Business_Card_8.png +%%DATADIR%%/templates/buscard8/Business_Card_8tn.png +%%DATADIR%%/templates/buscard8/buscard8.sla.gz +%%DATADIR%%/templates/buscard9/Business_Card_9.png +%%DATADIR%%/templates/buscard9/Business_Card_9tn.png +%%DATADIR%%/templates/buscard9/buscard9.sla.gz +%%DATADIR%%/templates/buscard_coll/Business_Card_Collection.png +%%DATADIR%%/templates/buscard_coll/Business_Card_Collectiontn.png +%%DATADIR%%/templates/buscard_coll/business_card_collection.sla.gz +%%DATADIR%%/templates/cc/Cheat_Cube.png +%%DATADIR%%/templates/cc/Cheat_Cube.sla.gz +%%DATADIR%%/templates/cc/Cheat_Cubetn.png +%%DATADIR%%/templates/cover1/cover1.png +%%DATADIR%%/templates/cover1/cover1.sla.gz +%%DATADIR%%/templates/cover1/cover1tn.png +%%DATADIR%%/templates/cover2/cover2.png +%%DATADIR%%/templates/cover2/cover2.sla.gz +%%DATADIR%%/templates/cover2/cover2tn.png +%%DATADIR%%/templates/cover3/cover3.png +%%DATADIR%%/templates/cover3/cover3.sla.gz +%%DATADIR%%/templates/cover3/cover3tn.png +%%DATADIR%%/templates/cover4/cover4.png +%%DATADIR%%/templates/cover4/cover4.sla.gz +%%DATADIR%%/templates/cover4/cover4tn.png +%%DATADIR%%/templates/cover5/cover5.png +%%DATADIR%%/templates/cover5/cover5.sla.gz +%%DATADIR%%/templates/cover5/cover5tn.png +%%DATADIR%%/templates/grid_br_100x210_l/Brochure_Grid_100x210_L.sla.gz +%%DATADIR%%/templates/grid_br_100x210_l/Brochure_Grid_100x210_mm_Landscape.png +%%DATADIR%%/templates/grid_br_100x210_l/Brochure_Grid_100x210_mm_Landscapetn.png +%%DATADIR%%/templates/grid_br_100x210_p/Brochure_Grid_100x210_P.png +%%DATADIR%%/templates/grid_br_100x210_p/Brochure_Grid_100x210_P.sla.gz +%%DATADIR%%/templates/grid_br_100x210_p/Brochure_Grid_100x210_Ptn.png +%%DATADIR%%/templates/grid_br_375x85_l/Brochure_Grid_375x85_in_Landscape.png +%%DATADIR%%/templates/grid_br_375x85_l/Brochure_Grid_375x85_in_Landscapetn.png +%%DATADIR%%/templates/grid_br_375x85_l/Brochure_Grid_375x85in_L.sla.gz +%%DATADIR%%/templates/grid_br_375x85_p/Brochure_Grid_375x85_in_P.png +%%DATADIR%%/templates/grid_br_375x85_p/Brochure_Grid_375x85_in_Ptn.png +%%DATADIR%%/templates/grid_br_375x85_p/Brochure_Grid_375x85in_P.sla.gz +%%DATADIR%%/templates/grid_br_55x85in_l/Brochure_Grid_55x85_in_L.png +%%DATADIR%%/templates/grid_br_55x85in_l/Brochure_Grid_55x85_in_Ltn.png +%%DATADIR%%/templates/grid_br_55x85in_l/Brochure_Grid_55x85in_L.sla.gz +%%DATADIR%%/templates/grid_br_55x86in_p/Brochure_Grid_55x85in_P.sla.gz +%%DATADIR%%/templates/grid_br_55x86in_p/Brochure_Grid_55x85in_Portraoit.png +%%DATADIR%%/templates/grid_br_55x86in_p/Brochure_Grid_55x85in_Portraoittn.png +%%DATADIR%%/templates/grid_br_975x85_p/Brochure_Grid_975x85_in_P.png +%%DATADIR%%/templates/grid_br_975x85_p/Brochure_Grid_975x85_in_Ptn.png +%%DATADIR%%/templates/grid_br_975x85_p/Brochure_Grid_975x85in_P.sla.gz +%%DATADIR%%/templates/grid_br_975x85in_l/Brochure_Grid_975x85_in_L.png +%%DATADIR%%/templates/grid_br_975x85in_l/Brochure_Grid_975x85_in_Ltn.png +%%DATADIR%%/templates/grid_br_975x85in_l/Brochure_Grid_975x85in_L.sla.gz +%%DATADIR%%/templates/grid_br_a4_l/Brochure_Grid_A4_L.png +%%DATADIR%%/templates/grid_br_a4_l/Brochure_Grid_A4_L.sla.gz +%%DATADIR%%/templates/grid_br_a4_l/Brochure_Grid_A4_Ltn.png +%%DATADIR%%/templates/grid_br_a4_p/Brochure_Grid_A4_P.png +%%DATADIR%%/templates/grid_br_a4_p/Brochure_Grid_A4_P.sla.gz +%%DATADIR%%/templates/grid_br_a4_p/Brochure_Grid_A4_Ptn.png +%%DATADIR%%/templates/grid_br_a5_l/Brochure_Grid_A5_L.png +%%DATADIR%%/templates/grid_br_a5_l/Brochure_Grid_A5_L.sla.gz +%%DATADIR%%/templates/grid_br_a5_l/Brochure_Grid_A5_Ltn.png +%%DATADIR%%/templates/grid_br_a5_p/Brochure_Grid_A5_P.sla.gz +%%DATADIR%%/templates/grid_br_a5_p/Brochure_Grid_A5_Portrait.png +%%DATADIR%%/templates/grid_br_a5_p/Brochure_Grid_A5_Portraittn.png +%%DATADIR%%/templates/grid_br_dinl_l/Brochure_Grid_DIN_LANG_L.png +%%DATADIR%%/templates/grid_br_dinl_l/Brochure_Grid_DIN_LANG_L.sla.gz +%%DATADIR%%/templates/grid_br_dinl_l/Brochure_Grid_DIN_LANG_Ltn.png +%%DATADIR%%/templates/grid_br_dinl_p/Brochure_Grid_DIN_LANG_P.png +%%DATADIR%%/templates/grid_br_dinl_p/Brochure_Grid_DIN_LANG_P.sla.gz +%%DATADIR%%/templates/grid_br_dinl_p/Brochure_Grid_DIN_LANG_Ptn.png +%%DATADIR%%/templates/grid_br_usl_l/Brochure_Grid_USL_L.png +%%DATADIR%%/templates/grid_br_usl_l/Brochure_Grid_USL_L.sla.gz +%%DATADIR%%/templates/grid_br_usl_l/Brochure_Grid_USL_Ltn.png +%%DATADIR%%/templates/grid_poster_a0/Brochure_Grid_USL_P.png +%%DATADIR%%/templates/grid_poster_a0/Brochure_Grid_USL_P.sla.gz +%%DATADIR%%/templates/grid_poster_a0/Brochure_Grid_USL_Ptn.png +%%DATADIR%%/templates/grid_poster_a0/Poster_Grid_A0.png +%%DATADIR%%/templates/grid_poster_a0/Poster_Grid_A0.sla.gz +%%DATADIR%%/templates/grid_poster_a0/Poster_Grid_A0tn.png +%%DATADIR%%/templates/grid_poster_a1/Poster_Grid_A1.png +%%DATADIR%%/templates/grid_poster_a1/Poster_Grid_A1.sla.gz +%%DATADIR%%/templates/grid_poster_a1/Poster_Grid_A1tn.png +%%DATADIR%%/templates/grid_poster_a2/Poster_Grid_A2.png +%%DATADIR%%/templates/grid_poster_a2/Poster_Grid_A2.sla.gz +%%DATADIR%%/templates/grid_poster_a2/Poster_Grid_A2tn.png +%%DATADIR%%/templates/grid_poster_a3/Poster_Grid_A3.png +%%DATADIR%%/templates/grid_poster_a3/Poster_Grid_A3.sla.gz +%%DATADIR%%/templates/grid_poster_a3/Poster_Grid_A3tn.png +%%DATADIR%%/templates/mc/menu_template1.png +%%DATADIR%%/templates/mc/menu_template1.sla.gz +%%DATADIR%%/templates/mc/menu_template1tn.png +%%DATADIR%%/templates/nl1/kites.jpg +%%DATADIR%%/templates/nl1/nl1.png +%%DATADIR%%/templates/nl1/nl1.sla.gz +%%DATADIR%%/templates/nl1/nl1tn.png +%%DATADIR%%/templates/nl2/flowers.jpg +%%DATADIR%%/templates/nl2/nl2.png +%%DATADIR%%/templates/nl2/nl2.sla.gz +%%DATADIR%%/templates/nl2/nl2tn.png +%%DATADIR%%/templates/pres_backgr_1/blue_orange_vector.png +%%DATADIR%%/templates/pres_backgr_1/blue_orange_vector.sla.gz +%%DATADIR%%/templates/pres_backgr_1/blue_orange_vectortn.png +%%DATADIR%%/templates/pres_backgr_2/flood_light.png +%%DATADIR%%/templates/pres_backgr_2/flood_light.sla.gz +%%DATADIR%%/templates/pres_backgr_2/flood_lighttn.png +%%DATADIR%%/templates/pres_backgr_3/glass_ripples.png +%%DATADIR%%/templates/pres_backgr_3/glass_ripples.sla.gz +%%DATADIR%%/templates/pres_backgr_3/glass_ripplestn.png +%%DATADIR%%/templates/pres_backgr_4/Bokeh.png +%%DATADIR%%/templates/pres_backgr_4/Bokehtn.png +%%DATADIR%%/templates/pres_backgr_4/bokeh.sla.gz +%%DATADIR%%/templates/template.ca.xml +%%DATADIR%%/templates/template.de.xml +%%DATADIR%%/templates/template.es.xml +%%DATADIR%%/templates/template.hu.xml +%%DATADIR%%/templates/template.it.xml +%%DATADIR%%/templates/template.xml +%%DATADIR%%/templates/textbased/an_image.jpg +%%DATADIR%%/templates/textbased/author.jpg +%%DATADIR%%/templates/textbased/textbased.png +%%DATADIR%%/templates/textbased/textbased.sla.gz +%%DATADIR%%/templates/textbased/textbasedtn.png +%%DATADIR%%/translations/scribus.af.qm +%%DATADIR%%/translations/scribus.ar.qm +%%DATADIR%%/translations/scribus.be.qm +%%DATADIR%%/translations/scribus.bg.qm +%%DATADIR%%/translations/scribus.br.qm +%%DATADIR%%/translations/scribus.ca.qm +%%DATADIR%%/translations/scribus.cs_CZ.qm +%%DATADIR%%/translations/scribus.cy.qm +%%DATADIR%%/translations/scribus.da_DK.qm +%%DATADIR%%/translations/scribus.de.qm +%%DATADIR%%/translations/scribus.de_1901.qm +%%DATADIR%%/translations/scribus.de_CH.qm +%%DATADIR%%/translations/scribus.el.qm +%%DATADIR%%/translations/scribus.en_AU.qm +%%DATADIR%%/translations/scribus.en_GB.qm +%%DATADIR%%/translations/scribus.en_US.qm +%%DATADIR%%/translations/scribus.eo.qm +%%DATADIR%%/translations/scribus.es_AR.qm +%%DATADIR%%/translations/scribus.es_ES.qm +%%DATADIR%%/translations/scribus.et.qm +%%DATADIR%%/translations/scribus.eu.qm +%%DATADIR%%/translations/scribus.fa_IR.qm +%%DATADIR%%/translations/scribus.fi.qm +%%DATADIR%%/translations/scribus.fr.qm +%%DATADIR%%/translations/scribus.gl.qm +%%DATADIR%%/translations/scribus.he_IL.qm +%%DATADIR%%/translations/scribus.hi_IN.qm +%%DATADIR%%/translations/scribus.hr_HR.qm +%%DATADIR%%/translations/scribus.hu.qm +%%DATADIR%%/translations/scribus.id.qm +%%DATADIR%%/translations/scribus.it.qm +%%DATADIR%%/translations/scribus.ja.qm +%%DATADIR%%/translations/scribus.kab.qm +%%DATADIR%%/translations/scribus.kn_IN.qm +%%DATADIR%%/translations/scribus.ko.qm +%%DATADIR%%/translations/scribus.lt_LT.qm +%%DATADIR%%/translations/scribus.ml.qm +%%DATADIR%%/translations/scribus.mn_MN.qm +%%DATADIR%%/translations/scribus.nb_NO.qm +%%DATADIR%%/translations/scribus.nl.qm +%%DATADIR%%/translations/scribus.oc.qm +%%DATADIR%%/translations/scribus.pl_PL.qm +%%DATADIR%%/translations/scribus.pms.qm +%%DATADIR%%/translations/scribus.pt.qm +%%DATADIR%%/translations/scribus.pt_BR.qm +%%DATADIR%%/translations/scribus.pt_PT.qm +%%DATADIR%%/translations/scribus.ru.qm +%%DATADIR%%/translations/scribus.sa.qm +%%DATADIR%%/translations/scribus.si.qm +%%DATADIR%%/translations/scribus.sk_SK.qm +%%DATADIR%%/translations/scribus.sl.qm +%%DATADIR%%/translations/scribus.so.qm +%%DATADIR%%/translations/scribus.sq.qm +%%DATADIR%%/translations/scribus.sr.qm +%%DATADIR%%/translations/scribus.sv.qm +%%DATADIR%%/translations/scribus.ta.qm +%%DATADIR%%/translations/scribus.te.qm +%%DATADIR%%/translations/scribus.th_TH.qm +%%DATADIR%%/translations/scribus.tr.qm +%%DATADIR%%/translations/scribus.uk.qm +%%DATADIR%%/translations/scribus.zh_CN.qm +%%DATADIR%%/translations/scribus.zh_TW.qm +%%DATADIR%%/unicodenameslist.txt +@dir share/man/de/man1 +@dir share/man/man1 +@dir share/man/pl/man1 diff --git a/russian/p5-Convert-Cyrillic/Makefile b/russian/p5-Convert-Cyrillic/Makefile index ab35c4ac4f8..4f7734e0e69 100644 --- a/russian/p5-Convert-Cyrillic/Makefile +++ b/russian/p5-Convert-Cyrillic/Makefile @@ -12,8 +12,8 @@ DISTNAME= cyrillic-${PORTVERSION} MAINTAINER= pluknet@gmail.com COMMENT= Routines for converting from one Cyrillic charset to another -BUILD_DEPENDS= p5-Unicode-Map8>=0:converters/p5-Unicode-Map8 -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Unicode-Map8>=0:converters/p5-Unicode-Map8 USES= perl5 USE_PERL5= configure diff --git a/russian/p5-Text-Hyphen-RU/Makefile b/russian/p5-Text-Hyphen-RU/Makefile index db9738ea53b..dc5e7766c73 100644 --- a/russian/p5-Text-Hyphen-RU/Makefile +++ b/russian/p5-Text-Hyphen-RU/Makefile @@ -13,8 +13,8 @@ COMMENT= Determine positions for hyphens inside russian words LICENSE= BSD3CLAUSE -BUILD_DEPENDS= p5-Text-Hyphen>=0:textproc/p5-Text-Hyphen -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Text-Hyphen>=0:textproc/p5-Text-Hyphen USE_PERL5= configure USES= perl5 diff --git a/science/Makefile b/science/Makefile index 86d71e024f2..de11a7a9bf7 100644 --- a/science/Makefile +++ b/science/Makefile @@ -276,6 +276,7 @@ SUBDIR += szip SUBDIR += teem SUBDIR += tfel + SUBDIR += tinker SUBDIR += triqs SUBDIR += udunits SUBDIR += v_sim diff --git a/science/PETSc/Makefile b/science/PETSc/Makefile index 76d91cb3f5e..4ea90fd328b 100644 --- a/science/PETSc/Makefile +++ b/science/PETSc/Makefile @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= PETSc -DISTVERSION= 3.9.4 -PORTREVISION= 1 +DISTVERSION= 3.10.1 CATEGORIES= science devel MASTER_SITES= http://ftp.mcs.anl.gov/pub/petsc/release-snapshots/ DISTNAME= ${PORTNAME:tl}-${DISTVERSION} diff --git a/science/PETSc/distinfo b/science/PETSc/distinfo index 2ebbd54b957..93279dc4162 100644 --- a/science/PETSc/distinfo +++ b/science/PETSc/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1536731079 -SHA256 (petsc-3.9.4.tar.gz) = ecc647c9b1ef565a2c113936454c65632eedc1626e0fc99b5a36accb91195a63 -SIZE (petsc-3.9.4.tar.gz) = 29400362 +TIMESTAMP = 1538517416 +SHA256 (petsc-3.10.1.tar.gz) = b6e64ce062113ee0e2e2a6cfffb4d33c085ec91d5bc3afeb33781074aa5a22a5 +SIZE (petsc-3.10.1.tar.gz) = 30858694 diff --git a/science/PETSc/pkg-plist b/science/PETSc/pkg-plist index 34ecb287151..fb528daa862 100644 --- a/science/PETSc/pkg-plist +++ b/science/PETSc/pkg-plist @@ -26,6 +26,7 @@ include/petsc/private/bagimpl.h include/petsc/private/characteristicimpl.h include/petsc/private/dmadaptorimpl.h include/petsc/private/dmdaimpl.h +include/petsc/private/dmfieldimpl.h include/petsc/private/dmforestimpl.h include/petsc/private/dmimpl.h include/petsc/private/dmlabelimpl.h @@ -40,11 +41,18 @@ include/petsc/private/f90impl.h include/petsc/private/fortranimpl.h include/petsc/private/glvisvecimpl.h include/petsc/private/glvisviewerimpl.h -include/petsc/private/hash.h +include/petsc/private/hashmap.h +include/petsc/private/hashmapi.h +include/petsc/private/hashmapij.h +include/petsc/private/hashset.h +include/petsc/private/hashseti.h +include/petsc/private/hashsetij.h +include/petsc/private/hashtable.h include/petsc/private/isimpl.h include/petsc/private/kernels/blockinvert.h include/petsc/private/kernels/blockmatmult.h include/petsc/private/kernels/blocktranspose.h +include/petsc/private/kernels/khash.h include/petsc/private/kernels/petscaxpy.h include/petsc/private/kspimpl.h include/petsc/private/linesearchimpl.h @@ -54,6 +62,7 @@ include/petsc/private/matorderimpl.h include/petsc/private/pcgamgimpl.h include/petsc/private/pcimpl.h include/petsc/private/pcmgimpl.h +include/petsc/private/pcpatchimpl.h include/petsc/private/petscconvestimpl.h include/petsc/private/petscdsimpl.h include/petsc/private/petscfeimpl.h @@ -66,6 +75,9 @@ include/petsc/private/taoimpl.h include/petsc/private/taolinesearchimpl.h include/petsc/private/tsimpl.h include/petsc/private/vecimpl.h +include/petsc/private/vecscatterimpl.h +include/petsc/private/vieweradios2impl.h +include/petsc/private/vieweradiosimpl.h include/petsc/private/viewerimpl.h include/petscao.h include/petscao.mod @@ -92,6 +104,7 @@ include/petscdmdadef.mod include/petscdmdatypes.h include/petscdmdef.mod include/petscdmdefdummy.mod +include/petscdmfield.h include/petscdmforest.h include/petscdmforest.mod include/petscdmforestdef.mod @@ -207,6 +220,7 @@ lib/petsc/conf/petscvariables lib/petsc/conf/reconfigure-arch-%%PYTHON_PLATFORM%%-c-debug.py lib/petsc/conf/rules lib/petsc/conf/test +lib/petsc/conf/test.common lib/petsc/conf/variables libdata/pkgconfig/PETSc.pc %%DATADIR%%/datafiles/matrices/amesos2_test_mat0.mtx @@ -240,6 +254,8 @@ libdata/pkgconfig/PETSc.pc %%DATADIR%%/datafiles/meshes/TwoQuads.exo %%DATADIR%%/datafiles/meshes/annulus-20.exo %%DATADIR%%/datafiles/meshes/blockcylinder-50.exo +%%DATADIR%%/datafiles/meshes/blockcylinder-50.h5 +%%DATADIR%%/datafiles/meshes/blockcylinder-50.xmf %%DATADIR%%/datafiles/meshes/cow.msh %%DATADIR%%/datafiles/meshes/cube_5tets.cas %%DATADIR%%/datafiles/meshes/cube_5tets_ascii.cas @@ -249,6 +265,8 @@ libdata/pkgconfig/PETSc.pc %%DATADIR%%/datafiles/meshes/doublet-tet.msh %%DATADIR%%/datafiles/meshes/grid_c.cgns %%DATADIR%%/datafiles/meshes/horse.ply.bz2 +%%DATADIR%%/datafiles/meshes/hybrid_tetwedge.msh +%%DATADIR%%/datafiles/meshes/hybrid_triquad.msh %%DATADIR%%/datafiles/meshes/sevenside-quad-15.exo %%DATADIR%%/datafiles/meshes/sevenside-quad.exo %%DATADIR%%/datafiles/meshes/sevenside.exo @@ -262,6 +280,7 @@ libdata/pkgconfig/PETSc.pc %%DATADIR%%/datafiles/meshes/square_periodic_bin.msh %%DATADIR%%/datafiles/meshes/square_quad.msh %%DATADIR%%/datafiles/meshes/squaremotor-30.exo +%%DATADIR%%/datafiles/meshes/surfacesphere_bin.msh %%DATADIR%%/datafiles/meshes/texas.msh %%DATADIR%%/datafiles/meshes/tut21.cgns %%DATADIR%%/matlab/@PetscOpenFile/PetscOpenFile.m diff --git a/science/bagel/Makefile b/science/bagel/Makefile index 7e217ae3346..98d5e6a3021 100644 --- a/science/bagel/Makefile +++ b/science/bagel/Makefile @@ -13,6 +13,7 @@ LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/COPYING BROKEN_i386= error: static_assert failed "size_t is assumed to be the same size as unsigned long long" +BROKEN_FreeBSD_10= /usr/include/c++/v1/memory:4004:35: error: no viable overloaded '='; __e->__weak_this_ = *this; LIB_DEPENDS= libboost_serialization.so:devel/boost-libs \ libcblas.so:math/cblas diff --git a/science/dftbplus/Makefile b/science/dftbplus/Makefile index bbb0f8beb54..53b2a3d1952 100644 --- a/science/dftbplus/Makefile +++ b/science/dftbplus/Makefile @@ -2,7 +2,7 @@ PORTNAME= dftbplus DISTVERSION= 18.2 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= science MAINTAINER= yuri@FreeBSD.org @@ -54,7 +54,7 @@ SOCKETS_BINARY_ALIAS= gcc=${CC} ARPACK_DESC= Build with ARPACK for large eigenvalue problems ARPACK_MAKE_ARGS= WITH_ARPACK=1 ARPACK_MAKE_ARGS_OFF= WITH_ARPACK=0 -ARPACK_LIB_DEPENDS= libarpack.so:math/arpack +ARPACK_LIB_DEPENDS= libarpack.so:math/arpack-ng ARPACK_PREVENTS= MPI # ARPACK is only used in a single-core application MAKE_JOBS_UNSAFE= yes # race conditions when some options are ON diff --git a/science/fvm/Makefile b/science/fvm/Makefile index 32d7b7684cc..285dad7c0bb 100644 --- a/science/fvm/Makefile +++ b/science/fvm/Makefile @@ -3,7 +3,7 @@ PORTNAME= fvm PORTVERSION= 0.15.5 -PORTREVISION= 9 +PORTREVISION= 10 CATEGORIES= science parallel MASTER_SITES= http://code-saturne.org/releases/ @@ -31,10 +31,10 @@ BUILD_DEPENDS+= ${LOCALBASE}/mpi/openmpi/bin/mpicc:net/openmpi RUN_DEPENDS+= ${LOCALBASE}/mpi/openmpi/bin/mpirun:net/openmpi CONFIGURE_ARGS+= --with-mpi=${LOCALBASE}/mpi/openmpi .else -BUILD_DEPENDS+= ${LOCALBASE}/bin/mpicc:net/mpich2 -RUN_DEPENDS+= ${LOCALBASE}/bin/mpirun:net/mpich2 +BUILD_DEPENDS+= ${LOCALBASE}/bin/mpicc:net/mpich +RUN_DEPENDS+= ${LOCALBASE}/bin/mpirun:net/mpich CONFIGURE_ARGS+= --with-mpi=${LOCALBASE} -# Do not directly depend on Fortran, but FFLAGS needed to link with mpich2 +# Do not directly depend on Fortran, but FFLAGS needed to link with mpich USES+= fortran .endif diff --git a/science/gnudatalanguage/Makefile b/science/gnudatalanguage/Makefile index 6c10d2f1d94..6d851147257 100644 --- a/science/gnudatalanguage/Makefile +++ b/science/gnudatalanguage/Makefile @@ -3,7 +3,7 @@ PORTNAME= gnudatalanguage DISTVERSION= 0.9.8 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= science lang MASTER_SITES= SF/${PORTNAME}/gdl/${PORTVERSION} .if defined(BUILD_PYTHON_MODULE) @@ -51,10 +51,10 @@ LDFLAGS+= -lpthread -L${LOCALBASE}/lib SLAVEDIRS= science/py-gnudatalanguage -OPTIONS_DEFINE= EIGEN EXAMPLES FFTW GLPK GRAPHICSMAGICK GRIB HDF5 LIBPROJ4 MPICH2 NETCDF PYTHON QHULL UDUNITS +OPTIONS_DEFINE= EIGEN EXAMPLES FFTW GLPK GRAPHICSMAGICK GRIB HDF5 LIBPROJ4 MPI NETCDF PYTHON QHULL UDUNITS OPTIONS_DEFAULT=EIGEN FFTW GLPK GRAPHICSMAGICK GRIB HDF5 LIBPROJ4 NETCDF PYTHON UDUNITS -EIGEN_DESC= Eigen3 support (boost performance) +EIGEN_DESC= Eigen3 support (boost performance) EIGEN_USES= eigen:3 EIGEN_CMAKE_ON= -DEIGEN3:BOOL=YES EIGEN_CMAKE_OFF= -DEIGEN3:BOOL=NO @@ -88,9 +88,10 @@ LIBPROJ4_LIB_DEPENDS= libproj.so:graphics/proj LIBPROJ4_CMAKE_ON= -DLIBPROJ4:BOOL=YES LIBPROJ4_CMAKE_OFF= -DLIBPROJ4:BOOL=NO -MPICH2_LIB_DEPENDS= libmpich.so.8:net/mpich2 -MPICH2_CMAKE_ON= -DMPICH:BOOL=YES -MPICH2_CMAKE_OFF= -DMPICH:BOOL=NO +MPI_USES= fortran +MPI_LIB_DEPENDS= libmpich.so:net/mpich +MPI_CMAKE_ON= -DMPICH:BOOL=YES +MPI_CMAKE_OFF= -DMPICH:BOOL=NO NETCDF_LIB_DEPENDS= libnetcdf.so:science/netcdf NETCDF_CMAKE_ON= -DNETCDF:BOOL=YES -DHDF:BOOL=NO diff --git a/science/madness/Makefile b/science/madness/Makefile index e32027a6b48..4a4eb757c50 100644 --- a/science/madness/Makefile +++ b/science/madness/Makefile @@ -2,7 +2,7 @@ PORTNAME= madness DISTVERSION= 0.10.1.20180823 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= science MAINTAINER= yuri@FreeBSD.org diff --git a/science/mbdyn/Makefile b/science/mbdyn/Makefile index 6017145f40d..cce278143cb 100644 --- a/science/mbdyn/Makefile +++ b/science/mbdyn/Makefile @@ -3,7 +3,7 @@ PORTNAME= mbdyn PORTVERSION= 1.7.2 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= science MASTER_SITES= https://www.mbdyn.org/userfiles/downloads/ @@ -17,7 +17,7 @@ BROKEN_powerpc= Does not compile on powerpc BUILD_DEPENDS= libatomic_ops>0:devel/libatomic_ops LIB_DEPENDS= libltdl.so:devel/libltdl \ - libarpack.so:math/arpack \ + libarpack.so:math/arpack-ng \ libumfpack.so:math/suitesparse GNU_CONFIGURE= yes diff --git a/science/ncs/Makefile b/science/ncs/Makefile index 85db6502478..c95fb6f23f8 100644 --- a/science/ncs/Makefile +++ b/science/ncs/Makefile @@ -12,6 +12,8 @@ COMMENT= Code_Saturne Kernel LICENSE= GPLv2 +BROKEN= conflicting dependencies + BUILD_DEPENDS= cs_preprocess:science/ecs LIB_DEPENDS= libbft.so:science/bft \ libcgns.so:science/cgnslib \ diff --git a/science/nwchem/Makefile b/science/nwchem/Makefile index 0fe77e201be..e991196f548 100644 --- a/science/nwchem/Makefile +++ b/science/nwchem/Makefile @@ -2,8 +2,8 @@ PORTNAME= nwchem DISTVERSION= 6.8.1-release-94 -PORTREVISION= 4 DISTVERSIONSUFFIX= -g1a262862b +PORTREVISION= 5 CATEGORIES= science MAINTAINER= yuri@FreeBSD.org @@ -35,7 +35,12 @@ MAKE_ENV= NWCHEM_TOP=${WRKSRC}/.. NWCHEM_MODULES=all NWCHEM_LONG_PATHS=Y NWCHEM_ SUB_FILES= nwchemrc WRKSRC_SUBDIR= src + BINARY_ALIAS= gcc=${CC} +MAKE_ARGS= LDFLAGS_FREEBSD="${LDFLAGS}" + +post-extract: + @${RM} ${WRKSRC}/atomscf/src.orig post-patch: @${REINPLACE_CMD} 's|nwchrc="/etc/nwchemrc"|nwchrc="${PREFIX}/etc/nwchemrc"|' ${WRKSRC}/util/util_nwchemrc.F @@ -47,12 +52,7 @@ pre-build: do-install: ${INSTALL_DATA} ${WRKDIR}/nwchemrc ${STAGEDIR}${PREFIX}/etc/nwchemrc - ${INSTALL_PROGRAM} ${WRKSRC}/../bin/LINUX64/${PORTNAME} ${STAGEDIR}${PREFIX}/bin/${PORTNAME}.shadow - @(echo "#!/bin/sh"; \ - echo ""; \ - echo "LD_PRELOAD=${PREFIX}/lib/gcc${GCC_DEFAULT}/libgcc_s.so ${PREFIX}/bin/${PORTNAME}.shadow \""$$"@\"" \ - ) > ${STAGEDIR}${PREFIX}/bin/${PORTNAME} - @${CHMOD} +x ${STAGEDIR}${PREFIX}/bin/${PORTNAME} + ${INSTALL_PROGRAM} ${WRKSRC}/../bin/LINUX64/${PORTNAME} ${STAGEDIR}${PREFIX}/bin/${PORTNAME} cd ${WRKSRC}/basis && ${COPYTREE_SHARE} libraries ${STAGEDIR}${DATADIR} cd ${WRKSRC} && ${COPYTREE_SHARE} data ${STAGEDIR}${DATADIR} @${MKDIR} ${STAGEDIR}${DATADIR}/libraryps diff --git a/science/nwchem/files/patch-config_makefile.h b/science/nwchem/files/patch-config_makefile.h index 4113882588a..5dce24620fc 100644 --- a/science/nwchem/files/patch-config_makefile.h +++ b/science/nwchem/files/patch-config_makefile.h @@ -1,4 +1,4 @@ ---- config/makefile.h.orig 2018-08-23 07:16:42 UTC +--- config/makefile.h.orig 2018-10-01 05:39:33 UTC +++ config/makefile.h @@ -1758,9 +1758,9 @@ endif ifeq ($(USE_FLANG),1) @@ -12,3 +12,9 @@ GNU_GE_4_6 = $(shell [ $(GNUMAJOR) -gt 4 -o \( $(GNUMAJOR) -eq 4 -a $(GNUMINOR) -ge 6 \) ] && echo true) GNU_GE_4_8 = $(shell [ $(GNUMAJOR) -gt 4 -o \( $(GNUMAJOR) -eq 4 -a $(GNUMINOR) -ge 8 \) ] && echo true) endif +@@ -2985,4 +2985,4 @@ endif + + endif + +- ++LINK.f += $(LDFLAGS_FREEBSD) # ignores LDFLAGS: https://github.com/nwchemgit/nwchem/issues/64 diff --git a/science/nwchem/pkg-plist b/science/nwchem/pkg-plist index 5d44454e0f0..b71ce644c5b 100644 --- a/science/nwchem/pkg-plist +++ b/science/nwchem/pkg-plist @@ -1,5 +1,4 @@ bin/nwchem -bin/nwchem.shadow etc/nwchemrc %%DATADIR%%/data/amber_q/ABE.frg %%DATADIR%%/data/amber_q/BNZ.frg diff --git a/science/octopus/Makefile b/science/octopus/Makefile index eff5db387e6..3bb81136f5d 100644 --- a/science/octopus/Makefile +++ b/science/octopus/Makefile @@ -2,6 +2,7 @@ PORTNAME= octopus DISTVERSION= 8.2 +PORTREVISION= 1 CATEGORIES= science MASTER_SITES= http://www.tddft.org/programs/${PORTNAME}/download/${DISTVERSION}/ @@ -11,7 +12,7 @@ COMMENT= Scientific program aimed at the ab initio virtual experimentation LICENSE= GPLv2 BUILD_DEPENDS= bash:shells/bash -LIB_DEPENDS= libarpack.so:math/arpack \ +LIB_DEPENDS= libarpack.so:math/arpack-ng \ libblas.so:math/blas \ libfftw3.so:math/fftw3 \ libfontconfig.so:x11-fonts/fontconfig \ diff --git a/science/p5-Chemistry-Canonicalize/Makefile b/science/p5-Chemistry-Canonicalize/Makefile index deba784b022..6cfec349e0d 100644 --- a/science/p5-Chemistry-Canonicalize/Makefile +++ b/science/p5-Chemistry-Canonicalize/Makefile @@ -12,6 +12,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= swills@FreeBSD.org COMMENT= Number the atoms in a molecule in a unique way +LICENSE= ART10 GPLv1+ +LICENSE_COMB= dual + BUILD_DEPENDS= p5-Chemistry-Mol>=0:science/p5-Chemistry-Mol RUN_DEPENDS= p5-Chemistry-Mol>=0:science/p5-Chemistry-Mol diff --git a/science/p5-Chemistry-File-PDB/Makefile b/science/p5-Chemistry-File-PDB/Makefile index 6f9629d8d4d..c0da12e1acb 100644 --- a/science/p5-Chemistry-File-PDB/Makefile +++ b/science/p5-Chemistry-File-PDB/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Perl module to read and write PDB files -BUILD_DEPENDS= p5-Chemistry-Mol>=0.37:science/p5-Chemistry-Mol \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Chemistry-Mol>=0.37:science/p5-Chemistry-Mol \ p5-Chemistry-MacroMol>=0.06:science/p5-Chemistry-MacroMol -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/science/p5-Chemistry-MacroMol/Makefile b/science/p5-Chemistry-MacroMol/Makefile index 993e1a290e1..11aa86e8ef4 100644 --- a/science/p5-Chemistry-MacroMol/Makefile +++ b/science/p5-Chemistry-MacroMol/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Perl toolkit to describe macromolecules -BUILD_DEPENDS= p5-Chemistry-Mol>=0.37:science/p5-Chemistry-Mol -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Chemistry-Mol>=0.37:science/p5-Chemistry-Mol USES= perl5 USE_PERL5= configure diff --git a/science/p5-Chemistry-Mol/Makefile b/science/p5-Chemistry-Mol/Makefile index 99858b359c9..49573625d6a 100644 --- a/science/p5-Chemistry-Mol/Makefile +++ b/science/p5-Chemistry-Mol/Makefile @@ -14,8 +14,8 @@ COMMENT= Perl toolkit to describe molecules LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Math-VectorReal>=1.02:math/p5-Math-VectorReal -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Math-VectorReal>=1.02:math/p5-Math-VectorReal USES= perl5 USE_PERL5= configure diff --git a/science/p5-Geo-Coordinates-Converter-iArea/Makefile b/science/p5-Geo-Coordinates-Converter-iArea/Makefile index c029e387a37..fa50b72bc37 100644 --- a/science/p5-Geo-Coordinates-Converter-iArea/Makefile +++ b/science/p5-Geo-Coordinates-Converter-iArea/Makefile @@ -14,10 +14,10 @@ COMMENT= Some utility functions around iArea LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-CDB_File>=0.96:databases/p5-CDB_File \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-CDB_File>=0.96:databases/p5-CDB_File \ p5-File-ShareDir>=1.02:devel/p5-File-ShareDir \ p5-Geo-Coordinates-Converter>=0.09:science/p5-Geo-Coordinates-Converter -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USE_PERL5= configure diff --git a/science/p5-Geo-Coordinates-Converter/Makefile b/science/p5-Geo-Coordinates-Converter/Makefile index aba61252011..f8f219534bb 100644 --- a/science/p5-Geo-Coordinates-Converter/Makefile +++ b/science/p5-Geo-Coordinates-Converter/Makefile @@ -14,10 +14,10 @@ COMMENT= Simple converter of geo coordinates LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Class-Accessor-Lite>=0.05:devel/p5-Class-Accessor-Lite \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Accessor-Lite>=0.05:devel/p5-Class-Accessor-Lite \ p5-String-CamelCase>0:textproc/p5-String-CamelCase \ p5-YAML>0:textproc/p5-YAML -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Base>0:devel/p5-Test-Base USES= perl5 diff --git a/science/p5-Geo-WebService-Elevation-USGS/Makefile b/science/p5-Geo-WebService-Elevation-USGS/Makefile index bfb020c4244..95977b937a6 100644 --- a/science/p5-Geo-WebService-Elevation-USGS/Makefile +++ b/science/p5-Geo-WebService-Elevation-USGS/Makefile @@ -14,10 +14,10 @@ COMMENT= Perl extension for elevation queries against USGS web services LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-HTTP-Message>=0:www/p5-HTTP-Message \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTTP-Message>=0:www/p5-HTTP-Message \ p5-JSON>=0:converters/p5-JSON \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} PORTSCOUT= limit:^[0-9\.]*$$ diff --git a/science/py-gsd/Makefile b/science/py-gsd/Makefile index 78e7d457cfc..91920b4bf89 100644 --- a/science/py-gsd/Makefile +++ b/science/py-gsd/Makefile @@ -2,7 +2,7 @@ PORTNAME= gsd DISTVERSIONPREFIX= v -DISTVERSION= 1.5.3 +DISTVERSION= 1.5.4 CATEGORIES= science python MASTER_SITES= http://glotzerlab.engin.umich.edu/Downloads/gsd/ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/science/py-gsd/distinfo b/science/py-gsd/distinfo index 79d77181643..3e761ef9694 100644 --- a/science/py-gsd/distinfo +++ b/science/py-gsd/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1535467244 -SHA256 (gsd-v1.5.3.tar.gz) = 10b6d37b2dadb9dc3543f4975e3722da3f3fd790df44e887b2a0306c045cf76d -SIZE (gsd-v1.5.3.tar.gz) = 240114 +TIMESTAMP = 1538797814 +SHA256 (gsd-v1.5.4.tar.gz) = 09b09f1316c809dae96b1a02972673ef928eb549fcc1cae484265590a5b4acff +SIZE (gsd-v1.5.4.tar.gz) = 241653 diff --git a/science/py-scipy/Makefile b/science/py-scipy/Makefile index 545d9783269..e894241b5ba 100644 --- a/science/py-scipy/Makefile +++ b/science/py-scipy/Makefile @@ -5,7 +5,7 @@ PORTNAME= scipy PORTVERSION= 1.1.0 PORTREVISION= 1 CATEGORIES= science python -MASTER_SITES= http://docs.scipy.org/doc/scipy/:doc \ +MASTER_SITES= https://docs.scipy.org/doc/scipy/:doc \ CHEESESHOP:source \ SF:source PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/science/tinker/Makefile b/science/tinker/Makefile new file mode 100644 index 00000000000..fefd326efc7 --- /dev/null +++ b/science/tinker/Makefile @@ -0,0 +1,77 @@ +# Created by: Glenn Johnson +# $FreeBSD$ + +PORTNAME= tinker +DISTVERSION= 8.4.4 +CATEGORIES= science +MASTER_SITES= https://dasher.wustl.edu/tinker/downloads/ + +MAINTAINER= yuri@FreeBSD.org +COMMENT= General purpose molecular modelling package + +LICENSE= TINKER +LICENSE_NAME= TINKER license agreement +LICENSE_FILE= ${WRKSRC}/doc/license.pdf +LICENSE_PERMS= auto-accept # internal academic purposes only, no commercial use + +OPTIONS_DEFINE= OPTIMIZED_FFLAGS DOCS EXAMPLES +OPTIMIZED_FFLAGS_DESC= compilation optimizations + +WRKSRC= ${WRKDIR}/${PORTNAME} +BUILD_WRKSRC= ${WRKSRC}/source +INSTALL_WRKSRC= ${WRKSRC}/source + +LIB_DEPENDS= libfftw3.so:math/fftw3 + +USES= fortran gmake +MAKE_ENV= HAVE_G2C=yes +MAKE_ARGS= RANLIB=ranlib BINDIR=${STAGEDIR}${PREFIX}/bin +MAKEFILE= ${WRKSRC}/make/Makefile +EXTRACT_AFTER_ARGS=--exclude fftw --exclude windows --exclude macosx + +SUB_FILES= pkg-message + +BINARY_ALIAS= gfortran=gfortran${GCC_DEFAULT} + +PORTDOCS= * +PORTEXAMPLES= * + +.include + +.if ${PORT_OPTIONS:MOPTIMIZED_FFLAGS} +FFLAGS+= -O3 -ffast-math -finline-functions -fomit-frame-pointer -funroll-loops -fexpensive-optimizations +.if (${ARCH} == "i386") +FFLAGS+= -mfancy-math-387 -malign-double +.endif # i386 +.endif + +post-extract: + @${RM} ${BUILD_WRKSRC}/*.c + @${RM} ${WRKSRC}/other/eopbend.orig + +post-patch: + @${REINPLACE_CMD} -i '' 's|\.\./bin/|${STAGEDIR}${PREFIX}/bin/|' ${BUILD_WRKSRC}/../bench/bench*.run + +post-install: + @${MKDIR} ${STAGEDIR}${DATADIR} + @${MKDIR} ${STAGEDIR}${DATADIR}/params + cd ${WRKSRC}/params && ${INSTALL_DATA} * ${STAGEDIR}${DATADIR}/params + @${MKDIR} ${STAGEDIR}${DATADIR}/test + cd ${WRKSRC}/test && ${INSTALL_DATA} * ${STAGEDIR}${DATADIR}/test + +post-install-DOCS-on: + @${MKDIR} ${STAGEDIR}${DOCSDIR} + cd ${WRKSRC}/doc && ${INSTALL_DATA} 0README *.pdf ${STAGEDIR}${DOCSDIR} + +post-install-EXAMPLES-on: + @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} + cd ${WRKSRC}/example && ${INSTALL_DATA} \ + 0README *.make *.dyn *.int *.frac *.key *.seq *.pdb *.xyz \ + ${STAGEDIR}${EXAMPLESDIR} + +benchmarks: stage +.for n in 1 2 3 4 5 6 7 8 9 + @cd ${BUILD_WRKSRC}/../bench && ./bench${n}.run +.endfor + +.include diff --git a/science/tinker/distinfo b/science/tinker/distinfo new file mode 100644 index 00000000000..d20c59c39cc --- /dev/null +++ b/science/tinker/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1538861663 +SHA256 (tinker-8.4.4.tar.gz) = c263298383bcd5a72f281d25640f7be2e9c465e08c1a61c3c3de59b6bb828da6 +SIZE (tinker-8.4.4.tar.gz) = 35549655 diff --git a/science/tinker/files/patch-make_Makefile b/science/tinker/files/patch-make_Makefile new file mode 100644 index 00000000000..3e9f9d05450 --- /dev/null +++ b/science/tinker/files/patch-make_Makefile @@ -0,0 +1,255 @@ +--- make/Makefile.orig 2018-10-06 22:01:02 UTC ++++ make/Makefile +@@ -754,130 +754,130 @@ listing: + cat *.f *.c > tinker.txt + + rename_bin: +- mv alchemy.x $(BINDIR)/alchemy +- mv analyze.x $(BINDIR)/analyze +- mv anneal.x $(BINDIR)/anneal +- mv archive.x $(BINDIR)/archive +- mv bar.x $(BINDIR)/bar +- mv correlate.x $(BINDIR)/correlate +- mv crystal.x $(BINDIR)/crystal +- mv diffuse.x $(BINDIR)/diffuse +- mv distgeom.x $(BINDIR)/distgeom +- mv document.x $(BINDIR)/document +- mv dynamic.x $(BINDIR)/dynamic +- mv gda.x $(BINDIR)/gda +- mv intedit.x $(BINDIR)/intedit +- mv intxyz.x $(BINDIR)/intxyz +- mv minimize.x $(BINDIR)/minimize +- mv minirot.x $(BINDIR)/minirot +- mv minrigid.x $(BINDIR)/minrigid +- mv mol2xyz.x $(BINDIR)/mol2xyz +- mv molxyz.x $(BINDIR)/molxyz +- mv monte.x $(BINDIR)/monte +- mv newton.x $(BINDIR)/newton +- mv newtrot.x $(BINDIR)/newtrot +- mv nucleic.x $(BINDIR)/nucleic +- mv optimize.x $(BINDIR)/optimize +- mv optirot.x $(BINDIR)/optirot +- mv optrigid.x $(BINDIR)/optrigid +- mv path.x $(BINDIR)/path +- mv pdbxyz.x $(BINDIR)/pdbxyz +- mv polarize.x $(BINDIR)/polarize +- mv poledit.x $(BINDIR)/poledit +- mv potential.x $(BINDIR)/potential +- mv prmedit.x $(BINDIR)/prmedit +- mv protein.x $(BINDIR)/protein +- mv pss.x $(BINDIR)/pss +- mv pssrigid.x $(BINDIR)/pssrigid +- mv pssrot.x $(BINDIR)/pssrot +- mv radial.x $(BINDIR)/radial +- mv saddle.x $(BINDIR)/saddle +- mv scan.x $(BINDIR)/scan +- mv sniffer.x $(BINDIR)/sniffer +- mv spacefill.x $(BINDIR)/spacefill +- mv spectrum.x $(BINDIR)/spectrum +- mv superpose.x $(BINDIR)/superpose +- mv testgrad.x $(BINDIR)/testgrad +- mv testhess.x $(BINDIR)/testhess +- mv testpair.x $(BINDIR)/testpair +- mv testpol.x $(BINDIR)/testpol +- mv testrot.x $(BINDIR)/testrot +- mv timer.x $(BINDIR)/timer +- mv timerot.x $(BINDIR)/timerot +- mv torsfit.x $(BINDIR)/torsfit +- mv valence.x $(BINDIR)/valence +- mv vibbig.x $(BINDIR)/vibbig +- mv vibrate.x $(BINDIR)/vibrate +- mv vibrot.x $(BINDIR)/vibrot +- mv xtalfit.x $(BINDIR)/xtalfit +- mv xtalmin.x $(BINDIR)/xtalmin +- mv xyzedit.x $(BINDIR)/xyzedit +- mv xyzint.x $(BINDIR)/xyzint +- mv xyzmol2.x $(BINDIR)/xyzmol2 +- mv xyzpdb.x $(BINDIR)/xyzpdb ++ ${BSD_INSTALL_PROGRAM} alchemy.x $(BINDIR)/alchemy ++ ${BSD_INSTALL_PROGRAM} analyze.x $(BINDIR)/analyze ++ ${BSD_INSTALL_PROGRAM} anneal.x $(BINDIR)/anneal ++ ${BSD_INSTALL_PROGRAM} archive.x $(BINDIR)/archive ++ ${BSD_INSTALL_PROGRAM} bar.x $(BINDIR)/bar ++ ${BSD_INSTALL_PROGRAM} correlate.x $(BINDIR)/correlate ++ ${BSD_INSTALL_PROGRAM} crystal.x $(BINDIR)/crystal ++ ${BSD_INSTALL_PROGRAM} diffuse.x $(BINDIR)/diffuse ++ ${BSD_INSTALL_PROGRAM} distgeom.x $(BINDIR)/distgeom ++ ${BSD_INSTALL_PROGRAM} document.x $(BINDIR)/document ++ ${BSD_INSTALL_PROGRAM} dynamic.x $(BINDIR)/dynamic ++ ${BSD_INSTALL_PROGRAM} gda.x $(BINDIR)/gda ++ ${BSD_INSTALL_PROGRAM} intedit.x $(BINDIR)/intedit ++ ${BSD_INSTALL_PROGRAM} intxyz.x $(BINDIR)/intxyz ++ ${BSD_INSTALL_PROGRAM} minimize.x $(BINDIR)/minimize ++ ${BSD_INSTALL_PROGRAM} minirot.x $(BINDIR)/minirot ++ ${BSD_INSTALL_PROGRAM} minrigid.x $(BINDIR)/minrigid ++ ${BSD_INSTALL_PROGRAM} mol2xyz.x $(BINDIR)/mol2xyz ++ ${BSD_INSTALL_PROGRAM} molxyz.x $(BINDIR)/molxyz ++ ${BSD_INSTALL_PROGRAM} monte.x $(BINDIR)/monte ++ ${BSD_INSTALL_PROGRAM} newton.x $(BINDIR)/newton ++ ${BSD_INSTALL_PROGRAM} newtrot.x $(BINDIR)/newtrot ++ ${BSD_INSTALL_PROGRAM} nucleic.x $(BINDIR)/nucleic ++ ${BSD_INSTALL_PROGRAM} optimize.x $(BINDIR)/optimize ++ ${BSD_INSTALL_PROGRAM} optirot.x $(BINDIR)/optirot ++ ${BSD_INSTALL_PROGRAM} optrigid.x $(BINDIR)/optrigid ++ ${BSD_INSTALL_PROGRAM} path.x $(BINDIR)/path ++ ${BSD_INSTALL_PROGRAM} pdbxyz.x $(BINDIR)/pdbxyz ++ ${BSD_INSTALL_PROGRAM} polarize.x $(BINDIR)/polarize ++ ${BSD_INSTALL_PROGRAM} poledit.x $(BINDIR)/poledit ++ ${BSD_INSTALL_PROGRAM} potential.x $(BINDIR)/potential ++ ${BSD_INSTALL_PROGRAM} prmedit.x $(BINDIR)/prmedit ++ ${BSD_INSTALL_PROGRAM} protein.x $(BINDIR)/protein ++ ${BSD_INSTALL_PROGRAM} pss.x $(BINDIR)/pss ++ ${BSD_INSTALL_PROGRAM} pssrigid.x $(BINDIR)/pssrigid ++ ${BSD_INSTALL_PROGRAM} pssrot.x $(BINDIR)/pssrot ++ ${BSD_INSTALL_PROGRAM} radial.x $(BINDIR)/radial ++ ${BSD_INSTALL_PROGRAM} saddle.x $(BINDIR)/saddle ++ ${BSD_INSTALL_PROGRAM} scan.x $(BINDIR)/scan ++ ${BSD_INSTALL_PROGRAM} sniffer.x $(BINDIR)/sniffer ++ ${BSD_INSTALL_PROGRAM} spacefill.x $(BINDIR)/spacefill ++ ${BSD_INSTALL_PROGRAM} spectrum.x $(BINDIR)/spectrum ++ ${BSD_INSTALL_PROGRAM} superpose.x $(BINDIR)/superpose ++ ${BSD_INSTALL_PROGRAM} testgrad.x $(BINDIR)/testgrad ++ ${BSD_INSTALL_PROGRAM} testhess.x $(BINDIR)/testhess ++ ${BSD_INSTALL_PROGRAM} testpair.x $(BINDIR)/testpair ++ ${BSD_INSTALL_PROGRAM} testpol.x $(BINDIR)/testpol ++ ${BSD_INSTALL_PROGRAM} testrot.x $(BINDIR)/testrot ++ ${BSD_INSTALL_PROGRAM} timer.x $(BINDIR)/timer ++ ${BSD_INSTALL_PROGRAM} timerot.x $(BINDIR)/timerot ++ ${BSD_INSTALL_PROGRAM} torsfit.x $(BINDIR)/torsfit ++ ${BSD_INSTALL_PROGRAM} valence.x $(BINDIR)/valence ++ ${BSD_INSTALL_PROGRAM} vibbig.x $(BINDIR)/vibbig ++ ${BSD_INSTALL_PROGRAM} vibrate.x $(BINDIR)/vibrate ++ ${BSD_INSTALL_PROGRAM} vibrot.x $(BINDIR)/vibrot ++ ${BSD_INSTALL_PROGRAM} xtalfit.x $(BINDIR)/xtalfit ++ ${BSD_INSTALL_PROGRAM} xtalmin.x $(BINDIR)/xtalmin ++ ${BSD_INSTALL_PROGRAM} xyzedit.x $(BINDIR)/xyzedit ++ ${BSD_INSTALL_PROGRAM} xyzint.x $(BINDIR)/xyzint ++ ${BSD_INSTALL_PROGRAM} xyzmol2.x $(BINDIR)/xyzmol2 ++ ${BSD_INSTALL_PROGRAM} xyzpdb.x $(BINDIR)/xyzpdb + + rename_exe: +- mv alchemy.x $(BINDIR)/alchemy.exe +- mv analyze.x $(BINDIR)/analyze.exe +- mv anneal.x $(BINDIR)/anneal.exe +- mv archive.x $(BINDIR)/archive.exe +- mv bar.x $(BINDIR)/bar.exe +- mv correlate.x $(BINDIR)/correlate.exe +- mv crystal.x $(BINDIR)/crystal.exe +- mv diffuse.x $(BINDIR)/diffuse.exe +- mv distgeom.x $(BINDIR)/distgeom.exe +- mv document.x $(BINDIR)/document.exe +- mv dynamic.x $(BINDIR)/dynamic.exe +- mv gda.x $(BINDIR)/gda.exe +- mv intedit.x $(BINDIR)/intedit.exe +- mv intxyz.x $(BINDIR)/intxyz.exe +- mv minimize.x $(BINDIR)/minimize.exe +- mv minirot.x $(BINDIR)/minirot.exe +- mv minrigid.x $(BINDIR)/minrigid.exe +- mv mol2xyz.x $(BINDIR)/mol2xyz.exe +- mv molxyz.x $(BINDIR)/molxyz.exe +- mv monte.x $(BINDIR)/monte.exe +- mv newton.x $(BINDIR)/newton.exe +- mv newtrot.x $(BINDIR)/newtrot.exe +- mv nucleic.x $(BINDIR)/nucleic.exe +- mv optimize.x $(BINDIR)/optimize.exe +- mv optirot.x $(BINDIR)/optirot.exe +- mv optrigid.x $(BINDIR)/optrigid.exe +- mv path.x $(BINDIR)/path.exe +- mv pdbxyz.x $(BINDIR)/pdbxyz.exe +- mv polarize.x $(BINDIR)/polarize.exe +- mv poledit.x $(BINDIR)/poledit.exe +- mv potential.x $(BINDIR)/potential.exe +- mv prmedit.x $(BINDIR)/prmedit.exe +- mv protein.x $(BINDIR)/protein.exe +- mv pss.x $(BINDIR)/pss.exe +- mv pssrigid.x $(BINDIR)/pssrigid.exe +- mv pssrot.x $(BINDIR)/pssrot.exe +- mv radial.x $(BINDIR)/radial.exe +- mv saddle.x $(BINDIR)/saddle.exe +- mv scan.x $(BINDIR)/scan.exe +- mv sniffer.x $(BINDIR)/sniffer.exe +- mv spacefill.x $(BINDIR)/spacefill.exe +- mv spectrum.x $(BINDIR)/spectrum.exe +- mv superpose.x $(BINDIR)/superpose.exe +- mv testgrad.x $(BINDIR)/testgrad.exe +- mv testhess.x $(BINDIR)/testhess.exe +- mv testpair.x $(BINDIR)/testpair.exe +- mv testpol.x $(BINDIR)/testpol.exe +- mv testrot.x $(BINDIR)/testrot.exe +- mv timer.x $(BINDIR)/timer.exe +- mv timerot.x $(BINDIR)/timerot.exe +- mv torsfit.x $(BINDIR)/torsfit.exe +- mv valence.x $(BINDIR)/valence.exe +- mv vibbig.x $(BINDIR)/vibbig.exe +- mv vibrate.x $(BINDIR)/vibrate.exe +- mv vibrot.x $(BINDIR)/vibrot.exe +- mv xtalfit.x $(BINDIR)/xtalfit.exe +- mv xtalmin.x $(BINDIR)/xtalmin.exe +- mv xyzedit.x $(BINDIR)/xyzedit.exe +- mv xyzint.x $(BINDIR)/xyzint.exe +- mv xyzmol2.x $(BINDIR)/xyzmol2.exe +- mv xyzpdb.x $(BINDIR)/xyzpdb.exe ++ ${BSD_INSTALL_PROGRAM} alchemy.x $(BINDIR)/alchemy.exe ++ ${BSD_INSTALL_PROGRAM} analyze.x $(BINDIR)/analyze.exe ++ ${BSD_INSTALL_PROGRAM} anneal.x $(BINDIR)/anneal.exe ++ ${BSD_INSTALL_PROGRAM} archive.x $(BINDIR)/archive.exe ++ ${BSD_INSTALL_PROGRAM} bar.x $(BINDIR)/bar.exe ++ ${BSD_INSTALL_PROGRAM} correlate.x $(BINDIR)/correlate.exe ++ ${BSD_INSTALL_PROGRAM} crystal.x $(BINDIR)/crystal.exe ++ ${BSD_INSTALL_PROGRAM} diffuse.x $(BINDIR)/diffuse.exe ++ ${BSD_INSTALL_PROGRAM} distgeom.x $(BINDIR)/distgeom.exe ++ ${BSD_INSTALL_PROGRAM} document.x $(BINDIR)/document.exe ++ ${BSD_INSTALL_PROGRAM} dynamic.x $(BINDIR)/dynamic.exe ++ ${BSD_INSTALL_PROGRAM} gda.x $(BINDIR)/gda.exe ++ ${BSD_INSTALL_PROGRAM} intedit.x $(BINDIR)/intedit.exe ++ ${BSD_INSTALL_PROGRAM} intxyz.x $(BINDIR)/intxyz.exe ++ ${BSD_INSTALL_PROGRAM} minimize.x $(BINDIR)/minimize.exe ++ ${BSD_INSTALL_PROGRAM} minirot.x $(BINDIR)/minirot.exe ++ ${BSD_INSTALL_PROGRAM} minrigid.x $(BINDIR)/minrigid.exe ++ ${BSD_INSTALL_PROGRAM} mol2xyz.x $(BINDIR)/mol2xyz.exe ++ ${BSD_INSTALL_PROGRAM} molxyz.x $(BINDIR)/molxyz.exe ++ ${BSD_INSTALL_PROGRAM} monte.x $(BINDIR)/monte.exe ++ ${BSD_INSTALL_PROGRAM} newton.x $(BINDIR)/newton.exe ++ ${BSD_INSTALL_PROGRAM} newtrot.x $(BINDIR)/newtrot.exe ++ ${BSD_INSTALL_PROGRAM} nucleic.x $(BINDIR)/nucleic.exe ++ ${BSD_INSTALL_PROGRAM} optimize.x $(BINDIR)/optimize.exe ++ ${BSD_INSTALL_PROGRAM} optirot.x $(BINDIR)/optirot.exe ++ ${BSD_INSTALL_PROGRAM} optrigid.x $(BINDIR)/optrigid.exe ++ ${BSD_INSTALL_PROGRAM} path.x $(BINDIR)/path.exe ++ ${BSD_INSTALL_PROGRAM} pdbxyz.x $(BINDIR)/pdbxyz.exe ++ ${BSD_INSTALL_PROGRAM} polarize.x $(BINDIR)/polarize.exe ++ ${BSD_INSTALL_PROGRAM} poledit.x $(BINDIR)/poledit.exe ++ ${BSD_INSTALL_PROGRAM} potential.x $(BINDIR)/potential.exe ++ ${BSD_INSTALL_PROGRAM} prmedit.x $(BINDIR)/prmedit.exe ++ ${BSD_INSTALL_PROGRAM} protein.x $(BINDIR)/protein.exe ++ ${BSD_INSTALL_PROGRAM} pss.x $(BINDIR)/pss.exe ++ ${BSD_INSTALL_PROGRAM} pssrigid.x $(BINDIR)/pssrigid.exe ++ ${BSD_INSTALL_PROGRAM} pssrot.x $(BINDIR)/pssrot.exe ++ ${BSD_INSTALL_PROGRAM} radial.x $(BINDIR)/radial.exe ++ ${BSD_INSTALL_PROGRAM} saddle.x $(BINDIR)/saddle.exe ++ ${BSD_INSTALL_PROGRAM} scan.x $(BINDIR)/scan.exe ++ ${BSD_INSTALL_PROGRAM} sniffer.x $(BINDIR)/sniffer.exe ++ ${BSD_INSTALL_PROGRAM} spacefill.x $(BINDIR)/spacefill.exe ++ ${BSD_INSTALL_PROGRAM} spectrum.x $(BINDIR)/spectrum.exe ++ ${BSD_INSTALL_PROGRAM} superpose.x $(BINDIR)/superpose.exe ++ ${BSD_INSTALL_PROGRAM} testgrad.x $(BINDIR)/testgrad.exe ++ ${BSD_INSTALL_PROGRAM} testhess.x $(BINDIR)/testhess.exe ++ ${BSD_INSTALL_PROGRAM} testpair.x $(BINDIR)/testpair.exe ++ ${BSD_INSTALL_PROGRAM} testpol.x $(BINDIR)/testpol.exe ++ ${BSD_INSTALL_PROGRAM} testrot.x $(BINDIR)/testrot.exe ++ ${BSD_INSTALL_PROGRAM} timer.x $(BINDIR)/timer.exe ++ ${BSD_INSTALL_PROGRAM} timerot.x $(BINDIR)/timerot.exe ++ ${BSD_INSTALL_PROGRAM} torsfit.x $(BINDIR)/torsfit.exe ++ ${BSD_INSTALL_PROGRAM} valence.x $(BINDIR)/valence.exe ++ ${BSD_INSTALL_PROGRAM} vibbig.x $(BINDIR)/vibbig.exe ++ ${BSD_INSTALL_PROGRAM} vibrate.x $(BINDIR)/vibrate.exe ++ ${BSD_INSTALL_PROGRAM} vibrot.x $(BINDIR)/vibrot.exe ++ ${BSD_INSTALL_PROGRAM} xtalfit.x $(BINDIR)/xtalfit.exe ++ ${BSD_INSTALL_PROGRAM} xtalmin.x $(BINDIR)/xtalmin.exe ++ ${BSD_INSTALL_PROGRAM} xyzedit.x $(BINDIR)/xyzedit.exe ++ ${BSD_INSTALL_PROGRAM} xyzint.x $(BINDIR)/xyzint.exe ++ ${BSD_INSTALL_PROGRAM} xyzmol2.x $(BINDIR)/xyzmol2.exe ++ ${BSD_INSTALL_PROGRAM} xyzpdb.x $(BINDIR)/xyzpdb.exe + + remove_links: + rm -f $(LINKDIR)/alchemy diff --git a/biology/tinker/files/patch-source_openend.f b/science/tinker/files/patch-source_openend.f similarity index 100% rename from biology/tinker/files/patch-source_openend.f rename to science/tinker/files/patch-source_openend.f diff --git a/biology/tinker/files/pkg-message.in b/science/tinker/files/pkg-message.in similarity index 100% rename from biology/tinker/files/pkg-message.in rename to science/tinker/files/pkg-message.in diff --git a/biology/tinker/pkg-descr b/science/tinker/pkg-descr similarity index 95% rename from biology/tinker/pkg-descr rename to science/tinker/pkg-descr index a34d7f69fd5..0f2cc29dedd 100644 --- a/biology/tinker/pkg-descr +++ b/science/tinker/pkg-descr @@ -13,4 +13,4 @@ is set too large that tinker programs will abort and core dump. For more information about Tinker see: -WWW: http://dasher.wustl.edu/tinker/ +WWW: https://dasher.wustl.edu/tinker/ diff --git a/science/tinker/pkg-plist b/science/tinker/pkg-plist new file mode 100644 index 00000000000..37d34dca21b --- /dev/null +++ b/science/tinker/pkg-plist @@ -0,0 +1,186 @@ +bin/alchemy +bin/analyze +bin/anneal +bin/archive +bin/bar +bin/correlate +bin/crystal +bin/diffuse +bin/distgeom +bin/document +bin/dynamic +bin/gda +bin/intedit +bin/intxyz +bin/minimize +bin/minirot +bin/minrigid +bin/mol2xyz +bin/molxyz +bin/monte +bin/newton +bin/newtrot +bin/nucleic +bin/optimize +bin/optirot +bin/optrigid +bin/path +bin/pdbxyz +bin/polarize +bin/poledit +bin/potential +bin/prmedit +bin/protein +bin/pss +bin/pssrigid +bin/pssrot +bin/radial +bin/saddle +bin/scan +bin/sniffer +bin/spacefill +bin/spectrum +bin/superpose +bin/testgrad +bin/testhess +bin/testpair +bin/testpol +bin/testrot +bin/timer +bin/timerot +bin/torsfit +bin/valence +bin/vibbig +bin/vibrate +bin/vibrot +bin/xtalfit +bin/xtalmin +bin/xyzedit +bin/xyzint +bin/xyzmol2 +bin/xyzpdb +%%DATADIR%%/params/0README +%%DATADIR%%/params/amber94.prm +%%DATADIR%%/params/amber96.prm +%%DATADIR%%/params/amber98.prm +%%DATADIR%%/params/amber99.prm +%%DATADIR%%/params/amber99sb.prm +%%DATADIR%%/params/amoeba04.prm +%%DATADIR%%/params/amoeba09.prm +%%DATADIR%%/params/amoebabio09.prm +%%DATADIR%%/params/amoebabio18.prm +%%DATADIR%%/params/amoebanuc17.prm +%%DATADIR%%/params/amoebapro04.prm +%%DATADIR%%/params/amoebapro13.prm +%%DATADIR%%/params/charmm19.prm +%%DATADIR%%/params/charmm22.prm +%%DATADIR%%/params/charmm22cmap.prm +%%DATADIR%%/params/dang.prm +%%DATADIR%%/params/hoch.prm +%%DATADIR%%/params/iwater.prm +%%DATADIR%%/params/mm2.prm +%%DATADIR%%/params/mm3.prm +%%DATADIR%%/params/mm3pro.prm +%%DATADIR%%/params/mmff.prm +%%DATADIR%%/params/oplsaa.prm +%%DATADIR%%/params/oplsaal.prm +%%DATADIR%%/params/oplsua.prm +%%DATADIR%%/params/smoothaa.prm +%%DATADIR%%/params/smoothua.prm +%%DATADIR%%/params/tiny.prm +%%DATADIR%%/params/water03.prm +%%DATADIR%%/params/water14.prm +%%DATADIR%%/test/0README +%%DATADIR%%/test/anion.dat +%%DATADIR%%/test/anion.dyn0 +%%DATADIR%%/test/anion.key +%%DATADIR%%/test/anion.log +%%DATADIR%%/test/anion.run +%%DATADIR%%/test/anion.xyz +%%DATADIR%%/test/argon.1st +%%DATADIR%%/test/argon.key +%%DATADIR%%/test/argon.log +%%DATADIR%%/test/argon.run +%%DATADIR%%/test/cluster.dat +%%DATADIR%%/test/cluster.key +%%DATADIR%%/test/cluster.log +%%DATADIR%%/test/cluster.run +%%DATADIR%%/test/cluster.xyz +%%DATADIR%%/test/crambin.key +%%DATADIR%%/test/crambin.log +%%DATADIR%%/test/crambin.pdb +%%DATADIR%%/test/crambin.run +%%DATADIR%%/test/cyclohex.boat +%%DATADIR%%/test/cyclohex.chair +%%DATADIR%%/test/cyclohex.key +%%DATADIR%%/test/cyclohex.log +%%DATADIR%%/test/cyclohex.run +%%DATADIR%%/test/dhfr.dyn +%%DATADIR%%/test/dhfr.key +%%DATADIR%%/test/dhfr.log +%%DATADIR%%/test/dhfr.run +%%DATADIR%%/test/dhfr.xyz +%%DATADIR%%/test/dialanine.key +%%DATADIR%%/test/dialanine.log +%%DATADIR%%/test/dialanine.run +%%DATADIR%%/test/dialanine.xyz +%%DATADIR%%/test/enkephalin.dat +%%DATADIR%%/test/enkephalin.key +%%DATADIR%%/test/enkephalin.log +%%DATADIR%%/test/enkephalin.run +%%DATADIR%%/test/ethanol.000 +%%DATADIR%%/test/ethanol.020 +%%DATADIR%%/test/ethanol.040 +%%DATADIR%%/test/ethanol.060 +%%DATADIR%%/test/ethanol.080 +%%DATADIR%%/test/ethanol.100 +%%DATADIR%%/test/ethanol.120 +%%DATADIR%%/test/ethanol.140 +%%DATADIR%%/test/ethanol.160 +%%DATADIR%%/test/ethanol.180 +%%DATADIR%%/test/ethanol.dat +%%DATADIR%%/test/ethanol.key +%%DATADIR%%/test/ethanol.log +%%DATADIR%%/test/ethanol.run +%%DATADIR%%/test/ethanol.xyz +%%DATADIR%%/test/formamide.cell +%%DATADIR%%/test/formamide.dat +%%DATADIR%%/test/formamide.key +%%DATADIR%%/test/formamide.log +%%DATADIR%%/test/formamide.run +%%DATADIR%%/test/gpcr.blk +%%DATADIR%%/test/gpcr.key +%%DATADIR%%/test/gpcr.log +%%DATADIR%%/test/gpcr.run +%%DATADIR%%/test/gpcr.xyz +%%DATADIR%%/test/helix.1st +%%DATADIR%%/test/helix.key +%%DATADIR%%/test/helix.log +%%DATADIR%%/test/helix.run +%%DATADIR%%/test/ice.key +%%DATADIR%%/test/ice.log +%%DATADIR%%/test/ice.run +%%DATADIR%%/test/ice.xyz +%%DATADIR%%/test/ifabp.dat +%%DATADIR%%/test/ifabp.key +%%DATADIR%%/test/ifabp.log +%%DATADIR%%/test/ifabp.run +%%DATADIR%%/test/ifabp.xyz +%%DATADIR%%/test/nitrogen.arc +%%DATADIR%%/test/nitrogen.key +%%DATADIR%%/test/nitrogen.log +%%DATADIR%%/test/nitrogen.run +%%DATADIR%%/test/nitrogen.xyz +%%DATADIR%%/test/salt.cell +%%DATADIR%%/test/salt.key +%%DATADIR%%/test/salt.log +%%DATADIR%%/test/salt.run +%%DATADIR%%/test/tetraala.dat +%%DATADIR%%/test/tetraala.key +%%DATADIR%%/test/tetraala.log +%%DATADIR%%/test/tetraala.run +%%DATADIR%%/test/water.key +%%DATADIR%%/test/water.log +%%DATADIR%%/test/water.pot +%%DATADIR%%/test/water.run +%%DATADIR%%/test/water.xyz diff --git a/security/Makefile b/security/Makefile index b2f541cc18f..8314deaf972 100644 --- a/security/Makefile +++ b/security/Makefile @@ -64,6 +64,7 @@ SUBDIR += ca_root_nss SUBDIR += calife SUBDIR += cardpeek + SUBDIR += cargo-audit SUBDIR += ccrypt SUBDIR += ccsrch SUBDIR += certificate-transparency diff --git a/security/amavis-stats/Makefile b/security/amavis-stats/Makefile index 34b4de51421..0cb482a4cf0 100644 --- a/security/amavis-stats/Makefile +++ b/security/amavis-stats/Makefile @@ -7,7 +7,7 @@ PORTREVISION= 5 CATEGORIES= security MASTER_SITES= LOCAL/feld -MAINTAINER= feld@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Simple AMaViS statistics generator based on rrdtool RUN_DEPENDS= rrdtool>=0:databases/rrdtool diff --git a/security/botan2/Makefile b/security/botan2/Makefile index 2aea84d89a0..ea312b7c9d5 100644 --- a/security/botan2/Makefile +++ b/security/botan2/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= botan -DISTVERSION= 2.7.0 +DISTVERSION= 2.8.0 CATEGORIES= security MASTER_SITES= http://botan.randombit.net/releases/ PKGNAMESUFFIX= 2 @@ -18,11 +18,8 @@ BROKEN_armv7= fails to package: pkg-static: Unable to access file stage/usr/loc LIB_DEPENDS= libboost_filesystem.so:devel/boost-libs -OPTIONS_DEFINE= SQLITE3 SSL DOCS -OPTIONS_DEFAULT= SSL -OPTIONS_SUB= yes - USES= compiler:c++11-lang gmake python:build shebangfix tar:tgz +SHEBANG_FILES= configure.py src/scripts/install.py HAS_CONFIGURE= yes USE_LDCONFIG= yes @@ -31,11 +28,14 @@ CONFIGURE_ARGS= --with-external-includedir=${PREFIX}/include \ --with-external-libdir=${PREFIX}/lib \ --with-boost --with-bzip2 --with-lzma --with-zlib LDFLAGS+= -pthread -SHEBANG_FILES= configure.py src/scripts/install.py DOCSDIR= ${PREFIX}/share/doc/${PORTNAME}-${PORTVERSION} PORTDOCS= * +OPTIONS_DEFINE= DOCS SQLITE3 SSL +OPTIONS_DEFAULT= SSL +OPTIONS_SUB= yes + SQLITE3_USES= sqlite SQLITE3_CONFIGURE_WITH= sqlite3 @@ -60,8 +60,6 @@ post-patch: ${WRKSRC}/src/build-data/cc/clang.txt post-install: -.for i in bin/botan lib/libbotan-2.so.7.7.0 - ${STRIP_CMD} ${STAGEDIR}${PREFIX}/${i} -.endfor + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/botan ${STAGEDIR}${PREFIX}/lib/libbotan-2.so.8.8.0 .include diff --git a/security/botan2/distinfo b/security/botan2/distinfo index c93bce843de..e657dcf96f9 100644 --- a/security/botan2/distinfo +++ b/security/botan2/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1530602195 -SHA256 (Botan-2.7.0.tgz) = e42df91556317588c6ca0e41bf796f9bd5ec5c70e0668e6c97c608c697c24a90 -SIZE (Botan-2.7.0.tgz) = 7021654 +TIMESTAMP = 1538471024 +SHA256 (Botan-2.8.0.tgz) = e7159b127e91e0c158245d61c638c50d443ec7b440b6b0161328c47b3aba3960 +SIZE (Botan-2.8.0.tgz) = 7152674 diff --git a/security/botan2/pkg-plist b/security/botan2/pkg-plist index d29aed041b0..289d69de780 100644 --- a/security/botan2/pkg-plist +++ b/security/botan2/pkg-plist @@ -204,6 +204,7 @@ include/botan-2/botan/psk_db.h include/botan-2/botan/psk_db_sql.h include/botan-2/botan/pssr.h include/botan-2/botan/pubkey.h +include/botan-2/botan/pwdhash.h include/botan-2/botan/rc4.h %%HAS_RDRAND_RNG%%include/botan-2/botan/rdrand_rng.h include/botan-2/botan/reducer.h @@ -274,6 +275,7 @@ include/botan-2/botan/totp.h include/botan-2/botan/tss.h include/botan-2/botan/twofish.h include/botan-2/botan/types.h +include/botan-2/botan/uuid.h include/botan-2/botan/version.h include/botan-2/botan/whrlpool.h include/botan-2/botan/workfactor.h @@ -305,7 +307,7 @@ include/botan-2/botan/xts.h include/botan-2/botan/zlib.h lib/libbotan-2.a lib/libbotan-2.so -lib/libbotan-2.so.7 -lib/libbotan-2.so.7.7.0 +lib/libbotan-2.so.8 +lib/libbotan-2.so.8.8.0 %%PYTHON_SITELIBDIR%%/botan2.py libdata/pkgconfig/botan-2.pc diff --git a/security/cargo-audit/Makefile b/security/cargo-audit/Makefile new file mode 100644 index 00000000000..0adcaf00e5e --- /dev/null +++ b/security/cargo-audit/Makefile @@ -0,0 +1,82 @@ +# $FreeBSD$ + +PORTNAME= cargo-audit +DISTVERSIONPREFIX= v +DISTVERSION= 0.5.2 +CATEGORIES= security + +MAINTAINER= tobik@FreeBSD.org +COMMENT= Audit Cargo.lock for crates with security vulnerabilities + +LICENSE= APACHE20 MIT +LICENSE_COMB= dual +LICENSE_FILE_APACHE20= ${WRKSRC}/LICENSE-APACHE +LICENSE_FILE_MIT= ${WRKSRC}/LICENSE-MIT + +USES= cargo +USE_GITHUB= yes +GH_ACCOUNT= RustSec + +CARGO_CRATES= backtrace-0.3.9 \ + backtrace-sys-0.1.24 \ + bitflags-1.0.4 \ + byteorder-1.2.6 \ + cc-1.0.25 \ + cfg-if-0.1.5 \ + chrono-0.4.6 \ + curl-sys-0.4.12 \ + failure-0.1.2 \ + failure_derive-0.1.2 \ + git2-0.7.5 \ + gumdrop-0.4.0 \ + gumdrop_derive-0.4.1 \ + idna-0.1.5 \ + isatty-0.1.9 \ + lazy_static-1.1.0 \ + libc-0.2.43 \ + libgit2-sys-0.7.10 \ + libssh2-sys-0.2.11 \ + libz-sys-1.0.23 \ + log-0.4.5 \ + matches-0.1.8 \ + num-integer-0.1.39 \ + num-traits-0.2.6 \ + openssl-probe-0.1.2 \ + openssl-sys-0.9.36 \ + percent-encoding-1.0.1 \ + pkg-config-0.3.14 \ + platforms-0.1.4 \ + proc-macro2-0.3.8 \ + proc-macro2-0.4.20 \ + quote-0.5.2 \ + quote-0.6.8 \ + redox_syscall-0.1.40 \ + rustc-demangle-0.1.9 \ + rustsec-0.9.1 \ + semver-0.9.0 \ + semver-parser-0.7.0 \ + serde-1.0.79 \ + serde_derive-1.0.79 \ + syn-0.13.11 \ + syn-0.14.9 \ + syn-0.15.8 \ + synstructure-0.9.0 \ + term-0.5.1 \ + time-0.1.40 \ + toml-0.4.8 \ + unicode-bidi-0.3.4 \ + unicode-normalization-0.1.7 \ + unicode-xid-0.1.0 \ + url-1.7.1 \ + vcpkg-0.2.6 \ + version_check-0.1.5 \ + winapi-0.3.6 \ + winapi-i686-pc-windows-gnu-0.4.0 \ + winapi-x86_64-pc-windows-gnu-0.4.0 + +PLIST_FILES= bin/cargo-audit + +post-install: + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/cargo-audit + +.include diff --git a/security/cargo-audit/distinfo b/security/cargo-audit/distinfo new file mode 100644 index 00000000000..4e85d0c61a2 --- /dev/null +++ b/security/cargo-audit/distinfo @@ -0,0 +1,115 @@ +TIMESTAMP = 1538801870 +SHA256 (rust/crates/backtrace-0.3.9.tar.gz) = 89a47830402e9981c5c41223151efcced65a0510c13097c769cede7efb34782a +SIZE (rust/crates/backtrace-0.3.9.tar.gz) = 31054 +SHA256 (rust/crates/backtrace-sys-0.1.24.tar.gz) = c66d56ac8dabd07f6aacdaf633f4b8262f5b3601a810a0dcddffd5c22c69daa0 +SIZE (rust/crates/backtrace-sys-0.1.24.tar.gz) = 522332 +SHA256 (rust/crates/bitflags-1.0.4.tar.gz) = 228047a76f468627ca71776ecdebd732a3423081fcf5125585bcd7c49886ce12 +SIZE (rust/crates/bitflags-1.0.4.tar.gz) = 15282 +SHA256 (rust/crates/byteorder-1.2.6.tar.gz) = 90492c5858dd7d2e78691cfb89f90d273a2800fc11d98f60786e5d87e2f83781 +SIZE (rust/crates/byteorder-1.2.6.tar.gz) = 19985 +SHA256 (rust/crates/cc-1.0.25.tar.gz) = f159dfd43363c4d08055a07703eb7a3406b0dac4d0584d96965a3262db3c9d16 +SIZE (rust/crates/cc-1.0.25.tar.gz) = 43191 +SHA256 (rust/crates/cfg-if-0.1.5.tar.gz) = 0c4e7bb64a8ebb0d856483e1e682ea3422f883c5f5615a90d51a2c82fe87fdd3 +SIZE (rust/crates/cfg-if-0.1.5.tar.gz) = 7363 +SHA256 (rust/crates/chrono-0.4.6.tar.gz) = 45912881121cb26fad7c38c17ba7daa18764771836b34fab7d3fbd93ed633878 +SIZE (rust/crates/chrono-0.4.6.tar.gz) = 133108 +SHA256 (rust/crates/curl-sys-0.4.12.tar.gz) = 78800a6de442f65dab6ce26c6f369c14fc585686432bf4b77119d2d384216c31 +SIZE (rust/crates/curl-sys-0.4.12.tar.gz) = 2859726 +SHA256 (rust/crates/failure-0.1.2.tar.gz) = 7efb22686e4a466b1ec1a15c2898f91fa9cb340452496dca654032de20ff95b9 +SIZE (rust/crates/failure-0.1.2.tar.gz) = 31820 +SHA256 (rust/crates/failure_derive-0.1.2.tar.gz) = 946d0e98a50d9831f5d589038d2ca7f8f455b1c21028c0db0e84116a12696426 +SIZE (rust/crates/failure_derive-0.1.2.tar.gz) = 4326 +SHA256 (rust/crates/git2-0.7.5.tar.gz) = 591f8be1674b421644b6c030969520bc3fa12114d2eb467471982ed3e9584e71 +SIZE (rust/crates/git2-0.7.5.tar.gz) = 145895 +SHA256 (rust/crates/gumdrop-0.4.0.tar.gz) = b776c41038e3c3b6b2fb188cfda9282b3caed6b964749836ce1a763a8e0b9449 +SIZE (rust/crates/gumdrop-0.4.0.tar.gz) = 13794 +SHA256 (rust/crates/gumdrop_derive-0.4.1.tar.gz) = d51865073dd492ad5b545835557c854dbdf826f72c5ca343d1c3a6ab71185e30 +SIZE (rust/crates/gumdrop_derive-0.4.1.tar.gz) = 9022 +SHA256 (rust/crates/idna-0.1.5.tar.gz) = 38f09e0f0b1fb55fdee1f17470ad800da77af5186a1a76c026b679358b7e844e +SIZE (rust/crates/idna-0.1.5.tar.gz) = 258735 +SHA256 (rust/crates/isatty-0.1.9.tar.gz) = e31a8281fc93ec9693494da65fbf28c0c2aa60a2eaec25dc58e2f31952e95edc +SIZE (rust/crates/isatty-0.1.9.tar.gz) = 8009 +SHA256 (rust/crates/lazy_static-1.1.0.tar.gz) = ca488b89a5657b0a2ecd45b95609b3e848cf1755da332a0da46e2b2b1cb371a7 +SIZE (rust/crates/lazy_static-1.1.0.tar.gz) = 12317 +SHA256 (rust/crates/libc-0.2.43.tar.gz) = 76e3a3ef172f1a0b9a9ff0dd1491ae5e6c948b94479a3021819ba7d860c8645d +SIZE (rust/crates/libc-0.2.43.tar.gz) = 353810 +SHA256 (rust/crates/libgit2-sys-0.7.10.tar.gz) = 4916b5addc78ec36cc309acfcdf0b9f9d97ab7b84083118b248709c5b7029356 +SIZE (rust/crates/libgit2-sys-0.7.10.tar.gz) = 1176435 +SHA256 (rust/crates/libssh2-sys-0.2.11.tar.gz) = 126a1f4078368b163bfdee65fbab072af08a1b374a5551b21e87ade27b1fbf9d +SIZE (rust/crates/libssh2-sys-0.2.11.tar.gz) = 458377 +SHA256 (rust/crates/libz-sys-1.0.23.tar.gz) = c7bdca442aa002a930e6eb2a71916cabe46d91ffec8df66db0abfb1bc83469ab +SIZE (rust/crates/libz-sys-1.0.23.tar.gz) = 649632 +SHA256 (rust/crates/log-0.4.5.tar.gz) = d4fcce5fa49cc693c312001daf1d13411c4a5283796bac1084299ea3e567113f +SIZE (rust/crates/log-0.4.5.tar.gz) = 22221 +SHA256 (rust/crates/matches-0.1.8.tar.gz) = 7ffc5c5338469d4d3ea17d269fa8ea3512ad247247c30bd2df69e68309ed0a08 +SIZE (rust/crates/matches-0.1.8.tar.gz) = 2216 +SHA256 (rust/crates/num-integer-0.1.39.tar.gz) = e83d528d2677f0518c570baf2b7abdcf0cd2d248860b68507bdcb3e91d4c0cea +SIZE (rust/crates/num-integer-0.1.39.tar.gz) = 17881 +SHA256 (rust/crates/num-traits-0.2.6.tar.gz) = 0b3a5d7cc97d6d30d8b9bc8fa19bf45349ffe46241e8816f50f62f6d6aaabee1 +SIZE (rust/crates/num-traits-0.2.6.tar.gz) = 39923 +SHA256 (rust/crates/openssl-probe-0.1.2.tar.gz) = 77af24da69f9d9341038eba93a073b1fdaaa1b788221b00a69bce9e762cb32de +SIZE (rust/crates/openssl-probe-0.1.2.tar.gz) = 6427 +SHA256 (rust/crates/openssl-sys-0.9.36.tar.gz) = 409d77eeb492a1aebd6eb322b2ee72ff7c7496b4434d98b3bf8be038755de65e +SIZE (rust/crates/openssl-sys-0.9.36.tar.gz) = 44508 +SHA256 (rust/crates/percent-encoding-1.0.1.tar.gz) = 31010dd2e1ac33d5b46a5b413495239882813e0369f8ed8a5e266f173602f831 +SIZE (rust/crates/percent-encoding-1.0.1.tar.gz) = 10057 +SHA256 (rust/crates/pkg-config-0.3.14.tar.gz) = 676e8eb2b1b4c9043511a9b7bea0915320d7e502b0a079fb03f9635a5252b18c +SIZE (rust/crates/pkg-config-0.3.14.tar.gz) = 13565 +SHA256 (rust/crates/platforms-0.1.4.tar.gz) = fb9588d66c760a4652658d009a3a2dc0c00337a22638d3b207461f8fd5cd0377 +SIZE (rust/crates/platforms-0.1.4.tar.gz) = 19549 +SHA256 (rust/crates/proc-macro2-0.3.8.tar.gz) = 1b06e2f335f48d24442b35a19df506a835fb3547bc3c06ef27340da9acf5cae7 +SIZE (rust/crates/proc-macro2-0.3.8.tar.gz) = 24412 +SHA256 (rust/crates/proc-macro2-0.4.20.tar.gz) = 3d7b7eaaa90b4a90a932a9ea6666c95a389e424eff347f0f793979289429feee +SIZE (rust/crates/proc-macro2-0.4.20.tar.gz) = 30516 +SHA256 (rust/crates/quote-0.5.2.tar.gz) = 9949cfe66888ffe1d53e6ec9d9f3b70714083854be20fd5e271b232a017401e8 +SIZE (rust/crates/quote-0.5.2.tar.gz) = 14982 +SHA256 (rust/crates/quote-0.6.8.tar.gz) = dd636425967c33af890042c483632d33fa7a18f19ad1d7ea72e8998c6ef8dea5 +SIZE (rust/crates/quote-0.6.8.tar.gz) = 15530 +SHA256 (rust/crates/redox_syscall-0.1.40.tar.gz) = c214e91d3ecf43e9a4e41e578973adeb14b474f2bee858742d127af75a0112b1 +SIZE (rust/crates/redox_syscall-0.1.40.tar.gz) = 14745 +SHA256 (rust/crates/rustc-demangle-0.1.9.tar.gz) = bcfe5b13211b4d78e5c2cadfebd7769197d95c639c35a50057eb4c05de811395 +SIZE (rust/crates/rustc-demangle-0.1.9.tar.gz) = 11463 +SHA256 (rust/crates/rustsec-0.9.1.tar.gz) = 3f4993a05421dd4b44a4096d961d3446e9cb54ba0a5e932ddfa8d7b2883eed0c +SIZE (rust/crates/rustsec-0.9.1.tar.gz) = 22649 +SHA256 (rust/crates/semver-0.9.0.tar.gz) = 1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403 +SIZE (rust/crates/semver-0.9.0.tar.gz) = 17344 +SHA256 (rust/crates/semver-parser-0.7.0.tar.gz) = 388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3 +SIZE (rust/crates/semver-parser-0.7.0.tar.gz) = 10268 +SHA256 (rust/crates/serde-1.0.79.tar.gz) = 84257ccd054dc351472528c8587b4de2dbf0dc0fe2e634030c1a90bfdacebaa9 +SIZE (rust/crates/serde-1.0.79.tar.gz) = 72864 +SHA256 (rust/crates/serde_derive-1.0.79.tar.gz) = 31569d901045afbff7a9479f793177fe9259819aff10ab4f89ef69bbc5f567fe +SIZE (rust/crates/serde_derive-1.0.79.tar.gz) = 46506 +SHA256 (rust/crates/syn-0.13.11.tar.gz) = 14f9bf6292f3a61d2c716723fdb789a41bbe104168e6f496dc6497e531ea1b9b +SIZE (rust/crates/syn-0.13.11.tar.gz) = 134240 +SHA256 (rust/crates/syn-0.14.9.tar.gz) = 261ae9ecaa397c42b960649561949d69311f08eeaea86a65696e6e46517cf741 +SIZE (rust/crates/syn-0.14.9.tar.gz) = 135921 +SHA256 (rust/crates/syn-0.15.8.tar.gz) = 356d1c5043597c40489e9af2d2498c7fefc33e99b7d75b43be336c8a59b3e45e +SIZE (rust/crates/syn-0.15.8.tar.gz) = 143088 +SHA256 (rust/crates/synstructure-0.9.0.tar.gz) = 85bb9b7550d063ea184027c9b8c20ac167cd36d3e06b3a40bceb9d746dc1a7b7 +SIZE (rust/crates/synstructure-0.9.0.tar.gz) = 17651 +SHA256 (rust/crates/term-0.5.1.tar.gz) = 5e6b677dd1e8214ea1ef4297f85dbcbed8e8cdddb561040cc998ca2551c37561 +SIZE (rust/crates/term-0.5.1.tar.gz) = 39105 +SHA256 (rust/crates/time-0.1.40.tar.gz) = d825be0eb33fda1a7e68012d51e9c7f451dc1a69391e7fdc197060bb8c56667b +SIZE (rust/crates/time-0.1.40.tar.gz) = 29518 +SHA256 (rust/crates/toml-0.4.8.tar.gz) = 4a2ecc31b0351ea18b3fe11274b8db6e4d82bce861bbb22e6dbed40417902c65 +SIZE (rust/crates/toml-0.4.8.tar.gz) = 43888 +SHA256 (rust/crates/unicode-bidi-0.3.4.tar.gz) = 49f2bd0c6468a8230e1db229cff8029217cf623c767ea5d60bfbd42729ea54d5 +SIZE (rust/crates/unicode-bidi-0.3.4.tar.gz) = 32228 +SHA256 (rust/crates/unicode-normalization-0.1.7.tar.gz) = 6a0180bc61fc5a987082bfa111f4cc95c4caff7f9799f3e46df09163a937aa25 +SIZE (rust/crates/unicode-normalization-0.1.7.tar.gz) = 330545 +SHA256 (rust/crates/unicode-xid-0.1.0.tar.gz) = fc72304796d0818e357ead4e000d19c9c174ab23dc11093ac919054d20a6a7fc +SIZE (rust/crates/unicode-xid-0.1.0.tar.gz) = 16000 +SHA256 (rust/crates/url-1.7.1.tar.gz) = 2a321979c09843d272956e73700d12c4e7d3d92b2ee112b31548aef0d4efc5a6 +SIZE (rust/crates/url-1.7.1.tar.gz) = 68266 +SHA256 (rust/crates/vcpkg-0.2.6.tar.gz) = def296d3eb3b12371b2c7d0e83bfe1403e4db2d7a0bba324a12b21c4ee13143d +SIZE (rust/crates/vcpkg-0.2.6.tar.gz) = 9866 +SHA256 (rust/crates/version_check-0.1.5.tar.gz) = 914b1a6776c4c929a602fafd8bc742e06365d4bcbe48c30f9cca5824f70dc9dd +SIZE (rust/crates/version_check-0.1.5.tar.gz) = 8173 +SHA256 (rust/crates/winapi-0.3.6.tar.gz) = 92c1eb33641e276cfa214a0522acad57be5c56b10cb348b3c5117db75f3ac4b0 +SIZE (rust/crates/winapi-0.3.6.tar.gz) = 1029391 +SHA256 (rust/crates/winapi-i686-pc-windows-gnu-0.4.0.tar.gz) = ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6 +SIZE (rust/crates/winapi-i686-pc-windows-gnu-0.4.0.tar.gz) = 2918815 +SHA256 (rust/crates/winapi-x86_64-pc-windows-gnu-0.4.0.tar.gz) = 712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f +SIZE (rust/crates/winapi-x86_64-pc-windows-gnu-0.4.0.tar.gz) = 2947998 +SHA256 (RustSec-cargo-audit-v0.5.2_GH0.tar.gz) = 4b63c5c5aafdb0a1b4fe6e2cd361e5b3ee06ef57a32f0873ec7e82433ccf0d91 +SIZE (RustSec-cargo-audit-v0.5.2_GH0.tar.gz) = 82983 diff --git a/security/cargo-audit/pkg-descr b/security/cargo-audit/pkg-descr new file mode 100644 index 00000000000..6709e3681ce --- /dev/null +++ b/security/cargo-audit/pkg-descr @@ -0,0 +1,7 @@ +Audit Cargo.lock for crates with security vulnerabilities reported +to the RustSec Advisory Database. + +This is a PoC implementation of the closed RFC 1752: +https://github.com/rust-lang/rfcs/pull/1752 + +WWW: https://rustsec.org/ diff --git a/security/duo/Makefile b/security/duo/Makefile index 47570760341..2f1773e2747 100644 --- a/security/duo/Makefile +++ b/security/duo/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= duo -PORTVERSION= 1.10.1 +PORTVERSION= 1.10.5 CATEGORIES= security MASTER_SITES= https://dl.duosecurity.com/ \ ZI diff --git a/security/duo/distinfo b/security/duo/distinfo index fe739d7bd5c..11ec4948896 100644 --- a/security/duo/distinfo +++ b/security/duo/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1503152267 -SHA256 (duo_unix-1.10.1.tar.gz) = e2df2be50539c54c87cdc4964fdfee0fbd79a3f15fdfd807e94941291b5d6197 -SIZE (duo_unix-1.10.1.tar.gz) = 472431 +TIMESTAMP = 1538925489 +SHA256 (duo_unix-1.10.5.tar.gz) = c9057ca477a42f8c36ad19d402f910ddd78c93e2b19876d4e37c23b8367f08c1 +SIZE (duo_unix-1.10.5.tar.gz) = 467902 diff --git a/security/highwayhash/Makefile b/security/highwayhash/Makefile index f03fa2249ee..7d98082f52b 100644 --- a/security/highwayhash/Makefile +++ b/security/highwayhash/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= highwayhash -PORTVERSION= g20180626 +PORTVERSION= g20181002 CATEGORIES= security MAINTAINER= yuri@FreeBSD.org @@ -19,20 +19,10 @@ ONLY_FOR_ARCHS_REASON= Assembly is implemented only for specific architectures i USES= compiler:c++11-lib gmake USE_GITHUB= yes GH_ACCOUNT= google -GH_TAGNAME= 9099074 +GH_TAGNAME= c5ee50b USE_LDCONFIG= yes # workaround for https://github.com/google/highwayhash/issues/69 -MAKE_ARGS= INCDIR=${PREFIX}/include XLIBDIR=${PREFIX}/lib - -post-patch: - # Install flags upstream issue: https://github.com/google/highwayhash/issues/58 - @${REINPLACE_CMD} -e '\ - s|LIBDIR|XLIBDIR|; \ - s| -O3||; \ - s|install -m0755 high|${INSTALL_DATA} high|; \ - s|install -m0755 lib|${INSTALL_LIB} lib|' \ - ${WRKSRC}/Makefile post-install: # Symlink upstream issue: https://github.com/google/highwayhash/issues/57 diff --git a/security/highwayhash/distinfo b/security/highwayhash/distinfo index fb1a3215e8a..4ce40b45027 100644 --- a/security/highwayhash/distinfo +++ b/security/highwayhash/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1531106973 -SHA256 (google-highwayhash-g20180626-9099074_GH0.tar.gz) = f53b38584d4bbc09c021a08c32fe09396eed3315cfa3e354575997b0cdd4946e -SIZE (google-highwayhash-g20180626-9099074_GH0.tar.gz) = 152325 +TIMESTAMP = 1538491392 +SHA256 (google-highwayhash-g20181002-c5ee50b_GH0.tar.gz) = 728a25a21f9d9f4e0af418bc41167a666b9ea1ba9133f5211becef4f9a3fc47a +SIZE (google-highwayhash-g20181002-c5ee50b_GH0.tar.gz) = 153393 diff --git a/security/i2p/Makefile b/security/i2p/Makefile index 0576788a15a..6b09f109753 100644 --- a/security/i2p/Makefile +++ b/security/i2p/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= i2p -DISTVERSION= 0.9.36 +DISTVERSION= 0.9.37 CATEGORIES= security java net-p2p MASTER_SITES= SF/${PORTNAME:tl}/${PORTVERSION} \ http://download.i2p2.no/releases/${PORTVERSION}/ \ diff --git a/security/i2p/distinfo b/security/i2p/distinfo index c365a768767..1b6ba27310b 100644 --- a/security/i2p/distinfo +++ b/security/i2p/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1535587812 -SHA256 (i2psource_0.9.36.tar.bz2) = 148c0f86f000d833901e7182797f6fb6470c1b600344056c710e326789d0fd54 -SIZE (i2psource_0.9.36.tar.bz2) = 29856168 +TIMESTAMP = 1538789603 +SHA256 (i2psource_0.9.37.tar.bz2) = 0c3736572182519f4831201c72609f069229a2cc73d29ca135417c143061a18d +SIZE (i2psource_0.9.37.tar.bz2) = 30277506 diff --git a/security/ipsec-tools/Makefile b/security/ipsec-tools/Makefile index 857de765617..c61768a31ad 100644 --- a/security/ipsec-tools/Makefile +++ b/security/ipsec-tools/Makefile @@ -8,7 +8,7 @@ PORTNAME= ipsec-tools PORTVERSION= 0.8.2 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= security MASTER_SITES= SF @@ -38,12 +38,12 @@ PLIST_SUB+= STATEDIR=${STATEDIR} OPTIONS_DEFINE= DEBUG IPV6 ADMINPORT STATS DPD NATT NATTF FRAG HYBRID PAM \ RADIUS LDAP GSSAPI SAUNSPEC RC5 IDEA DOCS EXAMPLES WCPSKEY -OPTIONS_DEFAULT= DEBUG DPD NATT FRAG HYBRID +OPTIONS_DEFAULT= ADMINPORT DEBUG DPD NATT FRAG HYBRID WCPSKEY ADMINPORT_DESC= Enable Admin port STATS_DESC= Statistics logging function DPD_DESC= Dead Peer Detection -NATT_DESC= NAT-Traversal (kernel-patch required before 11.0-STABLE) +NATT_DESC= NAT-Traversal (kernel-patch required before 11.1) NATTF_DESC= require NAT-Traversal (fail without kernel-patch) FRAG_DESC= IKE fragmentation payload support HYBRID_DESC= Hybrid, Xauth and Mode-cfg support diff --git a/security/keybase/Makefile b/security/keybase/Makefile index e9e0b02c0a4..6aa4d7c74bb 100644 --- a/security/keybase/Makefile +++ b/security/keybase/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= keybase -PORTVERSION= 2.6.2 +PORTVERSION= 2.7.2 DISTVERSIONPREFIX= v CATEGORIES= security diff --git a/security/keybase/distinfo b/security/keybase/distinfo index fe3f48c366a..09f9aad5232 100644 --- a/security/keybase/distinfo +++ b/security/keybase/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1537547474 -SHA256 (keybase-client-v2.6.2_GH0.tar.gz) = 79e72947908b1e7983ab2395d06d66c8ac93bebd28850674929fdc41690d0e15 -SIZE (keybase-client-v2.6.2_GH0.tar.gz) = 34597476 +TIMESTAMP = 1538662953 +SHA256 (keybase-client-v2.7.2_GH0.tar.gz) = 8cedf2d55d9dd29dc8b57e1751feb8979f6002190b18ee49175d85880f42600d +SIZE (keybase-client-v2.7.2_GH0.tar.gz) = 34649996 diff --git a/security/lynis/Makefile b/security/lynis/Makefile index b3ee5165952..46e73321563 100644 --- a/security/lynis/Makefile +++ b/security/lynis/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= lynis -PORTVERSION= 2.6.8 +PORTVERSION= 2.6.9 CATEGORIES= security MASTER_SITES= https://cisofy.com/files/ diff --git a/security/lynis/distinfo b/security/lynis/distinfo index 2f3f84beb36..345e92f0154 100644 --- a/security/lynis/distinfo +++ b/security/lynis/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1535032830 -SHA256 (lynis-2.6.8.tar.gz) = 2e4c5157a4f2d9bb37d3f0f1f5bea03f92233a2a7d4df6eddf231a784087dfac -SIZE (lynis-2.6.8.tar.gz) = 275539 +TIMESTAMP = 1538754347 +SHA256 (lynis-2.6.9.tar.gz) = 8fc68ef7f643327cbe0eb3616015d59225649ee4eccc2a632707857a573eb468 +SIZE (lynis-2.6.9.tar.gz) = 276156 diff --git a/security/openssl111/Makefile b/security/openssl111/Makefile index 9fe27384df1..caf88744685 100644 --- a/security/openssl111/Makefile +++ b/security/openssl111/Makefile @@ -25,6 +25,16 @@ CONFIGURE_SCRIPT= config CONFIGURE_ENV= PERL="${PERL}" CONFIGURE_ARGS= --openssldir=${OPENSSLDIR} +USES= cpe perl5 +USE_PERL5= build +TEST_TARGET= test + +LDFLAGS_i386= -Wl,-znotext +#LDFLAGS= ${LDFLAGS_${ARCH}} + +MAKE_ARGS+= WHOLE_ARCHIVE_FLAG=--whole-archive CNF_LDFLAGS="${LDFLAGS}" +MAKE_ENV+= LIBRPATH="${PREFIX}/lib" GREP_OPTIONS= + OPTIONS_GROUP= CIPHERS HASHES OPTIMIZE PROTOCOLS OPTIONS_GROUP_CIPHERS= ARIA DES GOST IDEA SM2 SM3 SM4 RC2 RC4 RC5 OPTIONS_GROUP_HASHES= MD2 MD4 MDC2 RMD160 @@ -45,6 +55,8 @@ OPTIONS_GROUP_OPTIMIZE+= EC OPTIONS_GROUP_OPTIMIZE+= EC .endif +OPTIONS_SUB= yes + ARIA_DESC= ARIA (South Korean standard) ASM_DESC= Assembler code ASYNC_DESC= Asynchronous mode @@ -80,14 +92,6 @@ TLS1_1_DESC= TLSv1.1 (requires TLS1_2) TLS1_2_DESC= TLSv1.2 ZLIB_DESC= zlib compression support -OPTIONS_SUB= yes - -USES= cpe perl5 -USE_PERL5= build -MAKE_ARGS+= WHOLE_ARCHIVE_FLAG=--whole-archive -MAKE_ENV+= LIBRPATH="${PREFIX}/lib" GREP_OPTIONS= -TEST_TARGET= test - # Upstream default disabled options .for _option in md2 rc5 sctp ssl3 zlib ${_option:tu}_CONFIGURE_ON= enable-${_option} @@ -95,7 +99,7 @@ ${_option:tu}_CONFIGURE_ON= enable-${_option} # Upstream default enabled options .for _option in aria asm async ct des gost idea md4 mdc2 nextprotoneg \ - rfc3779 rmd160 sm2 sm3 sm4 sse2 threads tls1 tls1_1 tls1_2 + rfc3779 rmd160 shared sm2 sm3 sm4 sse2 threads tls1 tls1_1 tls1_2 ${_option:tu}_CONFIGURE_OFF= no-${_option} .endfor @@ -132,6 +136,7 @@ post-patch: -e 's| install_html_docs$$||' \ -e 's|$$(LIBDIR)/pkgconfig|libdata/pkgconfig|g' \ ${WRKSRC}/Configurations/unix-Makefile.tmpl + ${REINPLACE_CMD} -e 's|\^GNU ld|GNU|' ${WRKSRC}/Configurations/shared-info.pl post-configure: ${REINPLACE_CMD} \ diff --git a/security/p5-Apache-Htpasswd/Makefile b/security/p5-Apache-Htpasswd/Makefile index 1b4a6fdec36..77a75489af9 100644 --- a/security/p5-Apache-Htpasswd/Makefile +++ b/security/p5-Apache-Htpasswd/Makefile @@ -14,10 +14,10 @@ COMMENT= Manage Unix crypt-style password file LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Crypt-PasswdMD5>=0:security/p5-Crypt-PasswdMD5 \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Crypt-PasswdMD5>=0:security/p5-Crypt-PasswdMD5 \ p5-Digest-SHA1>=2.0:security/p5-Digest-SHA1 \ p5-MIME-Base64>=0:converters/p5-MIME-Base64 -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/security/p5-App-Genpass/Makefile b/security/p5-App-Genpass/Makefile index 743f98127d5..9888be969fc 100644 --- a/security/p5-App-Genpass/Makefile +++ b/security/p5-App-Genpass/Makefile @@ -15,14 +15,14 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Config-Any>=0:devel/p5-Config-Any \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Config-Any>=0:devel/p5-Config-Any \ p5-File-HomeDir>=0:devel/p5-File-HomeDir \ p5-List-AllUtils>=0:devel/p5-List-AllUtils \ p5-Math-Random-Secure>=0.06:math/p5-Math-Random-Secure \ p5-Moo>=0:devel/p5-Moo \ p5-MooX-Types-MooseLike>=0:devel/p5-MooX-Types-MooseLike \ p5-namespace-clean>=0.20:devel/p5-namespace-clean -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-List-MoreUtils>=0:lang/p5-List-MoreUtils \ p5-Test-Deep>=0:devel/p5-Test-Deep diff --git a/security/p5-AuthCAS/Makefile b/security/p5-AuthCAS/Makefile index e114e8eeff9..e9690fcb232 100644 --- a/security/p5-AuthCAS/Makefile +++ b/security/p5-AuthCAS/Makefile @@ -15,10 +15,10 @@ COMMENT= Perl API to Yale's Central Authentication System (CAS) LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-libwww>=0:www/p5-libwww \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-libwww>=0:www/p5-libwww \ p5-IO-Socket-SSL>=0:security/p5-IO-Socket-SSL -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 shebangfix SHEBANG_FILES= sampleCasClient.pl diff --git a/security/p5-Authen-Captcha/Makefile b/security/p5-Authen-Captcha/Makefile index 4d39360fce8..fc30b76319f 100644 --- a/security/p5-Authen-Captcha/Makefile +++ b/security/p5-Authen-Captcha/Makefile @@ -12,8 +12,8 @@ COMMENT= Perl module to verify the human element in transactions LICENSE= GPLv2 -BUILD_DEPENDS= p5-GD>=0:graphics/p5-GD -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-GD>=0:graphics/p5-GD USES= perl5 USE_PERL5= configure diff --git a/security/p5-Authen-DecHpwd/Makefile b/security/p5-Authen-DecHpwd/Makefile index 0bea3984152..8bf78945f90 100644 --- a/security/p5-Authen-DecHpwd/Makefile +++ b/security/p5-Authen-DecHpwd/Makefile @@ -12,10 +12,10 @@ COMMENT= Perl module for DEC VMS password hashing LICENSE= GPLv2+ -BUILD_DEPENDS= p5-Data-Integer>=0:devel/p5-Data-Integer \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Data-Integer>=0:devel/p5-Data-Integer \ p5-Digest-CRC>=0:security/p5-Digest-CRC \ p5-Scalar-String>=0:devel/p5-Scalar-String -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= modbuild diff --git a/security/p5-Authen-OATH/Makefile b/security/p5-Authen-OATH/Makefile index 1c2c8f30667..e9e455b4b35 100644 --- a/security/p5-Authen-OATH/Makefile +++ b/security/p5-Authen-OATH/Makefile @@ -15,10 +15,10 @@ COMMENT= OATH one time passwords implementation LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Digest-HMAC>0:security/p5-Digest-HMAC \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Digest-HMAC>0:security/p5-Digest-HMAC \ p5-Digest-SHA1>0:security/p5-Digest-SHA1 \ p5-Moose>0:devel/p5-Moose -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/security/p5-Authen-PAAS/Makefile b/security/p5-Authen-PAAS/Makefile index 31e83511afc..b2726790ca9 100644 --- a/security/p5-Authen-PAAS/Makefile +++ b/security/p5-Authen-PAAS/Makefile @@ -13,9 +13,9 @@ COMMENT= Perl Authentication & Authorization Service LICENSE= GPLv2 -BUILD_DEPENDS= p5-Config-Record>=1.1.0:devel/p5-Config-Record \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Config-Record>=1.1.0:devel/p5-Config-Record \ p5-Log-Log4perl>=0:devel/p5-Log-Log4perl -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/security/p5-Authen-Passphrase/Makefile b/security/p5-Authen-Passphrase/Makefile index 3e5a9cd1671..486b9dc8fda 100644 --- a/security/p5-Authen-Passphrase/Makefile +++ b/security/p5-Authen-Passphrase/Makefile @@ -14,7 +14,8 @@ COMMENT= Perl module for handling hashed passwords/passphrases as objects LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Authen-DecHpwd>=0:security/p5-Authen-DecHpwd \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Authen-DecHpwd>=0:security/p5-Authen-DecHpwd \ p5-Crypt-Blowfish>=0:security/p5-Crypt-Blowfish \ p5-Crypt-DES>=0:security/p5-Crypt-DES \ p5-Crypt-Eksblowfish>=0:security/p5-Crypt-Eksblowfish \ @@ -25,7 +26,6 @@ BUILD_DEPENDS= p5-Authen-DecHpwd>=0:security/p5-Authen-DecHpwd \ p5-Digest-MD4>=0:security/p5-Digest-MD4 \ p5-Module-Runtime>=0:devel/p5-Module-Runtime \ p5-Params-Classify>=0:devel/p5-Params-Classify -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= modbuild diff --git a/security/p5-Authen-PluggableCaptcha/Makefile b/security/p5-Authen-PluggableCaptcha/Makefile index f56a063c52e..6d85bd93da8 100644 --- a/security/p5-Authen-PluggableCaptcha/Makefile +++ b/security/p5-Authen-PluggableCaptcha/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Pluggable Captcha framework for Perl -BUILD_DEPENDS= p5-Number-Spell>=0:textproc/p5-Number-Spell \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Number-Spell>=0:textproc/p5-Number-Spell \ p5-HTML-Email-Obfuscate>=0:security/p5-HTML-Email-Obfuscate -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/security/p5-Authen-Radius/Makefile b/security/p5-Authen-Radius/Makefile index 7011b3c40b2..2558d7ef8dd 100644 --- a/security/p5-Authen-Radius/Makefile +++ b/security/p5-Authen-Radius/Makefile @@ -13,9 +13,9 @@ COMMENT= Perl5 module to provide simple Radius client facilities LICENSE= ART20 LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Data-HexDump>=0.02:devel/p5-Data-HexDump \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Data-HexDump>=0.02:devel/p5-Data-HexDump \ p5-Net-IP>=1.26:net-mgmt/p5-Net-IP -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-NoWarnings>=0:devel/p5-Test-NoWarnings REINPLACE_ARGS= -i '' diff --git a/security/p5-Authen-SASL-Cyrus/Makefile b/security/p5-Authen-SASL-Cyrus/Makefile index d5a26b91606..177c6f50361 100644 --- a/security/p5-Authen-SASL-Cyrus/Makefile +++ b/security/p5-Authen-SASL-Cyrus/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= XS SASL Authentication -BUILD_DEPENDS= p5-Authen-SASL>=0:security/p5-Authen-SASL +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Authen-SASL>=0:security/p5-Authen-SASL LIB_DEPENDS= libsasl2.so:security/cyrus-sasl2 -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/security/p5-Authen-SASL-SASLprep/Makefile b/security/p5-Authen-SASL-SASLprep/Makefile index 45fbbc0ed5f..1032b67c64c 100644 --- a/security/p5-Authen-SASL-SASLprep/Makefile +++ b/security/p5-Authen-SASL-SASLprep/Makefile @@ -14,8 +14,8 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Unicode-Stringprep>=1:converters/p5-Unicode-Stringprep -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Unicode-Stringprep>=1:converters/p5-Unicode-Stringprep TEST_DEPENDS= p5-Test-NoWarnings>=0:devel/p5-Test-NoWarnings NO_ARCH= yes diff --git a/security/p5-Authen-SASL/Makefile b/security/p5-Authen-SASL/Makefile index 8ab0572fc6b..329d85849d1 100644 --- a/security/p5-Authen-SASL/Makefile +++ b/security/p5-Authen-SASL/Makefile @@ -14,8 +14,8 @@ COMMENT= Perl5 module for SASL authentication LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Digest-HMAC>0:security/p5-Digest-HMAC -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Digest-HMAC>0:security/p5-Digest-HMAC OPTIONS_DEFINE= KERBEROS OPTIONS_DEFAULT=KERBEROS diff --git a/security/p5-Authen-SCRAM/Makefile b/security/p5-Authen-SCRAM/Makefile index 31ca339d440..543d2e15584 100644 --- a/security/p5-Authen-SCRAM/Makefile +++ b/security/p5-Authen-SCRAM/Makefile @@ -13,14 +13,14 @@ COMMENT= Salted Challenge Response Authentication Mechanism (RFC 5802) LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Authen-SASL-SASLprep>=1.100:security/p5-Authen-SASL-SASLprep \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Authen-SASL-SASLprep>=1.100:security/p5-Authen-SASL-SASLprep \ p5-Crypt-URandom>=0:security/p5-Crypt-URandom \ p5-Moo>=1.001000:devel/p5-Moo \ p5-PBKDF2-Tiny>=0.003:security/p5-PBKDF2-Tiny \ p5-Try-Tiny>=0:lang/p5-Try-Tiny \ p5-Type-Tiny>=0:devel/p5-Type-Tiny \ p5-namespace-clean>=0:devel/p5-namespace-clean -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-FailWarnings>=0:devel/p5-Test-FailWarnings \ p5-Test-Fatal>=0:devel/p5-Test-Fatal diff --git a/security/p5-Authen-Simple-DBI/Makefile b/security/p5-Authen-Simple-DBI/Makefile index d6017d5596a..9801ca6f647 100644 --- a/security/p5-Authen-Simple-DBI/Makefile +++ b/security/p5-Authen-Simple-DBI/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Simple DBI authentication -BUILD_DEPENDS= p5-Authen-Simple>=0:security/p5-Authen-Simple \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Authen-Simple>=0:security/p5-Authen-Simple \ p5-DBI>=0:databases/p5-DBI -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= modbuild diff --git a/security/p5-Authen-Simple-DBM/Makefile b/security/p5-Authen-Simple-DBM/Makefile index 72164514441..bee86f943a3 100644 --- a/security/p5-Authen-Simple-DBM/Makefile +++ b/security/p5-Authen-Simple-DBM/Makefile @@ -14,8 +14,8 @@ COMMENT= Simple DBM authentication LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Authen-Simple>=0:security/p5-Authen-Simple -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Authen-Simple>=0:security/p5-Authen-Simple USES= perl5 USE_PERL5= modbuild diff --git a/security/p5-Authen-Simple-HTTP/Makefile b/security/p5-Authen-Simple-HTTP/Makefile index af294cbafe0..9c4d0fae225 100644 --- a/security/p5-Authen-Simple-HTTP/Makefile +++ b/security/p5-Authen-Simple-HTTP/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Simple HTTP authentication -BUILD_DEPENDS= p5-Authen-Simple>=0:security/p5-Authen-Simple \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Authen-Simple>=0:security/p5-Authen-Simple \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= modbuild diff --git a/security/p5-Authen-Simple-Kerberos/Makefile b/security/p5-Authen-Simple-Kerberos/Makefile index 99ca3ad4c1f..0789621314a 100644 --- a/security/p5-Authen-Simple-Kerberos/Makefile +++ b/security/p5-Authen-Simple-Kerberos/Makefile @@ -9,9 +9,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= hrs@FreeBSD.org COMMENT= Simple Kerberos authentication -BUILD_DEPENDS= p5-Authen-Simple>=0:security/p5-Authen-Simple \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Authen-Simple>=0:security/p5-Authen-Simple \ p5-Authen-Krb5-Simple>=0:security/p5-Authen-Krb5-Simple -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= modbuild diff --git a/security/p5-Authen-Simple-LDAP/Makefile b/security/p5-Authen-Simple-LDAP/Makefile index 0ef9a821c42..eb38a2ae77f 100644 --- a/security/p5-Authen-Simple-LDAP/Makefile +++ b/security/p5-Authen-Simple-LDAP/Makefile @@ -14,9 +14,9 @@ COMMENT= Simple LDAP authentication LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Authen-Simple>=0:security/p5-Authen-Simple \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Authen-Simple>=0:security/p5-Authen-Simple \ p5-perl-ldap>=0:net/p5-perl-ldap -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USE_PERL5= configure diff --git a/security/p5-Authen-Simple-Net/Makefile b/security/p5-Authen-Simple-Net/Makefile index 86d3d94fe96..2d60579fef4 100644 --- a/security/p5-Authen-Simple-Net/Makefile +++ b/security/p5-Authen-Simple-Net/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Simple authentication via FTP, POP3, or SMTP -BUILD_DEPENDS= p5-Authen-Simple>=0:security/p5-Authen-Simple -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Authen-Simple>=0:security/p5-Authen-Simple USES= perl5 USE_PERL5= modbuild diff --git a/security/p5-Authen-Simple-PAM/Makefile b/security/p5-Authen-Simple-PAM/Makefile index c8dd617e355..b597d2e7e60 100644 --- a/security/p5-Authen-Simple-PAM/Makefile +++ b/security/p5-Authen-Simple-PAM/Makefile @@ -14,9 +14,9 @@ COMMENT= Simple PAM authentication LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Authen-Simple>=0:security/p5-Authen-Simple \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Authen-Simple>=0:security/p5-Authen-Simple \ p5-Authen-PAM>=0:security/p5-Authen-PAM -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= modbuild diff --git a/security/p5-Authen-Simple-Passwd/Makefile b/security/p5-Authen-Simple-Passwd/Makefile index 29dbae30990..edb70bb0bdb 100644 --- a/security/p5-Authen-Simple-Passwd/Makefile +++ b/security/p5-Authen-Simple-Passwd/Makefile @@ -14,8 +14,8 @@ COMMENT= Simple Passwd authentication LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Authen-Simple>=0:security/p5-Authen-Simple -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Authen-Simple>=0:security/p5-Authen-Simple USES= perl5 USE_PERL5= modbuild diff --git a/security/p5-Authen-Simple-RADIUS/Makefile b/security/p5-Authen-Simple-RADIUS/Makefile index 3be394c6eef..f4d12d3abc6 100644 --- a/security/p5-Authen-Simple-RADIUS/Makefile +++ b/security/p5-Authen-Simple-RADIUS/Makefile @@ -14,9 +14,9 @@ COMMENT= Simple RADIUS authentication LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Authen-Simple>=0:security/p5-Authen-Simple \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Authen-Simple>=0:security/p5-Authen-Simple \ p5-Authen-Radius>=0:security/p5-Authen-Radius -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= modbuild diff --git a/security/p5-Authen-Simple-SMB/Makefile b/security/p5-Authen-Simple-SMB/Makefile index cb4a53cf265..de2ae7ec280 100644 --- a/security/p5-Authen-Simple-SMB/Makefile +++ b/security/p5-Authen-Simple-SMB/Makefile @@ -14,9 +14,9 @@ COMMENT= Simple SMB authentication LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Authen-Simple>=0:security/p5-Authen-Simple \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Authen-Simple>=0:security/p5-Authen-Simple \ p5-Authen-Smb>=0:security/p5-Authen-Smb -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= modbuild diff --git a/security/p5-Authen-Simple-SSH/Makefile b/security/p5-Authen-Simple-SSH/Makefile index 4382652f92c..b1b354a57ad 100644 --- a/security/p5-Authen-Simple-SSH/Makefile +++ b/security/p5-Authen-Simple-SSH/Makefile @@ -14,9 +14,9 @@ COMMENT= Simple SSH authentication LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Authen-Simple>=0:security/p5-Authen-Simple \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Authen-Simple>=0:security/p5-Authen-Simple \ p5-Net-SSH-Perl>=0:net/p5-Net-SSH-Perl -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/security/p5-Authen-Simple/Makefile b/security/p5-Authen-Simple/Makefile index 3c3212b48d0..d2980a1dc7a 100644 --- a/security/p5-Authen-Simple/Makefile +++ b/security/p5-Authen-Simple/Makefile @@ -14,11 +14,11 @@ COMMENT= Simple authentication framework LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Class-Accessor>=0:devel/p5-Class-Accessor \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Accessor>=0:devel/p5-Class-Accessor \ p5-Class-Data-Inheritable>=0:devel/p5-Class-Data-Inheritable \ p5-Crypt-PasswdMD5>=0:security/p5-Crypt-PasswdMD5 \ p5-Params-Validate>=0:devel/p5-Params-Validate -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USE_PERL5= configure diff --git a/security/p5-Authen-TypeKey/Makefile b/security/p5-Authen-TypeKey/Makefile index 401f86b8b24..7deb1a9b57b 100644 --- a/security/p5-Authen-TypeKey/Makefile +++ b/security/p5-Authen-TypeKey/Makefile @@ -14,11 +14,11 @@ COMMENT= TypeKey authentication verification LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Class-ErrorHandler>=0:devel/p5-Class-ErrorHandler \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-ErrorHandler>=0:devel/p5-Class-ErrorHandler \ p5-Digest-SHA1>=0:security/p5-Digest-SHA1 \ p5-libwww>=0:www/p5-libwww \ p5-Module-Install>0:devel/p5-Module-Install -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USE_PERL5= configure diff --git a/security/p5-Bytes-Random-Secure/Makefile b/security/p5-Bytes-Random-Secure/Makefile index 008f4beaae5..4ef8fea8cbb 100644 --- a/security/p5-Bytes-Random-Secure/Makefile +++ b/security/p5-Bytes-Random-Secure/Makefile @@ -13,9 +13,9 @@ COMMENT= Generate cryptographically-secure random bytes LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Crypt-Random-Seed>=0:security/p5-Crypt-Random-Seed \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Crypt-Random-Seed>=0:security/p5-Crypt-Random-Seed \ p5-Math-Random-ISAAC>=0:math/p5-Math-Random-ISAAC -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USE_PERL5= configure diff --git a/security/p5-CSP/Makefile b/security/p5-CSP/Makefile index 787854800c8..5513c68a669 100644 --- a/security/p5-CSP/Makefile +++ b/security/p5-CSP/Makefile @@ -12,10 +12,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= lx@FreeBSD.org COMMENT= Perl tool for managing Certificate Authorities -BUILD_DEPENDS= p5-Date-Calc>=0:devel/p5-Date-Calc \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Date-Calc>=0:devel/p5-Date-Calc \ p5-Term-Prompt>=0:devel/p5-Term-Prompt \ p5-IPC-Run>=0:devel/p5-IPC-Run -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/security/p5-Crypt-CBCeasy/Makefile b/security/p5-Crypt-CBCeasy/Makefile index 8b2d0dcf94f..69da65ed79f 100644 --- a/security/p5-Crypt-CBCeasy/Makefile +++ b/security/p5-Crypt-CBCeasy/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Easy things make really easy with Crypt::CBC -BUILD_DEPENDS= p5-Crypt-CBC>=0:security/p5-Crypt-CBC \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Crypt-CBC>=0:security/p5-Crypt-CBC \ p5-MD5>=0:security/p5-MD5 -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/security/p5-Crypt-Ctr/Makefile b/security/p5-Crypt-Ctr/Makefile index 08db65f82d1..c18804c3e7e 100644 --- a/security/p5-Crypt-Ctr/Makefile +++ b/security/p5-Crypt-Ctr/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= ashish@FreeBSD.org COMMENT= Perl extension for encrypting data in Counter Mode -BUILD_DEPENDS= p5-Crypt-CFB>=0:security/p5-Crypt-CFB -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Crypt-CFB>=0:security/p5-Crypt-CFB USES= perl5 USE_PERL5= configure diff --git a/security/p5-Crypt-DES/Makefile b/security/p5-Crypt-DES/Makefile index 8239c287f24..3d92bc36a75 100644 --- a/security/p5-Crypt-DES/Makefile +++ b/security/p5-Crypt-DES/Makefile @@ -14,8 +14,8 @@ COMMENT= Perl5 interface to DES block cipher LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/COPYRIGHT -BUILD_DEPENDS= p5-Crypt-CBC>=0:security/p5-Crypt-CBC -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Crypt-CBC>=0:security/p5-Crypt-CBC USES= perl5 USE_PERL5= configure diff --git a/security/p5-Crypt-DES_EDE3/Makefile b/security/p5-Crypt-DES_EDE3/Makefile index 7247f5afa2d..7d559b6adda 100644 --- a/security/p5-Crypt-DES_EDE3/Makefile +++ b/security/p5-Crypt-DES_EDE3/Makefile @@ -14,8 +14,8 @@ COMMENT= Perl5 interface to a implementing 3-DES EDE encryption and decryption LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Crypt-DES>=0:security/p5-Crypt-DES -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Crypt-DES>=0:security/p5-Crypt-DES USES= perl5 USE_PERL5= configure diff --git a/security/p5-Crypt-Dining/Makefile b/security/p5-Crypt-Dining/Makefile index 28ae2dada0c..512499330e2 100644 --- a/security/p5-Crypt-Dining/Makefile +++ b/security/p5-Crypt-Dining/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= The Dining Cryptographers' Protocol -BUILD_DEPENDS= p5-Crypt-Random>=0:security/p5-Crypt-Random \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Crypt-Random>=0:security/p5-Crypt-Random \ p5-Net-Address-IPv4-Local>=0:net/p5-Net-Address-IPv4-Local -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/security/p5-Crypt-Eksblowfish/Makefile b/security/p5-Crypt-Eksblowfish/Makefile index ae41e953d22..f8d742fde09 100644 --- a/security/p5-Crypt-Eksblowfish/Makefile +++ b/security/p5-Crypt-Eksblowfish/Makefile @@ -14,8 +14,8 @@ COMMENT= Perl module for the Eksblowfish block cipher LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Class-Mix>=0:devel/p5-Class-Mix -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Mix>=0:devel/p5-Class-Mix USES= perl5 USE_PERL5= modbuild diff --git a/security/p5-Crypt-HCE_SHA/Makefile b/security/p5-Crypt-HCE_SHA/Makefile index be94d4b9d9a..55af9c1dfd4 100644 --- a/security/p5-Crypt-HCE_SHA/Makefile +++ b/security/p5-Crypt-HCE_SHA/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= skreuzer@FreeBSD.org COMMENT= Perl5 interface to one way hash chaining block cipher -BUILD_DEPENDS= p5-Digest-SHA1>=0:security/p5-Digest-SHA1 -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Digest-SHA1>=0:security/p5-Digest-SHA1 USES= perl5 USE_PERL5= configure diff --git a/security/p5-Crypt-Lite/Makefile b/security/p5-Crypt-Lite/Makefile index bf0d0b525da..252d4a23e9f 100644 --- a/security/p5-Crypt-Lite/Makefile +++ b/security/p5-Crypt-Lite/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= ashish@FreeBSD.org COMMENT= Perl extension for a symmetric data encryption and decryption -BUILD_DEPENDS= p5-MIME-Base64>=0:converters/p5-MIME-Base64 -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-MIME-Base64>=0:converters/p5-MIME-Base64 USES= perl5 USE_PERL5= configure diff --git a/security/p5-Crypt-MySQL/Makefile b/security/p5-Crypt-MySQL/Makefile index f3ac1329555..7d7fc4dd3bc 100644 --- a/security/p5-Crypt-MySQL/Makefile +++ b/security/p5-Crypt-MySQL/Makefile @@ -11,6 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= ashish@FreeBSD.org COMMENT= Perl extension to compare MySQL passwords without libmysqlclient +LICENSE= ART10 GPLv1+ +LICENSE_COMB= dual + RUN_DEPENDS= p5-Digest-SHA1>=0:security/p5-Digest-SHA1 USES= perl5 diff --git a/security/p5-Crypt-OFB/Makefile b/security/p5-Crypt-OFB/Makefile index 76cf3dd0dd1..5aa943c7731 100644 --- a/security/p5-Crypt-OFB/Makefile +++ b/security/p5-Crypt-OFB/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= skreuzer@FreeBSD.org COMMENT= Encrypt Data using OFB Mode -BUILD_DEPENDS= p5-Crypt-ECB>=0:security/p5-Crypt-ECB -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Crypt-ECB>=0:security/p5-Crypt-ECB USES= perl5 USE_PERL5= configure diff --git a/security/p5-Crypt-OpenSSL-CA/Makefile b/security/p5-Crypt-OpenSSL-CA/Makefile index 3d5a4190f69..55eaf1dd154 100644 --- a/security/p5-Crypt-OpenSSL-CA/Makefile +++ b/security/p5-Crypt-OpenSSL-CA/Makefile @@ -16,14 +16,14 @@ LICENSE_COMB= dual # Note: The Devel::Mallinfo dependency doesn't work on FreeBSD; mallinfo() # is a GNU libc function. -BUILD_DEPENDS= p5-Convert-ASN1>=0.02:converters/p5-Convert-ASN1 \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Convert-ASN1>=0.02:converters/p5-Convert-ASN1 \ p5-Devel-Leak>=0:devel/p5-Devel-Leak \ p5-File-Slurp>=0:devel/p5-File-Slurp \ p5-IPC-Run>=0:devel/p5-IPC-Run \ p5-Inline>=0.40:devel/p5-Inline \ p5-Inline-C>=0:devel/p5-Inline-C \ p5-Net-SSLeay>=1.25:security/p5-Net-SSLeay -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Group>=0:devel/p5-Test-Group \ p5-Test-Taint>=0:devel/p5-Test-Taint diff --git a/security/p5-Crypt-OpenSSL-EC/Makefile b/security/p5-Crypt-OpenSSL-EC/Makefile index fd2930797c8..24ff3e4d091 100644 --- a/security/p5-Crypt-OpenSSL-EC/Makefile +++ b/security/p5-Crypt-OpenSSL-EC/Makefile @@ -14,8 +14,8 @@ COMMENT= Perl extension for OpenSSL EC (Elliptic Curves) library LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Crypt-OpenSSL-Bignum>=0.04:security/p5-Crypt-OpenSSL-Bignum -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Crypt-OpenSSL-Bignum>=0.04:security/p5-Crypt-OpenSSL-Bignum USES= perl5 ssl USE_PERL5= configure diff --git a/security/p5-Crypt-OpenSSL-ECDSA/Makefile b/security/p5-Crypt-OpenSSL-ECDSA/Makefile index 59318ffade2..ad1877b7fbb 100644 --- a/security/p5-Crypt-OpenSSL-ECDSA/Makefile +++ b/security/p5-Crypt-OpenSSL-ECDSA/Makefile @@ -13,8 +13,8 @@ COMMENT= Perl extension for OpenSSL ECDSA LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Crypt-OpenSSL-EC>=0.05:security/p5-Crypt-OpenSSL-EC -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Crypt-OpenSSL-EC>=0.05:security/p5-Crypt-OpenSSL-EC BROKEN_SSL= openssl-devel diff --git a/security/p5-Crypt-OpenSSL-PKCS10/Makefile b/security/p5-Crypt-OpenSSL-PKCS10/Makefile index 5ddd8dca4d6..5156583a376 100644 --- a/security/p5-Crypt-OpenSSL-PKCS10/Makefile +++ b/security/p5-Crypt-OpenSSL-PKCS10/Makefile @@ -11,8 +11,8 @@ COMMENT= Perl extension for OpenSSL PKCS10 API LICENSE= ART10 -BUILD_DEPENDS= p5-Crypt-OpenSSL-RSA>=0:security/p5-Crypt-OpenSSL-RSA -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Crypt-OpenSSL-RSA>=0:security/p5-Crypt-OpenSSL-RSA USES= perl5 ssl USE_PERL5= configure diff --git a/security/p5-Crypt-PBKDF2/Makefile b/security/p5-Crypt-PBKDF2/Makefile index f5a8709f9f9..1a38911e917 100644 --- a/security/p5-Crypt-PBKDF2/Makefile +++ b/security/p5-Crypt-PBKDF2/Makefile @@ -13,7 +13,8 @@ COMMENT= PBKDF2 password hashing algorithm LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Digest-HMAC>=1.01:security/p5-Digest-HMAC \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Digest-HMAC>=1.01:security/p5-Digest-HMAC \ p5-Digest-SHA3>=0.22:security/p5-Digest-SHA3 \ p5-Module-Runtime>=0:devel/p5-Module-Runtime \ p5-Moo>=2:devel/p5-Moo \ @@ -21,7 +22,6 @@ BUILD_DEPENDS= p5-Digest-HMAC>=1.01:security/p5-Digest-HMAC \ p5-Type-Tiny>=0:devel/p5-Type-Tiny \ p5-namespace-autoclean>=0:devel/p5-namespace-autoclean \ p5-strictures>=2:devel/p5-strictures -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Fatal>=0:devel/p5-Test-Fatal USES= perl5 diff --git a/security/p5-Crypt-PKCS10/Makefile b/security/p5-Crypt-PKCS10/Makefile index 61087e27640..bb993390286 100644 --- a/security/p5-Crypt-PKCS10/Makefile +++ b/security/p5-Crypt-PKCS10/Makefile @@ -14,13 +14,13 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Convert-ASN1>=0.27:converters/p5-Convert-ASN1 \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Convert-ASN1>=0.27:converters/p5-Convert-ASN1 \ p5-Crypt-OpenSSL-DSA>0:security/p5-Crypt-OpenSSL-DSA \ p5-Crypt-OpenSSL-RSA>0:security/p5-Crypt-OpenSSL-RSA \ p5-CryptX>0:security/p5-CryptX \ p5-Digest-MD2>0:security/p5-Digest-MD2 \ p5-Digest-MD4>0:security/p5-Digest-MD4 -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Module-Signature>0:security/p5-Module-Signature PORTSCOUT= ignore:1.800201,1.8002 diff --git a/security/p5-Crypt-PWSafe3/Makefile b/security/p5-Crypt-PWSafe3/Makefile index ba972e81d5e..f1ccf456ab5 100644 --- a/security/p5-Crypt-PWSafe3/Makefile +++ b/security/p5-Crypt-PWSafe3/Makefile @@ -12,13 +12,13 @@ COMMENT= Read and write Passwordsafe v3 files LICENSE= ART20 -BUILD_DEPENDS= p5-Digest-HMAC>=1.00:security/p5-Digest-HMAC \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Digest-HMAC>=1.00:security/p5-Digest-HMAC \ p5-Crypt-CBC>=2.30:security/p5-Crypt-CBC \ p5-Crypt-ECB>=1.45:security/p5-Crypt-ECB \ p5-Crypt-Twofish>=2.14:security/p5-Crypt-Twofish \ p5-Crypt-Random>=1.25:security/p5-Crypt-Random \ p5-Data-UUID>=1.217:devel/p5-Data-UUID -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/security/p5-Crypt-Password-Util/Makefile b/security/p5-Crypt-Password-Util/Makefile index 2fe73cba974..5d854fd4699 100644 --- a/security/p5-Crypt-Password-Util/Makefile +++ b/security/p5-Crypt-Password-Util/Makefile @@ -14,8 +14,8 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Bytes-Random-Secure>=0:security/p5-Bytes-Random-Secure -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Bytes-Random-Secure>=0:security/p5-Bytes-Random-Secure TEST_DEPENDS= p5-Sort-Versions>=0:devel/p5-Sort-Versions NO_ARCH= yes diff --git a/security/p5-Crypt-Primes/Makefile b/security/p5-Crypt-Primes/Makefile index 7710eee5f01..ac2a659b3ac 100644 --- a/security/p5-Crypt-Primes/Makefile +++ b/security/p5-Crypt-Primes/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Provable Prime Number Generator suitable for Cryptographic Applications -BUILD_DEPENDS= p5-Crypt-Random>=0:security/p5-Crypt-Random \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Crypt-Random>=0:security/p5-Crypt-Random \ p5-Math-Pari>=0:math/p5-Math-Pari -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/security/p5-Crypt-RSA/Makefile b/security/p5-Crypt-RSA/Makefile index abfec77645f..121d8c86b62 100644 --- a/security/p5-Crypt-RSA/Makefile +++ b/security/p5-Crypt-RSA/Makefile @@ -15,7 +15,8 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE_ART10= ${WRKSRC}/ARTISTIC -BUILD_DEPENDS= p5-Class-Loader>=2.00:devel/p5-Class-Loader \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Loader>=2.00:devel/p5-Class-Loader \ p5-Convert-ASCII-Armour>=0:converters/p5-Convert-ASCII-Armour \ p5-Crypt-Blowfish>=0:security/p5-Crypt-Blowfish \ p5-Crypt-CBC>=0:security/p5-Crypt-CBC \ @@ -27,7 +28,6 @@ BUILD_DEPENDS= p5-Class-Loader>=2.00:devel/p5-Class-Loader \ p5-Math-Pari>=2.001804:math/p5-Math-Pari \ p5-Sort-Versions>=0:devel/p5-Sort-Versions \ p5-Tie-EncryptedHash>=0:security/p5-Tie-EncryptedHash -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/security/p5-Crypt-Random-Seed/Makefile b/security/p5-Crypt-Random-Seed/Makefile index efa735b12b1..4242a89e94a 100644 --- a/security/p5-Crypt-Random-Seed/Makefile +++ b/security/p5-Crypt-Random-Seed/Makefile @@ -14,8 +14,8 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Crypt-Random-TESHA2>=0:security/p5-Crypt-Random-TESHA2 -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Crypt-Random-TESHA2>=0:security/p5-Crypt-Random-TESHA2 NO_ARCH= yes USE_PERL5= configure diff --git a/security/p5-Crypt-Random-Source/Makefile b/security/p5-Crypt-Random-Source/Makefile index ab717291a19..313805f8448 100644 --- a/security/p5-Crypt-Random-Source/Makefile +++ b/security/p5-Crypt-Random-Source/Makefile @@ -12,13 +12,13 @@ COMMENT= Get weak or strong random data from pluggable sources LICENSE= ART20 -BUILD_DEPENDS= p5-Moo>=1.002000:devel/p5-Moo \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Moo>=1.002000:devel/p5-Moo \ p5-Capture-Tiny>=0.08:devel/p5-Capture-Tiny \ p5-Module-Find>=0:devel/p5-Module-Find \ p5-Sub-Exporter>=0:devel/p5-Sub-Exporter \ p5-Type-Tiny>=1.000005:devel/p5-Type-Tiny \ p5-namespace-clean>=0.08:devel/p5-namespace-clean -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Exception>0:devel/p5-Test-Exception NO_ARCH= yes diff --git a/security/p5-Crypt-Random/Makefile b/security/p5-Crypt-Random/Makefile index 1fd157045b2..c11bbad159a 100644 --- a/security/p5-Crypt-Random/Makefile +++ b/security/p5-Crypt-Random/Makefile @@ -11,11 +11,15 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Cryptographically Secure, True Random Number Generator -BUILD_DEPENDS= p5-Math-Pari>=0:math/p5-Math-Pari \ +LICENSE= ART10 GPLv1+ +LICENSE_COMB= dual + +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Math-Pari>=0:math/p5-Math-Pari \ p5-Class-Loader>=0:devel/p5-Class-Loader -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure +NO_ARCH= yes .include diff --git a/security/p5-Crypt-Random/pkg-descr b/security/p5-Crypt-Random/pkg-descr index fa82f59dc5c..2095916edad 100644 --- a/security/p5-Crypt-Random/pkg-descr +++ b/security/p5-Crypt-Random/pkg-descr @@ -13,3 +13,5 @@ that does not wait for the entropy-pool to recharge and returns as many bytes as requested. /dev/urandom is considerably faster at generation compared to /dev/random, which should be used only when very high quality randomness is desired. + +WWW: https://metacpan.org/release/Crypt-Random diff --git a/security/p5-Crypt-SKey/Makefile b/security/p5-Crypt-SKey/Makefile index 5fc2f7daab0..d2803649507 100644 --- a/security/p5-Crypt-SKey/Makefile +++ b/security/p5-Crypt-SKey/Makefile @@ -11,10 +11,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= ashish@FreeBSD.org COMMENT= Perl S/Key calculator -BUILD_DEPENDS= p5-Digest-MD4>=0:security/p5-Digest-MD4 \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Digest-MD4>=0:security/p5-Digest-MD4 \ p5-Digest-SHA1>=0:security/p5-Digest-SHA1 \ p5-Term-ReadKey>=0:devel/p5-Term-ReadKey -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/security/p5-Crypt-Twofish_PP/Makefile b/security/p5-Crypt-Twofish_PP/Makefile index 3b84f2f7a80..4a544d080ce 100644 --- a/security/p5-Crypt-Twofish_PP/Makefile +++ b/security/p5-Crypt-Twofish_PP/Makefile @@ -12,8 +12,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= kostjnspb@yandex.ru COMMENT= The Twofish Algorithm in Pure Perl -BUILD_DEPENDS= p5-Locale-libintl>=0:devel/p5-Locale-libintl -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Locale-libintl>=0:devel/p5-Locale-libintl USES= perl5 USE_PERL5= configure diff --git a/security/p5-Crypt-X509-CRL/Makefile b/security/p5-Crypt-X509-CRL/Makefile index 66e229f7d10..acf08190a2c 100644 --- a/security/p5-Crypt-X509-CRL/Makefile +++ b/security/p5-Crypt-X509-CRL/Makefile @@ -14,8 +14,8 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/README -BUILD_DEPENDS= p5-Convert-ASN1>=0.19:converters/p5-Convert-ASN1 -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Convert-ASN1>=0.19:converters/p5-Convert-ASN1 USES= perl5 USE_PERL5= configure diff --git a/security/p5-Crypt-X509/Makefile b/security/p5-Crypt-X509/Makefile index 05b5e80e6b3..985fb3127f3 100644 --- a/security/p5-Crypt-X509/Makefile +++ b/security/p5-Crypt-X509/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= ashish@FreeBSD.org COMMENT= Perl extension to parse X.509 certificates -BUILD_DEPENDS= p5-Convert-ASN1>=0:converters/p5-Convert-ASN1 -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Convert-ASN1>=0:converters/p5-Convert-ASN1 USES= perl5 USE_PERL5= configure diff --git a/security/p5-Crypt-XTEA/Makefile b/security/p5-Crypt-XTEA/Makefile index 402097af640..dc6474451c0 100644 --- a/security/p5-Crypt-XTEA/Makefile +++ b/security/p5-Crypt-XTEA/Makefile @@ -13,8 +13,8 @@ COMMENT= Implementation of the eXtended Tiny Encryption Algorithm LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Scalar-Util-Numeric>=0.40:devel/p5-Scalar-Util-Numeric -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Scalar-Util-Numeric>=0.40:devel/p5-Scalar-Util-Numeric TEST_DEPENDS= p5-Crypt-CBC>=0:security/p5-Crypt-CBC USES= perl5 diff --git a/security/p5-Crypt-xDBM_File/Makefile b/security/p5-Crypt-xDBM_File/Makefile index b2d22e122a0..d8a5fc13127 100644 --- a/security/p5-Crypt-xDBM_File/Makefile +++ b/security/p5-Crypt-xDBM_File/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Perl module encrypt almost any kind of dbm file -BUILD_DEPENDS= p5-Crypt-Blowfish>=0:security/p5-Crypt-Blowfish -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Crypt-Blowfish>=0:security/p5-Crypt-Blowfish USES= perl5 USE_PERL5= configure diff --git a/security/p5-Dancer-Plugin-Auth-Extensible-Provider-Usergroup/Makefile b/security/p5-Dancer-Plugin-Auth-Extensible-Provider-Usergroup/Makefile index 9a96d0b6bea..8d4cf067e8d 100644 --- a/security/p5-Dancer-Plugin-Auth-Extensible-Provider-Usergroup/Makefile +++ b/security/p5-Dancer-Plugin-Auth-Extensible-Provider-Usergroup/Makefile @@ -14,11 +14,11 @@ COMMENT= Extensible authentication framework for Dancer apps LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Dancer>=1.3118:www/p5-Dancer \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Dancer>=1.3118:www/p5-Dancer \ p5-Dancer-Plugin-Auth-Extensible>=0:security/p5-Dancer-Plugin-Auth-Extensible \ p5-Dancer-Plugin-Passphrase>=0:security/p5-Dancer-Plugin-Passphrase \ p5-Dancer-Plugin-DBIC>=0:databases/p5-Dancer-Plugin-DBIC -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/security/p5-Dancer-Plugin-Auth-Extensible/Makefile b/security/p5-Dancer-Plugin-Auth-Extensible/Makefile index b7f93daef5f..28d75daa614 100644 --- a/security/p5-Dancer-Plugin-Auth-Extensible/Makefile +++ b/security/p5-Dancer-Plugin-Auth-Extensible/Makefile @@ -13,9 +13,9 @@ COMMENT= Extensible authentication framework for Dancer apps LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Crypt-SaltedHash>=0:security/p5-Crypt-SaltedHash \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Crypt-SaltedHash>=0:security/p5-Crypt-SaltedHash \ p5-Dancer>=1.3118:www/p5-Dancer -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/security/p5-Dancer-Plugin-Passphrase/Makefile b/security/p5-Dancer-Plugin-Passphrase/Makefile index b724d887e19..40b97e30d61 100644 --- a/security/p5-Dancer-Plugin-Passphrase/Makefile +++ b/security/p5-Dancer-Plugin-Passphrase/Makefile @@ -16,10 +16,10 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Dancer>=0:www/p5-Dancer \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Dancer>=0:www/p5-Dancer \ p5-Data-Entropy>=0.005:security/p5-Data-Entropy \ p5-Digest-Bcrypt>=0:security/p5-Digest-Bcrypt -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/security/p5-Dancer2-Plugin-Auth-Extensible-Provider-DBIC/Makefile b/security/p5-Dancer2-Plugin-Auth-Extensible-Provider-DBIC/Makefile index d225a9aa5d1..811c28b7cbb 100644 --- a/security/p5-Dancer2-Plugin-Auth-Extensible-Provider-DBIC/Makefile +++ b/security/p5-Dancer2-Plugin-Auth-Extensible-Provider-DBIC/Makefile @@ -13,11 +13,11 @@ COMMENT= Extensible authentication framework for Dancer2 apps using DBIC LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-DBIx-Class>=0:databases/p5-DBIx-Class \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-DBIx-Class>=0:databases/p5-DBIx-Class \ p5-Dancer2-Plugin-Auth-Extensible>=0.600:security/p5-Dancer2-Plugin-Auth-Extensible \ p5-Dancer2-Plugin-DBIC>=0:databases/p5-Dancer2-Plugin-DBIC \ p5-String-CamelCase>=0:textproc/p5-String-CamelCase -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Class-Load>=0:devel/p5-Class-Load \ p5-DateTime-Format-SQLite>=0:devel/p5-DateTime-Format-SQLite \ p5-Path-Tiny>=0:devel/p5-Path-Tiny diff --git a/security/p5-Dancer2-Plugin-Auth-Extensible-Provider-Database/Makefile b/security/p5-Dancer2-Plugin-Auth-Extensible-Provider-Database/Makefile index e96f3c3e0e2..a336349ea94 100644 --- a/security/p5-Dancer2-Plugin-Auth-Extensible-Provider-Database/Makefile +++ b/security/p5-Dancer2-Plugin-Auth-Extensible-Provider-Database/Makefile @@ -13,9 +13,9 @@ COMMENT= Extensible authentication for D2 apps using Dancer2-Plugin-Database LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Dancer2-Plugin-Auth-Extensible>=0.600:security/p5-Dancer2-Plugin-Auth-Extensible \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Dancer2-Plugin-Auth-Extensible>=0.600:security/p5-Dancer2-Plugin-Auth-Extensible \ p5-Dancer2-Plugin-Database>=0.600:databases/p5-Dancer2-Plugin-Database -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/security/p5-Dancer2-Plugin-Auth-Extensible-Provider-IMAP/Makefile b/security/p5-Dancer2-Plugin-Auth-Extensible-Provider-IMAP/Makefile index 20409fc3654..1cac3eb8f93 100644 --- a/security/p5-Dancer2-Plugin-Auth-Extensible-Provider-IMAP/Makefile +++ b/security/p5-Dancer2-Plugin-Auth-Extensible-Provider-IMAP/Makefile @@ -13,9 +13,9 @@ COMMENT= Extensible authentication for D2 apps using Net::IMAP::Simple LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Dancer2-Plugin-Auth-Extensible>=0.620:security/p5-Dancer2-Plugin-Auth-Extensible \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Dancer2-Plugin-Auth-Extensible>=0.620:security/p5-Dancer2-Plugin-Auth-Extensible \ p5-Net-IMAP-Simple>=0:mail/p5-Net-IMAP-Simple -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/security/p5-Dancer2-Plugin-Auth-Extensible-Provider-Usergroup/Makefile b/security/p5-Dancer2-Plugin-Auth-Extensible-Provider-Usergroup/Makefile index c3528d46fe1..fac6ba234c8 100644 --- a/security/p5-Dancer2-Plugin-Auth-Extensible-Provider-Usergroup/Makefile +++ b/security/p5-Dancer2-Plugin-Auth-Extensible-Provider-Usergroup/Makefile @@ -13,11 +13,11 @@ COMMENT= Extensible authentication framework for Dancer2 apps LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Dancer2>=0.204001:www/p5-Dancer2 \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Dancer2>=0.204001:www/p5-Dancer2 \ p5-Dancer2-Plugin-Auth-Extensible>=0.620:security/p5-Dancer2-Plugin-Auth-Extensible \ p5-Dancer2-Plugin-Passphrase>=3.3.0:security/p5-Dancer2-Plugin-Passphrase \ p5-Dancer2-Plugin-DBIC>=0.0013:databases/p5-Dancer2-Plugin-DBIC -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/security/p5-Dancer2-Plugin-Passphrase/Makefile b/security/p5-Dancer2-Plugin-Passphrase/Makefile index 04f093cf8b7..0c3958c0248 100644 --- a/security/p5-Dancer2-Plugin-Passphrase/Makefile +++ b/security/p5-Dancer2-Plugin-Passphrase/Makefile @@ -14,10 +14,10 @@ COMMENT= Passphrases and Passwords as objects for Dancer2 LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Dancer2>=0.200000:www/p5-Dancer2 \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Dancer2>=0.200000:www/p5-Dancer2 \ p5-Data-Entropy>=0.005:security/p5-Data-Entropy \ p5-Digest-Bcrypt>=0:security/p5-Digest-Bcrypt -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/security/p5-Digest-Adler32/Makefile b/security/p5-Digest-Adler32/Makefile index 91230181455..af5d3efb47f 100644 --- a/security/p5-Digest-Adler32/Makefile +++ b/security/p5-Digest-Adler32/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= skreuzer@FreeBSD.org COMMENT= Perl extension for Adler32 hash algorithm -BUILD_DEPENDS= p5-Digest>=0:security/p5-Digest -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Digest>=0:security/p5-Digest USES= perl5 USE_PERL5= configure diff --git a/security/p5-Digest-Bcrypt/Makefile b/security/p5-Digest-Bcrypt/Makefile index ee8a10abcb2..b5159a20142 100644 --- a/security/p5-Digest-Bcrypt/Makefile +++ b/security/p5-Digest-Bcrypt/Makefile @@ -14,8 +14,8 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Crypt-Eksblowfish>0:security/p5-Crypt-Eksblowfish -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Crypt-Eksblowfish>0:security/p5-Crypt-Eksblowfish TEST_DEPENDS= p5-Try-Tiny>=0.24:lang/p5-Try-Tiny USES= perl5 diff --git a/security/p5-Digest-DMAC/Makefile b/security/p5-Digest-DMAC/Makefile index 48d7d029a77..0a750c402dd 100644 --- a/security/p5-Digest-DMAC/Makefile +++ b/security/p5-Digest-DMAC/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= skreuzer@FreeBSD.org COMMENT= Perl5 interface to DMAC Double Message-Digest Algorithms -BUILD_DEPENDS= p5-Crypt-CBC>=0:security/p5-Crypt-CBC \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Crypt-CBC>=0:security/p5-Crypt-CBC \ p5-MIME-Base64>=0:converters/p5-MIME-Base64 -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/security/p5-Digest-EMAC/Makefile b/security/p5-Digest-EMAC/Makefile index d9c45c0c79f..3e74191e0fd 100644 --- a/security/p5-Digest-EMAC/Makefile +++ b/security/p5-Digest-EMAC/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= skreuzer@FreeBSD.org COMMENT= Perl5 interface to EMAC Double Message-Digest Algorithms -BUILD_DEPENDS= p5-Crypt-CBC>=0:security/p5-Crypt-CBC \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Crypt-CBC>=0:security/p5-Crypt-CBC \ p5-MIME-Base64>=0:converters/p5-MIME-Base64 -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/security/p5-File-KeePass-Agent/Makefile b/security/p5-File-KeePass-Agent/Makefile index 5f11ca7471d..2373f4c0f35 100644 --- a/security/p5-File-KeePass-Agent/Makefile +++ b/security/p5-File-KeePass-Agent/Makefile @@ -14,10 +14,10 @@ COMMENT= Application agent for working with File::KeePass objects LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-File-KeePass>=2.03:security/p5-File-KeePass \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-File-KeePass>=2.03:security/p5-File-KeePass \ p5-Crypt-Rijndael>=1.0:security/p5-Crypt-Rijndael \ p5-MIME-Base64>=1.0:converters/p5-MIME-Base64 -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/security/p5-File-KeePass/Makefile b/security/p5-File-KeePass/Makefile index 4591a885a4c..cea30c18498 100644 --- a/security/p5-File-KeePass/Makefile +++ b/security/p5-File-KeePass/Makefile @@ -14,10 +14,10 @@ COMMENT= Interface to KeePassX, KeePass 1.x and 2.x database files LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Crypt-Rijndael>=1.0:security/p5-Crypt-Rijndael \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Crypt-Rijndael>=1.0:security/p5-Crypt-Rijndael \ p5-MIME-Base64>=1.0:converters/p5-MIME-Base64 \ p5-XML-Parser>=0:textproc/p5-XML-Parser -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/security/p5-File-Scan-ClamAV/Makefile b/security/p5-File-Scan-ClamAV/Makefile index 055d77f972d..640c6f49adc 100644 --- a/security/p5-File-Scan-ClamAV/Makefile +++ b/security/p5-File-Scan-ClamAV/Makefile @@ -14,8 +14,8 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= clamscan:security/clamav -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= clamscan:security/clamav NO_ARCH= yes USES= perl5 diff --git a/security/p5-Filter-CBC/Makefile b/security/p5-Filter-CBC/Makefile index bc28821daf4..9d4af9b57f1 100644 --- a/security/p5-Filter-CBC/Makefile +++ b/security/p5-Filter-CBC/Makefile @@ -11,10 +11,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Source filter for Cipher Block Chaining -BUILD_DEPENDS= p5-Filter>=0:devel/p5-Filter \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Filter>=0:devel/p5-Filter \ p5-Crypt-Rijndael>=0:security/p5-Crypt-Rijndael \ p5-Crypt-CBC>=0:security/p5-Crypt-CBC -RUN_DEPENDS:= ${BUILD_DEPENDS} PLIST_SUB= EXAMPLESDIR="share/examples/${PORTNAME}" USES= perl5 shebangfix diff --git a/security/p5-Filter-Crypto/Makefile b/security/p5-Filter-Crypto/Makefile index d42ad3e20dd..b8778ae6470 100644 --- a/security/p5-Filter-Crypto/Makefile +++ b/security/p5-Filter-Crypto/Makefile @@ -13,8 +13,8 @@ COMMENT= Create runnable Perl files encrypted with OpenSSL libcrypto LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-PAR-Packer>=0:devel/p5-PAR-Packer -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-PAR-Packer>=0:devel/p5-PAR-Packer TEST_DEPENDS= p5-CPAN-Changes>=0:devel/p5-CPAN-Changes USES= perl5 ssl diff --git a/security/p5-GD-SecurityImage/Makefile b/security/p5-GD-SecurityImage/Makefile index 6a4b9f9a1d6..9ca85cec817 100644 --- a/security/p5-GD-SecurityImage/Makefile +++ b/security/p5-GD-SecurityImage/Makefile @@ -14,8 +14,8 @@ COMMENT= Perl5 module for creating CAPTCHA security images LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-GD>=0:graphics/p5-GD -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-GD>=0:graphics/p5-GD OPTIONS_DEFINE= IMAGEMAGICK X11 OPTIONS_DEFAULT=X11 diff --git a/security/p5-HTML-Email-Obfuscate/Makefile b/security/p5-HTML-Email-Obfuscate/Makefile index 8ee9748aa93..01e253fa668 100644 --- a/security/p5-HTML-Email-Obfuscate/Makefile +++ b/security/p5-HTML-Email-Obfuscate/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Obfuscates HTML email addresses that look normal -BUILD_DEPENDS= p5-HTML-Parser>=0:www/p5-HTML-Parser -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTML-Parser>=0:www/p5-HTML-Parser USES= perl5 USE_PERL5= configure diff --git a/security/p5-IO-Async-SSL/Makefile b/security/p5-IO-Async-SSL/Makefile index d23c2c9bcd2..775716a9cca 100644 --- a/security/p5-IO-Async-SSL/Makefile +++ b/security/p5-IO-Async-SSL/Makefile @@ -14,10 +14,10 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Future>=0.33:devel/p5-Future \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Future>=0.33:devel/p5-Future \ p5-IO-Async>=0.66:devel/p5-IO-Async\ p5-IO-Socket-SSL>=2.003:security/p5-IO-Socket-SSL -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Identity>=0:devel/p5-Test-Identity \ p5-Test-Pod>=1:devel/p5-Test-Pod \ socat:net/socat diff --git a/security/p5-Module-Signature/Makefile b/security/p5-Module-Signature/Makefile index 1e468154772..e3101145039 100644 --- a/security/p5-Module-Signature/Makefile +++ b/security/p5-Module-Signature/Makefile @@ -29,10 +29,8 @@ OPTIONS_MULTI_GPG= GPG1 GPG2 GPG1_DESC= Use GnuPG version 1 GPG2_DESC= Use GnuPG version 2 -GPG1_BUILD_DEPENDS= gpgv:security/gnupg1 -GPG1_RUN_DEPENDS= ${GPG1_BUILD_DEPENDS} +GPG1_RUN_DEPENDS= gpgv:security/gnupg1 -GPG2_BUILD_DEPENDS= gpgv2:security/gnupg -GPG2_RUN_DEPENDS= ${GPG2_BUILD_DEPENDS} +GPG2_RUN_DEPENDS= gpgv2:security/gnupg .include diff --git a/security/p5-Net-OpenID-Common/Makefile b/security/p5-Net-OpenID-Common/Makefile index da28d3faa5a..41168010285 100644 --- a/security/p5-Net-OpenID-Common/Makefile +++ b/security/p5-Net-OpenID-Common/Makefile @@ -12,13 +12,13 @@ COMMENT= Libraries shared between Net::OpenID::Consumer and Net::OpenID::Server LICENSE= ARTPERL10 -BUILD_DEPENDS= p5-Crypt-DH-GMP>=0:net/p5-Crypt-DH-GMP \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Crypt-DH-GMP>=0:net/p5-Crypt-DH-GMP \ p5-Email-MIME-ContentType>=0:mail/p5-Email-MIME-ContentType \ p5-HTML-Parser>=0:www/p5-HTML-Parser \ p5-HTTP-Message>=0:www/p5-HTTP-Message \ p5-URI>=0:net/p5-URI \ p5-XML-Simple>=0:textproc/p5-XML-Simple -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/security/p5-Net-OpenID-JanRain/Makefile b/security/p5-Net-OpenID-JanRain/Makefile index 4ac8fd3e323..28a3a6c69b2 100644 --- a/security/p5-Net-OpenID-JanRain/Makefile +++ b/security/p5-Net-OpenID-JanRain/Makefile @@ -11,12 +11,12 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= OpenID JanRain and Consumer with JanRain API -BUILD_DEPENDS= p5-Crypt-DH>=0:security/p5-Crypt-DH \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Crypt-DH>=0:security/p5-Crypt-DH \ p5-Digest-HMAC>=0:security/p5-Digest-HMAC \ p5-LWPx-ParanoidAgent>=0:www/p5-LWPx-ParanoidAgent \ p5-Net-Yadis>=0:net/p5-Net-Yadis \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/security/p5-Net-OpenID-Server/Makefile b/security/p5-Net-OpenID-Server/Makefile index 965b8ea91ae..7d5fd0a23ef 100644 --- a/security/p5-Net-OpenID-Server/Makefile +++ b/security/p5-Net-OpenID-Server/Makefile @@ -14,9 +14,9 @@ COMMENT= Reference implementation of OpenID server LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Net-OpenID-Common>=1.11:security/p5-Net-OpenID-Common \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Net-OpenID-Common>=1.11:security/p5-Net-OpenID-Common \ p5-URI>=0:net/p5-URI -RUN_DEPENDS:= ${BUILD_DEPENDS} INSTALL_TARGET= pure_install USES= perl5 diff --git a/security/p5-Net-SSH-AuthorizedKeysFile/Makefile b/security/p5-Net-SSH-AuthorizedKeysFile/Makefile index a1dfc417af8..938cc8a6b86 100644 --- a/security/p5-Net-SSH-AuthorizedKeysFile/Makefile +++ b/security/p5-Net-SSH-AuthorizedKeysFile/Makefile @@ -13,8 +13,8 @@ COMMENT= Read and modify SSH authorized_keys files LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Log-Log4perl>=1:devel/p5-Log-Log4perl -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Log-Log4perl>=1:devel/p5-Log-Log4perl NO_ARCH= yes USES= perl5 diff --git a/security/p5-Net-SSL-ExpireDate/Makefile b/security/p5-Net-SSL-ExpireDate/Makefile index c73b06fd954..94a9ec0f363 100644 --- a/security/p5-Net-SSL-ExpireDate/Makefile +++ b/security/p5-Net-SSL-ExpireDate/Makefile @@ -13,13 +13,13 @@ COMMENT= Obtain expiration date of certificate LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Class-Accessor>=0:devel/p5-Class-Accessor \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Accessor>=0:devel/p5-Class-Accessor \ p5-Crypt-OpenSSL-X509>=0:security/p5-Crypt-OpenSSL-X509 \ p5-DateTime>=0:devel/p5-DateTime \ p5-Time-Duration-Parse>=0:devel/p5-Time-Duration-Parse \ p5-TimeDate>=0:devel/p5-TimeDate \ p5-UNIVERSAL-require>=0:devel/p5-UNIVERSAL-require -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/security/p5-Net-SSLGlue/Makefile b/security/p5-Net-SSLGlue/Makefile index 03623df52f7..c93d6eebebb 100644 --- a/security/p5-Net-SSLGlue/Makefile +++ b/security/p5-Net-SSLGlue/Makefile @@ -13,8 +13,8 @@ COMMENT= Add/extend SSL support for common perl modules LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-IO-Socket-SSL>=1.190:security/p5-IO-Socket-SSL -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-IO-Socket-SSL>=1.190:security/p5-IO-Socket-SSL NO_ARCH= yes USE_PERL5= configure diff --git a/security/p5-Net-Server-Mail-ESMTP-AUTH/Makefile b/security/p5-Net-Server-Mail-ESMTP-AUTH/Makefile index 7d849ac03da..1adaa0d50d5 100644 --- a/security/p5-Net-Server-Mail-ESMTP-AUTH/Makefile +++ b/security/p5-Net-Server-Mail-ESMTP-AUTH/Makefile @@ -13,8 +13,8 @@ COMMENT= Plain and login auth methods for Net::Server::Mail::ESMTP LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Net-Server-Mail>=0:mail/p5-Net-Server-Mail -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Net-Server-Mail>=0:mail/p5-Net-Server-Mail NO_ARCH= yes USES= perl5 diff --git a/security/p5-Net-SinFP/Makefile b/security/p5-Net-SinFP/Makefile index cdcabd7ca6b..5100ceb831e 100644 --- a/security/p5-Net-SinFP/Makefile +++ b/security/p5-Net-SinFP/Makefile @@ -33,11 +33,11 @@ NOT_FOR_ARCHS_REASON= does not support big-endian architectures .if ${PORTNAME} == "Net-SinFP" PKGNAMEPREFIX= p5- -BUILD_DEPENDS+= p5-Class-Gomor>=1.00:devel/p5-Class-Gomor \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Gomor>=1.00:devel/p5-Class-Gomor \ p5-DBIx-SQLite-Simple>=0.33:databases/p5-DBIx-SQLite-Simple \ p5-Net-Packet>=3.00:net/p5-Net-Packet \ p5-Net-Packet-Target>=1.00:net/p5-Net-Packet-Target -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/security/p5-Nmap-Scanner/Makefile b/security/p5-Nmap-Scanner/Makefile index 7dd7be8e344..db77a5016f7 100644 --- a/security/p5-Nmap-Scanner/Makefile +++ b/security/p5-Nmap-Scanner/Makefile @@ -14,11 +14,11 @@ COMMENT= Perform and manipulate nmap scans using perl LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= nmap:security/nmap \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= nmap:security/nmap \ p5-Class-Generate>=0:devel/p5-Class-Generate \ p5-XML-SAX>=0:textproc/p5-XML-SAX \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/security/p5-OpenCA-OpenSSL/Makefile b/security/p5-OpenCA-OpenSSL/Makefile index 42e6805d6f2..d43049b1bc4 100644 --- a/security/p5-OpenCA-OpenSSL/Makefile +++ b/security/p5-OpenCA-OpenSSL/Makefile @@ -12,10 +12,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Perl crypto extension to OpenSSL -BUILD_DEPENDS= p5-Locale-libintl>=0:devel/p5-Locale-libintl \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Locale-libintl>=0:devel/p5-Locale-libintl \ p5-MIME-Tools>=0:mail/p5-MIME-Tools \ p5-X500-DN>=0:net/p5-X500-DN -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 ssl USE_PERL5= configure diff --git a/security/p5-OpenCA-PKCS7/Makefile b/security/p5-OpenCA-PKCS7/Makefile index 54869b8ef47..08fbcdb7b21 100644 --- a/security/p5-OpenCA-PKCS7/Makefile +++ b/security/p5-OpenCA-PKCS7/Makefile @@ -13,10 +13,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Perl extension for basic handling PKCS\#7 Signatures -BUILD_DEPENDS= p5-OpenCA-OpenSSL>=0:security/p5-OpenCA-OpenSSL \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-OpenCA-OpenSSL>=0:security/p5-OpenCA-OpenSSL \ p5-OpenCA-X509>=0:security/p5-OpenCA-X509 \ p5-X500-DN>=0:net/p5-X500-DN -RUN_DEPENDS:= ${BUILD_DEPENDS} PORTSCOUT= skipv:0.9.13 diff --git a/security/p5-OpenCA-REQ/Makefile b/security/p5-OpenCA-REQ/Makefile index 9d3ec6ffa8a..27fe9034010 100644 --- a/security/p5-OpenCA-REQ/Makefile +++ b/security/p5-OpenCA-REQ/Makefile @@ -13,8 +13,8 @@ DISTNAME= ${PORTNAME}-${PORTVERSION:S/0$//} MAINTAINER= perl@FreeBSD.org COMMENT= Perl extension to easily manage Cert REQUESTs -BUILD_DEPENDS= p5-X500-DN>=0:net/p5-X500-DN -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-X500-DN>=0:net/p5-X500-DN USES= perl5 USE_PERL5= configure diff --git a/security/p5-OpenCA-X509/Makefile b/security/p5-OpenCA-X509/Makefile index 5591e9b3553..5732757abb8 100644 --- a/security/p5-OpenCA-X509/Makefile +++ b/security/p5-OpenCA-X509/Makefile @@ -12,8 +12,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Perl extension for handling X509 Certificates -BUILD_DEPENDS= p5-X500-DN>=0:net/p5-X500-DN -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-X500-DN>=0:net/p5-X500-DN USES= perl5 shebangfix SHEBANG_FILES= prova.pl diff --git a/security/p5-POE-Component-SSLify/Makefile b/security/p5-POE-Component-SSLify/Makefile index 910fce5b552..87b5b7ea633 100644 --- a/security/p5-POE-Component-SSLify/Makefile +++ b/security/p5-POE-Component-SSLify/Makefile @@ -13,10 +13,10 @@ COMMENT= Integrate SSL into POE LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Net-SSLeay>=1.36:security/p5-Net-SSLeay \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Net-SSLeay>=1.36:security/p5-Net-SSLeay \ p5-POE>=1.267:devel/p5-POE \ p5-Task-Weaken>=1.03:devel/p5-Task-Weaken -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-FailWarnings>=0:devel/p5-Test-FailWarnings USES= perl5 diff --git a/security/p5-POE-Filter-SSL/Makefile b/security/p5-POE-Filter-SSL/Makefile index ffa47cb760c..6c62009069c 100644 --- a/security/p5-POE-Filter-SSL/Makefile +++ b/security/p5-POE-Filter-SSL/Makefile @@ -13,10 +13,10 @@ COMMENT= Esiest and flexiblest way to SSL in POEIntegrate SSL into POE LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-HTTP-Message>=0:www/p5-HTTP-Message \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTTP-Message>=0:www/p5-HTTP-Message \ p5-Net-SSLeay>=1.65:security/p5-Net-SSLeay \ p5-POE>=0:devel/p5-POE -RUN_DEPENDS:= ${BUILD_DEPENDS} PORTSCOUT= skipv:0.291 diff --git a/security/p5-Parse-Snort/Makefile b/security/p5-Parse-Snort/Makefile index 4b0fdd4b2ea..0ee5af13420 100644 --- a/security/p5-Parse-Snort/Makefile +++ b/security/p5-Parse-Snort/Makefile @@ -12,8 +12,8 @@ COMMENT= Parse and create Snort rules LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Class-Accessor>=0:devel/p5-Class-Accessor -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Accessor>=0:devel/p5-Class-Accessor TEST_DEPENDS= p5-Test-Exception>=0:devel/p5-Test-Exception NO_ARCH= yes diff --git a/security/p5-Sudo/Makefile b/security/p5-Sudo/Makefile index 624f0b66f37..8f13eefb741 100644 --- a/security/p5-Sudo/Makefile +++ b/security/p5-Sudo/Makefile @@ -12,10 +12,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Perl extension for running a command line sudo -BUILD_DEPENDS= p5-Term-ReadPassword>=0:devel/p5-Term-ReadPassword \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Term-ReadPassword>=0:devel/p5-Term-ReadPassword \ p5-Class-Accessor>=0:devel/p5-Class-Accessor \ p5-IPC-Run>=0:devel/p5-IPC-Run -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/security/p5-Tie-EncryptedHash/Makefile b/security/p5-Tie-EncryptedHash/Makefile index 5d0ba0f590b..f430b45efba 100644 --- a/security/p5-Tie-EncryptedHash/Makefile +++ b/security/p5-Tie-EncryptedHash/Makefile @@ -14,8 +14,8 @@ COMMENT= Hashes (and objects based on hashes) with encrypting fields LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Crypt-CBC>=0:security/p5-Crypt-CBC -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Crypt-CBC>=0:security/p5-Crypt-CBC TEST_DEPENDS= p5-Crypt-Blowfish>=0:security/p5-Crypt-Blowfish \ p5-Crypt-DES>=0:security/p5-Crypt-DES diff --git a/security/p5-Tree-Authz/Makefile b/security/p5-Tree-Authz/Makefile index b61b4e88b88..ee086d684d6 100644 --- a/security/p5-Tree-Authz/Makefile +++ b/security/p5-Tree-Authz/Makefile @@ -14,10 +14,10 @@ COMMENT= Role-Based Access Control authorization scheme LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Class-Data-Inheritable>=0:devel/p5-Class-Data-Inheritable \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Data-Inheritable>=0:devel/p5-Class-Data-Inheritable \ p5-Devel-Symdump>=0:devel/p5-Devel-Symdump \ p5-Lingua-EN-Inflect-Number>=0:textproc/p5-Lingua-EN-Inflect-Number -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Exception>=0:devel/p5-Test-Exception USES= perl5 diff --git a/security/p5-Unix-Passwd-File/Makefile b/security/p5-Unix-Passwd-File/Makefile index 00b6bee7146..69c453406f5 100644 --- a/security/p5-Unix-Passwd-File/Makefile +++ b/security/p5-Unix-Passwd-File/Makefile @@ -14,10 +14,10 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Crypt-Password-Util>=0.06:security/p5-Crypt-Password-Util \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Crypt-Password-Util>=0.06:security/p5-Crypt-Password-Util \ p5-File-Flock-Retry>=0:devel/p5-File-Flock-Retry \ p5-List-MoreUtils>=0:lang/p5-List-MoreUtils -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Class-Load>=0:devel/p5-Class-Load \ p5-File-Copy-Recursive>=0:devel/p5-File-Copy-Recursive \ p5-File-Slurper>=0:devel/p5-File-Slurper \ @@ -31,7 +31,8 @@ USE_PERL5= configure .include .if ${PERL_LEVEL} < 502501 -BUILD_DEPENDS+= p5-Scalar-List-Utils>=1.45:lang/p5-Scalar-List-Utils +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS+= p5-Scalar-List-Utils>=1.45:lang/p5-Scalar-List-Utils RUN_DEPENDS+= p5-Scalar-List-Utils>=1.45:lang/p5-Scalar-List-Utils .endif diff --git a/security/p5-Yahoo-BBAuth/Makefile b/security/p5-Yahoo-BBAuth/Makefile index 90adad3dbad..7c56aba1d30 100644 --- a/security/p5-Yahoo-BBAuth/Makefile +++ b/security/p5-Yahoo-BBAuth/Makefile @@ -14,10 +14,10 @@ COMMENT= Perl interface to the Yahoo! Browser-Based Authentication LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Class-Accessor>=0:devel/p5-Class-Accessor \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Accessor>=0:devel/p5-Class-Accessor \ p5-JSON>=0:converters/p5-JSON \ p5-libwww>=5.6:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USE_PERL5= configure diff --git a/security/p5-openxpki/Makefile b/security/p5-openxpki/Makefile index 4238766e0f2..8b48ca4aa76 100644 --- a/security/p5-openxpki/Makefile +++ b/security/p5-openxpki/Makefile @@ -15,7 +15,8 @@ LICENSE_FILE= ${WRKSRC}/LICENSE BROKEN_SSL= openssl-devel -BUILD_DEPENDS= bash:shells/bash \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= bash:shells/bash \ openca-tools-forked>=1.4.0:security/openca-tools-forked \ p5-Archive-Zip>=0:archivers/p5-Archive-Zip \ p5-CGI-Fast>=2.10:www/p5-CGI-Fast \ @@ -76,7 +77,6 @@ BUILD_DEPENDS= bash:shells/bash \ p5-XML-Validator-Schema>=0:textproc/p5-XML-Validator-Schema \ p5-openxpki-i18n>=2.0.3:security/p5-openxpki-i18n \ p5-perl-ldap>=0:net/p5-perl-ldap -RUN_DEPENDS:= ${BUILD_DEPENDS} CONFLICTS= p5-openxpki-client-[0-9]* \ p5-openxpki-client-scep-[0-9]* \ diff --git a/security/py-dfvfs/Makefile b/security/py-dfvfs/Makefile index c285738d8a7..ee609b5b788 100644 --- a/security/py-dfvfs/Makefile +++ b/security/py-dfvfs/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= dfvfs -PORTVERSION= 20180703 +PORTVERSION= 20180831 CATEGORIES= security devel python MASTER_SITES= https://github.com/log2timeline/dfvfs/releases/download/${PORTVERSION}/ \ LOCAL/antoine diff --git a/security/py-dfvfs/distinfo b/security/py-dfvfs/distinfo index fda77d763d5..549d2ee2ed1 100644 --- a/security/py-dfvfs/distinfo +++ b/security/py-dfvfs/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1530682200 -SHA256 (dfvfs-20180703.tar.gz) = 13aa85dec12bcb7aeecc95e50e180a03d9b1770b3940bc39daf935eab14f2df2 -SIZE (dfvfs-20180703.tar.gz) = 77729728 +TIMESTAMP = 1538419972 +SHA256 (dfvfs-20180831.tar.gz) = 9d481b277da5c73753436bf285116006e06a2429fced3e794ec6a1b88b132ec2 +SIZE (dfvfs-20180831.tar.gz) = 77730308 diff --git a/security/py-plaso/Makefile b/security/py-plaso/Makefile index c0baf002e30..3ec52d3792b 100644 --- a/security/py-plaso/Makefile +++ b/security/py-plaso/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= plaso -PORTVERSION= 20180818 +PORTVERSION= 20180930 CATEGORIES= security python MASTER_SITES= https://github.com/log2timeline/plaso/releases/download/${PORTVERSION}/ \ LOCAL/antoine @@ -26,7 +26,6 @@ RUN_DEPENDS= libesedb>=e:devel/libesedb \ ${PYTHON_PKGNAMEPREFIX}artifacts>=0:security/py-artifacts@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}bencode.py>=0:converters/py-bencode.py@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}biplist>=0:devel/py-biplist@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}construct>=0:devel/py-construct@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}dateutil>=0:devel/py-dateutil@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}dfvfs>=0:security/py-dfvfs@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}dfwinreg>=0:security/py-dfwinreg@${PY_FLAVOR} \ @@ -64,7 +63,6 @@ TEST_DEPENDS+= ca_root_nss>=0:security/ca_root_nss .endif post-patch: - ${REINPLACE_CMD} "/scripts=glob/s/*.py/[a-z]*.py/" ${WRKSRC}/setup.py ${REINPLACE_CMD} "/elasticsearch5/d" ${WRKSRC}/plaso/dependencies.py ${REINPLACE_CMD} "/^\[elasticsearch5/,/^$$/d" ${WRKSRC}/dependencies.ini ${REINPLACE_CMD} "s|'share', 'artifacts'|'share', '${PYTHON_PKGNAMEPREFIX}artifacts'|" \ diff --git a/security/py-plaso/distinfo b/security/py-plaso/distinfo index 3c4d5515b7b..35aefec61de 100644 --- a/security/py-plaso/distinfo +++ b/security/py-plaso/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1534691634 -SHA256 (plaso-20180818.tar.gz) = 87e9cedcaad968fd7f36dd8fbd0736abb3ae0f7f9fbdcb3a199f45ce2cc41e72 -SIZE (plaso-20180818.tar.gz) = 109783467 +TIMESTAMP = 1538460556 +SHA256 (plaso-20180930.tar.gz) = 1f8c6a95d35f4603c0274642bfaf531cac03730c0057051789f4b6c2e4691d23 +SIZE (plaso-20180930.tar.gz) = 110088122 diff --git a/security/rubygem-scrypt/Makefile b/security/rubygem-scrypt/Makefile index 77040bac53f..aea0330838d 100644 --- a/security/rubygem-scrypt/Makefile +++ b/security/rubygem-scrypt/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= scrypt -PORTVERSION= 3.0.5 +PORTVERSION= 3.0.6 CATEGORIES= security rubygems MASTER_SITES= RG @@ -14,8 +14,9 @@ LICENSE_FILE= ${WRKSRC}/COPYING RUN_DEPENDS= rubygem-ffi-compiler>=1.0:devel/rubygem-ffi-compiler -NO_ARCH= yes -USE_RUBY= yes USES= gem +USE_RUBY= yes + +NO_ARCH= yes .include diff --git a/security/rubygem-scrypt/distinfo b/security/rubygem-scrypt/distinfo index e1059932ae2..cb5256e0cc9 100644 --- a/security/rubygem-scrypt/distinfo +++ b/security/rubygem-scrypt/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1490101724 -SHA256 (rubygem/scrypt-3.0.5.gem) = aedf16a829797b0b271cb2619686da6bfa93aac9b876616deae7cfe241389d70 -SIZE (rubygem/scrypt-3.0.5.gem) = 34816 +TIMESTAMP = 1538592068 +SHA256 (rubygem/scrypt-3.0.6.gem) = e37cccb37f1110363b8bfdd5adad41106fe73be1e27d020b256ae447adf5fcbd +SIZE (rubygem/scrypt-3.0.6.gem) = 34816 diff --git a/security/samhain/Makefile b/security/samhain/Makefile index 9b4159830b9..c52ebd07ea4 100644 --- a/security/samhain/Makefile +++ b/security/samhain/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= samhain -PORTVERSION= 4.2.4 +PORTVERSION= 4.3.1 CATEGORIES= security MASTER_SITES= http://la-samhna.de/archive/ DISTNAME= samhain_signed-${PORTVERSION} diff --git a/security/samhain/distinfo b/security/samhain/distinfo index c259dc0f46e..ac19deabd38 100644 --- a/security/samhain/distinfo +++ b/security/samhain/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1515418980 -SHA256 (samhain_signed-4.2.4.tar.gz) = 0cd779b3666264e1f370f7ec37891f680b4caa04895fab8c5aa9a52e41ec885d -SIZE (samhain_signed-4.2.4.tar.gz) = 2138117 +TIMESTAMP = 1538659372 +SHA256 (samhain_signed-4.3.1.tar.gz) = d4dcedc6bc579c935de7972d23675e94654391c3a1bd19c06ec38e57f7faf1f2 +SIZE (samhain_signed-4.3.1.tar.gz) = 2141139 diff --git a/security/snort3/Makefile b/security/snort3/Makefile index 74a4c755c52..5bcd4fe0e18 100644 --- a/security/snort3/Makefile +++ b/security/snort3/Makefile @@ -7,7 +7,7 @@ PORTREVISION= 2 CATEGORIES= security PKGNAMESUFFIX= 3 -MAINTAINER= feld@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Lightweight network intrusion detection system LICENSE= GPLv2 diff --git a/security/trezord/Makefile b/security/trezord/Makefile index 3f0cf27595f..af0963d031d 100644 --- a/security/trezord/Makefile +++ b/security/trezord/Makefile @@ -2,8 +2,9 @@ # $FreeBSD$ PORTNAME= trezord -PORTVERSION= 2.0.23 DISTVERSIONPREFIX= v +DISTVERSION= 2.0.24-5 +DISTVERSIONSUFFIX= -gf593bf3 CATEGORIES= security MAINTAINER= ale@FreeBSD.org @@ -18,14 +19,13 @@ USE_GITHUB= yes GH_ACCOUNT= trezor GH_PROJECT= ${PORTNAME}-go GO_PKGNAME= github.com/${GH_ACCOUNT}/${GH_PROJECT} -GH_TAGNAME= 0e82873 PLIST_FILES= bin/${GH_PROJECT} .include .if ${OPSYS} == FreeBSD && ${OSVERSION} < 1102000 -EXTRA_PATCHES+= ${FILESDIR}/extra-patch-usb_webusb.go +EXTRA_PATCHES+= ${FILESDIR}/extra-patch-usb_libusb.go .endif .include diff --git a/security/trezord/distinfo b/security/trezord/distinfo index c1268bc18e3..7dc2682880d 100644 --- a/security/trezord/distinfo +++ b/security/trezord/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1537790982 -SHA256 (trezor-trezord-go-v2.0.23-0e82873_GH0.tar.gz) = 87f359982952429d4f8303966ce750985fb1be484e3ee22ed636594b0dcc4345 -SIZE (trezor-trezord-go-v2.0.23-0e82873_GH0.tar.gz) = 954886 +TIMESTAMP = 1538563785 +SHA256 (trezor-trezord-go-v2.0.24-5-gf593bf3_GH0.tar.gz) = c246624c7456e313e9900fb304fc427608c43352f0c5622adb1be32f97912b81 +SIZE (trezor-trezord-go-v2.0.24-5-gf593bf3_GH0.tar.gz) = 955195 diff --git a/security/trezord/files/extra-patch-usb_libusb.go b/security/trezord/files/extra-patch-usb_libusb.go new file mode 100644 index 00000000000..9918e32c7c4 --- /dev/null +++ b/security/trezord/files/extra-patch-usb_libusb.go @@ -0,0 +1,38 @@ +--- usb/libusb.go.orig 2018-10-01 19:43:54 UTC ++++ usb/libusb.go +@@ -3,6 +3,7 @@ package usb + import ( + "encoding/hex" + "fmt" ++ "runtime" + "strings" + "sync" + "sync/atomic" +@@ -311,13 +312,21 @@ func (b *LibUSB) matchVidPid(vid uint16, + } + + func (b *LibUSB) identify(dev lowlevel.Device) string { +- var ports [8]byte +- p, err := lowlevel.Get_Port_Numbers(dev, ports[:]) +- if err != nil { +- b.mw.Println(fmt.Sprintf("libusb - identify - error getting port numbers %s", err.Error())) +- return "" ++ var path string ++ if runtime.GOOS != "freebsd" { ++ var ports [8]byte ++ p, err := lowlevel.Get_Port_Numbers(dev, ports[:]) ++ if err != nil { ++ b.mw.Println(fmt.Sprintf("webusb - identify - error getting port numbers %s", err.Error())) ++ return "" ++ } ++ path = hex.EncodeToString(p) ++ } else { ++ bn := lowlevel.Get_Bus_Number(dev) ++ da := lowlevel.Get_Device_Address(dev) ++ path = fmt.Sprintf("%02x%02x", bn, da) + } +- return libusbPrefix + hex.EncodeToString(p) ++ return libusbPrefix + path + } + + type WUD struct { diff --git a/security/trezord/files/extra-patch-usb_webusb.go b/security/trezord/files/extra-patch-usb_webusb.go deleted file mode 100644 index ac3f2ae34e1..00000000000 --- a/security/trezord/files/extra-patch-usb_webusb.go +++ /dev/null @@ -1,52 +0,0 @@ ---- usb/webusb.go.orig 2018-09-21 13:31:27 UTC -+++ usb/webusb.go -@@ -274,13 +274,21 @@ func (b *WebUSB) matchVidPid(vid uint16, - } - - func (b *WebUSB) identify(dev lowlevel.Device) string { -- var ports [8]byte -- p, err := lowlevel.Get_Port_Numbers(dev, ports[:]) -- if err != nil { -- b.mw.Println(fmt.Sprintf("webusb - identify - error getting port numbers %s", err.Error())) -- return "" -+ var path string -+ if runtime.GOOS != "freebsd" { -+ var ports [8]byte -+ p, err := lowlevel.Get_Port_Numbers(dev, ports[:]) -+ if err != nil { -+ b.mw.Println(fmt.Sprintf("webusb - identify - error getting port numbers %s", err.Error())) -+ return "" -+ } -+ path = hex.EncodeToString(p) -+ } else { -+ bn := lowlevel.Get_Bus_Number(dev) -+ da := lowlevel.Get_Device_Address(dev) -+ path = fmt.Sprintf("%02x%02x", bn, da) - } -- return webusbPrefix + hex.EncodeToString(p) -+ return webusbPrefix + path - } - - type WUD struct { -@@ -331,6 +339,12 @@ func (d *WUD) finishReadQueue() { - } - - func (d *WUD) readWrite(buf []byte, endpoint uint8) (int, error) { -+ var timeout uint -+ if runtime.GOOS != "freebsd" { -+ timeout = usbTimeout -+ } else { -+ timeout = 0 -+ } - d.mw.Println("webusb - rw - start") - for { - d.mw.Println("webusb - rw - checking closed") -@@ -343,7 +357,7 @@ func (d *WUD) readWrite(buf []byte, endp - d.mw.Println("webusb - rw - lock transfer mutex") - d.transferMutex.Lock() - d.mw.Println("webusb - rw - actual interrupt transport") -- p, err := lowlevel.Interrupt_Transfer(d.dev, endpoint, buf, usbTimeout) -+ p, err := lowlevel.Interrupt_Transfer(d.dev, endpoint, buf, timeout) - d.transferMutex.Unlock() - d.mw.Println("webusb - rw - single transfer done") - diff --git a/security/yubikey-personalization-gui/Makefile b/security/yubikey-personalization-gui/Makefile index 667de8417a5..a28c92f542b 100644 --- a/security/yubikey-personalization-gui/Makefile +++ b/security/yubikey-personalization-gui/Makefile @@ -3,6 +3,7 @@ PORTNAME= yubikey-personalization-gui PORTVERSION= 3.1.25 DISTVERSIONPREFIX= ${PORTNAME}- +PORTREVISION= 1 CATEGORIES= security MAINTAINER= romain@FreeBSD.org @@ -14,11 +15,19 @@ LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libykpers-1.so:security/ykpers \ libyubikey.so:security/libyubikey +USES= pkgconfig qmake USE_GITHUB= yes + GH_ACCOUNT= Yubico -USES= pkgconfig qmake qt:4 -USE_QT= corelib gui moc_build rcc_build testlib_build uic_build +OPTIONS_DEFAULT= QT5 +OPTIONS_SINGLE= QT +OPTIONS_SINGLE_QT= QT4 QT5 + +QT4_USES= qt:4 +QT5_USES= qt:5 +QT4_USE= qt=corelib,gui,moc_build,rcc_build,testlib_build,uic_build +QT5_USE= qt=buildtools_build,core,gui,testlib_build,widgets PLIST_FILES= bin/yubikey-personalization-gui \ man/man1/yubikey-personalization-gui.1.gz \ diff --git a/shells/p5-Bash-Completion/Makefile b/shells/p5-Bash-Completion/Makefile index bf4b237911d..066701b4f1f 100644 --- a/shells/p5-Bash-Completion/Makefile +++ b/shells/p5-Bash-Completion/Makefile @@ -15,9 +15,9 @@ COMMENT= Extensible system to provide bash completion LICENSE= ART20 LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-List-MoreUtils>=0:lang/p5-List-MoreUtils \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-List-MoreUtils>=0:lang/p5-List-MoreUtils \ p5-Module-Load>=0.22:devel/p5-Module-Load -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Deep>=0:devel/p5-Test-Deep NO_ARCH= yes diff --git a/shells/p5-Term-Bash-Completion-Generator/Makefile b/shells/p5-Term-Bash-Completion-Generator/Makefile index f8e30619be5..6bf07e9c7cc 100644 --- a/shells/p5-Term-Bash-Completion-Generator/Makefile +++ b/shells/p5-Term-Bash-Completion-Generator/Makefile @@ -14,10 +14,10 @@ COMMENT= Generate bash completion scripts LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Readonly>=0:devel/p5-Readonly \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Readonly>=0:devel/p5-Readonly \ p5-Sub-Exporter>=0:devel/p5-Sub-Exporter \ p5-Tree-Trie>=0:devel/p5-Tree-Trie -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-NoWarnings>=0:devel/p5-Test-NoWarnings \ p5-Test-Warn>=0:devel/p5-Test-Warn \ diff --git a/shells/p5-Term-ShellUI/Makefile b/shells/p5-Term-ShellUI/Makefile index 8988f3007a9..0ecaecccf07 100644 --- a/shells/p5-Term-ShellUI/Makefile +++ b/shells/p5-Term-ShellUI/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Fully-featured shell-like command line environment -BUILD_DEPENDS= p5-Term-ReadLine-Gnu>=0:devel/p5-Term-ReadLine-Gnu -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Term-ReadLine-Gnu>=0:devel/p5-Term-ReadLine-Gnu USES= perl5 shebangfix SHEBANG_FILES= examples/* diff --git a/sysutils/Makefile b/sysutils/Makefile index a1eef3d2d14..c69a1676b2e 100644 --- a/sysutils/Makefile +++ b/sysutils/Makefile @@ -296,6 +296,7 @@ SUBDIR += dvtm SUBDIR += dwatch SUBDIR += dwatch-gource + SUBDIR += dwatch-json SUBDIR += dwatch-pwsnoop SUBDIR += e2fsprogs SUBDIR += ec2-scripts @@ -1236,6 +1237,7 @@ SUBDIR += ssync SUBDIR += stalepid SUBDIR += stanchion + SUBDIR += stepsync SUBDIR += stmpclean SUBDIR += storcli SUBDIR += stow @@ -1344,6 +1346,7 @@ SUBDIR += u-boot-pandaboard SUBDIR += u-boot-pcduino3 SUBDIR += u-boot-pine64 + SUBDIR += u-boot-pinebook SUBDIR += u-boot-riotboard SUBDIR += u-boot-rpi SUBDIR += u-boot-rpi2 diff --git a/sysutils/acpica-tools/Makefile b/sysutils/acpica-tools/Makefile index 3c8d8fdb463..9a5f9e05e57 100644 --- a/sysutils/acpica-tools/Makefile +++ b/sysutils/acpica-tools/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= acpica -PORTVERSION= 20180927 +PORTVERSION= 20181003 CATEGORIES= sysutils devel MASTER_SITES= https://acpica.org/sites/acpica/files/ \ LOCAL/jkim diff --git a/sysutils/acpica-tools/distinfo b/sysutils/acpica-tools/distinfo index 786a0d44575..91b644e13e4 100644 --- a/sysutils/acpica-tools/distinfo +++ b/sysutils/acpica-tools/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1538065786 -SHA256 (acpica-unix-20180927.tar.gz) = dc408d11889bcbedcfe9cc5b7ed23f65e857ca8fd5125f8c7a9e075e0b282db1 -SIZE (acpica-unix-20180927.tar.gz) = 1805093 +TIMESTAMP = 1538589151 +SHA256 (acpica-unix-20181003.tar.gz) = 4c40014ef582665f87e4278f34a60b725bc99cb94341c900621780d6d5a708d1 +SIZE (acpica-unix-20181003.tar.gz) = 1805242 diff --git a/sysutils/archivemount/Makefile b/sysutils/archivemount/Makefile index ecb82d992cc..fa3a3269e4b 100644 --- a/sysutils/archivemount/Makefile +++ b/sysutils/archivemount/Makefile @@ -9,7 +9,7 @@ MASTER_SITES= http://www.cybernoia.de/software/archivemount/ MAINTAINER= jirnov@gmail.com COMMENT= Mount archives with FUSE -LICENSE= GPLv2 +LICENSE= LGPL20 LICENSE_FILE= ${WRKSRC}/COPYING USES= fuse gmake iconv libarchive pkgconfig diff --git a/sysutils/archivemount/pkg-descr b/sysutils/archivemount/pkg-descr index 21dfc6e9b54..ee1ba4f8048 100644 --- a/sysutils/archivemount/pkg-descr +++ b/sysutils/archivemount/pkg-descr @@ -3,4 +3,4 @@ Archivemount is a piece of glue code between libarchive (http://fuse.sourceforge.net). It can be used to mount a (possibly compressed) archive (as in .tar.gz or .tar.bz2) and use it like an ordinary filesystem. -WWW: http://www.cybernoia.de/software/archivemount/ +WWW: https://www.cybernoia.de/software/archivemount.html diff --git a/sysutils/atf-allwinner/Makefile b/sysutils/atf-allwinner/Makefile index 253cad7817c..b88ad877360 100644 --- a/sysutils/atf-allwinner/Makefile +++ b/sysutils/atf-allwinner/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= atf-allwinner -PORTVERSION= 1.2.20180112 +PORTVERSION= 1.2.20180403 CATEGORIES= sysutils MASTER_SITES= GH @@ -17,7 +17,7 @@ BUILD_DEPENDS= aarch64-none-elf-gcc:devel/aarch64-none-elf-gcc USE_GITHUB= yes GH_ACCOUNT= apritzel GH_PROJECT= arm-trusted-firmware -GH_TAGNAME= ae78724 +GH_TAGNAME= c9f55c0 SSP_UNSAFE= yes USES= gmake diff --git a/sysutils/atf-allwinner/distinfo b/sysutils/atf-allwinner/distinfo index 9d798d0acf0..c96caa1c145 100644 --- a/sysutils/atf-allwinner/distinfo +++ b/sysutils/atf-allwinner/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1517956517 -SHA256 (apritzel-arm-trusted-firmware-1.2.20180112-ae78724_GH0.tar.gz) = bb7ab757f6a2a106530aa257b3cffc6bc098b251ff74c46de0c0ef220dfdb245 -SIZE (apritzel-arm-trusted-firmware-1.2.20180112-ae78724_GH0.tar.gz) = 751979 +TIMESTAMP = 1538668056 +SHA256 (apritzel-arm-trusted-firmware-1.2.20180403-c9f55c0_GH0.tar.gz) = a62c89c162b76082ceb91d9d475ec4ee5386ad03125177136d7bbdb161b9957a +SIZE (apritzel-arm-trusted-firmware-1.2.20180403-c9f55c0_GH0.tar.gz) = 752112 diff --git a/sysutils/debhelper/Makefile b/sysutils/debhelper/Makefile index 04737bc4647..07d4b7a459a 100644 --- a/sysutils/debhelper/Makefile +++ b/sysutils/debhelper/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= debhelper -PORTVERSION= 11.4 +PORTVERSION= 11.4.1 CATEGORIES= sysutils MASTER_SITES= DEBIAN DISTNAME= ${PORTNAME}_${PORTVERSION} diff --git a/sysutils/debhelper/distinfo b/sysutils/debhelper/distinfo index ea812945e7a..68115c5a29d 100644 --- a/sysutils/debhelper/distinfo +++ b/sysutils/debhelper/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1537020814 -SHA256 (debhelper_11.4.tar.xz) = 47ca121690ef06231773e02853254accef9adb07297667b224b0c601713b0081 -SIZE (debhelper_11.4.tar.xz) = 473968 +TIMESTAMP = 1538591520 +SHA256 (debhelper_11.4.1.tar.xz) = 1c0e09254f17836f79c17756429b818e3852f5fadd40ce656f1e977daf0b0c53 +SIZE (debhelper_11.4.1.tar.xz) = 475072 diff --git a/sysutils/doctl/Makefile b/sysutils/doctl/Makefile index ac67da4625c..e0b8df6f4fa 100644 --- a/sysutils/doctl/Makefile +++ b/sysutils/doctl/Makefile @@ -2,7 +2,7 @@ PORTNAME= doctl DISTVERSIONPREFIX= v -DISTVERSION= 1.9.0 +DISTVERSION= 1.10.0 CATEGORIES= sysutils MAINTAINER= jrm@FreeBSD.org diff --git a/sysutils/doctl/distinfo b/sysutils/doctl/distinfo index 7dccd30ea92..c52acc8b6d3 100644 --- a/sysutils/doctl/distinfo +++ b/sysutils/doctl/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1535547382 -SHA256 (digitalocean-doctl-v1.9.0_GH0.tar.gz) = 3187f8b989d3e284c90ec1ef5252e8949319835b0e62cafe7b8df41c5ca8f422 -SIZE (digitalocean-doctl-v1.9.0_GH0.tar.gz) = 8773555 +TIMESTAMP = 1538512564 +SHA256 (digitalocean-doctl-v1.10.0_GH0.tar.gz) = 9e677563c57c330dcda26efa9f140dee83b982a53c0f9d4a11a34714866449b5 +SIZE (digitalocean-doctl-v1.10.0_GH0.tar.gz) = 8777680 diff --git a/sysutils/dwatch-json/Makefile b/sysutils/dwatch-json/Makefile new file mode 100644 index 00000000000..bf142de411f --- /dev/null +++ b/sysutils/dwatch-json/Makefile @@ -0,0 +1,38 @@ +# $FreeBSD$ + +PORTNAME= dwatch-json +DISTVERSION= 0.4.1 +CATEGORIES= sysutils + +MAINTAINER= dteske@FreeBSD.org +COMMENT= FreeBSD dwatch profiles to produce JSON logs + +LICENSE= BSD2CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +USE_GITHUB= yes +GH_ACCOUNT= FrauBSD + +NO_ARCH= yes +NO_BUILD= yes + +PORTDOCS= README.md + +OPTIONS_DEFINE= DOCS + +.include + +.if ${OSVERSION} < 1101516 || (${OSVERSION} >= 1200000 && ${OSVERSION} < 1200065) +IGNORE= requires dwatch available in recent FreeBSD 11 or 12 +.endif + +do-install: + @${MKDIR} ${STAGEDIR}${PREFIX}/libexec/dwatch + ${INSTALL_DATA} ${WRKSRC}/json-* ${STAGEDIR}${PREFIX}/libexec/dwatch + ${INSTALL_DATA} ${WRKSRC}/dwatch-json-net.conf ${STAGEDIR}${PREFIX}/etc/dwatch-json-net.conf.sample + +do-install-DOCS-on: + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR} + +.include diff --git a/sysutils/dwatch-json/distinfo b/sysutils/dwatch-json/distinfo new file mode 100644 index 00000000000..5fbf4a5b1f5 --- /dev/null +++ b/sysutils/dwatch-json/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1538436525 +SHA256 (FrauBSD-dwatch-json-0.4.1_GH0.tar.gz) = 49e5f6ca8a2254f61a64b30d629b1f858cd6c2cd757ae22c996343dde048f6fd +SIZE (FrauBSD-dwatch-json-0.4.1_GH0.tar.gz) = 9000 diff --git a/sysutils/dwatch-json/pkg-descr b/sysutils/dwatch-json/pkg-descr new file mode 100644 index 00000000000..c2c69889875 --- /dev/null +++ b/sysutils/dwatch-json/pkg-descr @@ -0,0 +1,6 @@ +DTrace module for FreeBSD dwatch(1) to produce JSON logs. JSON (JavaScript +Object Notation) is easily consumed by log aggregators such as Kafka and +Telegraf and visualizers like Vizceral. With these modules you can get +data out of the kernel/userland for use in such aggregators/visualizers. + +WWW: https://fraubsd.org/dwatch-json/ diff --git a/sysutils/dwatch-json/pkg-plist b/sysutils/dwatch-json/pkg-plist new file mode 100644 index 00000000000..7469f2283ff --- /dev/null +++ b/sysutils/dwatch-json/pkg-plist @@ -0,0 +1,7 @@ +etc/dwatch-json-net.conf.sample +libexec/dwatch/json-net +libexec/dwatch/json-net-config +libexec/dwatch/json-net-config-raw +libexec/dwatch/json-net-raw +libexec/dwatch/json-net-top +libexec/dwatch/json-net-top-raw diff --git a/sysutils/eksctl/Makefile b/sysutils/eksctl/Makefile index 5098f6aa185..1f7341cd960 100644 --- a/sysutils/eksctl/Makefile +++ b/sysutils/eksctl/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= eksctl -PORTVERSION= 0.1.4 +PORTVERSION= 0.1.5 CATEGORIES= sysutils MAINTAINER= danilo@FreeBSD.org diff --git a/sysutils/eksctl/distinfo b/sysutils/eksctl/distinfo index 8a2c88e61e4..dbbfaff90b6 100644 --- a/sysutils/eksctl/distinfo +++ b/sysutils/eksctl/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1538416116 -SHA256 (weaveworks-eksctl-0.1.4_GH0.tar.gz) = cec2330884b627a424680c34dd7824812cc95a4544f2dee86ec938a6c00bc26c -SIZE (weaveworks-eksctl-0.1.4_GH0.tar.gz) = 14925400 +TIMESTAMP = 1538763392 +SHA256 (weaveworks-eksctl-0.1.5_GH0.tar.gz) = bacb7ebb9f8f6e2396f770773b4ef9a37c62af528745d2cb36658c3ffdbde497 +SIZE (weaveworks-eksctl-0.1.5_GH0.tar.gz) = 14928922 diff --git a/sysutils/intel-qcu/Makefile b/sysutils/intel-qcu/Makefile index 1f9aed99926..7c1cd9dcb7f 100644 --- a/sysutils/intel-qcu/Makefile +++ b/sysutils/intel-qcu/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= qcu -PORTVERSION= 2.30.16.8 +PORTVERSION= 2.30.23.0 CATEGORIES= sysutils net MASTER_SITES= https://downloadmirror.intel.com/${MASTER_SITE_SUBDIR}/ \ http://downloadmirror.intel.com/${MASTER_SITE_SUBDIR}/ @@ -23,6 +23,7 @@ ONLY_FOR_ARCHS_REASON= not supported on anything other than amd64 USES= zip +NO_WRKSUBDIR= yes NO_BUILD= yes NO_ARCH= yes NO_ARCH_IGNORE= qcu diff --git a/sysutils/intel-qcu/distinfo b/sysutils/intel-qcu/distinfo index a332a5a8df7..a3fdd8f62d4 100644 --- a/sysutils/intel-qcu/distinfo +++ b/sysutils/intel-qcu/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1510586932 -SHA256 (FreeBSDx64.zip) = cf9bb7c0ba8b3968529ff4292c83f9487a329e1d850ad2cf7357c5b6388a2653 -SIZE (FreeBSDx64.zip) = 1767640 +TIMESTAMP = 1538747325 +SHA256 (FreeBSDx64.zip) = f76daed5a20a2a63e78af7b08ebeaaa7daedb09f0d1c951b9061f693f95f6cb6 +SIZE (FreeBSDx64.zip) = 1633796 diff --git a/sysutils/kubectl/Makefile b/sysutils/kubectl/Makefile index f5db03f9abe..45dd25cdf38 100644 --- a/sysutils/kubectl/Makefile +++ b/sysutils/kubectl/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= kubectl -PORTVERSION= 1.12.0 +PORTVERSION= 1.12.1 DISTVERSIONPREFIX= v CATEGORIES= sysutils diff --git a/sysutils/kubectl/distinfo b/sysutils/kubectl/distinfo index b44c4608892..1d63ad836e8 100644 --- a/sysutils/kubectl/distinfo +++ b/sysutils/kubectl/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1538156024 -SHA256 (kubernetes-kubernetes-v1.12.0_GH0.tar.gz) = 2530c590a725fab549ac434602e81e6b5340c8642a5ddce73078bf7c2fc02f45 -SIZE (kubernetes-kubernetes-v1.12.0_GH0.tar.gz) = 27995428 +TIMESTAMP = 1538777342 +SHA256 (kubernetes-kubernetes-v1.12.1_GH0.tar.gz) = aec871ee5e54a56defaef32fbead0824c1855db4a7277853a705d81b16f9791e +SIZE (kubernetes-kubernetes-v1.12.1_GH0.tar.gz) = 28027267 diff --git a/sysutils/minikube/Makefile b/sysutils/minikube/Makefile index 16ad3f0658f..75a5f219202 100644 --- a/sysutils/minikube/Makefile +++ b/sysutils/minikube/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= minikube -PORTVERSION= 0.29.0 +PORTVERSION= 0.30.0 DISTVERSIONPREFIX= v CATEGORIES= sysutils @@ -22,7 +22,7 @@ GH_ACCOUNT= kubernetes GO_PKGNAME= k8s.io/${PORTNAME} GO_TARGET= ${GO_PKGNAME}/cmd/${PORTNAME} GO_BUILDFLAGS= -ldflags="-X k8s.io/minikube/pkg/version.version=v${PORTVERSION} \ - -X k8s.io/minikube/pkg/version.isoVersion=v0.29.0 \ + -X k8s.io/minikube/pkg/version.isoVersion=v0.30.0 \ -X k8s.io/minikube/pkg/version.isoPath=minikube/iso" PLIST_FILES= bin/${PORTNAME} diff --git a/sysutils/minikube/distinfo b/sysutils/minikube/distinfo index 0c02692fe84..2671433852c 100644 --- a/sysutils/minikube/distinfo +++ b/sysutils/minikube/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1538117759 -SHA256 (kubernetes-minikube-v0.29.0_GH0.tar.gz) = 781fc7766372f81922c9d05d90aee96873a1522a1d00e983510ecd10256fc27f -SIZE (kubernetes-minikube-v0.29.0_GH0.tar.gz) = 9176207 +TIMESTAMP = 1538816046 +SHA256 (kubernetes-minikube-v0.30.0_GH0.tar.gz) = 6bc598b9ca46ecc168cbcc8594fed04d841c146050ce7f891910e3ccfa9b76ad +SIZE (kubernetes-minikube-v0.30.0_GH0.tar.gz) = 9180859 diff --git a/sysutils/p5-BSD-Jail-Object/Makefile b/sysutils/p5-BSD-Jail-Object/Makefile index c071c15aa35..16d45218426 100644 --- a/sysutils/p5-BSD-Jail-Object/Makefile +++ b/sysutils/p5-BSD-Jail-Object/Makefile @@ -14,9 +14,9 @@ COMMENT= Object oriented perl interface to jail(2) LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Inline>=0.44:devel/p5-Inline \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Inline>=0.44:devel/p5-Inline \ p5-Inline-C>=0.44:devel/p5-Inline-C -RUN_DEPENDS:= ${BUILD_DEPENDS} MAKE_JOBS_UNSAFE= yes diff --git a/sysutils/p5-Brackup/Makefile b/sysutils/p5-Brackup/Makefile index 9f16bf0364f..50b5cdff4b2 100644 --- a/sysutils/p5-Brackup/Makefile +++ b/sysutils/p5-Brackup/Makefile @@ -12,7 +12,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Flexible backup tool -BUILD_DEPENDS= p5-DBD-SQLite>0:databases/p5-DBD-SQLite \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-DBD-SQLite>0:databases/p5-DBD-SQLite \ p5-DBI>0:databases/p5-DBI \ p5-DateTime-Format-ISO8601>0:devel/p5-DateTime-Format-ISO8601 \ p5-Digest-SHA1>0:security/p5-Digest-SHA1 \ @@ -21,7 +22,6 @@ BUILD_DEPENDS= p5-DBD-SQLite>0:databases/p5-DBD-SQLite \ p5-Net-Amazon-S3>0:net/p5-Net-Amazon-S3 \ p5-Net-SFTP>0:net/p5-Net-SFTP \ p5-String-Escape>0:textproc/p5-String-Escape -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/sysutils/p5-File-Stat-ModeString/Makefile b/sysutils/p5-File-Stat-ModeString/Makefile index 8eecb8b39c8..5cadd308996 100644 --- a/sysutils/p5-File-Stat-ModeString/Makefile +++ b/sysutils/p5-File-Stat-ModeString/Makefile @@ -14,8 +14,8 @@ COMMENT= Converts file stat(2) mode to/from string representation LICENSE= GPLv2 -BUILD_DEPENDS= p5-File-Stat-Bits>0:sysutils/p5-File-Stat-Bits -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-File-Stat-Bits>0:sysutils/p5-File-Stat-Bits USES= perl5 USE_PERL5= configure diff --git a/sysutils/p5-Fuse-Simple/Makefile b/sysutils/p5-Fuse-Simple/Makefile index d8a38cf3bc2..842452d4341 100644 --- a/sysutils/p5-Fuse-Simple/Makefile +++ b/sysutils/p5-Fuse-Simple/Makefile @@ -15,8 +15,8 @@ COMMENT= Simple way to write filesystems in Perl using FUSE LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Fuse>=0:sysutils/p5-Fuse -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Fuse>=0:sysutils/p5-Fuse NO_ARCH= yes USE_PERL5= configure diff --git a/sysutils/p5-Giovanni/Makefile b/sysutils/p5-Giovanni/Makefile index 100c97aa671..1c6d8e8a3fc 100644 --- a/sysutils/p5-Giovanni/Makefile +++ b/sysutils/p5-Giovanni/Makefile @@ -13,7 +13,8 @@ COMMENT= PERL-based software deployment tool inspired by capistrano LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= \ p5-Config-GitLike>=0:devel/p5-Config-GitLike \ p5-Expect>=0:lang/p5-Expect \ p5-Git-Repository>=0:devel/p5-Git-Repository \ @@ -22,7 +23,6 @@ BUILD_DEPENDS= \ p5-Mouse>=0:devel/p5-Mouse \ p5-Net-OpenSSH>=0:net/p5-Net-OpenSSH -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/sysutils/p5-Log-Syslog-Fast/Makefile b/sysutils/p5-Log-Syslog-Fast/Makefile index 33379ccca8e..3fd00af46a0 100644 --- a/sysutils/p5-Log-Syslog-Fast/Makefile +++ b/sysutils/p5-Log-Syslog-Fast/Makefile @@ -14,8 +14,8 @@ COMMENT= Send syslog messages over TCP, UDP, or UNIX sockets LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Log-Syslog-Constants>-1.01:sysutils/p5-Log-Syslog-Constants -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Log-Syslog-Constants>-1.01:sysutils/p5-Log-Syslog-Constants USES= perl5 USE_PERL5= configure diff --git a/sysutils/p5-MogileFS-Client/Makefile b/sysutils/p5-MogileFS-Client/Makefile index 5917ea6a16c..d124c0bb77a 100644 --- a/sysutils/p5-MogileFS-Client/Makefile +++ b/sysutils/p5-MogileFS-Client/Makefile @@ -12,9 +12,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= trociny@FreeBSD.org COMMENT= Client library for the MogileFS distributed file system -BUILD_DEPENDS= p5-IO-stringy>=2.102:devel/p5-IO-stringy \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-IO-stringy>=2.102:devel/p5-IO-stringy \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/sysutils/p5-MogileFS-Network/Makefile b/sysutils/p5-MogileFS-Network/Makefile index e1bec7b19ab..facac2378d2 100644 --- a/sysutils/p5-MogileFS-Network/Makefile +++ b/sysutils/p5-MogileFS-Network/Makefile @@ -15,10 +15,10 @@ COMMENT= Network awareness and extensions for p5-MogileFS-Server LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Net-Netmask>=0:net-mgmt/p5-Net-Netmask \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Net-Netmask>=0:net-mgmt/p5-Net-Netmask \ p5-Net-Patricia>=0:net/p5-Net-Patricia \ p5-MogileFS-Server>=2.50:sysutils/p5-MogileFS-Server -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/sysutils/p5-MogileFS-Server/Makefile b/sysutils/p5-MogileFS-Server/Makefile index d33ac7a2652..4733fa06036 100644 --- a/sysutils/p5-MogileFS-Server/Makefile +++ b/sysutils/p5-MogileFS-Server/Makefile @@ -11,7 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= trociny@FreeBSD.org COMMENT= MogileFS (distributed filesystem) server -BUILD_DEPENDS= p5-Danga-Socket>=1.56:devel/p5-Danga-Socket \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Danga-Socket>=1.56:devel/p5-Danga-Socket \ p5-DBD-SQLite>=1.13:databases/p5-DBD-SQLite \ p5-DBD-mysql>=0:databases/p5-DBD-mysql \ p5-DBI>=0:databases/p5-DBI \ @@ -20,7 +21,6 @@ BUILD_DEPENDS= p5-Danga-Socket>=1.56:devel/p5-Danga-Socket \ p5-Net-Netmask>=0:net-mgmt/p5-Net-Netmask \ p5-Perlbal>=1.79:www/perlbal \ p5-Sys-Syscall>=0.22:devel/p5-Sys-Syscall -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/sysutils/p5-MogileFS-Utils/Makefile b/sysutils/p5-MogileFS-Utils/Makefile index 0971d34d4ca..817354eff03 100644 --- a/sysutils/p5-MogileFS-Utils/Makefile +++ b/sysutils/p5-MogileFS-Utils/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= trociny@FreeBSD.org COMMENT= MogileFS tools -BUILD_DEPENDS= p5-MogileFS-Client>=1.16:sysutils/p5-MogileFS-Client \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-MogileFS-Client>=1.16:sysutils/p5-MogileFS-Client \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/sysutils/p5-Monitor-Simple/Makefile b/sysutils/p5-Monitor-Simple/Makefile index 75ce3112be8..668d9148912 100644 --- a/sysutils/p5-Monitor-Simple/Makefile +++ b/sysutils/p5-Monitor-Simple/Makefile @@ -14,12 +14,12 @@ COMMENT= Simple monitoring of applications and services LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-IO-CaptureOutput>=0:devel/p5-IO-CaptureOutput \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-IO-CaptureOutput>=0:devel/p5-IO-CaptureOutput \ p5-Log-Log4perl>=0:devel/p5-Log-Log4perl \ p5-Parallel-ForkManager>=0:devel/p5-Parallel-ForkManager \ p5-XML-Simple>=0:textproc/p5-XML-Simple \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-File-Slurp>=0:devel/p5-File-Slurp \ p5-File-Which>=0:sysutils/p5-File-Which diff --git a/sysutils/p5-Rex/Makefile b/sysutils/p5-Rex/Makefile index a3d2519dfa7..103a49f822b 100644 --- a/sysutils/p5-Rex/Makefile +++ b/sysutils/p5-Rex/Makefile @@ -12,7 +12,8 @@ COMMENT= Perl framework for automation and systems administration LICENSE= APACHE20 -BUILD_DEPENDS= \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= \ p5-Devel-Caller>=0:devel/p5-Devel-Caller \ p5-HTTP-Message>=0:www/p5-HTTP-Message \ p5-Hash-Merge>=0:textproc/p5-Hash-Merge \ @@ -35,7 +36,6 @@ BUILD_DEPENDS= \ p5-Net-OpenSSH>=0:net/p5-Net-OpenSSH \ p5-Net-SFTP-Foreign>=0:net/p5-Net-SFTP-Foreign -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 shebangfix USE_PERL5= configure diff --git a/sysutils/p5-Schedule-Cron-Events/Makefile b/sysutils/p5-Schedule-Cron-Events/Makefile index a038393a11c..5d09175354a 100644 --- a/sysutils/p5-Schedule-Cron-Events/Makefile +++ b/sysutils/p5-Schedule-Cron-Events/Makefile @@ -14,8 +14,8 @@ COMMENT= Take a line from a crontab and find out when events will occur LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Set-Crontab>=0:devel/p5-Set-Crontab -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Set-Crontab>=0:devel/p5-Set-Crontab TEST_DEPENDS= p5-Test-Deep>=0:devel/p5-Test-Deep NO_ARCH= yes diff --git a/sysutils/p5-Sysadm-Install/Makefile b/sysutils/p5-Sysadm-Install/Makefile index 190620db7f7..deb00637b89 100644 --- a/sysutils/p5-Sysadm-Install/Makefile +++ b/sysutils/p5-Sysadm-Install/Makefile @@ -15,12 +15,12 @@ COMMENT= Typical installation tasks for system administrators LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Expect>=0:lang/p5-Expect \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Expect>=0:lang/p5-Expect \ p5-File-Which>=1.09:sysutils/p5-File-Which \ p5-Log-Log4perl>=1.28:devel/p5-Log-Log4perl \ p5-Term-ReadKey>=0:devel/p5-Term-ReadKey \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/sysutils/p5-Tail-Stat/Makefile b/sysutils/p5-Tail-Stat/Makefile index ae88b451b70..12b0544f659 100644 --- a/sysutils/p5-Tail-Stat/Makefile +++ b/sysutils/p5-Tail-Stat/Makefile @@ -14,13 +14,13 @@ COMMENT= Real-time log statistics server LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-DateTime>=0:devel/p5-DateTime \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-DateTime>=0:devel/p5-DateTime \ p5-JSON-XS>=0:converters/p5-JSON-XS \ p5-Log-Dispatch>=2.26:devel/p5-Log-Dispatch \ p5-POE>=0:devel/p5-POE \ p5-Pid-File-Flock>=0:devel/p5-Pid-File-Flock \ p5-Tie-Hash-Indexed>=0:devel/p5-Tie-Hash-Indexed -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-TCP>=0:devel/p5-Test-TCP USES= perl5 diff --git a/sysutils/p5-Ubic/Makefile b/sysutils/p5-Ubic/Makefile index d478cc10949..10d36512d48 100644 --- a/sysutils/p5-Ubic/Makefile +++ b/sysutils/p5-Ubic/Makefile @@ -14,14 +14,14 @@ COMMENT= Flexible perl-based service manager LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Class-Accessor>=0:devel/p5-Class-Accessor \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Accessor>=0:devel/p5-Class-Accessor \ p5-Config-Tiny>=0:devel/p5-Config-Tiny \ p5-HTTP-Server-Simple>=0:www/p5-HTTP-Server-Simple \ p5-JSON>=0:converters/p5-JSON \ p5-List-MoreUtils>=0:lang/p5-List-MoreUtils \ p5-Params-Validate>=0:devel/p5-Params-Validate \ p5-Try-Tiny>=0:lang/p5-Try-Tiny -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Class>=0:devel/p5-Test-Class \ p5-Test-Fatal>=0:devel/p5-Test-Fatal diff --git a/sysutils/p5-arclog/Makefile b/sysutils/p5-arclog/Makefile index 9a571325d6c..f8fbeb0391d 100644 --- a/sysutils/p5-arclog/Makefile +++ b/sysutils/p5-arclog/Makefile @@ -14,11 +14,11 @@ COMMENT= Archive the log files monthly LICENSE= GPLv3+ LICENSE_FILE= ${WRKSRC}/COPYING -BUILD_DEPENDS= p5-Compress-Bzip2>=0:archivers/p5-Compress-Bzip2 \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Compress-Bzip2>=0:archivers/p5-Compress-Bzip2 \ p5-File-MMagic>=0:devel/p5-File-MMagic \ p5-Term-ReadKey>=0:devel/p5-Term-ReadKey \ p5-TimeDate>=0:devel/p5-TimeDate -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/sysutils/p5-reslog/Makefile b/sysutils/p5-reslog/Makefile index 3e976d86b02..a1369127af5 100644 --- a/sysutils/p5-reslog/Makefile +++ b/sysutils/p5-reslog/Makefile @@ -14,10 +14,10 @@ COMMENT= Reverse-resolve IP in Apache log files LICENSE= GPLv3+ LICENSE_FILE= ${WRKSRC}/COPYING -BUILD_DEPENDS= p5-Compress-Bzip2>=0:archivers/p5-Compress-Bzip2 \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Compress-Bzip2>=0:archivers/p5-Compress-Bzip2 \ p5-File-MMagic>=0:devel/p5-File-MMagic \ p5-Term-ReadKey>=0:devel/p5-Term-ReadKey -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/sysutils/powerdxx/Makefile b/sysutils/powerdxx/Makefile index b3aabc2eb44..6078682e748 100644 --- a/sysutils/powerdxx/Makefile +++ b/sysutils/powerdxx/Makefile @@ -4,7 +4,7 @@ PORTNAME= powerdxx DISTVERSION= 0.3.0 CATEGORIES= sysutils -MAINTAINER= lebarondemerde@privacychain.ch +MAINTAINER= rigoletto@FreeBSD.org COMMENT= CPU clock speed/frequency daemon LICENSE= ISCL diff --git a/sysutils/puppet6/Makefile b/sysutils/puppet6/Makefile index e1f11062508..3dcf91e4ccb 100644 --- a/sysutils/puppet6/Makefile +++ b/sysutils/puppet6/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= puppet -PORTVERSION= 6.0.0 +PORTVERSION= 6.0.2 CATEGORIES= sysutils MASTER_SITES= https://downloads.puppetlabs.com/puppet/ PKGNAMESUFFIX= 6 diff --git a/sysutils/puppet6/distinfo b/sysutils/puppet6/distinfo index 7003643b784..3a6bac791c8 100644 --- a/sysutils/puppet6/distinfo +++ b/sysutils/puppet6/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1537339060 -SHA256 (puppet-6.0.0.tar.gz) = d60b018007ee1f1ac882aa2ba9a9052e6b6e5993b4d300fabf76307a42e362d0 -SIZE (puppet-6.0.0.tar.gz) = 2790790 +TIMESTAMP = 1538687023 +SHA256 (puppet-6.0.2.tar.gz) = 4f8d6c23da4e55a687e1f5b5154d75b3f827366efcd1dd14ea5a00b1378a3527 +SIZE (puppet-6.0.2.tar.gz) = 2796833 diff --git a/sysutils/puppetserver6/Makefile b/sysutils/puppetserver6/Makefile index 71f51877909..34324737b81 100644 --- a/sysutils/puppetserver6/Makefile +++ b/sysutils/puppetserver6/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= puppetserver -PORTVERSION= 6.0.0 +PORTVERSION= 6.0.1 CATEGORIES= sysutils java MASTER_SITES= https://downloads.puppetlabs.com/puppet/ PKGNAMESUFFIX= 6 diff --git a/sysutils/puppetserver6/distinfo b/sysutils/puppetserver6/distinfo index 631915cfdfb..56ba7fecf87 100644 --- a/sysutils/puppetserver6/distinfo +++ b/sysutils/puppetserver6/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1537339196 -SHA256 (puppetserver-6.0.0.tar.gz) = 5e289538d25d78856e72ac65b8f89334aff43ae9c290e4ed5052873c0749a2d7 -SIZE (puppetserver-6.0.0.tar.gz) = 62345355 +TIMESTAMP = 1538561651 +SHA256 (puppetserver-6.0.1.tar.gz) = 88bca683f6c73b364414f55f06a9a56e374f082e2ebd7da3870ac3ecbec0b6c5 +SIZE (puppetserver-6.0.1.tar.gz) = 62362369 diff --git a/sysutils/puppetserver6/files/patch-ext__bin__puppetserver b/sysutils/puppetserver6/files/patch-ext__bin__puppetserver index 15b8c8adf15..605a03f5093 100644 --- a/sysutils/puppetserver6/files/patch-ext__bin__puppetserver +++ b/sysutils/puppetserver6/files/patch-ext__bin__puppetserver @@ -1,6 +1,6 @@ ---- ext/bin/puppetserver.orig 2017-09-28 10:58:44.784311406 -0700 -+++ ext/bin/puppetserver 2017-09-28 11:00:46.034742764 -0700 -@@ -14,6 +14,12 @@ +--- ext/bin/puppetserver.orig 2018-10-03 16:18:58 UTC ++++ ext/bin/puppetserver +@@ -15,6 +15,12 @@ elif [ `uname` == "OpenBSD" ] ; then USER="_puppet" INSTALL_DIR="/opt/puppetlabs/server/apps/puppetserver" CONFIG="/etc/puppetlabs/puppetserver/conf.d" diff --git a/sysutils/puppetserver6/files/patch-ext__cli_defaults__cli-defaults.sh b/sysutils/puppetserver6/files/patch-ext__cli_defaults__cli-defaults.sh index 14431af83a0..d5c27a11e50 100644 --- a/sysutils/puppetserver6/files/patch-ext__cli_defaults__cli-defaults.sh +++ b/sysutils/puppetserver6/files/patch-ext__cli_defaults__cli-defaults.sh @@ -1,5 +1,5 @@ ---- ext/cli_defaults/cli-defaults.sh.orig 2017-08-06 01:24:37.981353156 -0700 -+++ ext/cli_defaults/cli-defaults.sh 2017-08-06 01:39:53.280636611 -0700 +--- ext/cli_defaults/cli-defaults.sh.orig 2018-10-01 20:36:08 UTC ++++ ext/cli_defaults/cli-defaults.sh @@ -1,4 +1,4 @@ -INSTALL_DIR="/opt/puppetlabs/server/apps/puppetserver" +INSTALL_DIR="%%DATADIR%%" diff --git a/sysutils/puppetserver6/files/patch-ext__config__conf.d__global.conf b/sysutils/puppetserver6/files/patch-ext__config__conf.d__global.conf index a681368841d..5fc83d8e0ae 100644 --- a/sysutils/puppetserver6/files/patch-ext__config__conf.d__global.conf +++ b/sysutils/puppetserver6/files/patch-ext__config__conf.d__global.conf @@ -1,5 +1,5 @@ ---- ext/config/conf.d/global.conf.orig 2017-08-02 20:34:12.049821329 -0700 -+++ ext/config/conf.d/global.conf 2017-08-02 20:35:03.130347445 -0700 +--- ext/config/conf.d/global.conf.orig 2018-10-01 20:36:05 UTC ++++ ext/config/conf.d/global.conf @@ -1,5 +1,5 @@ global: { # Path to logback logging configuration file; for more diff --git a/sysutils/puppetserver6/files/patch-ext__config__conf.d__puppetserver.conf b/sysutils/puppetserver6/files/patch-ext__config__conf.d__puppetserver.conf index 009674c3b8b..16ade757eef 100644 --- a/sysutils/puppetserver6/files/patch-ext__config__conf.d__puppetserver.conf +++ b/sysutils/puppetserver6/files/patch-ext__config__conf.d__puppetserver.conf @@ -1,6 +1,6 @@ ---- ext/config/conf.d/puppetserver.conf.orig 2017-08-02 20:01:48.229660631 -0700 -+++ ext/config/conf.d/puppetserver.conf 2017-08-04 14:00:29.705675760 -0700 -@@ -2,16 +2,20 @@ +--- ext/config/conf.d/puppetserver.conf.orig 2018-10-01 20:36:05 UTC ++++ ext/config/conf.d/puppetserver.conf +@@ -2,16 +2,21 @@ jruby-puppet: { # Where the puppet-agent dependency places puppet, facter, etc... # Puppet server expects to load Puppet from this location @@ -9,6 +9,7 @@ + %%RUBY_SITELIBDIR%%, + %%PREFIX%%/lib/ruby/vendor_ruby, + %%PREFIX%%/lib/ruby/gems/%%RUBY_VER%%/gems/semantic_puppet-1.0.2/lib, ++ %%PREFIX%%/lib/ruby/gems/%%RUBY_VER%%/gems/multi_json-1.13.1/lib, + ] # This setting determines where JRuby will install gems. It is used for loading gems, @@ -24,7 +25,7 @@ # PLEASE NOTE: Use caution when modifying the below settings. Modifying # these settings will change the value of the corresponding Puppet settings -@@ -26,23 +30,23 @@ +@@ -26,23 +31,23 @@ jruby-puppet: { # (optional) path to puppet conf dir; if not specified, will use # /etc/puppetlabs/puppet diff --git a/sysutils/puppetserver6/files/patch-ext__config__conf.d__webserver.conf b/sysutils/puppetserver6/files/patch-ext__config__conf.d__webserver.conf index 573e0a605a0..21e4c5e6d86 100644 --- a/sysutils/puppetserver6/files/patch-ext__config__conf.d__webserver.conf +++ b/sysutils/puppetserver6/files/patch-ext__config__conf.d__webserver.conf @@ -1,4 +1,4 @@ ---- ext/config/conf.d/webserver.conf.orig 2016-03-28 10:32:26.000000000 -0700 +--- ext/config/conf.d/webserver.conf.orig 2018-10-01 20:36:05 UTC +++ ext/config/conf.d/webserver.conf @@ -1,5 +1,5 @@ webserver: { diff --git a/sysutils/puppetserver6/files/patch-ext__config__logback.xml b/sysutils/puppetserver6/files/patch-ext__config__logback.xml index cc04e1c1e8b..278ccaf5f82 100644 --- a/sysutils/puppetserver6/files/patch-ext__config__logback.xml +++ b/sysutils/puppetserver6/files/patch-ext__config__logback.xml @@ -1,5 +1,5 @@ ---- ext/config/logback.xml.orig 2017-08-02 19:46:03.829675373 -0700 -+++ ext/config/logback.xml 2017-08-02 19:50:56.742766644 -0700 +--- ext/config/logback.xml.orig 2018-09-18 17:16:33 UTC ++++ ext/config/logback.xml @@ -6,12 +6,11 @@ diff --git a/sysutils/puppetserver6/files/patch-ext__config__request-logging.xml b/sysutils/puppetserver6/files/patch-ext__config__request-logging.xml index 587e091a7d6..4358008fdb4 100644 --- a/sysutils/puppetserver6/files/patch-ext__config__request-logging.xml +++ b/sysutils/puppetserver6/files/patch-ext__config__request-logging.xml @@ -1,7 +1,7 @@ ---- ext/config/request-logging.xml.orig 2016-12-03 22:32:37.248735656 -0800 -+++ ext/config/request-logging.xml 2016-12-03 22:37:39.489420010 -0800 +--- ext/config/request-logging.xml.orig 2018-09-18 17:16:33 UTC ++++ ext/config/request-logging.xml @@ -1,10 +1,10 @@ - + - /var/log/puppetlabs/puppetserver/puppetserver-access.log + /var/log/puppetserver/puppetserver-access.log diff --git a/sysutils/py-diffoscope/Makefile b/sysutils/py-diffoscope/Makefile index 6bf54f44253..920ca19a793 100644 --- a/sysutils/py-diffoscope/Makefile +++ b/sysutils/py-diffoscope/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= diffoscope -PORTVERSION= 99 +PORTVERSION= 103 CATEGORIES= sysutils python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/sysutils/py-diffoscope/distinfo b/sysutils/py-diffoscope/distinfo index bc5e4b88a5e..67059804055 100644 --- a/sysutils/py-diffoscope/distinfo +++ b/sysutils/py-diffoscope/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1532474314 -SHA256 (diffoscope-99.tar.gz) = 9d204ac51cc8ae59de755e1be0f7600e52b59badc32969942af4684c3f6f3f03 -SIZE (diffoscope-99.tar.gz) = 10030763 +TIMESTAMP = 1538580630 +SHA256 (diffoscope-103.tar.gz) = aea22460e46bf4c57d7e908a309f4a7c4b88aed9470603bcc109c05a5b6f411b +SIZE (diffoscope-103.tar.gz) = 10049359 diff --git a/sysutils/py-filelock/Makefile b/sysutils/py-filelock/Makefile index 1a5770c014f..f545425eb7a 100644 --- a/sysutils/py-filelock/Makefile +++ b/sysutils/py-filelock/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= filelock -DISTVERSION= 3.0.8 +DISTVERSION= 3.0.9 CATEGORIES= sysutils python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/sysutils/py-filelock/distinfo b/sysutils/py-filelock/distinfo index 9cece466a91..a76038082fd 100644 --- a/sysutils/py-filelock/distinfo +++ b/sysutils/py-filelock/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1537212644 -SHA256 (filelock-3.0.8.tar.gz) = 43531c580b8ad7bc830b5ea921b6aca8197d2d982b67b940359d9b4d546e5a9a -SIZE (filelock-3.0.8.tar.gz) = 6748 +TIMESTAMP = 1538626023 +SHA256 (filelock-3.0.9.tar.gz) = 97694f181bdf58f213cca0a7cb556dc7bf90e2f8eb9aa3151260adac56701afb +SIZE (filelock-3.0.9.tar.gz) = 6754 diff --git a/sysutils/py-tmuxp/Makefile b/sysutils/py-tmuxp/Makefile index 884e3ec5f9b..6bd9162ab9f 100644 --- a/sysutils/py-tmuxp/Makefile +++ b/sysutils/py-tmuxp/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= tmuxp -DISTVERSION= 1.4.1 +DISTVERSION= 1.4.2 CATEGORIES= sysutils python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/sysutils/py-tmuxp/distinfo b/sysutils/py-tmuxp/distinfo index cc731afbf50..b3eaf18c23d 100644 --- a/sysutils/py-tmuxp/distinfo +++ b/sysutils/py-tmuxp/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1538159996 -SHA256 (tmuxp-1.4.1.tar.gz) = bfc7e8cbe1334e8b10aa0e8fc1809121c7c4c3645c0aaaa93a760f9208195587 -SIZE (tmuxp-1.4.1.tar.gz) = 46922 +TIMESTAMP = 1538591832 +SHA256 (tmuxp-1.4.2.tar.gz) = b5895a6341729b4c712f03657c6d7e519bf0e32a8f8411dc28aee160c365f120 +SIZE (tmuxp-1.4.2.tar.gz) = 62990 diff --git a/sysutils/stepsync/Makefile b/sysutils/stepsync/Makefile new file mode 100644 index 00000000000..59ae799e015 --- /dev/null +++ b/sysutils/stepsync/Makefile @@ -0,0 +1,18 @@ +# Created by: Alexey Dokuchaev +# $FreeBSD$ + +PORTNAME= stepsync +PORTVERSION= 1.0 +CATEGORIES= sysutils gnustep +MASTER_SITES= SAVANNAH/gap +DISTNAME= StepSync-${PORTVERSION} + +MAINTAINER= danfe@FreeBSD.org +COMMENT= File and folder synchronization tool + +LICENSE= GPLv2+ + +USES= gnustep +USE_GNUSTEP= build base gui + +.include diff --git a/sysutils/stepsync/distinfo b/sysutils/stepsync/distinfo new file mode 100644 index 00000000000..f4806cd9f3f --- /dev/null +++ b/sysutils/stepsync/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1537999725 +SHA256 (StepSync-1.0.tar.gz) = 97ccd23828280ba54235240413718bb96c7403763709848ef327e3cb93e39d38 +SIZE (StepSync-1.0.tar.gz) = 34056 diff --git a/sysutils/stepsync/pkg-descr b/sysutils/stepsync/pkg-descr new file mode 100644 index 00000000000..0c1a44fb272 --- /dev/null +++ b/sysutils/stepsync/pkg-descr @@ -0,0 +1,7 @@ +StepSync allows keeping two folders synchronized, it can be thus used as a +back-up utility. It manages two trees, starting from a folder as root and +recursing in them, determines which files were added or removed or changed +(based on the last modification date), and distinctly allows to insert new +files, update, or delete. + +WWW: http://gap.nongnu.org/stepsync/ diff --git a/sysutils/stepsync/pkg-plist b/sysutils/stepsync/pkg-plist new file mode 100644 index 00000000000..1bb4e5cc460 --- /dev/null +++ b/sysutils/stepsync/pkg-plist @@ -0,0 +1,8 @@ +GNUstep/System/Applications/StepSync.app/Resources/Info-gnustep.plist +GNUstep/System/Applications/StepSync.app/Resources/MainMenu.gorm/data.classes +GNUstep/System/Applications/StepSync.app/Resources/MainMenu.gorm/data.info +GNUstep/System/Applications/StepSync.app/Resources/MainMenu.gorm/objects.gorm +GNUstep/System/Applications/StepSync.app/Resources/StepSync.desktop +GNUstep/System/Applications/StepSync.app/StepSync +GNUstep/System/Applications/StepSync.app/stamp.make +GNUstep/System/Tools/StepSync diff --git a/sysutils/u-boot-master/distinfo b/sysutils/u-boot-master/distinfo index e1f2bc8c716..931366af950 100644 --- a/sysutils/u-boot-master/distinfo +++ b/sysutils/u-boot-master/distinfo @@ -1,7 +1,17 @@ -TIMESTAMP = 1536942201 +TIMESTAMP = 1538666163 SHA256 (u-boot/u-boot-2018.09.tar.bz2) = 839bf23cfe8ce613a77e583a60375179d0ad324e92c82fbdd07bebf0fd142268 SIZE (u-boot/u-boot-2018.09.tar.bz2) = 12744107 SHA256 (u-boot/937869/raw) = 5959afb53dc744d9548a2d05a2a98d7c76e66570156353fc4f1220a648b8ac05 SIZE (u-boot/937869/raw) = 322 SHA256 (u-boot/939129/raw) = 2a4ebf283aec8e74ec77b3cb071c6883f73807454ca94fea78361c7391187b97 SIZE (u-boot/939129/raw) = 310 +SHA256 (u-boot/976729/raw) = a41021bd21fb6d4cb594f9fe62712ce186e56f47353e53becc6c689aca17b4ba +SIZE (u-boot/976729/raw) = 3243 +SHA256 (u-boot/976733/raw) = 7b7520d18df56d066c618953e2ab52d63c797a72559390b4dc8f6b2b11599646 +SIZE (u-boot/976733/raw) = 730 +SHA256 (u-boot/976732/raw) = 036f576190c6711d59a59ea4aa6c14f95d6540f22c6a769d17108a6ad0d57431 +SIZE (u-boot/976732/raw) = 411 +SHA256 (u-boot/976731/raw) = 303fab17d125b4bcc887772eb0227cc33323e43c2dc0aa52312d8454439ee602 +SIZE (u-boot/976731/raw) = 2258 +SHA256 (u-boot/976730/raw) = 42683e57759a7e6fb5f813678e8caf0fd7a5e347ac618bbc2c5b752487f77a7b +SIZE (u-boot/976730/raw) = 4991 diff --git a/sysutils/u-boot-pinebook/Makefile b/sysutils/u-boot-pinebook/Makefile new file mode 100644 index 00000000000..2a839cea580 --- /dev/null +++ b/sysutils/u-boot-pinebook/Makefile @@ -0,0 +1,15 @@ +# $FreeBSD$ + +MASTERDIR= ${.CURDIR}/../u-boot-master + +PATCHFILES+= 976729/raw \ + 976733/raw \ + 976732/raw \ + 976731/raw \ + 976730/raw + +MODEL= pinebook +BOARD_CONFIG= pinebook_defconfig +FAMILY= allwinner64 + +.include "${MASTERDIR}/Makefile" diff --git a/sysutils/u-boot-pinebook/pkg-descr b/sysutils/u-boot-pinebook/pkg-descr new file mode 100644 index 00000000000..7ed2aa41282 --- /dev/null +++ b/sysutils/u-boot-pinebook/pkg-descr @@ -0,0 +1,9 @@ +U-Boot loader and related files for the Pinebook + +To install this bootloader on an sdcard just do: +dd if=/usr/local/share/u-boot/u-boot-pinebook/u-boot-sunxi-with-spl.bin of=/path/to/sdcarddevice bs=1k seek=8 conv=sync + +For information about running FreeBSD on Allwinner boards, see + https://wiki.freebsd.org/FreeBSD/arm/Allwinner + +For general information about U-Boot see WWW: http://www.denx.de/wiki/U-Boot diff --git a/textproc/libextractor/Makefile b/textproc/libextractor/Makefile index 8002c698ea8..88c0d4dd539 100644 --- a/textproc/libextractor/Makefile +++ b/textproc/libextractor/Makefile @@ -2,26 +2,30 @@ # $FreeBSD$ PORTNAME= libextractor -PORTVERSION= 1.3 -PORTREVISION= 11 +PORTVERSION= 1.7 CATEGORIES= textproc MASTER_SITES= GNU MAINTAINER= ports@FreeBSD.org COMMENT= Library for keyword extraction -LICENSE= GPLv3+ +LICENSE= GPLv3 +LICENSE_FILE= ${WRKSRC}/COPYING -LIB_DEPENDS= libltdl.so:devel/libltdl +BUILD_DEPENDS= tidy-html5>0:www/tidy-html5 +LIB_DEPENDS= libltdl.so:devel/libltdl libogg.so:audio/libogg \ + libtiff.so:graphics/tiff + +USES= gnome iconv jpeg libarchive libtool \ + makeinfo pathfix pkgconfig python + +USE_GNOME= gtk20 gdkpixbuf2 +USE_LDCONFIG= yes -USES= iconv gettext libtool makeinfo pathfix pkgconfig python -USE_GNOME= gtk20 GNU_CONFIGURE= yes CONFIGURE_ARGS= --with-gtk-version=2 \ --with-ltdl=${LOCALBASE} INSTALL_TARGET= install-strip -USE_LDCONFIG= yes -MAKE_JOBS_UNSAFE= yes CPPFLAGS+= $$(pkg-config --cflags gtk+-2.0) \ -I${LOCALBASE}/include @@ -30,7 +34,7 @@ LDFLAGS+= -L${LOCALBASE}/lib ${ICONV_LIB} INFO= libextractor OPTIONS_DEFINE= EXIV2 FFMPEG FLAC GIF GSF GSTREAMER MPEG2 MP4 \ - RPM SMF TIDY VORBIS + NLS RPM SMF TIDY VORBIS OPTIONS_DEFAULT= EXIV2 FFMPEG FLAC GIF GSF GSTREAMER MPEG2 MP4 \ RPM SMF TIDY VORBIS OPTIONS_SUB= yes @@ -39,7 +43,7 @@ EXIV2_LIB_DEPENDS= libexiv2.so:graphics/exiv2 EXIV2_CONFIGURE_ENV= EXIV2_H="" EXIV2_CONFIGURE_ENV_OFF= EXIV2_H="" FLAC_LIB_DEPENDS= libFLAC.so:audio/flac -FLAC_CONFIGURE_ENV_OFF= ac_cv_lib_FLAC_FLAC__stream_decoder_init_stream=no +FLAC_CONFIGURE_ENV_OFF=ac_cv_lib_FLAC_FLAC__stream_decoder_init_stream=no FFMPEG_LIB_DEPENDS= libavcodec.so:multimedia/ffmpeg FFMPEG_CONFIGURE_ENABLE= ffmpeg GIF_LIB_DEPENDS= libgif.so:graphics/giflib @@ -53,6 +57,8 @@ MPEG2_LIB_DEPENDS= libmpeg2.so:multimedia/libmpeg2 MPEG2_CONFIGURE_ENV_OFF= ac_cv_lib_mpeg2_mpeg2_init=no MP4_LIB_DEPENDS= libmp4v2.so:multimedia/mp4v2 MP4_CONFIGURE_ENV_OFF= ac_cv_lib_mp4v2_MP4ReadProvider=no +NLS_USES= gettext-runtime +NLS_CONFIGURE_ENABLE= nls RPM_DESC= RPM support RPM_LIB_DEPENDS= librpm.so:archivers/rpm4 RPM_CONFIGURE_ENV= ac_cv_lib_rpm_rpmReadPackageFile=yes @@ -74,5 +80,6 @@ post-patch: s||$${TIDY_H}|' ${WRKSRC}/configure @${REINPLACE_CMD} -e \ 's|-lpthread|-pthread|' ${WRKSRC}/src/plugins/Makefile.in + ${REINPLACE_CMD} -e 's|tidy/tidybuffio.h|tidybuffio.h|' ${WRKSRC}/src/plugins/html_extractor.c .include diff --git a/textproc/libextractor/distinfo b/textproc/libextractor/distinfo index dffc06d7683..81a118f5be9 100644 --- a/textproc/libextractor/distinfo +++ b/textproc/libextractor/distinfo @@ -1,2 +1,3 @@ -SHA256 (libextractor-1.3.tar.gz) = 868ad64c9a056d6b923d451d746935bffb1ddf5d89c3eb4f67d786001a3f7b7f -SIZE (libextractor-1.3.tar.gz) = 7942021 +TIMESTAMP = 1537748923 +SHA256 (libextractor-1.7.tar.gz) = e0a6fde824cf2212c4f217a5e0fc03391251cfb46ca000117f66cf7ae4368e8f +SIZE (libextractor-1.7.tar.gz) = 8075299 diff --git a/textproc/libextractor/files/patch-configure b/textproc/libextractor/files/patch-configure deleted file mode 100644 index 88bbacabf75..00000000000 --- a/textproc/libextractor/files/patch-configure +++ /dev/null @@ -1,24 +0,0 @@ ---- configure.orig -+++ configure -@@ -22674,17 +22674,14 @@ - withval=$with_gtk_version; { $as_echo "$as_me:${as_lineno-$LINENO}: result: $with_gtk_version" >&5 - $as_echo "$with_gtk_version" >&6; } - case $with_gtk_version in -- *) -- if test "x${with_gtk_version:0:1}" == "x2" -- then -+ 2*) - check_for_3=false - check_for_2=$with_gtk_version -- elif test "x${with_gtk_version:0:1}" == "x3" -- then -+ ;; -+ 3*) - check_for_3=$with_gtk_version - check_for_2=false -- fi -- ;; -+ ;; - esac - - else diff --git a/textproc/libextractor/files/patch-ffmpeg29 b/textproc/libextractor/files/patch-ffmpeg29 deleted file mode 100644 index 7d11c4178ef..00000000000 --- a/textproc/libextractor/files/patch-ffmpeg29 +++ /dev/null @@ -1,359 +0,0 @@ -Description: update to new API in FFmpeg 2.9, fix FTBS -Origin: upstream -Applied-Upstream: commit: r35548:r35549 and r36975 ---- src/plugins/thumbnailffmpeg_extractor.c.orig -+++ src/plugins/thumbnailffmpeg_extractor.c -@@ -59,6 +59,20 @@ - #include - #endif - -+#if USE_JPEG -+#ifdef PIX_FMT_YUVJ420P -+#define PIX_OUTPUT_FORMAT PIX_FMT_YUVJ420P -+#else -+#define PIX_OUTPUT_FORMAT AV_PIX_FMT_YUVJ420P -+#endif -+#else -+#ifdef PIX_FMT_RGB24 -+#define PIX_OUTPUT_FORMAT PIX_FMT_RGB24 -+#else -+#define PIX_OUTPUT_FORMAT AV_PIX_FMT_RGB24 -+#endif -+#endif -+ - /** - * Set to 1 to enable debug output. - */ -@@ -82,7 +96,7 @@ - /** - * Number of bytes to feed to libav in one go, with padding (padding is zeroed). - */ --#define PADDED_BUFFER_SIZE (BUFFER_SIZE + FF_INPUT_BUFFER_PADDING_SIZE) -+#define PADDED_BUFFER_SIZE (BUFFER_SIZE + AV_INPUT_BUFFER_PADDING_SIZE) - - /** - * Global handle to MAGIC data. -@@ -153,7 +167,7 @@ - static size_t - create_thumbnail (int src_width, int src_height, - int src_stride[], -- enum PixelFormat src_pixfmt, -+ enum AVPixelFormat src_pixfmt, - const uint8_t * const src_data[], - int dst_width, int dst_height, - uint8_t **output_data, -@@ -189,7 +203,8 @@ - if (NULL == - (scaler_ctx = - sws_getContext (src_width, src_height, src_pixfmt, -- dst_width, dst_height, PIX_FMT_RGB24, -+ dst_width, dst_height, -+ PIX_OUTPUT_FORMAT, - SWS_BILINEAR, NULL, NULL, NULL))) - { - #if DEBUG -@@ -199,7 +214,12 @@ - return 0; - } - -- if (NULL == (dst_frame = avcodec_alloc_frame ())) -+#if LIBAVCODEC_VERSION_INT >= AV_VERSION_INT(55,28,1) -+ dst_frame = av_frame_alloc (); -+#else -+ dst_frame = avcodec_alloc_frame(); -+#endif -+ if (NULL == dst_frame) - { - #if DEBUG - fprintf (stderr, -@@ -209,18 +229,24 @@ - return 0; - } - if (NULL == (dst_buffer = -- av_malloc (avpicture_get_size (PIX_FMT_RGB24, dst_width, dst_height)))) -+ av_malloc (avpicture_get_size (PIX_OUTPUT_FORMAT, -+ dst_width, dst_height)))) - { - #if DEBUG - fprintf (stderr, - "Failed to allocate the destination image buffer\n"); - #endif -- av_free (dst_frame); -+#if LIBAVCODEC_VERSION_INT >= AV_VERSION_INT(55,28,1) -+ av_frame_free (&dst_frame); -+#else -+ avcodec_free_frame (&dst_frame); -+#endif - sws_freeContext (scaler_ctx); - return 0; - } - avpicture_fill ((AVPicture *) dst_frame, dst_buffer, -- PIX_FMT_RGB24, dst_width, dst_height); -+ PIX_OUTPUT_FORMAT, -+ dst_width, dst_height); - sws_scale (scaler_ctx, - src_data, - src_stride, -@@ -236,7 +262,11 @@ - "Failed to allocate the encoder output buffer\n"); - #endif - av_free (dst_buffer); -- av_free (dst_frame); -+#if LIBAVCODEC_VERSION_INT >= AV_VERSION_INT(55,28,1) -+ av_frame_free (&dst_frame); -+#else -+ avcodec_free_frame (&dst_frame); -+#endif - sws_freeContext (scaler_ctx); - return 0; - } -@@ -249,13 +279,17 @@ - #endif - av_free (encoder_output_buffer); - av_free (dst_buffer); -- av_free (dst_frame); -+#if LIBAVCODEC_VERSION_INT >= AV_VERSION_INT(55,28,1) -+ av_frame_free (&dst_frame); -+#else -+ avcodec_free_frame (&dst_frame); -+#endif - sws_freeContext (scaler_ctx); - return 0; - } - encoder_codec_ctx->width = dst_width; - encoder_codec_ctx->height = dst_height; -- encoder_codec_ctx->pix_fmt = PIX_FMT_RGB24; -+ encoder_codec_ctx->pix_fmt = PIX_OUTPUT_FORMAT; - opts = NULL; - if (avcodec_open2 (encoder_codec_ctx, encoder_codec, &opts) < 0) - { -@@ -263,10 +297,14 @@ - fprintf (stderr, - "Failed to open the encoder\n"); - #endif -- av_free (encoder_codec_ctx); -+ avcodec_free_context (&encoder_codec_ctx); - av_free (encoder_output_buffer); - av_free (dst_buffer); -- av_free (dst_frame); -+#if LIBAVCODEC_VERSION_INT >= AV_VERSION_INT(55,28,1) -+ av_frame_free (&dst_frame); -+#else -+ avcodec_free_frame (&dst_frame); -+#endif - sws_freeContext (scaler_ctx); - return 0; - } -@@ -295,9 +333,13 @@ - cleanup: - av_dict_free (&opts); - avcodec_close (encoder_codec_ctx); -- av_free (encoder_codec_ctx); -+ avcodec_free_context (&encoder_codec_ctx); - av_free (dst_buffer); -- av_free (dst_frame); -+#if LIBAVCODEC_VERSION_INT >= AV_VERSION_INT(55,28,1) -+ av_frame_free (&dst_frame); -+#else -+ avcodec_free_frame (&dst_frame); -+#endif - sws_freeContext (scaler_ctx); - *output_data = encoder_output_buffer; - -@@ -406,18 +448,23 @@ - fprintf (stderr, - "Failed to open image codec\n"); - #endif -- av_free (codec_ctx); -+ avcodec_free_context (&codec_ctx); - return; - } - av_dict_free (&opts); -- if (NULL == (frame = avcodec_alloc_frame ())) -+#if LIBAVCODEC_VERSION_INT >= AV_VERSION_INT(55,28,1) -+ frame = av_frame_alloc (); -+#else -+ frame = avcodec_alloc_frame(); -+#endif -+ if (NULL == frame) - { - #if DEBUG - fprintf (stderr, - "Failed to allocate frame\n"); - #endif - avcodec_close (codec_ctx); -- av_free (codec_ctx); -+ avcodec_free_context (&codec_ctx); - return; - } - -@@ -441,9 +488,13 @@ - fprintf (stderr, - "Failed to decode a complete frame\n"); - #endif -- av_free (frame); -+#if LIBAVCODEC_VERSION_INT >= AV_VERSION_INT(55,28,1) -+ av_frame_free (&frame); -+#else -+ avcodec_free_frame (&frame); -+#endif - avcodec_close (codec_ctx); -- av_free (codec_ctx); -+ avcodec_free_context (&codec_ctx); - return; - } - calculate_thumbnail_dimensions (codec_ctx->width, codec_ctx->height, -@@ -467,9 +518,13 @@ - err); - av_free (encoded_thumbnail); - } -- av_free (frame); -+#if LIBAVCODEC_VERSION_INT >= AV_VERSION_INT(55,28,1) -+ av_frame_free (&frame); -+#else -+ avcodec_free_frame (&frame); -+#endif - avcodec_close (codec_ctx); -- av_free (codec_ctx); -+ avcodec_free_context (&codec_ctx); - } - - -@@ -563,7 +618,12 @@ - return; - } - -- if (NULL == (frame = avcodec_alloc_frame ())) -+#if LIBAVCODEC_VERSION_INT >= AV_VERSION_INT(55,28,1) -+ frame = av_frame_alloc (); -+#else -+ frame = avcodec_alloc_frame(); -+#endif -+ if (NULL == frame) - { - #if DEBUG - fprintf (stderr, -@@ -616,7 +676,11 @@ - fprintf (stderr, - "Failed to decode a complete frame\n"); - #endif -- av_free (frame); -+#if LIBAVCODEC_VERSION_INT >= AV_VERSION_INT(55,28,1) -+ av_frame_free (&frame); -+#else -+ avcodec_free_frame (&frame); -+#endif - avcodec_close (codec_ctx); - avformat_close_input (&format_ctx); - av_free (io_ctx); -@@ -643,7 +707,11 @@ - err); - av_free (encoded_thumbnail); - } -- av_free (frame); -+#if LIBAVCODEC_VERSION_INT >= AV_VERSION_INT(55,28,1) -+ av_frame_free (&frame); -+#else -+ avcodec_free_frame (&frame); -+#endif - avcodec_close (codec_ctx); - avformat_close_input (&format_ctx); - av_free (io_ctx); ---- src/plugins/previewopus_extractor.c.orig -+++ src/plugins/previewopus_extractor.c -@@ -296,7 +296,12 @@ - /** Initialize one audio frame for reading from the input file */ - static int init_input_frame(AVFrame **frame) - { -- if (!(*frame = avcodec_alloc_frame())) { -+#if LIBAVCODEC_VERSION_INT >= AV_VERSION_INT(55,28,1) -+ *frame = av_frame_alloc (); -+#else -+ *frame = avcodec_alloc_frame(); -+#endif -+ if (NULL == *frame) { - #if DEBUG - fprintf(stderr, "Could not allocate input frame\n"); - #endif -@@ -655,7 +660,11 @@ - av_freep(&converted_input_samples[0]); - free(converted_input_samples); - } -+#if LIBAVCODEC_VERSION_INT >= AV_VERSION_INT(55,28,1) -+ av_frame_free (&input_frame); -+#else - avcodec_free_frame(&input_frame); -+#endif - - return ret; - } -@@ -671,7 +680,12 @@ - int error; - - /** Create a new frame to store the audio samples. */ -- if (!(*frame = avcodec_alloc_frame())) { -+#if LIBAVCODEC_VERSION_INT >= AV_VERSION_INT(55,28,1) -+ *frame = av_frame_alloc (); -+#else -+ *frame = avcodec_alloc_frame(); -+#endif -+ if (NULL == *frame) { - #if DEBUG - fprintf(stderr, "Could not allocate output frame\n"); - #endif -@@ -702,7 +716,11 @@ - #if DEBUG - fprintf(stderr, "Could allocate output frame samples (error '%s')\n", get_error_text(error)); - #endif -+#if LIBAVCODEC_VERSION_INT >= AV_VERSION_INT(55,28,1) -+ av_frame_free (frame); -+#else - avcodec_free_frame(frame); -+#endif - return error; - } - -@@ -783,17 +801,29 @@ - #if DEBUG - fprintf(stderr, "Could not read data from FIFO\n"); - #endif -+#if LIBAVCODEC_VERSION_INT >= AV_VERSION_INT(55,28,1) -+ av_frame_free (&output_frame); -+#else - avcodec_free_frame(&output_frame); -+#endif - return AVERROR_EXIT; - } - - /** Encode one frame worth of audio samples. */ - if (encode_audio_frame(output_frame, output_format_context, - output_codec_context, &data_written)) { -+#if LIBAVCODEC_VERSION_INT >= AV_VERSION_INT(55,28,1) -+ av_frame_free (&output_frame); -+#else - avcodec_free_frame(&output_frame); -+#endif - return AVERROR_EXIT; - } -+#if LIBAVCODEC_VERSION_INT >= AV_VERSION_INT(55,28,1) -+ av_frame_free (&output_frame); -+#else - avcodec_free_frame(&output_frame); -+#endif - return 0; - } - /** Write the trailer of the output file container. */ -@@ -907,7 +937,12 @@ - return; - } - -- if (NULL == (frame = avcodec_alloc_frame ())) -+#if LIBAVCODEC_VERSION_INT >= AV_VERSION_INT(55,28,1) -+ frame = av_frame_alloc (); -+#else -+ frame = avcodec_alloc_frame(); -+#endif -+ if (NULL == frame) - { - #if DEBUG - fprintf (stderr, diff --git a/textproc/libextractor/files/patch-gentoo_git-00c65df b/textproc/libextractor/files/patch-gentoo_git-00c65df deleted file mode 100644 index 3aa31a9b353..00000000000 --- a/textproc/libextractor/files/patch-gentoo_git-00c65df +++ /dev/null @@ -1,39 +0,0 @@ -Obtained from: - https://gitweb.gentoo.org/repo/gentoo.git/tree/media-libs/libextractor/files/libextractor-1.3-exiv2-0.26.patch?id=00c65df99751d235e08fe2f54613dac2eeb2f80b - -From 00c65df99751d235e08fe2f54613dac2eeb2f80b Mon Sep 17 00:00:00 2001 -From: Andreas Sturmlechner -Date: Sat, 17 Jun 2017 22:36:09 +0200 -Subject: media-libs/libextractor: Fix build with media-gfx/exiv2-0.26 - -Gentoo-bug: 621242 - -Package-Manager: Portage-2.3.5, Repoman-2.3.1 - ---- src/plugins/exiv2_extractor.cc 2013-06-25 13:02:05.000000000 +0200 -+++ src/plugins/exiv2_extractor.cc 2017-06-10 14:22:57.000000000 +0200 -@@ -180,7 +180,11 @@ - * - * @return -1 on error - */ -+#if EXIV2_VERSION >= EXIV2_MAKE_VERSION(0,26,0) -+ virtual size_t size (void) const; -+#else - virtual long int size (void) const; -+#endif - - /** - * Check if file is open. -@@ -445,7 +449,11 @@ - * - * @return -1 on error - */ --long int -+#if EXIV2_VERSION >= EXIV2_MAKE_VERSION(0,26,0) -+size_t -+#else -+long int -+#endif - ExtractorIO::size (void) const - { - return (long) ec->get_size (ec->cls); diff --git a/textproc/libextractor/files/patch-src_plugins_gif__extractor.c b/textproc/libextractor/files/patch-src_plugins_gif__extractor.c deleted file mode 100644 index b87aebfcffd..00000000000 --- a/textproc/libextractor/files/patch-src_plugins_gif__extractor.c +++ /dev/null @@ -1,26 +0,0 @@ ---- src/plugins/gif_extractor.c.orig 2013-06-21 16:00:16 UTC -+++ src/plugins/gif_extractor.c -@@ -78,7 +78,11 @@ EXTRACTOR_gif_extract_method (struct EXT - if (gif_file == NULL || gif_error != 0) - { - if (gif_file != NULL) -+#if GIFLIB_MAJOR == 5 && GIFLIB_MINOR >= 1 || GIFLIB_MAJOR > 5 -+ EGifCloseFile (gif_file, NULL); -+#else - EGifCloseFile (gif_file); -+#endif - return; /* not a GIF */ - } - #endif -@@ -133,7 +137,11 @@ EXTRACTOR_gif_extract_method (struct EXT - DGifGetExtensionNext(gif_file, &ext)) && - (NULL != ext) ) ; /* keep going */ - } -+#if GIFLIB_MAJOR == 5 && GIFLIB_MINOR >= 1 || GIFLIB_MAJOR > 5 -+ DGifCloseFile (gif_file, NULL); -+#else - DGifCloseFile (gif_file); -+#endif - } - - /* end of gif_extractor.c */ diff --git a/textproc/libextractor/pkg-plist b/textproc/libextractor/pkg-plist index 1c068cf194f..8ef80e9ba92 100644 --- a/textproc/libextractor/pkg-plist +++ b/textproc/libextractor/pkg-plist @@ -3,11 +3,7 @@ include/extractor.h lib/libextractor.a lib/libextractor.so lib/libextractor.so.3 -lib/libextractor.so.3.1.3 -lib/libextractor_common.a -lib/libextractor_common.so -lib/libextractor_common.so.1 -lib/libextractor_common.so.1.0.0 +lib/libextractor.so.3.1.6 lib/libextractor/libextractor_archive.a lib/libextractor/libextractor_archive.so lib/libextractor/libextractor_deb.a @@ -46,6 +42,8 @@ lib/libextractor/libextractor_odf.so %%VORBIS%%lib/libextractor/libextractor_ogg.so %%GSF%%lib/libextractor/libextractor_ole2.a %%GSF%%lib/libextractor/libextractor_ole2.so +lib/libextractor/libextractor_pdf.a +lib/libextractor/libextractor_pdf.so lib/libextractor/libextractor_png.a lib/libextractor/libextractor_png.so %%FFMPEG%%lib/libextractor/libextractor_previewopus.a @@ -72,17 +70,23 @@ lib/libextractor/libextractor_xm.a lib/libextractor/libextractor_xm.so lib/libextractor/libextractor_zip.a lib/libextractor/libextractor_zip.so +lib/libextractor_common.a +lib/libextractor_common.so +lib/libextractor_common.so.1 +lib/libextractor_common.so.1.0.0 libdata/pkgconfig/libextractor.pc man/man1/extract.1.gz man/man3/libextractor.3.gz -share/locale/de/LC_MESSAGES/libextractor.mo -share/locale/fr/LC_MESSAGES/libextractor.mo -share/locale/ga/LC_MESSAGES/libextractor.mo -share/locale/it/LC_MESSAGES/libextractor.mo -share/locale/nl/LC_MESSAGES/libextractor.mo -share/locale/pl/LC_MESSAGES/libextractor.mo -share/locale/ro/LC_MESSAGES/libextractor.mo -share/locale/rw/LC_MESSAGES/libextractor.mo -share/locale/sv/LC_MESSAGES/libextractor.mo -share/locale/uk/LC_MESSAGES/libextractor.mo -share/locale/vi/LC_MESSAGES/libextractor.mo +%%NLS%%share/locale/de/LC_MESSAGES/libextractor.mo +%%NLS%%share/locale/es/LC_MESSAGES/libextractor.mo +%%NLS%%share/locale/fr/LC_MESSAGES/libextractor.mo +%%NLS%%share/locale/ga/LC_MESSAGES/libextractor.mo +%%NLS%%share/locale/it/LC_MESSAGES/libextractor.mo +%%NLS%%share/locale/nl/LC_MESSAGES/libextractor.mo +%%NLS%%share/locale/pl/LC_MESSAGES/libextractor.mo +%%NLS%%share/locale/ro/LC_MESSAGES/libextractor.mo +%%NLS%%share/locale/rw/LC_MESSAGES/libextractor.mo +%%NLS%%share/locale/sr/LC_MESSAGES/libextractor.mo +%%NLS%%share/locale/sv/LC_MESSAGES/libextractor.mo +%%NLS%%share/locale/uk/LC_MESSAGES/libextractor.mo +%%NLS%%share/locale/vi/LC_MESSAGES/libextractor.mo diff --git a/textproc/liblrdf/Makefile b/textproc/liblrdf/Makefile index 17fc62085a5..5eeb781c55c 100644 --- a/textproc/liblrdf/Makefile +++ b/textproc/liblrdf/Makefile @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= liblrdf -PORTVERSION= 0.5.0 -PORTREVISION= 11 +DISTVERSION= 0.6.1 CATEGORIES= textproc MASTER_SITES= GENTOO @@ -16,17 +15,15 @@ LICENSE_FILE= ${WRKSRC}/COPYING BUILD_DEPENDS= ${LOCALBASE}/include/ladspa.h:audio/ladspa LIB_DEPENDS= libraptor2.so:textproc/raptor2 -GNU_CONFIGURE= yes USES= autoreconf libtool pathfix pkgconfig ssl USE_LDCONFIG= yes + +WRKSRC= ${WRKDIR}/LRDF-${DISTVERSION} + +GNU_CONFIGURE= yes INSTALL_TARGET= install-strip CFLAGS+= -I${OPENSSLINC} LDFLAGS+= -L${OPENSSLLIB} -WRKSRC= ${WRKDIR}/swh-LRDF-7ebc032 - -post-patch: - @${FIND} ${WRKSRC}/m4 -type l -delete - .include diff --git a/textproc/liblrdf/distinfo b/textproc/liblrdf/distinfo index c6c91dbcf1a..72a9f0e18cb 100644 --- a/textproc/liblrdf/distinfo +++ b/textproc/liblrdf/distinfo @@ -1,2 +1,3 @@ -SHA256 (liblrdf-0.5.0.tar.gz) = 013002b91ef209827fe99552b8c7f0b569cddb3d6f1439bedbd8bafe1956a93c -SIZE (liblrdf-0.5.0.tar.gz) = 283109 +TIMESTAMP = 1538679391 +SHA256 (liblrdf-0.6.1.tar.gz) = d579417c477ac3635844cd1b94f273ee2529a8c3b6b21f9b09d15f462b89b1ef +SIZE (liblrdf-0.6.1.tar.gz) = 43878 diff --git a/textproc/liblrdf/files/patch-configure.ac b/textproc/liblrdf/files/patch-configure.ac index 492f44cd981..03a77f65125 100644 --- a/textproc/liblrdf/files/patch-configure.ac +++ b/textproc/liblrdf/files/patch-configure.ac @@ -1,6 +1,6 @@ ---- configure.ac~ 2012-08-22 17:58:12.000000000 -0300 -+++ configure.ac 2012-08-22 17:58:36.000000000 -0300 -@@ -34,8 +34,8 @@ +--- configure.ac.orig 2017-01-09 16:58:58 UTC ++++ configure.ac +@@ -31,8 +31,8 @@ dnl AC_FUNC_MALLOC AC_FUNC_VPRINTF AC_CHECK_FUNCS([getcwd strcasecmp strchr strdup strerror strncasecmp strrchr]) diff --git a/textproc/multimarkdown/Makefile b/textproc/multimarkdown/Makefile index d887ae47b1d..b8306e9e9d3 100644 --- a/textproc/multimarkdown/Makefile +++ b/textproc/multimarkdown/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= multimarkdown -DISTVERSION= 6.3.2 +DISTVERSION= 6.4.0 CATEGORIES= textproc DIST_SUBDIR= ${PORTNAME} diff --git a/textproc/multimarkdown/distinfo b/textproc/multimarkdown/distinfo index 9d4739446ed..0cd69862603 100644 --- a/textproc/multimarkdown/distinfo +++ b/textproc/multimarkdown/distinfo @@ -1,6 +1,6 @@ -TIMESTAMP = 1522327671 -SHA256 (multimarkdown/fletcher-MultiMarkdown-6-6.3.2_GH0.tar.gz) = 2b02c2b42a216128ee1596c93840c6e097155aa1c854578535dcf4a0c09b2ff9 -SIZE (multimarkdown/fletcher-MultiMarkdown-6-6.3.2_GH0.tar.gz) = 3144768 +TIMESTAMP = 1535901912 +SHA256 (multimarkdown/fletcher-MultiMarkdown-6-6.4.0_GH0.tar.gz) = fa9daa089bc0f8bc1f69fd7365778d59210b446ce7008d03b87fb572df8ff5d3 +SIZE (multimarkdown/fletcher-MultiMarkdown-6-6.4.0_GH0.tar.gz) = 3207938 SHA256 (multimarkdown/fletcher-MultiMarkdown-6-Syntax-Guide-3b268b4_GH0.tar.gz) = cc8e5c49d81dc65212b3366719a13fb62ab2b21f54d997ec943a439118158401 SIZE (multimarkdown/fletcher-MultiMarkdown-6-Syntax-Guide-3b268b4_GH0.tar.gz) = 48364 SHA256 (multimarkdown/fletcher-MMD-Support-685c95c_GH0.tar.gz) = 3544d81579a0a3d8b1649437ef418f5a4862c5cf080309fd817f617a2f958e69 diff --git a/textproc/multimarkdown/pkg-plist b/textproc/multimarkdown/pkg-plist index e42d16194d5..fb1fa3e3af4 100644 --- a/textproc/multimarkdown/pkg-plist +++ b/textproc/multimarkdown/pkg-plist @@ -14,6 +14,7 @@ share/texmf/tex/latex/mmd6/Vintage.png share/texmf/tex/latex/mmd6/beamerthemekeynote-gradient.sty share/texmf/tex/latex/mmd6/beamerthemekeynote-portfolio.sty share/texmf/tex/latex/mmd6/beamerthemekeynote-vintage.sty +share/texmf/tex/latex/mmd6/manuscript.sty share/texmf/tex/latex/mmd6/mmd-envelope.sty share/texmf/tex/latex/mmd6/mmd-letterhead.sty share/texmf/tex/latex/mmd6/mmd6-article-begin.tex @@ -27,6 +28,14 @@ share/texmf/tex/latex/mmd6/mmd6-default-metadata.tex share/texmf/tex/latex/mmd6/mmd6-letterhead-begin.tex share/texmf/tex/latex/mmd6/mmd6-letterhead-footer.tex share/texmf/tex/latex/mmd6/mmd6-letterhead-leader.tex +share/texmf/tex/latex/mmd6/mmd6-manuscript-begin.tex +share/texmf/tex/latex/mmd6/mmd6-manuscript-footer.tex +share/texmf/tex/latex/mmd6/mmd6-manuscript-leader.tex +share/texmf/tex/latex/mmd6/mmd6-manuscript-packages.tex +share/texmf/tex/latex/mmd6/mmd6-memoir-book-begin.tex +share/texmf/tex/latex/mmd6/mmd6-memoir-book-footer.tex +share/texmf/tex/latex/mmd6/mmd6-memoir-book-leader.tex +share/texmf/tex/latex/mmd6/mmd6-memoir-copyright.tex share/texmf/tex/latex/mmd6/mmd6-memoir-footer.tex share/texmf/tex/latex/mmd6/mmd6-memoir-layout-8.5x11.tex share/texmf/tex/latex/mmd6/mmd6-memoir-packages.tex diff --git a/textproc/p5-AI-Categorizer/Makefile b/textproc/p5-AI-Categorizer/Makefile index debf461524e..6300324b1a1 100644 --- a/textproc/p5-AI-Categorizer/Makefile +++ b/textproc/p5-AI-Categorizer/Makefile @@ -14,7 +14,8 @@ COMMENT= Automatic Text Categorization LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Class-Container>=0:devel/p5-Class-Container \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Container>=0:devel/p5-Class-Container \ p5-Params-Validate>=0:devel/p5-Params-Validate \ p5-Statistics-Contingency>=0:math/p5-Statistics-Contingency \ p5-Lingua-Stem>=0:textproc/p5-Lingua-Stem \ @@ -22,7 +23,6 @@ BUILD_DEPENDS= p5-Class-Container>=0:devel/p5-Class-Container \ p5-Algorithm-SVM>=0:devel/p5-Algorithm-SVM \ p5-AI-DecisionTree>=0:math/p5-AI-DecisionTree \ p5-Algorithm-NaiveBayes>=0:devel/p5-Algorithm-NaiveBayes -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= modbuild diff --git a/textproc/p5-BibTeX-Parser/Makefile b/textproc/p5-BibTeX-Parser/Makefile index f641b296343..480ff2750ca 100644 --- a/textproc/p5-BibTeX-Parser/Makefile +++ b/textproc/p5-BibTeX-Parser/Makefile @@ -15,9 +15,9 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-IO-String>=0:devel/p5-IO-String \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-IO-String>=0:devel/p5-IO-String \ p5-LaTeX-ToUnicode>=0.02:textproc/p5-LaTeX-ToUnicode -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/textproc/p5-CAM-PDF/Makefile b/textproc/p5-CAM-PDF/Makefile index b78051854a8..f845b4edce7 100644 --- a/textproc/p5-CAM-PDF/Makefile +++ b/textproc/p5-CAM-PDF/Makefile @@ -14,9 +14,9 @@ COMMENT= PDF manipulation library LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Crypt-RC4>=2.02:security/p5-Crypt-RC4 \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Crypt-RC4>=2.02:security/p5-Crypt-RC4 \ p5-Text-PDF>=0.29:print/p5-Text-PDF -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Memory-Cycle>=1.02:devel/p5-Test-Memory-Cycle \ p5-Test-Pod>=0:devel/p5-Test-Pod \ p5-Test-Pod-Coverage>=0:devel/p5-Test-Pod-Coverage diff --git a/textproc/p5-CQL-Parser/Makefile b/textproc/p5-CQL-Parser/Makefile index cd72c88efe6..7504ac3c374 100644 --- a/textproc/p5-CQL-Parser/Makefile +++ b/textproc/p5-CQL-Parser/Makefile @@ -15,10 +15,10 @@ COMMENT= Compiles CQL strings into parse trees of Node subtypes LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Class-Accessor>=0.1:devel/p5-Class-Accessor \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Accessor>=0.1:devel/p5-Class-Accessor \ p5-Clone>=0.15:devel/p5-Clone \ p5-String-Tokenizer>=0.05:textproc/p5-String-Tokenizer -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-CPAN-Changes>=0:devel/p5-CPAN-Changes \ p5-Test-Exception>=0.21:devel/p5-Test-Exception diff --git a/textproc/p5-CSS-Croco/Makefile b/textproc/p5-CSS-Croco/Makefile index 68e6ea47c54..9b152048b36 100644 --- a/textproc/p5-CSS-Croco/Makefile +++ b/textproc/p5-CSS-Croco/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Quick CSS parser -BUILD_DEPENDS= p5-URI>=0:net/p5-URI -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-URI>=0:net/p5-URI LIB_DEPENDS= libcroco-0.6.so:textproc/libcroco USES= perl5 pkgconfig diff --git a/textproc/p5-CSS-Packer/Makefile b/textproc/p5-CSS-Packer/Makefile index 032d9b0efe6..27ac088d3cf 100644 --- a/textproc/p5-CSS-Packer/Makefile +++ b/textproc/p5-CSS-Packer/Makefile @@ -13,8 +13,8 @@ COMMENT= Another CSS minifier LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Regexp-RegGrp>=1.001001:devel/p5-Regexp-RegGrp -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Regexp-RegGrp>=1.001001:devel/p5-Regexp-RegGrp TEST_DEPENDS= p5-Test-File-Contents>=0.21:devel/p5-Test-File-Contents \ p5-Test-Pod>=1.22:devel/p5-Test-Pod diff --git a/textproc/p5-CSS-SAC/Makefile b/textproc/p5-CSS-SAC/Makefile index b6edc89e331..bda4baf02d4 100644 --- a/textproc/p5-CSS-SAC/Makefile +++ b/textproc/p5-CSS-SAC/Makefile @@ -14,8 +14,8 @@ COMMENT= SAC CSS (Simple API for CSS) parser LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Class-ArrayObjects>=0.04:devel/p5-Class-ArrayObjects -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-ArrayObjects>=0.04:devel/p5-Class-ArrayObjects USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-Class-CSV/Makefile b/textproc/p5-Class-CSV/Makefile index f73853263ae..df59fe6c5c9 100644 --- a/textproc/p5-Class-CSV/Makefile +++ b/textproc/p5-Class-CSV/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Class based CSV parser/writer -BUILD_DEPENDS= p5-Text-CSV_XS>=0.23:textproc/p5-Text-CSV_XS \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Text-CSV_XS>=0.23:textproc/p5-Text-CSV_XS \ p5-Class-Accessor>=0.18:devel/p5-Class-Accessor -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-Data-FormValidator-Constraints-DateTime/Makefile b/textproc/p5-Data-FormValidator-Constraints-DateTime/Makefile index cc5a59350f5..4cbce33f7df 100644 --- a/textproc/p5-Data-FormValidator-Constraints-DateTime/Makefile +++ b/textproc/p5-Data-FormValidator-Constraints-DateTime/Makefile @@ -15,11 +15,11 @@ COMMENT= Data::FormValidator constraints for dates and times LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Data-FormValidator>=0:textproc/p5-Data-FormValidator \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Data-FormValidator>=0:textproc/p5-Data-FormValidator \ p5-DateTime>=0:devel/p5-DateTime \ p5-DateTime-Format-Strptime>=0:devel/p5-DateTime-Format-Strptime \ p5-DateTime-Format-Builder>=0:devel/p5-DateTime-Format-Builder -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/textproc/p5-Data-FormValidator/Makefile b/textproc/p5-Data-FormValidator/Makefile index 3a4cc241fcd..bc2f2e324c4 100644 --- a/textproc/p5-Data-FormValidator/Makefile +++ b/textproc/p5-Data-FormValidator/Makefile @@ -13,7 +13,8 @@ COMMENT= Validates user input (usually from an HTML form) based LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-CGI>=3.48:www/p5-CGI \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-CGI>=3.48:www/p5-CGI \ p5-Date-Calc>=5.0:devel/p5-Date-Calc \ p5-Email-Valid>=0:mail/p5-Email-Valid \ p5-File-MMagic>=1.17:devel/p5-File-MMagic \ @@ -21,7 +22,6 @@ BUILD_DEPENDS= p5-CGI>=3.48:www/p5-CGI \ p5-MIME-Types>=1.005:mail/p5-MIME-Types \ p5-Perl6-Junction>=1.10:devel/p5-Perl6-Junction \ p5-Regexp-Common>=0:textproc/p5-Regexp-Common -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/textproc/p5-Data-Phrasebook-Loader-YAML/Makefile b/textproc/p5-Data-Phrasebook-Loader-YAML/Makefile index 0946b6f92f9..279b7abda0e 100644 --- a/textproc/p5-Data-Phrasebook-Loader-YAML/Makefile +++ b/textproc/p5-Data-Phrasebook-Loader-YAML/Makefile @@ -13,9 +13,9 @@ COMMENT= Loader class for phrasebook implementations using YAML LICENSE= ART20 -BUILD_DEPENDS= p5-Data-Phrasebook>=0.24:textproc/p5-Data-Phrasebook \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Data-Phrasebook>=0.24:textproc/p5-Data-Phrasebook \ p5-YAML>=0.35:textproc/p5-YAML -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Distribution>=0:devel/p5-Test-Distribution USES= perl5 diff --git a/textproc/p5-Data-Phrasebook/Makefile b/textproc/p5-Data-Phrasebook/Makefile index 7d9fdd5cb40..a693ecc763d 100644 --- a/textproc/p5-Data-Phrasebook/Makefile +++ b/textproc/p5-Data-Phrasebook/Makefile @@ -13,8 +13,8 @@ COMMENT= Accessing phrasebooks from various data sources LICENSE= ART20 -BUILD_DEPENDS= p5-Module-Pluggable>=2.7:devel/p5-Module-Pluggable -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Module-Pluggable>=2.7:devel/p5-Module-Pluggable USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-Data-SpreadPagination/Makefile b/textproc/p5-Data-SpreadPagination/Makefile index a7bb0643e43..a500c7270c6 100644 --- a/textproc/p5-Data-SpreadPagination/Makefile +++ b/textproc/p5-Data-SpreadPagination/Makefile @@ -14,9 +14,9 @@ COMMENT= Page numbering and spread pagination LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Data-Page>=0:databases/p5-Data-Page \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Data-Page>=0:databases/p5-Data-Page \ p5-Math-Round>=0:math/p5-Math-Round -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Pod>=0:devel/p5-Test-Pod USES= perl5 diff --git a/textproc/p5-Dev-Bollocks/Makefile b/textproc/p5-Dev-Bollocks/Makefile index a87f6291b56..bfb3576d33e 100644 --- a/textproc/p5-Dev-Bollocks/Makefile +++ b/textproc/p5-Dev-Bollocks/Makefile @@ -12,8 +12,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Perl module to generate bollocks straight from middle management -BUILD_DEPENDS= p5-Math-String>=0:math/p5-Math-String -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Math-String>=0:math/p5-Math-String USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-Devel-TraceSAX/Makefile b/textproc/p5-Devel-TraceSAX/Makefile index 8ea82c50d47..83f7861a021 100644 --- a/textproc/p5-Devel-TraceSAX/Makefile +++ b/textproc/p5-Devel-TraceSAX/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Trace SAX events -BUILD_DEPENDS= p5-Devel-TraceCalls>=0.03:devel/p5-Devel-TraceCalls \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Devel-TraceCalls>=0.03:devel/p5-Devel-TraceCalls \ p5-XML-SAX-Machines>=0:textproc/p5-XML-SAX-Machines -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-DocSet/Makefile b/textproc/p5-DocSet/Makefile index 73a00fff999..8f436c5f36c 100644 --- a/textproc/p5-DocSet/Makefile +++ b/textproc/p5-DocSet/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Documentation projects builder in HTML, PS, and PDF formats -BUILD_DEPENDS= p5-Pod-POM>=0:textproc/p5-Pod-POM \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Pod-POM>=0:textproc/p5-Pod-POM \ p5-Template-Toolkit>=0:www/p5-Template-Toolkit -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-Excel-Template/Makefile b/textproc/p5-Excel-Template/Makefile index cfbf83c7541..27be69288db 100644 --- a/textproc/p5-Excel-Template/Makefile +++ b/textproc/p5-Excel-Template/Makefile @@ -14,12 +14,12 @@ COMMENT= Perl module for templating Excel files LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-IO-stringy>=0:devel/p5-IO-stringy \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-IO-stringy>=0:devel/p5-IO-stringy \ p5-Test-Exception>=0.21:devel/p5-Test-Exception \ p5-XML-Parser>=0:textproc/p5-XML-Parser \ p5-Spreadsheet-WriteExcel>=0:textproc/p5-Spreadsheet-WriteExcel \ p5-Test-Deep>=0:devel/p5-Test-Deep -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-Excel-Writer-XLSX/Makefile b/textproc/p5-Excel-Writer-XLSX/Makefile index d54a74fca56..3a1d55d9f74 100644 --- a/textproc/p5-Excel-Writer-XLSX/Makefile +++ b/textproc/p5-Excel-Writer-XLSX/Makefile @@ -14,8 +14,8 @@ COMMENT= Create a new file in the Excel 2007+ XLSX format LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Archive-Zip>=1.30:archivers/p5-Archive-Zip -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Archive-Zip>=1.30:archivers/p5-Archive-Zip TEST_DEPENDS= p5-Date-Calc>=0:devel/p5-Date-Calc \ p5-Date-Manip>=0:devel/p5-Date-Manip diff --git a/textproc/p5-FormValidator-Lite/Makefile b/textproc/p5-FormValidator-Lite/Makefile index f7c18e65c88..b2762515e91 100644 --- a/textproc/p5-FormValidator-Lite/Makefile +++ b/textproc/p5-FormValidator-Lite/Makefile @@ -14,11 +14,11 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Class-Accessor-Lite>=0.05:devel/p5-Class-Accessor-Lite \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Accessor-Lite>=0.05:devel/p5-Class-Accessor-Lite \ p5-Class-Load>=0.11:devel/p5-Class-Load \ p5-Email-Valid>=0:mail/p5-Email-Valid \ p5-Email-Valid-Loose>=0:mail/p5-Email-Valid-Loose -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-CGI>=3.31:www/p5-CGI \ p5-Test-Requires>=0.05:devel/p5-Test-Requires \ p5-Text-TestBase>=0:textproc/p5-Text-TestBase \ diff --git a/textproc/p5-Geo-Parse-OSM/Makefile b/textproc/p5-Geo-Parse-OSM/Makefile index c887859b620..89057bccace 100644 --- a/textproc/p5-Geo-Parse-OSM/Makefile +++ b/textproc/p5-Geo-Parse-OSM/Makefile @@ -12,9 +12,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= amdmi3@FreeBSD.org COMMENT= OpenStreetMap XML file regexp parser -BUILD_DEPENDS= p5-HTML-Parser>=0:www/p5-HTML-Parser \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTML-Parser>=0:www/p5-HTML-Parser \ p5-List-MoreUtils>=0:lang/p5-List-MoreUtils -RUN_DEPENDS:= ${BUILD_DEPENDS} PORTSCOUT= skipv:0.221 diff --git a/textproc/p5-Google-Data-JSON/Makefile b/textproc/p5-Google-Data-JSON/Makefile index 09784d9ed17..47422f8f901 100644 --- a/textproc/p5-Google-Data-JSON/Makefile +++ b/textproc/p5-Google-Data-JSON/Makefile @@ -13,7 +13,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= General XML-JSON converter based on Google Data APIs -BUILD_DEPENDS= p5-File-Slurp>=0:devel/p5-File-Slurp \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-File-Slurp>=0:devel/p5-File-Slurp \ p5-JSON-Any>=0:converters/p5-JSON-Any \ p5-List-MoreUtils>=0:lang/p5-List-MoreUtils \ p5-Perl6-Export-Attrs>=0:devel/p5-Perl6-Export-Attrs \ @@ -21,7 +22,6 @@ BUILD_DEPENDS= p5-File-Slurp>=0:devel/p5-File-Slurp \ p5-XML-Atom>=0:textproc/p5-XML-Atom \ p5-XML-Simple>=0:textproc/p5-XML-Simple \ p5-YAML-Syck>=0:textproc/p5-YAML-Syck -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-NoWarnings>=0:devel/p5-Test-NoWarnings \ p5-Test-Perl-Critic>=0:textproc/p5-Test-Perl-Critic diff --git a/textproc/p5-HTML-Entities-Interpolate/Makefile b/textproc/p5-HTML-Entities-Interpolate/Makefile index a5e08a99e17..8b120ec1e5a 100644 --- a/textproc/p5-HTML-Entities-Interpolate/Makefile +++ b/textproc/p5-HTML-Entities-Interpolate/Makefile @@ -14,9 +14,9 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-HTML-Parser>=3.69:www/p5-HTML-Parser \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTML-Parser>=3.69:www/p5-HTML-Parser \ p5-Tie-Function>=0.02:devel/p5-Tie-Function -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Capture-Tiny>=0.44:devel/p5-Capture-Tiny \ p5-File-Slurper>=0.009:devel/p5-File-Slurper diff --git a/textproc/p5-HTML-EscapeEvil/Makefile b/textproc/p5-HTML-EscapeEvil/Makefile index 9321bef4428..c016794e644 100644 --- a/textproc/p5-HTML-EscapeEvil/Makefile +++ b/textproc/p5-HTML-EscapeEvil/Makefile @@ -11,10 +11,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Escape evil HTML tags -BUILD_DEPENDS= p5-HTML-Tree>=0:www/p5-HTML-Tree \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTML-Tree>=0:www/p5-HTML-Tree \ p5-Class-Accessor>=0:devel/p5-Class-Accessor \ p5-HTML-Parser>=0:www/p5-HTML-Parser -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-HTML-Format/Makefile b/textproc/p5-HTML-Format/Makefile index 8d87aefff72..11ba9bb0c4c 100644 --- a/textproc/p5-HTML-Format/Makefile +++ b/textproc/p5-HTML-Format/Makefile @@ -15,9 +15,9 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Font-AFM>=0:x11-fonts/p5-Font-AFM \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Font-AFM>=0:x11-fonts/p5-Font-AFM \ p5-HTML-Tree>=3.15:www/p5-HTML-Tree -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-File-Slurper>=0:devel/p5-File-Slurper NO_ARCH= yes diff --git a/textproc/p5-HTML-FormatExternal/Makefile b/textproc/p5-HTML-FormatExternal/Makefile index 02e00700a97..446b2c0304e 100644 --- a/textproc/p5-HTML-FormatExternal/Makefile +++ b/textproc/p5-HTML-FormatExternal/Makefile @@ -12,10 +12,10 @@ COMMENT= HTML to text formatting using external programs LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/COPYING -BUILD_DEPENDS= p5-IPC-Run>0:devel/p5-IPC-Run \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-IPC-Run>0:devel/p5-IPC-Run \ p5-URI>=0.08:net/p5-URI \ p5-constant-defer>=0:devel/p5-constant-defer -RUN_DEPENDS:= ${BUILD_DEPENDS} OPTIONS_DEFINE= ELINKS HTML2TEXT LINKS LYNX LYNX_CURRENT NETRIK W3M OPTIONS_DEFAULT=LYNX diff --git a/textproc/p5-HTML-FormatText-WithLinks-AndTables/Makefile b/textproc/p5-HTML-FormatText-WithLinks-AndTables/Makefile index cb75a23a8cc..a0979771592 100644 --- a/textproc/p5-HTML-FormatText-WithLinks-AndTables/Makefile +++ b/textproc/p5-HTML-FormatText-WithLinks-AndTables/Makefile @@ -13,10 +13,10 @@ COMMENT= Perl5 module to convert HTML to text with tables intact LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-HTML-Format>=0:textproc/p5-HTML-Format \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTML-Format>=0:textproc/p5-HTML-Format \ p5-HTML-FormatText-WithLinks>=0:textproc/p5-HTML-FormatText-WithLinks \ p5-HTML-Tree>=0:www/p5-HTML-Tree -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-HTML-FormatText-WithLinks/Makefile b/textproc/p5-HTML-FormatText-WithLinks/Makefile index 83620cf0d4a..1f775754925 100644 --- a/textproc/p5-HTML-FormatText-WithLinks/Makefile +++ b/textproc/p5-HTML-FormatText-WithLinks/Makefile @@ -14,9 +14,9 @@ COMMENT= Perl5 module to convert HTML to text with links as footnotes LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-HTML-Format>=0:textproc/p5-HTML-Format \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTML-Format>=0:textproc/p5-HTML-Format \ p5-URI>=0:net/p5-URI -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-HTML-HTML5-Parser/Makefile b/textproc/p5-HTML-HTML5-Parser/Makefile index ff21660c178..6e81dc0bf1f 100644 --- a/textproc/p5-HTML-HTML5-Parser/Makefile +++ b/textproc/p5-HTML-HTML5-Parser/Makefile @@ -15,12 +15,12 @@ COMMENT= Named entity list for HTML parser LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-HTML-HTML5-Entities>=0.002:textproc/p5-HTML-HTML5-Entities \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTML-HTML5-Entities>=0.002:textproc/p5-HTML-HTML5-Entities \ p5-IO-HTML>0:devel/p5-IO-HTML \ p5-Try-Tiny>0:lang/p5-Try-Tiny \ p5-URI>0:net/p5-URI \ p5-XML-LibXML>=1.94:textproc/p5-XML-LibXML -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-HTML-HTMLDoc/Makefile b/textproc/p5-HTML-HTMLDoc/Makefile index 45de51e81a7..7a587ed22ee 100644 --- a/textproc/p5-HTML-HTMLDoc/Makefile +++ b/textproc/p5-HTML-HTMLDoc/Makefile @@ -12,8 +12,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= kostjnspb@yandex.ru COMMENT= Perl interface to the htmldoc program -BUILD_DEPENDS= htmldoc>0:textproc/htmldoc -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= htmldoc>0:textproc/htmldoc USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-HTML-Packer/Makefile b/textproc/p5-HTML-Packer/Makefile index 3f3accf87c6..6cd4ee6e1c6 100644 --- a/textproc/p5-HTML-Packer/Makefile +++ b/textproc/p5-HTML-Packer/Makefile @@ -13,10 +13,10 @@ COMMENT= Another HTML code cleaner LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-CSS-Packer>=2.01:textproc/p5-CSS-Packer \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-CSS-Packer>=2.01:textproc/p5-CSS-Packer \ p5-JavaScript-Packer>=2.01:textproc/p5-JavaScript-Packer \ p5-Regexp-RegGrp>=1.001001:devel/p5-Regexp-RegGrp -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Pod>=1.22:devel/p5-Test-Pod NO_ARCH= yes diff --git a/textproc/p5-HTML-QRCode/Makefile b/textproc/p5-HTML-QRCode/Makefile index a18e65923ba..1734482c2f9 100644 --- a/textproc/p5-HTML-QRCode/Makefile +++ b/textproc/p5-HTML-QRCode/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Generate HTML based QR Code -BUILD_DEPENDS= p5-Text-QRCode>0:textproc/p5-Text-QRCode -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Text-QRCode>0:textproc/p5-Text-QRCode LIB_DEPENDS= libqrencode.so:graphics/libqrencode USES= perl5 diff --git a/textproc/p5-HTML-Quoted/Makefile b/textproc/p5-HTML-Quoted/Makefile index 87feb7af9ec..9fa1210cc02 100644 --- a/textproc/p5-HTML-Quoted/Makefile +++ b/textproc/p5-HTML-Quoted/Makefile @@ -13,8 +13,8 @@ COMMENT= Extract structure of quoted HTML mail message LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-HTML-Parser>=3.0:www/p5-HTML-Parser -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTML-Parser>=3.0:www/p5-HTML-Parser USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-HTML-RewriteAttributes/Makefile b/textproc/p5-HTML-RewriteAttributes/Makefile index 255360a4605..f0cfdefa531 100644 --- a/textproc/p5-HTML-RewriteAttributes/Makefile +++ b/textproc/p5-HTML-RewriteAttributes/Makefile @@ -10,10 +10,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Simple yet powerful HTML attribute rewriting -BUILD_DEPENDS= p5-HTML-Parser>0:www/p5-HTML-Parser \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTML-Parser>0:www/p5-HTML-Parser \ p5-HTML-Tagset>0:www/p5-HTML-Tagset \ p5-URI>0:net/p5-URI -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-HTML-SBC/Makefile b/textproc/p5-HTML-SBC/Makefile index 964194b3ad5..5fba6e99ccc 100644 --- a/textproc/p5-HTML-SBC/Makefile +++ b/textproc/p5-HTML-SBC/Makefile @@ -14,8 +14,8 @@ COMMENT= Simple blog code to valid XHTML LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Test-Exception>=0:devel/p5-Test-Exception -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Test-Exception>=0:devel/p5-Test-Exception USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-HTML-TagFilter/Makefile b/textproc/p5-HTML-TagFilter/Makefile index b000c387bd4..e9ea8f6c8d4 100644 --- a/textproc/p5-HTML-TagFilter/Makefile +++ b/textproc/p5-HTML-TagFilter/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Fine-grained html-filter, xss-blocker and mailto-obfuscator -BUILD_DEPENDS= p5-URI>=0:net/p5-URI \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-URI>=0:net/p5-URI \ p5-HTML-Parser>=0:www/p5-HTML-Parser -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-HTML-Tidy/Makefile b/textproc/p5-HTML-Tidy/Makefile index 82e11fa8258..e6ff39c9530 100644 --- a/textproc/p5-HTML-Tidy/Makefile +++ b/textproc/p5-HTML-Tidy/Makefile @@ -12,9 +12,9 @@ COMMENT= Web validation in a Perl object using tidy LICENSE= ART20 -BUILD_DEPENDS= p5-libwww>=0:www/p5-libwww +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-libwww>=0:www/p5-libwww LIB_DEPENDS= libtidyp.so:textproc/tidyp -RUN_DEPENDS:= ${BUILD_DEPENDS} OPTIONS_DEFINE= DOCS diff --git a/textproc/p5-HTML-Truncate/Makefile b/textproc/p5-HTML-Truncate/Makefile index 4fbed55dbd7..daa5dcad107 100644 --- a/textproc/p5-HTML-Truncate/Makefile +++ b/textproc/p5-HTML-Truncate/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Truncate HTML by character count while preserving well-formedness -BUILD_DEPENDS= p5-HTML-Parser>=2:www/p5-HTML-Parser \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTML-Parser>=2:www/p5-HTML-Parser \ p5-HTML-Tagset>=3:www/p5-HTML-Tagset -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-Hailo/Makefile b/textproc/p5-Hailo/Makefile index b2698ac0f22..846db96a9f2 100644 --- a/textproc/p5-Hailo/Makefile +++ b/textproc/p5-Hailo/Makefile @@ -15,7 +15,8 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Any-Moose>=0.13:devel/p5-Any-Moose \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Any-Moose>=0.13:devel/p5-Any-Moose \ p5-Class-Load>=0.06:devel/p5-Class-Load \ p5-DBD-SQLite>=1.29:databases/p5-DBD-SQLite \ p5-Data-Dump>=1.17:devel/p5-Data-Dump \ @@ -34,7 +35,6 @@ BUILD_DEPENDS= p5-Any-Moose>=0.13:devel/p5-Any-Moose \ p5-Regexp-Common>=2010010201:textproc/p5-Regexp-Common \ p5-Term-Sk>=0.06:devel/p5-Term-Sk \ p5-namespace-clean>=0.18:devel/p5-namespace-clean -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Bot-Training>=0:misc/p5-Bot-Training \ p5-Bot-Training-MegaHAL>=0:misc/p5-Bot-Training-MegaHAL \ p5-Bot-Training-StarCraft>=0:misc/p5-Bot-Training-StarCraft \ diff --git a/textproc/p5-IO-CSVHeaderFile/Makefile b/textproc/p5-IO-CSVHeaderFile/Makefile index cd07b89a38e..6eb1ff61994 100644 --- a/textproc/p5-IO-CSVHeaderFile/Makefile +++ b/textproc/p5-IO-CSVHeaderFile/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Perl module to automate reads from CSV formatted text files -BUILD_DEPENDS= p5-Text-CSV_XS>=0:textproc/p5-Text-CSV_XS -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Text-CSV_XS>=0:textproc/p5-Text-CSV_XS NO_ARCH= yes USES= perl5 diff --git a/textproc/p5-JavaScript-Packer/Makefile b/textproc/p5-JavaScript-Packer/Makefile index ac6b3de248e..92af49dbd2b 100644 --- a/textproc/p5-JavaScript-Packer/Makefile +++ b/textproc/p5-JavaScript-Packer/Makefile @@ -13,8 +13,8 @@ COMMENT= Perl version of Dean Edwards' Packer.js LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Regexp-RegGrp>=1.001001:devel/p5-Regexp-RegGrp -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Regexp-RegGrp>=1.001001:devel/p5-Regexp-RegGrp TEST_DEPENDS= p5-Test-Pod>=1.22:devel/p5-Test-Pod NO_ARCH= yes diff --git a/textproc/p5-KinoSearch1/Makefile b/textproc/p5-KinoSearch1/Makefile index 90b98c4fde1..70f5a729f39 100644 --- a/textproc/p5-KinoSearch1/Makefile +++ b/textproc/p5-KinoSearch1/Makefile @@ -12,10 +12,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Perl search engine library -BUILD_DEPENDS= p5-Lingua-StopWords>=0.02:textproc/p5-Lingua-StopWords \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Lingua-StopWords>=0.02:textproc/p5-Lingua-StopWords \ p5-Lingua-Stem-Snowball>=0.94:textproc/p5-Lingua-Stem-Snowball \ p5-Clone>=0.18:devel/p5-Clone -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= modbuild diff --git a/textproc/p5-LaTeX-Driver/Makefile b/textproc/p5-LaTeX-Driver/Makefile index 5e7cb81cc12..cd916ca1f73 100644 --- a/textproc/p5-LaTeX-Driver/Makefile +++ b/textproc/p5-LaTeX-Driver/Makefile @@ -14,14 +14,14 @@ COMMENT= Perl module of LaTeX Driver LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Capture-Tiny>=0:devel/p5-Capture-Tiny \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Capture-Tiny>=0:devel/p5-Capture-Tiny \ p5-Class-Accessor>=0:devel/p5-Class-Accessor \ p5-Exception-Class>=0:devel/p5-Exception-Class \ p5-File-Slurp>=0:devel/p5-File-Slurp \ p5-File-pushd>=0:devel/p5-File-pushd \ p5-IPC-ShellCmd>=0:devel/p5-IPC-ShellCmd \ p5-Readonly>=0:devel/p5-Readonly -RUN_DEPENDS:= ${BUILD_DEPENDS} PORTSCOUT= skipv:0.2002 diff --git a/textproc/p5-LaTeX-Encode/Makefile b/textproc/p5-LaTeX-Encode/Makefile index 3e4579d0aa5..4f996db931c 100644 --- a/textproc/p5-LaTeX-Encode/Makefile +++ b/textproc/p5-LaTeX-Encode/Makefile @@ -13,8 +13,8 @@ COMMENT= Encode characters for LaTeX formatting LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Readonly>=0:devel/p5-Readonly -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Readonly>=0:devel/p5-Readonly TEST_DEPENDS= p5-Carp-Always>=0:devel/p5-Carp-Always NO_ARCH= yes diff --git a/textproc/p5-LaTeX-Pod/Makefile b/textproc/p5-LaTeX-Pod/Makefile index 965615640d9..0c43d37a04c 100644 --- a/textproc/p5-LaTeX-Pod/Makefile +++ b/textproc/p5-LaTeX-Pod/Makefile @@ -14,11 +14,11 @@ COMMENT= Transform LaTeX source files to POD LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-LaTeX-TOM>=0.9:textproc/p5-LaTeX-TOM \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-LaTeX-TOM>=0.9:textproc/p5-LaTeX-TOM \ p5-List-MoreUtils>=0:lang/p5-List-MoreUtils \ p5-Params-Validate>=0.91:devel/p5-Params-Validate \ p5-boolean>=0.20:devel/p5-boolean -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-LaTeX-Table/Makefile b/textproc/p5-LaTeX-Table/Makefile index b2085b6e79d..aee1d8f6b0d 100644 --- a/textproc/p5-LaTeX-Table/Makefile +++ b/textproc/p5-LaTeX-Table/Makefile @@ -15,7 +15,8 @@ COMMENT= Perl extension for the automatic generation of LaTeX tables LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-LaTeX-Driver>=0:textproc/p5-LaTeX-Driver \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-LaTeX-Driver>=0:textproc/p5-LaTeX-Driver \ p5-LaTeX-Encode>=0:textproc/p5-LaTeX-Encode \ p5-Module-Pluggable>=0:devel/p5-Module-Pluggable \ p5-Moose>=0.76:devel/p5-Moose \ @@ -24,7 +25,6 @@ BUILD_DEPENDS= p5-LaTeX-Driver>=0:textproc/p5-LaTeX-Driver \ p5-Number-Format>=0:textproc/p5-Number-Format \ p5-Template-Toolkit>=0:www/p5-Template-Toolkit \ p5-Text-CSV>=0:textproc/p5-Text-CSV -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-NoWarnings>=0.084:devel/p5-Test-NoWarnings NO_ARCH= yes diff --git a/textproc/p5-Lingua-EN-AddressParse/Makefile b/textproc/p5-Lingua-EN-AddressParse/Makefile index 663749866e9..80419ea311f 100644 --- a/textproc/p5-Lingua-EN-AddressParse/Makefile +++ b/textproc/p5-Lingua-EN-AddressParse/Makefile @@ -12,10 +12,10 @@ COMMENT= Perl module to manipulate geographical addresses LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Lingua-EN-NameParse>=1.24:textproc/p5-Lingua-EN-NameParse \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Lingua-EN-NameParse>=1.24:textproc/p5-Lingua-EN-NameParse \ p5-Locale-SubCountry>=1.41:misc/p5-Locale-SubCountry \ p5-Parse-RecDescent>=1:devel/p5-Parse-RecDescent -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-JSON>=0:converters/p5-JSON NO_ARCH= yes diff --git a/textproc/p5-Lingua-EN-FindNumber/Makefile b/textproc/p5-Lingua-EN-FindNumber/Makefile index 4001a942a0f..49704717d17 100644 --- a/textproc/p5-Lingua-EN-FindNumber/Makefile +++ b/textproc/p5-Lingua-EN-FindNumber/Makefile @@ -13,8 +13,8 @@ COMMENT= Locate (written) numbers in English text LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Lingua-EN-Words2Nums>=0:textproc/p5-Lingua-EN-Words2Nums -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Lingua-EN-Words2Nums>=0:textproc/p5-Lingua-EN-Words2Nums TEST_DEPENDS= p5-Test-Pod>=1:devel/p5-Test-Pod \ p5-Test-Pod-Coverage>=1:devel/p5-Test-Pod-Coverage diff --git a/textproc/p5-Lingua-EN-Infinitive/Makefile b/textproc/p5-Lingua-EN-Infinitive/Makefile index e676cef279d..b507cfa3527 100644 --- a/textproc/p5-Lingua-EN-Infinitive/Makefile +++ b/textproc/p5-Lingua-EN-Infinitive/Makefile @@ -14,9 +14,9 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Moo>=2.003000:devel/p5-Moo \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Moo>=2.003000:devel/p5-Moo \ p5-Type-Tiny>=1.000005:devel/p5-Type-Tiny -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 tar:tgz diff --git a/textproc/p5-Lingua-EN-Inflect-Number/Makefile b/textproc/p5-Lingua-EN-Inflect-Number/Makefile index 4014b0de6fe..1b69f651534 100644 --- a/textproc/p5-Lingua-EN-Inflect-Number/Makefile +++ b/textproc/p5-Lingua-EN-Inflect-Number/Makefile @@ -13,8 +13,8 @@ COMMENT= Force number of words to singular or plural LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Lingua-EN-Inflect>=0:textproc/p5-Lingua-EN-Inflect -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Lingua-EN-Inflect>=0:textproc/p5-Lingua-EN-Inflect USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-Lingua-EN-MatchNames/Makefile b/textproc/p5-Lingua-EN-MatchNames/Makefile index 57cb352e1e4..12298b8f258 100644 --- a/textproc/p5-Lingua-EN-MatchNames/Makefile +++ b/textproc/p5-Lingua-EN-MatchNames/Makefile @@ -13,11 +13,11 @@ COMMENT= Smart matching for human names LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Lingua-EN-NameParse>=0:textproc/p5-Lingua-EN-NameParse \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Lingua-EN-NameParse>=0:textproc/p5-Lingua-EN-NameParse \ p5-Lingua-EN-Nickname>=0:textproc/p5-Lingua-EN-Nickname \ p5-String-Approx>=0:devel/p5-String-Approx \ p5-Text-Metaphone>=0:textproc/p5-Text-Metaphone -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-Lingua-EN-NamedEntity/Makefile b/textproc/p5-Lingua-EN-NamedEntity/Makefile index 7d2a821976b..68b8951c385 100644 --- a/textproc/p5-Lingua-EN-NamedEntity/Makefile +++ b/textproc/p5-Lingua-EN-NamedEntity/Makefile @@ -13,8 +13,8 @@ COMMENT= Basic Named Entity Extraction algorithm LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Lingua-Stem>=0:textproc/p5-Lingua-Stem -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Lingua-Stem>=0:textproc/p5-Lingua-Stem NO_ARCH= yes USES= perl5 diff --git a/textproc/p5-Lingua-EN-Numbers-Easy/Makefile b/textproc/p5-Lingua-EN-Numbers-Easy/Makefile index c51bbeaa312..57b4cc24f65 100644 --- a/textproc/p5-Lingua-EN-Numbers-Easy/Makefile +++ b/textproc/p5-Lingua-EN-Numbers-Easy/Makefile @@ -12,8 +12,8 @@ COMMENT= Perl module providing hash access to Lingua::EN::Numbers objects LICENSE= MIT -BUILD_DEPENDS= p5-Lingua-EN-Numbers>=1.01:textproc/p5-Lingua-EN-Numbers -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Lingua-EN-Numbers>=1.01:textproc/p5-Lingua-EN-Numbers USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-Lingua-EN-Summarize/Makefile b/textproc/p5-Lingua-EN-Summarize/Makefile index c02ff9af43d..3144435b22b 100644 --- a/textproc/p5-Lingua-EN-Summarize/Makefile +++ b/textproc/p5-Lingua-EN-Summarize/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Simple tool for summarizing bodies of English text -BUILD_DEPENDS= p5-HTML-Summary>=0:www/p5-HTML-Summary \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTML-Summary>=0:www/p5-HTML-Summary \ p5-HTML-Parser>=0:www/p5-HTML-Parser -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-Lingua-Identify/Makefile b/textproc/p5-Lingua-Identify/Makefile index 008fd4e947d..56e8a09cdf4 100644 --- a/textproc/p5-Lingua-Identify/Makefile +++ b/textproc/p5-Lingua-Identify/Makefile @@ -11,10 +11,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Lingua::Identify - Language identification -BUILD_DEPENDS= p5-Class-Factory-Util>=1.6:devel/p5-Class-Factory-Util \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Factory-Util>=1.6:devel/p5-Class-Factory-Util \ p5-Text-Affixes>=0.04:textproc/p5-Text-Affixes \ p5-Text-Ngram>=0.03:textproc/p5-Text-Ngram -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-Lingua-Ispell/Makefile b/textproc/p5-Lingua-Ispell/Makefile index 6e0b094fdb7..792970c8d8d 100644 --- a/textproc/p5-Lingua-Ispell/Makefile +++ b/textproc/p5-Lingua-Ispell/Makefile @@ -14,8 +14,8 @@ COMMENT= Perl module that encapsulates access to the Ispell program LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= ispell:textproc/aspell-ispell -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= ispell:textproc/aspell-ispell NO_ARCH= yes REINPLACE_ARGS= -i '' diff --git a/textproc/p5-Lingua-Preferred/Makefile b/textproc/p5-Lingua-Preferred/Makefile index 83b5cba1b57..866259f0fa9 100644 --- a/textproc/p5-Lingua-Preferred/Makefile +++ b/textproc/p5-Lingua-Preferred/Makefile @@ -12,8 +12,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Perl extension to choose a language -BUILD_DEPENDS= p5-Log-TraceMessages>=0:devel/p5-Log-TraceMessages -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Log-TraceMessages>=0:devel/p5-Log-TraceMessages USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-Lingua-Stem/Makefile b/textproc/p5-Lingua-Stem/Makefile index 2cb73e3a851..9d69d34b0fc 100644 --- a/textproc/p5-Lingua-Stem/Makefile +++ b/textproc/p5-Lingua-Stem/Makefile @@ -14,7 +14,8 @@ COMMENT= Provides word stemming algorithms localized by language LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Lingua-PT-Stemmer>=0:textproc/p5-Lingua-PT-Stemmer \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Lingua-PT-Stemmer>=0:textproc/p5-Lingua-PT-Stemmer \ p5-Lingua-Stem-Fr>=0:textproc/p5-Lingua-Stem-Fr \ p5-Lingua-Stem-It>=0:textproc/p5-Lingua-Stem-It \ p5-Lingua-Stem-Ru>=0:textproc/p5-Lingua-Stem-Ru \ @@ -22,7 +23,6 @@ BUILD_DEPENDS= p5-Lingua-PT-Stemmer>=0:textproc/p5-Lingua-PT-Stemmer \ p5-Lingua-Stem-Snowball-No>=0:textproc/p5-Lingua-Stem-Snowball-No \ p5-Lingua-Stem-Snowball-Se>=0:textproc/p5-Lingua-Stem-Snowball-Se \ p5-Text-German>=0:textproc/p5-Text-German -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-MARC-Charset/Makefile b/textproc/p5-MARC-Charset/Makefile index 2cc548a55f0..4f67d83daa7 100644 --- a/textproc/p5-MARC-Charset/Makefile +++ b/textproc/p5-MARC-Charset/Makefile @@ -14,9 +14,9 @@ COMMENT= Convert MARC-8 encoded strings to UTF-8 LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Class-Accessor>=0:devel/p5-Class-Accessor \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Accessor>=0:devel/p5-Class-Accessor \ p5-XML-SAX>=0:textproc/p5-XML-SAX -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-MARC-Lint/Makefile b/textproc/p5-MARC-Lint/Makefile index 774bcceb715..2a10426d96d 100644 --- a/textproc/p5-MARC-Lint/Makefile +++ b/textproc/p5-MARC-Lint/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= demon@FreeBSD.org COMMENT= Mechanism for validating MARC records -BUILD_DEPENDS= p5-MARC-Record>=0:textproc/p5-MARC-Record \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-MARC-Record>=0:textproc/p5-MARC-Record \ p5-Business-ISBN>=2.03:misc/p5-Business-ISBN -RUN_DEPENDS:= ${BUILD_DEPENDS} WRKSRC= ${WRKDIR}/marc-lint diff --git a/textproc/p5-MARC-XML/Makefile b/textproc/p5-MARC-XML/Makefile index 05b9aac35fe..b22fb29edaf 100644 --- a/textproc/p5-MARC-XML/Makefile +++ b/textproc/p5-MARC-XML/Makefile @@ -14,10 +14,10 @@ COMMENT= Extension to the MARC-Record distribution for working with XML data LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-MARC-Record>=2:textproc/p5-MARC-Record \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-MARC-Record>=2:textproc/p5-MARC-Record \ p5-MARC-Charset>=0.98:textproc/p5-MARC-Charset \ p5-XML-SAX>=0.12:textproc/p5-XML-SAX -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-Makefile-DOM/Makefile b/textproc/p5-Makefile-DOM/Makefile index 8c0811e4abf..0a1ff54fdbf 100644 --- a/textproc/p5-Makefile-DOM/Makefile +++ b/textproc/p5-Makefile-DOM/Makefile @@ -15,10 +15,10 @@ COMMENT= Simple DOM parser for Makefiles LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Clone>=0.18:devel/p5-Clone \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Clone>=0.18:devel/p5-Clone \ p5-List-MoreUtils>=0.21:lang/p5-List-MoreUtils \ p5-Params-Util>=0.22:devel/p5-Params-Util -RUN_DEPENDS:= ${BUILD_DEPENDS} USE_PERL5= configure USES= perl5 diff --git a/textproc/p5-Makefile-Parser/Makefile b/textproc/p5-Makefile-Parser/Makefile index 39e99282078..d511c648f17 100644 --- a/textproc/p5-Makefile-Parser/Makefile +++ b/textproc/p5-Makefile-Parser/Makefile @@ -11,13 +11,13 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Makefile::Parser - A Simple Parser for Makefiles -BUILD_DEPENDS= p5-Class-Accessor>=0:devel/p5-Class-Accessor \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Accessor>=0:devel/p5-Class-Accessor \ p5-Class-Trigger>=0.13:devel/p5-Class-Trigger \ p5-File-Slurp>=0:devel/p5-File-Slurp \ p5-IPC-Run3>=0.036:devel/p5-IPC-Run3 \ p5-List-MoreUtils>=0:lang/p5-List-MoreUtils \ p5-Makefile-DOM>=0.005:textproc/p5-Makefile-DOM -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-Markapl/Makefile b/textproc/p5-Markapl/Makefile index 88c1336c6f7..8db947868bd 100644 --- a/textproc/p5-Markapl/Makefile +++ b/textproc/p5-Markapl/Makefile @@ -14,12 +14,12 @@ COMMENT= Markup as Perl LICENSE= MIT -BUILD_DEPENDS= p5-Exporter-Lite>=0:devel/p5-Exporter-Lite \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Exporter-Lite>=0:devel/p5-Exporter-Lite \ p5-HTML-Lint>=0:www/p5-HTML-Lint \ p5-B-Hooks-EndOfScope>=0.05:devel/p5-B-Hooks-EndOfScope \ p5-String-BufferStack>=1.15:textproc/p5-String-BufferStack \ p5-Devel-Declare>=0:devel/p5-Devel-Declare -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-Marpa-HTML/Makefile b/textproc/p5-Marpa-HTML/Makefile index d9bc7d1824b..55b800df063 100644 --- a/textproc/p5-Marpa-HTML/Makefile +++ b/textproc/p5-Marpa-HTML/Makefile @@ -16,10 +16,10 @@ COMMENT= High-level HTML Parser LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-HTML-Parser>=3.64:www/p5-HTML-Parser \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTML-Parser>=3.64:www/p5-HTML-Parser \ p5-Marpa-PP>=0.012:lang/p5-Marpa-PP \ p5-Marpa-XS>=0.026:lang/p5-Marpa-XS -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USE_PERL5= modbuild diff --git a/textproc/p5-Net-YASA/Makefile b/textproc/p5-Net-YASA/Makefile index d1de614ecac..80a5c38ee2e 100644 --- a/textproc/p5-Net-YASA/Makefile +++ b/textproc/p5-Net-YASA/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Perl interface to YASA (Yet Another Suffix Array) -BUILD_DEPENDS= p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-libwww>=0:www/p5-libwww USES= perl5 USE_PERL5= modbuild diff --git a/textproc/p5-NetAddr-IP-Find/Makefile b/textproc/p5-NetAddr-IP-Find/Makefile index d8926f0a7ca..4df70816eb2 100644 --- a/textproc/p5-NetAddr-IP-Find/Makefile +++ b/textproc/p5-NetAddr-IP-Find/Makefile @@ -14,8 +14,8 @@ COMMENT= Iterates over all IP addresses in a text similar to Email::Find LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-NetAddr-IP>0:net-mgmt/p5-NetAddr-IP -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-NetAddr-IP>0:net-mgmt/p5-NetAddr-IP USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-ODF-lpOD/Makefile b/textproc/p5-ODF-lpOD/Makefile index 5f8bcdb526a..a96534fa0db 100644 --- a/textproc/p5-ODF-lpOD/Makefile +++ b/textproc/p5-ODF-lpOD/Makefile @@ -13,13 +13,13 @@ COMMENT= OpenDocument management interface LICENSE= GPLv2 -BUILD_DEPENDS= p5-Archive-Zip>=1.30:archivers/p5-Archive-Zip \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Archive-Zip>=1.30:archivers/p5-Archive-Zip \ p5-XML-Twig>=3.37:textproc/p5-XML-Twig \ p5-File-Type>=0:devel/p5-File-Type \ p5-Image-Size>=0:graphics/p5-Image-Size \ p5-libwww>=0:www/p5-libwww \ p5-File-Slurp>=0:devel/p5-File-Slurp -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-PDF-API2-Simple/Makefile b/textproc/p5-PDF-API2-Simple/Makefile index 06fadd9b3e5..999336683e2 100644 --- a/textproc/p5-PDF-API2-Simple/Makefile +++ b/textproc/p5-PDF-API2-Simple/Makefile @@ -12,8 +12,8 @@ COMMENT= Wrapper for the PDF::API2 modules LICENSE= PD -BUILD_DEPENDS= p5-PDF-API2>=0:textproc/p5-PDF-API2 -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-PDF-API2>=0:textproc/p5-PDF-API2 NO_ARCH= yes USES= perl5 diff --git a/textproc/p5-PDF-API2/Makefile b/textproc/p5-PDF-API2/Makefile index 7b02956291b..f5ada5d6c51 100644 --- a/textproc/p5-PDF-API2/Makefile +++ b/textproc/p5-PDF-API2/Makefile @@ -13,8 +13,8 @@ COMMENT= Facilitates the creation and modification of PDF files LICENSE= LGPL21 LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Font-TTF>=0:x11-fonts/p5-Font-TTF -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Font-TTF>=0:x11-fonts/p5-Font-TTF TEST_DEPENDS= p5-Test-Exception>=0:devel/p5-Test-Exception \ p5-Test-Memory-Cycle>=0:devel/p5-Test-Memory-Cycle diff --git a/textproc/p5-PDF-FromHTML/Makefile b/textproc/p5-PDF-FromHTML/Makefile index ca817f13ba0..fb3fc193845 100644 --- a/textproc/p5-PDF-FromHTML/Makefile +++ b/textproc/p5-PDF-FromHTML/Makefile @@ -11,14 +11,14 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Convert HTML documents to PDF -BUILD_DEPENDS= p5-Graphics-ColorNames>=0:graphics/p5-Graphics-ColorNames \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Graphics-ColorNames>=0:graphics/p5-Graphics-ColorNames \ p5-HTML-Tidy>=0:textproc/p5-HTML-Tidy \ p5-Image-Size>=0:graphics/p5-Image-Size \ p5-PDF-API2>=0:textproc/p5-PDF-API2 \ p5-PDF-Writer>=0.05:textproc/p5-PDF-Writer \ p5-XML-Twig>=0:textproc/p5-XML-Twig \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-PDF-Table/Makefile b/textproc/p5-PDF-Table/Makefile index bce45cf7ba5..2130935f791 100644 --- a/textproc/p5-PDF-Table/Makefile +++ b/textproc/p5-PDF-Table/Makefile @@ -10,8 +10,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= danilo@FreeBSD.org COMMENT= Utility class for building table layouts in a PDF::API2 object -BUILD_DEPENDS= p5-PDF-API2>=0:textproc/p5-PDF-API2 -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-PDF-API2>=0:textproc/p5-PDF-API2 USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-POE-Filter-XML/Makefile b/textproc/p5-POE-Filter-XML/Makefile index 84cad70eb54..bd3978e67bc 100644 --- a/textproc/p5-POE-Filter-XML/Makefile +++ b/textproc/p5-POE-Filter-XML/Makefile @@ -13,13 +13,13 @@ COMMENT= POE Filter for parsing XML LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Moose>=0:devel/p5-Moose \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Moose>=0:devel/p5-Moose \ p5-MooseX-InsideOut>=0:devel/p5-MooseX-InsideOut \ p5-MooseX-NonMoose>=0:devel/p5-MooseX-NonMoose \ p5-POE>=0:devel/p5-POE \ p5-XML-LibXML>=0:textproc/p5-XML-LibXML \ p5-XML-SAX-Base>=0:textproc/p5-XML-SAX-Base -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-PPI-HTML/Makefile b/textproc/p5-PPI-HTML/Makefile index a5e03d2c09e..7cdadd4d778 100644 --- a/textproc/p5-PPI-HTML/Makefile +++ b/textproc/p5-PPI-HTML/Makefile @@ -15,10 +15,10 @@ COMMENT= Generate syntax-highlighted HTML for Perl using PPI LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-PPI>=0.990:textproc/p5-PPI \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-PPI>=0.990:textproc/p5-PPI \ p5-CSS-Tiny>=0.10:textproc/p5-CSS-Tiny \ p5-Params-Util>=0.05:devel/p5-Params-Util -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-PPI-XS/Makefile b/textproc/p5-PPI-XS/Makefile index 3226c908f1a..0a9bfa3b04f 100644 --- a/textproc/p5-PPI-XS/Makefile +++ b/textproc/p5-PPI-XS/Makefile @@ -13,8 +13,8 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-PPI>=1.000:textproc/p5-PPI -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-PPI>=1.000:textproc/p5-PPI USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-PPIx-EditorTools/Makefile b/textproc/p5-PPIx-EditorTools/Makefile index a4a97634089..adad0113c78 100644 --- a/textproc/p5-PPIx-EditorTools/Makefile +++ b/textproc/p5-PPIx-EditorTools/Makefile @@ -15,10 +15,10 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Class-XSAccessor>=1.02:devel/p5-Class-XSAccessor \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-XSAccessor>=1.02:devel/p5-Class-XSAccessor \ p5-PPI>=1.203:textproc/p5-PPI \ p5-Try-Tiny>=0:lang/p5-Try-Tiny -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Differences>=0:devel/p5-Test-Differences \ p5-Test-Exception>=0:devel/p5-Test-Exception \ p5-Test-Most>=0:devel/p5-Test-Most diff --git a/textproc/p5-Parse-BooleanLogic/Makefile b/textproc/p5-Parse-BooleanLogic/Makefile index 6aad487754c..a3356019538 100644 --- a/textproc/p5-Parse-BooleanLogic/Makefile +++ b/textproc/p5-Parse-BooleanLogic/Makefile @@ -14,9 +14,9 @@ COMMENT= Parser of boolean expressions LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Regexp-Common>=2.122:textproc/p5-Regexp-Common \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Regexp-Common>=2.122:textproc/p5-Regexp-Common \ p5-Module-Install>=0.91_1:devel/p5-Module-Install -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Deep>=0:devel/p5-Test-Deep USES= perl5 diff --git a/textproc/p5-Parse-CSV/Makefile b/textproc/p5-Parse-CSV/Makefile index ed1101716c7..30aafc5ae0f 100644 --- a/textproc/p5-Parse-CSV/Makefile +++ b/textproc/p5-Parse-CSV/Makefile @@ -13,9 +13,9 @@ COMMENT= Highly flexible CSV parser for large files LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Params-Util>=1:devel/p5-Params-Util \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Params-Util>=1:devel/p5-Params-Util \ p5-Text-CSV_XS>=0.80:textproc/p5-Text-CSV_XS -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/textproc/p5-Perl-Critic-Bangs/Makefile b/textproc/p5-Perl-Critic-Bangs/Makefile index 6a21601cfbe..dc6599d8845 100644 --- a/textproc/p5-Perl-Critic-Bangs/Makefile +++ b/textproc/p5-Perl-Critic-Bangs/Makefile @@ -14,8 +14,8 @@ COMMENT= Collection of handy Perl::Critic policies LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Perl-Critic>=0:textproc/p5-Perl-Critic -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Perl-Critic>=0:textproc/p5-Perl-Critic TEST_DEPENDS= p5-Test-Perl-Critic>=0:textproc/p5-Test-Perl-Critic \ p5-Perl-Critic-Deprecated>=0:devel/p5-Perl-Critic-Deprecated diff --git a/textproc/p5-Perl-Critic-Itch/Makefile b/textproc/p5-Perl-Critic-Itch/Makefile index e6da311cbe0..9a3fb4e1b73 100644 --- a/textproc/p5-Perl-Critic-Itch/Makefile +++ b/textproc/p5-Perl-Critic-Itch/Makefile @@ -12,8 +12,8 @@ COMMENT= Collection of Perl::Critic Policies LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Perl-Critic>=0:textproc/p5-Perl-Critic -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Perl-Critic>=0:textproc/p5-Perl-Critic USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-Perl-Critic-Moose/Makefile b/textproc/p5-Perl-Critic-Moose/Makefile index 336423f7b0a..8f27927e375 100644 --- a/textproc/p5-Perl-Critic-Moose/Makefile +++ b/textproc/p5-Perl-Critic-Moose/Makefile @@ -12,9 +12,9 @@ COMMENT= Policies for Perl::Critic concerned with using Moose LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-namespace-autoclean>=0:devel/p5-namespace-autoclean \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-namespace-autoclean>=0:devel/p5-namespace-autoclean \ p5-Perl-Critic>=0:textproc/p5-Perl-Critic -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-Perl-Critic-More/Makefile b/textproc/p5-Perl-Critic-More/Makefile index efac01691c4..921fe67c65f 100644 --- a/textproc/p5-Perl-Critic-More/Makefile +++ b/textproc/p5-Perl-Critic-More/Makefile @@ -12,8 +12,8 @@ COMMENT= Supplemental policies for Perl::Critic LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Perl-Critic>=0:textproc/p5-Perl-Critic -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Perl-Critic>=0:textproc/p5-Perl-Critic USES= perl5 USE_PERL5= modbuild diff --git a/textproc/p5-Perl-Critic-Pulp/Makefile b/textproc/p5-Perl-Critic-Pulp/Makefile index c825d4a0447..a60954ed84a 100644 --- a/textproc/p5-Perl-Critic-Pulp/Makefile +++ b/textproc/p5-Perl-Critic-Pulp/Makefile @@ -12,10 +12,10 @@ COMMENT= some add-on perlcritic policies LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Perl-Critic>=0:textproc/p5-Perl-Critic \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Perl-Critic>=0:textproc/p5-Perl-Critic \ p5-Perl-MinimumVersion>=0:textproc/p5-Perl-MinimumVersion \ p5-Pod-MinimumVersion>=0:textproc/p5-Pod-MinimumVersion -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-Perl-Critic-Swift/Makefile b/textproc/p5-Perl-Critic-Swift/Makefile index 34e214d478b..b5f67d0d248 100644 --- a/textproc/p5-Perl-Critic-Swift/Makefile +++ b/textproc/p5-Perl-Critic-Swift/Makefile @@ -13,8 +13,8 @@ COMMENT= A set of additional policies for Perl::Critic LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Perl-Critic>=0:textproc/p5-Perl-Critic -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Perl-Critic>=0:textproc/p5-Perl-Critic USES= perl5 USE_PERL5= modbuild diff --git a/textproc/p5-Perl-Critic-Tics/Makefile b/textproc/p5-Perl-Critic-Tics/Makefile index cff85e1d50b..4fbbc90aa88 100644 --- a/textproc/p5-Perl-Critic-Tics/Makefile +++ b/textproc/p5-Perl-Critic-Tics/Makefile @@ -12,8 +12,8 @@ COMMENT= Extra policies for Perl::Critic LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Perl-Critic>=0:textproc/p5-Perl-Critic -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Perl-Critic>=0:textproc/p5-Perl-Critic USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-Perl-Lint/Makefile b/textproc/p5-Perl-Lint/Makefile index b46a2beda30..3331b1a8b96 100644 --- a/textproc/p5-Perl-Lint/Makefile +++ b/textproc/p5-Perl-Lint/Makefile @@ -13,7 +13,8 @@ COMMENT= Yet another Perl source code linter LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-B-Keywords>=0:devel/p5-B-Keywords \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-B-Keywords>=0:devel/p5-B-Keywords \ p5-Compiler-Lexer>=0.22:devel/p5-Compiler-Lexer \ p5-Email-Address>=0:mail/p5-Email-Address \ p5-List-Flatten>=0:devel/p5-List-Flatten \ @@ -23,7 +24,6 @@ BUILD_DEPENDS= p5-B-Keywords>=0:devel/p5-B-Keywords \ p5-Regexp-Lexer>=0.05:devel/p5-Regexp-Lexer \ p5-String-CamelCase>=0:textproc/p5-String-CamelCase \ p5-Test-Deep>=0:devel/p5-Test-Deep -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Text-TestBase>=0:textproc/p5-Text-TestBase NO_ARCH= yes diff --git a/textproc/p5-PerlPoint-Converters/Makefile b/textproc/p5-PerlPoint-Converters/Makefile index fca83edfaf6..37872994298 100644 --- a/textproc/p5-PerlPoint-Converters/Makefile +++ b/textproc/p5-PerlPoint-Converters/Makefile @@ -10,9 +10,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Convert PerlPoint docs into various formats -BUILD_DEPENDS= p5-PerlPoint-Package>=0:textproc/p5-PerlPoint-Package \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-PerlPoint-Package>=0:textproc/p5-PerlPoint-Package \ p5-Getopt-ArgvFile>=0:devel/p5-Getopt-ArgvFile -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/textproc/p5-PerlPoint-Package/Makefile b/textproc/p5-PerlPoint-Package/Makefile index 337ebb0c6cc..9a054db65e0 100644 --- a/textproc/p5-PerlPoint-Package/Makefile +++ b/textproc/p5-PerlPoint-Package/Makefile @@ -12,8 +12,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= PerlPoint is both a presentation and a documentation toolset -BUILD_DEPENDS= p5-Digest-SHA1>=0:security/p5-Digest-SHA1 -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Digest-SHA1>=0:security/p5-Digest-SHA1 USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-Petal-CodePerl/Makefile b/textproc/p5-Petal-CodePerl/Makefile index f1644730105..9525772b02d 100644 --- a/textproc/p5-Petal-CodePerl/Makefile +++ b/textproc/p5-Petal-CodePerl/Makefile @@ -12,10 +12,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Make Petal go faster by compiling the expressions -BUILD_DEPENDS= p5-Petal>=0:textproc/p5-Petal \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Petal>=0:textproc/p5-Petal \ p5-Parse-RecDescent>=0:devel/p5-Parse-RecDescent \ p5-Code-Perl>=0:devel/p5-Code-Perl -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-Petal-Mail/Makefile b/textproc/p5-Petal-Mail/Makefile index 734aa2a19ca..436cb8aa125 100644 --- a/textproc/p5-Petal-Mail/Makefile +++ b/textproc/p5-Petal-Mail/Makefile @@ -15,8 +15,8 @@ COMMENT= Format text e-mail using Petal LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Petal>=0:textproc/p5-Petal -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Petal>=0:textproc/p5-Petal NO_ARCH= yes USES= perl5 diff --git a/textproc/p5-Petal-Utils/Makefile b/textproc/p5-Petal-Utils/Makefile index 92c66b99a27..1bfe1bb2c12 100644 --- a/textproc/p5-Petal-Utils/Makefile +++ b/textproc/p5-Petal-Utils/Makefile @@ -12,10 +12,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Useful template modifiers for Petal -BUILD_DEPENDS= p5-Petal>=0:textproc/p5-Petal \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Petal>=0:textproc/p5-Petal \ p5-TimeDate>=0:devel/p5-TimeDate \ p5-URI>=0:net/p5-URI -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= modbuild diff --git a/textproc/p5-Petal/Makefile b/textproc/p5-Petal/Makefile index 0b26fc2a316..aef28916ce6 100644 --- a/textproc/p5-Petal/Makefile +++ b/textproc/p5-Petal/Makefile @@ -14,9 +14,9 @@ COMMENT= Perl Template Attribute Language - TAL for Perl! LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Locale-Maketext-Gettext>=0:devel/p5-Locale-Maketext-Gettext \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Locale-Maketext-Gettext>=0:devel/p5-Locale-Maketext-Gettext \ p5-MKDoc-XML>=0.72:textproc/p5-MKDoc-XML -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-URI>=0:net/p5-URI NO_ARCH= yes diff --git a/textproc/p5-Plucene-Analysis-CJKAnalyzer/Makefile b/textproc/p5-Plucene-Analysis-CJKAnalyzer/Makefile index 6751183a39c..0cce21e689e 100644 --- a/textproc/p5-Plucene-Analysis-CJKAnalyzer/Makefile +++ b/textproc/p5-Plucene-Analysis-CJKAnalyzer/Makefile @@ -15,8 +15,8 @@ COMMENT= Analyzer for CJK texts LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Plucene>=0:textproc/p5-Plucene -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Plucene>=0:textproc/p5-Plucene TEST_DEPENDS= p5-YAML>=0:textproc/p5-YAML USE_PERL5= configure diff --git a/textproc/p5-Plucene-Plugin-Analyzer-SnowballAnalyzer/Makefile b/textproc/p5-Plucene-Plugin-Analyzer-SnowballAnalyzer/Makefile index 08277ff2431..51c1a422c20 100644 --- a/textproc/p5-Plucene-Plugin-Analyzer-SnowballAnalyzer/Makefile +++ b/textproc/p5-Plucene-Plugin-Analyzer-SnowballAnalyzer/Makefile @@ -12,10 +12,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Stemmed analyzer plugin for p5-Plucene search engine -BUILD_DEPENDS= p5-Lingua-StopWords>=0:textproc/p5-Lingua-StopWords \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Lingua-StopWords>=0:textproc/p5-Lingua-StopWords \ p5-Lingua-Stem-Snowball>=0:textproc/p5-Lingua-Stem-Snowball \ p5-Plucene>=0:textproc/p5-Plucene -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-Plucene-Simple/Makefile b/textproc/p5-Plucene-Simple/Makefile index 429bf8af043..ee865989640 100644 --- a/textproc/p5-Plucene-Simple/Makefile +++ b/textproc/p5-Plucene-Simple/Makefile @@ -13,11 +13,11 @@ DISTNAME= ${PORTNAME:S/-//}-${PORTVERSION} MAINTAINER= perl@FreeBSD.org COMMENT= Interface to Plucene -BUILD_DEPENDS= p5-Time-Piece-Range>=1.0:devel/p5-Time-Piece-Range \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Time-Piece-Range>=1.0:devel/p5-Time-Piece-Range \ p5-Plucene>=1.09:textproc/p5-Plucene \ p5-File-Find-Rule>=0.10:devel/p5-File-Find-Rule \ p5-File-Slurp>=2002.1031:devel/p5-File-Slurp -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Class>=0.03:devel/p5-Test-Class NO_ARCH= yes diff --git a/textproc/p5-Plucene/Makefile b/textproc/p5-Plucene/Makefile index 67d7a271d1e..8d000f22ee8 100644 --- a/textproc/p5-Plucene/Makefile +++ b/textproc/p5-Plucene/Makefile @@ -15,14 +15,14 @@ COMMENT= Perl port of the Java Lucene search engine LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Tie-Array-Sorted>=0:devel/p5-Tie-Array-Sorted \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Tie-Array-Sorted>=0:devel/p5-Tie-Array-Sorted \ p5-File-Slurp>=0:devel/p5-File-Slurp \ p5-Class-Virtual>=0:devel/p5-Class-Virtual \ p5-Class-Accessor>=0:devel/p5-Class-Accessor \ p5-Lingua-Stem>=0:textproc/p5-Lingua-Stem \ p5-Bit-Vector-Minimal>=0:math/p5-Bit-Vector-Minimal \ p5-IO-stringy>=0:devel/p5-IO-stringy -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/textproc/p5-Pod-Abstract/Makefile b/textproc/p5-Pod-Abstract/Makefile index d21727d022f..cb2d364a743 100644 --- a/textproc/p5-Pod-Abstract/Makefile +++ b/textproc/p5-Pod-Abstract/Makefile @@ -14,9 +14,9 @@ COMMENT= Abstract document tree for Perl POD documents LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-IO-String>=0:devel/p5-IO-String \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-IO-String>=0:devel/p5-IO-String \ p5-Task-Weaken>=0:devel/p5-Task-Weaken -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-Pod-Autopod/Makefile b/textproc/p5-Pod-Autopod/Makefile index 6ffb88d33b8..d710dcdc0ea 100644 --- a/textproc/p5-Pod-Autopod/Makefile +++ b/textproc/p5-Pod-Autopod/Makefile @@ -13,8 +13,8 @@ COMMENT= Generates pod documentation by analysing perl modules LICENSE= LGPL3 LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Pod-Abstract>=0:textproc/p5-Pod-Abstract -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Pod-Abstract>=0:textproc/p5-Pod-Abstract USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-Pod-DocBook/Makefile b/textproc/p5-Pod-DocBook/Makefile index 422da6711cc..42e7986cb13 100644 --- a/textproc/p5-Pod-DocBook/Makefile +++ b/textproc/p5-Pod-DocBook/Makefile @@ -12,9 +12,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Convert Pod data to DocBook SGML -BUILD_DEPENDS= p5-podlators>=0:textproc/p5-podlators \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-podlators>=0:textproc/p5-podlators \ p5-Text-Tabs+Wrap>=0:textproc/p5-Text-Tabs+Wrap -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-Pod-Elemental/Makefile b/textproc/p5-Pod-Elemental/Makefile index 99174d3e658..cf2f04a5ee2 100644 --- a/textproc/p5-Pod-Elemental/Makefile +++ b/textproc/p5-Pod-Elemental/Makefile @@ -13,7 +13,8 @@ COMMENT= Treating a Pod document as a tree of elements LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Class-Load>=0:devel/p5-Class-Load \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Load>=0:devel/p5-Class-Load \ p5-Mixin-Linewise>=0:devel/p5-Mixin-Linewise \ p5-Moose>=0:devel/p5-Moose \ p5-MooseX-Types>=0:devel/p5-MooseX-Types \ @@ -22,7 +23,6 @@ BUILD_DEPENDS= p5-Class-Load>=0:devel/p5-Class-Load \ p5-String-Truncate>=0:textproc/p5-String-Truncate \ p5-Sub-Exporter-ForMethods>=0:devel/p5-Sub-Exporter-ForMethods \ p5-namespace-autoclean>=0:devel/p5-namespace-autoclean -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Deep>=0:devel/p5-Test-Deep \ p5-Test-Differences>=0:devel/p5-Test-Differences diff --git a/textproc/p5-Pod-Eventual/Makefile b/textproc/p5-Pod-Eventual/Makefile index b647eb68891..4c1b2d6bfa5 100644 --- a/textproc/p5-Pod-Eventual/Makefile +++ b/textproc/p5-Pod-Eventual/Makefile @@ -14,8 +14,8 @@ COMMENT= Read a POD document as a series of trivial events LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Mixin-Linewise>=0.102:devel/p5-Mixin-Linewise -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Mixin-Linewise>=0.102:devel/p5-Mixin-Linewise TEST_DEPENDS= p5-Test-Deep>=0:devel/p5-Test-Deep USES= perl5 diff --git a/textproc/p5-Pod-HtmlEasy/Makefile b/textproc/p5-Pod-HtmlEasy/Makefile index 658429b20e5..82f297ee387 100644 --- a/textproc/p5-Pod-HtmlEasy/Makefile +++ b/textproc/p5-Pod-HtmlEasy/Makefile @@ -14,13 +14,13 @@ COMMENT= Generate personalized HTML from PODs LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-File-Slurp>=9999.13:devel/p5-File-Slurp \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-File-Slurp>=9999.13:devel/p5-File-Slurp \ p5-IPC-Run>=0.8:devel/p5-IPC-Run \ p5-Exporter-Easy>=0:devel/p5-Exporter-Easy \ p5-Readonly>=1.03:devel/p5-Readonly \ p5-Regexp-Common>=2.12:textproc/p5-Regexp-Common \ p5-Pod-Escapes>=0:textproc/p5-Pod-Escapes -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 tar:tgz USE_PERL5= configure diff --git a/textproc/p5-Pod-MinimumVersion/Makefile b/textproc/p5-Pod-MinimumVersion/Makefile index 120d346af4f..ed6f99c2e86 100644 --- a/textproc/p5-Pod-MinimumVersion/Makefile +++ b/textproc/p5-Pod-MinimumVersion/Makefile @@ -12,8 +12,8 @@ COMMENT= report minimum Perl version for given POD LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-IO-String>=1.02:devel/p5-IO-String -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-IO-String>=1.02:devel/p5-IO-String NO_ARCH= yes USES= perl5 diff --git a/textproc/p5-Pod-POM-View-HTML-Filter/Makefile b/textproc/p5-Pod-POM-View-HTML-Filter/Makefile index f2eafcbb3aa..d4aa2902552 100644 --- a/textproc/p5-Pod-POM-View-HTML-Filter/Makefile +++ b/textproc/p5-Pod-POM-View-HTML-Filter/Makefile @@ -11,11 +11,11 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Use filters on sections of your pod documents -BUILD_DEPENDS= p5-Pod-POM>=0:textproc/p5-Pod-POM \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Pod-POM>=0:textproc/p5-Pod-POM \ p5-Syntax-Highlight-Shell>=0:www/p5-Syntax-Highlight-Shell \ perltidy:devel/p5-Perl-Tidy \ p5-Syntax-Highlight-HTML>=0:www/p5-Syntax-Highlight-HTML -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-Pod-Readme/Makefile b/textproc/p5-Pod-Readme/Makefile index d8e9bcd619c..248d0512694 100644 --- a/textproc/p5-Pod-Readme/Makefile +++ b/textproc/p5-Pod-Readme/Makefile @@ -13,7 +13,8 @@ COMMENT= Convert POD to README file LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-CPAN-Changes>=0:devel/p5-CPAN-Changes \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-CPAN-Changes>=0:devel/p5-CPAN-Changes \ p5-Class-Method-Modifiers>=2.00:devel/p5-Class-Method-Modifiers \ p5-File-Slurp>=0:devel/p5-File-Slurp \ p5-Getopt-Long-Descriptive>=0:devel/p5-Getopt-Long-Descriptive \ @@ -24,7 +25,6 @@ BUILD_DEPENDS= p5-CPAN-Changes>=0:devel/p5-CPAN-Changes \ p5-Try-Tiny>=0:lang/p5-Try-Tiny \ p5-Type-Tiny>=0:devel/p5-Type-Tiny \ p5-namespace-autoclean>=0:devel/p5-namespace-autoclean -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-IO-String>=0:devel/p5-IO-String \ p5-Test-Deep>=0:devel/p5-Test-Deep \ p5-Test-Exception>=0:devel/p5-Test-Exception diff --git a/textproc/p5-Pod-WSDL/Makefile b/textproc/p5-Pod-WSDL/Makefile index ea366c3af15..3486beb56a0 100644 --- a/textproc/p5-Pod-WSDL/Makefile +++ b/textproc/p5-Pod-WSDL/Makefile @@ -14,10 +14,10 @@ COMMENT= Create WSDL documents from (extended) pod LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-IO-stringy>=2.110:devel/p5-IO-stringy \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-IO-stringy>=2.110:devel/p5-IO-stringy \ p5-XML-Writer>=0.531:textproc/p5-XML-Writer \ p5-XML-XPath>=1.13:textproc/p5-XML-XPath -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-Pod-WikiDoc/Makefile b/textproc/p5-Pod-WikiDoc/Makefile index c166ee1f8ba..b6bea98113c 100644 --- a/textproc/p5-Pod-WikiDoc/Makefile +++ b/textproc/p5-Pod-WikiDoc/Makefile @@ -13,11 +13,11 @@ COMMENT= Generate Pod from inline wiki style text LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-File-pushd>=0:devel/p5-File-pushd \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-File-pushd>=0:devel/p5-File-pushd \ p5-Getopt-Lucid>=0.14:textproc/p5-Getopt-Lucid \ p5-IO-String>=1.06:devel/p5-IO-String \ p5-Parse-RecDescent>=1.967.006:devel/p5-Parse-RecDescent -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-IPC-Run3>=0.033:devel/p5-IPC-Run3 \ p5-Probe-Perl>=0.01:sysutils/p5-Probe-Perl diff --git a/textproc/p5-Pod-XML/Makefile b/textproc/p5-Pod-XML/Makefile index 9057bae370a..c075304c326 100644 --- a/textproc/p5-Pod-XML/Makefile +++ b/textproc/p5-Pod-XML/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Module to convert POD to XML -BUILD_DEPENDS= p5-IO-stringy>=0:devel/p5-IO-stringy -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-IO-stringy>=0:devel/p5-IO-stringy TEST_DEPENDS= p5-Test-File-Contents>=0:devel/p5-Test-File-Contents USES= perl5 diff --git a/textproc/p5-Pod-Xhtml/Makefile b/textproc/p5-Pod-Xhtml/Makefile index 86649819059..100f273ff37 100644 --- a/textproc/p5-Pod-Xhtml/Makefile +++ b/textproc/p5-Pod-Xhtml/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Generate well-formed XHTML documents from POD format documentation -BUILD_DEPENDS= p5-URI>=0:net/p5-URI -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-URI>=0:net/p5-URI TEST_DEPENDS= p5-Test-Assertions>0:devel/p5-Test-Assertions USES= perl5 diff --git a/textproc/p5-RADIUS-UserFile/Makefile b/textproc/p5-RADIUS-UserFile/Makefile index 9013ed061b9..1739155d428 100644 --- a/textproc/p5-RADIUS-UserFile/Makefile +++ b/textproc/p5-RADIUS-UserFile/Makefile @@ -14,8 +14,8 @@ COMMENT= Perl extension for manipulating a RADIUS users file LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Tie-IxHash>=0:devel/p5-Tie-IxHash -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Tie-IxHash>=0:devel/p5-Tie-IxHash USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-RDF-Core/Makefile b/textproc/p5-RDF-Core/Makefile index aa5f2d252e7..2720e8bedbb 100644 --- a/textproc/p5-RDF-Core/Makefile +++ b/textproc/p5-RDF-Core/Makefile @@ -11,10 +11,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Object oriented Perl modules for handling tasks related to RDF -BUILD_DEPENDS= p5-XML-Parser>=0:textproc/p5-XML-Parser \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-XML-Parser>=0:textproc/p5-XML-Parser \ p5-DBI>=0:databases/p5-DBI \ p5-URI>=0:net/p5-URI -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-RDF-Notation3/Makefile b/textproc/p5-RDF-Notation3/Makefile index e680cb4059e..50c5b14d030 100644 --- a/textproc/p5-RDF-Notation3/Makefile +++ b/textproc/p5-RDF-Notation3/Makefile @@ -11,10 +11,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= RDF Notation3 parser -BUILD_DEPENDS= p5-XML-SAX>=0:textproc/p5-XML-SAX \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-XML-SAX>=0:textproc/p5-XML-SAX \ p5-RDF-Core>=0:textproc/p5-RDF-Core \ p5-RDFStore>=0:textproc/p5-RDFStore -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-RDF-Query/Makefile b/textproc/p5-RDF-Query/Makefile index e28d5f13e4b..3f4fc331f2d 100644 --- a/textproc/p5-RDF-Query/Makefile +++ b/textproc/p5-RDF-Query/Makefile @@ -13,7 +13,8 @@ COMMENT= Complete SPARQL 1.1 Query and Update implementation for RDF::Trine LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Data-UUID>=0:devel/p5-Data-UUID \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Data-UUID>=0:devel/p5-Data-UUID \ p5-DateTime-Format-W3CDTF>=0:devel/p5-DateTime-Format-W3CDTF \ p5-Error>=0:lang/p5-Error \ p5-JSON>=2:converters/p5-JSON \ @@ -22,7 +23,6 @@ BUILD_DEPENDS= p5-Data-UUID>=0:devel/p5-Data-UUID \ p5-RDF-Trine>=1.004:textproc/p5-RDF-Trine \ p5-Set-Scalar>=0:devel/p5-Set-Scalar \ p5-URI>=1.52:net/p5-URI -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Exception>=0:devel/p5-Test-Exception \ p5-Test-JSON>=0:devel/p5-Test-JSON \ p5-YAML>=0:textproc/p5-YAML diff --git a/textproc/p5-RDF-Simple/Makefile b/textproc/p5-RDF-Simple/Makefile index 2b3389b783f..48c373780a8 100644 --- a/textproc/p5-RDF-Simple/Makefile +++ b/textproc/p5-RDF-Simple/Makefile @@ -13,13 +13,13 @@ COMMENT= Read and write RDF without complication LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Class-MakeMethods>=0:devel/p5-Class-MakeMethods \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-MakeMethods>=0:devel/p5-Class-MakeMethods \ p5-File-Slurp>=0:devel/p5-File-Slurp \ p5-Regexp-Common>=0:textproc/p5-Regexp-Common \ p5-URI>=0:net/p5-URI \ p5-XML-SAX>=0:textproc/p5-XML-SAX \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-IO-CaptureOutput>0:devel/p5-IO-CaptureOutput \ p5-Test-File>=0:devel/p5-Test-File diff --git a/textproc/p5-RDF-Trine/Makefile b/textproc/p5-RDF-Trine/Makefile index 20865078851..af20e8099be 100644 --- a/textproc/p5-RDF-Trine/Makefile +++ b/textproc/p5-RDF-Trine/Makefile @@ -14,7 +14,8 @@ COMMENT= RDF Framework for Perl LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Algorithm-Combinatorics>=0:math/p5-Algorithm-Combinatorics \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Algorithm-Combinatorics>=0:math/p5-Algorithm-Combinatorics \ p5-Cache-LRU>=0.04:devel/p5-Cache-LRU \ p5-DBD-SQLite>=1.14:databases/p5-DBD-SQLite \ p5-DBI>=0:databases/p5-DBI \ @@ -38,7 +39,6 @@ BUILD_DEPENDS= p5-Algorithm-Combinatorics>=0:math/p5-Algorithm-Combinatorics \ p5-XML-Namespace>=0:textproc/p5-XML-Namespace \ p5-XML-SAX>=0.96:textproc/p5-XML-SAX \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/textproc/p5-RDFStore/Makefile b/textproc/p5-RDFStore/Makefile index 0e88d8ec0c8..d1840dd626d 100644 --- a/textproc/p5-RDFStore/Makefile +++ b/textproc/p5-RDFStore/Makefile @@ -12,10 +12,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Perl API for RDF Storage -BUILD_DEPENDS= p5-XML-Parser>=0:textproc/p5-XML-Parser \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-XML-Parser>=0:textproc/p5-XML-Parser \ p5-URI>=0:net/p5-URI \ p5-DBI>=0:databases/p5-DBI -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= bdb perl5 USE_PERL5= configure diff --git a/textproc/p5-RTF-Parser/Makefile b/textproc/p5-RTF-Parser/Makefile index f738afc6294..3ff00e1855c 100644 --- a/textproc/p5-RTF-Parser/Makefile +++ b/textproc/p5-RTF-Parser/Makefile @@ -14,8 +14,8 @@ COMMENT= Perl module for parsing RTF files LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-RTF-Tokenizer>=1.16:textproc/p5-RTF-Tokenizer -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-RTF-Tokenizer>=1.16:textproc/p5-RTF-Tokenizer CONFLICTS_INSTALL= rtf2html-[0-9]* diff --git a/textproc/p5-RTF-Writer/Makefile b/textproc/p5-RTF-Writer/Makefile index b7f9c358966..f9d11f2454d 100644 --- a/textproc/p5-RTF-Writer/Makefile +++ b/textproc/p5-RTF-Writer/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Perl module for generating documents in Rich Text Format -BUILD_DEPENDS= p5-Image-Size>=0:graphics/p5-Image-Size -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Image-Size>=0:graphics/p5-Image-Size USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-Regexp-Common-Email-Address/Makefile b/textproc/p5-Regexp-Common-Email-Address/Makefile index d02d894fc57..cc342ebafdd 100644 --- a/textproc/p5-Regexp-Common-Email-Address/Makefile +++ b/textproc/p5-Regexp-Common-Email-Address/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Regex pattern for Email Addresses -BUILD_DEPENDS= p5-Email-Address>=0:mail/p5-Email-Address \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Email-Address>=0:mail/p5-Email-Address \ p5-Regexp-Common>=0:textproc/p5-Regexp-Common -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-Regexp-Common-net-CIDR/Makefile b/textproc/p5-Regexp-Common-net-CIDR/Makefile index 2b4735f03a8..c96b821ddde 100644 --- a/textproc/p5-Regexp-Common-net-CIDR/Makefile +++ b/textproc/p5-Regexp-Common-net-CIDR/Makefile @@ -10,8 +10,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Provide patterns for CIDR blocks -BUILD_DEPENDS= p5-Regexp-Common>0:textproc/p5-Regexp-Common -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Regexp-Common>0:textproc/p5-Regexp-Common USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-Regexp-Common-profanity_us/Makefile b/textproc/p5-Regexp-Common-profanity_us/Makefile index 63ef9a2978d..53cc5d1c760 100644 --- a/textproc/p5-Regexp-Common-profanity_us/Makefile +++ b/textproc/p5-Regexp-Common-profanity_us/Makefile @@ -14,8 +14,8 @@ COMMENT= Provide regexes for U.S. profanity LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Regexp-Common>=0:textproc/p5-Regexp-Common -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Regexp-Common>=0:textproc/p5-Regexp-Common USE_PERL5= configure USES= perl5 diff --git a/textproc/p5-Regexp-Common-time/Makefile b/textproc/p5-Regexp-Common-time/Makefile index a2a38a9a78e..027f04f935d 100644 --- a/textproc/p5-Regexp-Common-time/Makefile +++ b/textproc/p5-Regexp-Common-time/Makefile @@ -9,8 +9,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= des@FreeBSD.org COMMENT= Regexp::Common::time - Date and time regexps -BUILD_DEPENDS= p5-Regexp-Common>0:textproc/p5-Regexp-Common -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Regexp-Common>0:textproc/p5-Regexp-Common USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-SGML-DTDParse/Makefile b/textproc/p5-SGML-DTDParse/Makefile index 28e96a0a57b..62d6046364b 100644 --- a/textproc/p5-SGML-DTDParse/Makefile +++ b/textproc/p5-SGML-DTDParse/Makefile @@ -11,11 +11,11 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Parse an SGML or XML DTD -BUILD_DEPENDS= p5-DelimMatch>=1.05:textproc/p5-DelimMatch \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-DelimMatch>=1.05:textproc/p5-DelimMatch \ p5-libxml>=0.08:textproc/p5-libxml \ p5-XML-DOM>=1.44:textproc/p5-XML-DOM \ p5-XML-Parser>=2.3:textproc/p5-XML-Parser -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-SGML-Parser-OpenSP/Makefile b/textproc/p5-SGML-Parser-OpenSP/Makefile index 54dcef15dcf..aaaf81e63e4 100644 --- a/textproc/p5-SGML-Parser-OpenSP/Makefile +++ b/textproc/p5-SGML-Parser-OpenSP/Makefile @@ -16,10 +16,10 @@ COMMENT= Parse SGML documents using OpenSP LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= onsgmls:textproc/opensp \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= onsgmls:textproc/opensp \ p5-Class-Accessor>=0:devel/p5-Class-Accessor \ p5-Test-Exception>=0:devel/p5-Test-Exception -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= dos2unix perl5 USE_PERL5= configure diff --git a/textproc/p5-SVG-Parser/Makefile b/textproc/p5-SVG-Parser/Makefile index 3a88351552a..ef1cd546830 100644 --- a/textproc/p5-SVG-Parser/Makefile +++ b/textproc/p5-SVG-Parser/Makefile @@ -14,10 +14,10 @@ COMMENT= XML Parser for SVG documents LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-SVG>=2:textproc/p5-SVG \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-SVG>=2:textproc/p5-SVG \ p5-XML-Parser>=0:textproc/p5-XML-Parser \ p5-XML-SAX>=0:textproc/p5-XML-SAX -RUN_DEPENDS:= ${BUILD_DEPENDS} USE_PERL5= modbuild USES= perl5 diff --git a/textproc/p5-Search-Elasticsearch-Client-0_90/Makefile b/textproc/p5-Search-Elasticsearch-Client-0_90/Makefile index 7501bb41f16..9507b5a9943 100644 --- a/textproc/p5-Search-Elasticsearch-Client-0_90/Makefile +++ b/textproc/p5-Search-Elasticsearch-Client-0_90/Makefile @@ -13,12 +13,12 @@ COMMENT= ElasticSearch API for 0.90 servers LICENSE= APACHE20 -BUILD_DEPENDS= p5-Search-Elasticsearch>=5.01:textproc/p5-Search-Elasticsearch \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Search-Elasticsearch>=5.01:textproc/p5-Search-Elasticsearch \ p5-Devel-GlobalDestruction>=0:devel/p5-Devel-GlobalDestruction \ p5-Moo>=1.003:devel/p5-Moo \ p5-Try-Tiny>=0:lang/p5-Try-Tiny \ p5-namespace-clean>=0:devel/p5-namespace-clean -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-IO-Socket-SSL>=0:security/p5-IO-Socket-SSL \ p5-JSON-XS>=0:converters/p5-JSON-XS \ p5-Log-Any-Adapter-Callback>=0:devel/p5-Log-Any-Adapter-Callback \ diff --git a/textproc/p5-Search-Elasticsearch-Client-1_0/Makefile b/textproc/p5-Search-Elasticsearch-Client-1_0/Makefile index 9eef3e9d20a..b8a48b30ad0 100644 --- a/textproc/p5-Search-Elasticsearch-Client-1_0/Makefile +++ b/textproc/p5-Search-Elasticsearch-Client-1_0/Makefile @@ -13,12 +13,12 @@ COMMENT= ElasticSearch API for 1.0 servers LICENSE= APACHE20 -BUILD_DEPENDS= p5-Search-Elasticsearch>=5.01:textproc/p5-Search-Elasticsearch \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Search-Elasticsearch>=5.01:textproc/p5-Search-Elasticsearch \ p5-Devel-GlobalDestruction>=0:devel/p5-Devel-GlobalDestruction \ p5-Moo>=1.003:devel/p5-Moo \ p5-Try-Tiny>=0:lang/p5-Try-Tiny \ p5-namespace-clean>=0:devel/p5-namespace-clean -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-IO-Socket-SSL>=0:security/p5-IO-Socket-SSL \ p5-JSON-XS>=0:converters/p5-JSON-XS \ p5-Log-Any-Adapter-Callback>=0:devel/p5-Log-Any-Adapter-Callback \ diff --git a/textproc/p5-Search-Elasticsearch-Client-2_0/Makefile b/textproc/p5-Search-Elasticsearch-Client-2_0/Makefile index 869d019f135..9fa3e4cc8a2 100644 --- a/textproc/p5-Search-Elasticsearch-Client-2_0/Makefile +++ b/textproc/p5-Search-Elasticsearch-Client-2_0/Makefile @@ -13,12 +13,12 @@ COMMENT= ElasticSearch API for 2.0 servers LICENSE= APACHE20 -BUILD_DEPENDS= p5-Search-Elasticsearch>=5.01:textproc/p5-Search-Elasticsearch \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Search-Elasticsearch>=5.01:textproc/p5-Search-Elasticsearch \ p5-Devel-GlobalDestruction>=0:devel/p5-Devel-GlobalDestruction \ p5-Moo>=1.003:devel/p5-Moo \ p5-Try-Tiny>=0:lang/p5-Try-Tiny \ p5-namespace-clean>=0:devel/p5-namespace-clean -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-IO-Socket-SSL>=0:security/p5-IO-Socket-SSL \ p5-JSON-XS>=0:converters/p5-JSON-XS \ p5-Log-Any-Adapter-Callback>=0:devel/p5-Log-Any-Adapter-Callback \ diff --git a/textproc/p5-Search-Elasticsearch/Makefile b/textproc/p5-Search-Elasticsearch/Makefile index d6b657bb290..22f59cfaef6 100644 --- a/textproc/p5-Search-Elasticsearch/Makefile +++ b/textproc/p5-Search-Elasticsearch/Makefile @@ -13,7 +13,8 @@ COMMENT= ElasticSearch API LICENSE= APACHE20 -BUILD_DEPENDS= p5-Any-URI-Escape>=0:www/p5-Any-URI-Escape \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Any-URI-Escape>=0:www/p5-Any-URI-Escape \ p5-Devel-GlobalDestruction>=0:devel/p5-Devel-GlobalDestruction \ p5-HTTP-Message>=0:www/p5-HTTP-Message \ p5-HTTP-Tiny>=0.043:www/p5-HTTP-Tiny \ @@ -29,7 +30,6 @@ BUILD_DEPENDS= p5-Any-URI-Escape>=0:www/p5-Any-URI-Escape \ p5-URI>=0:net/p5-URI \ p5-libwww>=0:www/p5-libwww \ p5-namespace-clean>=0:devel/p5-namespace-clean -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-IO-Socket-SSL>=0:security/p5-IO-Socket-SSL \ p5-JSON-XS>=0:converters/p5-JSON-XS \ p5-Log-Any-Adapter-Callback>=0:devel/p5-Log-Any-Adapter-Callback \ diff --git a/textproc/p5-Search-Estraier/Makefile b/textproc/p5-Search-Estraier/Makefile index 81001e6dd20..8b4edb2d999 100644 --- a/textproc/p5-Search-Estraier/Makefile +++ b/textproc/p5-Search-Estraier/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Pure perl module to use Hyper Estraier search engine -BUILD_DEPENDS= p5-URI>=0:net/p5-URI \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-URI>=0:net/p5-URI \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Exception>0:devel/p5-Test-Exception USES= perl5 shebangfix diff --git a/textproc/p5-Search-QueryParser-SQL/Makefile b/textproc/p5-Search-QueryParser-SQL/Makefile index d687ac6a547..821f5915b6b 100644 --- a/textproc/p5-Search-QueryParser-SQL/Makefile +++ b/textproc/p5-Search-QueryParser-SQL/Makefile @@ -12,10 +12,10 @@ COMMENT= Turn free-text queries into SQL WHERE clauses LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Class-Accessor>=0:devel/p5-Class-Accessor \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Accessor>=0:devel/p5-Class-Accessor \ p5-Data-Dump>=0:devel/p5-Data-Dump \ p5-Search-QueryParser>=0.93:textproc/p5-Search-QueryParser -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/textproc/p5-Search-VectorSpace/Makefile b/textproc/p5-Search-VectorSpace/Makefile index c6a6da0a3de..8f26ffcf5db 100644 --- a/textproc/p5-Search-VectorSpace/Makefile +++ b/textproc/p5-Search-VectorSpace/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Very basic vector-space search engine perl module -BUILD_DEPENDS= PDL>=0:math/PDL \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= PDL>=0:math/PDL \ p5-Lingua-Stem>=0:textproc/p5-Lingua-Stem -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-Senna/Makefile b/textproc/p5-Senna/Makefile index 11714b35067..c827ec0bc1d 100644 --- a/textproc/p5-Senna/Makefile +++ b/textproc/p5-Senna/Makefile @@ -13,8 +13,8 @@ COMMENT= Perl module for Embeddable Fulltext Search Engine LICENSE= LGPL21 -BUILD_DEPENDS= senna-cfg:textproc/senna -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= senna-cfg:textproc/senna USES= perl5 USE_PERL5= modbuild diff --git a/textproc/p5-Solr/Makefile b/textproc/p5-Solr/Makefile index d63dec392b2..4ee165db0bd 100644 --- a/textproc/p5-Solr/Makefile +++ b/textproc/p5-Solr/Makefile @@ -14,11 +14,11 @@ COMMENT= Perl extension for interfacing with Solr LICENSE= APACHE20 -BUILD_DEPENDS= p5-File-Slurp>=0:devel/p5-File-Slurp \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-File-Slurp>=0:devel/p5-File-Slurp \ p5-Log-Log4perl>=0:devel/p5-Log-Log4perl \ p5-XML-Simple>=0:textproc/p5-XML-Simple \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} USE_PERL5= configure USES= perl5 diff --git a/textproc/p5-Sphinx-Config/Makefile b/textproc/p5-Sphinx-Config/Makefile index f41c449920f..ab75765c3ed 100644 --- a/textproc/p5-Sphinx-Config/Makefile +++ b/textproc/p5-Sphinx-Config/Makefile @@ -13,8 +13,8 @@ COMMENT= Sphinx search engine configuration file read/modify/write LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-List-MoreUtils>=0:lang/p5-List-MoreUtils -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-List-MoreUtils>=0:lang/p5-List-MoreUtils USE_PERL5= configure USES= perl5 diff --git a/textproc/p5-Sphinx-Manager/Makefile b/textproc/p5-Sphinx-Manager/Makefile index 55535c77c31..8a92084f5d8 100644 --- a/textproc/p5-Sphinx-Manager/Makefile +++ b/textproc/p5-Sphinx-Manager/Makefile @@ -13,11 +13,11 @@ COMMENT= Sphinx search engine management (start/stop) LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Class-Accessor>=0:devel/p5-Class-Accessor \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Accessor>=0:devel/p5-Class-Accessor \ p5-Path-Class>=0:devel/p5-Path-Class \ p5-Proc-ProcessTable>=0:devel/p5-Proc-ProcessTable \ p5-Sphinx-Config>=0.09:textproc/p5-Sphinx-Config -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USE_PERL5= configure diff --git a/textproc/p5-Sphinx-Search/Makefile b/textproc/p5-Sphinx-Search/Makefile index db87d2c1d1d..4fe8606922f 100644 --- a/textproc/p5-Sphinx-Search/Makefile +++ b/textproc/p5-Sphinx-Search/Makefile @@ -14,12 +14,12 @@ COMMENT= Sphinx search engine API Perl client LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Class-Accessor>=0:devel/p5-Class-Accessor \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Accessor>=0:devel/p5-Class-Accessor \ p5-DBI>=0:databases/p5-DBI \ p5-File-SearchPath>=0:devel/p5-File-SearchPath \ p5-List-MoreUtils>=0:lang/p5-List-MoreUtils \ p5-Path-Class>=0:devel/p5-Path-Class -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/textproc/p5-Spreadsheet-ParseExcel/Makefile b/textproc/p5-Spreadsheet-ParseExcel/Makefile index 2c410a38cb4..208c7209eab 100644 --- a/textproc/p5-Spreadsheet-ParseExcel/Makefile +++ b/textproc/p5-Spreadsheet-ParseExcel/Makefile @@ -15,10 +15,10 @@ COMMENT= Get information from Excel file LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Crypt-RC4>=0:security/p5-Crypt-RC4 \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Crypt-RC4>=0:security/p5-Crypt-RC4 \ p5-Digest-Perl-MD5>=0:security/p5-Digest-Perl-MD5 \ p5-OLE-Storage_Lite>=0.19:devel/p5-OLE-Storage_Lite -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 shebangfix SHEBANG_FILES= sample/parse.pl \ diff --git a/textproc/p5-Spreadsheet-Read/Makefile b/textproc/p5-Spreadsheet-Read/Makefile index 88494966ef5..2396785f1e7 100644 --- a/textproc/p5-Spreadsheet-Read/Makefile +++ b/textproc/p5-Spreadsheet-Read/Makefile @@ -13,11 +13,11 @@ COMMENT= Read the data from a spreadsheet LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Text-CSV_XS>=0.71:textproc/p5-Text-CSV_XS \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Text-CSV_XS>=0.71:textproc/p5-Text-CSV_XS \ p5-Text-CSV>=1.33:textproc/p5-Text-CSV \ p5-Spreadsheet-ReadSXC>=0.20:textproc/p5-Spreadsheet-ReadSXC \ p5-Spreadsheet-ParseExcel>=0.13:textproc/p5-Spreadsheet-ParseExcel -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-NoWarnings>0:devel/p5-Test-NoWarnings USES= perl5 tar:tgz diff --git a/textproc/p5-Spreadsheet-WriteExcel-FromXML/Makefile b/textproc/p5-Spreadsheet-WriteExcel-FromXML/Makefile index cede3f4b803..8b4709206e3 100644 --- a/textproc/p5-Spreadsheet-WriteExcel-FromXML/Makefile +++ b/textproc/p5-Spreadsheet-WriteExcel-FromXML/Makefile @@ -12,10 +12,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Create an Excel Spreadsheet from XML -BUILD_DEPENDS= p5-OLE-Storage_Lite>=0:devel/p5-OLE-Storage_Lite \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-OLE-Storage_Lite>=0:devel/p5-OLE-Storage_Lite \ p5-XML-Parser>=0:textproc/p5-XML-Parser \ p5-Spreadsheet-WriteExcel>=0:textproc/p5-Spreadsheet-WriteExcel -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-Spreadsheet-WriteExcel/Makefile b/textproc/p5-Spreadsheet-WriteExcel/Makefile index 00e25926db4..ed6ec1e51c5 100644 --- a/textproc/p5-Spreadsheet-WriteExcel/Makefile +++ b/textproc/p5-Spreadsheet-WriteExcel/Makefile @@ -14,11 +14,11 @@ COMMENT= Write to a cross-platform Excel binary file LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Date-Calc>=0:devel/p5-Date-Calc \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Date-Calc>=0:devel/p5-Date-Calc \ p5-Date-Manip>=0:devel/p5-Date-Manip \ p5-OLE-Storage_Lite>=0:devel/p5-OLE-Storage_Lite \ p5-Parse-RecDescent>=0:devel/p5-Parse-RecDescent -RUN_DEPENDS:= ${BUILD_DEPENDS} OPTIONS_DEFINE= DOCS EXAMPLES diff --git a/textproc/p5-Spreadsheet-XLSX/Makefile b/textproc/p5-Spreadsheet-XLSX/Makefile index 9018b7068ca..1d843ef7007 100644 --- a/textproc/p5-Spreadsheet-XLSX/Makefile +++ b/textproc/p5-Spreadsheet-XLSX/Makefile @@ -9,9 +9,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= swills@FreeBSD.org COMMENT= Perl extension for reading MS Excel 2007 files -BUILD_DEPENDS= p5-Spreadsheet-ParseExcel>0:textproc/p5-Spreadsheet-ParseExcel \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Spreadsheet-ParseExcel>0:textproc/p5-Spreadsheet-ParseExcel \ p5-Archive-Zip>=1.18:archivers/p5-Archive-Zip -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-String-Flogger/Makefile b/textproc/p5-String-Flogger/Makefile index ae5f55d8737..30881260f68 100644 --- a/textproc/p5-String-Flogger/Makefile +++ b/textproc/p5-String-Flogger/Makefile @@ -15,10 +15,10 @@ COMMENT= String munging for loggers LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Params-Util>0:devel/p5-Params-Util \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Params-Util>0:devel/p5-Params-Util \ p5-Sub-Exporter>0:devel/p5-Sub-Exporter \ p5-JSON>0:converters/p5-JSON -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Simple>=0.82:devel/p5-Test-Simple USES= perl5 diff --git a/textproc/p5-String-Fraction/Makefile b/textproc/p5-String-Fraction/Makefile index c0b6bdd5fe2..ba7b4b0216a 100644 --- a/textproc/p5-String-Fraction/Makefile +++ b/textproc/p5-String-Fraction/Makefile @@ -14,8 +14,8 @@ COMMENT= Convert fractions into Unicode chars LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-HTML-Fraction>=0.40:textproc/p5-HTML-Fraction -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTML-Fraction>=0.40:textproc/p5-HTML-Fraction USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-String-Koremutake/Makefile b/textproc/p5-String-Koremutake/Makefile index 3341f9545d3..146e7b13000 100644 --- a/textproc/p5-String-Koremutake/Makefile +++ b/textproc/p5-String-Koremutake/Makefile @@ -14,9 +14,9 @@ COMMENT= Convert to/from Koremutake Memorable Random Strings LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Error>=0:lang/p5-Error \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Error>=0:lang/p5-Error \ p5-Test-Exception>=0:devel/p5-Test-Exception -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-String-Print/Makefile b/textproc/p5-String-Print/Makefile index e37a7a8c049..9373e6d7b4c 100644 --- a/textproc/p5-String-Print/Makefile +++ b/textproc/p5-String-Print/Makefile @@ -13,10 +13,10 @@ COMMENT= Alternative of printf LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-HTML-Parser>=0:www/p5-HTML-Parser \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTML-Parser>=0:www/p5-HTML-Parser \ p5-TimeDate>=2.30:devel/p5-TimeDate \ p5-Unicode-LineBreak>=0:textproc/p5-Unicode-LineBreak -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USE_PERL5= configure diff --git a/textproc/p5-String-ShowDiff/Makefile b/textproc/p5-String-ShowDiff/Makefile index 486a242131e..0a586ac5bfd 100644 --- a/textproc/p5-String-ShowDiff/Makefile +++ b/textproc/p5-String-ShowDiff/Makefile @@ -14,8 +14,8 @@ COMMENT= Perl extension to help visualize differences between strings LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Algorithm-Diff>=0:devel/p5-Algorithm-Diff -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Algorithm-Diff>=0:devel/p5-Algorithm-Diff NO_ARCH= yes USES= perl5 diff --git a/textproc/p5-String-ToIdentifier-EN/Makefile b/textproc/p5-String-ToIdentifier-EN/Makefile index a700b519a18..7f6a094c620 100644 --- a/textproc/p5-String-ToIdentifier-EN/Makefile +++ b/textproc/p5-String-ToIdentifier-EN/Makefile @@ -13,10 +13,10 @@ COMMENT= Convert Strings to English Program Identifiers LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Lingua-EN-Inflect-Phrase>=0:textproc/p5-Lingua-EN-Inflect-Phrase \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Lingua-EN-Inflect-Phrase>=0:textproc/p5-Lingua-EN-Inflect-Phrase \ p5-Text-Unidecode>=0:converters/p5-Text-Unidecode \ p5-namespace-clean>=0:devel/p5-namespace-clean -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USE_PERL5= configure diff --git a/textproc/p5-TOML-Parser/Makefile b/textproc/p5-TOML-Parser/Makefile index 806ce15021f..c2079882954 100644 --- a/textproc/p5-TOML-Parser/Makefile +++ b/textproc/p5-TOML-Parser/Makefile @@ -15,8 +15,8 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Types-Serialiser>=0:devel/p5-Types-Serialiser -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Types-Serialiser>=0:devel/p5-Types-Serialiser TEST_DEPENDS= p5-Test-Deep>=0:devel/p5-Test-Deep PORTSCOUT= limit:^[0-9\.]*$$ diff --git a/textproc/p5-TOML/Makefile b/textproc/p5-TOML/Makefile index af75d2f4331..74aaa0c8995 100644 --- a/textproc/p5-TOML/Makefile +++ b/textproc/p5-TOML/Makefile @@ -14,8 +14,8 @@ COMMENT= Parser for Tom's Obvious, Minimal Language (TOML) #' LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-TOML-Parser>=0.04:textproc/p5-TOML-Parser -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-TOML-Parser>=0.04:textproc/p5-TOML-Parser NO_ARCH= yes USE_PERL5= modbuildtiny diff --git a/textproc/p5-TeX-Encode/Makefile b/textproc/p5-TeX-Encode/Makefile index 75945f239ae..22834e734d0 100644 --- a/textproc/p5-TeX-Encode/Makefile +++ b/textproc/p5-TeX-Encode/Makefile @@ -15,9 +15,9 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-HTML-Parser>=3.35:www/p5-HTML-Parser \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTML-Parser>=3.35:www/p5-HTML-Parser \ p5-Pod-LaTeX>=0.56:textproc/p5-Pod-LaTeX -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/textproc/p5-Template-Extract/Makefile b/textproc/p5-Template-Extract/Makefile index 2dbdfbaf663..8d6139b4ea3 100644 --- a/textproc/p5-Template-Extract/Makefile +++ b/textproc/p5-Template-Extract/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Use TT2 syntax to extract data from documents -BUILD_DEPENDS= p5-Template-Toolkit>=0:www/p5-Template-Toolkit -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Template-Toolkit>=0:www/p5-Template-Toolkit USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-Template-Magic/Makefile b/textproc/p5-Template-Magic/Makefile index 7d6b9c9671a..c43fd731486 100644 --- a/textproc/p5-Template-Magic/Makefile +++ b/textproc/p5-Template-Magic/Makefile @@ -11,10 +11,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Perl Module with magic merger of runtime values with templates -BUILD_DEPENDS= p5-IO-Util>=0:devel/p5-IO-Util \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-IO-Util>=0:devel/p5-IO-Util \ p5-OOTools>=0:devel/p5-OOTools \ p5-HTML-TableTiler>=0:www/p5-HTML-TableTiler -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-Template-Plugin-CSV/Makefile b/textproc/p5-Template-Plugin-CSV/Makefile index 3dcc0d38deb..2ffbe5c442a 100644 --- a/textproc/p5-Template-Plugin-CSV/Makefile +++ b/textproc/p5-Template-Plugin-CSV/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= dgeo@centrale-marseille.fr COMMENT= Template::Plugin::CSV - Plugin for generating CSV -BUILD_DEPENDS= p5-Template-Toolkit>0:www/p5-Template-Toolkit -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Template-Toolkit>0:www/p5-Template-Toolkit USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-Template-Plugin-Filter-Minify-CSS-XS/Makefile b/textproc/p5-Template-Plugin-Filter-Minify-CSS-XS/Makefile index 38a4ad5cce8..07db12fc549 100644 --- a/textproc/p5-Template-Plugin-Filter-Minify-CSS-XS/Makefile +++ b/textproc/p5-Template-Plugin-Filter-Minify-CSS-XS/Makefile @@ -14,9 +14,9 @@ COMMENT= CSS::Minifier::XS filter for Template Toolkit LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-CSS-Minifier-XS>=0:textproc/p5-CSS-Minifier-XS \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-CSS-Minifier-XS>=0:textproc/p5-CSS-Minifier-XS \ p5-Template-Toolkit>=2:www/p5-Template-Toolkit -RUN_DEPENDS:= ${BUILD_DEPENDS} USE_PERL5= configure USES= perl5 diff --git a/textproc/p5-Template-Plugin-Filter-Minify-CSS/Makefile b/textproc/p5-Template-Plugin-Filter-Minify-CSS/Makefile index 14185241162..818443e599a 100644 --- a/textproc/p5-Template-Plugin-Filter-Minify-CSS/Makefile +++ b/textproc/p5-Template-Plugin-Filter-Minify-CSS/Makefile @@ -14,9 +14,9 @@ COMMENT= CSS::Minifier filter for Template Toolkit LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-CSS-Minifier>=0:textproc/p5-CSS-Minifier \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-CSS-Minifier>=0:textproc/p5-CSS-Minifier \ p5-Template-Toolkit>=2:www/p5-Template-Toolkit -RUN_DEPENDS:= ${BUILD_DEPENDS} USE_PERL5= configure USES= perl5 diff --git a/textproc/p5-Template-Plugin-Filter-Minify-JavaScript-XS/Makefile b/textproc/p5-Template-Plugin-Filter-Minify-JavaScript-XS/Makefile index 3d204823e95..fbb595d74cd 100644 --- a/textproc/p5-Template-Plugin-Filter-Minify-JavaScript-XS/Makefile +++ b/textproc/p5-Template-Plugin-Filter-Minify-JavaScript-XS/Makefile @@ -14,9 +14,9 @@ COMMENT= JavaScript::Minifier::XS filter for Template Toolkit LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-JavaScript-Minifier-XS>=0:textproc/p5-JavaScript-Minifier-XS \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-JavaScript-Minifier-XS>=0:textproc/p5-JavaScript-Minifier-XS \ p5-Template-Toolkit>=2:www/p5-Template-Toolkit -RUN_DEPENDS:= ${BUILD_DEPENDS} USE_PERL5= configure USES= perl5 diff --git a/textproc/p5-Template-Plugin-Filter-Minify-JavaScript/Makefile b/textproc/p5-Template-Plugin-Filter-Minify-JavaScript/Makefile index e2eeff46a5d..53599484004 100644 --- a/textproc/p5-Template-Plugin-Filter-Minify-JavaScript/Makefile +++ b/textproc/p5-Template-Plugin-Filter-Minify-JavaScript/Makefile @@ -14,9 +14,9 @@ COMMENT= JavaScript::Minifier filter for Template Toolkit LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-JavaScript-Minifier>=0:textproc/p5-JavaScript-Minifier \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-JavaScript-Minifier>=0:textproc/p5-JavaScript-Minifier \ p5-Template-Toolkit>=2:www/p5-Template-Toolkit -RUN_DEPENDS:= ${BUILD_DEPENDS} USE_PERL5= configure USES= perl5 diff --git a/textproc/p5-Template-Plugin-HTML-SuperForm/Makefile b/textproc/p5-Template-Plugin-HTML-SuperForm/Makefile index ce8a554b8b1..405b3dc88e5 100644 --- a/textproc/p5-Template-Plugin-HTML-SuperForm/Makefile +++ b/textproc/p5-Template-Plugin-HTML-SuperForm/Makefile @@ -10,9 +10,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Interface Template Toolkit to Lingua::EN::Inflect module -BUILD_DEPENDS= p5-Template-Toolkit>0:www/p5-Template-Toolkit \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Template-Toolkit>0:www/p5-Template-Toolkit \ p5-HTML-SuperForm>0:textproc/p5-HTML-SuperForm -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-Template-Plugin-Lingua-EN-Inflect/Makefile b/textproc/p5-Template-Plugin-Lingua-EN-Inflect/Makefile index 91cb3af9419..318d42a5858 100644 --- a/textproc/p5-Template-Plugin-Lingua-EN-Inflect/Makefile +++ b/textproc/p5-Template-Plugin-Lingua-EN-Inflect/Makefile @@ -10,9 +10,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Interface Template Toolkit to Lingua::EN::Inflect module -BUILD_DEPENDS= p5-Lingua-EN-Inflect>=0:textproc/p5-Lingua-EN-Inflect \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Lingua-EN-Inflect>=0:textproc/p5-Lingua-EN-Inflect \ p5-Template-Toolkit>=0:www/p5-Template-Toolkit -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-Template-Plugin-XML-Escape/Makefile b/textproc/p5-Template-Plugin-XML-Escape/Makefile index 56c10fdfbd7..f71dcd3475f 100644 --- a/textproc/p5-Template-Plugin-XML-Escape/Makefile +++ b/textproc/p5-Template-Plugin-XML-Escape/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= simarg@gmail.com COMMENT= Escape variables to suit being placed into XML -BUILD_DEPENDS= p5-Template-Toolkit>=2.20:www/p5-Template-Toolkit -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Template-Toolkit>=2.20:www/p5-Template-Toolkit USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-Term-QRCode/Makefile b/textproc/p5-Term-QRCode/Makefile index af52607830b..d28988dbdf8 100644 --- a/textproc/p5-Term-QRCode/Makefile +++ b/textproc/p5-Term-QRCode/Makefile @@ -14,9 +14,9 @@ COMMENT= Generate QR Code on Terminal LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= libqrencode>=2.0.0:graphics/libqrencode \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= libqrencode>=2.0.0:graphics/libqrencode \ p5-Text-QRCode>0:textproc/p5-Text-QRCode -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-Test-Perl-Critic/Makefile b/textproc/p5-Test-Perl-Critic/Makefile index fb1850b772e..1231354c12c 100644 --- a/textproc/p5-Test-Perl-Critic/Makefile +++ b/textproc/p5-Test-Perl-Critic/Makefile @@ -14,9 +14,9 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-MCE>=1.827:devel/p5-MCE \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-MCE>=1.827:devel/p5-MCE \ p5-Perl-Critic>=0:textproc/p5-Perl-Critic -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/textproc/p5-Text-Aligner/Makefile b/textproc/p5-Text-Aligner/Makefile index 7a9c6007a16..2125caf82db 100644 --- a/textproc/p5-Text-Aligner/Makefile +++ b/textproc/p5-Text-Aligner/Makefile @@ -13,8 +13,8 @@ COMMENT= Align text in columns LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Term-ANSIColor>=2.02:devel/p5-Term-ANSIColor -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Term-ANSIColor>=2.02:devel/p5-Term-ANSIColor NO_ARCH= yes USES= perl5 diff --git a/textproc/p5-Text-Autoformat/Makefile b/textproc/p5-Text-Autoformat/Makefile index 44e93098ba9..9888074d582 100644 --- a/textproc/p5-Text-Autoformat/Makefile +++ b/textproc/p5-Text-Autoformat/Makefile @@ -16,8 +16,8 @@ COMMENT= Automatic and manual text wrapping and reformating formatting LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Text-Reform>=1.11:textproc/p5-Text-Reform -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Text-Reform>=1.11:textproc/p5-Text-Reform USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-Text-CSV-Encoded/Makefile b/textproc/p5-Text-CSV-Encoded/Makefile index aa29e635154..7a83e2143f9 100644 --- a/textproc/p5-Text-CSV-Encoded/Makefile +++ b/textproc/p5-Text-CSV-Encoded/Makefile @@ -15,8 +15,8 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Text-CSV>=0:textproc/p5-Text-CSV -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Text-CSV>=0:textproc/p5-Text-CSV NO_ARCH= yes USES= perl5 diff --git a/textproc/p5-Text-CSV-Hashify/Makefile b/textproc/p5-Text-CSV-Hashify/Makefile index 2e72e0aa413..672ea4e3b6d 100644 --- a/textproc/p5-Text-CSV-Hashify/Makefile +++ b/textproc/p5-Text-CSV-Hashify/Makefile @@ -14,8 +14,8 @@ COMMENT= Composition and decomposition of comma-separated values into hashes LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Text-CSV>=0:textproc/p5-Text-CSV -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Text-CSV>=0:textproc/p5-Text-CSV USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-Text-CSV-Simple/Makefile b/textproc/p5-Text-CSV-Simple/Makefile index 44ceb651761..c3e73ee79e4 100644 --- a/textproc/p5-Text-CSV-Simple/Makefile +++ b/textproc/p5-Text-CSV-Simple/Makefile @@ -10,10 +10,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= kuriyama@FreeBSD.org COMMENT= Perl module for Simpler parsing of CSV files -BUILD_DEPENDS= p5-Text-CSV_XS>=0:textproc/p5-Text-CSV_XS \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Text-CSV_XS>=0:textproc/p5-Text-CSV_XS \ p5-File-Slurp>=0:devel/p5-File-Slurp \ p5-Class-Trigger>=0:devel/p5-Class-Trigger -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-Text-Colorizer/Makefile b/textproc/p5-Text-Colorizer/Makefile index c98411bcca6..34c99d267bc 100644 --- a/textproc/p5-Text-Colorizer/Makefile +++ b/textproc/p5-Text-Colorizer/Makefile @@ -14,9 +14,9 @@ COMMENT= Create colored text from text and color description LICENSE= ART20 GPLv1 LICENSE_COMB= dual -BUILD_DEPENDS= p5-Readonly>=0:devel/p5-Readonly \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Readonly>=0:devel/p5-Readonly \ p5-Sub-Exporter>=0:devel/p5-Sub-Exporter -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= modbuild diff --git a/textproc/p5-Text-Context/Makefile b/textproc/p5-Text-Context/Makefile index aca200c50ad..6460d6a1fd3 100644 --- a/textproc/p5-Text-Context/Makefile +++ b/textproc/p5-Text-Context/Makefile @@ -11,10 +11,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Handle highlighting search result context snippets -BUILD_DEPENDS= p5-Text-Context-EitherSide>=1.1:textproc/p5-Text-Context-EitherSide \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Text-Context-EitherSide>=1.1:textproc/p5-Text-Context-EitherSide \ p5-UNIVERSAL-require>=0.03:devel/p5-UNIVERSAL-require \ p5-HTML-Parser>0:www/p5-HTML-Parser -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-Text-Decorator/Makefile b/textproc/p5-Text-Decorator/Makefile index f6a44e07d77..532939064b2 100644 --- a/textproc/p5-Text-Decorator/Makefile +++ b/textproc/p5-Text-Decorator/Makefile @@ -14,10 +14,10 @@ COMMENT= Apply a chain of filters to text LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Template-Toolkit>=0:www/p5-Template-Toolkit \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Template-Toolkit>=0:www/p5-Template-Toolkit \ p5-UNIVERSAL-require>=0:devel/p5-UNIVERSAL-require \ p5-URI-Find>=0:textproc/p5-URI-Find -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= modbuild diff --git a/textproc/p5-Text-Diff-HTML/Makefile b/textproc/p5-Text-Diff-HTML/Makefile index 9fd3030d872..6543d0e9589 100644 --- a/textproc/p5-Text-Diff-HTML/Makefile +++ b/textproc/p5-Text-Diff-HTML/Makefile @@ -14,9 +14,9 @@ COMMENT= Text::Diff::HTML - XHTML format for Text::Diff::Unified LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Text-Diff>=0:textproc/p5-Text-Diff \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Text-Diff>=0:textproc/p5-Text-Diff \ p5-HTML-Parser>=0:www/p5-HTML-Parser -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= modbuild diff --git a/textproc/p5-Text-Emoticon-GoogleTalk/Makefile b/textproc/p5-Text-Emoticon-GoogleTalk/Makefile index 78d2dfff3c4..db702fea312 100644 --- a/textproc/p5-Text-Emoticon-GoogleTalk/Makefile +++ b/textproc/p5-Text-Emoticon-GoogleTalk/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Emoticon filter of GoogleTalk -BUILD_DEPENDS= p5-Text-Emoticon>=0:textproc/p5-Text-Emoticon -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Text-Emoticon>=0:textproc/p5-Text-Emoticon USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-Text-Emoticon-MSN/Makefile b/textproc/p5-Text-Emoticon-MSN/Makefile index 3b492984846..19a42e339c2 100644 --- a/textproc/p5-Text-Emoticon-MSN/Makefile +++ b/textproc/p5-Text-Emoticon-MSN/Makefile @@ -13,8 +13,8 @@ COMMENT= Emoticon filter of MSN Messenger LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Text-Emoticon>=0.02:textproc/p5-Text-Emoticon -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Text-Emoticon>=0.02:textproc/p5-Text-Emoticon USE_PERL5= configure USES= perl5 diff --git a/textproc/p5-Text-Emoticon/Makefile b/textproc/p5-Text-Emoticon/Makefile index f4008a100b5..dd26f72d89d 100644 --- a/textproc/p5-Text-Emoticon/Makefile +++ b/textproc/p5-Text-Emoticon/Makefile @@ -14,8 +14,8 @@ COMMENT= Factory class for Yahoo! and MSN emoticons LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-UNIVERSAL-require>=0:devel/p5-UNIVERSAL-require -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-UNIVERSAL-require>=0:devel/p5-UNIVERSAL-require USE_PERL5= configure USES= perl5 diff --git a/textproc/p5-Text-EtText/Makefile b/textproc/p5-Text-EtText/Makefile index 021cc0b52e8..a781ac3fbfc 100644 --- a/textproc/p5-Text-EtText/Makefile +++ b/textproc/p5-Text-EtText/Makefile @@ -14,8 +14,8 @@ COMMENT= Simple plain-text to HTML converter LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-HTML-Parser>=0:www/p5-HTML-Parser -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTML-Parser>=0:www/p5-HTML-Parser USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-Text-Extract-Word/Makefile b/textproc/p5-Text-Extract-Word/Makefile index c139963852a..e37755005e8 100644 --- a/textproc/p5-Text-Extract-Word/Makefile +++ b/textproc/p5-Text-Extract-Word/Makefile @@ -13,8 +13,8 @@ COMMENT= Simple module for extracting the text from a Microsoft Word file LICENSE= ART20 -BUILD_DEPENDS= p5-OLE-Storage_Lite>0:devel/p5-OLE-Storage_Lite -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-OLE-Storage_Lite>0:devel/p5-OLE-Storage_Lite USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-Text-FixedLength-Extra/Makefile b/textproc/p5-Text-FixedLength-Extra/Makefile index 47c1bee87e4..0c584ab7362 100644 --- a/textproc/p5-Text-FixedLength-Extra/Makefile +++ b/textproc/p5-Text-FixedLength-Extra/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Various niceties for p5-Text-FixedLength lovers -BUILD_DEPENDS= p5-Text-FixedLength>=0:textproc/p5-Text-FixedLength -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Text-FixedLength>=0:textproc/p5-Text-FixedLength USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-Text-Flow/Makefile b/textproc/p5-Text-Flow/Makefile index fcd6c035c44..17220e39e54 100644 --- a/textproc/p5-Text-Flow/Makefile +++ b/textproc/p5-Text-Flow/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Flexible text flowing and word wrapping for not just ASCII output -BUILD_DEPENDS= p5-Moose>=0.45:devel/p5-Moose -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Moose>=0.45:devel/p5-Moose TEST_DEPENDS= p5-Test-Exception>=0:devel/p5-Test-Exception \ p5-Test-LongString>=0:devel/p5-Test-LongString diff --git a/textproc/p5-Text-Graphics/Makefile b/textproc/p5-Text-Graphics/Makefile index b7a2671ffb2..f7d0cd50642 100644 --- a/textproc/p5-Text-Graphics/Makefile +++ b/textproc/p5-Text-Graphics/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Text graphics rendering toolkit -BUILD_DEPENDS= p5-Text-Wrapper>=0:textproc/p5-Text-Wrapper -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Text-Wrapper>=0:textproc/p5-Text-Wrapper USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-Text-Haml/Makefile b/textproc/p5-Text-Haml/Makefile index ab8bec4436e..f18ecaa20e2 100644 --- a/textproc/p5-Text-Haml/Makefile +++ b/textproc/p5-Text-Haml/Makefile @@ -11,8 +11,8 @@ COMMENT= Haml-parsing Perl extension LICENSE= ART20 -BUILD_DEPENDS= p5-URI>0:net/p5-URI -RUN_DEPENDS= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-URI>0:net/p5-URI TEST_DEPENDS= p5-Data-Section-Simple>=0:devel/p5-Data-Section-Simple USES= perl5 diff --git a/textproc/p5-Text-Hatena/Makefile b/textproc/p5-Text-Hatena/Makefile index ed4d2c1afbd..0b98a1b2fe9 100644 --- a/textproc/p5-Text-Hatena/Makefile +++ b/textproc/p5-Text-Hatena/Makefile @@ -11,10 +11,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Perl extension for formatting text with Hatena Style -BUILD_DEPENDS= p5-Class-Data-Inheritable>=0:devel/p5-Class-Data-Inheritable \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Data-Inheritable>=0:devel/p5-Class-Data-Inheritable \ p5-Parse-RecDescent>=1.94:devel/p5-Parse-RecDescent \ p5-Regexp-Assemble>=0.28:devel/p5-Regexp-Assemble -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Base>=0:devel/p5-Test-Base USES= perl5 diff --git a/textproc/p5-Text-Language-Guess/Makefile b/textproc/p5-Text-Language-Guess/Makefile index b1182f66643..0c671f014ce 100644 --- a/textproc/p5-Text-Language-Guess/Makefile +++ b/textproc/p5-Text-Language-Guess/Makefile @@ -12,10 +12,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= markun@onohara.to COMMENT= Trained module to guess a document's language -BUILD_DEPENDS= p5-Log-Log4perl>=1.0:devel/p5-Log-Log4perl \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Log-Log4perl>=1.0:devel/p5-Log-Log4perl \ p5-Text-ExtractWords>=0:textproc/p5-Text-ExtractWords \ p5-Lingua-StopWords>=0:textproc/p5-Lingua-StopWords -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-Text-Markdown/Makefile b/textproc/p5-Text-Markdown/Makefile index 45ad9b21c6c..d3c5f829774 100644 --- a/textproc/p5-Text-Markdown/Makefile +++ b/textproc/p5-Text-Markdown/Makefile @@ -13,8 +13,8 @@ COMMENT= Markdown Perl5 module LICENSE= BSD3CLAUSE -BUILD_DEPENDS= p5-List-MoreUtils>=0:lang/p5-List-MoreUtils -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-List-MoreUtils>=0:lang/p5-List-MoreUtils TEST_DEPENDS= p5-Test-Differences>=0:devel/p5-Test-Differences \ p5-Test-Exception>=0:devel/p5-Test-Exception diff --git a/textproc/p5-Text-MultiMarkdown/Makefile b/textproc/p5-Text-MultiMarkdown/Makefile index 0a5bb6ad799..084f1e8f6d9 100644 --- a/textproc/p5-Text-MultiMarkdown/Makefile +++ b/textproc/p5-Text-MultiMarkdown/Makefile @@ -14,9 +14,9 @@ COMMENT= Convert MultiMarkdown syntax to (X)HTML LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/License.text -BUILD_DEPENDS= p5-HTML-Parser>0:www/p5-HTML-Parser \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTML-Parser>0:www/p5-HTML-Parser \ p5-Text-Markdown>=1.0.26:textproc/p5-Text-Markdown -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-List-MoreUtils>=0:lang/p5-List-MoreUtils \ p5-Test-Exception>=0:devel/p5-Test-Exception diff --git a/textproc/p5-Text-Ngram/Makefile b/textproc/p5-Text-Ngram/Makefile index bb5448cc5b9..85d4ecf040a 100644 --- a/textproc/p5-Text-Ngram/Makefile +++ b/textproc/p5-Text-Ngram/Makefile @@ -14,8 +14,8 @@ COMMENT= Perl module for n-gram analysis LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Unicode-CaseFold>=1.00:textproc/p5-Unicode-CaseFold -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Unicode-CaseFold>=1.00:textproc/p5-Unicode-CaseFold USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-Text-Padding/Makefile b/textproc/p5-Text-Padding/Makefile index 50b2b854581..b2474353063 100644 --- a/textproc/p5-Text-Padding/Makefile +++ b/textproc/p5-Text-Padding/Makefile @@ -13,10 +13,10 @@ COMMENT= Simple way of formatting a text LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Moose>=0:devel/p5-Moose \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Moose>=0:devel/p5-Moose \ p5-MooseX-Has-Sugar>=0:devel/p5-MooseX-Has-Sugar \ p5-Text-Truncate>=0:textproc/p5-Text-Truncate -RUN_DEPENDS:= ${BUILD_DEPENDS} USE_PERL5= modbuild USES= perl5 diff --git a/textproc/p5-Text-ParagraphDiff/Makefile b/textproc/p5-Text-ParagraphDiff/Makefile index 08eca2c44fa..bd84963ea59 100644 --- a/textproc/p5-Text-ParagraphDiff/Makefile +++ b/textproc/p5-Text-ParagraphDiff/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Visual difference for paragraphed text -BUILD_DEPENDS= p5-Algorithm-Diff>=0:devel/p5-Algorithm-Diff \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Algorithm-Diff>=0:devel/p5-Algorithm-Diff \ p5-HTML-Parser>=0:www/p5-HTML-Parser -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 shebangfix SHEBANG_FILES= bin/tdiff diff --git a/textproc/p5-Text-Prefix-XS/Makefile b/textproc/p5-Text-Prefix-XS/Makefile index d73dfcb8d97..aef3f53d7ab 100644 --- a/textproc/p5-Text-Prefix-XS/Makefile +++ b/textproc/p5-Text-Prefix-XS/Makefile @@ -14,8 +14,8 @@ COMMENT= Fast prefix searching LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Digest-SHA1>=1:security/p5-Digest-SHA1 -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Digest-SHA1>=1:security/p5-Digest-SHA1 TEST_DEPENDS= p5-Test-Deep>=0.108:devel/p5-Test-Deep USE_PERL5= configure diff --git a/textproc/p5-Text-Quote/Makefile b/textproc/p5-Text-Quote/Makefile index d8ec4d6b4cf..fb11622a5ca 100644 --- a/textproc/p5-Text-Quote/Makefile +++ b/textproc/p5-Text-Quote/Makefile @@ -14,8 +14,8 @@ COMMENT= Quotes strings as required for perl to eval them back correctly LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Carp-Assert>=0.13:devel/p5-Carp-Assert -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Carp-Assert>=0.13:devel/p5-Carp-Assert USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-Text-RecordParser/Makefile b/textproc/p5-Text-RecordParser/Makefile index 8aa70ab4f66..790333ae46c 100644 --- a/textproc/p5-Text-RecordParser/Makefile +++ b/textproc/p5-Text-RecordParser/Makefile @@ -11,13 +11,13 @@ COMMENT= Read record-oriented files LICENSE= GPLv2 -BUILD_DEPENDS= p5-Class-Accessor>=0:devel/p5-Class-Accessor \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Accessor>=0:devel/p5-Class-Accessor \ p5-IO-stringy>=0:devel/p5-IO-stringy \ p5-List-MoreUtils>=0:lang/p5-List-MoreUtils \ p5-Readonly>=0:devel/p5-Readonly \ p5-Text-Autoformat>=0:textproc/p5-Text-Autoformat \ p5-Text-TabularDisplay>=1.22:textproc/p5-Text-TabularDisplay -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Exception>=0:devel/p5-Test-Exception NO_ARCH= yes diff --git a/textproc/p5-Text-Table-Manifold/Makefile b/textproc/p5-Text-Table-Manifold/Makefile index 26eed9bdb5d..f0b0a2f2915 100644 --- a/textproc/p5-Text-Table-Manifold/Makefile +++ b/textproc/p5-Text-Table-Manifold/Makefile @@ -13,14 +13,14 @@ COMMENT= Render tables in manifold formats LICENSE= ART20 LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Const-Exporter>=0.2.3:devel/p5-Const-Exporter \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Const-Exporter>=0.2.3:devel/p5-Const-Exporter \ p5-HTML-Entities-Interpolate>=1.05:textproc/p5-HTML-Entities-Interpolate \ p5-List-AllUtils>=0.08:devel/p5-List-AllUtils \ p5-Module-Runtime>=0.014:devel/p5-Module-Runtime \ p5-Moo>=1.006000:devel/p5-Moo \ p5-Type-Tiny>=1.000004:devel/p5-Type-Tiny \ p5-Unicode-LineBreak>=2013.10:textproc/p5-Unicode-LineBreak -RUN_DEPENDS:= ${BUILD_DEPENDS} USE_PERL5= configure USES= perl5 tar:tgz diff --git a/textproc/p5-Text-TestBase/Makefile b/textproc/p5-Text-TestBase/Makefile index a6310568467..240cbfe86ea 100644 --- a/textproc/p5-Text-TestBase/Makefile +++ b/textproc/p5-Text-TestBase/Makefile @@ -13,8 +13,8 @@ COMMENT= Parser for Test::Base format LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Class-Accessor-Lite>=0.05:devel/p5-Class-Accessor-Lite -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Accessor-Lite>=0.05:devel/p5-Class-Accessor-Lite TEST_DEPENDS= p5-Test-Requires>0:devel/p5-Test-Requires NO_ARCH= yes diff --git a/textproc/p5-Text-Trac/Makefile b/textproc/p5-Text-Trac/Makefile index 9d595de588f..25e4ae17058 100644 --- a/textproc/p5-Text-Trac/Makefile +++ b/textproc/p5-Text-Trac/Makefile @@ -13,14 +13,14 @@ COMMENT= Perl extension for formatting text with Trac Wiki Style LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Class-Accessor>=0:devel/p5-Class-Accessor \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Accessor>=0:devel/p5-Class-Accessor \ p5-Class-Data-Inheritable>=0:devel/p5-Class-Data-Inheritable \ p5-HTML-Parser>=0:www/p5-HTML-Parser \ p5-List-MoreUtils>=0:lang/p5-List-MoreUtils \ p5-Tie-IxHash>=0:devel/p5-Tie-IxHash \ p5-Path-Tiny>=0:devel/p5-Path-Tiny \ p5-UNIVERSAL-require>=0:devel/p5-UNIVERSAL-require -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Base>=0:devel/p5-Test-Base USES= perl5 diff --git a/textproc/p5-Text-WikiFormat/Makefile b/textproc/p5-Text-WikiFormat/Makefile index 3ac910b8b6e..a211e30596e 100644 --- a/textproc/p5-Text-WikiFormat/Makefile +++ b/textproc/p5-Text-WikiFormat/Makefile @@ -14,8 +14,8 @@ COMMENT= Module for translating Wiki formatted text into other formats LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-URI>=0.01:net/p5-URI -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-URI>=0.01:net/p5-URI USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-Text-WordDiff/Makefile b/textproc/p5-Text-WordDiff/Makefile index ba57d428ff4..0f6be95c2a4 100644 --- a/textproc/p5-Text-WordDiff/Makefile +++ b/textproc/p5-Text-WordDiff/Makefile @@ -13,9 +13,9 @@ COMMENT= Track changes between documents LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Algorithm-Diff>=0:devel/p5-Algorithm-Diff \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Algorithm-Diff>=0:devel/p5-Algorithm-Diff \ p5-HTML-Parser>=0:www/p5-HTML-Parser -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= modbuild diff --git a/textproc/p5-Text-WrapI18N/Makefile b/textproc/p5-Text-WrapI18N/Makefile index 9450b2dbf05..a6d281e74cb 100644 --- a/textproc/p5-Text-WrapI18N/Makefile +++ b/textproc/p5-Text-WrapI18N/Makefile @@ -14,8 +14,8 @@ COMMENT= Line wrapping module LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Text-CharWidth>=0.02:textproc/p5-Text-CharWidth -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Text-CharWidth>=0.02:textproc/p5-Text-CharWidth USE_PERL5= configure USES= perl5 diff --git a/textproc/p5-Text-vCard/Makefile b/textproc/p5-Text-vCard/Makefile index 1ace18d23bd..7657c482d3a 100644 --- a/textproc/p5-Text-vCard/Makefile +++ b/textproc/p5-Text-vCard/Makefile @@ -13,13 +13,13 @@ COMMENT= Package to parse, edit and create multiple vCards (RFC 2426) LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-File-Slurp>=0:devel/p5-File-Slurp \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-File-Slurp>=0:devel/p5-File-Slurp \ p5-Moo>=0:devel/p5-Moo \ p5-Path-Tiny>=0:devel/p5-Path-Tiny \ p5-Text-vFile-asData>=0:devel/p5-Text-vFile-asData \ p5-Unicode-LineBreak>=0:textproc/p5-Unicode-LineBreak \ p5-URI>=0:net/p5-URI -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Directory-Scratch>=0:devel/p5-Directory-Scratch \ p5-Test-Most>=0:devel/p5-Test-Most diff --git a/textproc/p5-Tk-Pod/Makefile b/textproc/p5-Tk-Pod/Makefile index c8ab5030bc7..e28af3571b5 100644 --- a/textproc/p5-Tk-Pod/Makefile +++ b/textproc/p5-Tk-Pod/Makefile @@ -13,8 +13,8 @@ COMMENT= Simple Pod browser with hypertext capabilities in a Toplevel widget LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Tk>=800.004:x11-toolkits/p5-Tk -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Tk>=800.004:x11-toolkits/p5-Tk NO_ARCH= yes USE_PERL5= configure diff --git a/textproc/p5-Tk-XMLViewer/Makefile b/textproc/p5-Tk-XMLViewer/Makefile index fc69fdf41cf..f33bb4f6c4c 100644 --- a/textproc/p5-Tk-XMLViewer/Makefile +++ b/textproc/p5-Tk-XMLViewer/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Tk::XMLViewer - Tk widget to display XML -BUILD_DEPENDS= p5-Tk>=0:x11-toolkits/p5-Tk \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Tk>=0:x11-toolkits/p5-Tk \ p5-XML-Parser>=0:textproc/p5-XML-Parser -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/textproc/p5-UML-Class-Simple/Makefile b/textproc/p5-UML-Class-Simple/Makefile index b0e58c605db..f7592b3960d 100644 --- a/textproc/p5-UML-Class-Simple/Makefile +++ b/textproc/p5-UML-Class-Simple/Makefile @@ -12,7 +12,8 @@ COMMENT= Render simple UML class diagrams, by loading the code LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Class-Inspector>=1.16:devel/p5-Class-Inspector \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Inspector>=1.16:devel/p5-Class-Inspector \ p5-File-Slurp>0:devel/p5-File-Slurp \ p5-IPC-Run3>0:devel/p5-IPC-Run3 \ p5-List-MoreUtils>0:lang/p5-List-MoreUtils \ @@ -21,7 +22,6 @@ BUILD_DEPENDS= p5-Class-Inspector>=1.16:devel/p5-Class-Inspector \ p5-XML-LibXML>0:textproc/p5-XML-LibXML \ p5-YAML-Syck>0:textproc/p5-YAML-Syck \ dot:graphics/graphviz -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/textproc/p5-UML-Sequence/Makefile b/textproc/p5-UML-Sequence/Makefile index a71933f39dd..dfcca4817d0 100644 --- a/textproc/p5-UML-Sequence/Makefile +++ b/textproc/p5-UML-Sequence/Makefile @@ -11,10 +11,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Perl module that produce UML sequence diagrams -BUILD_DEPENDS= p5-XML-DOM>=1.25:textproc/p5-XML-DOM \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-XML-DOM>=1.25:textproc/p5-XML-DOM \ p5-GD>=2.30:graphics/p5-GD \ p5-GD-TextUtil>=0.86:graphics/p5-GD-TextUtil -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-UML-State/Makefile b/textproc/p5-UML-State/Makefile index 28ad17c187e..787b5558652 100644 --- a/textproc/p5-UML-State/Makefile +++ b/textproc/p5-UML-State/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Perl module that produce simple UML state diagrams -BUILD_DEPENDS= p5-XML-DOM>=0:textproc/p5-XML-DOM -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-XML-DOM>=0:textproc/p5-XML-DOM USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-URI-Find/Makefile b/textproc/p5-URI-Find/Makefile index 7bbcc0b4804..0555d4a6045 100644 --- a/textproc/p5-URI-Find/Makefile +++ b/textproc/p5-URI-Find/Makefile @@ -14,8 +14,8 @@ COMMENT= Perl module to find URIs in arbitrary text LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-URI>=1:net/p5-URI -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-URI>=1:net/p5-URI USES= perl5 USE_PERL5= modbuild diff --git a/textproc/p5-Unicode-Escape/Makefile b/textproc/p5-Unicode-Escape/Makefile index 039168f500a..85a48d1daa0 100644 --- a/textproc/p5-Unicode-Escape/Makefile +++ b/textproc/p5-Unicode-Escape/Makefile @@ -14,8 +14,8 @@ COMMENT= Escape and unescape Unicode characters other than ASCII LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Unicode-String>=0:converters/p5-Unicode-String -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Unicode-String>=0:converters/p5-Unicode-String USES= perl5 USE_PERL5= modbuild diff --git a/textproc/p5-Unicode-LineBreak/Makefile b/textproc/p5-Unicode-LineBreak/Makefile index e9132fc1f52..90ad684e851 100644 --- a/textproc/p5-Unicode-LineBreak/Makefile +++ b/textproc/p5-Unicode-LineBreak/Makefile @@ -15,8 +15,8 @@ COMMENT= Unicode-LineBreak package LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-MIME-Charset>=1.006.2:mail/p5-MIME-Charset -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-MIME-Charset>=1.006.2:mail/p5-MIME-Charset MAKE_JOBS_UNSAFE= yes diff --git a/textproc/p5-Validator-Custom/Makefile b/textproc/p5-Validator-Custom/Makefile index f0a8e07eeff..26e204b83f5 100644 --- a/textproc/p5-Validator-Custom/Makefile +++ b/textproc/p5-Validator-Custom/Makefile @@ -14,8 +14,8 @@ COMMENT= Validator::Custom for simple data validation LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Object-Simple>=3.0621:devel/p5-Object-Simple -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Object-Simple>=3.0621:devel/p5-Object-Simple TEST_DEPENDS= p5-JSON>=2:converters/p5-JSON \ p5-Test-Pod>=1.22:devel/p5-Test-Pod diff --git a/textproc/p5-Version-Next/Makefile b/textproc/p5-Version-Next/Makefile index b336a427f4d..159989a06ed 100644 --- a/textproc/p5-Version-Next/Makefile +++ b/textproc/p5-Version-Next/Makefile @@ -12,8 +12,8 @@ COMMENT= Increment module version numbers simply and correctly LICENSE= APACHE20 -BUILD_DEPENDS= p5-Sub-Exporter>=0:devel/p5-Sub-Exporter -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Sub-Exporter>=0:devel/p5-Sub-Exporter USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-Vroom/Makefile b/textproc/p5-Vroom/Makefile index 8193bfbc35a..bbe47134245 100644 --- a/textproc/p5-Vroom/Makefile +++ b/textproc/p5-Vroom/Makefile @@ -15,12 +15,12 @@ COMMENT= Slide Shows in Vim LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-File-HomeDir>=0:devel/p5-File-HomeDir \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-File-HomeDir>=0:devel/p5-File-HomeDir \ p5-IO-All>=0:devel/p5-IO-All \ p5-Template-Toolkit-Simple>=0:www/p5-Template-Toolkit-Simple \ p5-Term-Size>=0:devel/p5-Term-Size \ p5-YAML-LibYAML>=0:textproc/p5-YAML-LibYAML -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-WDDX/Makefile b/textproc/p5-WDDX/Makefile index d6debc8847b..62b4f020609 100644 --- a/textproc/p5-WDDX/Makefile +++ b/textproc/p5-WDDX/Makefile @@ -12,8 +12,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Perl module to parse WDDX Packets -BUILD_DEPENDS= p5-XML-Parser>=0:textproc/p5-XML-Parser -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-XML-Parser>=0:textproc/p5-XML-Parser USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-WWW-Google-SiteMap/Makefile b/textproc/p5-WWW-Google-SiteMap/Makefile index 0f1d2606c1c..0ec10ec7792 100644 --- a/textproc/p5-WWW-Google-SiteMap/Makefile +++ b/textproc/p5-WWW-Google-SiteMap/Makefile @@ -15,9 +15,9 @@ COMMENT= Perl extension for managing Google SiteMaps LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-XML-Twig>=0:textproc/p5-XML-Twig \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-XML-Twig>=0:textproc/p5-XML-Twig \ p5-URI>=0:net/p5-URI -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-WordNet-Similarity/Makefile b/textproc/p5-WordNet-Similarity/Makefile index 8ad06cb6bd2..15e1ab9f762 100644 --- a/textproc/p5-WordNet-Similarity/Makefile +++ b/textproc/p5-WordNet-Similarity/Makefile @@ -13,10 +13,10 @@ COMMENT= Modules/CLI to determine semantic relatedness using the WordNet LICENSE= GPLv2 GPLv3 LICENSE_COMB= dual -BUILD_DEPENDS= p5-Digest-SHA1>=0:security/p5-Digest-SHA1 \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Digest-SHA1>=0:security/p5-Digest-SHA1 \ p5-Text-Similarity>=0.10:textproc/p5-Text-Similarity \ p5-WordNet-QueryData>=1.49:textproc/p5-WordNet-QueryData -RUN_DEPENDS:= ${BUILD_DEPENDS} WNHOME?= ${LOCALBASE}/share/WordNet diff --git a/textproc/p5-XML-Atom-Ext-OpenSearch/Makefile b/textproc/p5-XML-Atom-Ext-OpenSearch/Makefile index f651bbe27d6..1188906bf90 100644 --- a/textproc/p5-XML-Atom-Ext-OpenSearch/Makefile +++ b/textproc/p5-XML-Atom-Ext-OpenSearch/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= culot@FreeBSD.org COMMENT= XML::Atom extension for OpenSearch data -BUILD_DEPENDS= p5-XML-Atom>=0:textproc/p5-XML-Atom -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-XML-Atom>=0:textproc/p5-XML-Atom USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-XML-Atom-Filter/Makefile b/textproc/p5-XML-Atom-Filter/Makefile index 216c9fc5715..f2044d45dfb 100644 --- a/textproc/p5-XML-Atom-Filter/Makefile +++ b/textproc/p5-XML-Atom-Filter/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Easy creation of command line Atom processing tools -BUILD_DEPENDS= p5-XML-Atom>=0:textproc/p5-XML-Atom -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-XML-Atom>=0:textproc/p5-XML-Atom USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-XML-Atom-Stream/Makefile b/textproc/p5-XML-Atom-Stream/Makefile index e62a91f04df..fd0bad58800 100644 --- a/textproc/p5-XML-Atom-Stream/Makefile +++ b/textproc/p5-XML-Atom-Stream/Makefile @@ -11,12 +11,12 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Client interface for AtomStream -BUILD_DEPENDS= p5-libwww>=0:www/p5-libwww \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-libwww>=0:www/p5-libwww \ p5-XML-SAX>=0.12:textproc/p5-XML-SAX \ p5-XML-Handler-Trees>=0.02:textproc/p5-XML-Handler-Trees \ p5-XML-Atom>=0.20:textproc/p5-XML-Atom \ p5-XML-LibXML>=1.59:textproc/p5-XML-LibXML -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-XML-Atom-Syndication/Makefile b/textproc/p5-XML-Atom-Syndication/Makefile index 5ecf2835183..b5b64bfb4ec 100644 --- a/textproc/p5-XML-Atom-Syndication/Makefile +++ b/textproc/p5-XML-Atom-Syndication/Makefile @@ -13,10 +13,10 @@ COMMENT= Simple lightweight client for consuming Atom syndication feeds LICENSE= ART10 -BUILD_DEPENDS= p5-Class-ErrorHandler>=0:devel/p5-Class-ErrorHandler \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-ErrorHandler>=0:devel/p5-Class-ErrorHandler \ p5-XML-Elemental>=2:textproc/p5-XML-Elemental \ p5-XML-Writer>=0.6:textproc/p5-XML-Writer -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/textproc/p5-XML-Atom/Makefile b/textproc/p5-XML-Atom/Makefile index 502c386a2d7..485b756b553 100644 --- a/textproc/p5-XML-Atom/Makefile +++ b/textproc/p5-XML-Atom/Makefile @@ -14,7 +14,8 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Class-Data-Inheritable>=0:devel/p5-Class-Data-Inheritable \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Data-Inheritable>=0:devel/p5-Class-Data-Inheritable \ p5-DateTime>=0:devel/p5-DateTime \ p5-DateTime-TimeZone>=0:devel/p5-DateTime-TimeZone \ p5-Digest-SHA1>=0:security/p5-Digest-SHA1 \ @@ -24,7 +25,6 @@ BUILD_DEPENDS= p5-Class-Data-Inheritable>=0:devel/p5-Class-Data-Inheritable \ p5-XML-LibXML>=1.69:textproc/p5-XML-LibXML \ p5-XML-XPath>=0:textproc/p5-XML-XPath \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/textproc/p5-XML-Canonical/Makefile b/textproc/p5-XML-Canonical/Makefile index 62abda2b9b4..e58a16a2cfd 100644 --- a/textproc/p5-XML-Canonical/Makefile +++ b/textproc/p5-XML-Canonical/Makefile @@ -14,9 +14,9 @@ COMMENT= Perl Implementation of Canonical XML LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-XML-GDOME>=0:textproc/p5-XML-GDOME +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-XML-GDOME>=0:textproc/p5-XML-GDOME LIB_DEPENDS= libgdome.so:textproc/gdome2 -RUN_DEPENDS:= ${BUILD_DEPENDS} USE_PERL5= configure USES= perl5 pkgconfig diff --git a/textproc/p5-XML-Catalog/Makefile b/textproc/p5-XML-Catalog/Makefile index 07d6e73496f..27a65ebba72 100644 --- a/textproc/p5-XML-Catalog/Makefile +++ b/textproc/p5-XML-Catalog/Makefile @@ -15,11 +15,11 @@ COMMENT= Resolve public identifiers and remap system identifiers LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-URI>=0:net/p5-URI \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-URI>=0:net/p5-URI \ p5-XML-Parser>=0:textproc/p5-XML-Parser \ p5-Text-ParseWords>0:textproc/p5-Text-ParseWords \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= dos2unix perl5 USE_PERL5= configure diff --git a/textproc/p5-XML-CommonNS/Makefile b/textproc/p5-XML-CommonNS/Makefile index 698ba7195ca..2eebbd5cab8 100644 --- a/textproc/p5-XML-CommonNS/Makefile +++ b/textproc/p5-XML-CommonNS/Makefile @@ -14,8 +14,8 @@ COMMENT= List of commonly used namespaces LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-XML-NamespaceFactory>=0:textproc/p5-XML-NamespaceFactory -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-XML-NamespaceFactory>=0:textproc/p5-XML-NamespaceFactory USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-XML-Compile-Cache/Makefile b/textproc/p5-XML-Compile-Cache/Makefile index 589665d755f..3c562217e85 100644 --- a/textproc/p5-XML-Compile-Cache/Makefile +++ b/textproc/p5-XML-Compile-Cache/Makefile @@ -13,10 +13,10 @@ COMMENT= Cache Compiled XML Translators LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Log-Report>=1.26:devel/p5-Log-Report \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Log-Report>=1.26:devel/p5-Log-Report \ p5-XML-Compile>=1.60:textproc/p5-XML-Compile \ p5-XML-LibXML-Simple>=0.95:textproc/p5-XML-LibXML-Simple -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-XML-Compile-Tester>=0.02:devel/p5-XML-Compile-Tester USES= perl5 diff --git a/textproc/p5-XML-Compile-Dumper/Makefile b/textproc/p5-XML-Compile-Dumper/Makefile index 3480a6a5cc9..1edfa6f72c1 100644 --- a/textproc/p5-XML-Compile-Dumper/Makefile +++ b/textproc/p5-XML-Compile-Dumper/Makefile @@ -14,13 +14,13 @@ COMMENT= Dump Compiled XML Translators LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Data-Dump-Streamer>=2.08:devel/p5-Data-Dump-Streamer \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Data-Dump-Streamer>=2.08:devel/p5-Data-Dump-Streamer \ p5-Log-Report>=0.19:devel/p5-Log-Report \ p5-Test-Pod>=1.00:devel/p5-Test-Pod \ p5-XML-Compile-Tester>=0.02:devel/p5-XML-Compile-Tester \ p5-XML-Compile>=1.1:textproc/p5-XML-Compile \ p5-XML-LibXML-Simple>=0.13:textproc/p5-XML-LibXML-Simple -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-XML-Compile/Makefile b/textproc/p5-XML-Compile/Makefile index b9b58495e5a..d1b0cb8feb9 100644 --- a/textproc/p5-XML-Compile/Makefile +++ b/textproc/p5-XML-Compile/Makefile @@ -13,10 +13,10 @@ COMMENT= Compilation based XML processing LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Log-Report>=1.20:devel/p5-Log-Report \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Log-Report>=1.20:devel/p5-Log-Report \ p5-Types-Serialiser>=0:devel/p5-Types-Serialiser \ p5-XML-LibXML>=2.0107:textproc/p5-XML-LibXML -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Deep>=0.095:devel/p5-Test-Deep \ p5-XML-Compile-Tester>=0.90:devel/p5-XML-Compile-Tester diff --git a/textproc/p5-XML-DBMS/Makefile b/textproc/p5-XML-DBMS/Makefile index d1cda9d8761..e3e577d247e 100644 --- a/textproc/p5-XML-DBMS/Makefile +++ b/textproc/p5-XML-DBMS/Makefile @@ -12,11 +12,11 @@ DISTNAME= perl-${PORTNAME:tl}-${PORTVERSION} MAINTAINER= bofh@FreeBSD.org COMMENT= Perl port of Java package XML-DBMS v1.0 -BUILD_DEPENDS= p5-libxml>=0:textproc/p5-libxml \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-libxml>=0:textproc/p5-libxml \ p5-XML-LibXML>=0:textproc/p5-XML-LibXML \ p5-TimeDate>=0:devel/p5-TimeDate \ p5-DBI>=0:databases/p5-DBI -RUN_DEPENDS:= ${BUILD_DEPENDS} OPTIONS_DEFINE= EXAMPLES diff --git a/textproc/p5-XML-DOM-XPath/Makefile b/textproc/p5-XML-DOM-XPath/Makefile index 881d6984dee..fca7ab1f7e4 100644 --- a/textproc/p5-XML-DOM-XPath/Makefile +++ b/textproc/p5-XML-DOM-XPath/Makefile @@ -14,9 +14,9 @@ COMMENT= Adds XPath support to XML::DOM, using XML::XPath engine LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-XML-DOM>=0:textproc/p5-XML-DOM \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-XML-DOM>=0:textproc/p5-XML-DOM \ p5-XML-XPathEngine>=0:textproc/p5-XML-XPathEngine -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-XML-DOM2/Makefile b/textproc/p5-XML-DOM2/Makefile index 256d9bddc49..856181e799b 100644 --- a/textproc/p5-XML-DOM2/Makefile +++ b/textproc/p5-XML-DOM2/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= DOM controlled, strict XML module for extentable xml objects -BUILD_DEPENDS= p5-XML-SAX>=0:textproc/p5-XML-SAX -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-XML-SAX>=0:textproc/p5-XML-SAX USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-XML-DT/Makefile b/textproc/p5-XML-DT/Makefile index 39f8d163e91..ea417336469 100644 --- a/textproc/p5-XML-DT/Makefile +++ b/textproc/p5-XML-DT/Makefile @@ -11,10 +11,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Perl module for down translation of XML to strings -BUILD_DEPENDS= p5-XML-LibXML>=1.54:textproc/p5-XML-LibXML \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-XML-LibXML>=1.54:textproc/p5-XML-LibXML \ p5-libwww>=1.35:www/p5-libwww \ p5-XML-DTDParser>=2.00:textproc/p5-XML-DTDParser -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-XML-Declare/Makefile b/textproc/p5-XML-Declare/Makefile index ae7300f567e..ed7e464bfaf 100644 --- a/textproc/p5-XML-Declare/Makefile +++ b/textproc/p5-XML-Declare/Makefile @@ -14,8 +14,8 @@ COMMENT= Create XML documents with declaration style LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-XML-LibXML>=1.70:textproc/p5-XML-LibXML -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-XML-LibXML>=1.70:textproc/p5-XML-LibXML TEST_DEPENDS= p5-Test-NoWarnings>=0:devel/p5-Test-NoWarnings \ p5-lib-abs>=0.90:devel/p5-lib-abs \ p5-namespace-autoclean>=0:devel/p5-namespace-autoclean diff --git a/textproc/p5-XML-DifferenceMarkup/Makefile b/textproc/p5-XML-DifferenceMarkup/Makefile index 407f3c37f22..5dd93c02a34 100644 --- a/textproc/p5-XML-DifferenceMarkup/Makefile +++ b/textproc/p5-XML-DifferenceMarkup/Makefile @@ -13,8 +13,8 @@ COMMENT= This module implements an XML diff producing XML output LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-XML-LibXML>=0:textproc/p5-XML-LibXML -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-XML-LibXML>=0:textproc/p5-XML-LibXML LIB_DEPENDS= libdiffmark.so:textproc/diffmark USES= perl5 diff --git a/textproc/p5-XML-Directory/Makefile b/textproc/p5-XML-Directory/Makefile index d878572de4a..0d2ac417c24 100644 --- a/textproc/p5-XML-Directory/Makefile +++ b/textproc/p5-XML-Directory/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Returns a content of directory as XML -BUILD_DEPENDS= p5-RDF-Notation3>=0:textproc/p5-RDF-Notation3 \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-RDF-Notation3>=0:textproc/p5-RDF-Notation3 \ p5-XML-SAX>=0:textproc/p5-XML-SAX -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-XML-Driver-HTML/Makefile b/textproc/p5-XML-Driver-HTML/Makefile index e6e13233c0d..24aa93560af 100644 --- a/textproc/p5-XML-Driver-HTML/Makefile +++ b/textproc/p5-XML-Driver-HTML/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Perl SAX Driver for non wellformed HTML -BUILD_DEPENDS= p5-XML-TreeBuilder>=0:textproc/p5-XML-TreeBuilder \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-XML-TreeBuilder>=0:textproc/p5-XML-TreeBuilder \ p5-XML-Handler-YAWriter>=0:textproc/p5-XML-Handler-YAWriter -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-XML-Dumper/Makefile b/textproc/p5-XML-Dumper/Makefile index d5ef22e4901..01495a1f446 100644 --- a/textproc/p5-XML-Dumper/Makefile +++ b/textproc/p5-XML-Dumper/Makefile @@ -14,8 +14,8 @@ COMMENT= Perl module for dumping Perl objects from/to XML LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-XML-Parser>=0:textproc/p5-XML-Parser -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-XML-Parser>=0:textproc/p5-XML-Parser NO_ARCH= yes USES= perl5 diff --git a/textproc/p5-XML-Elemental/Makefile b/textproc/p5-XML-Elemental/Makefile index 196a1553ae4..edabf75ddb5 100644 --- a/textproc/p5-XML-Elemental/Makefile +++ b/textproc/p5-XML-Elemental/Makefile @@ -13,9 +13,9 @@ COMMENT= Generic classes for simplistic and perlish handling of XML data LICENSE= ART10 -BUILD_DEPENDS= p5-Task-Weaken>=1.02:devel/p5-Task-Weaken \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Task-Weaken>=1.02:devel/p5-Task-Weaken \ p5-XML-SAX>=0:textproc/p5-XML-SAX -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/textproc/p5-XML-Encoding/Makefile b/textproc/p5-XML-Encoding/Makefile index 2014d4555c8..497515d28bd 100644 --- a/textproc/p5-XML-Encoding/Makefile +++ b/textproc/p5-XML-Encoding/Makefile @@ -14,8 +14,8 @@ COMMENT= Perl module for parsing XML encoding maps LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-XML-Parser>=0:textproc/p5-XML-Parser -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-XML-Parser>=0:textproc/p5-XML-Parser USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-XML-Entities/Makefile b/textproc/p5-XML-Entities/Makefile index b3790648a15..8543f0d9fa6 100644 --- a/textproc/p5-XML-Entities/Makefile +++ b/textproc/p5-XML-Entities/Makefile @@ -10,9 +10,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= tj@FreeBSD.org COMMENT= Generic classes for simplistic and perlish handling of XML data -BUILD_DEPENDS= p5-HTML-Parser>=0:www/p5-HTML-Parser \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTML-Parser>=0:www/p5-HTML-Parser \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-XML-Feed/Makefile b/textproc/p5-XML-Feed/Makefile index 5c4857a09ff..568bd6e9e17 100644 --- a/textproc/p5-XML-Feed/Makefile +++ b/textproc/p5-XML-Feed/Makefile @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= XML-Feed -PORTVERSION= 0.53 -PORTREVISION= 1 +PORTVERSION= 0.54 CATEGORIES= textproc perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -14,7 +13,8 @@ COMMENT= Perl5 modules for Syndication feed parser and auto-discovery LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Class-ErrorHandler>=0:devel/p5-Class-ErrorHandler \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-ErrorHandler>=0:devel/p5-Class-ErrorHandler \ p5-DateTime>=0:devel/p5-DateTime \ p5-DateTime-Format-Mail>=0:devel/p5-DateTime-Format-Mail \ p5-DateTime-Format-W3CDTF>=0:devel/p5-DateTime-Format-W3CDTF \ @@ -27,7 +27,6 @@ BUILD_DEPENDS= p5-Class-ErrorHandler>=0:devel/p5-Class-ErrorHandler \ p5-XML-LibXML>=1.66:textproc/p5-XML-LibXML \ p5-XML-RSS>=1.47:textproc/p5-XML-RSS \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-XML-RSS-LibXML>=0.30.04:textproc/p5-XML-RSS-LibXML USES= perl5 diff --git a/textproc/p5-XML-Feed/distinfo b/textproc/p5-XML-Feed/distinfo index 8620ad69ec7..24208196052 100644 --- a/textproc/p5-XML-Feed/distinfo +++ b/textproc/p5-XML-Feed/distinfo @@ -1,2 +1,3 @@ -SHA256 (XML-Feed-0.53.tar.gz) = ece0396db666758f1104908deb67b6e29aa726b02327422fc7134d6e5e31611d -SIZE (XML-Feed-0.53.tar.gz) = 54588 +TIMESTAMP = 1538574960 +SHA256 (XML-Feed-0.54.tar.gz) = 91ad605cb643d50bffb2c57f64b52994761c39cdfb08796011036dd8f889be79 +SIZE (XML-Feed-0.54.tar.gz) = 54466 diff --git a/textproc/p5-XML-FeedPP/Makefile b/textproc/p5-XML-FeedPP/Makefile index 2a503981fbb..c6c662742a9 100644 --- a/textproc/p5-XML-FeedPP/Makefile +++ b/textproc/p5-XML-FeedPP/Makefile @@ -13,8 +13,8 @@ COMMENT= Parse/write/merge/edit RSS/RDF/Atom syndication feeds LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-XML-TreePP>=0.39:textproc/p5-XML-TreePP -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-XML-TreePP>=0.39:textproc/p5-XML-TreePP USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-XML-Filter-BufferText/Makefile b/textproc/p5-XML-Filter-BufferText/Makefile index bb186dcf8f2..213f56e6b73 100644 --- a/textproc/p5-XML-Filter-BufferText/Makefile +++ b/textproc/p5-XML-Filter-BufferText/Makefile @@ -14,8 +14,8 @@ COMMENT= Filter to put all characters() in one event LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-XML-SAX>=0:textproc/p5-XML-SAX -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-XML-SAX>=0:textproc/p5-XML-SAX USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-XML-Filter-DOMFilter-LibXML/Makefile b/textproc/p5-XML-Filter-DOMFilter-LibXML/Makefile index 7d9084b0732..7d4d7e06411 100644 --- a/textproc/p5-XML-Filter-DOMFilter-LibXML/Makefile +++ b/textproc/p5-XML-Filter-DOMFilter-LibXML/Makefile @@ -10,8 +10,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Perl SAX Filter allowing DOM processing of selected subtrees -BUILD_DEPENDS= p5-XML-LibXML>=0:textproc/p5-XML-LibXML -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-XML-LibXML>=0:textproc/p5-XML-LibXML TEST_DEPENDS= p5-XML-SAX-Writer>=0:textproc/p5-XML-SAX-Writer NO_ARCH= yes diff --git a/textproc/p5-XML-Filter-DetectWS/Makefile b/textproc/p5-XML-Filter-DetectWS/Makefile index 36fd1178781..606bf4a2673 100644 --- a/textproc/p5-XML-Filter-DetectWS/Makefile +++ b/textproc/p5-XML-Filter-DetectWS/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= PerlSAX filter that detects ignorable whitespace -BUILD_DEPENDS= p5-XML-Filter-SAXT>=0:textproc/p5-XML-Filter-SAXT -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-XML-Filter-SAXT>=0:textproc/p5-XML-Filter-SAXT USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-XML-Filter-GenericChunk/Makefile b/textproc/p5-XML-Filter-GenericChunk/Makefile index dd458a93912..f7481f3db44 100644 --- a/textproc/p5-XML-Filter-GenericChunk/Makefile +++ b/textproc/p5-XML-Filter-GenericChunk/Makefile @@ -14,9 +14,9 @@ COMMENT= Base Class for SAX Filters parsing WellBallanced Chunks LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-XML-LibXML>=1.4:textproc/p5-XML-LibXML \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-XML-LibXML>=1.4:textproc/p5-XML-LibXML \ p5-XML-SAX>=0:textproc/p5-XML-SAX -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-XML-Filter-Reindent/Makefile b/textproc/p5-XML-Filter-Reindent/Makefile index 3bfee7f0074..199e23370ff 100644 --- a/textproc/p5-XML-Filter-Reindent/Makefile +++ b/textproc/p5-XML-Filter-Reindent/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Reformats whitespace for pretty printing XML -BUILD_DEPENDS= p5-XML-Filter-DetectWS>=0:textproc/p5-XML-Filter-DetectWS -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-XML-Filter-DetectWS>=0:textproc/p5-XML-Filter-DetectWS USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-XML-Filter-SAX1toSAX2/Makefile b/textproc/p5-XML-Filter-SAX1toSAX2/Makefile index e029d98ba0a..41d8dd6ba85 100644 --- a/textproc/p5-XML-Filter-SAX1toSAX2/Makefile +++ b/textproc/p5-XML-Filter-SAX1toSAX2/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Convert SAX1 events to SAX2 -BUILD_DEPENDS= p5-XML-SAX>=0:textproc/p5-XML-SAX \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-XML-SAX>=0:textproc/p5-XML-SAX \ p5-XML-SAX-Writer>=0:textproc/p5-XML-SAX-Writer -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-XML-Filter-XInclude/Makefile b/textproc/p5-XML-Filter-XInclude/Makefile index a617e3f0064..e8846a555ec 100644 --- a/textproc/p5-XML-Filter-XInclude/Makefile +++ b/textproc/p5-XML-Filter-XInclude/Makefile @@ -11,10 +11,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= XInclude as a SAX Filter -BUILD_DEPENDS= p5-URI>=0:net/p5-URI \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-URI>=0:net/p5-URI \ p5-XML-SAX>=0:textproc/p5-XML-SAX \ p5-XML-SAX-Writer>=0:textproc/p5-XML-SAX-Writer -RUN_DEPENDS:= ${BUILD_DEPENDS} MAKE_JOBS_UNSAFE= yes diff --git a/textproc/p5-XML-Filter-XSLT/Makefile b/textproc/p5-XML-Filter-XSLT/Makefile index d6914c43ad2..f09889fd0a5 100644 --- a/textproc/p5-XML-Filter-XSLT/Makefile +++ b/textproc/p5-XML-Filter-XSLT/Makefile @@ -11,10 +11,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= XSLT as a SAX Filter -BUILD_DEPENDS= p5-XML-SAX>=0:textproc/p5-XML-SAX \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-XML-SAX>=0:textproc/p5-XML-SAX \ p5-XML-SAX-Writer>=0:textproc/p5-XML-SAX-Writer \ p5-XML-LibXSLT>=0:textproc/p5-XML-LibXSLT -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-XML-Flow/Makefile b/textproc/p5-XML-Flow/Makefile index 6f55029a909..34b88ca96f9 100644 --- a/textproc/p5-XML-Flow/Makefile +++ b/textproc/p5-XML-Flow/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Store (restore) perl data structures in XML stream -BUILD_DEPENDS= p5-XML-Parser>=0:textproc/p5-XML-Parser \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-XML-Parser>=0:textproc/p5-XML-Parser \ p5-XML-Writer>=0:textproc/p5-XML-Writer -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-XML-GDOME/Makefile b/textproc/p5-XML-GDOME/Makefile index 218d90ba6c4..87d4b5b2dd8 100644 --- a/textproc/p5-XML-GDOME/Makefile +++ b/textproc/p5-XML-GDOME/Makefile @@ -14,10 +14,10 @@ COMMENT= Perl module that provides the DOM Level 2 Core API for XML documents LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-XML-LibXML>=0:textproc/p5-XML-LibXML \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-XML-LibXML>=0:textproc/p5-XML-LibXML \ p5-XML-SAX>=0:textproc/p5-XML-SAX LIB_DEPENDS= libgdome.so:textproc/gdome2 -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 pkgconfig USE_PERL5= configure diff --git a/textproc/p5-XML-Generator-DBI/Makefile b/textproc/p5-XML-Generator-DBI/Makefile index e9109bbad6d..b64258b96bc 100644 --- a/textproc/p5-XML-Generator-DBI/Makefile +++ b/textproc/p5-XML-Generator-DBI/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Generate SAX events from SQL queries -BUILD_DEPENDS= p5-XML-SAX>=0:textproc/p5-XML-SAX -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-XML-SAX>=0:textproc/p5-XML-SAX USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-XML-Generator-PerlData/Makefile b/textproc/p5-XML-Generator-PerlData/Makefile index c23d1f1b7ea..81138e9fa7d 100644 --- a/textproc/p5-XML-Generator-PerlData/Makefile +++ b/textproc/p5-XML-Generator-PerlData/Makefile @@ -13,8 +13,8 @@ COMMENT= Perl extension for generating SAX2 events from Perl data structures LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-XML-SAX-Base>=1.02:textproc/p5-XML-SAX-Base -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-XML-SAX-Base>=1.02:textproc/p5-XML-SAX-Base USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-XML-Grove/Makefile b/textproc/p5-XML-Grove/Makefile index ff06aa335f0..f84c60294ee 100644 --- a/textproc/p5-XML-Grove/Makefile +++ b/textproc/p5-XML-Grove/Makefile @@ -13,8 +13,8 @@ COMMENT= Perl-style XML objects LICENSE= ART10 -BUILD_DEPENDS= p5-libxml>=0:textproc/p5-libxml -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-libxml>=0:textproc/p5-libxml USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-XML-Handler-Dtd2DocBook/Makefile b/textproc/p5-XML-Handler-Dtd2DocBook/Makefile index 30a58c09507..1e8f6940e4d 100644 --- a/textproc/p5-XML-Handler-Dtd2DocBook/Makefile +++ b/textproc/p5-XML-Handler-Dtd2DocBook/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Generate a DocBook documentation from a DTD -BUILD_DEPENDS= p5-libxml>=0:textproc/p5-libxml \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-libxml>=0:textproc/p5-libxml \ p5-XML-Handler-Dtd2Html>=0.41:textproc/p5-XML-Handler-Dtd2Html -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-XML-Handler-Dtd2Html/Makefile b/textproc/p5-XML-Handler-Dtd2Html/Makefile index eb767216e31..0681dac0e11 100644 --- a/textproc/p5-XML-Handler-Dtd2Html/Makefile +++ b/textproc/p5-XML-Handler-Dtd2Html/Makefile @@ -11,13 +11,13 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= SAX2 handler for generate a Html documentation from a DTD -BUILD_DEPENDS= p5-Parse-RecDescent>=1.94:devel/p5-Parse-RecDescent \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Parse-RecDescent>=1.94:devel/p5-Parse-RecDescent \ p5-HTML-Template>=2.8:www/p5-HTML-Template \ p5-XML-Parser>=2.3:textproc/p5-XML-Parser \ p5-XML-SAX-Expat>=0.37:textproc/p5-XML-SAX-Expat \ p5-XML-SAX-Writer>=0.44:textproc/p5-XML-SAX-Writer \ p5-libxml>=0.08:textproc/p5-libxml -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-XML-Handler-HTMLWriter/Makefile b/textproc/p5-XML-Handler-HTMLWriter/Makefile index 6d174882db6..faa0d96cace 100644 --- a/textproc/p5-XML-Handler-HTMLWriter/Makefile +++ b/textproc/p5-XML-Handler-HTMLWriter/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= PerlSAX handlers for outputting HTML -BUILD_DEPENDS= p5-XML-SAX-Writer>=0:textproc/p5-XML-SAX-Writer \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-XML-SAX-Writer>=0:textproc/p5-XML-SAX-Writer \ p5-HTML-Parser>=0:www/p5-HTML-Parser -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-XML-Handler-YAWriter/Makefile b/textproc/p5-XML-Handler-YAWriter/Makefile index 41e2a0c05fa..a73a9be6605 100644 --- a/textproc/p5-XML-Handler-YAWriter/Makefile +++ b/textproc/p5-XML-Handler-YAWriter/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Yet another Perl SAX XML Writer -BUILD_DEPENDS= p5-libxml>=0:textproc/p5-libxml -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-libxml>=0:textproc/p5-libxml USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-XML-Hash-LX/Makefile b/textproc/p5-XML-Hash-LX/Makefile index ba3958a2c81..ae6020fe48b 100644 --- a/textproc/p5-XML-Hash-LX/Makefile +++ b/textproc/p5-XML-Hash-LX/Makefile @@ -14,9 +14,9 @@ COMMENT= Convert hash to xml and xml to hash using LibXML LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-lib-abs>=0.90:devel/p5-lib-abs \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-lib-abs>=0.90:devel/p5-lib-abs \ p5-XML-LibXML>=0:textproc/p5-XML-LibXML -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/textproc/p5-XML-LibXML-Cache/Makefile b/textproc/p5-XML-LibXML-Cache/Makefile index 996c3dc1297..41966be3d3f 100644 --- a/textproc/p5-XML-LibXML-Cache/Makefile +++ b/textproc/p5-XML-LibXML-Cache/Makefile @@ -14,10 +14,10 @@ COMMENT= Document cache for XML::LibXML LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-URI>=0:net/p5-URI \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-URI>=0:net/p5-URI \ p5-XML-LibXML>=1.59:textproc/p5-XML-LibXML \ p5-XML-LibXSLT>=1.59:textproc/p5-XML-LibXSLT -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-File-Touch>=0:devel/p5-File-Touch \ p5-Test-Deep>=0:devel/p5-Test-Deep diff --git a/textproc/p5-XML-LibXML-Iterator/Makefile b/textproc/p5-XML-LibXML-Iterator/Makefile index 1320516ea84..c90cba4c708 100644 --- a/textproc/p5-XML-LibXML-Iterator/Makefile +++ b/textproc/p5-XML-LibXML-Iterator/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= XML::LibXML::Iterator is an iterator for XML::LibXML parsed documents -BUILD_DEPENDS= p5-XML-LibXML>=0:textproc/p5-XML-LibXML \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-XML-LibXML>=0:textproc/p5-XML-LibXML \ p5-XML-NodeFilter>=0:textproc/p5-XML-NodeFilter -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-XML-LibXML-PrettyPrint/Makefile b/textproc/p5-XML-LibXML-PrettyPrint/Makefile index ce0d80be7ad..fdd2ba28667 100644 --- a/textproc/p5-XML-LibXML-PrettyPrint/Makefile +++ b/textproc/p5-XML-LibXML-PrettyPrint/Makefile @@ -15,9 +15,9 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Exporter-Tiny>=0:devel/p5-Exporter-Tiny \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Exporter-Tiny>=0:devel/p5-Exporter-Tiny \ p5-XML-LibXML>=1.62:textproc/p5-XML-LibXML -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Warnings>=0:devel/p5-Test-Warnings NO_ARCH= yes diff --git a/textproc/p5-XML-LibXML-SAX-ChunkParser/Makefile b/textproc/p5-XML-LibXML-SAX-ChunkParser/Makefile index 3df45e143c5..2bfc0332dda 100644 --- a/textproc/p5-XML-LibXML-SAX-ChunkParser/Makefile +++ b/textproc/p5-XML-LibXML-SAX-ChunkParser/Makefile @@ -13,9 +13,9 @@ COMMENT= Parse XML chunks via LibXML SAX LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-XML-LibXML>=1.66:textproc/p5-XML-LibXML \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-XML-LibXML>=1.66:textproc/p5-XML-LibXML \ p5-XML-SAX>=0:textproc/p5-XML-SAX -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Fatal>=0:devel/p5-Test-Fatal USE_PERL5= modbuild diff --git a/textproc/p5-XML-LibXML-Simple/Makefile b/textproc/p5-XML-LibXML-Simple/Makefile index 3ae39d6d482..8b74b763fda 100644 --- a/textproc/p5-XML-LibXML-Simple/Makefile +++ b/textproc/p5-XML-LibXML-Simple/Makefile @@ -13,9 +13,9 @@ COMMENT= XML::LibXML clone of XML::Simple::XMLin() LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-File-Slurp-Tiny>=0:devel/p5-File-Slurp-Tiny \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-File-Slurp-Tiny>=0:devel/p5-File-Slurp-Tiny \ p5-XML-LibXML>=1.64:textproc/p5-XML-LibXML -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-XML-LibXML/Makefile b/textproc/p5-XML-LibXML/Makefile index 0f55183c80c..0296c06e8c6 100644 --- a/textproc/p5-XML-LibXML/Makefile +++ b/textproc/p5-XML-LibXML/Makefile @@ -14,9 +14,9 @@ COMMENT= Interface to Gnome libxml2 library LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-XML-NamespaceSupport>=1.07:textproc/p5-XML-NamespaceSupport \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-XML-NamespaceSupport>=1.07:textproc/p5-XML-NamespaceSupport \ p5-XML-SAX>=0.11:textproc/p5-XML-SAX -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-LeakTrace>=0:devel/p5-Test-LeakTrace \ p5-URI>=0:net/p5-URI diff --git a/textproc/p5-XML-LibXSLT/Makefile b/textproc/p5-XML-LibXSLT/Makefile index ae7f60c2efc..8b5037772e7 100644 --- a/textproc/p5-XML-LibXSLT/Makefile +++ b/textproc/p5-XML-LibXSLT/Makefile @@ -13,10 +13,10 @@ COMMENT= Perl interface to the GNOME XSLT library LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-XML-LibXML>=1.70:textproc/p5-XML-LibXML +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-XML-LibXML>=1.70:textproc/p5-XML-LibXML LIB_DEPENDS= libgcrypt.so:security/libgcrypt \ libgpg-error.so:security/libgpg-error -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= gnome perl5 pkgconfig USE_GNOME= libxml2 libxslt diff --git a/textproc/p5-XML-Liberal/Makefile b/textproc/p5-XML-Liberal/Makefile index e92def232a7..58a08cca47c 100644 --- a/textproc/p5-XML-Liberal/Makefile +++ b/textproc/p5-XML-Liberal/Makefile @@ -11,12 +11,12 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Super liberal XML parser that parses broken XML -BUILD_DEPENDS= p5-Class-Accessor>=0:devel/p5-Class-Accessor \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Accessor>=0:devel/p5-Class-Accessor \ p5-HTML-Parser>=0:www/p5-HTML-Parser \ p5-HTML-Tagset>=0:www/p5-HTML-Tagset \ p5-Module-Pluggable-Fast>=0.16:devel/p5-Module-Pluggable-Fast \ p5-XML-LibXML>=1.58:textproc/p5-XML-LibXML -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-XML-Literal/Makefile b/textproc/p5-XML-Literal/Makefile index 8bfddb6d6f3..f5b8bc5d132 100644 --- a/textproc/p5-XML-Literal/Makefile +++ b/textproc/p5-XML-Literal/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Syntax support for XML literals -BUILD_DEPENDS= p5-Sub-Override>=0:devel/p5-Sub-Override -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Sub-Override>=0:devel/p5-Sub-Override USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-XML-Node/Makefile b/textproc/p5-XML-Node/Makefile index 0f3552ba40d..bd0f5a5cb5f 100644 --- a/textproc/p5-XML-Node/Makefile +++ b/textproc/p5-XML-Node/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Perl5 module to extend and simplify XML::Parser -BUILD_DEPENDS= p5-XML-Parser>=0:textproc/p5-XML-Parser -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-XML-Parser>=0:textproc/p5-XML-Parser USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-XML-NodeFilter/Makefile b/textproc/p5-XML-NodeFilter/Makefile index cd18762bc17..8ae934cfaf5 100644 --- a/textproc/p5-XML-NodeFilter/Makefile +++ b/textproc/p5-XML-NodeFilter/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= XML::NodeFilter is an object that know how to "filter out" nodes -BUILD_DEPENDS= p5-XML-LibXML>=0:textproc/p5-XML-LibXML -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-XML-LibXML>=0:textproc/p5-XML-LibXML USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-XML-OPML/Makefile b/textproc/p5-XML-OPML/Makefile index 996f8d93d5d..6fd05d6711d 100644 --- a/textproc/p5-XML-OPML/Makefile +++ b/textproc/p5-XML-OPML/Makefile @@ -14,9 +14,9 @@ COMMENT= Creates and updates OPML (Outline Processor Markup Language) files LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-XML-Parser>=0:textproc/p5-XML-Parser \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-XML-Parser>=0:textproc/p5-XML-Parser \ p5-XML-SimpleObject>=0:textproc/p5-XML-SimpleObject -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-XML-Parser-EasyTree/Makefile b/textproc/p5-XML-Parser-EasyTree/Makefile index 02c4950936f..11bff3ae1e7 100644 --- a/textproc/p5-XML-Parser-EasyTree/Makefile +++ b/textproc/p5-XML-Parser-EasyTree/Makefile @@ -14,8 +14,8 @@ COMMENT= Easier tree style for XML::Parser LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-XML-Parser>=0:textproc/p5-XML-Parser -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-XML-Parser>=0:textproc/p5-XML-Parser USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-XML-Parser-Style-EasyTree/Makefile b/textproc/p5-XML-Parser-Style-EasyTree/Makefile index 6e22b0376c8..cf4aa6b86ea 100644 --- a/textproc/p5-XML-Parser-Style-EasyTree/Makefile +++ b/textproc/p5-XML-Parser-Style-EasyTree/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Parse XML to a simple tree -BUILD_DEPENDS= p5-XML-Parser>0:textproc/p5-XML-Parser \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-XML-Parser>0:textproc/p5-XML-Parser \ p5-ex-lib>=0.03:devel/p5-ex-lib -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-XML-RAI/Makefile b/textproc/p5-XML-RAI/Makefile index 13437e6825d..73510299091 100644 --- a/textproc/p5-XML-RAI/Makefile +++ b/textproc/p5-XML-RAI/Makefile @@ -13,9 +13,9 @@ COMMENT= RSS Abstraction Interface LICENSE= ART10 -BUILD_DEPENDS= p5-XML-RSS-Parser>=0:textproc/p5-XML-RSS-Parser \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-XML-RSS-Parser>=0:textproc/p5-XML-RSS-Parser \ p5-TimeDate>=0:devel/p5-TimeDate -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/textproc/p5-XML-RSS-Feed/Makefile b/textproc/p5-XML-RSS-Feed/Makefile index 7ef79be1282..8e4665f3eb3 100644 --- a/textproc/p5-XML-RSS-Feed/Makefile +++ b/textproc/p5-XML-RSS-Feed/Makefile @@ -15,11 +15,11 @@ COMMENT= Persistent XML RSS encapsulation LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Clone>=0:devel/p5-Clone \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Clone>=0:devel/p5-Clone \ p5-HTML-Parser>=0:www/p5-HTML-Parser \ p5-URI>=0:net/p5-URI \ p5-XML-RSS>=0:textproc/p5-XML-RSS -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/textproc/p5-XML-RSS-LibXML/Makefile b/textproc/p5-XML-RSS-LibXML/Makefile index f7e7eac1827..c9c09928131 100644 --- a/textproc/p5-XML-RSS-LibXML/Makefile +++ b/textproc/p5-XML-RSS-LibXML/Makefile @@ -14,12 +14,12 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Class-Accessor>=0:devel/p5-Class-Accessor \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Accessor>=0:devel/p5-Class-Accessor \ p5-DateTime-Format-Mail>=0:devel/p5-DateTime-Format-Mail \ p5-DateTime-Format-W3CDTF>=0:devel/p5-DateTime-Format-W3CDTF \ p5-UNIVERSAL-require>=0:devel/p5-UNIVERSAL-require \ p5-XML-LibXML>=1.66:textproc/p5-XML-LibXML -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Differences>=0:devel/p5-Test-Differences \ p5-Test-Exception>=0:devel/p5-Test-Exception \ p5-Test-Warn>=0:devel/p5-Test-Warn diff --git a/textproc/p5-XML-RSS-Liberal/Makefile b/textproc/p5-XML-RSS-Liberal/Makefile index a8c7c595dec..74e65cb546e 100644 --- a/textproc/p5-XML-RSS-Liberal/Makefile +++ b/textproc/p5-XML-RSS-Liberal/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= XML::RSS With A Liberal Parser -BUILD_DEPENDS= p5-XML-Liberal>=0:textproc/p5-XML-Liberal \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-XML-Liberal>=0:textproc/p5-XML-Liberal \ p5-XML-RSS-LibXML>=0:textproc/p5-XML-RSS-LibXML -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= modbuild diff --git a/textproc/p5-XML-Reader/Makefile b/textproc/p5-XML-Reader/Makefile index 6bebf358edf..fba37d56066 100644 --- a/textproc/p5-XML-Reader/Makefile +++ b/textproc/p5-XML-Reader/Makefile @@ -12,8 +12,8 @@ COMMENT= Reading XML and providing path information based on a pull-parser LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Acme-HTTP>=0:net/p5-Acme-HTTP -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Acme-HTTP>=0:net/p5-Acme-HTTP TEST_DEPENDS= p5-XML-Parser>=0:textproc/p5-XML-Parser \ p5-XML-Parsepp>=0:textproc/p5-XML-Parsepp diff --git a/textproc/p5-XML-SAX-ExpatXS/Makefile b/textproc/p5-XML-SAX-ExpatXS/Makefile index 92e0bd93fcc..a0c1dd36760 100644 --- a/textproc/p5-XML-SAX-ExpatXS/Makefile +++ b/textproc/p5-XML-SAX-ExpatXS/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= PerlSAX2 XS extension to Expat parser -BUILD_DEPENDS= p5-XML-SAX>=0:textproc/p5-XML-SAX +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-XML-SAX>=0:textproc/p5-XML-SAX LIB_DEPENDS= libexpat.so:textproc/expat2 -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-XML-SAX-Machines/Makefile b/textproc/p5-XML-SAX-Machines/Makefile index 3298a40f071..a337edaa642 100644 --- a/textproc/p5-XML-SAX-Machines/Makefile +++ b/textproc/p5-XML-SAX-Machines/Makefile @@ -12,9 +12,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Manage collections of SAX processors -BUILD_DEPENDS= p5-XML-SAX>=0:textproc/p5-XML-SAX \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-XML-SAX>=0:textproc/p5-XML-SAX \ p5-XML-SAX-Writer>=0:textproc/p5-XML-SAX-Writer -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-XML-SAX-Simple/Makefile b/textproc/p5-XML-SAX-Simple/Makefile index ac2d4c4da9d..9cadda537be 100644 --- a/textproc/p5-XML-SAX-Simple/Makefile +++ b/textproc/p5-XML-SAX-Simple/Makefile @@ -14,10 +14,10 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-XML-Handler-Trees>=0.2:textproc/p5-XML-Handler-Trees \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-XML-Handler-Trees>=0.2:textproc/p5-XML-Handler-Trees \ p5-XML-SAX>=0.99:textproc/p5-XML-SAX \ p5-XML-Simple>=2.22:textproc/p5-XML-Simple -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-XML-SAX-Writer/Makefile b/textproc/p5-XML-SAX-Writer/Makefile index fd76c335c5d..df93925cc65 100644 --- a/textproc/p5-XML-SAX-Writer/Makefile +++ b/textproc/p5-XML-SAX-Writer/Makefile @@ -14,10 +14,10 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-XML-Filter-BufferText>=1.00:textproc/p5-XML-Filter-BufferText \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-XML-Filter-BufferText>=1.00:textproc/p5-XML-Filter-BufferText \ p5-XML-NamespaceSupport>=1.00:textproc/p5-XML-NamespaceSupport \ p5-XML-SAX-Base>=1.01:textproc/p5-XML-SAX-Base -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/textproc/p5-XML-SAX/Makefile b/textproc/p5-XML-SAX/Makefile index 624a87a4213..c637df8c09d 100644 --- a/textproc/p5-XML-SAX/Makefile +++ b/textproc/p5-XML-SAX/Makefile @@ -13,9 +13,9 @@ COMMENT= Simple API for XML LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-XML-NamespaceSupport>=0.03:textproc/p5-XML-NamespaceSupport \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-XML-NamespaceSupport>=0.03:textproc/p5-XML-NamespaceSupport \ p5-XML-SAX-Base>=1.05:textproc/p5-XML-SAX-Base -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/textproc/p5-XML-SAXDriver-CSV/Makefile b/textproc/p5-XML-SAXDriver-CSV/Makefile index 8b27736fbe4..80fdb9ef046 100644 --- a/textproc/p5-XML-SAXDriver-CSV/Makefile +++ b/textproc/p5-XML-SAXDriver-CSV/Makefile @@ -11,10 +11,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Perl SAX driver for converting CSV files to XML -BUILD_DEPENDS= p5-Text-CSV_XS>=0.22:textproc/p5-Text-CSV_XS \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Text-CSV_XS>=0.22:textproc/p5-Text-CSV_XS \ p5-XML-Handler-YAWriter>=0:textproc/p5-XML-Handler-YAWriter \ p5-XML-SAX>=0.14:textproc/p5-XML-SAX -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 dos2unix USE_PERL5= configure diff --git a/textproc/p5-XML-SAXDriver-Excel/Makefile b/textproc/p5-XML-SAXDriver-Excel/Makefile index be9b648c7b5..5d4b441f7e0 100644 --- a/textproc/p5-XML-SAXDriver-Excel/Makefile +++ b/textproc/p5-XML-SAXDriver-Excel/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Perl SAX driver for converting Excel files to XML -BUILD_DEPENDS= p5-Spreadsheet-ParseExcel>=0.2603:textproc/p5-Spreadsheet-ParseExcel \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Spreadsheet-ParseExcel>=0.2603:textproc/p5-Spreadsheet-ParseExcel \ p5-XML-SAX>=0.14:textproc/p5-XML-SAX -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 dos2unix USE_PERL5= configure diff --git a/textproc/p5-XML-STX/Makefile b/textproc/p5-XML-STX/Makefile index 9d39bc37f7c..6c4115298c3 100644 --- a/textproc/p5-XML-STX/Makefile +++ b/textproc/p5-XML-STX/Makefile @@ -14,10 +14,10 @@ COMMENT= Pure Perl STX processor LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Clone>=0:devel/p5-Clone \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Clone>=0:devel/p5-Clone \ p5-XML-NamespaceSupport>=0:textproc/p5-XML-NamespaceSupport \ p5-XML-SAX>=0:textproc/p5-XML-SAX -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 shebangfix USE_PERL5= configure diff --git a/textproc/p5-XML-Schematron/Makefile b/textproc/p5-XML-Schematron/Makefile index 56808a421b6..575f38dc750 100644 --- a/textproc/p5-XML-Schematron/Makefile +++ b/textproc/p5-XML-Schematron/Makefile @@ -11,14 +11,14 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Perl implementation of the Schematron -BUILD_DEPENDS= p5-libxml>=0:textproc/p5-libxml \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-libxml>=0:textproc/p5-libxml \ p5-Check-ISA>=0:devel/p5-Check-ISA \ p5-Moose>=0:devel/p5-Moose \ p5-MooseX-NonMoose>=0:devel/p5-MooseX-NonMoose \ p5-MooseX-Traits>=0:devel/p5-MooseX-Traits \ p5-MooseX-Types-Path-Class>=0:devel/p5-MooseX-Types-Path-Class \ p5-XML-Filter-BufferText>=0:textproc/p5-XML-Filter-BufferText -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-XML-SemanticDiff/Makefile b/textproc/p5-XML-SemanticDiff/Makefile index 591d6c42a33..46dc43a8b1b 100644 --- a/textproc/p5-XML-SemanticDiff/Makefile +++ b/textproc/p5-XML-SemanticDiff/Makefile @@ -13,8 +13,8 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE_ART10= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-XML-Parser>=0:textproc/p5-XML-Parser -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-XML-Parser>=0:textproc/p5-XML-Parser NO_ARCH= yes USES= perl5 diff --git a/textproc/p5-XML-Simple/Makefile b/textproc/p5-XML-Simple/Makefile index 3d7fdb7095a..bb66353e1e6 100644 --- a/textproc/p5-XML-Simple/Makefile +++ b/textproc/p5-XML-Simple/Makefile @@ -14,10 +14,10 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-XML-Parser>=0:textproc/p5-XML-Parser \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-XML-Parser>=0:textproc/p5-XML-Parser \ p5-XML-SAX>=0.15:textproc/p5-XML-SAX \ p5-XML-SAX-Expat>=0:textproc/p5-XML-SAX-Expat -RUN_DEPENDS:= ${BUILD_DEPENDS} MAKE_JOBS_UNSAFE= yes NO_ARCH= yes diff --git a/textproc/p5-XML-SimpleObject/Makefile b/textproc/p5-XML-SimpleObject/Makefile index c9c6b548131..4d39a689a4f 100644 --- a/textproc/p5-XML-SimpleObject/Makefile +++ b/textproc/p5-XML-SimpleObject/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= API for accessing the structure of an XML document -BUILD_DEPENDS= p5-XML-Parser>=0:textproc/p5-XML-Parser -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-XML-Parser>=0:textproc/p5-XML-Parser WRKSRC?= ${WRKDIR}/${PORTNAME}${PORTVERSION} diff --git a/textproc/p5-XML-Smart/Makefile b/textproc/p5-XML-Smart/Makefile index 8ac48d186cc..bb7003ea35e 100644 --- a/textproc/p5-XML-Smart/Makefile +++ b/textproc/p5-XML-Smart/Makefile @@ -15,9 +15,9 @@ COMMENT= Smart, easy and powerful way to access/create XML files/data LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Object-MultiType>=0.03:devel/p5-Object-MultiType \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Object-MultiType>=0.03:devel/p5-Object-MultiType \ p5-XML-XPath>=0:textproc/p5-XML-XPath -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Data-Dump>=0:devel/p5-Data-Dump \ p5-Devel-Cycle>=0:devel/p5-Devel-Cycle diff --git a/textproc/p5-XML-Stream/Makefile b/textproc/p5-XML-Stream/Makefile index b59e4c6fbff..7e66a739977 100644 --- a/textproc/p5-XML-Stream/Makefile +++ b/textproc/p5-XML-Stream/Makefile @@ -13,8 +13,8 @@ COMMENT= XML::Stream provides you with access to XML Stream LICENSE= LGPL21 -BUILD_DEPENDS= p5-Authen-SASL>=0:security/p5-Authen-SASL -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Authen-SASL>=0:security/p5-Authen-SASL USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-XML-TokeParser/Makefile b/textproc/p5-XML-TokeParser/Makefile index 8d2dda9cf40..3a289148700 100644 --- a/textproc/p5-XML-TokeParser/Makefile +++ b/textproc/p5-XML-TokeParser/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= mike@urgle.com COMMENT= Simplified interface to XML::Parser -BUILD_DEPENDS= p5-XML-Parser>=0:textproc/p5-XML-Parser -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-XML-Parser>=0:textproc/p5-XML-Parser USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-XML-Toolkit/Makefile b/textproc/p5-XML-Toolkit/Makefile index 47132cd574d..e665c03c631 100644 --- a/textproc/p5-XML-Toolkit/Makefile +++ b/textproc/p5-XML-Toolkit/Makefile @@ -15,7 +15,8 @@ COMMENT= Suit of XML tools with Antlers LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Bread-Board>=0:devel/p5-Bread-Board \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Bread-Board>=0:devel/p5-Bread-Board \ p5-Devel-PackagePath>=0.01:devel/p5-Devel-PackagePath \ p5-Moose>=0.92:devel/p5-Moose \ p5-MooseX-Aliases>=0:devel/p5-MooseX-Aliases \ @@ -30,7 +31,6 @@ BUILD_DEPENDS= p5-Bread-Board>=0:devel/p5-Bread-Board \ p5-XML-SAX-Writer>=0:textproc/p5-XML-SAX-Writer \ p5-aliased>=0:devel/p5-aliased \ p5-namespace-autoclean>=0:devel/p5-namespace-autoclean -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Deep>=0:devel/p5-Test-Deep \ p5-Test-Exception>=0:devel/p5-Test-Exception \ p5-Test-XML>=0:devel/p5-Test-XML diff --git a/textproc/p5-XML-TreeBuilder/Makefile b/textproc/p5-XML-TreeBuilder/Makefile index 2a6f7f3a49b..8840e352779 100644 --- a/textproc/p5-XML-TreeBuilder/Makefile +++ b/textproc/p5-XML-TreeBuilder/Makefile @@ -14,11 +14,11 @@ COMMENT= Perl module to make XML document trees LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-HTML-Tagset>=3.02:www/p5-HTML-Tagset \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTML-Tagset>=3.02:www/p5-HTML-Tagset \ p5-HTML-Tree>=4.1:www/p5-HTML-Tree \ p5-XML-Catalog>=1.0.2:textproc/p5-XML-Catalog \ p5-XML-Parser>0:textproc/p5-XML-Parser -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-XML-TreePP/Makefile b/textproc/p5-XML-TreePP/Makefile index e2f4d740f7b..511f5afdcb3 100644 --- a/textproc/p5-XML-TreePP/Makefile +++ b/textproc/p5-XML-TreePP/Makefile @@ -13,8 +13,8 @@ COMMENT= Pure Perl implementation for parsing/writing xml files LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-libwww>=5.811:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-libwww>=5.811:www/p5-libwww TEST_DEPENDS= p5-HTTP-Lite>=0:www/p5-HTTP-Lite \ p5-Tie-IxHash>=0:devel/p5-Tie-IxHash diff --git a/textproc/p5-XML-Twig/Makefile b/textproc/p5-XML-Twig/Makefile index 077b13af423..20bb2a20d31 100644 --- a/textproc/p5-XML-Twig/Makefile +++ b/textproc/p5-XML-Twig/Makefile @@ -13,13 +13,13 @@ COMMENT= Process huge XML documents by chunks via a tree interface LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-HTML-Tree>=3.13:www/p5-HTML-Tree \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTML-Tree>=3.13:www/p5-HTML-Tree \ p5-Text-Iconv>=0:converters/p5-Text-Iconv \ p5-Tie-IxHash>=0:devel/p5-Tie-IxHash \ p5-XML-Parser>=0:textproc/p5-XML-Parser \ p5-XML-XPath>=0:textproc/p5-XML-XPath \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-IO-CaptureOutput>=0:devel/p5-IO-CaptureOutput \ p5-XML-Handler-YAWriter>=0:textproc/p5-XML-Handler-YAWriter \ p5-XML-SAX-Writer>=0:textproc/p5-XML-SAX-Writer \ diff --git a/textproc/p5-XML-Validate/Makefile b/textproc/p5-XML-Validate/Makefile index 22d95775886..ae643d44a8d 100644 --- a/textproc/p5-XML-Validate/Makefile +++ b/textproc/p5-XML-Validate/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= demon@FreeBSD.org COMMENT= XML validator factory -BUILD_DEPENDS= p5-XML-LibXML>=0:textproc/p5-XML-LibXML \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-XML-LibXML>=0:textproc/p5-XML-LibXML \ p5-Log-TraceMessages>=0:devel/p5-Log-TraceMessages -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Assertions>0:devel/p5-Test-Assertions USES= perl5 diff --git a/textproc/p5-XML-Validator-Schema/Makefile b/textproc/p5-XML-Validator-Schema/Makefile index 6713501456f..1392a8f5e76 100644 --- a/textproc/p5-XML-Validator-Schema/Makefile +++ b/textproc/p5-XML-Validator-Schema/Makefile @@ -11,10 +11,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Perl module for validating XML documents against a W3C XML Schema -BUILD_DEPENDS= p5-Tree-DAG_Node>=0:devel/p5-Tree-DAG_Node \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Tree-DAG_Node>=0:devel/p5-Tree-DAG_Node \ p5-XML-SAX>=0:textproc/p5-XML-SAX \ p5-XML-Filter-BufferText>=0:textproc/p5-XML-Filter-BufferText -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-XML-XBEL/Makefile b/textproc/p5-XML-XBEL/Makefile index 109947997d4..dc962650c2f 100644 --- a/textproc/p5-XML-XBEL/Makefile +++ b/textproc/p5-XML-XBEL/Makefile @@ -14,9 +14,9 @@ COMMENT= OOP for reading and writing XBEL documents LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-TimeDate>=0:devel/p5-TimeDate \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-TimeDate>=0:devel/p5-TimeDate \ p5-XML-LibXML>=0:textproc/p5-XML-LibXML -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= modbuild diff --git a/textproc/p5-XML-XML2JSON/Makefile b/textproc/p5-XML-XML2JSON/Makefile index c467352b8a5..4f742ce678f 100644 --- a/textproc/p5-XML-XML2JSON/Makefile +++ b/textproc/p5-XML-XML2JSON/Makefile @@ -14,8 +14,8 @@ COMMENT= Convert XML into JSON (and back again) using XML::LibXML LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-XML-LibXML>=1.59:textproc/p5-XML-LibXML -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-XML-LibXML>=1.59:textproc/p5-XML-LibXML # the order of options follows the search order of JSON module by XML::XML2JSON OPTIONS_MULTI= JSON_BACKEND diff --git a/textproc/p5-XML-XPath/Makefile b/textproc/p5-XML-XPath/Makefile index 3267d8da596..59cd3bad61c 100644 --- a/textproc/p5-XML-XPath/Makefile +++ b/textproc/p5-XML-XPath/Makefile @@ -13,8 +13,8 @@ COMMENT= Modules for parsing and evaluating XPath statements LICENSE= ART20 LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-XML-Parser>=2.23:textproc/p5-XML-Parser -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-XML-Parser>=2.23:textproc/p5-XML-Parser TEST_DEPENDS= p5-Path-Tiny>=0.076:devel/p5-Path-Tiny NO_ARCH= yes @@ -24,7 +24,8 @@ USE_PERL5= configure .include .if ${PERL_LEVEL} < 502501 -BUILD_DEPENDS+= p5-Scalar-List-Utils>=1.45:lang/p5-Scalar-List-Utils +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS+= p5-Scalar-List-Utils>=1.45:lang/p5-Scalar-List-Utils RUN_DEPENDS+= p5-Scalar-List-Utils>=1.45:lang/p5-Scalar-List-Utils .endif diff --git a/textproc/p5-XML-XQL/Makefile b/textproc/p5-XML-XQL/Makefile index 2e01412b6e3..2417f822fe6 100644 --- a/textproc/p5-XML-XQL/Makefile +++ b/textproc/p5-XML-XQL/Makefile @@ -11,11 +11,11 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Perl module for querying XML tree structures with XQL -BUILD_DEPENDS= p5-XML-Parser>=0:textproc/p5-XML-Parser \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-XML-Parser>=0:textproc/p5-XML-Parser \ p5-Date-Manip>=0:devel/p5-Date-Manip \ p5-Parse-Yapp>=0:devel/p5-Parse-Yapp \ p5-XML-DOM>=0:textproc/p5-XML-DOM -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-XML-XSLT/Makefile b/textproc/p5-XML-XSLT/Makefile index 8365e20eba1..c8b0f0d195b 100644 --- a/textproc/p5-XML-XSLT/Makefile +++ b/textproc/p5-XML-XSLT/Makefile @@ -14,8 +14,8 @@ COMMENT= XML::XSLT - A perl module for processing XSLT LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-XML-DOM>=0:textproc/p5-XML-DOM -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-XML-DOM>=0:textproc/p5-XML-DOM USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-XML-XUpdate-LibXML/Makefile b/textproc/p5-XML-XUpdate-LibXML/Makefile index 272e8090e35..f88f80d752a 100644 --- a/textproc/p5-XML-XUpdate-LibXML/Makefile +++ b/textproc/p5-XML-XUpdate-LibXML/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= lev@FreeBSD.org COMMENT= Simple implementation of XUpdate format based on and XML::LibXML -BUILD_DEPENDS= p5-XML-LibXML>=0:textproc/p5-XML-LibXML \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-XML-LibXML>=0:textproc/p5-XML-LibXML \ p5-XML-LibXML-Iterator>=0:textproc/p5-XML-LibXML-Iterator -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/textproc/p5-ack/Makefile b/textproc/p5-ack/Makefile index be6b3272174..a7a4330de6b 100644 --- a/textproc/p5-ack/Makefile +++ b/textproc/p5-ack/Makefile @@ -14,8 +14,8 @@ COMMENT= Grep-like text finder for large trees of text LICENSE= ART20 LICENSE_FILE= ${WRKSRC}/LICENSE.md -BUILD_DEPENDS= p5-File-Next>=1.16:sysutils/p5-File-Next -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-File-Next>=1.16:sysutils/p5-File-Next TEST_DEPENDS= bash:shells/bash \ p5-IO-Tty>=0:devel/p5-IO-Tty diff --git a/textproc/p5-libxml/Makefile b/textproc/p5-libxml/Makefile index 7607c8c6907..73abffc55a6 100644 --- a/textproc/p5-libxml/Makefile +++ b/textproc/p5-libxml/Makefile @@ -15,8 +15,8 @@ COMMENT= Collection of Perl5 modules for working with XML LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-XML-Parser>=0:textproc/p5-XML-Parser -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-XML-Parser>=0:textproc/p5-XML-Parser USES= perl5 USE_PERL5= configure diff --git a/textproc/pear-File_MARC/Makefile b/textproc/pear-File_MARC/Makefile index 28bff66e926..58b4f2aa2d3 100644 --- a/textproc/pear-File_MARC/Makefile +++ b/textproc/pear-File_MARC/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= File_MARC -PORTVERSION= 1.2.0 +PORTVERSION= 1.3.0 CATEGORIES= textproc pear MAINTAINER= dbaio@FreeBSD.org diff --git a/textproc/pear-File_MARC/distinfo b/textproc/pear-File_MARC/distinfo index a16b1e972eb..5c9a21947b2 100644 --- a/textproc/pear-File_MARC/distinfo +++ b/textproc/pear-File_MARC/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1512519048 -SHA256 (PEAR/File_MARC-1.2.0.tgz) = b110ee2dec4a51f177bd4c37b07f659ffa32a7c2dbe442a9f3c582d5ec41e430 -SIZE (PEAR/File_MARC-1.2.0.tgz) = 96339 +TIMESTAMP = 1538438011 +SHA256 (PEAR/File_MARC-1.3.0.tgz) = 4f102e5621a09908cd541245fe5d738d4a2554d0c410513c6396bffe69e4496e +SIZE (PEAR/File_MARC-1.3.0.tgz) = 96368 diff --git a/textproc/pootle/Makefile b/textproc/pootle/Makefile index 4369acd5c5d..e1727e7eba4 100644 --- a/textproc/pootle/Makefile +++ b/textproc/pootle/Makefile @@ -2,71 +2,90 @@ # $FreeBSD$ PORTNAME= pootle -PORTVERSION= 2.5.1.3 -PORTREVISION= 3 +DISTVERSION= 2.8.2 CATEGORIES= textproc -MASTER_SITES= CHEESESHOP -DISTNAME= Pootle-${PORTVERSION} MAINTAINER= rene@FreeBSD.org COMMENT= User-friendly web portal for simple translation process -LICENSE= GPLv2 +LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/LICENSE -RUN_DEPENDS= translate-toolkit>=1.11.0:textproc/translate-toolkit \ - ${PYTHON_PKGNAMEPREFIX}argparse>=0:devel/py-argparse@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}cssmin>=0.1.4:www/py-cssmin@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}south>=0.7.6:databases/py-south@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}lxml>=2.1.4:devel/py-lxml@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}django-assets>=0.8:www/py-django-assets@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}django-taggit>0.10:www/py-django-taggit@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}django-voting>=0.1:www/py-django-voting@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}south>=0.7.6:databases/py-south@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}diff-match-patch>=0:textproc/py-diff-match-patch@${PY_FLAVOR} -# actually diff-match-patch is a dependency of translate-toolkit, -# but only this port uses it. +RUN_DEPENDS= translate-toolkit>=2.2.5:textproc/translate-toolkit \ + ${PYTHON_PKGNAMEPREFIX}Babel>=2.5.1:devel/py-babel@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}bleach>=2.0.0:www/py-bleach@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}country>=17.5.14:devel/py-country@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}cssmin>=0.2.0:www/py-cssmin@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}dateutil>=2.6.1:devel/py-dateutil@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}diff-match-patch>=20121119:textproc/py-diff-match-patch@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}dirsync>=2.2.2:sysutils/py-dirsync@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}django-allauth>=0.33.0:www/py-django-allauth@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}django-assets>=0.12:www/py-django-assets@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}django-bulk-update>=2.2.0:www/py-django-bulk-update@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}django-contact-form>=1.4.2:www/py-django-contact-form@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}django-contrib-comments>=1.7.3:www/py-django-contrib-comments@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}django-overextends>=0.4.3:www/py-django-overextends@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}django-redis>=4.8.0:www/py-django-redis@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}django-rq>=0.9.6:devel/py-django-rq@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}django-sortedm2m>=1.5.0:www/py-django-sortedm2m@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}django-statici18n>=1.4.0:www/py-django-statici18n@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}jsonfield>=2.0.2:www/py-jsonfield@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}lxml>=3.5:devel/py-lxml@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}markdown>=2.6.9:textproc/py-markdown@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pathlib>=1.0.1:devel/py-pathlib@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}python-Levenshtein>=0.12.0:devel/py-python-Levenshtein@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pytz>=2017.2:devel/py-pytz@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}raven>=6.1.0:devel/py-raven@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}scandir>=1.5:sysutils/py-scandir@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}stemming>=1.0.1:textproc/py-stemming@${PY_FLAVOR} -NO_ARCH= yes USES= gettext python:2.7 tar:bzip2 shebangfix USE_PYTHON= autoplist distutils -SHEBANG_FILES= pootle/assets/admin/js/compress.py +USE_GITHUB= yes + +GH_ACCOUNT= translate + +NO_ARCH= yes USERS= pootle GROUPS= pootle -PLIST_SUB+= POOTLEUSER="${USERS}" \ - POOTLEGROUP="${GROUPS}" +SUB_LIST+= POOTLEUSER="${USERS}" \ + POOTLEGROUP="${GROUPS}" \ + POOTLERUNDIR="/var/run/${PORTNAME}/" USE_RC_SUBR= pootle SUB_LIST+= PYTHON_CMD="${PYTHON_CMD}" -PORTDOCS= CREDITS INSTALL LICENSE +PORTDOCS= AUTHORS CONTRIBUTING.rst INSTALL README.rst -OPTIONS_DEFINE= DOCS LDAP MEMCACHED +OPTIONS_DEFINE= DOCS OPTIONS_GROUP= DB DB_DESC= Database backend -OPTIONS_GROUP_DB=MYSQL PGSQL -OPTIONS_DEFAULT=MEMCACHED MYSQL - -MEMCACHED_DESC= Use memcached to improve performance - -LDAP_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}ldap2>0:devel/py-ldap2@${PY_FLAVOR} - -MEMCACHED_LIB_DEPENDS= libmemcached.so:databases/libmemcached -MEMCACHED_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}python-memcached>=1.45:databases/py-python-memcached@${PY_FLAVOR} +OPTIONS_GROUP_DB=MYSQL PGSQL SQLITE +OPTIONS_DEFAULT=SQLITE MYSQL_USES= mysql:client -MYSQL_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}MySQLdb>0:databases/py-MySQLdb@${PY_FLAVOR} - -PGSQL_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}psycopg2>0:databases/py-psycopg2@${PY_FLAVOR} +MYSQL_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}mysqlclient>=1.3.3:databases/py-mysqlclient@${PY_FLAVOR} +PGSQL_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}psycopg2>=2.4.5:databases/py-psycopg2@${PY_FLAVOR} +SQLITE_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sqlite3>=0:databases/py-sqlite3@${PY_FLAVOR} +post-extract: + ${RM} ${WRKSRC}/tests/__init__.py # prevent conflict with py-django-bulk-update dependency pre-configure: - @${REINPLACE_CMD} -e "s/,<0.11.2//g" \ - -e "s/,<0.8//g" \ - -e "s/==0.1//g" \ - -e "s/,<1.5//g" \ + # switch off pip checks + ${REINPLACE_CMD} -e '/^check_pep440_versions()/d' ${WRKSRC}/setup.py + # relax versions for packaging + ${REINPLACE_CMD} -e "s/==/>=/g" \ + -e "s/~=/>=/g" \ + -e "s/,<=.*//g" \ ${WRKSRC}/requirements/base.txt + # fix django-bulk-update invocations + ${REINPLACE_CMD} -e "s/bulk_update.helper/django_bulk_update.helper/g" \ + ${WRKSRC}/pootle/core/batch.py \ + ${WRKSRC}/pootle/core/bulk.py \ + ${WRKSRC}/pootle/apps/pootle_store/migrations/0054_clean_abs_file_paths.py \ + ${WRKSRC}/pootle/apps/pootle_fs/plugin.py post-install-DOCS-on: ${MKDIR} ${STAGEDIR}/${DOCSDIR} diff --git a/textproc/pootle/distinfo b/textproc/pootle/distinfo index 82f0833ec9d..a9c88753849 100644 --- a/textproc/pootle/distinfo +++ b/textproc/pootle/distinfo @@ -1,2 +1,3 @@ -SHA256 (Pootle-2.5.1.3.tar.bz2) = f0303896af702f6bc6cbd7f28fae9478f3f11e804c6f0194c1fb34d2557f4243 -SIZE (Pootle-2.5.1.3.tar.bz2) = 6387947 +TIMESTAMP = 1505559121 +SHA256 (translate-pootle-2.8.2_GH0.tar.gz) = b8cc5e05066fe2517ca03882ef41eaa22ac5e47b6918591aaf3d8fa36fd0e5a2 +SIZE (translate-pootle-2.8.2_GH0.tar.gz) = 8498394 diff --git a/textproc/pootle/files/patch-pootle_apps_djblets_util_fields.py b/textproc/pootle/files/patch-pootle_apps_djblets_util_fields.py deleted file mode 100644 index 036b729cc46..00000000000 --- a/textproc/pootle/files/patch-pootle_apps_djblets_util_fields.py +++ /dev/null @@ -1,11 +0,0 @@ ---- pootle/apps/djblets/util/fields.py.orig 2015-06-03 13:30:23 UTC -+++ pootle/apps/djblets/util/fields.py -@@ -30,7 +30,7 @@ from datetime import datetime - from django.conf import settings - from django.core.serializers.json import DjangoJSONEncoder - from django.db import models --from django.utils import simplejson -+import simplejson - from django.utils.encoding import smart_unicode - - diff --git a/textproc/pootle/files/patch-pootle_apps_pootle__app_views_admin_dashboard.py b/textproc/pootle/files/patch-pootle_apps_pootle__app_views_admin_dashboard.py deleted file mode 100644 index 95f1393b590..00000000000 --- a/textproc/pootle/files/patch-pootle_apps_pootle__app_views_admin_dashboard.py +++ /dev/null @@ -1,11 +0,0 @@ ---- pootle/apps/pootle_app/views/admin/dashboard.py.orig 2015-06-03 13:30:23 UTC -+++ pootle/apps/pootle_app/views/admin/dashboard.py -@@ -26,7 +26,7 @@ from django.core.cache import cache - from django.http import HttpResponse - from django.shortcuts import render_to_response - from django.template import RequestContext --from django.utils import simplejson -+import simplejson - from django.utils.translation import ugettext as _ - - from pootle import depcheck diff --git a/textproc/pootle/files/patch-pootle_apps_pootle__misc_forms.py b/textproc/pootle/files/patch-pootle_apps_pootle__misc_forms.py deleted file mode 100644 index 4b59f614810..00000000000 --- a/textproc/pootle/files/patch-pootle_apps_pootle__misc_forms.py +++ /dev/null @@ -1,11 +0,0 @@ ---- pootle/apps/pootle_misc/forms.py.orig 2015-06-03 13:30:23 UTC -+++ pootle/apps/pootle_misc/forms.py -@@ -79,7 +79,7 @@ def make_search_form(*args, **kwargs): - - if sparams_cookie: - import urllib -- from django.utils import simplejson -+ import simplejson - - initial_sparams = simplejson.loads(urllib.unquote(sparams_cookie)) - if isinstance(initial_sparams, dict): diff --git a/textproc/pootle/files/patch-pootle_apps_pootle__misc_util.py b/textproc/pootle/files/patch-pootle_apps_pootle__misc_util.py deleted file mode 100644 index a8edce23c0e..00000000000 --- a/textproc/pootle/files/patch-pootle_apps_pootle__misc_util.py +++ /dev/null @@ -1,12 +0,0 @@ ---- pootle/apps/pootle_misc/util.py.orig 2015-06-03 13:30:23 UTC -+++ pootle/apps/pootle_misc/util.py -@@ -25,7 +25,8 @@ from django.conf import settings - from django.core.cache import cache - from django.core.paginator import Paginator - from django.http import HttpResponseBadRequest --from django.utils import simplejson, timezone -+from django.utils import timezone -+import simplejson - from django.utils.encoding import force_unicode, iri_to_uri - from django.utils.functional import Promise - diff --git a/textproc/pootle/files/patch-pootle_apps_pootle__store_models.py b/textproc/pootle/files/patch-pootle_apps_pootle__store_models.py deleted file mode 100644 index 616b3f3a57c..00000000000 --- a/textproc/pootle/files/patch-pootle_apps_pootle__store_models.py +++ /dev/null @@ -1,58 +0,0 @@ ---- pootle/apps/pootle_store/models.py.orig 2015-06-03 13:30:23 UTC -+++ pootle/apps/pootle_store/models.py -@@ -32,9 +32,8 @@ from django.conf import settings - from django.core.exceptions import ObjectDoesNotExist - from django.core.files.storage import FileSystemStorage - from django.core.urlresolvers import reverse --from django.db import models, DatabaseError, IntegrityError -+from django.db import models, transaction, DatabaseError, IntegrityError - from django.db.models.signals import post_delete, post_save, pre_delete --from django.db.transaction import commit_on_success - from django.utils import timezone, tzinfo - from django.utils.translation import ugettext_lazy as _ - -@@ -1102,7 +1101,7 @@ class Store(models.Model, base.Translati - - return False - -- @commit_on_success -+ @transaction.atomic - def parse(self, store=None): - self.clean_stale_lock() - -@@ -1154,7 +1153,7 @@ class Store(models.Model, base.Translati - if obsolete_unit: - obsolete_unit.delete() - -- @commit_on_success -+ @transaction.atomic - def update(self, update_structure=False, update_translation=False, - store=None, fuzzy=False, only_newer=False, modified_since=0): - """Update DB with units from file. -@@ -1320,7 +1319,7 @@ class Store(models.Model, base.Translati - # new qualitychecks, let's flush cache - deletefromcache(self, ["getcompletestats"]) - -- @commit_on_success -+ @transaction.atomic - def update_qualitychecks(self): - logging.debug(u"Updating quality checks for %s", self.pootle_path) - for unit in self.units.iterator(): -@@ -1583,7 +1582,7 @@ class Store(models.Model, base.Translati - """Returns a single unit based on the item number.""" - return self.units[item] - -- @commit_on_success -+ @transaction.atomic - def mergefile(self, newfile, profile, allownewstrings, suggestions, - notranslate, obsoletemissing): - """Merges :param:`newfile` with the current store. -@@ -1778,7 +1777,7 @@ class Store(models.Model, base.Translati - self.pending = pending_name - self.save() - -- @commit_on_success -+ @transaction.atomic - def import_pending(self): - """import suggestions from legacy .pending files, into database""" - self.init_pending() diff --git a/textproc/pootle/files/patch-pootle_apps_pootle__store_views.py b/textproc/pootle/files/patch-pootle_apps_pootle__store_views.py deleted file mode 100644 index 2cb5fae3f24..00000000000 --- a/textproc/pootle/files/patch-pootle_apps_pootle__store_views.py +++ /dev/null @@ -1,12 +0,0 @@ ---- pootle/apps/pootle_store/views.py.orig 2015-06-03 13:30:23 UTC -+++ pootle/apps/pootle_store/views.py -@@ -35,7 +35,8 @@ from django.shortcuts import get_object_ - from django.template import loader, RequestContext - from django.utils.translation import to_locale, ugettext as _ - from django.utils.translation.trans_real import parse_accept_lang_header --from django.utils import simplejson, timezone -+from django.utils import timezone -+import simplejson - from django.utils.encoding import iri_to_uri - from django.views.decorators.cache import never_cache - from django.views.decorators.http import require_POST diff --git a/textproc/pootle/files/patch-pootle_apps_pootle__terminology_views.py b/textproc/pootle/files/patch-pootle_apps_pootle__terminology_views.py deleted file mode 100644 index 179b8c055b0..00000000000 --- a/textproc/pootle/files/patch-pootle_apps_pootle__terminology_views.py +++ /dev/null @@ -1,20 +0,0 @@ ---- pootle/apps/pootle_terminology/views.py.orig 2015-06-03 13:30:23 UTC -+++ pootle/apps/pootle_terminology/views.py -@@ -19,7 +19,7 @@ - # Pootle; if not, see . - - from django.conf import settings --from django.db.transaction import commit_on_success -+from django.db import transaction - from django.shortcuts import render_to_response - from django.template import RequestContext - from django.utils.translation import ugettext as _ -@@ -63,7 +63,7 @@ def get_terminology_filename(translation - return 'pootle-terminology.' + translation_project.project.localfiletype - - --@commit_on_success -+@transaction.atomic - @get_path_obj - @permission_required('administrate') - def extract(request, translation_project): diff --git a/textproc/pootle/files/patch-pootle_apps_registration_models.py b/textproc/pootle/files/patch-pootle_apps_registration_models.py deleted file mode 100644 index 3590c5658ef..00000000000 --- a/textproc/pootle/files/patch-pootle_apps_registration_models.py +++ /dev/null @@ -1,36 +0,0 @@ ---- pootle/apps/registration/models.py.orig 2015-06-03 13:30:23 UTC -+++ pootle/apps/registration/models.py -@@ -1,4 +1,5 @@ - import datetime -+import hashlib - import random - import re - -@@ -8,7 +9,6 @@ from django.contrib.sites.models import - from django.db import models - from django.db import transaction - from django.template.loader import render_to_string --from django.utils.hashcompat import sha_constructor - from django.utils.translation import ugettext_lazy as _ - - -@@ -146,7 +146,7 @@ class RegistrationManager(models.Manager - msg.send() - user_registered.send(sender=self.model, user=new_user) - return new_user -- create_inactive_user = transaction.commit_on_success(create_inactive_user) -+ create_inactive_user = transaction.atomic(create_inactive_user) - - def create_profile(self, user): - """ -@@ -158,8 +158,8 @@ class RegistrationManager(models.Manager - username and a random salt. - - """ -- salt = sha_constructor(str(random.random())).hexdigest()[:5] -- activation_key = sha_constructor(salt+user.email).hexdigest() -+ salt = hashlib.sha1(str(random.random())).hexdigest()[:5] -+ activation_key = hashlib.sha1(salt+user.email).hexdigest() - return self.create(user=user, - activation_key=activation_key) - diff --git a/textproc/pootle/files/patch-pootle_middleware_captcha.py b/textproc/pootle/files/patch-pootle_middleware_captcha.py deleted file mode 100644 index afb5fbba767..00000000000 --- a/textproc/pootle/files/patch-pootle_middleware_captcha.py +++ /dev/null @@ -1,11 +0,0 @@ ---- pootle/middleware/captcha.py.orig 2015-06-03 13:30:24 UTC -+++ pootle/middleware/captcha.py -@@ -29,7 +29,7 @@ from django.conf import settings - from django.http import HttpResponse - from django.shortcuts import render_to_response - from django.template import loader, RequestContext --from django.utils import simplejson -+import simplejson - from django.utils.translation import ugettext as _ - - diff --git a/textproc/pootle/files/patch-pootle_middleware_errorpages.py b/textproc/pootle/files/patch-pootle_middleware_errorpages.py deleted file mode 100644 index fc7dfa82ff4..00000000000 --- a/textproc/pootle/files/patch-pootle_middleware_errorpages.py +++ /dev/null @@ -1,11 +0,0 @@ ---- pootle/middleware/errorpages.py.orig 2015-06-03 13:30:24 UTC -+++ pootle/middleware/errorpages.py -@@ -28,7 +28,7 @@ from django.http import (Http404, HttpRe - HttpResponseServerError) - from django.template import RequestContext - from django.template.loader import render_to_string --from django.utils import simplejson -+import simplejson - from django.utils.encoding import force_unicode - from django.utils.translation import ugettext as _ - diff --git a/textproc/pootle/pkg-descr b/textproc/pootle/pkg-descr index 967fd1f72ae..19025674731 100644 --- a/textproc/pootle/pkg-descr +++ b/textproc/pootle/pkg-descr @@ -5,4 +5,4 @@ gives statistics and allows easy volunteer contribution. You can run Pootle as an Internet server like these projects or run your own copy on an Intranet. -WWW: http://translate.sourceforge.net/wiki/pootle/index +WWW: http://docs.translatehouse.org/projects/pootle/ diff --git a/textproc/py-openpyxl/Makefile b/textproc/py-openpyxl/Makefile index ab646c0ba46..dae4521a450 100644 --- a/textproc/py-openpyxl/Makefile +++ b/textproc/py-openpyxl/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= openpyxl -PORTVERSION= 2.5.7 +PORTVERSION= 2.5.8 CATEGORIES= textproc python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/textproc/py-openpyxl/distinfo b/textproc/py-openpyxl/distinfo index 566dafcc620..f7c4ad18aef 100644 --- a/textproc/py-openpyxl/distinfo +++ b/textproc/py-openpyxl/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1537302926 -SHA256 (openpyxl-2.5.7.tar.gz) = d3da4d6a78077d6f9fb1a1ec12d4aa500f7caa4661b8528538503b24ed72d632 -SIZE (openpyxl-2.5.7.tar.gz) = 174051 +TIMESTAMP = 1538928990 +SHA256 (openpyxl-2.5.8.tar.gz) = 22904d7bdfaaab33d65d50a0915a65eeb2f29c85d9ec53081563850678a29927 +SIZE (openpyxl-2.5.8.tar.gz) = 1949915 diff --git a/textproc/py-sphinxcontrib-newsfeed/Makefile b/textproc/py-sphinxcontrib-newsfeed/Makefile index 9f43c071c5a..9760fa6d0f3 100644 --- a/textproc/py-sphinxcontrib-newsfeed/Makefile +++ b/textproc/py-sphinxcontrib-newsfeed/Makefile @@ -6,7 +6,7 @@ CATEGORIES= textproc MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -MAINTAINER= lebarondemerde@privacychain.ch +MAINTAINER= rigoletto@FreeBSD.org COMMENT= News Feed extension for Sphinx LICENSE= BSD2CLAUSE diff --git a/textproc/py-ucl/Makefile b/textproc/py-ucl/Makefile index 3d7fa241587..1130711a980 100644 --- a/textproc/py-ucl/Makefile +++ b/textproc/py-ucl/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= ucl -PORTVERSION= 0.8.0 +PORTVERSION= 0.8.1 CATEGORIES= textproc python PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -13,6 +13,8 @@ LICENSE_FILE= ${WRKDIR}/libucl-${PORTVERSION}/COPYING LIB_DEPENDS= libucl.so:textproc/libucl +CFLAGS+= -I${PREFIX}/include + USES= python USE_GITHUB= yes USE_PYTHON= autoplist concurrent distutils diff --git a/textproc/py-ucl/distinfo b/textproc/py-ucl/distinfo index 9548218ea8d..81195d0a0d1 100644 --- a/textproc/py-ucl/distinfo +++ b/textproc/py-ucl/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1475610918 -SHA256 (vstakhov-libucl-0.8.0_GH0.tar.gz) = af361cd1f0b7b66c228a1c04a662ccaa9ee8af79842046c04446d915db349ee1 -SIZE (vstakhov-libucl-0.8.0_GH0.tar.gz) = 2022942 +TIMESTAMP = 1538644381 +SHA256 (vstakhov-libucl-0.8.1_GH0.tar.gz) = a6397e179672f0e8171a0f9a2cfc37e01432b357fd748b13f4394436689d24ef +SIZE (vstakhov-libucl-0.8.1_GH0.tar.gz) = 2028394 diff --git a/textproc/sk-mythes/Makefile b/textproc/sk-mythes/Makefile index 2257d5b872d..df8b3d798ea 100644 --- a/textproc/sk-mythes/Makefile +++ b/textproc/sk-mythes/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= mythes -PORTVERSION= 2018.09.23 +PORTVERSION= 2018.09.30 CATEGORIES= textproc MASTER_SITES= LOCAL/sunpoet/${PORTNAME}/ PKGNAMEPREFIX= sk- diff --git a/textproc/sk-mythes/distinfo b/textproc/sk-mythes/distinfo index d7e785a1cfb..57d26f2d8fa 100644 --- a/textproc/sk-mythes/distinfo +++ b/textproc/sk-mythes/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1537766817 -SHA256 (mythes/OOo-Thesaurus2-sk_SK-20180923.zip) = 2508ac6715409c52967795bc1c16da9de0072d5b2119af8a628db5fb89b6c4c5 -SIZE (mythes/OOo-Thesaurus2-sk_SK-20180923.zip) = 239453 +TIMESTAMP = 1538505330 +SHA256 (mythes/OOo-Thesaurus2-sk_SK-20180930.zip) = bc899a89548ce16253eff6e27a9ca4a861975af6f35fbd1daf0d9c9a439580ef +SIZE (mythes/OOo-Thesaurus2-sk_SK-20180930.zip) = 239453 diff --git a/www/Stikked/Makefile b/www/Stikked/Makefile index 5760807c1ac..2c925a5a995 100644 --- a/www/Stikked/Makefile +++ b/www/Stikked/Makefile @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= Stikked -DISTVERSION= 0.12.0 -PORTREVISION= 1 +DISTVERSION= 0.13.0 CATEGORIES= www MAINTAINER= dvl@FreeBSD.org diff --git a/www/Stikked/distinfo b/www/Stikked/distinfo index 868d944e100..d2eed38c5b4 100644 --- a/www/Stikked/distinfo +++ b/www/Stikked/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1512417548 -SHA256 (claudehohl-Stikked-0.12.0_GH0.tar.gz) = 8323ace7b65c0957ddb005f79a21f3da5c6f311bb74730216cea5f19a19b7e50 -SIZE (claudehohl-Stikked-0.12.0_GH0.tar.gz) = 10641256 +TIMESTAMP = 1538678447 +SHA256 (claudehohl-Stikked-0.13.0_GH0.tar.gz) = bd6695268a899a1d562b0deff1b67e0522f0e0ef818413e392cc182d3aa82566 +SIZE (claudehohl-Stikked-0.13.0_GH0.tar.gz) = 10644340 diff --git a/www/Stikked/pkg-plist b/www/Stikked/pkg-plist index efff7e0e09f..80eb3e65cb8 100644 --- a/www/Stikked/pkg-plist +++ b/www/Stikked/pkg-plist @@ -15,7 +15,6 @@ %%WWWDIR%%/application/config/geshi_languages.php %%WWWDIR%%/application/config/hooks.php %%WWWDIR%%/application/config/index.html -%%WWWDIR%%/application/config/language.php %%WWWDIR%%/application/config/migration.php %%WWWDIR%%/application/config/mimes.php %%WWWDIR%%/application/config/profiler.php @@ -46,7 +45,6 @@ %%WWWDIR%%/application/helpers/language_helper.php %%WWWDIR%%/application/helpers/recaptcha_helper.php %%WWWDIR%%/application/hooks/index.html -%%WWWDIR%%/application/hooks/pick_language.php %%WWWDIR%%/application/index.html %%WWWDIR%%/application/language/chinese-simplified/date_lang.php %%WWWDIR%%/application/language/chinese-simplified/form_validation_lang.php diff --git a/www/UniversalFeedCreator/Makefile b/www/UniversalFeedCreator/Makefile index 5af32025a5b..9b695ad016a 100644 --- a/www/UniversalFeedCreator/Makefile +++ b/www/UniversalFeedCreator/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= UniversalFeedCreator -PORTVERSION= 1.8.3 +PORTVERSION= 1.8.3.1 DISTVERSIONPREFIX= v PORTREVISION= 0 CATEGORIES= www diff --git a/www/UniversalFeedCreator/distinfo b/www/UniversalFeedCreator/distinfo index 1befc6c0d7e..c03e198ed7b 100644 --- a/www/UniversalFeedCreator/distinfo +++ b/www/UniversalFeedCreator/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1509638718 -SHA256 (flack-UniversalFeedCreator-v1.8.3_GH0.tar.gz) = f98b18c5b975aea0bdd398ff3a7fd3ce3ce9e31c61ea9f51359c55fcb48cff89 -SIZE (flack-UniversalFeedCreator-v1.8.3_GH0.tar.gz) = 19524 +TIMESTAMP = 1538672535 +SHA256 (flack-UniversalFeedCreator-v1.8.3.1_GH0.tar.gz) = 3cf343a3f26b5243b757a2263b6f97a7eb3ab0579c2c473263958876dbb35c10 +SIZE (flack-UniversalFeedCreator-v1.8.3.1_GH0.tar.gz) = 19535 diff --git a/www/bolt/Makefile b/www/bolt/Makefile index bbd53b9f472..cff397f8d9c 100644 --- a/www/bolt/Makefile +++ b/www/bolt/Makefile @@ -7,7 +7,7 @@ PORTREVISION= 0 CATEGORIES= www MASTER_SITES= https://bolt.cm/distribution/ -MAINTAINER= feld@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Sophisticated, lightweight & simple CMS LICENSE= MIT diff --git a/www/choqok-kde4/Makefile b/www/choqok-kde4/Makefile index b01e28271e2..8f3a48d477b 100644 --- a/www/choqok-kde4/Makefile +++ b/www/choqok-kde4/Makefile @@ -19,7 +19,7 @@ EXPIRATION_DATE= 2018-12-31 LIB_DEPENDS= libqjson.so:devel/qjson@qt4 \ libqoauth.so:net/qoauth \ - libtelepathy-qt4.so:net-im/telepathy-qt4 + libtelepathy-qt4.so:net-im/telepathy-qt@qt4 USES= cmake gettext kde:4 qt:4 tar:xz USE_KDE= attica automoc4 kdelibs diff --git a/www/choqok/Makefile b/www/choqok/Makefile index 34a7511ebb9..af0ee441811 100644 --- a/www/choqok/Makefile +++ b/www/choqok/Makefile @@ -16,7 +16,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libqjson-qt5.so:devel/qjson@qt5 \ libqca-qt5.so:devel/qca@qt5 \ libqoauth-qt5.so:net/qoauth-qt5 \ - libtelepathy-qt5.so:net-im/telepathy-qt5 + libtelepathy-qt5.so:net-im/telepathy-qt@qt5 USES= cmake:outsource compiler:c++11-lib gettext kde:5 pkgconfig qt:5 tar:xz USE_KDE= attica auth bookmarks codecs completion config configwidgets \ diff --git a/www/davical/Makefile b/www/davical/Makefile index 8218aeadd6d..906032cc38d 100644 --- a/www/davical/Makefile +++ b/www/davical/Makefile @@ -6,7 +6,7 @@ DISTVERSIONPREFIX= r DISTVERSION= 1.1.7 CATEGORIES?= www -MAINTAINER= lebarondemerde@privacychain.ch +MAINTAINER= rigoletto@FreeBSD.org COMMENT= Simple CalDAV server using a postgres backend LICENSE= GPLv2 LGPL21 diff --git a/www/davix/Makefile b/www/davix/Makefile index 89739b398dd..b3b61ffb3de 100644 --- a/www/davix/Makefile +++ b/www/davix/Makefile @@ -1,9 +1,13 @@ # $FreeBSD$ PORTNAME= davix -DISTVERSIONPREFIX= R_ -DISTVERSION= 0_6_8 +DISTVERSION= 0.6.9 +PORTREVISION= 1 CATEGORIES= www +MASTER_SITES= http://grid-deployment.web.cern.ch/grid-deployment/dms/lcgutil/tar/davix/${DISTVERSION}/ + +PATCH_SITES= https://github.com/cern-fts/davix/commit/ +PATCHFILES= 8e6386f64187cf32a32627033105e3a641f6b3d2.patch:-p1 MAINTAINER= yuri@FreeBSD.org COMMENT= Make the task of managing files over HTTP-based protocols simple @@ -13,11 +17,8 @@ LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libuuid.so:misc/e2fsprogs-libuuid -PORTSCOUT= limit:^.*\.[0-9]+$$ - -USES= cmake compiler:c++11-lang localbase ssl -USE_GITHUB= yes -GH_ACCOUNT= cern-it-sdc-id +USES= cmake:outsource compiler:c++11-lang gnome localbase:ldflags python:build shebangfix ssl +SHEBANG_GLOB= *.py USE_GNOME= libxml2 USE_LDCONFIG= yes @@ -26,4 +27,10 @@ PLIST_SUB= PORTVERSION=${PORTVERSION} post-install: @${RM} -r ${STAGEDIR}${DOCSDIR} +do-test: # tests are known to fail: https://github.com/cern-fts/davix/issues/33 + @cd ${BUILD_WRKSRC} && \ + ${SETENV} ${CONFIGURE_ENV} ${CMAKE_BIN} ${CMAKE_ARGS} -DUNIT_TESTS=ON FUNCTIONAL_TESTS=ON BENCH_TESTS=ON ${CMAKE_SOURCE_PATH} && \ + ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} ${ALL_TARGET} && \ + ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} test + .include diff --git a/www/davix/distinfo b/www/davix/distinfo index 7ee273981e7..a43e387374f 100644 --- a/www/davix/distinfo +++ b/www/davix/distinfo @@ -1,3 +1,5 @@ -TIMESTAMP = 1531096792 -SHA256 (cern-it-sdc-id-davix-R_0_6_8_GH0.tar.gz) = 722f522f5d6cad15cb6b840967417f870d465fc1a98b04295718a72e5018a0b6 -SIZE (cern-it-sdc-id-davix-R_0_6_8_GH0.tar.gz) = 3033447 +TIMESTAMP = 1538623319 +SHA256 (davix-0.6.9.tar.gz) = fbd97eb5fdf82ca48770d06bf8e2805b35f23255478aa381a9d25a49eb98e348 +SIZE (davix-0.6.9.tar.gz) = 4333197 +SHA256 (8e6386f64187cf32a32627033105e3a641f6b3d2.patch) = 5666a12d11cfb4e2278e4488031aea4c061f12409bd60805052b1e620be66ab4 +SIZE (8e6386f64187cf32a32627033105e3a641f6b3d2.patch) = 951 diff --git a/www/davix/files/patch-src_libs_datetime_datetime__utils.cpp b/www/davix/files/patch-src_libs_datetime_datetime__utils.cpp deleted file mode 100644 index a467cd259e8..00000000000 --- a/www/davix/files/patch-src_libs_datetime_datetime__utils.cpp +++ /dev/null @@ -1,44 +0,0 @@ ---- src/libs/datetime/datetime_utils.cpp.orig 2018-06-16 07:41:55 UTC -+++ src/libs/datetime/datetime_utils.cpp -@@ -19,6 +19,7 @@ - */ - - #include -+#include - #include "datetime_utils.hpp" - - time_t parse_http_date(const char* http_date){ -@@ -32,7 +33,15 @@ time_t parse_http_date(const char* http_ - if ( p == NULL || *p != '\0'){ - return -1; - } -- return mktime(&tm) - timezone;; -+ int _timezone = 0; -+ { -+ struct timeval tv; -+ struct timezone tz; -+ gettimeofday( &tv, &tz ); -+ _timezone = -tz.tz_minuteswest * 60; -+ } -+ -+ return mktime(&tm) - _timezone;; - - } - -@@ -70,8 +79,15 @@ time_t parse_iso8601date(const char* iso - } - } - -+ int _timezone = 0; -+ { -+ struct timeval tv; -+ struct timezone tz; -+ gettimeofday( &tv, &tz ); -+ _timezone = -tz.tz_minuteswest * 60; -+ } - -- return mktime(&tm_time) - timezone; -+ return mktime(&tm_time) - _timezone; - - } - diff --git a/www/davix/files/patch-test_bench_CMakeLists.txt b/www/davix/files/patch-test_bench_CMakeLists.txt new file mode 100644 index 00000000000..e5bac2d91e3 --- /dev/null +++ b/www/davix/files/patch-test_bench_CMakeLists.txt @@ -0,0 +1,11 @@ +--- test/bench/CMakeLists.txt.orig 2018-10-02 17:06:04 UTC ++++ test/bench/CMakeLists.txt +@@ -7,7 +7,7 @@ LIST(APPEND src_davix_bench "davix_bench + #include_directories(/usr/include/davix) + + add_executable(davix-bench ${src_davix_bench}) +-target_link_libraries(davix-bench libdavix ${CMAKE_THREAD_LIBS_INIT}) ++target_link_libraries(davix-bench libdavix ${CMAKE_THREAD_LIBS_INIT} uuid) + + function(test_read url opt input) + add_test(test_bench_read_${url} davix-bench ${opt} ${url} ${input}) diff --git a/www/davix/files/patch-test_functional_CMakeLists.txt b/www/davix/files/patch-test_functional_CMakeLists.txt new file mode 100644 index 00000000000..c1496527e79 --- /dev/null +++ b/www/davix/files/patch-test_functional_CMakeLists.txt @@ -0,0 +1,11 @@ +--- test/functional/CMakeLists.txt.orig 2018-10-02 17:09:41 UTC ++++ test/functional/CMakeLists.txt +@@ -83,7 +83,7 @@ add_library(test_davix_functional_lib ST + #target_link_libraries(test_mv libdavix test_davix_functional_lib) + + add_executable(tester ${src_tester}) +-target_link_libraries(tester libdavix test_davix_functional_lib) ++target_link_libraries(tester libdavix test_davix_functional_lib uuid) + + function(assert_not_empty var) + if("${var}" STREQUAL "") diff --git a/www/davix/files/patch-test_unit_CMakeLists.txt b/www/davix/files/patch-test_unit_CMakeLists.txt new file mode 100644 index 00000000000..61be22f9169 --- /dev/null +++ b/www/davix/files/patch-test_unit_CMakeLists.txt @@ -0,0 +1,11 @@ +--- test/unit/CMakeLists.txt.orig 2018-10-02 17:02:58 UTC ++++ test/unit/CMakeLists.txt +@@ -33,7 +33,7 @@ add_executable(g_test_unit_davix_exe ${s + ${src_httprequest} ${src_datetime} ${src_neon} ${src_parser} ${src_auth} ${src_utils} ${src_parser} ${SRC_BASE64} + ${SRC_HMACSHA1} ${src_files} ${src_alibxx}) + +-target_link_libraries(g_test_unit_davix_exe alibxx_core davix_tool_lib libdavix gtest gtest_main ${CMAKE_THREAD_LIBS_INIT} ${LIBSSL_PKG_LIBRARIES}) ++target_link_libraries(g_test_unit_davix_exe alibxx_core davix_tool_lib libdavix gtest gtest_main ${CMAKE_THREAD_LIBS_INIT} ${LIBSSL_PKG_LIBRARIES} uuid) + add_dependencies(g_test_unit_davix_exe libdavix) + + diff --git a/www/fancybox/Makefile b/www/fancybox/Makefile index f4f4a239ea2..1aa467fb862 100644 --- a/www/fancybox/Makefile +++ b/www/fancybox/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= fancybox -PORTVERSION= 3.4.2 +PORTVERSION= 3.5.0 DISTVERSIONPREFIX= v CATEGORIES= www diff --git a/www/fancybox/distinfo b/www/fancybox/distinfo index 00d7d62b18a..a1bc2526927 100644 --- a/www/fancybox/distinfo +++ b/www/fancybox/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1537608122 -SHA256 (fancyapps-fancybox-v3.4.2_GH0.tar.gz) = b1f0aba343f5ae3f532e7885a893b77b9288e7c9320e80d9a872f37fbb953017 -SIZE (fancyapps-fancybox-v3.4.2_GH0.tar.gz) = 127949 +TIMESTAMP = 1538591536 +SHA256 (fancyapps-fancybox-v3.5.0_GH0.tar.gz) = 00e504858d2f049a3ac0ccdef0d020d0484b9d96ddaed069e8d9dfdcb58b2f6e +SIZE (fancyapps-fancybox-v3.5.0_GH0.tar.gz) = 130093 diff --git a/www/gitlab-ce/Makefile b/www/gitlab-ce/Makefile index e6c4833402f..cd21af828fe 100644 --- a/www/gitlab-ce/Makefile +++ b/www/gitlab-ce/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= gitlab-ce -PORTVERSION= 11.3.1 +PORTVERSION= 11.3.4 CATEGORIES= www devel MAINTAINER= mfechner@FreeBSD.org @@ -218,7 +218,7 @@ USE_RC_SUBR= gitlab USE_GITLAB= yes GL_ACCOUNT= gitlab-org # Find the here: https://gitlab.com/gitlab-org/gitlab-ce/tags -GL_COMMIT= 32cb452ee039e11b42933646f982b5e36363d360 +GL_COMMIT= 30f019dca78bb64bcb8b355a267be006884e6d8f USERS= git GROUPS= git diff --git a/www/gitlab-ce/distinfo b/www/gitlab-ce/distinfo index e628b4a0014..e7eb18dd2d4 100644 --- a/www/gitlab-ce/distinfo +++ b/www/gitlab-ce/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1538419242 -SHA256 (gitlab-org-gitlab-ce-32cb452ee039e11b42933646f982b5e36363d360_GL0.tar.gz) = fd5f44632b842c117362ec105ff4a6130706d13a29ce5bf95724671126f8f784 -SIZE (gitlab-org-gitlab-ce-32cb452ee039e11b42933646f982b5e36363d360_GL0.tar.gz) = 42434337 +TIMESTAMP = 1538768604 +SHA256 (gitlab-org-gitlab-ce-30f019dca78bb64bcb8b355a267be006884e6d8f_GL0.tar.gz) = 160f74ee44d034ca5a2b804856d5b132951461b41bac6ac2a14324ee822641d5 +SIZE (gitlab-org-gitlab-ce-30f019dca78bb64bcb8b355a267be006884e6d8f_GL0.tar.gz) = 42469501 diff --git a/www/gitlab-ce/pkg-plist b/www/gitlab-ce/pkg-plist index e3c9c77bcbb..355fe2f8399 100644 --- a/www/gitlab-ce/pkg-plist +++ b/www/gitlab-ce/pkg-plist @@ -11288,6 +11288,7 @@ %%WWWDIR%%/spec/fixtures/api/schemas/entities/merge_request_basic.json %%WWWDIR%%/spec/fixtures/api/schemas/entities/merge_request_metrics.json %%WWWDIR%%/spec/fixtures/api/schemas/entities/merge_request_widget.json +%%WWWDIR%%/spec/fixtures/api/schemas/entities/note_user_entity.json %%WWWDIR%%/spec/fixtures/api/schemas/entities/test_case.json %%WWWDIR%%/spec/fixtures/api/schemas/entities/test_reports_comparer.json %%WWWDIR%%/spec/fixtures/api/schemas/entities/test_suite_comparer.json diff --git a/www/ilias/Makefile b/www/ilias/Makefile index 67c11a4e5dc..e23e34c0d0b 100644 --- a/www/ilias/Makefile +++ b/www/ilias/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= ilias -PORTVERSION= 5.3.8 +PORTVERSION= 5.3.10 DISTVERSIONPREFIX= v CATEGORIES= www diff --git a/www/ilias/distinfo b/www/ilias/distinfo index f2a2a20390d..7635df6c328 100644 --- a/www/ilias/distinfo +++ b/www/ilias/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1535675357 -SHA256 (ILIAS-eLearning-ILIAS-v5.3.8_GH0.tar.gz) = cf5c79c5a8d1305b26ccb750afa9862787466226d1135a9125277f39601dd0e7 -SIZE (ILIAS-eLearning-ILIAS-v5.3.8_GH0.tar.gz) = 177802028 +TIMESTAMP = 1538706680 +SHA256 (ILIAS-eLearning-ILIAS-v5.3.10_GH0.tar.gz) = c53b6948c5bf88bbde01bb36ddd7fd3361b093d06451895909125258072b3c39 +SIZE (ILIAS-eLearning-ILIAS-v5.3.10_GH0.tar.gz) = 178067168 diff --git a/www/minio-client/Makefile b/www/minio-client/Makefile index 5a226d53a47..7d4284aef4c 100644 --- a/www/minio-client/Makefile +++ b/www/minio-client/Makefile @@ -9,6 +9,8 @@ COMMENT= Replacement for ls, cp, mkdir, diff and rsync commands for filesystems LICENSE= APACHE20 +BROKEN_amd64= github.com/minio/mc/vendor/golang.org/x/crypto/blake2b.supportsAVX2: relocation target runtime.support_avx2 not defined + BUILD_DEPENDS= go>=1.9.4:lang/go \ bash:shells/bash diff --git a/www/mod_auth_openidc/Makefile b/www/mod_auth_openidc/Makefile index c27d921141f..0f53bfda1b9 100644 --- a/www/mod_auth_openidc/Makefile +++ b/www/mod_auth_openidc/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= mod_auth_openidc -PORTVERSION= 2.3.5 +PORTVERSION= 2.3.8 DISTVERSIONPREFIX= v CATEGORIES= www PKGNAMEPREFIX= ${APACHE_PKGNAMEPREFIX} diff --git a/www/mod_auth_openidc/distinfo b/www/mod_auth_openidc/distinfo index c1ad19be874..b39a3fa9e6c 100644 --- a/www/mod_auth_openidc/distinfo +++ b/www/mod_auth_openidc/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1526867206 -SHA256 (pingidentity-mod_auth_openidc-v2.3.5_GH0.tar.gz) = 63b210ec7aaa121dc29eacc62af54059b11a14077b7b0634196f6741bce2fa95 -SIZE (pingidentity-mod_auth_openidc-v2.3.5_GH0.tar.gz) = 216759 +TIMESTAMP = 1538925830 +SHA256 (pingidentity-mod_auth_openidc-v2.3.8_GH0.tar.gz) = bdeaf219a18ef18654784e8866e1affa0695bcbb693131e2b41f7e96239ce9b8 +SIZE (pingidentity-mod_auth_openidc-v2.3.8_GH0.tar.gz) = 221846 diff --git a/www/mod_cloudflare/Makefile b/www/mod_cloudflare/Makefile index 006ccbe67fa..11af5d9e41e 100644 --- a/www/mod_cloudflare/Makefile +++ b/www/mod_cloudflare/Makefile @@ -5,7 +5,7 @@ PORTNAME= mod_cloudflare PORTVERSION= 0.0.2016.6.0 CATEGORIES= www -MAINTAINER= feld@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Cloudflare fork of mod_remoteip LICENSE= APACHE20 diff --git a/www/nghttp2/Makefile b/www/nghttp2/Makefile index 270270bd173..e30243ae555 100644 --- a/www/nghttp2/Makefile +++ b/www/nghttp2/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= nghttp2 -PORTVERSION= 1.33.0 +PORTVERSION= 1.34.0 DISTVERSIONPREFIX= v CATEGORIES= www net diff --git a/www/nghttp2/distinfo b/www/nghttp2/distinfo index 2d1d28bb3d2..8c576454d47 100644 --- a/www/nghttp2/distinfo +++ b/www/nghttp2/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1535987260 -SHA256 (nghttp2-nghttp2-v1.33.0_GH0.tar.gz) = 60c5b7e2b6a2da05b980014ee14a4b77198ad1cce81b5a13d01fd521f5c23b9d -SIZE (nghttp2-nghttp2-v1.33.0_GH0.tar.gz) = 1751546 +TIMESTAMP = 1538662894 +SHA256 (nghttp2-nghttp2-v1.34.0_GH0.tar.gz) = a0ca4071e59cb1a08cbc40e86127f42c6c7f5ae98d121094d917f81fc6fa0728 +SIZE (nghttp2-nghttp2-v1.34.0_GH0.tar.gz) = 1760930 diff --git a/www/nginx-devel/Makefile b/www/nginx-devel/Makefile index cbb298e3454..a92a215ac26 100644 --- a/www/nginx-devel/Makefile +++ b/www/nginx-devel/Makefile @@ -2,7 +2,8 @@ # $FreeBSD$ PORTNAME= nginx -PORTVERSION= 1.15.4 +PORTVERSION= 1.15.5 +PORTREVISION= 2 CATEGORIES= www MASTER_SITES= http://nginx.org/download/ \ LOCAL/osa diff --git a/www/nginx-devel/Makefile.extmod b/www/nginx-devel/Makefile.extmod index 951cdb7222e..e5de1cfb6de 100644 --- a/www/nginx-devel/Makefile.extmod +++ b/www/nginx-devel/Makefile.extmod @@ -125,7 +125,7 @@ HTTP_NOTICE_GH_TUPLE= kr:nginx-notice:3c95966:notice HTTP_NOTICE_CONFIGURE_ON= --add-module=${WRKSRC_notice} HTTP_NOTICE_EXTRA_PATCHES= ${PATCHDIR}/extra-patch-ngx_http_notice_module.c -HTTP_PUSH_GH_TUPLE= slact:nchan:v1.1.14:push +HTTP_PUSH_GH_TUPLE= slact:nchan:v1.2.1:push HTTP_PUSH_VARS= DSO_EXTMODS+=push HTTP_PUSH_STREAM_GH_TUPLE= wandenberg:nginx-push-stream-module:0.5.4:pushstream @@ -281,7 +281,7 @@ VOD_VARS= DSO_EXTMODS+=vod VOD_EXTRA_PATCHES= ${PATCHDIR}/extra-patch-nginx-vod-module-config \ ${PATCHDIR}/extra-patch-vod-filters-audio_encoder.c -VTS_GH_TUPLE= vozlt:nginx-module-vts:v0.1.15:vts +VTS_GH_TUPLE= vozlt:nginx-module-vts:v0.1.18:vts VTS_CONFIGURE_ON= --add-module=${WRKSRC_vts} XSS_GH_TUPLE= openresty:xss-nginx-module:v0.05:xss diff --git a/www/nginx-devel/distinfo b/www/nginx-devel/distinfo index aa9eb1bec69..cb20b57734e 100644 --- a/www/nginx-devel/distinfo +++ b/www/nginx-devel/distinfo @@ -1,6 +1,6 @@ -TIMESTAMP = 1537907181 -SHA256 (nginx-1.15.4.tar.gz) = 3324776c800d974ceae8797ab9102ca26a8c3656f5c6fb3f31f2cb1e719458e7 -SIZE (nginx-1.15.4.tar.gz) = 1024694 +TIMESTAMP = 1538918416 +SHA256 (nginx-1.15.5.tar.gz) = 1a3a889a8f14998286de3b14cc1dd5b2747178e012d6d480a18aa413985dae6f +SIZE (nginx-1.15.5.tar.gz) = 1024791 SHA256 (ngx_cache_purge-2.3.tar.gz) = 279e0d8a46d3b1521fd43b3f78bc1c08b263899142a7cc5058c1c0361a92c89c SIZE (ngx_cache_purge-2.3.tar.gz) = 12248 SHA256 (nginx_mogilefs_module-1.0.4.tar.gz) = 7ac230d30907f013dff8d435a118619ea6168aa3714dba62c6962d350c6295ae @@ -73,8 +73,8 @@ SHA256 (nginx-modules-ngx_http_json_status_module-1d2f303_GH0.tar.gz) = fdc34e0e SIZE (nginx-modules-ngx_http_json_status_module-1d2f303_GH0.tar.gz) = 6736 SHA256 (kr-nginx-notice-3c95966_GH0.tar.gz) = e829fc94178cc8c91fef15a1fc44ee7ac162c13eddc0bba4c9427aaa23386885 SIZE (kr-nginx-notice-3c95966_GH0.tar.gz) = 3343 -SHA256 (slact-nchan-v1.1.14_GH0.tar.gz) = 70b38d9e54826b2a69a9a5f3de5fb0e25fb03177ec3ac0bc69b9fd2c087143b8 -SIZE (slact-nchan-v1.1.14_GH0.tar.gz) = 630564 +SHA256 (slact-nchan-v1.2.1_GH0.tar.gz) = 7bb3ae57a036afabee1da5e40085b69b3fd68026fcc1d8abc98a8ad9f5dccc44 +SIZE (slact-nchan-v1.2.1_GH0.tar.gz) = 645188 SHA256 (wandenberg-nginx-push-stream-module-0.5.4_GH0.tar.gz) = 5253bb8a804ea679e514137a234637298f044c3ef63c053670bf3802ff3535b1 SIZE (wandenberg-nginx-push-stream-module-0.5.4_GH0.tar.gz) = 183493 SHA256 (yaoweibin-ngx_http_substitutions_filter_module-v0.6.4_GH0.tar.gz) = ed4ddbcf0c434f4a1e97b61251a63ace759792764bd5cb79ff20efe348db8db3 @@ -131,7 +131,7 @@ SHA256 (openresty-srcache-nginx-module-v0.31_GH0.tar.gz) = 3f9729e73a8340926fa9d SIZE (openresty-srcache-nginx-module-v0.31_GH0.tar.gz) = 48310 SHA256 (kaltura-nginx-vod-module-1.23_GH0.tar.gz) = 800cf3de639567e27f4cb75527392f23842b349fb680abefd12d4db9a5be951f SIZE (kaltura-nginx-vod-module-1.23_GH0.tar.gz) = 442053 -SHA256 (vozlt-nginx-module-vts-v0.1.15_GH0.tar.gz) = 5112a054b1b1edb4c0042a9a840ef45f22abb3c05c68174e28ebf483164fb7e1 -SIZE (vozlt-nginx-module-vts-v0.1.15_GH0.tar.gz) = 371128 +SHA256 (vozlt-nginx-module-vts-v0.1.18_GH0.tar.gz) = 17ea41d4083f6d1ab1ab83dad9160eeca66867abe16c5a0421f85a39d7c84b65 +SIZE (vozlt-nginx-module-vts-v0.1.18_GH0.tar.gz) = 380327 SHA256 (openresty-xss-nginx-module-v0.05_GH0.tar.gz) = 958bd8de773601d8d3138501cc4be0420f1c818a3987a70cc9c0023371e432cf SIZE (openresty-xss-nginx-module-v0.05_GH0.tar.gz) = 11477 diff --git a/www/osrm-backend/Makefile b/www/osrm-backend/Makefile index ea394a82b93..8b40eac7151 100644 --- a/www/osrm-backend/Makefile +++ b/www/osrm-backend/Makefile @@ -3,7 +3,7 @@ PORTNAME= osrm-backend DISTVERSIONPREFIX= v DISTVERSION= 5.17.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= www MAINTAINER= a.andersson.thn@gmail.com diff --git a/www/p5-AMF-Perl/Makefile b/www/p5-AMF-Perl/Makefile index 431f9e79004..4cb9bceca70 100644 --- a/www/p5-AMF-Perl/Makefile +++ b/www/p5-AMF-Perl/Makefile @@ -15,9 +15,9 @@ COMMENT= Flash Remoting in Perl LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-DBI>=0:databases/p5-DBI \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-DBI>=0:databases/p5-DBI \ p5-Exception-Class>=0:devel/p5-Exception-Class -RUN_DEPENDS= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/www/p5-AnyEvent-HTTP/Makefile b/www/p5-AnyEvent-HTTP/Makefile index 7670db4c90d..a515e8bae57 100644 --- a/www/p5-AnyEvent-HTTP/Makefile +++ b/www/p5-AnyEvent-HTTP/Makefile @@ -15,9 +15,9 @@ COMMENT= Simple but non-blocking HTTP/HTTPS client LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-AnyEvent>=5.33:devel/p5-AnyEvent \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-AnyEvent>=5.33:devel/p5-AnyEvent \ p5-common-sense>=3.3:devel/p5-common-sense -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/www/p5-Apache-ASP/Makefile b/www/p5-Apache-ASP/Makefile index b5496ae6a62..87555063469 100644 --- a/www/p5-Apache-ASP/Makefile +++ b/www/p5-Apache-ASP/Makefile @@ -13,7 +13,8 @@ COMMENT= Active Server Pages for Apache LICENSE= GPLv2 -BUILD_DEPENDS= p5-Devel-Symdump>=0:devel/p5-Devel-Symdump \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Devel-Symdump>=0:devel/p5-Devel-Symdump \ p5-HTML-Clean>=0:www/p5-HTML-Clean \ p5-HTML-FillInForm>=0:www/p5-HTML-FillInForm \ p5-HTTP-Date>=0:www/p5-HTTP-Date \ @@ -21,7 +22,6 @@ BUILD_DEPENDS= p5-Devel-Symdump>=0:devel/p5-Devel-Symdump \ p5-MLDBM-Sync>=0.25:databases/p5-MLDBM-Sync \ p5-Tie-Cache>=0:devel/p5-Tie-Cache \ p5-XML-LibXSLT>=0:textproc/p5-XML-LibXSLT -RUN_DEPENDS:= ${BUILD_DEPENDS} # XXX not tested with mod_perl2, but mod_perl was removed ... #.if !defined(WITHOUT_MODPERL) diff --git a/www/p5-Apache-AuthCookie/Makefile b/www/p5-Apache-AuthCookie/Makefile index c87fc43f03a..79be130d627 100644 --- a/www/p5-Apache-AuthCookie/Makefile +++ b/www/p5-Apache-AuthCookie/Makefile @@ -14,12 +14,12 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= ${APACHE_PKGNAMEPREFIX}mod_perl2>=1.39:www/mod_perl2 \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= ${APACHE_PKGNAMEPREFIX}mod_perl2>=1.39:www/mod_perl2 \ p5-Class-Load>=0.03:devel/p5-Class-Load \ p5-Hash-MultiValue>=0:devel/p5-Hash-MultiValue \ p5-HTTP-Body>=0:www/p5-HTTP-Body \ p5-WWW-Form-UrlEncoded>=0:www/p5-WWW-Form-UrlEncoded -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-URI>=1.71:net/p5-URI NO_ARCH= yes diff --git a/www/p5-Apache-AuthTicket/Makefile b/www/p5-Apache-AuthTicket/Makefile index 5d872eaca4e..28165118ea6 100644 --- a/www/p5-Apache-AuthTicket/Makefile +++ b/www/p5-Apache-AuthTicket/Makefile @@ -14,7 +14,8 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= ${APACHE_PKGNAMEPREFIX}mod_perl2>=1.9922:www/mod_perl2 \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= ${APACHE_PKGNAMEPREFIX}mod_perl2>=1.9922:www/mod_perl2 \ p5-Apache-AuthCookie>=3.0:www/p5-Apache-AuthCookie \ p5-CGI>=3.12:www/p5-CGI \ p5-Class-Accessor>=0:devel/p5-Class-Accessor \ @@ -22,7 +23,6 @@ BUILD_DEPENDS= ${APACHE_PKGNAMEPREFIX}mod_perl2>=1.9922:www/mod_perl2 \ p5-MRO-Compat>=0:devel/p5-MRO-Compat \ p5-ModPerl-VersionUtil>=0:www/p5-ModPerl-VersionUtil \ p5-SQL-Abstract>=0:databases/p5-SQL-Abstract -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= apache:2.2+ perl5 diff --git a/www/p5-Apache-Clean2/Makefile b/www/p5-Apache-Clean2/Makefile index 2d27fc03d38..236461e81f9 100644 --- a/www/p5-Apache-Clean2/Makefile +++ b/www/p5-Apache-Clean2/Makefile @@ -12,9 +12,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Mod_perl interface into HTML::Clean -BUILD_DEPENDS= ${APACHE_PKGNAMEPREFIX}mod_perl2>=0:www/mod_perl2 \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= ${APACHE_PKGNAMEPREFIX}mod_perl2>=0:www/mod_perl2 \ p5-HTML-Clean>=0.8:www/p5-HTML-Clean -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= apache:2.2+ perl5 USE_PERL5= configure diff --git a/www/p5-Apache-ConfigParser/Makefile b/www/p5-Apache-ConfigParser/Makefile index 1541da1ab20..3b1acdb97f7 100644 --- a/www/p5-Apache-ConfigParser/Makefile +++ b/www/p5-Apache-ConfigParser/Makefile @@ -10,9 +10,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Load Apache configuration files -BUILD_DEPENDS= p5-File-FnMatch>=0:devel/p5-File-FnMatch \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-File-FnMatch>=0:devel/p5-File-FnMatch \ p5-Tree-DAG_Node>=0:devel/p5-Tree-DAG_Node -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-Apache-DBI/Makefile b/www/p5-Apache-DBI/Makefile index 8a2b3459a98..40c45cc2613 100644 --- a/www/p5-Apache-DBI/Makefile +++ b/www/p5-Apache-DBI/Makefile @@ -14,9 +14,9 @@ COMMENT= DBI persistent connection, authentication and authorization LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-DBI>=0:databases/p5-DBI \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-DBI>=0:databases/p5-DBI \ ${APACHE_PKGNAMEPREFIX}mod_perl2>=0:www/mod_perl2 -RUN_DEPENDS:= ${BUILD_DEPENDS} CONFLICTS= p5-Apache-DBI-mp[12]* diff --git a/www/p5-Apache-Gallery/Makefile b/www/p5-Apache-Gallery/Makefile index 2223afc7fa6..7ad89200659 100644 --- a/www/p5-Apache-Gallery/Makefile +++ b/www/p5-Apache-Gallery/Makefile @@ -15,14 +15,14 @@ COMMENT= Apache::Gallery - mod_perl handler to create an image gallery LICENSE= ART10 -BUILD_DEPENDS= p5-URI>=0:net/p5-URI \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-URI>=0:net/p5-URI \ p5-Text-Template>=0:textproc/p5-Text-Template \ p5-Image-Info>=0:graphics/p5-Image-Info \ p5-Image-Size>=0:graphics/p5-Image-Size \ p5-Image-Imlib2>=0:graphics/p5-Image-Imlib2 \ p5-libapreq2>=0:www/p5-libapreq2 \ p5-CGI>=0:www/p5-CGI -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= apache:2.2+ perl5 USE_PERL5= configure diff --git a/www/p5-Apache-MP3/Makefile b/www/p5-Apache-MP3/Makefile index 7674277ec35..3203fa05bbf 100644 --- a/www/p5-Apache-MP3/Makefile +++ b/www/p5-Apache-MP3/Makefile @@ -11,13 +11,13 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= MP3 browsing and streaming under mod_perl and Apache -BUILD_DEPENDS= p5-Audio-Wav>=0:audio/p5-Audio-Wav \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Audio-Wav>=0:audio/p5-Audio-Wav \ p5-CGI>=4.03:www/p5-CGI \ p5-CGI-Session>=0:www/p5-CGI-Session \ p5-MP3-Info>=0:audio/p5-MP3-Info \ p5-Ogg-Vorbis-Header>=0:audio/p5-Ogg-Vorbis-Header \ ${APACHE_PKGNAMEPREFIX}mod_perl2>=0:www/mod_perl2 -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= apache:2.2+ perl5 USE_PERL5= configure diff --git a/www/p5-Apache-ParseFormData/Makefile b/www/p5-Apache-ParseFormData/Makefile index cc5bdb040a7..e7cb4061bad 100644 --- a/www/p5-Apache-ParseFormData/Makefile +++ b/www/p5-Apache-ParseFormData/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= nistor@snickers.org COMMENT= Module allows you to easily decode/parse form and query data -BUILD_DEPENDS= ${APACHE_PKGNAMEPREFIX}mod_perl2>=0:www/mod_perl2 -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= ${APACHE_PKGNAMEPREFIX}mod_perl2>=0:www/mod_perl2 USES= apache:2.2+ perl5 USE_PERL5= configure diff --git a/www/p5-Apache-Profiler/Makefile b/www/p5-Apache-Profiler/Makefile index 1930a6cc113..84478cf63a5 100644 --- a/www/p5-Apache-Profiler/Makefile +++ b/www/p5-Apache-Profiler/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Profiles time seconds needed for every request -BUILD_DEPENDS= mp2bug:www/mod_perl2 -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= mp2bug:www/mod_perl2 USES= perl5 USE_PERL5= configure diff --git a/www/p5-Apache-Session-PHP/Makefile b/www/p5-Apache-Session-PHP/Makefile index 29af4848e06..c9c22540c65 100644 --- a/www/p5-Apache-Session-PHP/Makefile +++ b/www/p5-Apache-Session-PHP/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Glue Apache::Session with PHP::Session -BUILD_DEPENDS= p5-PHP-Session>=0:www/p5-PHP-Session \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-PHP-Session>=0:www/p5-PHP-Session \ p5-Apache-Session>=0:www/p5-Apache-Session -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-Apache-Session-SQLite3/Makefile b/www/p5-Apache-Session-SQLite3/Makefile index 52a0582bb6c..aa02ff4f382 100644 --- a/www/p5-Apache-Session-SQLite3/Makefile +++ b/www/p5-Apache-Session-SQLite3/Makefile @@ -14,9 +14,9 @@ COMMENT= Use DBD::SQLite 1.x for Apache::Session storage LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Apache-Session>=0:www/p5-Apache-Session \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Apache-Session>=0:www/p5-Apache-Session \ p5-DBD-SQLite>=0:databases/p5-DBD-SQLite -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-Apache-Session-SharedMem/Makefile b/www/p5-Apache-Session-SharedMem/Makefile index a49abf2c61d..55dd422658e 100644 --- a/www/p5-Apache-Session-SharedMem/Makefile +++ b/www/p5-Apache-Session-SharedMem/Makefile @@ -14,9 +14,9 @@ COMMENT= Apache::Session extension that store session in shared memory LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-IPC-Cache>=0:devel/p5-IPC-Cache \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-IPC-Cache>=0:devel/p5-IPC-Cache \ p5-Apache-Session>=0:www/p5-Apache-Session -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-Apache-Session-Wrapper/Makefile b/www/p5-Apache-Session-Wrapper/Makefile index e7e0469b897..783d6c0bdd3 100644 --- a/www/p5-Apache-Session-Wrapper/Makefile +++ b/www/p5-Apache-Session-Wrapper/Makefile @@ -11,11 +11,11 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Simple wrapper around Apache::Session -BUILD_DEPENDS= p5-Class-Container>=0:devel/p5-Class-Container \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Container>=0:devel/p5-Class-Container \ p5-Params-Validate>=0:devel/p5-Params-Validate \ p5-Exception-Class>=0:devel/p5-Exception-Class \ p5-Apache-Session>=0:www/p5-Apache-Session -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= modbuild diff --git a/www/p5-Apache-Session/Makefile b/www/p5-Apache-Session/Makefile index 76335e6a6d1..6778cb9ecaa 100644 --- a/www/p5-Apache-Session/Makefile +++ b/www/p5-Apache-Session/Makefile @@ -14,8 +14,8 @@ COMMENT= Persistence framework for session data LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-DBI>=0:databases/p5-DBI -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-DBI>=0:databases/p5-DBI TEST_DEPENDS+= p5-Test-Deep>=0.082:devel/p5-Test-Deep \ p5-Test-Exception>=0.15:devel/p5-Test-Exception \ p5-Test-Database>=0:databases/p5-Test-Database diff --git a/www/p5-Apache-SessionX/Makefile b/www/p5-Apache-SessionX/Makefile index 4a3eb87a353..6a4b49cd2ca 100644 --- a/www/p5-Apache-SessionX/Makefile +++ b/www/p5-Apache-SessionX/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Extented persistence framework for session data -BUILD_DEPENDS= p5-Apache-Session>=0:www/p5-Apache-Session -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Apache-Session>=0:www/p5-Apache-Session USES= perl5 USE_PERL5= configure diff --git a/www/p5-App-Nopaste/Makefile b/www/p5-App-Nopaste/Makefile index 1c4cb937316..74d4a09f77b 100644 --- a/www/p5-App-Nopaste/Makefile +++ b/www/p5-App-Nopaste/Makefile @@ -13,7 +13,8 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Browser-Open>=0:www/p5-Browser-Open \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Browser-Open>=0:www/p5-Browser-Open \ p5-Class-Load>=0:devel/p5-Class-Load \ p5-Getopt-Long-Descriptive>=0:devel/p5-Getopt-Long-Descriptive \ p5-JSON>=0:converters/p5-JSON \ @@ -21,7 +22,6 @@ BUILD_DEPENDS= p5-Browser-Open>=0:www/p5-Browser-Open \ p5-URI>=0:net/p5-URI \ p5-WWW-Mechanize>=0:www/p5-WWW-Mechanize \ p5-namespace-clean>=0.19:devel/p5-namespace-clean -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-JSON-MaybeXS>=0:converters/p5-JSON-MaybeXS \ p5-Module-Pluggable>=0:devel/p5-Module-Pluggable \ p5-Test-Deep>=0:devel/p5-Test-Deep \ diff --git a/www/p5-App-gist/Makefile b/www/p5-App-gist/Makefile index ab07341675b..acb2d5defd9 100644 --- a/www/p5-App-gist/Makefile +++ b/www/p5-App-gist/Makefile @@ -15,12 +15,12 @@ COMMENT= GitHub Gist creator LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-App-Cmd>=0:devel/p5-App-Cmd \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-App-Cmd>=0:devel/p5-App-Cmd \ p5-Class-Load>=0:devel/p5-Class-Load \ p5-Moo>=0:devel/p5-Moo \ p5-Pithub>=0:devel/p5-Pithub \ p5-Term-ReadKey>=0:devel/p5-Term-ReadKey -RUN_DEPENDS:= ${BUILD_DEPENDS} CONFLICTS= gist-[0-9]* diff --git a/www/p5-Bigtop/Makefile b/www/p5-Bigtop/Makefile index a7b22380473..4dcee983199 100644 --- a/www/p5-Bigtop/Makefile +++ b/www/p5-Bigtop/Makefile @@ -14,7 +14,8 @@ COMMENT= Web application data language processor LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Config-General>=0:devel/p5-Config-General \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Config-General>=0:devel/p5-Config-General \ p5-IO-Prompt>=0:devel/p5-IO-Prompt \ p5-Parse-RecDescent>=0:devel/p5-Parse-RecDescent \ p5-File-HomeDir>=0:devel/p5-File-HomeDir \ @@ -25,7 +26,6 @@ BUILD_DEPENDS= p5-Config-General>=0:devel/p5-Config-General \ p5-Inline-TT>=0.06:devel/p5-Inline-TT \ p5-Template-Toolkit>=2.0:www/p5-Template-Toolkit \ p5-HTTP-Server-Simple>0.27:www/p5-HTTP-Server-Simple -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= modbuild diff --git a/www/p5-CGI-Ajax/Makefile b/www/p5-CGI-Ajax/Makefile index ac80d6e4915..2ff6a5e152f 100644 --- a/www/p5-CGI-Ajax/Makefile +++ b/www/p5-CGI-Ajax/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Module for writing AJAX/DHTML-based web apps -BUILD_DEPENDS= p5-Class-Accessor>=0:devel/p5-Class-Accessor -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Accessor>=0:devel/p5-Class-Accessor USES= perl5 USE_PERL5= configure diff --git a/www/p5-CGI-Application-Dispatch-Server/Makefile b/www/p5-CGI-Application-Dispatch-Server/Makefile index d0bbd6ed864..ce91cba58a1 100644 --- a/www/p5-CGI-Application-Dispatch-Server/Makefile +++ b/www/p5-CGI-Application-Dispatch-Server/Makefile @@ -14,14 +14,14 @@ COMMENT= Simple HTTP server for developing with CGI::Application::Dispatch LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-libwww>=0:www/p5-libwww \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-libwww>=0:www/p5-libwww \ p5-IO-Capture>=0:devel/p5-IO-Capture \ p5-CGI-Application>=0:www/p5-CGI-Application \ p5-CGI-Application-Dispatch>=0:www/p5-CGI-Application-Dispatch \ p5-HTTP-Server-Simple>=0:www/p5-HTTP-Server-Simple \ p5-HTTP-Server-Simple-Static>=0:www/p5-HTTP-Server-Simple-Static \ p5-Params-Validate>=0:devel/p5-Params-Validate -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-CGI-Application-Dispatch/Makefile b/www/p5-CGI-Application-Dispatch/Makefile index 268614d5baa..96d71a73ab8 100644 --- a/www/p5-CGI-Application-Dispatch/Makefile +++ b/www/p5-CGI-Application-Dispatch/Makefile @@ -14,13 +14,13 @@ COMMENT= Dispatch requests to CGI::Application based objects LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-CGI-Application>=4.50:www/p5-CGI-Application \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-CGI-Application>=4.50:www/p5-CGI-Application \ p5-CGI-PSGI>=0:www/p5-CGI-PSGI \ p5-Exception-Class>=1.20:devel/p5-Exception-Class \ p5-HTTP-Exception>=0:www/p5-HTTP-Exception \ p5-Plack>=0.9956:www/p5-Plack \ p5-Try-Tiny>=0:lang/p5-Try-Tiny -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-LongString>=0:devel/p5-Test-LongString USES= perl5 diff --git a/www/p5-CGI-Application-Plugin-AnyTemplate/Makefile b/www/p5-CGI-Application-Plugin-AnyTemplate/Makefile index 57cc9e056b4..321503933c5 100644 --- a/www/p5-CGI-Application-Plugin-AnyTemplate/Makefile +++ b/www/p5-CGI-Application-Plugin-AnyTemplate/Makefile @@ -14,10 +14,10 @@ COMMENT= Use any templating system in CGI::Application LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-CGI-Application-Plugin-Forward>=0:www/p5-CGI-Application-Plugin-Forward \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-CGI-Application-Plugin-Forward>=0:www/p5-CGI-Application-Plugin-Forward \ p5-CGI-Application>=0:www/p5-CGI-Application \ p5-Clone>=0.23:devel/p5-Clone -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= modbuild diff --git a/www/p5-CGI-Application-Plugin-Apache/Makefile b/www/p5-CGI-Application-Plugin-Apache/Makefile index 5e858cd00c2..b2c646d188c 100644 --- a/www/p5-CGI-Application-Plugin-Apache/Makefile +++ b/www/p5-CGI-Application-Plugin-Apache/Makefile @@ -11,10 +11,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Provides easy access to Apache::* modules for CGI::Application -BUILD_DEPENDS= p5-CGI-Application>=3.22:www/p5-CGI-Application \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-CGI-Application>=3.22:www/p5-CGI-Application \ p5-HTML-GenerateUtil>=0:www/p5-HTML-GenerateUtil \ p5-libapreq2>=0:www/p5-libapreq2 -RUN_DEPENDS:= ${BUILD_DEPENDS} LICENSE_COMB= dual LICENSE= ART10 GPLv1+ diff --git a/www/p5-CGI-Application-Plugin-Authentication/Makefile b/www/p5-CGI-Application-Plugin-Authentication/Makefile index 851e59230ee..f9683943fc8 100644 --- a/www/p5-CGI-Application-Plugin-Authentication/Makefile +++ b/www/p5-CGI-Application-Plugin-Authentication/Makefile @@ -13,12 +13,12 @@ COMMENT= Support for authenticating requests in CGI::Application LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Apache-Htpasswd>=0:security/p5-Apache-Htpasswd \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Apache-Htpasswd>=0:security/p5-Apache-Htpasswd \ p5-CGI-Application>=4:www/p5-CGI-Application \ p5-Digest-SHA1>=0:security/p5-Digest-SHA1 \ p5-UNIVERSAL-require>=0:devel/p5-UNIVERSAL-require \ p5-Color-Calc>=1.073:graphics/p5-Color-Calc -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Exception>=0:devel/p5-Test-Exception \ p5-Test-Warn>=0.11:devel/p5-Test-Warn diff --git a/www/p5-CGI-Application-Plugin-Authorization/Makefile b/www/p5-CGI-Application-Plugin-Authorization/Makefile index 02f481e78c8..b06cc7a9973 100644 --- a/www/p5-CGI-Application-Plugin-Authorization/Makefile +++ b/www/p5-CGI-Application-Plugin-Authorization/Makefile @@ -14,13 +14,13 @@ COMMENT= Support for authorization of requests in CGI::Application LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-CGI-Application>=0:www/p5-CGI-Application \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-CGI-Application>=0:www/p5-CGI-Application \ p5-Class-ISA>=0:devel/p5-Class-ISA \ p5-UNIVERSAL-require>=0:devel/p5-UNIVERSAL-require \ p5-CGI-Application-Plugin-Authentication>=0:www/p5-CGI-Application-Plugin-Authentication \ p5-Test-Exception>=0:devel/p5-Test-Exception \ p5-Test-Warn>=0:devel/p5-Test-Warn -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= modbuild diff --git a/www/p5-CGI-Application-Plugin-AutoRunmode/Makefile b/www/p5-CGI-Application-Plugin-AutoRunmode/Makefile index eb3aac12e34..e68559c43bc 100644 --- a/www/p5-CGI-Application-Plugin-AutoRunmode/Makefile +++ b/www/p5-CGI-Application-Plugin-AutoRunmode/Makefile @@ -14,8 +14,8 @@ COMMENT= CGI::App plugin to automatically register runmodes LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-CGI-Application>=0:www/p5-CGI-Application -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-CGI-Application>=0:www/p5-CGI-Application USES= perl5 USE_PERL5= configure diff --git a/www/p5-CGI-Application-Plugin-DBH/Makefile b/www/p5-CGI-Application-Plugin-DBH/Makefile index 32e50c5760b..4a92e0a2be3 100644 --- a/www/p5-CGI-Application-Plugin-DBH/Makefile +++ b/www/p5-CGI-Application-Plugin-DBH/Makefile @@ -13,9 +13,9 @@ COMMENT= Easy DBI access from CGI::Application LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-CGI-Application>=0:www/p5-CGI-Application \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-CGI-Application>=0:www/p5-CGI-Application \ p5-DBI>=0:databases/p5-DBI -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-MockObject>=1.20120301:devel/p5-Test-MockObject NO_ARCH= yes diff --git a/www/p5-CGI-Application-Plugin-DebugScreen/Makefile b/www/p5-CGI-Application-Plugin-DebugScreen/Makefile index 34de8ee829b..f96012c8207 100644 --- a/www/p5-CGI-Application-Plugin-DebugScreen/Makefile +++ b/www/p5-CGI-Application-Plugin-DebugScreen/Makefile @@ -14,12 +14,12 @@ COMMENT= This plug-in add DebugScreen support to CGI::Application LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-CGI-Application>=0:www/p5-CGI-Application \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-CGI-Application>=0:www/p5-CGI-Application \ p5-HTML-Template>=0:www/p5-HTML-Template \ p5-CGI-Application-Plugin-ViewCode>=0:www/p5-CGI-Application-Plugin-ViewCode \ p5-Devel-StackTrace>=0:devel/p5-Devel-StackTrace \ p5-UNIVERSAL-require>=0:devel/p5-UNIVERSAL-require -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-CGI-Application-Plugin-DevPopup/Makefile b/www/p5-CGI-Application-Plugin-DevPopup/Makefile index ebc3964dbe5..f42ca0d5155 100644 --- a/www/p5-CGI-Application-Plugin-DevPopup/Makefile +++ b/www/p5-CGI-Application-Plugin-DevPopup/Makefile @@ -14,10 +14,10 @@ COMMENT= Runtime cgiapp info in a popup window LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-CGI-Application>=4.01:www/p5-CGI-Application \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-CGI-Application>=4.01:www/p5-CGI-Application \ p5-HTML-Template>0:www/p5-HTML-Template \ p5-IO-stringy>0:devel/p5-IO-stringy -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-CGI-Application-Plugin-Forward/Makefile b/www/p5-CGI-Application-Plugin-Forward/Makefile index 2445dcea8cb..931db2d61aa 100644 --- a/www/p5-CGI-Application-Plugin-Forward/Makefile +++ b/www/p5-CGI-Application-Plugin-Forward/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= hartzell@alerce.com COMMENT= Support for forwarding requests in CGI::Application -BUILD_DEPENDS= p5-CGI-Application>=0:www/p5-CGI-Application \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-CGI-Application>=0:www/p5-CGI-Application \ p5-CGI-Application-Plugin-AutoRunmode>=0:www/p5-CGI-Application-Plugin-AutoRunmode -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= modbuild diff --git a/www/p5-CGI-Application-Plugin-HTDot/Makefile b/www/p5-CGI-Application-Plugin-HTDot/Makefile index efb2f66398c..8778e12b980 100644 --- a/www/p5-CGI-Application-Plugin-HTDot/Makefile +++ b/www/p5-CGI-Application-Plugin-HTDot/Makefile @@ -11,12 +11,12 @@ PKGNAMEPREFIX= p5- MAINTAINER= culot@FreeBSD.org COMMENT= Enable "magic dot" notation in CGI::Application-derived applications -BUILD_DEPENDS= p5-CGI-Application>=4.0:www/p5-CGI-Application \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-CGI-Application>=4.0:www/p5-CGI-Application \ p5-Test-Exception>=0:devel/p5-Test-Exception \ p5-HTML-Template-Pluggable>=0:www/p5-HTML-Template-Pluggable \ p5-CGI-Application>=0:www/p5-CGI-Application \ p5-Test-Simple>=0:devel/p5-Test-Simple -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-CGI-Application-Plugin-HTMLPrototype/Makefile b/www/p5-CGI-Application-Plugin-HTMLPrototype/Makefile index b76ed1cda88..c33aba39826 100644 --- a/www/p5-CGI-Application-Plugin-HTMLPrototype/Makefile +++ b/www/p5-CGI-Application-Plugin-HTMLPrototype/Makefile @@ -14,9 +14,9 @@ COMMENT= Access to the prototype JavaScript library using HTML::Prototype LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-CGI-Application>=0:www/p5-CGI-Application \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-CGI-Application>=0:www/p5-CGI-Application \ p5-HTML-Prototype>=0:www/p5-HTML-Prototype -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= modbuild diff --git a/www/p5-CGI-Application-Plugin-HtmlTidy/Makefile b/www/p5-CGI-Application-Plugin-HtmlTidy/Makefile index 3e7842018ee..4400dfa1f9f 100644 --- a/www/p5-CGI-Application-Plugin-HtmlTidy/Makefile +++ b/www/p5-CGI-Application-Plugin-HtmlTidy/Makefile @@ -14,10 +14,10 @@ COMMENT= Add HTML::Tidy support to CGI::Application LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-CGI-Application>4.01:www/p5-CGI-Application \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-CGI-Application>4.01:www/p5-CGI-Application \ p5-CGI-Application-Plugin-DevPopup>=0:www/p5-CGI-Application-Plugin-DevPopup \ p5-HTML-Tidy>=1.08:textproc/p5-HTML-Tidy -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-CGI-Application-Plugin-LinkIntegrity/Makefile b/www/p5-CGI-Application-Plugin-LinkIntegrity/Makefile index 9dc956f96b7..889f37977c6 100644 --- a/www/p5-CGI-Application-Plugin-LinkIntegrity/Makefile +++ b/www/p5-CGI-Application-Plugin-LinkIntegrity/Makefile @@ -14,11 +14,11 @@ COMMENT= Make tamper-resistent links in CGI::Application LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-CGI-Application>=0:www/p5-CGI-Application \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-CGI-Application>=0:www/p5-CGI-Application \ p5-URI>=0:net/p5-URI \ p5-Digest-HMAC>=0:security/p5-Digest-HMAC \ p5-CGI-Application-Plugin-AutoRunmode>=0:www/p5-CGI-Application-Plugin-AutoRunmode -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= modbuild diff --git a/www/p5-CGI-Application-Plugin-LogDispatch/Makefile b/www/p5-CGI-Application-Plugin-LogDispatch/Makefile index fae793a8df7..4aa4a08462a 100644 --- a/www/p5-CGI-Application-Plugin-LogDispatch/Makefile +++ b/www/p5-CGI-Application-Plugin-LogDispatch/Makefile @@ -14,10 +14,10 @@ COMMENT= Plugin that adds Log::Dispatch support to CGI::Application LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-CGI-Application>=0:www/p5-CGI-Application \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-CGI-Application>=0:www/p5-CGI-Application \ p5-Log-Dispatch>=0:devel/p5-Log-Dispatch \ p5-UNIVERSAL-require>=0:devel/p5-UNIVERSAL-require -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= modbuild diff --git a/www/p5-CGI-Application-Plugin-MessageStack/Makefile b/www/p5-CGI-Application-Plugin-MessageStack/Makefile index eaeb5212ff6..d616989833d 100644 --- a/www/p5-CGI-Application-Plugin-MessageStack/Makefile +++ b/www/p5-CGI-Application-Plugin-MessageStack/Makefile @@ -14,10 +14,10 @@ COMMENT= Message stack for your CGI::Application LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-CGI-Application>=0:www/p5-CGI-Application \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-CGI-Application>=0:www/p5-CGI-Application \ p5-CGI-Application-Plugin-Session>=0:www/p5-CGI-Application-Plugin-Session \ p5-CGI-Application-Plugin-TT>=0:www/p5-CGI-Application-Plugin-TT -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= modbuild diff --git a/www/p5-CGI-Application-Plugin-Redirect/Makefile b/www/p5-CGI-Application-Plugin-Redirect/Makefile index 7ba34a54e9d..cf26dfa2296 100644 --- a/www/p5-CGI-Application-Plugin-Redirect/Makefile +++ b/www/p5-CGI-Application-Plugin-Redirect/Makefile @@ -14,8 +14,8 @@ COMMENT= Easy external redirects in CGI::Application LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-CGI-Application>=0:www/p5-CGI-Application -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-CGI-Application>=0:www/p5-CGI-Application USES= perl5 USE_PERL5= modbuild diff --git a/www/p5-CGI-Application-Plugin-Session/Makefile b/www/p5-CGI-Application-Plugin-Session/Makefile index 9166203f0ab..b97c6061159 100644 --- a/www/p5-CGI-Application-Plugin-Session/Makefile +++ b/www/p5-CGI-Application-Plugin-Session/Makefile @@ -14,9 +14,9 @@ COMMENT= Plugin that adds session support to CGI::Application LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-CGI-Application>=3.21:www/p5-CGI-Application \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-CGI-Application>=3.21:www/p5-CGI-Application \ p5-CGI-Session>=4.48:www/p5-CGI-Session -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-CGI-Simple>=0:www/p5-CGI-Simple \ p5-Test-Exception>=0:devel/p5-Test-Exception \ p5-Test-Simple>=1.001002:devel/p5-Test-Simple diff --git a/www/p5-CGI-Application-Plugin-Stream/Makefile b/www/p5-CGI-Application-Plugin-Stream/Makefile index c9e8d25317d..8d52913280c 100644 --- a/www/p5-CGI-Application-Plugin-Stream/Makefile +++ b/www/p5-CGI-Application-Plugin-Stream/Makefile @@ -13,9 +13,9 @@ COMMENT= Plugin that adds file streaming support to CGI::Application LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-CGI-Application>=0:www/p5-CGI-Application \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-CGI-Application>=0:www/p5-CGI-Application \ p5-File-MMagic>=0:devel/p5-File-MMagic -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-CGI-Application-Plugin-TT/Makefile b/www/p5-CGI-Application-Plugin-TT/Makefile index ea8b6503a31..33a6bc9385f 100644 --- a/www/p5-CGI-Application-Plugin-TT/Makefile +++ b/www/p5-CGI-Application-Plugin-TT/Makefile @@ -14,10 +14,10 @@ COMMENT= Add Template Toolkit support to CGI::Application LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-CGI-Application>=0:www/p5-CGI-Application \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-CGI-Application>=0:www/p5-CGI-Application \ p5-Template-Toolkit>=0:www/p5-Template-Toolkit \ p5-Class-ISA>=0:devel/p5-Class-ISA -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= modbuild diff --git a/www/p5-CGI-Application-Plugin-ValidateRM/Makefile b/www/p5-CGI-Application-Plugin-ValidateRM/Makefile index 6cb28c8b520..00271434d6a 100644 --- a/www/p5-CGI-Application-Plugin-ValidateRM/Makefile +++ b/www/p5-CGI-Application-Plugin-ValidateRM/Makefile @@ -11,10 +11,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= culot@FreeBSD.org COMMENT= Help validate forms with the CGI::Application framework -BUILD_DEPENDS= p5-HTML-FillInForm>=0:www/p5-HTML-FillInForm \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTML-FillInForm>=0:www/p5-HTML-FillInForm \ p5-Data-FormValidator>=0:textproc/p5-Data-FormValidator \ p5-CGI-Application>=0:www/p5-CGI-Application -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= modbuild diff --git a/www/p5-CGI-Application-Plugin-ViewCode/Makefile b/www/p5-CGI-Application-Plugin-ViewCode/Makefile index e304a77a7aa..553b513e42f 100644 --- a/www/p5-CGI-Application-Plugin-ViewCode/Makefile +++ b/www/p5-CGI-Application-Plugin-ViewCode/Makefile @@ -14,12 +14,12 @@ COMMENT= View the source of the running application LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-CGI-Application>=0:www/p5-CGI-Application \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-CGI-Application>=0:www/p5-CGI-Application \ p5-CGI-Application-Plugin-Forward>=0:www/p5-CGI-Application-Plugin-Forward \ p5-Syntax-Highlight-Perl-Improved>=0:textproc/p5-Syntax-Highlight-Perl-Improved \ p5-Pod-Xhtml>=0:textproc/p5-Pod-Xhtml \ p5-Test-LongString>=0:devel/p5-Test-LongString -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= modbuild diff --git a/www/p5-CGI-Application-Server/Makefile b/www/p5-CGI-Application-Server/Makefile index c07657d5e3a..e75c39bcea5 100644 --- a/www/p5-CGI-Application-Server/Makefile +++ b/www/p5-CGI-Application-Server/Makefile @@ -14,12 +14,12 @@ COMMENT= Simple HTTP server for developing with CGI::Application LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-CGI-Application>4.21:www/p5-CGI-Application \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-CGI-Application>4.21:www/p5-CGI-Application \ p5-CGI-Application-Plugin-Redirect>0:www/p5-CGI-Application-Plugin-Redirect \ p5-HTTP-Message>0:www/p5-HTTP-Message \ p5-HTTP-Server-Simple>=0.18:www/p5-HTTP-Server-Simple \ p5-HTTP-Server-Simple-Static>=0.02:www/p5-HTTP-Server-Simple-Static -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-CGI-Application>0:www/p5-CGI-Application \ p5-CGI-Application-Dispatch>0:www/p5-CGI-Application-Dispatch \ p5-CGI-Application-Plugin-Redirect>0:www/p5-CGI-Application-Plugin-Redirect \ diff --git a/www/p5-CGI-Application/Makefile b/www/p5-CGI-Application/Makefile index 3cbc83ad94e..edd2e7b6e62 100644 --- a/www/p5-CGI-Application/Makefile +++ b/www/p5-CGI-Application/Makefile @@ -13,10 +13,10 @@ COMMENT= Perl module intended to make it easier to create reusable web apps LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-CGI>=0:www/p5-CGI \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-CGI>=0:www/p5-CGI \ p5-Class-ISA>=0:devel/p5-Class-ISA \ p5-HTML-Template>=0:www/p5-HTML-Template -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-CGI-PSGI>=0.09:www/p5-CGI-PSGI \ p5-Test-Requires>=0:devel/p5-Test-Requires diff --git a/www/p5-CGI-ArgChecker/Makefile b/www/p5-CGI-ArgChecker/Makefile index 902d889c34a..4be9d3fb2c9 100644 --- a/www/p5-CGI-ArgChecker/Makefile +++ b/www/p5-CGI-ArgChecker/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Perl module implementing a cgi interface to String::Checker -BUILD_DEPENDS= p5-String-Checker>=0:devel/p5-String-Checker -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-String-Checker>=0:devel/p5-String-Checker USES= perl5 USE_PERL5= configure diff --git a/www/p5-CGI-Builder-TT2/Makefile b/www/p5-CGI-Builder-TT2/Makefile index 4aeace608d9..3dc9f36185b 100644 --- a/www/p5-CGI-Builder-TT2/Makefile +++ b/www/p5-CGI-Builder-TT2/Makefile @@ -12,9 +12,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= CGI::Builder and Template Toolkit 2 integration -BUILD_DEPENDS= p5-CGI-Builder>=0:www/p5-CGI-Builder \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-CGI-Builder>=0:www/p5-CGI-Builder \ p5-Template-Toolkit>=0:www/p5-Template-Toolkit -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-CGI-Builder/Makefile b/www/p5-CGI-Builder/Makefile index c4286f9ae42..88ee91c5b18 100644 --- a/www/p5-CGI-Builder/Makefile +++ b/www/p5-CGI-Builder/Makefile @@ -14,9 +14,9 @@ COMMENT= Perl module intended to make it easier to create reusable web apps LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-IO-Util>=0:devel/p5-IO-Util \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-IO-Util>=0:devel/p5-IO-Util \ p5-OOTools>=0:devel/p5-OOTools -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-CGI-Cookie-Splitter/Makefile b/www/p5-CGI-Cookie-Splitter/Makefile index 7fbeefcc24f..f10d17c66d9 100644 --- a/www/p5-CGI-Cookie-Splitter/Makefile +++ b/www/p5-CGI-Cookie-Splitter/Makefile @@ -14,9 +14,9 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-CGI-Simple>=0:www/p5-CGI-Simple \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-CGI-Simple>=0:www/p5-CGI-Simple \ p5-namespace-clean>=0.19:devel/p5-namespace-clean -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/www/p5-CGI-Cookie-XS/Makefile b/www/p5-CGI-Cookie-XS/Makefile index 1e36efec0c8..409c7edb2d4 100644 --- a/www/p5-CGI-Cookie-XS/Makefile +++ b/www/p5-CGI-Cookie-XS/Makefile @@ -15,8 +15,8 @@ COMMENT= HTTP Cookie parser in C LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Filter-Simple>=0:textproc/p5-Filter-Simple -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Filter-Simple>=0:textproc/p5-Filter-Simple USES= perl5 USE_PERL5= configure diff --git a/www/p5-CGI-EncryptForm/Makefile b/www/p5-CGI-EncryptForm/Makefile index 16f409fe7e6..723e911c402 100644 --- a/www/p5-CGI-EncryptForm/Makefile +++ b/www/p5-CGI-EncryptForm/Makefile @@ -12,9 +12,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= swills@FreeBSD.org COMMENT= Implement trusted stateful CGI Form Data using cryptography -BUILD_DEPENDS= p5-Crypt-HCE_SHA>=0:security/p5-Crypt-HCE_SHA \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Crypt-HCE_SHA>=0:security/p5-Crypt-HCE_SHA \ p5-Digest-SHA1>=0:security/p5-Digest-SHA1 -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-CGI-ExtDirect/Makefile b/www/p5-CGI-ExtDirect/Makefile index 977cf301742..f24f4346c3b 100644 --- a/www/p5-CGI-ExtDirect/Makefile +++ b/www/p5-CGI-ExtDirect/Makefile @@ -10,9 +10,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= tj@FreeBSD.org COMMENT= Perl extension for creating Ext.Direct remoting in CGI applications -BUILD_DEPENDS= p5-RPC-ExtDirect>=3.20:www/p5-RPC-ExtDirect \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-RPC-ExtDirect>=3.20:www/p5-RPC-ExtDirect \ p5-CGI>4.20:www/p5-CGI -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-CGI-Fast/Makefile b/www/p5-CGI-Fast/Makefile index 3e9b2de46d5..7ad8c64137b 100644 --- a/www/p5-CGI-Fast/Makefile +++ b/www/p5-CGI-Fast/Makefile @@ -14,9 +14,9 @@ COMMENT= Perl CGI Interface for FastCGI LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-CGI>=4:www/p5-CGI \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-CGI>=4:www/p5-CGI \ p5-FCGI>=0.67:www/p5-FCGI -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-CPAN-Changes>=0:devel/p5-CPAN-Changes \ p5-HTML-Parser>=0:www/p5-HTML-Parser diff --git a/www/p5-CGI-FormBuilder/Makefile b/www/p5-CGI-FormBuilder/Makefile index 141721d958d..76ce2bc4abb 100644 --- a/www/p5-CGI-FormBuilder/Makefile +++ b/www/p5-CGI-FormBuilder/Makefile @@ -14,8 +14,8 @@ COMMENT= FormBuilder for CGI LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-CGI>=0:www/p5-CGI -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-CGI>=0:www/p5-CGI NO_ARCH= yes USE_PERL5= configure diff --git a/www/p5-CGI-Framework/Makefile b/www/p5-CGI-Framework/Makefile index 5acaca33d58..5bcbde130e1 100644 --- a/www/p5-CGI-Framework/Makefile +++ b/www/p5-CGI-Framework/Makefile @@ -11,10 +11,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Simple-to-use, lightweight web CGI framework -BUILD_DEPENDS= p5-HTML-Template>=0:www/p5-HTML-Template \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTML-Template>=0:www/p5-HTML-Template \ p5-CGI-Session>=0:www/p5-CGI-Session \ p5-CGI>=0:www/p5-CGI -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-CGI-Kwiki/Makefile b/www/p5-CGI-Kwiki/Makefile index e6246b6ca76..fb0a77229af 100644 --- a/www/p5-CGI-Kwiki/Makefile +++ b/www/p5-CGI-Kwiki/Makefile @@ -14,8 +14,8 @@ COMMENT= Quickie Wiki Package that's not too Tricky #' LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-CGI>=0:www/p5-CGI -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-CGI>=0:www/p5-CGI NO_ARCH= yes USES= perl5 diff --git a/www/p5-CGI-Pager/Makefile b/www/p5-CGI-Pager/Makefile index 97de194a088..eb4f5dfe72f 100644 --- a/www/p5-CGI-Pager/Makefile +++ b/www/p5-CGI-Pager/Makefile @@ -13,8 +13,8 @@ COMMENT= Perl extension to generate HTML pagination linkage easily LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-URI>0:net/p5-URI -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-URI>0:net/p5-URI USES= perl5 USE_PERL5= configure diff --git a/www/p5-CGI-Untaint-date/Makefile b/www/p5-CGI-Untaint-date/Makefile index 6242a786ff9..396de2ecff0 100644 --- a/www/p5-CGI-Untaint-date/Makefile +++ b/www/p5-CGI-Untaint-date/Makefile @@ -11,10 +11,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Validate a date -BUILD_DEPENDS= p5-CGI-Untaint>=0:www/p5-CGI-Untaint \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-CGI-Untaint>=0:www/p5-CGI-Untaint \ p5-Date-Manip>=0:devel/p5-Date-Manip \ p5-Date-Simple>=0:devel/p5-Date-Simple -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-CGI-Untaint/Makefile b/www/p5-CGI-Untaint/Makefile index 3b61c09430e..be6e05948a5 100644 --- a/www/p5-CGI-Untaint/Makefile +++ b/www/p5-CGI-Untaint/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Process CGI input parameters -BUILD_DEPENDS= p5-UNIVERSAL-require>=0.01:devel/p5-UNIVERSAL-require -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-UNIVERSAL-require>=0.01:devel/p5-UNIVERSAL-require USES= perl5 USE_PERL5= configure diff --git a/www/p5-CGI-Upload/Makefile b/www/p5-CGI-Upload/Makefile index ba4160274ab..0dbfa186dbd 100644 --- a/www/p5-CGI-Upload/Makefile +++ b/www/p5-CGI-Upload/Makefile @@ -14,10 +14,10 @@ COMMENT= CGI class for handling browser file uploads LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-HTTP-BrowserDetect>=0:www/p5-HTTP-BrowserDetect \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTTP-BrowserDetect>=0:www/p5-HTTP-BrowserDetect \ p5-File-MMagic>=0:devel/p5-File-MMagic \ p5-CGI>=0:www/p5-CGI -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-CGI-XMLApplication/Makefile b/www/p5-CGI-XMLApplication/Makefile index e8186290518..3821bd06a8c 100644 --- a/www/p5-CGI-XMLApplication/Makefile +++ b/www/p5-CGI-XMLApplication/Makefile @@ -10,9 +10,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Object Oriented Interface for CGI Script Applications -BUILD_DEPENDS= p5-XML-LibXML>=1.1:textproc/p5-XML-LibXML \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-XML-LibXML>=1.1:textproc/p5-XML-LibXML \ p5-XML-LibXSLT>=1.08:textproc/p5-XML-LibXSLT -RUN_DEPENDS:= ${BUILD_DEPENDS} OPTIONS_DEFINE= EXAMPLES diff --git a/www/p5-CIF-Client/Makefile b/www/p5-CIF-Client/Makefile index aa5a2142bac..54c174a146c 100644 --- a/www/p5-CIF-Client/Makefile +++ b/www/p5-CIF-Client/Makefile @@ -15,7 +15,8 @@ COMMENT= Extends REST::Client for use with the CI-Framework REST interface LICENSE= ART10 GPLv2 LICENSE_COMB= dual -BUILD_DEPENDS= p5-Class-Accessor>=0.31:devel/p5-Class-Accessor \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Accessor>=0.31:devel/p5-Class-Accessor \ p5-Compress-Raw-Zlib>=2.008:archivers/p5-Compress-Raw-Zlib \ p5-Config-Simple>=4.58:devel/p5-Config-Simple \ p5-Digest-SHA1>=2.11:security/p5-Digest-SHA1 \ @@ -31,7 +32,6 @@ BUILD_DEPENDS= p5-Class-Accessor>=0.31:devel/p5-Class-Accessor \ p5-REST-Client>=243:www/p5-REST-Client \ p5-Snort-Rule>=1.07:security/p5-Snort-Rule \ p5-Text-Table>=1.114:textproc/p5-Text-Table -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-CSS-DOM/Makefile b/www/p5-CSS-DOM/Makefile index d35b56ce518..972f00596c7 100644 --- a/www/p5-CSS-DOM/Makefile +++ b/www/p5-CSS-DOM/Makefile @@ -14,8 +14,8 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE_ART10= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Clone>=0.09:devel/p5-Clone -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Clone>=0.09:devel/p5-Clone NO_ARCH= yes USES= perl5 diff --git a/www/p5-CSS-Inliner/Makefile b/www/p5-CSS-Inliner/Makefile index cad74f1fb23..2f5c8b4f5cc 100644 --- a/www/p5-CSS-Inliner/Makefile +++ b/www/p5-CSS-Inliner/Makefile @@ -13,11 +13,11 @@ COMMENT= Library for converting CSS blocks and files to inline styles LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-HTML-Query>=0.09:www/p5-HTML-Query \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTML-Query>=0.09:www/p5-HTML-Query \ p5-HTML-Tree>=5.03:www/p5-HTML-Tree \ p5-libwww>=0:www/p5-libwww \ p5-URI>=0:net/p5-URI -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Pod>=1:devel/p5-Test-Pod NO_ARCH= yes diff --git a/www/p5-Catalyst-Action-REST/Makefile b/www/p5-Catalyst-Action-REST/Makefile index 66832958585..6f89357a68d 100644 --- a/www/p5-Catalyst-Action-REST/Makefile +++ b/www/p5-Catalyst-Action-REST/Makefile @@ -14,7 +14,8 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Catalyst-Runtime>=5.80030:www/p5-Catalyst-Runtime \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Catalyst-Runtime>=5.80030:www/p5-Catalyst-Runtime \ p5-Class-Inspector>=1.13:devel/p5-Class-Inspector \ p5-MRO-Compat>=0.10:devel/p5-MRO-Compat \ p5-Module-Pluggable>=0:devel/p5-Module-Pluggable \ @@ -23,7 +24,6 @@ BUILD_DEPENDS= p5-Catalyst-Runtime>=5.80030:www/p5-Catalyst-Runtime \ p5-URI-Find>=0:textproc/p5-URI-Find \ p5-namespace-autoclean>=0:devel/p5-namespace-autoclean \ p5-JSON-MaybeXS>=0:converters/p5-JSON-MaybeXS -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-libwww>=5:www/p5-libwww \ p5-Test-Requires>=0:devel/p5-Test-Requires diff --git a/www/p5-Catalyst-Action-RenderView/Makefile b/www/p5-Catalyst-Action-RenderView/Makefile index 0bfbcbde003..4a0f7b4e1c1 100644 --- a/www/p5-Catalyst-Action-RenderView/Makefile +++ b/www/p5-Catalyst-Action-RenderView/Makefile @@ -14,10 +14,10 @@ COMMENT= Sensible default end action for Catalyst LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Catalyst-Runtime>=5.70:www/p5-Catalyst-Runtime \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Catalyst-Runtime>=5.70:www/p5-Catalyst-Runtime \ p5-Data-Visitor>=0.24:devel/p5-Data-Visitor \ p5-MRO-Compat>=0:devel/p5-MRO-Compat -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-Catalyst-Action-Serialize-XML-Hash-LX/Makefile b/www/p5-Catalyst-Action-Serialize-XML-Hash-LX/Makefile index 52061857746..8c298486591 100644 --- a/www/p5-Catalyst-Action-Serialize-XML-Hash-LX/Makefile +++ b/www/p5-Catalyst-Action-Serialize-XML-Hash-LX/Makefile @@ -14,9 +14,9 @@ COMMENT= XML::Hash::LX serializer for Catalyst::Action::Serialize LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Catalyst-Runtime>=0:www/p5-Catalyst-Runtime \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Catalyst-Runtime>=0:www/p5-Catalyst-Runtime \ p5-XML-Hash-LX>=0.06:textproc/p5-XML-Hash-LX -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-lib-abs>=0.90:devel/p5-lib-abs USE_PERL5= configure diff --git a/www/p5-Catalyst-ActionRole-ACL/Makefile b/www/p5-Catalyst-ActionRole-ACL/Makefile index f173aec9551..3390b023375 100644 --- a/www/p5-Catalyst-ActionRole-ACL/Makefile +++ b/www/p5-Catalyst-ActionRole-ACL/Makefile @@ -15,11 +15,11 @@ COMMENT= User role-based authorization action class LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Catalyst-Controller-ActionRole>=0:www/p5-Catalyst-Controller-ActionRole \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Catalyst-Controller-ActionRole>=0:www/p5-Catalyst-Controller-ActionRole \ p5-Catalyst-Runtime>=5.90013:www/p5-Catalyst-Runtime \ p5-Moose>=0:devel/p5-Moose \ p5-namespace-autoclean>=0:devel/p5-namespace-autoclean -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-Catalyst-Authentication-Credential-HTTP/Makefile b/www/p5-Catalyst-Authentication-Credential-HTTP/Makefile index 04b625181ae..950f6d3bb05 100644 --- a/www/p5-Catalyst-Authentication-Credential-HTTP/Makefile +++ b/www/p5-Catalyst-Authentication-Credential-HTTP/Makefile @@ -13,13 +13,13 @@ COMMENT= HTTP plain and digest authentication plugin for Catalyst LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Catalyst-Plugin-Authentication>=0.10005:www/p5-Catalyst-Plugin-Authentication \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Catalyst-Plugin-Authentication>=0.10005:www/p5-Catalyst-Plugin-Authentication \ p5-Catalyst-Runtime>0:www/p5-Catalyst-Runtime \ p5-Class-Accessor>0:devel/p5-Class-Accessor \ p5-Data-UUID>=0.11:devel/p5-Data-UUID \ p5-String-Escape>0:textproc/p5-String-Escape \ p5-URI>0:net/p5-URI -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-HTTP-Message>0:www/p5-HTTP-Message \ p5-Test-Exception>0:devel/p5-Test-Exception \ p5-Test-MockObject>0:devel/p5-Test-MockObject \ diff --git a/www/p5-Catalyst-Authentication-Credential-OpenID/Makefile b/www/p5-Catalyst-Authentication-Credential-OpenID/Makefile index 45558ea2fdd..9432964c947 100644 --- a/www/p5-Catalyst-Authentication-Credential-OpenID/Makefile +++ b/www/p5-Catalyst-Authentication-Credential-OpenID/Makefile @@ -14,11 +14,11 @@ COMMENT= OpenID credential for Catalyst::Plugin::Authentication framework LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Catalyst-Runtime>=5.7:www/p5-Catalyst-Runtime \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Catalyst-Runtime>=5.7:www/p5-Catalyst-Runtime \ p5-Class-Accessor>=0:devel/p5-Class-Accessor \ p5-Net-OpenID-Consumer>=1.03:net/p5-Net-OpenID-Consumer \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-Catalyst-Authentication-Store-DBIx-Class/Makefile b/www/p5-Catalyst-Authentication-Store-DBIx-Class/Makefile index 901bce23b97..97ad0823c25 100644 --- a/www/p5-Catalyst-Authentication-Store-DBIx-Class/Makefile +++ b/www/p5-Catalyst-Authentication-Store-DBIx-Class/Makefile @@ -14,7 +14,8 @@ COMMENT= Storage class for Catalyst Authentication using DBIx::Class LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Catalyst-Model-DBIC-Schema>=0.18:www/p5-Catalyst-Model-DBIC-Schema \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Catalyst-Model-DBIC-Schema>=0.18:www/p5-Catalyst-Model-DBIC-Schema \ p5-Catalyst-Plugin-Authentication>=0.10008:www/p5-Catalyst-Plugin-Authentication \ p5-Catalyst-Runtime>=5.8:www/p5-Catalyst-Runtime \ p5-DBIx-Class>=0.08:databases/p5-DBIx-Class \ @@ -22,7 +23,6 @@ BUILD_DEPENDS= p5-Catalyst-Model-DBIC-Schema>=0.18:www/p5-Catalyst-Model-DBIC-Sc p5-Moose>=0:devel/p5-Moose \ p5-Try-Tiny>=0:lang/p5-Try-Tiny \ p5-namespace-autoclean>=0:devel/p5-namespace-autoclean -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-Catalyst-Authentication-Store-LDAP/Makefile b/www/p5-Catalyst-Authentication-Store-LDAP/Makefile index 0175d51a912..d8c7e0a1e35 100644 --- a/www/p5-Catalyst-Authentication-Store-LDAP/Makefile +++ b/www/p5-Catalyst-Authentication-Store-LDAP/Makefile @@ -13,9 +13,9 @@ COMMENT= Authentication from an LDAP Directory for Catalyst LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Catalyst-Plugin-Authentication>=0.10003:www/p5-Catalyst-Plugin-Authentication \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Catalyst-Plugin-Authentication>=0.10003:www/p5-Catalyst-Plugin-Authentication \ p5-perl-ldap>=0:net/p5-perl-ldap -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Net-LDAP-Server-Test>=0:net/p5-Net-LDAP-Server-Test \ p5-Test-Exception>=0:devel/p5-Test-Exception \ p5-Catalyst-Model-LDAP>=0:www/p5-Catalyst-Model-LDAP \ diff --git a/www/p5-Catalyst-Component-ACCEPT_CONTEXT/Makefile b/www/p5-Catalyst-Component-ACCEPT_CONTEXT/Makefile index 058600a58c2..583d5e9a2ae 100644 --- a/www/p5-Catalyst-Component-ACCEPT_CONTEXT/Makefile +++ b/www/p5-Catalyst-Component-ACCEPT_CONTEXT/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Make the Catalyst request context available in Models and Views -BUILD_DEPENDS= p5-Catalyst-Runtime>0:www/p5-Catalyst-Runtime -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Catalyst-Runtime>0:www/p5-Catalyst-Runtime TEST_DEPENDS= p5-Devel-Cycle>=0:devel/p5-Devel-Cycle USES= perl5 diff --git a/www/p5-Catalyst-Component-InstancePerContext/Makefile b/www/p5-Catalyst-Component-InstancePerContext/Makefile index 08dca06b930..4a5f7a0fada 100644 --- a/www/p5-Catalyst-Component-InstancePerContext/Makefile +++ b/www/p5-Catalyst-Component-InstancePerContext/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= oleg@mamontov.net COMMENT= Return a new instance a component on each request -BUILD_DEPENDS= p5-Catalyst-Runtime>=0:www/p5-Catalyst-Runtime \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Catalyst-Runtime>=0:www/p5-Catalyst-Runtime \ p5-Moose>=0:devel/p5-Moose -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-Catalyst-Controller-ActionRole/Makefile b/www/p5-Catalyst-Controller-ActionRole/Makefile index 52bfcc825c4..01926d5ede6 100644 --- a/www/p5-Catalyst-Controller-ActionRole/Makefile +++ b/www/p5-Catalyst-Controller-ActionRole/Makefile @@ -11,12 +11,12 @@ PKGNAMEPREFIX= p5- MAINTAINER= mons@cpan.org COMMENT= Apply roles to action instances -BUILD_DEPENDS= p5-Catalyst-Runtime>=5.71001:www/p5-Catalyst-Runtime \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Catalyst-Runtime>=5.71001:www/p5-Catalyst-Runtime \ p5-Moose>=2:devel/p5-Moose \ p5-MooseX-Types>=0:devel/p5-MooseX-Types \ p5-String-RewritePrefix>=0.004:textproc/p5-String-RewritePrefix \ p5-namespace-clean>=0:devel/p5-namespace-clean -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-Catalyst-Controller-BindLex/Makefile b/www/p5-Catalyst-Controller-BindLex/Makefile index 05696420ed9..8a168c41b58 100644 --- a/www/p5-Catalyst-Controller-BindLex/Makefile +++ b/www/p5-Catalyst-Controller-BindLex/Makefile @@ -15,12 +15,12 @@ COMMENT= Stash your lexical goodness LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Catalyst-Runtime>=0:www/p5-Catalyst-Runtime \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Catalyst-Runtime>=0:www/p5-Catalyst-Runtime \ p5-Array-RefElem>=0:misc/p5-Array-RefElem \ p5-Devel-Caller>=0:devel/p5-Devel-Caller \ p5-Devel-LexAlias>=0:devel/p5-Devel-LexAlias \ p5-PadWalker>=0:devel/p5-PadWalker -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/www/p5-Catalyst-Controller-HTML-FormFu/Makefile b/www/p5-Catalyst-Controller-HTML-FormFu/Makefile index 9a9bec57df9..8183128ca4c 100644 --- a/www/p5-Catalyst-Controller-HTML-FormFu/Makefile +++ b/www/p5-Catalyst-Controller-HTML-FormFu/Makefile @@ -15,7 +15,8 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Catalyst-Component-InstancePerContext>=0:www/p5-Catalyst-Component-InstancePerContext \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Catalyst-Component-InstancePerContext>=0:www/p5-Catalyst-Component-InstancePerContext \ p5-Catalyst-Runtime>=5.71001:www/p5-Catalyst-Runtime \ p5-Config-Any>=0:devel/p5-Config-Any \ p5-HTML-FormFu>=2.06:www/p5-HTML-FormFu \ @@ -25,7 +26,6 @@ BUILD_DEPENDS= p5-Catalyst-Component-InstancePerContext>=0:www/p5-Catalyst-Compo p5-Regexp-Assemble>=0:devel/p5-Regexp-Assemble \ p5-Task-Weaken>=0:devel/p5-Task-Weaken \ p5-namespace-autoclean>=0:devel/p5-namespace-autoclean -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Catalyst-Action-RenderView>=0:www/p5-Catalyst-Action-RenderView \ p5-Catalyst-Plugin-Session>=0:www/p5-Catalyst-Plugin-Session \ p5-Catalyst-Plugin-Session-State-Cookie>=0:www/p5-Catalyst-Plugin-Session-State-Cookie \ diff --git a/www/p5-Catalyst-Controller-RateLimit/Makefile b/www/p5-Catalyst-Controller-RateLimit/Makefile index c4e376cf96d..b770494e355 100644 --- a/www/p5-Catalyst-Controller-RateLimit/Makefile +++ b/www/p5-Catalyst-Controller-RateLimit/Makefile @@ -14,12 +14,12 @@ COMMENT= Protect your site from robots LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Algorithm-FloodControl>=1.91:devel/p5-Algorithm-FloodControl \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Algorithm-FloodControl>=1.91:devel/p5-Algorithm-FloodControl \ p5-Catalyst-Plugin-Cache-FastMmap>=0:www/p5-Catalyst-Plugin-Cache-FastMmap \ p5-Catalyst-Plugin-ConfigLoader>=0:www/p5-Catalyst-Plugin-ConfigLoader \ p5-Catalyst-Runtime>=5.7002:www/p5-Catalyst-Runtime \ p5-Params-Validate>=0:devel/p5-Params-Validate -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-WWW-Mechanize-Catalyst>=0:devel/p5-Test-WWW-Mechanize-Catalyst \ p5-Class-Data-Inheritable>=0:devel/p5-Class-Data-Inheritable diff --git a/www/p5-Catalyst-Controller-RequestToken/Makefile b/www/p5-Catalyst-Controller-RequestToken/Makefile index bb3d92830fa..1ea76fb5e4b 100644 --- a/www/p5-Catalyst-Controller-RequestToken/Makefile +++ b/www/p5-Catalyst-Controller-RequestToken/Makefile @@ -11,12 +11,12 @@ PKGNAMEPREFIX= p5- MAINTAINER= bill.brinzer@gmail.com COMMENT= Generate and validate unique tokens across HTTP requests (anti-CSRF) -BUILD_DEPENDS= p5-Catalyst-Action-RenderView>=0:www/p5-Catalyst-Action-RenderView \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Catalyst-Action-RenderView>=0:www/p5-Catalyst-Action-RenderView \ p5-Catalyst-Plugin-Session-State-Cookie>=0:www/p5-Catalyst-Plugin-Session-State-Cookie \ p5-Catalyst-Plugin-Session>=0:www/p5-Catalyst-Plugin-Session \ p5-Catalyst-Runtime>=5.7000:www/p5-Catalyst-Runtime \ p5-MRO-Compat>=0:devel/p5-MRO-Compat -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/www/p5-Catalyst-Controller-SOAP/Makefile b/www/p5-Catalyst-Controller-SOAP/Makefile index dfbcf0f984b..f9eb9d068d5 100644 --- a/www/p5-Catalyst-Controller-SOAP/Makefile +++ b/www/p5-Catalyst-Controller-SOAP/Makefile @@ -12,13 +12,13 @@ COMMENT= Catalyst SOAP Controller LICENSE= ARTPERL10 -BUILD_DEPENDS= p5-Catalyst-Runtime>=5.90017:www/p5-Catalyst-Runtime \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Catalyst-Runtime>=5.90017:www/p5-Catalyst-Runtime \ p5-Moose>=0.9:devel/p5-Moose \ p5-XML-Compile-SOAP>=2.35:net/p5-XML-Compile-SOAP \ p5-XML-Compile-WSDL11>=0:net/p5-XML-Compile-WSDL11 \ p5-XML-LibXML>=0:textproc/p5-XML-LibXML \ p5-IO-stringy>=0:devel/p5-IO-stringy -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-Catalyst-Devel/Makefile b/www/p5-Catalyst-Devel/Makefile index 6a375cc3ecd..e68b53bc0e9 100644 --- a/www/p5-Catalyst-Devel/Makefile +++ b/www/p5-Catalyst-Devel/Makefile @@ -13,7 +13,9 @@ COMMENT= Catalyst Development Tools LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Catalyst-Action-RenderView>=0.10:www/p5-Catalyst-Action-RenderView \ +BUILD_DEPENDS= ${RUN_DEPENDS} \ + p5-Module-Install>=1.02:devel/p5-Module-Install +RUN_DEPENDS= p5-Catalyst-Action-RenderView>=0.10:www/p5-Catalyst-Action-RenderView \ p5-Catalyst-Plugin-ConfigLoader>=0.30:www/p5-Catalyst-Plugin-ConfigLoader \ p5-Catalyst-Plugin-Static-Simple>=0.28:www/p5-Catalyst-Plugin-Static-Simple \ p5-Catalyst-Runtime>=5.90001:www/p5-Catalyst-Runtime \ @@ -28,8 +30,6 @@ BUILD_DEPENDS= p5-Catalyst-Action-RenderView>=0.10:www/p5-Catalyst-Action-Render p5-YAML-Tiny>=0:textproc/p5-YAML-Tiny \ p5-namespace-autoclean>=0:devel/p5-namespace-autoclean \ p5-namespace-clean>=0:devel/p5-namespace-clean -RUN_DEPENDS:= ${BUILD_DEPENDS} -BUILD_DEPENDS+= p5-Module-Install>=1.02:devel/p5-Module-Install TEST_DEPENDS= p5-IPC-Run3>=0:devel/p5-IPC-Run3 \ p5-Test-Fatal>=0.003:devel/p5-Test-Fatal diff --git a/www/p5-Catalyst-DispatchType-Regex/Makefile b/www/p5-Catalyst-DispatchType-Regex/Makefile index 0ff180e09c3..65c44d0a03f 100644 --- a/www/p5-Catalyst-DispatchType-Regex/Makefile +++ b/www/p5-Catalyst-DispatchType-Regex/Makefile @@ -14,10 +14,10 @@ COMMENT= Regex DispatchType LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Catalyst-Runtime>=5.90060:www/p5-Catalyst-Runtime \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Catalyst-Runtime>=5.90060:www/p5-Catalyst-Runtime \ p5-Moose>=0:devel/p5-Moose \ p5-Text-SimpleTable>=0:textproc/p5-Text-SimpleTable -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-MRO-Compat>=0:devel/p5-MRO-Compat \ p5-namespace-autoclean>=0:devel/p5-namespace-autoclean diff --git a/www/p5-Catalyst-Engine-HTTP-Prefork/Makefile b/www/p5-Catalyst-Engine-HTTP-Prefork/Makefile index 6ca0aecee7e..73b5cd25953 100644 --- a/www/p5-Catalyst-Engine-HTTP-Prefork/Makefile +++ b/www/p5-Catalyst-Engine-HTTP-Prefork/Makefile @@ -11,12 +11,12 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= High-performance pre-forking Catalyst engine -BUILD_DEPENDS= p5-Catalyst-Runtime>=5.7012:www/p5-Catalyst-Runtime \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Catalyst-Runtime>=5.7012:www/p5-Catalyst-Runtime \ p5-Net-Server>=0.97:net/p5-Net-Server \ p5-HTTP-HeaderParser-XS>=0:www/p5-HTTP-HeaderParser-XS \ p5-CGI-Cookie-XS>=0:www/p5-CGI-Cookie-XS \ p5-HTTP-Body>=0:www/p5-HTTP-Body -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-Catalyst-Enzyme/Makefile b/www/p5-Catalyst-Enzyme/Makefile index 8984857aced..64649621717 100644 --- a/www/p5-Catalyst-Enzyme/Makefile +++ b/www/p5-Catalyst-Enzyme/Makefile @@ -11,7 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= CRUD framework for Catalyst -BUILD_DEPENDS= p5-Catalyst-Runtime>=5.7000:www/p5-Catalyst-Runtime \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Catalyst-Runtime>=5.7000:www/p5-Catalyst-Runtime \ p5-Catalyst-Devel>=1.00:www/p5-Catalyst-Devel \ p5-Catalyst-Model-CDBI>=0.1:www/p5-Catalyst-Model-CDBI \ p5-Catalyst-Plugin-DefaultEnd>=0:www/p5-Catalyst-Plugin-DefaultEnd \ @@ -29,7 +30,6 @@ BUILD_DEPENDS= p5-Catalyst-Runtime>=5.7000:www/p5-Catalyst-Runtime \ p5-HTML-Tree>=0:www/p5-HTML-Tree \ p5-Path-Class>=0:devel/p5-Path-Class \ p5-URI>=0:net/p5-URI -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-Catalyst-Helper-Controller-Scaffold/Makefile b/www/p5-Catalyst-Helper-Controller-Scaffold/Makefile index 9a2ab59a25a..99081b8b3e1 100644 --- a/www/p5-Catalyst-Helper-Controller-Scaffold/Makefile +++ b/www/p5-Catalyst-Helper-Controller-Scaffold/Makefile @@ -11,7 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Catalyst helper for Scaffolding -BUILD_DEPENDS= p5-Catalyst-Runtime>=0:www/p5-Catalyst-Runtime \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Catalyst-Runtime>=0:www/p5-Catalyst-Runtime \ p5-Catalyst-Devel>=1.00:www/p5-Catalyst-Devel \ p5-Catalyst-Plugin-FormValidator>=0:www/p5-Catalyst-Plugin-FormValidator \ p5-Catalyst-View-TT>=0:www/p5-Catalyst-View-TT \ @@ -20,7 +21,6 @@ BUILD_DEPENDS= p5-Catalyst-Runtime>=0:www/p5-Catalyst-Runtime \ p5-Class-DBI-FromForm>=0:www/p5-Class-DBI-FromForm \ p5-Path-Class>=0:devel/p5-Path-Class \ p5-Template-Plugin-Class>=0:www/p5-Template-Plugin-Class -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-Catalyst-Model-CDBI-Sweet/Makefile b/www/p5-Catalyst-Model-CDBI-Sweet/Makefile index 2439c253df3..351feb606ea 100644 --- a/www/p5-Catalyst-Model-CDBI-Sweet/Makefile +++ b/www/p5-Catalyst-Model-CDBI-Sweet/Makefile @@ -12,9 +12,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= CDBI model class for Catalyst that makes things sweeter -BUILD_DEPENDS= p5-Catalyst-Runtime>=0:www/p5-Catalyst-Runtime \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Catalyst-Runtime>=0:www/p5-Catalyst-Runtime \ p5-Class-DBI-Sweet>=0:databases/p5-Class-DBI-Sweet -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= modbuild diff --git a/www/p5-Catalyst-Model-DBIC-Plain/Makefile b/www/p5-Catalyst-Model-DBIC-Plain/Makefile index d24d2cc887a..09581e76e5f 100644 --- a/www/p5-Catalyst-Model-DBIC-Plain/Makefile +++ b/www/p5-Catalyst-Model-DBIC-Plain/Makefile @@ -12,10 +12,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= DBIx::Class model class for Catalyst, without loader -BUILD_DEPENDS= p5-Catalyst-Runtime>=5.7000:www/p5-Catalyst-Runtime \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Catalyst-Runtime>=5.7000:www/p5-Catalyst-Runtime \ p5-Catalyst-Devel>=1.00:www/p5-Catalyst-Devel \ p5-DBIx-Class>=0.01:databases/p5-DBIx-Class -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-Catalyst-Model-DBIC-Schema/Makefile b/www/p5-Catalyst-Model-DBIC-Schema/Makefile index 3de258d9853..467892eca13 100644 --- a/www/p5-Catalyst-Model-DBIC-Schema/Makefile +++ b/www/p5-Catalyst-Model-DBIC-Schema/Makefile @@ -14,7 +14,8 @@ COMMENT= DBIx::Class::Schema Model Class LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Carp-Clan>=0:devel/p5-Carp-Clan \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Carp-Clan>=0:devel/p5-Carp-Clan \ p5-Catalyst-Component-InstancePerContext>=0:www/p5-Catalyst-Component-InstancePerContext \ p5-Catalyst-Runtime>=5.80005:www/p5-Catalyst-Runtime \ p5-CatalystX-Component-Traits>=0.14:www/p5-CatalystX-Component-Traits \ @@ -33,7 +34,6 @@ BUILD_DEPENDS= p5-Carp-Clan>=0:devel/p5-Carp-Clan \ p5-Try-Tiny>=0:lang/p5-Try-Tiny \ p5-namespace-autoclean>=0.09:devel/p5-namespace-autoclean \ p5-namespace-clean>=0:devel/p5-namespace-clean -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-DBD-SQLite>=0:databases/p5-DBD-SQLite \ p5-Test-Exception>=0:devel/p5-Test-Exception \ p5-Test-Requires>=0:devel/p5-Test-Requires diff --git a/www/p5-Catalyst-Model-DynamicAdaptor/Makefile b/www/p5-Catalyst-Model-DynamicAdaptor/Makefile index 27f8e4a11ee..4f7998b8c30 100644 --- a/www/p5-Catalyst-Model-DynamicAdaptor/Makefile +++ b/www/p5-Catalyst-Model-DynamicAdaptor/Makefile @@ -12,10 +12,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Dynamically load adaptor modules -BUILD_DEPENDS= p5-Catalyst-Runtime>=0:www/p5-Catalyst-Runtime \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Catalyst-Runtime>=0:www/p5-Catalyst-Runtime \ p5-Module-Recursive-Require>=0:devel/p5-Module-Recursive-Require \ p5-Test-Spelling>=0:devel/p5-Test-Spelling -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-Catalyst-Model-LDAP/Makefile b/www/p5-Catalyst-Model-LDAP/Makefile index 18a3fd851a6..38008dadade 100644 --- a/www/p5-Catalyst-Model-LDAP/Makefile +++ b/www/p5-Catalyst-Model-LDAP/Makefile @@ -13,13 +13,13 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Catalyst-Runtime>=5.62000:www/p5-Catalyst-Runtime \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Catalyst-Runtime>=5.62000:www/p5-Catalyst-Runtime \ p5-Class-Accessor>=0:devel/p5-Class-Accessor \ p5-MRO-Compat>=0:devel/p5-MRO-Compat \ p5-Module-Runtime>=0.015:devel/p5-Module-Runtime \ p5-Data-Page>=0:databases/p5-Data-Page \ p5-perl-ldap>=0.65:net/p5-perl-ldap -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/www/p5-Catalyst-Model-Oryx/Makefile b/www/p5-Catalyst-Model-Oryx/Makefile index 7465357fc31..089dff0b656 100644 --- a/www/p5-Catalyst-Model-Oryx/Makefile +++ b/www/p5-Catalyst-Model-Oryx/Makefile @@ -11,10 +11,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Oryx model component for Catalyst -BUILD_DEPENDS= p5-Oryx>=0:databases/p5-Oryx \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Oryx>=0:databases/p5-Oryx \ p5-Catalyst-Runtime>=0:www/p5-Catalyst-Runtime \ p5-Catalyst-Devel>=1.00:www/p5-Catalyst-Devel -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-Catalyst-Model-Tarantool/Makefile b/www/p5-Catalyst-Model-Tarantool/Makefile index 76129db86a5..825f28033ed 100644 --- a/www/p5-Catalyst-Model-Tarantool/Makefile +++ b/www/p5-Catalyst-Model-Tarantool/Makefile @@ -13,9 +13,9 @@ COMMENT= Tarantool interface for Catalyst based application LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Catalyst-Runtime>=5.90001:www/p5-Catalyst-Runtime \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Catalyst-Runtime>=5.90001:www/p5-Catalyst-Runtime \ p5-DR-Tarantool>=0.37:databases/p5-DR-Tarantool -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/www/p5-Catalyst-Model-XML-Feed/Makefile b/www/p5-Catalyst-Model-XML-Feed/Makefile index 44b30ec2614..d432dc17da2 100644 --- a/www/p5-Catalyst-Model-XML-Feed/Makefile +++ b/www/p5-Catalyst-Model-XML-Feed/Makefile @@ -11,11 +11,11 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Use RSS/Atom feeds as a Catalyst Model -BUILD_DEPENDS= p5-Catalyst-Runtime>=5.7000:www/p5-Catalyst-Runtime \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Catalyst-Runtime>=5.7000:www/p5-Catalyst-Runtime \ p5-XML-Feed>=0.11:textproc/p5-XML-Feed \ p5-URI>=1.35:net/p5-URI \ p5-Class-Accessor>=0:devel/p5-Class-Accessor -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-Catalyst-Model-Xapian/Makefile b/www/p5-Catalyst-Model-Xapian/Makefile index 1f49bf3918d..d81ddce8bc5 100644 --- a/www/p5-Catalyst-Model-Xapian/Makefile +++ b/www/p5-Catalyst-Model-Xapian/Makefile @@ -14,11 +14,11 @@ COMMENT= Catalyst model for Search::Xapian LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Catalyst-Runtime>=5.30:www/p5-Catalyst-Runtime \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Catalyst-Runtime>=5.30:www/p5-Catalyst-Runtime \ p5-Catalyst-Devel>=1.00:www/p5-Catalyst-Devel \ p5-Data-Page>=0:databases/p5-Data-Page \ p5-Search-Xapian12>=1.2.7.0:databases/p5-Search-Xapian12 -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 shebangfix diff --git a/www/p5-Catalyst-Model-Xapian10/Makefile b/www/p5-Catalyst-Model-Xapian10/Makefile index 01ef233b580..4f143ba4049 100644 --- a/www/p5-Catalyst-Model-Xapian10/Makefile +++ b/www/p5-Catalyst-Model-Xapian10/Makefile @@ -16,11 +16,11 @@ COMMENT= Catalyst model for Search::Xapian LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Catalyst-Runtime>=5.30:www/p5-Catalyst-Runtime \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Catalyst-Runtime>=5.30:www/p5-Catalyst-Runtime \ p5-Catalyst-Devel>=1.00:www/p5-Catalyst-Devel \ p5-Data-Page>=0:databases/p5-Data-Page \ p5-Search-Xapian10>=0.9.2.4:databases/p5-Search-Xapian10 -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 shebangfix diff --git a/www/p5-Catalyst-Plugin-Authentication-CDBI/Makefile b/www/p5-Catalyst-Plugin-Authentication-CDBI/Makefile index 4ae6c43d3b4..db525a81ed4 100644 --- a/www/p5-Catalyst-Plugin-Authentication-CDBI/Makefile +++ b/www/p5-Catalyst-Plugin-Authentication-CDBI/Makefile @@ -12,10 +12,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= CDBI Authentication for Catalyst -BUILD_DEPENDS= p5-Catalyst-Runtime>=0:www/p5-Catalyst-Runtime \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Catalyst-Runtime>=0:www/p5-Catalyst-Runtime \ p5-Catalyst-Model-CDBI>=0:www/p5-Catalyst-Model-CDBI \ p5-Catalyst-Plugin-Session-FastMmap>=0:www/p5-Catalyst-Plugin-Session-FastMmap -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-Catalyst-Plugin-Authentication-OpenID/Makefile b/www/p5-Catalyst-Plugin-Authentication-OpenID/Makefile index 2466a0f52b9..a827dbb5237 100644 --- a/www/p5-Catalyst-Plugin-Authentication-OpenID/Makefile +++ b/www/p5-Catalyst-Plugin-Authentication-OpenID/Makefile @@ -14,10 +14,10 @@ COMMENT= OpenID Authentication LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Catalyst-Runtime>=0:www/p5-Catalyst-Runtime \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Catalyst-Runtime>=0:www/p5-Catalyst-Runtime \ p5-LWPx-ParanoidAgent>=0:www/p5-LWPx-ParanoidAgent \ p5-Net-OpenID-Consumer>=0:net/p5-Net-OpenID-Consumer -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USE_PERL5= configure diff --git a/www/p5-Catalyst-Plugin-Authentication-Store-Htpasswd/Makefile b/www/p5-Catalyst-Plugin-Authentication-Store-Htpasswd/Makefile index f8af4fbbeee..9b8fb93389f 100644 --- a/www/p5-Catalyst-Plugin-Authentication-Store-Htpasswd/Makefile +++ b/www/p5-Catalyst-Plugin-Authentication-Store-Htpasswd/Makefile @@ -15,9 +15,9 @@ COMMENT= Use .htpasswd with Catalyst LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Catalyst-Plugin-Authentication>=0.01:www/p5-Catalyst-Plugin-Authentication \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Catalyst-Plugin-Authentication>=0.01:www/p5-Catalyst-Plugin-Authentication \ p5-Authen-Htpasswd>=0.13:security/p5-Authen-Htpasswd -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= modbuild diff --git a/www/p5-Catalyst-Plugin-Authentication/Makefile b/www/p5-Catalyst-Plugin-Authentication/Makefile index 00d4d6fd03c..a959a69308b 100644 --- a/www/p5-Catalyst-Plugin-Authentication/Makefile +++ b/www/p5-Catalyst-Plugin-Authentication/Makefile @@ -12,7 +12,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Infrastructure plugin for the Catalyst authentication framework -BUILD_DEPENDS= p5-Catalyst-Plugin-Session>=0.10:www/p5-Catalyst-Plugin-Session \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Catalyst-Plugin-Session>=0.10:www/p5-Catalyst-Plugin-Session \ p5-Catalyst-Runtime>=0:www/p5-Catalyst-Runtime \ p5-Class-Inspector>=0:devel/p5-Class-Inspector \ p5-MRO-Compat>=0:devel/p5-MRO-Compat \ @@ -21,7 +22,6 @@ BUILD_DEPENDS= p5-Catalyst-Plugin-Session>=0.10:www/p5-Catalyst-Plugin-Session \ p5-String-RewritePrefix>=0:textproc/p5-String-RewritePrefix \ p5-Try-Tiny>=0:lang/p5-Try-Tiny \ p5-namespace-autoclean>=0:devel/p5-namespace-autoclean -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Catalyst-Plugin-Session>=0:www/p5-Catalyst-Plugin-Session \ p5-Catalyst-Plugin-Session-State-Cookie>=0:www/p5-Catalyst-Plugin-Session-State-Cookie \ p5-Digest-SHA1>=0:security/p5-Digest-SHA1 \ diff --git a/www/p5-Catalyst-Plugin-Authorization-ACL/Makefile b/www/p5-Catalyst-Plugin-Authorization-ACL/Makefile index 456f1d59294..c33fb76b128 100644 --- a/www/p5-Catalyst-Plugin-Authorization-ACL/Makefile +++ b/www/p5-Catalyst-Plugin-Authorization-ACL/Makefile @@ -13,7 +13,8 @@ COMMENT= ACL support for Catalyst applications LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Catalyst-Plugin-Authentication>=0:www/p5-Catalyst-Plugin-Authentication \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Catalyst-Plugin-Authentication>=0:www/p5-Catalyst-Plugin-Authentication \ p5-Catalyst-Plugin-Authorization-Roles>=0:www/p5-Catalyst-Plugin-Authorization-Roles \ p5-Catalyst-Runtime>=0:www/p5-Catalyst-Runtime \ p5-Class-Throwable>=0:devel/p5-Class-Throwable \ @@ -22,7 +23,6 @@ BUILD_DEPENDS= p5-Catalyst-Plugin-Authentication>=0:www/p5-Catalyst-Plugin-Authe p5-Tree-Simple>=0:devel/p5-Tree-Simple \ p5-Tree-Simple-VisitorFactory>=0:devel/p5-Tree-Simple-VisitorFactory \ p5-namespace-autoclean>=0:devel/p5-namespace-autoclean -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Catalyst-Plugin-Session>=0:www/p5-Catalyst-Plugin-Session \ p5-Catalyst-Plugin-Session-State-Cookie>=0:www/p5-Catalyst-Plugin-Session-State-Cookie \ p5-Test-WWW-Mechanize-Catalyst>=0:devel/p5-Test-WWW-Mechanize-Catalyst diff --git a/www/p5-Catalyst-Plugin-AutoCRUD/Makefile b/www/p5-Catalyst-Plugin-AutoCRUD/Makefile index dc8c8ad3e0d..cb0b1e5410c 100644 --- a/www/p5-Catalyst-Plugin-AutoCRUD/Makefile +++ b/www/p5-Catalyst-Plugin-AutoCRUD/Makefile @@ -13,7 +13,8 @@ COMMENT= Instant AJAX web front-end for DBIx::Class LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Catalyst-Action-RenderView>=0:www/p5-Catalyst-Action-RenderView \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Catalyst-Action-RenderView>=0:www/p5-Catalyst-Action-RenderView \ p5-Catalyst-Model-DBIC-Schema>=0:www/p5-Catalyst-Model-DBIC-Schema \ p5-Catalyst-Plugin-ConfigLoader>=0:www/p5-Catalyst-Plugin-ConfigLoader \ p5-Catalyst-Runtime>=5.70000:www/p5-Catalyst-Runtime \ @@ -27,7 +28,6 @@ BUILD_DEPENDS= p5-Catalyst-Action-RenderView>=0:www/p5-Catalyst-Action-RenderVie p5-List-MoreUtils>=0:lang/p5-List-MoreUtils \ p5-MRO-Compat>=0:devel/p5-MRO-Compat \ p5-SQL-Translator>=0:databases/p5-SQL-Translator -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-DBD-SQLite>=0:databases/p5-DBD-SQLite \ p5-JSON-XS>=0:converters/p5-JSON-XS \ p5-Test-WWW-Mechanize-Catalyst>=0:devel/p5-Test-WWW-Mechanize-Catalyst diff --git a/www/p5-Catalyst-Plugin-Browser/Makefile b/www/p5-Catalyst-Plugin-Browser/Makefile index 5144a54a826..d0562187236 100644 --- a/www/p5-Catalyst-Plugin-Browser/Makefile +++ b/www/p5-Catalyst-Plugin-Browser/Makefile @@ -10,9 +10,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Browser Detection for Catalyst -BUILD_DEPENDS= p5-Catalyst-Runtime>=0:www/p5-Catalyst-Runtime \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Catalyst-Runtime>=0:www/p5-Catalyst-Runtime \ p5-Catalyst-TraitFor-Request-BrowserDetect>=0:www/p5-Catalyst-TraitFor-Request-BrowserDetect -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-Catalyst-Plugin-C3/Makefile b/www/p5-Catalyst-Plugin-C3/Makefile index a8caecc651d..23177ebb059 100644 --- a/www/p5-Catalyst-Plugin-C3/Makefile +++ b/www/p5-Catalyst-Plugin-C3/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Catalyst Plugin to subvert NEXT to use Class::C3 -BUILD_DEPENDS= p5-Catalyst-Runtime>=5.7006:www/p5-Catalyst-Runtime \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Catalyst-Runtime>=5.7006:www/p5-Catalyst-Runtime \ p5-Class-C3>=0.19:devel/p5-Class-C3 -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-Catalyst-Plugin-Cache-FastMmap/Makefile b/www/p5-Catalyst-Plugin-Cache-FastMmap/Makefile index f7618cbe524..e43b5d3b3fa 100644 --- a/www/p5-Catalyst-Plugin-Cache-FastMmap/Makefile +++ b/www/p5-Catalyst-Plugin-Cache-FastMmap/Makefile @@ -14,10 +14,10 @@ COMMENT= Mmap cache for Catalyst LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Cache-FastMmap>=0:devel/p5-Cache-FastMmap \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Cache-FastMmap>=0:devel/p5-Cache-FastMmap \ p5-Catalyst-Runtime>=5.7000:www/p5-Catalyst-Runtime \ p5-Class-Data-Inheritable>0:devel/p5-Class-Data-Inheritable -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-Catalyst-Plugin-Cache-Memcached-Fast/Makefile b/www/p5-Catalyst-Plugin-Cache-Memcached-Fast/Makefile index f474ea52d6e..9a682e1cd0a 100644 --- a/www/p5-Catalyst-Plugin-Cache-Memcached-Fast/Makefile +++ b/www/p5-Catalyst-Plugin-Cache-Memcached-Fast/Makefile @@ -11,11 +11,11 @@ PKGNAMEPREFIX= p5- MAINTAINER= culot@FreeBSD.org COMMENT= Catalyst Plugin for Cache::Memcached::Fast -BUILD_DEPENDS= p5-Cache-Memcached-Fast>=0:databases/p5-Cache-Memcached-Fast \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Cache-Memcached-Fast>=0:databases/p5-Cache-Memcached-Fast \ p5-Catalyst-Runtime>=0:www/p5-Catalyst-Runtime \ p5-Class-Data-Inheritable>=0:devel/p5-Class-Data-Inheritable \ p5-Test-Simple>=0:devel/p5-Test-Simple -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-Catalyst-Plugin-Cache-Memcached/Makefile b/www/p5-Catalyst-Plugin-Cache-Memcached/Makefile index d15cd8dbdff..722409a2891 100644 --- a/www/p5-Catalyst-Plugin-Cache-Memcached/Makefile +++ b/www/p5-Catalyst-Plugin-Cache-Memcached/Makefile @@ -11,10 +11,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Distributed cache for Catalyst -BUILD_DEPENDS= p5-Catalyst-Runtime>=5.7000:www/p5-Catalyst-Runtime \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Catalyst-Runtime>=5.7000:www/p5-Catalyst-Runtime \ p5-Cache-Memcached>=0:databases/p5-Cache-Memcached \ p5-Class-Data-Inheritable>=0:devel/p5-Class-Data-Inheritable -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-Catalyst-Plugin-Cache/Makefile b/www/p5-Catalyst-Plugin-Cache/Makefile index e5fe4ce23ca..e9d4045fdf7 100644 --- a/www/p5-Catalyst-Plugin-Cache/Makefile +++ b/www/p5-Catalyst-Plugin-Cache/Makefile @@ -11,10 +11,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Flexible caching support for Catalyst -BUILD_DEPENDS= p5-Catalyst-Runtime>=5.8000:www/p5-Catalyst-Runtime \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Catalyst-Runtime>=5.8000:www/p5-Catalyst-Runtime \ p5-Task-Weaken>=0:devel/p5-Task-Weaken \ p5-MRO-Compat>=0:devel/p5-MRO-Compat -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Deep>=0:devel/p5-Test-Deep \ p5-Test-Exception>=0:devel/p5-Test-Exception \ p5-Test-WWW-Mechanize-Catalyst>=0:devel/p5-Test-WWW-Mechanize-Catalyst diff --git a/www/p5-Catalyst-Plugin-Captcha/Makefile b/www/p5-Catalyst-Plugin-Captcha/Makefile index 70ba7fba7a4..dd731ec2fe9 100644 --- a/www/p5-Catalyst-Plugin-Captcha/Makefile +++ b/www/p5-Catalyst-Plugin-Captcha/Makefile @@ -11,11 +11,11 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Create and validate Captcha for Catalyst -BUILD_DEPENDS= p5-Catalyst-Runtime>=5.7000:www/p5-Catalyst-Runtime \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Catalyst-Runtime>=5.7000:www/p5-Catalyst-Runtime \ p5-Catalyst-Plugin-Session>=0:www/p5-Catalyst-Plugin-Session \ p5-libwww>=0:www/p5-libwww \ p5-GD-SecurityImage>=0:security/p5-GD-SecurityImage -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-Catalyst-Plugin-ConfigLoader/Makefile b/www/p5-Catalyst-Plugin-ConfigLoader/Makefile index 4fef76a68a0..643d22a6552 100644 --- a/www/p5-Catalyst-Plugin-ConfigLoader/Makefile +++ b/www/p5-Catalyst-Plugin-ConfigLoader/Makefile @@ -14,11 +14,11 @@ COMMENT= Load config files of various types LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Catalyst-Runtime>=5.7008:www/p5-Catalyst-Runtime \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Catalyst-Runtime>=5.7008:www/p5-Catalyst-Runtime \ p5-Data-Visitor>=0.24:devel/p5-Data-Visitor \ p5-Config-Any>=0.20:devel/p5-Config-Any \ p5-MRO-Compat>=0.09:devel/p5-MRO-Compat -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-Catalyst-Plugin-CookiedSession/Makefile b/www/p5-Catalyst-Plugin-CookiedSession/Makefile index 32ff83ad1dc..5e9856bd840 100644 --- a/www/p5-Catalyst-Plugin-CookiedSession/Makefile +++ b/www/p5-Catalyst-Plugin-CookiedSession/Makefile @@ -11,12 +11,12 @@ PKGNAMEPREFIX= p5- MAINTAINER= culot@FreeBSD.org COMMENT= Catalyst Plugin for storing sessions in a browser cookie -BUILD_DEPENDS= p5-Class-Accessor>=0:devel/p5-Class-Accessor \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Accessor>=0:devel/p5-Class-Accessor \ p5-Crypt-CBC>=0:security/p5-Crypt-CBC \ p5-Crypt-Rijndael>=0:security/p5-Crypt-Rijndael \ p5-JSON-XS-VersionOneAndTwo>=0:converters/p5-JSON-XS-VersionOneAndTwo \ p5-Catalyst-Runtime>=0:www/p5-Catalyst-Runtime -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-Catalyst-Plugin-DefaultEnd/Makefile b/www/p5-Catalyst-Plugin-DefaultEnd/Makefile index c2a5ee1ebb3..5dbb0696f1d 100644 --- a/www/p5-Catalyst-Plugin-DefaultEnd/Makefile +++ b/www/p5-Catalyst-Plugin-DefaultEnd/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Sensible default end action -BUILD_DEPENDS= p5-Catalyst-Runtime>=5.2000:www/p5-Catalyst-Runtime -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Catalyst-Runtime>=5.2000:www/p5-Catalyst-Runtime USES= perl5 USE_PERL5= modbuild diff --git a/www/p5-Catalyst-Plugin-Email/Makefile b/www/p5-Catalyst-Plugin-Email/Makefile index 751623fc2bb..18e50029b40 100644 --- a/www/p5-Catalyst-Plugin-Email/Makefile +++ b/www/p5-Catalyst-Plugin-Email/Makefile @@ -13,10 +13,10 @@ COMMENT= Send emails with Catalyst LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Catalyst-Runtime>=5.7000:www/p5-Catalyst-Runtime \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Catalyst-Runtime>=5.7000:www/p5-Catalyst-Runtime \ p5-Email-MIME>=0:mail/p5-Email-MIME \ p5-Email-Send>=0:mail/p5-Email-Send -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/www/p5-Catalyst-Plugin-ErrorCatcher/Makefile b/www/p5-Catalyst-Plugin-ErrorCatcher/Makefile index ef666f9b08b..7d391e538d3 100644 --- a/www/p5-Catalyst-Plugin-ErrorCatcher/Makefile +++ b/www/p5-Catalyst-Plugin-ErrorCatcher/Makefile @@ -14,7 +14,8 @@ COMMENT= Catch application errors and emit them somewhere LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Catalyst-Runtime>=5.80000:www/p5-Catalyst-Runtime \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Catalyst-Runtime>=5.80000:www/p5-Catalyst-Runtime \ p5-Data-Dump>=0:devel/p5-Data-Dump \ p5-DateTime>=0:devel/p5-DateTime \ p5-File-Slurp>=0:devel/p5-File-Slurp \ @@ -23,7 +24,6 @@ BUILD_DEPENDS= p5-Catalyst-Runtime>=5.80000:www/p5-Catalyst-Runtime \ p5-Module-Pluggable>=0:devel/p5-Module-Pluggable \ p5-Moose>=0:devel/p5-Moose \ p5-Path-Class>=0:devel/p5-Path-Class -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Catalyst-Plugin-Authentication>=0.10010:www/p5-Catalyst-Plugin-Authentication \ p5-Catalyst-Plugin-ConfigLoader>=0.22:www/p5-Catalyst-Plugin-ConfigLoader \ p5-Catalyst-Plugin-Session-State-Cookie>=0:www/p5-Catalyst-Plugin-Session-State-Cookie \ diff --git a/www/p5-Catalyst-Plugin-FillInForm/Makefile b/www/p5-Catalyst-Plugin-FillInForm/Makefile index 7c29082c155..31e8dd5381f 100644 --- a/www/p5-Catalyst-Plugin-FillInForm/Makefile +++ b/www/p5-Catalyst-Plugin-FillInForm/Makefile @@ -11,10 +11,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Automatically fill in forms in Catalyst using HTML::FillInForms -BUILD_DEPENDS= p5-Catalyst-Runtime>=5.7000:www/p5-Catalyst-Runtime \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Catalyst-Runtime>=5.7000:www/p5-Catalyst-Runtime \ p5-HTML-FillInForm>=0:www/p5-HTML-FillInForm \ p5-Catalyst-Action-RenderView>=0:www/p5-Catalyst-Action-RenderView -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-Catalyst-Plugin-FormBuilder/Makefile b/www/p5-Catalyst-Plugin-FormBuilder/Makefile index d4c9c9d72b1..3b9d3b1f439 100644 --- a/www/p5-Catalyst-Plugin-FormBuilder/Makefile +++ b/www/p5-Catalyst-Plugin-FormBuilder/Makefile @@ -14,9 +14,9 @@ COMMENT= FormBuilder for Catalyst LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Catalyst-Runtime>=5.7:www/p5-Catalyst-Runtime \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Catalyst-Runtime>=5.7:www/p5-Catalyst-Runtime \ p5-CGI-FormBuilder>=3.02:www/p5-CGI-FormBuilder -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 tar:tgz USE_PERL5= configure diff --git a/www/p5-Catalyst-Plugin-FormValidator/Makefile b/www/p5-Catalyst-Plugin-FormValidator/Makefile index c9b12602543..7ce425bf0d7 100644 --- a/www/p5-Catalyst-Plugin-FormValidator/Makefile +++ b/www/p5-Catalyst-Plugin-FormValidator/Makefile @@ -14,11 +14,11 @@ COMMENT= FormValidator for Catalyst LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Catalyst-Runtime>=5.80001:www/p5-Catalyst-Runtime \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Catalyst-Runtime>=5.80001:www/p5-Catalyst-Runtime \ p5-Data-FormValidator>=0:textproc/p5-Data-FormValidator \ p5-MRO-Compat>=0:devel/p5-MRO-Compat \ p5-Moose>=0.93:devel/p5-Moose -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-Catalyst-Plugin-I18N/Makefile b/www/p5-Catalyst-Plugin-I18N/Makefile index 251e93d66c7..4deea19e220 100644 --- a/www/p5-Catalyst-Plugin-I18N/Makefile +++ b/www/p5-Catalyst-Plugin-I18N/Makefile @@ -11,11 +11,11 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= I18N for Catalyst -BUILD_DEPENDS= p5-Catalyst-Runtime>=5.7000:www/p5-Catalyst-Runtime \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Catalyst-Runtime>=5.7000:www/p5-Catalyst-Runtime \ p5-Locale-Maketext-Lexicon>=0:devel/p5-Locale-Maketext-Lexicon \ p5-Locale-Maketext-Simple>=0.19:devel/p5-Locale-Maketext-Simple \ p5-MRO-Compat>=0.10:devel/p5-MRO-Compat -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-Catalyst-Plugin-Log-Dispatch/Makefile b/www/p5-Catalyst-Plugin-Log-Dispatch/Makefile index c2481f10779..8f70af05c09 100644 --- a/www/p5-Catalyst-Plugin-Log-Dispatch/Makefile +++ b/www/p5-Catalyst-Plugin-Log-Dispatch/Makefile @@ -11,11 +11,11 @@ PKGNAMEPREFIX= p5- MAINTAINER= oleg@mamontov.net COMMENT= Log module of Catalyst that uses Log::Dispatch -BUILD_DEPENDS= p5-Log-Dispatch>=2.13:devel/p5-Log-Dispatch \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Log-Dispatch>=2.13:devel/p5-Log-Dispatch \ p5-Log-Dispatch-Config>=0:devel/p5-Log-Dispatch-Config \ p5-Catalyst-Runtime>=5.65:www/p5-Catalyst-Runtime \ p5-UNIVERSAL-require>=0:devel/p5-UNIVERSAL-require -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-Catalyst-Plugin-Log-Handler/Makefile b/www/p5-Catalyst-Plugin-Log-Handler/Makefile index 0cdba3a1e40..98413393d75 100644 --- a/www/p5-Catalyst-Plugin-Log-Handler/Makefile +++ b/www/p5-Catalyst-Plugin-Log-Handler/Makefile @@ -10,10 +10,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Catalyst log handler -BUILD_DEPENDS= p5-Class-Accessor>=0:devel/p5-Class-Accessor \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Accessor>=0:devel/p5-Class-Accessor \ p5-Log-Handler>=0:devel/p5-Log-Handler \ p5-MRO-Compat>=0:devel/p5-MRO-Compat -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= modbuild diff --git a/www/p5-Catalyst-Plugin-PageCache/Makefile b/www/p5-Catalyst-Plugin-PageCache/Makefile index ba8e2eb532f..f1744befa50 100644 --- a/www/p5-Catalyst-Plugin-PageCache/Makefile +++ b/www/p5-Catalyst-Plugin-PageCache/Makefile @@ -10,11 +10,11 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Cache the output of entire pages -BUILD_DEPENDS= p5-Catalyst-Runtime>=5.7000:www/p5-Catalyst-Runtime \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Catalyst-Runtime>=5.7000:www/p5-Catalyst-Runtime \ p5-Digest-SHA1>=0:security/p5-Digest-SHA1 \ p5-MRO-Compat>=0.10:devel/p5-MRO-Compat \ p5-Catalyst-Plugin-Cache>=0.08:www/p5-Catalyst-Plugin-Cache -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Cache-Cache>=0:devel/p5-Cache-Cache \ p5-Class-Data-Inheritable>=0:devel/p5-Class-Data-Inheritable \ diff --git a/www/p5-Catalyst-Plugin-Params-Nested/Makefile b/www/p5-Catalyst-Plugin-Params-Nested/Makefile index 6190c33554a..90910e5da78 100644 --- a/www/p5-Catalyst-Plugin-Params-Nested/Makefile +++ b/www/p5-Catalyst-Plugin-Params-Nested/Makefile @@ -14,9 +14,9 @@ COMMENT= Nested params (ala Ruby on Rails or PHP-style param arrays) LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-CGI-Expand>=1.06:www/p5-CGI-Expand \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-CGI-Expand>=1.06:www/p5-CGI-Expand \ p5-Catalyst-Runtime>=5.7000:www/p5-Catalyst-Runtime -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-MockObject>=0:devel/p5-Test-MockObject USES= perl5 diff --git a/www/p5-Catalyst-Plugin-Pluggable/Makefile b/www/p5-Catalyst-Plugin-Pluggable/Makefile index 75f8fd686c6..b0ee07cf443 100644 --- a/www/p5-Catalyst-Plugin-Pluggable/Makefile +++ b/www/p5-Catalyst-Plugin-Pluggable/Makefile @@ -12,8 +12,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Plugin for pluggable Catalyst applications -BUILD_DEPENDS= p5-Catalyst-Runtime>=5.7000:www/p5-Catalyst-Runtime -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Catalyst-Runtime>=5.7000:www/p5-Catalyst-Runtime USES= perl5 USE_PERL5= configure diff --git a/www/p5-Catalyst-Plugin-Prototype/Makefile b/www/p5-Catalyst-Plugin-Prototype/Makefile index 694c813727a..3e96f74b0b6 100644 --- a/www/p5-Catalyst-Plugin-Prototype/Makefile +++ b/www/p5-Catalyst-Plugin-Prototype/Makefile @@ -12,11 +12,11 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Catalyst plugin for Prototype -BUILD_DEPENDS= p5-Catalyst-Runtime>=5.7006:www/p5-Catalyst-Runtime \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Catalyst-Runtime>=5.7006:www/p5-Catalyst-Runtime \ p5-Catalyst-Devel>=1.00:www/p5-Catalyst-Devel \ p5-Class-Data-Inheritable>=0:devel/p5-Class-Data-Inheritable \ p5-HTML-Prototype>=1.48:www/p5-HTML-Prototype -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-Catalyst-Plugin-Scheduler/Makefile b/www/p5-Catalyst-Plugin-Scheduler/Makefile index 32faeab5636..0f46d54a69e 100644 --- a/www/p5-Catalyst-Plugin-Scheduler/Makefile +++ b/www/p5-Catalyst-Plugin-Scheduler/Makefile @@ -14,12 +14,12 @@ COMMENT= Schedule events to run in a cron-like manner LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Catalyst-Runtime>=5.7000:www/p5-Catalyst-Runtime \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Catalyst-Runtime>=5.7000:www/p5-Catalyst-Runtime \ p5-Class-Data-Inheritable>=0:devel/p5-Class-Data-Inheritable \ p5-DateTime-Event-Cron>=0:devel/p5-DateTime-Event-Cron \ p5-Set-Scalar>=0:devel/p5-Set-Scalar \ p5-YAML>=0:textproc/p5-YAML -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-Catalyst-Plugin-Server/Makefile b/www/p5-Catalyst-Plugin-Server/Makefile index c870d0e70f9..100730cd910 100644 --- a/www/p5-Catalyst-Plugin-Server/Makefile +++ b/www/p5-Catalyst-Plugin-Server/Makefile @@ -14,13 +14,13 @@ COMMENT= Catalyst Server Plugin: Base & XMLRPC LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Catalyst-Runtime>=5.90:www/p5-Catalyst-Runtime \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Catalyst-Runtime>=5.90:www/p5-Catalyst-Runtime \ p5-Catalyst-DispatchType-Regex>=5.90000:www/p5-Catalyst-DispatchType-Regex \ p5-Class-Data-Inheritable>=0:devel/p5-Class-Data-Inheritable \ p5-MRO-Compat>=0:devel/p5-MRO-Compat \ p5-Clone-Fast>=0:devel/p5-Clone-Fast \ p5-RPC-XML>=0:net/p5-RPC-XML -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/www/p5-Catalyst-Plugin-Session-FastMmap/Makefile b/www/p5-Catalyst-Plugin-Session-FastMmap/Makefile index cd5c0adfa01..2d9da90ec52 100644 --- a/www/p5-Catalyst-Plugin-Session-FastMmap/Makefile +++ b/www/p5-Catalyst-Plugin-Session-FastMmap/Makefile @@ -12,14 +12,14 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= FastMmap sessions for Catalyst -BUILD_DEPENDS= p5-Cache-FastMmap>0:devel/p5-Cache-FastMmap \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Cache-FastMmap>0:devel/p5-Cache-FastMmap \ p5-Catalyst-Runtime>2.99:www/p5-Catalyst-Runtime \ p5-Class-Accessor>0:devel/p5-Class-Accessor \ p5-Class-Data-Inheritable>0:devel/p5-Class-Data-Inheritable \ p5-MRO-Compat>0:devel/p5-MRO-Compat \ p5-URI-Find>0:textproc/p5-URI-Find \ p5-URI>0:net/p5-URI -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-Catalyst-Plugin-Session-PerUser/Makefile b/www/p5-Catalyst-Plugin-Session-PerUser/Makefile index 6d55dacc305..59e19ece6f8 100644 --- a/www/p5-Catalyst-Plugin-Session-PerUser/Makefile +++ b/www/p5-Catalyst-Plugin-Session-PerUser/Makefile @@ -14,14 +14,14 @@ COMMENT= Per user sessions (instead of per browser sessions) LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Catalyst-Plugin-Authentication>=0:www/p5-Catalyst-Plugin-Authentication \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Catalyst-Plugin-Authentication>=0:www/p5-Catalyst-Plugin-Authentication \ p5-Catalyst-Plugin-Session>=0.06:www/p5-Catalyst-Plugin-Session \ p5-Hash-Merge>=0:textproc/p5-Hash-Merge \ p5-MRO-Compat>=0:devel/p5-MRO-Compat \ p5-Moose>=0:devel/p5-Moose \ p5-Object-Signature>=0:devel/p5-Object-Signature \ p5-namespace-autoclean>=0:devel/p5-namespace-autoclean -RUN_DEPENDS:= ${BUILD_DEPENDS} USE_PERL5= configure USES= perl5 diff --git a/www/p5-Catalyst-Plugin-Session-State-URI/Makefile b/www/p5-Catalyst-Plugin-Session-State-URI/Makefile index 78ca3c2ec5c..0e22063d5fb 100644 --- a/www/p5-Catalyst-Plugin-Session-State-URI/Makefile +++ b/www/p5-Catalyst-Plugin-Session-State-URI/Makefile @@ -11,7 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Saves Catalyst Session IDs by rewriting URIs -BUILD_DEPENDS= p5-Catalyst-Plugin-Session>=0.27:www/p5-Catalyst-Plugin-Session \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Catalyst-Plugin-Session>=0.27:www/p5-Catalyst-Plugin-Session \ p5-Class-Data-Inheritable>=0:devel/p5-Class-Data-Inheritable \ p5-HTML-TokeParser-Simple>=0:www/p5-HTML-TokeParser-Simple \ p5-MIME-Types>=0:mail/p5-MIME-Types \ @@ -21,7 +22,6 @@ BUILD_DEPENDS= p5-Catalyst-Plugin-Session>=0.27:www/p5-Catalyst-Plugin-Session \ p5-URI>=0:net/p5-URI \ p5-URI-Find>=0:textproc/p5-URI-Find \ p5-namespace-clean>=0:devel/p5-namespace-clean -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-MockObject>=1.01:devel/p5-Test-MockObject USES= perl5 diff --git a/www/p5-Catalyst-Plugin-Session-Store-Cache/Makefile b/www/p5-Catalyst-Plugin-Session-Store-Cache/Makefile index 04b61159a25..9996dcde7d1 100644 --- a/www/p5-Catalyst-Plugin-Session-Store-Cache/Makefile +++ b/www/p5-Catalyst-Plugin-Session-Store-Cache/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Store sessions using a Catalyst::Plugin::Cache -BUILD_DEPENDS= p5-Catalyst-Plugin-Session>=0.06:www/p5-Catalyst-Plugin-Session -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Catalyst-Plugin-Session>=0.06:www/p5-Catalyst-Plugin-Session USES= perl5 USE_PERL5= configure diff --git a/www/p5-Catalyst-Plugin-Session-Store-DBI/Makefile b/www/p5-Catalyst-Plugin-Session-Store-DBI/Makefile index 1249c4428ef..ea0963e3afc 100644 --- a/www/p5-Catalyst-Plugin-Session-Store-DBI/Makefile +++ b/www/p5-Catalyst-Plugin-Session-Store-DBI/Makefile @@ -11,12 +11,12 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Store your sessions in a database -BUILD_DEPENDS= p5-Catalyst-Plugin-Session>=0:www/p5-Catalyst-Plugin-Session \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Catalyst-Plugin-Session>=0:www/p5-Catalyst-Plugin-Session \ p5-Catalyst-Runtime>=5.49:www/p5-Catalyst-Runtime \ p5-Class-Data-Inheritable>=0:devel/p5-Class-Data-Inheritable \ p5-DBI>=0:databases/p5-DBI \ p5-MRO-Compat>=0:devel/p5-MRO-Compat -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-Catalyst-Plugin-Session-Store-DBIC/Makefile b/www/p5-Catalyst-Plugin-Session-Store-DBIC/Makefile index 2910d0e2ce8..b74b5c77e8d 100644 --- a/www/p5-Catalyst-Plugin-Session-Store-DBIC/Makefile +++ b/www/p5-Catalyst-Plugin-Session-Store-DBIC/Makefile @@ -14,12 +14,12 @@ COMMENT= Store your sessions via DBIx::Class LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Catalyst-Runtime>=5.7000:www/p5-Catalyst-Runtime \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Catalyst-Runtime>=5.7000:www/p5-Catalyst-Runtime \ p5-Catalyst-Plugin-Session-Store-Delegate>=0.05:www/p5-Catalyst-Plugin-Session-Store-Delegate \ p5-DBIx-Class>=0.0700:databases/p5-DBIx-Class \ p5-MRO-Compat>0:devel/p5-MRO-Compat \ p5-Class-Accessor>=0:devel/p5-Class-Accessor -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Warn>=0:devel/p5-Test-Warn USES= perl5 diff --git a/www/p5-Catalyst-Plugin-Session-Store-Delegate/Makefile b/www/p5-Catalyst-Plugin-Session-Store-Delegate/Makefile index 3aa8eb5a6df..1e372bfe075 100644 --- a/www/p5-Catalyst-Plugin-Session-Store-Delegate/Makefile +++ b/www/p5-Catalyst-Plugin-Session-Store-Delegate/Makefile @@ -14,9 +14,9 @@ COMMENT= Delegate session storage to an application model object LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Catalyst-Plugin-Session>=0.27:www/p5-Catalyst-Plugin-Session \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Catalyst-Plugin-Session>=0.27:www/p5-Catalyst-Plugin-Session \ p5-MRO-Compat>0:devel/p5-MRO-Compat -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/www/p5-Catalyst-Plugin-Session-Store-FastMmap/Makefile b/www/p5-Catalyst-Plugin-Session-Store-FastMmap/Makefile index 728246de8ad..ff2be6a210c 100644 --- a/www/p5-Catalyst-Plugin-Session-Store-FastMmap/Makefile +++ b/www/p5-Catalyst-Plugin-Session-Store-FastMmap/Makefile @@ -11,14 +11,14 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= FastMmap session storage backend -BUILD_DEPENDS= p5-Cache-FastMmap>=1.29:devel/p5-Cache-FastMmap \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Cache-FastMmap>=1.29:devel/p5-Cache-FastMmap \ p5-Catalyst-Plugin-Session>=0.27:www/p5-Catalyst-Plugin-Session \ p5-Catalyst-Runtime>=5.80000:www/p5-Catalyst-Runtime \ p5-Class-Data-Inheritable>=0:devel/p5-Class-Data-Inheritable \ p5-MRO-Compat>=0:devel/p5-MRO-Compat \ p5-MooseX-Emulate-Class-Accessor-Fast>=0:devel/p5-MooseX-Emulate-Class-Accessor-Fast \ p5-Path-Class>=0:devel/p5-Path-Class -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-Catalyst-Plugin-Session-Store-File/Makefile b/www/p5-Catalyst-Plugin-Session-Store-File/Makefile index 025cad71457..de837be60c9 100644 --- a/www/p5-Catalyst-Plugin-Session-Store-File/Makefile +++ b/www/p5-Catalyst-Plugin-Session-Store-File/Makefile @@ -14,12 +14,12 @@ COMMENT= File storage backend for session data LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Catalyst-Runtime>=5.7000:www/p5-Catalyst-Runtime \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Catalyst-Runtime>=5.7000:www/p5-Catalyst-Runtime \ p5-Cache-Cache>=1.02:devel/p5-Cache-Cache \ p5-Catalyst-Plugin-Session>=0.27:www/p5-Catalyst-Plugin-Session \ p5-MRO-Compat>=0.10:devel/p5-MRO-Compat \ p5-Class-Data-Inheritable>=0.04:devel/p5-Class-Data-Inheritable -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-Catalyst-Plugin-Session-Store-Memcached-Fast/Makefile b/www/p5-Catalyst-Plugin-Session-Store-Memcached-Fast/Makefile index 8e5c0bfee8e..5ec1ffbb811 100644 --- a/www/p5-Catalyst-Plugin-Session-Store-Memcached-Fast/Makefile +++ b/www/p5-Catalyst-Plugin-Session-Store-Memcached-Fast/Makefile @@ -11,11 +11,11 @@ PKGNAMEPREFIX= p5- MAINTAINER= culot@FreeBSD.org COMMENT= Memcached storage backend for session data -BUILD_DEPENDS= p5-Cache-Memcached-Fast>=0:databases/p5-Cache-Memcached-Fast \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Cache-Memcached-Fast>=0:databases/p5-Cache-Memcached-Fast \ p5-Catalyst-Plugin-Session>=0.01:www/p5-Catalyst-Plugin-Session \ p5-Catalyst-Runtime>=5.7000:www/p5-Catalyst-Runtime \ p5-Class-Data-Inheritable>=0:devel/p5-Class-Data-Inheritable -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= modbuild diff --git a/www/p5-Catalyst-Plugin-Session-Store-Memcached/Makefile b/www/p5-Catalyst-Plugin-Session-Store-Memcached/Makefile index 9bcb9be258c..b361dfdc03c 100644 --- a/www/p5-Catalyst-Plugin-Session-Store-Memcached/Makefile +++ b/www/p5-Catalyst-Plugin-Session-Store-Memcached/Makefile @@ -14,7 +14,8 @@ COMMENT= Memcached storage backend for session data LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Cache-Memcached-Managed>=0:databases/p5-Cache-Memcached-Managed \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Cache-Memcached-Managed>=0:databases/p5-Cache-Memcached-Managed \ p5-Catalyst-Plugin-Session>=0.26:www/p5-Catalyst-Plugin-Session \ p5-Catalyst-Runtime>=0:www/p5-Catalyst-Runtime \ p5-Class-Data-Inheritable>=0:devel/p5-Class-Data-Inheritable \ @@ -22,7 +23,6 @@ BUILD_DEPENDS= p5-Cache-Memcached-Managed>=0:databases/p5-Cache-Memcached-Manage p5-Moose>=0:devel/p5-Moose \ p5-MooseX-Emulate-Class-Accessor-Fast>=0:devel/p5-MooseX-Emulate-Class-Accessor-Fast \ p5-namespace-clean>=0:devel/p5-namespace-clean -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-Catalyst-Plugin-Session/Makefile b/www/p5-Catalyst-Plugin-Session/Makefile index 64da53fa77c..66b8fb09c41 100644 --- a/www/p5-Catalyst-Plugin-Session/Makefile +++ b/www/p5-Catalyst-Plugin-Session/Makefile @@ -14,13 +14,13 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual # Do not add p5-Catalyst-Plugin-Session-State-Cookie to TEST_DEPENDS to avoid cyclic dependency -BUILD_DEPENDS= p5-Catalyst-Runtime>=5.71001:www/p5-Catalyst-Runtime \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Catalyst-Runtime>=5.71001:www/p5-Catalyst-Runtime \ p5-MRO-Compat>=0:devel/p5-MRO-Compat \ p5-Moose>=0.76:devel/p5-Moose \ p5-MooseX-Emulate-Class-Accessor-Fast>=0.00801:devel/p5-MooseX-Emulate-Class-Accessor-Fast \ p5-Object-Signature>=0:devel/p5-Object-Signature \ p5-namespace-clean>=0.10:devel/p5-namespace-clean -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Deep>=0:devel/p5-Test-Deep \ p5-Test-Exception>=0:devel/p5-Test-Exception \ p5-Test-WWW-Mechanize-PSGI>=0:devel/p5-Test-WWW-Mechanize-PSGI diff --git a/www/p5-Catalyst-Plugin-Setenv/Makefile b/www/p5-Catalyst-Plugin-Setenv/Makefile index 72b8898146e..0cff004a2ed 100644 --- a/www/p5-Catalyst-Plugin-Setenv/Makefile +++ b/www/p5-Catalyst-Plugin-Setenv/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Set up the environment from Catalyst's config file -BUILD_DEPENDS= p5-Catalyst-Runtime>=5.7000:www/p5-Catalyst-Runtime -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Catalyst-Runtime>=5.7000:www/p5-Catalyst-Runtime USES= perl5 USE_PERL5= modbuild diff --git a/www/p5-Catalyst-Plugin-SmartURI/Makefile b/www/p5-Catalyst-Plugin-SmartURI/Makefile index 85b01b17bce..33d477c189f 100644 --- a/www/p5-Catalyst-Plugin-SmartURI/Makefile +++ b/www/p5-Catalyst-Plugin-SmartURI/Makefile @@ -13,12 +13,12 @@ COMMENT= Configurable URIs for Catalyst LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Catalyst-Runtime>=0:www/p5-Catalyst-Runtime \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Catalyst-Runtime>=0:www/p5-Catalyst-Runtime \ p5-Class-C3-Componentised>=0:devel/p5-Class-C3-Componentised \ p5-Class-Load>=0:devel/p5-Class-Load \ p5-Moose>=0:devel/p5-Moose \ p5-URI-SmartURI>=0:net/p5-URI-SmartURI -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/www/p5-Catalyst-Plugin-StackTrace/Makefile b/www/p5-Catalyst-Plugin-StackTrace/Makefile index b12e5d12760..2e252a7934c 100644 --- a/www/p5-Catalyst-Plugin-StackTrace/Makefile +++ b/www/p5-Catalyst-Plugin-StackTrace/Makefile @@ -14,10 +14,10 @@ COMMENT= Display a stack trace on the debug screen LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Catalyst-Runtime>=5.7000:www/p5-Catalyst-Runtime \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Catalyst-Runtime>=5.7000:www/p5-Catalyst-Runtime \ p5-Devel-StackTrace>=0:devel/p5-Devel-StackTrace \ p5-MRO-Compat>=0.10:devel/p5-MRO-Compat -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-Catalyst-Plugin-Static-Simple/Makefile b/www/p5-Catalyst-Plugin-Static-Simple/Makefile index c41fd0f4728..8944747931f 100644 --- a/www/p5-Catalyst-Plugin-Static-Simple/Makefile +++ b/www/p5-Catalyst-Plugin-Static-Simple/Makefile @@ -13,12 +13,12 @@ COMMENT= Make serving static pages painless LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Catalyst-Runtime>=5.80008:www/p5-Catalyst-Runtime \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Catalyst-Runtime>=5.80008:www/p5-Catalyst-Runtime \ p5-MIME-Types>=2.03:mail/p5-MIME-Types \ p5-Moose>=0:devel/p5-Moose \ p5-MooseX-Types>=0:devel/p5-MooseX-Types \ p5-namespace-autoclean>=0:devel/p5-namespace-autoclean -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/www/p5-Catalyst-Plugin-Static/Makefile b/www/p5-Catalyst-Plugin-Static/Makefile index 91be55da5ac..a5c556dc82d 100644 --- a/www/p5-Catalyst-Plugin-Static/Makefile +++ b/www/p5-Catalyst-Plugin-Static/Makefile @@ -12,12 +12,12 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Serve static files with Catalyst -BUILD_DEPENDS= p5-Catalyst-Runtime>=2.99:www/p5-Catalyst-Runtime \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Catalyst-Runtime>=2.99:www/p5-Catalyst-Runtime \ p5-Class-Data-Inheritable>=0:devel/p5-Class-Data-Inheritable \ p5-File-MimeInfo>=0.11:devel/p5-File-MimeInfo \ p5-File-Slurp>0:devel/p5-File-Slurp \ p5-MRO-Compat>0:devel/p5-MRO-Compat -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-Catalyst-Plugin-StatusMessage/Makefile b/www/p5-Catalyst-Plugin-StatusMessage/Makefile index 0449db74ab3..d74ad3fe5c7 100644 --- a/www/p5-Catalyst-Plugin-StatusMessage/Makefile +++ b/www/p5-Catalyst-Plugin-StatusMessage/Makefile @@ -10,8 +10,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= fw@moov.de COMMENT= Handle passing of status (success and error) messages -BUILD_DEPENDS= p5-Catalyst-Runtime>=5.7000:www/p5-Catalyst-Runtime -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Catalyst-Runtime>=5.7000:www/p5-Catalyst-Runtime USES= perl5 USE_PERL5= configure diff --git a/www/p5-Catalyst-Plugin-SubRequest/Makefile b/www/p5-Catalyst-Plugin-SubRequest/Makefile index 87bd61cc3c3..ccd3b752a6e 100644 --- a/www/p5-Catalyst-Plugin-SubRequest/Makefile +++ b/www/p5-Catalyst-Plugin-SubRequest/Makefile @@ -13,8 +13,8 @@ COMMENT= Make subrequests to actions in Catalyst LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Catalyst-Runtime>=5.90000:www/p5-Catalyst-Runtime -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Catalyst-Runtime>=5.90000:www/p5-Catalyst-Runtime USES= perl5 USE_PERL5= configure diff --git a/www/p5-Catalyst-Plugin-Textile/Makefile b/www/p5-Catalyst-Plugin-Textile/Makefile index b0d2481afa6..746e034b737 100644 --- a/www/p5-Catalyst-Plugin-Textile/Makefile +++ b/www/p5-Catalyst-Plugin-Textile/Makefile @@ -12,10 +12,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Textile for Catalyst -BUILD_DEPENDS= p5-Catalyst-Runtime>=0:www/p5-Catalyst-Runtime \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Catalyst-Runtime>=0:www/p5-Catalyst-Runtime \ p5-Class-Data-Inheritable>=0:devel/p5-Class-Data-Inheritable \ p5-Text-Textile>=0:textproc/p5-Text-Textile -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-Catalyst-Plugin-Unicode/Makefile b/www/p5-Catalyst-Plugin-Unicode/Makefile index fee285b2a08..e65d8a43826 100644 --- a/www/p5-Catalyst-Plugin-Unicode/Makefile +++ b/www/p5-Catalyst-Plugin-Unicode/Makefile @@ -14,9 +14,9 @@ COMMENT= Unicode aware Catalyst LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Catalyst-Runtime>=5.7000:www/p5-Catalyst-Runtime \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Catalyst-Runtime>=5.7000:www/p5-Catalyst-Runtime \ p5-MRO-Compat>=0.10:devel/p5-MRO-Compat -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-IO-stringy>=0:devel/p5-IO-stringy \ p5-Test-WWW-Mechanize-Catalyst>=0:devel/p5-Test-WWW-Mechanize-Catalyst diff --git a/www/p5-Catalyst-Plugin-XMLRPC/Makefile b/www/p5-Catalyst-Plugin-XMLRPC/Makefile index f2cb570bb9b..ca40cf95732 100644 --- a/www/p5-Catalyst-Plugin-XMLRPC/Makefile +++ b/www/p5-Catalyst-Plugin-XMLRPC/Makefile @@ -14,10 +14,10 @@ COMMENT= Dispatch XMLRPC methods with Catalyst LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Catalyst-Runtime>=5.7000:www/p5-Catalyst-Runtime \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Catalyst-Runtime>=5.7000:www/p5-Catalyst-Runtime \ p5-Class-Data-Inheritable>=0:devel/p5-Class-Data-Inheritable \ p5-RPC-XML>=0:net/p5-RPC-XML -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-Catalyst-Runtime/Makefile b/www/p5-Catalyst-Runtime/Makefile index da200b17a53..19d242c1c22 100644 --- a/www/p5-Catalyst-Runtime/Makefile +++ b/www/p5-Catalyst-Runtime/Makefile @@ -18,7 +18,8 @@ LICENSE_FILE= ${WRKSRC}/LICENSE # - devel/p5-Test-WWW-Mechanize-Catalyst # - www/p5-Catalyst-Engine-PSGI # - www/p5-CatalystX-LeakChecker -BUILD_DEPENDS= p5-CGI-Simple>=1.109:www/p5-CGI-Simple \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-CGI-Simple>=1.109:www/p5-CGI-Simple \ p5-CGI-Struct>=0:www/p5-CGI-Struct \ p5-Class-C3-Adopt-NEXT>=0.07:devel/p5-Class-C3-Adopt-NEXT \ p5-Class-Load>=0.12:devel/p5-Class-Load \ @@ -55,7 +56,6 @@ BUILD_DEPENDS= p5-CGI-Simple>=1.109:www/p5-CGI-Simple \ p5-URI-ws>=0.03:net/p5-URI-ws \ p5-libwww>=5.837:www/p5-libwww \ p5-namespace-clean>=0.23:devel/p5-namespace-clean -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Term-Size-Any>=0:devel/p5-Term-Size-Any \ p5-Test-Fatal>=0:devel/p5-Test-Fatal \ p5-Test-Without-Module>=0:devel/p5-Test-Without-Module \ @@ -71,7 +71,8 @@ USE_PERL5= configure .include .if ${PERL_LEVEL} < 502501 -BUILD_DEPENDS+= p5-Scalar-List-Utils>=1.45:lang/p5-Scalar-List-Utils +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS+= p5-Scalar-List-Utils>=1.45:lang/p5-Scalar-List-Utils RUN_DEPENDS+= p5-Scalar-List-Utils>=1.45:lang/p5-Scalar-List-Utils .endif diff --git a/www/p5-Catalyst-TraitFor-Controller-DBIC-DoesPaging/Makefile b/www/p5-Catalyst-TraitFor-Controller-DBIC-DoesPaging/Makefile index 430b319c277..acf8161b0f2 100644 --- a/www/p5-Catalyst-TraitFor-Controller-DBIC-DoesPaging/Makefile +++ b/www/p5-Catalyst-TraitFor-Controller-DBIC-DoesPaging/Makefile @@ -11,10 +11,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= Alex.Bakhtin@gmail.com COMMENT= Helps you paginate, search, sort, and more easily using DBIx::Class -BUILD_DEPENDS= p5-Catalyst-Model-DBIC-Schema>=0.29:www/p5-Catalyst-Model-DBIC-Schema \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Catalyst-Model-DBIC-Schema>=0.29:www/p5-Catalyst-Model-DBIC-Schema \ p5-Catalyst-Runtime>=5.80000:www/p5-Catalyst-Runtime \ p5-DBIx-Class>=0.08108:databases/p5-DBIx-Class -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Catalyst-View-JSON>=0:www/p5-Catalyst-View-JSON \ p5-DBD-SQLite>=0:databases/p5-DBD-SQLite \ p5-JSON>=0:converters/p5-JSON \ diff --git a/www/p5-Catalyst-TraitFor-Request-BrowserDetect/Makefile b/www/p5-Catalyst-TraitFor-Request-BrowserDetect/Makefile index 2ff7ece7dc0..b162258449d 100644 --- a/www/p5-Catalyst-TraitFor-Request-BrowserDetect/Makefile +++ b/www/p5-Catalyst-TraitFor-Request-BrowserDetect/Makefile @@ -10,10 +10,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Browser detection for Catalyst::Requests -BUILD_DEPENDS= p5-Catalyst-Runtime>=0:www/p5-Catalyst-Runtime \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Catalyst-Runtime>=0:www/p5-Catalyst-Runtime \ p5-CatalystX-RoleApplicator>=0:www/p5-CatalystX-RoleApplicator \ p5-HTTP-BrowserDetect>=0:www/p5-HTTP-BrowserDetect -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-Catalyst-View-ClearSilver/Makefile b/www/p5-Catalyst-View-ClearSilver/Makefile index 3caa9ce3266..1ad866d8d7b 100644 --- a/www/p5-Catalyst-View-ClearSilver/Makefile +++ b/www/p5-Catalyst-View-ClearSilver/Makefile @@ -15,12 +15,12 @@ COMMENT= ClearSilver view class for Catalyst LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-ClearSilver>=0:www/p5-ClearSilver \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-ClearSilver>=0:www/p5-ClearSilver \ p5-Catalyst-Runtime>=5.7000:www/p5-Catalyst-Runtime \ p5-Data-Structure-Util>=0:devel/p5-Data-Structure-Util \ p5-Class-C3>=0:devel/p5-Class-C3 \ p5-Catalyst-View-Templated>=0:www/p5-Catalyst-View-Templated -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Catalyst-View-Template-Declare>=0:www/p5-Catalyst-View-Template-Declare USES= perl5 diff --git a/www/p5-Catalyst-View-Email/Makefile b/www/p5-Catalyst-View-Email/Makefile index bd115a90404..910083787f8 100644 --- a/www/p5-Catalyst-View-Email/Makefile +++ b/www/p5-Catalyst-View-Email/Makefile @@ -13,13 +13,13 @@ COMMENT= Catalyst View for Email LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Authen-SASL>=2.13:security/p5-Authen-SASL \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Authen-SASL>=2.13:security/p5-Authen-SASL \ p5-Catalyst-Runtime>=5.70000:www/p5-Catalyst-Runtime \ p5-Email-MIME>=1.859:mail/p5-Email-MIME \ p5-Email-Sender>=0.100110:mail/p5-Email-Sender \ p5-Module-Runtime>=0.014:devel/p5-Module-Runtime \ p5-Moose>=0.93:devel/p5-Moose -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Catalyst-View-Mason>=0.18:www/p5-Catalyst-View-Mason \ p5-Catalyst-View-TT>=0.31:www/p5-Catalyst-View-TT \ p5-Test-Requires>=0:devel/p5-Test-Requires diff --git a/www/p5-Catalyst-View-GraphViz/Makefile b/www/p5-Catalyst-View-GraphViz/Makefile index 6ea2237eebd..bbe523879f6 100644 --- a/www/p5-Catalyst-View-GraphViz/Makefile +++ b/www/p5-Catalyst-View-GraphViz/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Catalyst::View::GraphViz - GraphViz View Class -BUILD_DEPENDS= p5-Catalyst-Plugin-SubRequest>=0:www/p5-Catalyst-Plugin-SubRequest \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Catalyst-Plugin-SubRequest>=0:www/p5-Catalyst-Plugin-SubRequest \ p5-GraphViz>=0:graphics/p5-GraphViz -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-Catalyst-View-HTML-Template-Compiled/Makefile b/www/p5-Catalyst-View-HTML-Template-Compiled/Makefile index ff4683c191c..aee323884ff 100644 --- a/www/p5-Catalyst-View-HTML-Template-Compiled/Makefile +++ b/www/p5-Catalyst-View-HTML-Template-Compiled/Makefile @@ -11,11 +11,11 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= HTML::Template::Compiled View Class -BUILD_DEPENDS= p5-HTML-Template-Compiled>=0.74:www/p5-HTML-Template-Compiled \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTML-Template-Compiled>=0.74:www/p5-HTML-Template-Compiled \ p5-Path-Class>=0:devel/p5-Path-Class \ p5-Catalyst-Runtime>=0:www/p5-Catalyst-Runtime \ p5-Catalyst-Devel>=1.00:www/p5-Catalyst-Devel -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= modbuild diff --git a/www/p5-Catalyst-View-HTML-Template/Makefile b/www/p5-Catalyst-View-HTML-Template/Makefile index 2209d0e1854..cd22282e817 100644 --- a/www/p5-Catalyst-View-HTML-Template/Makefile +++ b/www/p5-Catalyst-View-HTML-Template/Makefile @@ -11,10 +11,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= kiki@bsdro.org COMMENT= HTML::Template view class for Catalyst -BUILD_DEPENDS= p5-Catalyst-Runtime>=5:www/p5-Catalyst-Runtime \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Catalyst-Runtime>=5:www/p5-Catalyst-Runtime \ p5-Catalyst-Devel>=1.00:www/p5-Catalyst-Devel \ p5-HTML-Template>0:www/p5-HTML-Template -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= modbuild diff --git a/www/p5-Catalyst-View-JSON/Makefile b/www/p5-Catalyst-View-JSON/Makefile index f5df18f2d6c..da6d818f485 100644 --- a/www/p5-Catalyst-View-JSON/Makefile +++ b/www/p5-Catalyst-View-JSON/Makefile @@ -12,10 +12,10 @@ COMMENT= Catalyst View handler that returns stash data in JSON format LICENSE= ART10 -BUILD_DEPENDS= p5-Catalyst-Runtime>=5.6000:www/p5-Catalyst-Runtime \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Catalyst-Runtime>=5.6000:www/p5-Catalyst-Runtime \ p5-JSON-Any>=1.15:converters/p5-JSON-Any \ p5-MRO-Compat>0:devel/p5-MRO-Compat -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-Catalyst-View-Mason/Makefile b/www/p5-Catalyst-View-Mason/Makefile index 9042cf200a4..bbff4aa3c09 100644 --- a/www/p5-Catalyst-View-Mason/Makefile +++ b/www/p5-Catalyst-View-Mason/Makefile @@ -13,10 +13,10 @@ COMMENT= Mason view class for Catalyst LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Catalyst-Runtime>=5.5000:www/p5-Catalyst-Runtime \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Catalyst-Runtime>=5.5000:www/p5-Catalyst-Runtime \ p5-HTML-Mason>=0:www/p5-HTML-Mason \ p5-MRO-Compat>=0:devel/p5-MRO-Compat -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Catalyst-Devel>=0:www/p5-Catalyst-Devel USES= perl5 diff --git a/www/p5-Catalyst-View-RRDGraph/Makefile b/www/p5-Catalyst-View-RRDGraph/Makefile index 42104201fa0..99a4fbd8143 100644 --- a/www/p5-Catalyst-View-RRDGraph/Makefile +++ b/www/p5-Catalyst-View-RRDGraph/Makefile @@ -13,11 +13,11 @@ COMMENT= RRD graph view class for Catalyst LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Catalyst-Runtime>=5.7000:www/p5-Catalyst-Runtime \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Catalyst-Runtime>=5.7000:www/p5-Catalyst-Runtime \ p5-Catalyst-Plugin-Static-Simple>=0.17:www/p5-Catalyst-Plugin-Static-Simple \ rrdtool>=0:databases/rrdtool \ p5-MRO-Compat>=0:devel/p5-MRO-Compat -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-MockObject>=1.07:devel/p5-Test-MockObject USES= perl5 diff --git a/www/p5-Catalyst-View-TT-Alloy/Makefile b/www/p5-Catalyst-View-TT-Alloy/Makefile index df5f929baa4..85a84e147ce 100644 --- a/www/p5-Catalyst-View-TT-Alloy/Makefile +++ b/www/p5-Catalyst-View-TT-Alloy/Makefile @@ -14,11 +14,11 @@ COMMENT= Template::Alloy views for Catalyst LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Catalyst-Runtime>=5.7:www/p5-Catalyst-Runtime \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Catalyst-Runtime>=5.7:www/p5-Catalyst-Runtime \ p5-Data-Dump>=0:devel/p5-Data-Dump \ p5-Path-Class>=0:devel/p5-Path-Class \ p5-Template-Alloy>=0:www/p5-Template-Alloy -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-Catalyst-View-TT-ControllerLocal/Makefile b/www/p5-Catalyst-View-TT-ControllerLocal/Makefile index bee1653dfb0..1228d2ad6d5 100644 --- a/www/p5-Catalyst-View-TT-ControllerLocal/Makefile +++ b/www/p5-Catalyst-View-TT-ControllerLocal/Makefile @@ -14,10 +14,10 @@ COMMENT= Catalyst TT View with template names relative to the Controller LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Catalyst-Runtime>=5.7000:www/p5-Catalyst-Runtime \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Catalyst-Runtime>=5.7000:www/p5-Catalyst-Runtime \ p5-Catalyst-Devel>=1.00:www/p5-Catalyst-Devel \ p5-Catalyst-View-TT>=0:www/p5-Catalyst-View-TT -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-Catalyst-View-TT/Makefile b/www/p5-Catalyst-View-TT/Makefile index 2c2394aef09..dcb356da0da 100644 --- a/www/p5-Catalyst-View-TT/Makefile +++ b/www/p5-Catalyst-View-TT/Makefile @@ -13,14 +13,14 @@ COMMENT= Template Toolkit view class for Catalyst LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Catalyst-Runtime>=5.7000:www/p5-Catalyst-Runtime \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Catalyst-Runtime>=5.7000:www/p5-Catalyst-Runtime \ p5-Class-Accessor>=0:devel/p5-Class-Accessor \ p5-Data-Dump>=0:devel/p5-Data-Dump \ p5-MRO-Compat>=0:devel/p5-MRO-Compat \ p5-Path-Class>=0:devel/p5-Path-Class \ p5-Template-Timer>=0:www/p5-Template-Timer \ p5-Template-Toolkit>=0:www/p5-Template-Toolkit -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/www/p5-Catalyst-View-Template-Declare/Makefile b/www/p5-Catalyst-View-Template-Declare/Makefile index 1f49a4c2e2e..3f8160a7c03 100644 --- a/www/p5-Catalyst-View-Template-Declare/Makefile +++ b/www/p5-Catalyst-View-Template-Declare/Makefile @@ -11,12 +11,12 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Perl module to use Template::Declare with Catalyst -BUILD_DEPENDS= p5-Catalyst-Runtime>=5.7000:www/p5-Catalyst-Runtime \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Catalyst-Runtime>=5.7000:www/p5-Catalyst-Runtime \ p5-Catalyst-View-Templated>=0:www/p5-Catalyst-View-Templated \ p5-Class-C3>=0:devel/p5-Class-C3 \ p5-PadWalker>=0:devel/p5-PadWalker \ p5-Template-Declare>=0.26:textproc/p5-Template-Declare -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-Catalyst-View-Templated/Makefile b/www/p5-Catalyst-View-Templated/Makefile index 6ba72db3159..50c0dce1567 100644 --- a/www/p5-Catalyst-View-Templated/Makefile +++ b/www/p5-Catalyst-View-Templated/Makefile @@ -15,10 +15,10 @@ COMMENT= Generic base class for template-based views LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Catalyst-Component-ACCEPT_CONTEXT>=0:www/p5-Catalyst-Component-ACCEPT_CONTEXT \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Catalyst-Component-ACCEPT_CONTEXT>=0:www/p5-Catalyst-Component-ACCEPT_CONTEXT \ p5-Catalyst-Runtime>=5.7000:www/p5-Catalyst-Runtime \ p5-Class-C3>=0:devel/p5-Class-C3 -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-MockObject>=0:devel/p5-Test-MockObject \ p5-Test-WWW-Mechanize-Catalyst>=0:devel/p5-Test-WWW-Mechanize-Catalyst diff --git a/www/p5-Catalyst-View-XML-Feed/Makefile b/www/p5-Catalyst-View-XML-Feed/Makefile index 234a78719d5..1df21c0be8c 100644 --- a/www/p5-Catalyst-View-XML-Feed/Makefile +++ b/www/p5-Catalyst-View-XML-Feed/Makefile @@ -13,10 +13,10 @@ COMMENT= Perl extension for Catalyst view for RSS, Atom, or other XML feeds LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Catalyst-Runtime>0:www/p5-Catalyst-Runtime \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Catalyst-Runtime>0:www/p5-Catalyst-Runtime \ p5-XML-Feed>=0:textproc/p5-XML-Feed \ p5-TimeDate>=0:devel/p5-TimeDate -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-Catalyst-View-XSLT/Makefile b/www/p5-Catalyst-View-XSLT/Makefile index aaa7d7ce4d2..a05b1e7cb10 100644 --- a/www/p5-Catalyst-View-XSLT/Makefile +++ b/www/p5-Catalyst-View-XSLT/Makefile @@ -12,10 +12,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= XSLT view class for Catalyst -BUILD_DEPENDS= p5-Catalyst-Runtime>=5.7000:www/p5-Catalyst-Runtime \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Catalyst-Runtime>=5.7000:www/p5-Catalyst-Runtime \ p5-XML-LibXSLT>=1.52:textproc/p5-XML-LibXSLT \ p5-Path-Class>=0.12:devel/p5-Path-Class -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= modbuild diff --git a/www/p5-CatalystX-InjectComponent/Makefile b/www/p5-CatalystX-InjectComponent/Makefile index 8901ad239f9..980d2c93e01 100644 --- a/www/p5-CatalystX-InjectComponent/Makefile +++ b/www/p5-CatalystX-InjectComponent/Makefile @@ -14,9 +14,9 @@ COMMENT= Inject components into your Catalyst application LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Catalyst-Runtime>=5.80000:www/p5-Catalyst-Runtime \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Catalyst-Runtime>=5.80000:www/p5-Catalyst-Runtime \ p5-Class-Inspector>=0:devel/p5-Class-Inspector -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Most>=0:devel/p5-Test-Most USES= perl5 diff --git a/www/p5-CatalystX-LeakChecker/Makefile b/www/p5-CatalystX-LeakChecker/Makefile index cc36499acdc..36b12aec4c6 100644 --- a/www/p5-CatalystX-LeakChecker/Makefile +++ b/www/p5-CatalystX-LeakChecker/Makefile @@ -12,10 +12,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Debug memory leaks in Catalyst applications -BUILD_DEPENDS= p5-Catalyst-Runtime>=0:www/p5-Catalyst-Runtime \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Catalyst-Runtime>=0:www/p5-Catalyst-Runtime \ p5-Devel-Cycle>0:devel/p5-Devel-Cycle \ p5-PadWalker>0:devel/p5-PadWalker -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-CatalystX-Profile/Makefile b/www/p5-CatalystX-Profile/Makefile index 00fc8fe8fee..127f1b93345 100644 --- a/www/p5-CatalystX-Profile/Makefile +++ b/www/p5-CatalystX-Profile/Makefile @@ -14,13 +14,13 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Catalyst-Runtime>=5.80020:www/p5-Catalyst-Runtime \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Catalyst-Runtime>=5.80020:www/p5-Catalyst-Runtime \ p5-CatalystX-InjectComponent>=0.024:www/p5-CatalystX-InjectComponent \ p5-Devel-NYTProf>=3.01:devel/p5-Devel-NYTProf \ p5-Moose>=0.93:devel/p5-Moose \ p5-Sub-Identify>=0.04:devel/p5-Sub-Identify \ p5-namespace-autoclean>=0.09:devel/p5-namespace-autoclean -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/www/p5-CatalystX-RoleApplicator/Makefile b/www/p5-CatalystX-RoleApplicator/Makefile index 6a886ff21c9..373cf2c7fb1 100644 --- a/www/p5-CatalystX-RoleApplicator/Makefile +++ b/www/p5-CatalystX-RoleApplicator/Makefile @@ -10,9 +10,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Apply roles to your Catalyst application-related classes -BUILD_DEPENDS= p5-MooseX-RelatedClassRoles>=0.003:devel/p5-MooseX-RelatedClassRoles \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-MooseX-RelatedClassRoles>=0.003:devel/p5-MooseX-RelatedClassRoles \ p5-Catalyst-Runtime>=5.7:www/p5-Catalyst-Runtime -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-CatalystX-SimpleLogin/Makefile b/www/p5-CatalystX-SimpleLogin/Makefile index a8d1953980d..3ff20afb602 100644 --- a/www/p5-CatalystX-SimpleLogin/Makefile +++ b/www/p5-CatalystX-SimpleLogin/Makefile @@ -13,7 +13,8 @@ COMMENT= Provide a simple Login controller which can be reused LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Catalyst-Action-REST>=0.74:www/p5-Catalyst-Action-REST \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Catalyst-Action-REST>=0.74:www/p5-Catalyst-Action-REST \ p5-Catalyst-Plugin-Authentication>=0:www/p5-Catalyst-Plugin-Authentication \ p5-Catalyst-Plugin-Session>=0.35:www/p5-Catalyst-Plugin-Session \ p5-Catalyst-Runtime>=5.80013:www/p5-Catalyst-Runtime \ @@ -28,7 +29,6 @@ BUILD_DEPENDS= p5-Catalyst-Action-REST>=0.74:www/p5-Catalyst-Action-REST \ p5-MooseX-Types>=0:devel/p5-MooseX-Types \ p5-Try-Tiny>=0.24:lang/p5-Try-Tiny \ p5-namespace-autoclean>=0:devel/p5-namespace-autoclean -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Catalyst-Action-RenderView>=0:www/p5-Catalyst-Action-RenderView \ p5-Catalyst-ActionRole-ACL>=0:www/p5-Catalyst-ActionRole-ACL \ p5-Catalyst-Plugin-Session-State-Cookie>=0:www/p5-Catalyst-Plugin-Session-State-Cookie \ diff --git a/www/p5-CatalystX-VirtualComponents/Makefile b/www/p5-CatalystX-VirtualComponents/Makefile index 6c2b449841d..75a1b775bb8 100644 --- a/www/p5-CatalystX-VirtualComponents/Makefile +++ b/www/p5-CatalystX-VirtualComponents/Makefile @@ -14,12 +14,12 @@ COMMENT= Setup virtual Catalyst components LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-namespace-clean>0:devel/p5-namespace-clean \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-namespace-clean>0:devel/p5-namespace-clean \ p5-Catalyst-Runtime>=5.8:www/p5-Catalyst-Runtime \ p5-Devel-InheritNamespace>0:devel/p5-Devel-InheritNamespace \ p5-Moose>0:devel/p5-Moose \ p5-Module-Pluggable>0:devel/p5-Module-Pluggable -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-Class-DBI-FromForm/Makefile b/www/p5-Class-DBI-FromForm/Makefile index 693f1db7115..f4985c08aee 100644 --- a/www/p5-Class-DBI-FromForm/Makefile +++ b/www/p5-Class-DBI-FromForm/Makefile @@ -15,9 +15,9 @@ COMMENT= Update Class::DBI using Data::FormValidator or HTML::Widget LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Class-DBI>=0:databases/p5-Class-DBI \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-DBI>=0:databases/p5-Class-DBI \ p5-Data-FormValidator>=0:textproc/p5-Data-FormValidator -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-Dancer-Logger-Log4perl/Makefile b/www/p5-Dancer-Logger-Log4perl/Makefile index ec34b7181d0..ffbcd1e3e18 100644 --- a/www/p5-Dancer-Logger-Log4perl/Makefile +++ b/www/p5-Dancer-Logger-Log4perl/Makefile @@ -13,9 +13,9 @@ COMMENT= Dancer logging adapter for Log::Log4perl LICENSE= ART20 -BUILD_DEPENDS= p5-Dancer>=1.2001:www/p5-Dancer \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Dancer>=1.2001:www/p5-Dancer \ p5-Log-Log4perl>=0:devel/p5-Log-Log4perl -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-Dancer-Plugin-ExtDirect/Makefile b/www/p5-Dancer-Plugin-ExtDirect/Makefile index ddd188b8cbc..a0e233275ca 100644 --- a/www/p5-Dancer-Plugin-ExtDirect/Makefile +++ b/www/p5-Dancer-Plugin-ExtDirect/Makefile @@ -14,9 +14,9 @@ COMMENT= Dancer plugin for implementing ExtDirect APIs LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Dancer>=1.2001:www/p5-Dancer \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Dancer>=1.2001:www/p5-Dancer \ p5-JSON>=0:converters/p5-JSON -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-Dancer-Plugin-Feed/Makefile b/www/p5-Dancer-Plugin-Feed/Makefile index 30af47997d7..2f3ebc6e6ef 100644 --- a/www/p5-Dancer-Plugin-Feed/Makefile +++ b/www/p5-Dancer-Plugin-Feed/Makefile @@ -14,9 +14,9 @@ COMMENT= Dancer plugin for generating RSS or Atom feeds LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Dancer>=1.2001:www/p5-Dancer \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Dancer>=1.2001:www/p5-Dancer \ p5-XML-Feed>=0:textproc/p5-XML-Feed -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-Dancer-Plugin-FlashMessage/Makefile b/www/p5-Dancer-Plugin-FlashMessage/Makefile index 3d293588835..7e5f8d125c3 100644 --- a/www/p5-Dancer-Plugin-FlashMessage/Makefile +++ b/www/p5-Dancer-Plugin-FlashMessage/Makefile @@ -13,8 +13,8 @@ COMMENT= Dancer plugin for implementing Flash Messages LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Dancer>=1.2001:www/p5-Dancer -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Dancer>=1.2001:www/p5-Dancer USES= perl5 USE_PERL5= configure diff --git a/www/p5-Dancer-Plugin-RPC/Makefile b/www/p5-Dancer-Plugin-RPC/Makefile index 7d73cd690c7..e5f575e4d9b 100644 --- a/www/p5-Dancer-Plugin-RPC/Makefile +++ b/www/p5-Dancer-Plugin-RPC/Makefile @@ -14,12 +14,12 @@ COMMENT= Configure endpoints for XMLRPC and JSONRPC procedures LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Dancer>=1.3100:www/p5-Dancer \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Dancer>=1.3100:www/p5-Dancer \ p5-JSON>=2.0:converters/p5-JSON \ p5-Params-ValidationCompiler>=0.24:devel/p5-Params-ValidationCompiler \ p5-RPC-XML>=0.56:net/p5-RPC-XML \ p5-Type-Tiny>=1:devel/p5-Type-Tiny -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Fatal>=0.010:devel/p5-Test-Fatal \ p5-Test-NoWarnings>=1:devel/p5-Test-NoWarnings diff --git a/www/p5-Dancer2-Plugin-Ajax/Makefile b/www/p5-Dancer2-Plugin-Ajax/Makefile index 34b135a8c58..be6c824dd1b 100644 --- a/www/p5-Dancer2-Plugin-Ajax/Makefile +++ b/www/p5-Dancer2-Plugin-Ajax/Makefile @@ -13,8 +13,8 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Dancer2>=0.200000:www/p5-Dancer2 -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Dancer2>=0.200000:www/p5-Dancer2 NO_ARCH= yes USES= perl5 diff --git a/www/p5-Dancer2-Plugin-Deferred/Makefile b/www/p5-Dancer2-Plugin-Deferred/Makefile index 2b7132859a2..1c762c50c82 100644 --- a/www/p5-Dancer2-Plugin-Deferred/Makefile +++ b/www/p5-Dancer2-Plugin-Deferred/Makefile @@ -13,9 +13,9 @@ COMMENT= Dancer2 plugin to defer messages or data across redirections LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Dancer2>=0.200000:www/p5-Dancer2 \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Dancer2>=0.200000:www/p5-Dancer2 \ p5-URI>=0:net/p5-URI -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-HTTP-Cookies>=0:www/p5-HTTP-Cookies \ p5-HTTP-Message>=0:www/p5-HTTP-Message \ p5-Plack>=0:www/p5-Plack diff --git a/www/p5-Dancer2-Plugin-Interchange6/Makefile b/www/p5-Dancer2-Plugin-Interchange6/Makefile index 789d56cd408..10e186f12cb 100644 --- a/www/p5-Dancer2-Plugin-Interchange6/Makefile +++ b/www/p5-Dancer2-Plugin-Interchange6/Makefile @@ -13,7 +13,8 @@ COMMENT= Dancer2 Plugin for Interchange6 Open Source Shop Machine LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Interchange6-Schema>=0:databases/p5-Interchange6-Schema \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Interchange6-Schema>=0:databases/p5-Interchange6-Schema \ p5-Interchange6>=0:www/p5-Interchange6 \ p5-Module-Runtime>=0:devel/p5-Module-Runtime \ p5-Moo>=2.000000:devel/p5-Moo \ @@ -30,7 +31,6 @@ BUILD_DEPENDS= p5-Interchange6-Schema>=0:databases/p5-Interchange6-Schema \ p5-Dancer2-Plugin-DBIC>=0.0013:databases/p5-Dancer2-Plugin-DBIC \ p5-Dancer2-Plugin-Auth-Extensible>=0.600:security/p5-Dancer2-Plugin-Auth-Extensible \ p5-Dancer2-Plugin-Auth-Extensible-Provider-DBIC>=0.600:security/p5-Dancer2-Plugin-Auth-Extensible-Provider-DBIC -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-DBD-SQLite>=0:databases/p5-DBD-SQLite \ p5-DBIx-Class-Helpers>=0:databases/p5-DBIx-Class-Helpers \ p5-Test-WWW-Mechanize-PSGI>=0:devel/p5-Test-WWW-Mechanize-PSGI diff --git a/www/p5-Dancer2-Plugin-Path-Class/Makefile b/www/p5-Dancer2-Plugin-Path-Class/Makefile index f77755e81ed..c161404ecdf 100644 --- a/www/p5-Dancer2-Plugin-Path-Class/Makefile +++ b/www/p5-Dancer2-Plugin-Path-Class/Makefile @@ -14,11 +14,11 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual TEST_DEPENDS= p5-Path-Tiny>=0:devel/p5-Path-Tiny -BUILD_DEPENDS= p5-Dancer2>=0.166000:www/p5-Dancer2 \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Dancer2>=0.166000:www/p5-Dancer2 \ p5-MIME-Types>=0:mail/p5-MIME-Types \ p5-Path-Class>=0:devel/p5-Path-Class \ p5-Format-Human-Bytes>=0:converters/p5-Format-Human-Bytes -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-Dancer2/Makefile b/www/p5-Dancer2/Makefile index 8d359689da9..2270755ba20 100644 --- a/www/p5-Dancer2/Makefile +++ b/www/p5-Dancer2/Makefile @@ -15,7 +15,9 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-App-Cmd>=0:devel/p5-App-Cmd \ +BUILD_DEPENDS= ${RUN_DEPENDS} \ + p5-File-ShareDir-Install>=0.06:devel/p5-File-ShareDir-Install +RUN_DEPENDS= p5-App-Cmd>=0:devel/p5-App-Cmd \ p5-Capture-Tiny>=0.12:devel/p5-Capture-Tiny \ p5-Clone>=0:devel/p5-Clone \ p5-Crypt-URandom>=0:security/p5-Crypt-URandom \ @@ -44,7 +46,6 @@ BUILD_DEPENDS= p5-App-Cmd>=0:devel/p5-App-Cmd \ p5-URI>=0:net/p5-URI \ p5-libwww>=0:www/p5-libwww \ p5-YAML>=0.86:textproc/p5-YAML -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-AnyEvent>=0:devel/p5-AnyEvent \ p5-Exporter-Tiny>=0:devel/p5-Exporter-Tiny \ p5-HTTP-Message>=0:www/p5-HTTP-Message \ @@ -56,18 +57,16 @@ TEST_DEPENDS= p5-AnyEvent>=0:devel/p5-AnyEvent \ p5-Test-Memory-Cycle>=0:devel/p5-Test-Memory-Cycle \ p5-Test-MockTime>=0:devel/p5-Test-MockTime \ p5-YAML>=0.86:textproc/p5-YAML -BUILD_DEPENDS+= p5-File-ShareDir-Install>=0.06:devel/p5-File-ShareDir-Install OPTIONS_DEFINE= XS OPTIONS_DEFAULT= XS -XS_BUILD_DEPENDS= p5-CGI-Deurl-XS>=0:www/p5-CGI-Deurl-XS \ - p5-Class-Load-XS>=0:devel/p5-Class-Load-XS \ - p5-JSON-XS>=0:converters/p5-JSON-XS \ - p5-Scope-Upper>=0:devel/p5-Scope-Upper \ - p5-URL-Encode-XS>=0:www/p5-URL-Encode-XS \ - p5-YAML-LibYAML>=0:textproc/p5-YAML-LibYAML -XS_RUN_DEPENDS= ${XS_BUILD_DEPENDS} +XS_RUN_DEPENDS= p5-CGI-Deurl-XS>=0:www/p5-CGI-Deurl-XS \ + p5-Class-Load-XS>=0:devel/p5-Class-Load-XS \ + p5-JSON-XS>=0:converters/p5-JSON-XS \ + p5-Scope-Upper>=0:devel/p5-Scope-Upper \ + p5-URL-Encode-XS>=0:www/p5-URL-Encode-XS \ + p5-YAML-LibYAML>=0:textproc/p5-YAML-LibYAML NO_ARCH= yes USES= perl5 @@ -76,7 +75,6 @@ USE_PERL5= configure .include .if ${PERL_LEVEL} < 502502 -BUILD_DEPENDS+= p5-ExtUtils-MakeMaker>=7.12:devel/p5-ExtUtils-MakeMaker RUN_DEPENDS+= p5-ExtUtils-MakeMaker>=7.12:devel/p5-ExtUtils-MakeMaker .endif diff --git a/www/p5-Data-TreeDumper-Renderer-DHTML/Makefile b/www/p5-Data-TreeDumper-Renderer-DHTML/Makefile index 28a1589b5d7..9d5b10a251c 100644 --- a/www/p5-Data-TreeDumper-Renderer-DHTML/Makefile +++ b/www/p5-Data-TreeDumper-Renderer-DHTML/Makefile @@ -14,8 +14,8 @@ COMMENT= DHTML renderer for Data::TreeDumper LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Data-TreeDumper>=0:devel/p5-Data-TreeDumper -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Data-TreeDumper>=0:devel/p5-Data-TreeDumper USES= perl5 USE_PERL5= configure diff --git a/www/p5-Emplacken/Makefile b/www/p5-Emplacken/Makefile index 689d3196f49..6a036eaa27d 100644 --- a/www/p5-Emplacken/Makefile +++ b/www/p5-Emplacken/Makefile @@ -14,7 +14,8 @@ COMMENT= Manage multiple plack apps with a directory of config files LICENSE= ART20 -BUILD_DEPENDS= p5-Class-Load>=0:devel/p5-Class-Load \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Load>=0:devel/p5-Class-Load \ p5-Config-Any>=0:devel/p5-Config-Any \ p5-File-Pid>=0:devel/p5-File-Pid \ p5-List-AllUtils>=0:devel/p5-List-AllUtils \ @@ -26,7 +27,6 @@ BUILD_DEPENDS= p5-Class-Load>=0:devel/p5-Class-Load \ p5-Path-Class>=0:devel/p5-Path-Class \ p5-Text-Template>=0:textproc/p5-Text-Template \ p5-namespace-autoclean>=0:devel/p5-namespace-autoclean -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USE_PERL5= configure diff --git a/www/p5-FCGI-Async/Makefile b/www/p5-FCGI-Async/Makefile index 6b2f36da8c6..2fe5c7ff41c 100644 --- a/www/p5-FCGI-Async/Makefile +++ b/www/p5-FCGI-Async/Makefile @@ -14,10 +14,10 @@ COMMENT= Module to allow use of FastCGI asynchronously LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-IO-Async>=0:devel/p5-IO-Async \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-IO-Async>=0:devel/p5-IO-Async \ p5-Net-Async-FastCGI>=0:www/p5-Net-Async-FastCGI \ p5-Net-FastCGI>=0:www/p5-Net-FastCGI -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Identity>=0:devel/p5-Test-Identity \ p5-Test-HexString>=0:devel/p5-Test-HexString \ p5-Test-Refcount>0:devel/p5-Test-Refcount diff --git a/www/p5-FCGI-Engine/Makefile b/www/p5-FCGI-Engine/Makefile index afa64eedede..47e384023de 100644 --- a/www/p5-FCGI-Engine/Makefile +++ b/www/p5-FCGI-Engine/Makefile @@ -13,7 +13,8 @@ COMMENT= Flexible engine for running FCGI-based applications LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-CGI-Simple>=0:www/p5-CGI-Simple \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-CGI-Simple>=0:www/p5-CGI-Simple \ p5-Class-Load>=0:devel/p5-Class-Load \ p5-Config-Any>=0:devel/p5-Config-Any \ p5-Declare-Constraints-Simple>=0:devel/p5-Declare-Constraints-Simple \ @@ -22,7 +23,6 @@ BUILD_DEPENDS= p5-CGI-Simple>=0:www/p5-CGI-Simple \ p5-MooseX-Daemonize>=0.09:devel/p5-MooseX-Daemonize \ p5-MooseX-Getopt>=0.26:devel/p5-MooseX-Getopt \ p5-MooseX-Types-Path-Class>=0:devel/p5-MooseX-Types-Path-Class -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Exception>=0:devel/p5-Test-Exception \ p5-Test-WWW-Mechanize>=0:devel/p5-Test-WWW-Mechanize diff --git a/www/p5-FCGI-Spawn/Makefile b/www/p5-FCGI-Spawn/Makefile index 54fc2d8c1a3..b7ea636b6b0 100644 --- a/www/p5-FCGI-Spawn/Makefile +++ b/www/p5-FCGI-Spawn/Makefile @@ -14,11 +14,11 @@ COMMENT= FastCGI server for CGI-like applications multiprocessing LICENSE= LGPL21 LICENSE_FILE= ${WRKSRC}/COPYING -BUILD_DEPENDS= p5-CGI-Fast>=0:www/p5-CGI-Fast \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-CGI-Fast>=0:www/p5-CGI-Fast \ p5-Const-Fast>0:devel/p5-Const-Fast \ p5-FCGI>0:www/p5-FCGI \ p5-FCGI-ProcManager>0:www/p5-FCGI-ProcManager -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Most>0:devel/p5-Test-Most \ p5-Test-Strict>0:devel/p5-Test-Strict diff --git a/www/p5-FEAR-API/Makefile b/www/p5-FEAR-API/Makefile index 175560f62a4..d54e9abeb29 100644 --- a/www/p5-FEAR-API/Makefile +++ b/www/p5-FEAR-API/Makefile @@ -14,7 +14,8 @@ COMMENT= Web Scraping Zen LICENSE= ARTPERL10 -BUILD_DEPENDS= p5-Email-Find>=0:mail/p5-Email-Find \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Email-Find>=0:mail/p5-Email-Find \ p5-Exporter-Lite>=0:devel/p5-Exporter-Lite \ p5-File-MMagic>=0:devel/p5-File-MMagic \ p5-File-Slurp>=0:devel/p5-File-Slurp \ @@ -41,7 +42,6 @@ BUILD_DEPENDS= p5-Email-Find>=0:mail/p5-Email-Find \ p5-XML-RSS-SimpleGen>=0:textproc/p5-XML-RSS-SimpleGen \ p5-XML-XPath>=0:textproc/p5-XML-XPath \ p5-YAML>=0:textproc/p5-YAML -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-Flickr-API/Makefile b/www/p5-Flickr-API/Makefile index 74b875ed15f..b4ba97c1e55 100644 --- a/www/p5-Flickr-API/Makefile +++ b/www/p5-Flickr-API/Makefile @@ -13,13 +13,13 @@ COMMENT= Perl interface to the Flickr API LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-HTTP-Message>=1.56:www/p5-HTTP-Message \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTTP-Message>=1.56:www/p5-HTTP-Message \ p5-Net-OAuth>=0:net/p5-Net-OAuth \ p5-URI>=1.18:net/p5-URI \ p5-XML-LibXML-Simple>=0:textproc/p5-XML-LibXML-Simple \ p5-XML-Parser-Lite-Tree>=0.06:textproc/p5-XML-Parser-Lite-Tree \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Script>=0:devel/p5-Test-Script NO_ARCH= yes diff --git a/www/p5-Flickr-Upload/Makefile b/www/p5-Flickr-Upload/Makefile index 8c5808f7bd5..2848ef0d760 100644 --- a/www/p5-Flickr-Upload/Makefile +++ b/www/p5-Flickr-Upload/Makefile @@ -14,10 +14,10 @@ COMMENT= Upload images to flickr.com LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Flickr-API>=0:www/p5-Flickr-API \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Flickr-API>=0:www/p5-Flickr-API \ p5-XML-Parser-Lite-Tree>=0:textproc/p5-XML-Parser-Lite-Tree \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/www/p5-Gantry/Makefile b/www/p5-Gantry/Makefile index a694db48f2d..e7d7fd95c48 100644 --- a/www/p5-Gantry/Makefile +++ b/www/p5-Gantry/Makefile @@ -11,7 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Web application framework for mod_perl, cgi, etc -BUILD_DEPENDS= p5-DBI>=0:databases/p5-DBI \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-DBI>=0:databases/p5-DBI \ p5-Data-UUID>=0:devel/p5-Data-UUID \ p5-Date-Calc>=0:devel/p5-Date-Calc \ p5-CGI-Simple>=0:www/p5-CGI-Simple \ @@ -28,7 +29,6 @@ BUILD_DEPENDS= p5-DBI>=0:databases/p5-DBI \ p5-JSON>0:converters/p5-JSON \ p5-Template-Toolkit>=2.0:www/p5-Template-Toolkit \ p5-Template-Plugin-HTML-SuperForm>0:textproc/p5-Template-Plugin-HTML-SuperForm -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Exception>=0:devel/p5-Test-Exception USES= perl5 diff --git a/www/p5-Geo-Caching/Makefile b/www/p5-Geo-Caching/Makefile index 2db7b6e5203..8a6172bd83a 100644 --- a/www/p5-Geo-Caching/Makefile +++ b/www/p5-Geo-Caching/Makefile @@ -14,10 +14,10 @@ COMMENT= Object interface for querying Geocaching.com website LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Geo-Cache>=0:misc/p5-Geo-Cache \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Geo-Cache>=0:misc/p5-Geo-Cache \ p5-WWW-Mechanize>=0:www/p5-WWW-Mechanize \ p5-Geo-Gpx>=0:graphics/p5-Geo-Gpx -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-Gungho/Makefile b/www/p5-Gungho/Makefile index 11fb4343bce..646b0463ad3 100644 --- a/www/p5-Gungho/Makefile +++ b/www/p5-Gungho/Makefile @@ -15,7 +15,8 @@ COMMENT= Event Based High Performance Web Crawler Framework LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Best>=0:devel/p5-Best \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Best>=0:devel/p5-Best \ p5-Class-Accessor>=0:devel/p5-Class-Accessor \ p5-Class-C3-Componentised>=0:devel/p5-Class-C3-Componentised \ p5-Class-C3-XS>=0.02:devel/p5-Class-C3-XS \ @@ -46,7 +47,6 @@ BUILD_DEPENDS= p5-Best>=0:devel/p5-Best \ p5-Web-Scraper-Config>=0:www/p5-Web-Scraper-Config \ p5-YAML>=0:textproc/p5-YAML \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 shebangfix diff --git a/www/p5-HTML-Adsense/Makefile b/www/p5-HTML-Adsense/Makefile index f9103b92146..e8f3f5ab906 100644 --- a/www/p5-HTML-Adsense/Makefile +++ b/www/p5-HTML-Adsense/Makefile @@ -14,8 +14,8 @@ COMMENT= Create adsense widgets easily LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Class-Accessor>=0:devel/p5-Class-Accessor -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Accessor>=0:devel/p5-Class-Accessor NO_ARCH= yes USE_PERL5= configure diff --git a/www/p5-HTML-CalendarMonthSimple/Makefile b/www/p5-HTML-CalendarMonthSimple/Makefile index d046759e104..28915d310a0 100644 --- a/www/p5-HTML-CalendarMonthSimple/Makefile +++ b/www/p5-HTML-CalendarMonthSimple/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Perl Module for Generating HTML Calendars -BUILD_DEPENDS= p5-Date-Calc>=0:devel/p5-Date-Calc -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Date-Calc>=0:devel/p5-Date-Calc USES= perl5 USE_PERL5= configure diff --git a/www/p5-HTML-Chunks/Makefile b/www/p5-HTML-Chunks/Makefile index d6122e7054c..df47e4c8c5e 100644 --- a/www/p5-HTML-Chunks/Makefile +++ b/www/p5-HTML-Chunks/Makefile @@ -14,8 +14,8 @@ COMMENT= Simple nested template engine for HTML, XML and XHTML LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-IO-stringy>=0:devel/p5-IO-stringy -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-IO-stringy>=0:devel/p5-IO-stringy NO_ARCH= yes USE_PERL5= configure diff --git a/www/p5-HTML-DOM/Makefile b/www/p5-HTML-DOM/Makefile index 133a2ec4d28..14d81cecf65 100644 --- a/www/p5-HTML-DOM/Makefile +++ b/www/p5-HTML-DOM/Makefile @@ -10,7 +10,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= ehaupt@FreeBSD.org COMMENT= Implementation of the HTML Document Object Model -BUILD_DEPENDS= p5-CSS-DOM>=0:www/p5-CSS-DOM \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-CSS-DOM>=0:www/p5-CSS-DOM \ p5-HTML-Element-Library>=0:www/p5-HTML-Element-Library \ p5-HTML-Encoding>=0:www/p5-HTML-Encoding \ p5-HTTP-Message>=0:www/p5-HTTP-Message \ @@ -18,7 +19,6 @@ BUILD_DEPENDS= p5-CSS-DOM>=0:www/p5-CSS-DOM \ p5-TimeDate>=0:devel/p5-TimeDate \ p5-URI>=0:net/p5-URI \ p5-constant-lexical>0:devel/p5-constant-lexical -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-HTML-Declare/Makefile b/www/p5-HTML-Declare/Makefile index 1961ff91f02..6dd3c5bad15 100644 --- a/www/p5-HTML-Declare/Makefile +++ b/www/p5-HTML-Declare/Makefile @@ -14,8 +14,8 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-HTML-Parser>=0:www/p5-HTML-Parser -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTML-Parser>=0:www/p5-HTML-Parser NO_ARCH= yes USE_PERL5= configure diff --git a/www/p5-HTML-Diff/Makefile b/www/p5-HTML-Diff/Makefile index 3d227a940c7..66723ac4f9c 100644 --- a/www/p5-HTML-Diff/Makefile +++ b/www/p5-HTML-Diff/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= hcoyote@ghostar.org COMMENT= Perl module for finding changes between two strings of HTML -BUILD_DEPENDS= p5-Algorithm-Diff>=0:devel/p5-Algorithm-Diff -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Algorithm-Diff>=0:devel/p5-Algorithm-Diff USES= perl5 USE_PERL5= configure diff --git a/www/p5-HTML-Display/Makefile b/www/p5-HTML-Display/Makefile index 9c8245da5a8..1c56e123a3a 100644 --- a/www/p5-HTML-Display/Makefile +++ b/www/p5-HTML-Display/Makefile @@ -14,10 +14,10 @@ COMMENT= Display HTML locally in a browser LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-HTML-TokeParser-Simple>=2:www/p5-HTML-TokeParser-Simple \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTML-TokeParser-Simple>=2:www/p5-HTML-TokeParser-Simple \ p5-URI>=0:net/p5-URI \ p5-libwww>=5.69:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USE_PERL5= configure diff --git a/www/p5-HTML-Element-Extended/Makefile b/www/p5-HTML-Element-Extended/Makefile index ebbf8ded9d5..fee592f3e22 100644 --- a/www/p5-HTML-Element-Extended/Makefile +++ b/www/p5-HTML-Element-Extended/Makefile @@ -14,8 +14,8 @@ COMMENT= Extended interface to HTML::Tree's HTML::Element class LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-HTML-Tree>=3.01:www/p5-HTML-Tree -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTML-Tree>=3.01:www/p5-HTML-Tree USES= perl5 USE_PERL5= configure diff --git a/www/p5-HTML-Element-Library/Makefile b/www/p5-HTML-Element-Library/Makefile index c7d0211032b..0bffcbf3251 100644 --- a/www/p5-HTML-Element-Library/Makefile +++ b/www/p5-HTML-Element-Library/Makefile @@ -13,7 +13,8 @@ COMMENT= HTML::Element convenience functions LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Array-Group>=0:devel/p5-Array-Group \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Array-Group>=0:devel/p5-Array-Group \ p5-Data-Rmap>=0:devel/p5-Data-Rmap \ p5-HTML-FillInForm>=0:www/p5-HTML-FillInForm \ p5-HTML-Tree>=0:www/p5-HTML-Tree \ @@ -21,7 +22,6 @@ BUILD_DEPENDS= p5-Array-Group>=0:devel/p5-Array-Group \ p5-List-Rotation-Cycle>=0:devel/p5-List-Rotation-Cycle \ p5-Params-Validate>=0:devel/p5-Params-Validate \ p5-Scalar-Listify>=0:devel/p5-Scalar-Listify -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-File-Slurp>=0:devel/p5-File-Slurp \ p5-Test-XML>=0:devel/p5-Test-XML diff --git a/www/p5-HTML-Element-Replacer/Makefile b/www/p5-HTML-Element-Replacer/Makefile index 82dbc3dc71e..e8d3104f45a 100644 --- a/www/p5-HTML-Element-Replacer/Makefile +++ b/www/p5-HTML-Element-Replacer/Makefile @@ -13,10 +13,10 @@ COMMENT= Perl HTML::Element replacer LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-HTML-Element-Library>=0:www/p5-HTML-Element-Library \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTML-Element-Library>=0:www/p5-HTML-Element-Library \ p5-HTML-Tree>=0:www/p5-HTML-Tree \ p5-Moose>=0:devel/p5-Moose -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-File-Slurp>=0:devel/p5-File-Slurp \ p5-HTML-PrettyPrinter>=0:www/p5-HTML-PrettyPrinter diff --git a/www/p5-HTML-Encoding/Makefile b/www/p5-HTML-Encoding/Makefile index 1fb7b5c381e..b1387b829b7 100644 --- a/www/p5-HTML-Encoding/Makefile +++ b/www/p5-HTML-Encoding/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Determine the encoding of HTML/XML/XHTML documents -BUILD_DEPENDS= p5-HTML-Parser>=0:www/p5-HTML-Parser \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTML-Parser>=0:www/p5-HTML-Parser \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-HTML-FillInForm/Makefile b/www/p5-HTML-FillInForm/Makefile index 5c53515d148..b9a21f0283f 100644 --- a/www/p5-HTML-FillInForm/Makefile +++ b/www/p5-HTML-FillInForm/Makefile @@ -13,8 +13,8 @@ COMMENT= Perl5 module for auto-filling HTML form fields from previous values LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-HTML-Parser>=3.26:www/p5-HTML-Parser -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTML-Parser>=3.26:www/p5-HTML-Parser TEST_DEPENDS= p5-CGI>=0:www/p5-CGI INSTALL_TARGET= pure_install diff --git a/www/p5-HTML-Form/Makefile b/www/p5-HTML-Form/Makefile index 46fd4157857..3edc3b82e64 100644 --- a/www/p5-HTML-Form/Makefile +++ b/www/p5-HTML-Form/Makefile @@ -14,10 +14,10 @@ COMMENT= Class that represents an HTML form element LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-HTML-Parser>=0:www/p5-HTML-Parser \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTML-Parser>=0:www/p5-HTML-Parser \ p5-HTTP-Message>=6.03:www/p5-HTTP-Message \ p5-URI>=1.10:net/p5-URI -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/www/p5-HTML-FormFu-Imager/Makefile b/www/p5-HTML-FormFu-Imager/Makefile index b3d2ca10bee..069392ea648 100644 --- a/www/p5-HTML-FormFu-Imager/Makefile +++ b/www/p5-HTML-FormFu-Imager/Makefile @@ -14,12 +14,12 @@ COMMENT= Imager.pm helpers for HTML::FormFu file uploads LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Clone>=0.31:devel/p5-Clone \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Clone>=0.31:devel/p5-Clone \ p5-HTML-FormFu>=1:www/p5-HTML-FormFu \ p5-Imager>=0:graphics/p5-Imager \ p5-Moose>=1:devel/p5-Moose \ p5-MooseX-Attribute-Chained>=1.0.1:devel/p5-MooseX-Attribute-Chained -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-HTML-FormFu-Model-DBIC/Makefile b/www/p5-HTML-FormFu-Model-DBIC/Makefile index 822d32d4db9..89441dc5e1a 100644 --- a/www/p5-HTML-FormFu-Model-DBIC/Makefile +++ b/www/p5-HTML-FormFu-Model-DBIC/Makefile @@ -13,13 +13,13 @@ COMMENT= Integrate HTML::FormFu with DBIx::Class LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-DBD-SQLite>=0:databases/p5-DBD-SQLite \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-DBD-SQLite>=0:databases/p5-DBD-SQLite \ p5-DBIx-Class>=0.08108:databases/p5-DBIx-Class \ p5-HTML-FormFu>=2.00:www/p5-HTML-FormFu \ p5-List-MoreUtils>=0:lang/p5-List-MoreUtils \ p5-MooseX-Attribute-Chained>=1.0.2:devel/p5-MooseX-Attribute-Chained \ p5-Task-Weaken>=0:devel/p5-Task-Weaken -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-DateTime-Format-SQLite>=0:devel/p5-DateTime-Format-SQLite \ p5-SQL-Translator>=0.11016:databases/p5-SQL-Translator diff --git a/www/p5-HTML-FormFu-MultiForm/Makefile b/www/p5-HTML-FormFu-MultiForm/Makefile index 30666fb4f98..5ce6ea42654 100644 --- a/www/p5-HTML-FormFu-MultiForm/Makefile +++ b/www/p5-HTML-FormFu-MultiForm/Makefile @@ -15,14 +15,14 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Clone>=0:devel/p5-Clone \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Clone>=0:devel/p5-Clone \ p5-Crypt-CBC>=0:security/p5-Crypt-CBC \ p5-Crypt-DES>=0:security/p5-Crypt-DES \ p5-HTML-FormFu>=0:www/p5-HTML-FormFu \ p5-List-MoreUtils>=0:lang/p5-List-MoreUtils \ p5-Moose>=0:devel/p5-Moose \ p5-MooseX-Attribute-Chained>=0:devel/p5-MooseX-Attribute-Chained -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-YAML-LibYAML>=0:textproc/p5-YAML-LibYAML NO_ARCH= yes diff --git a/www/p5-HTML-FormFu/Makefile b/www/p5-HTML-FormFu/Makefile index ad93c21879a..de0e1e17524 100644 --- a/www/p5-HTML-FormFu/Makefile +++ b/www/p5-HTML-FormFu/Makefile @@ -14,7 +14,9 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Clone>=0.31:devel/p5-Clone \ +BUILD_DEPENDS= ${RUN_DEPENDS} \ + p5-File-ShareDir-Install>=0.03:devel/p5-File-ShareDir-Install +RUN_DEPENDS= p5-Clone>=0.31:devel/p5-Clone \ p5-Config-Any>=0.18:devel/p5-Config-Any \ p5-Data-Visitor>=0.26:devel/p5-Data-Visitor \ p5-DateTime>=0.54:devel/p5-DateTime \ @@ -39,8 +41,6 @@ BUILD_DEPENDS= p5-Clone>=0.31:devel/p5-Clone \ p5-Regexp-Common>=0:textproc/p5-Regexp-Common \ p5-Task-Weaken>=0:devel/p5-Task-Weaken \ p5-YAML-LibYAML>=0.32:textproc/p5-YAML-LibYAML -RUN_DEPENDS:= ${BUILD_DEPENDS} -BUILD_DEPENDS+= p5-File-ShareDir-Install>=0.03:devel/p5-File-ShareDir-Install TEST_DEPENDS= p5-CGI>=0:www/p5-CGI \ p5-Test-Aggregate>=0.371:devel/p5-Test-Aggregate \ p5-Test-Exception>=0:devel/p5-Test-Exception \ diff --git a/www/p5-HTML-FormHandler/Makefile b/www/p5-HTML-FormHandler/Makefile index 67dd62522a8..593eed3b698 100644 --- a/www/p5-HTML-FormHandler/Makefile +++ b/www/p5-HTML-FormHandler/Makefile @@ -15,7 +15,8 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Class-Load>=0.06:devel/p5-Class-Load \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Load>=0.06:devel/p5-Class-Load \ p5-Config-Any>=0:devel/p5-Config-Any \ p5-Crypt-Blowfish>=0:security/p5-Crypt-Blowfish \ p5-Crypt-CBC>=0:security/p5-Crypt-CBC \ @@ -39,7 +40,6 @@ BUILD_DEPENDS= p5-Class-Load>=0.06:devel/p5-Class-Load \ p5-Try-Tiny>=0:lang/p5-Try-Tiny \ p5-aliased>=0:devel/p5-aliased \ p5-namespace-autoclean>=0.09:devel/p5-namespace-autoclean -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Differences>=0:devel/p5-Test-Differences \ p5-Test-Exception>=0:devel/p5-Test-Exception \ p5-Test-Memory-Cycle>=0:devel/p5-Test-Memory-Cycle \ diff --git a/www/p5-HTML-FromANSI/Makefile b/www/p5-HTML-FromANSI/Makefile index 8e0a2420ae9..736c421ac3b 100644 --- a/www/p5-HTML-FromANSI/Makefile +++ b/www/p5-HTML-FromANSI/Makefile @@ -14,9 +14,9 @@ COMMENT= Mark up ANSI sequences as HTML LICENSE= ART10 GPLv1 MIT LICENSE_COMB= dual -BUILD_DEPENDS= p5-HTML-Parser>=0:www/p5-HTML-Parser \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTML-Parser>=0:www/p5-HTML-Parser \ p5-Term-VT102-Boundless>=0:devel/p5-Term-VT102-Boundless -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/www/p5-HTML-FromText/Makefile b/www/p5-HTML-FromText/Makefile index bcae37f77e5..e769e7d9325 100644 --- a/www/p5-HTML-FromText/Makefile +++ b/www/p5-HTML-FromText/Makefile @@ -14,9 +14,9 @@ COMMENT= Mark up text as HTML LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Email-Find>=0.09:mail/p5-Email-Find \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Email-Find>=0.09:mail/p5-Email-Find \ p5-HTML-Parser>=1.26:www/p5-HTML-Parser -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-HTML-GenToc/Makefile b/www/p5-HTML-GenToc/Makefile index a8cf81f8b20..c9c45c7d221 100644 --- a/www/p5-HTML-GenToc/Makefile +++ b/www/p5-HTML-GenToc/Makefile @@ -11,11 +11,11 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Generate a Table of Contents for HTML documents -BUILD_DEPENDS= p5-HTML-LinkList>=0.1501:www/p5-HTML-LinkList \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTML-LinkList>=0.1501:www/p5-HTML-LinkList \ p5-HTML-SimpleParse>=0.10:www/p5-HTML-SimpleParse \ p5-HTML-Parser>=0:www/p5-HTML-Parser \ p5-Getopt-ArgvFile>=1.09:devel/p5-Getopt-ArgvFile -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= modbuild diff --git a/www/p5-HTML-LinkExtractor/Makefile b/www/p5-HTML-LinkExtractor/Makefile index e124fce745a..c6a3a5dac23 100644 --- a/www/p5-HTML-LinkExtractor/Makefile +++ b/www/p5-HTML-LinkExtractor/Makefile @@ -12,9 +12,9 @@ DISTNAME= ${PORTNAME}-0.13 MAINTAINER= lars.eggert@gmx.net COMMENT= HTML::LinkExtractor is used for extracting links from HTML -BUILD_DEPENDS= p5-HTML-TokeParser-Simple>=0:www/p5-HTML-TokeParser-Simple \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTML-TokeParser-Simple>=0:www/p5-HTML-TokeParser-Simple \ p5-URI>=0:net/p5-URI -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-HTML-Lint/Makefile b/www/p5-HTML-Lint/Makefile index 37c76c8c37d..28336f756c9 100644 --- a/www/p5-HTML-Lint/Makefile +++ b/www/p5-HTML-Lint/Makefile @@ -14,10 +14,10 @@ COMMENT= HTML::Lint - check for HTML errors in a string or file LICENSE= ART20 -BUILD_DEPENDS= p5-HTML-Tagset>0:www/p5-HTML-Tagset \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTML-Tagset>0:www/p5-HTML-Tagset \ p5-libwww>0:www/p5-libwww \ p5-HTML-Parser>0:www/p5-HTML-Parser -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-HTML-Mason-PSGIHandler/Makefile b/www/p5-HTML-Mason-PSGIHandler/Makefile index 866f12f2e59..fb450e6b26b 100644 --- a/www/p5-HTML-Mason-PSGIHandler/Makefile +++ b/www/p5-HTML-Mason-PSGIHandler/Makefile @@ -10,9 +10,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= PSGI handler for HTML::Mason -BUILD_DEPENDS= p5-CGI-PSGI>0:www/p5-CGI-PSGI \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-CGI-PSGI>0:www/p5-CGI-PSGI \ p5-HTML-Mason>0:www/p5-HTML-Mason -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Plack>=0:www/p5-Plack USES= perl5 diff --git a/www/p5-HTML-Mason/Makefile b/www/p5-HTML-Mason/Makefile index bc858641e08..fb741618eb9 100644 --- a/www/p5-HTML-Mason/Makefile +++ b/www/p5-HTML-Mason/Makefile @@ -12,13 +12,13 @@ COMMENT= High-performance, dynamic web site authoring system LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Cache-Cache>=1:devel/p5-Cache-Cache \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Cache-Cache>=1:devel/p5-Cache-Cache \ p5-Class-Container>=0.07:devel/p5-Class-Container \ p5-Exception-Class>=1.15:devel/p5-Exception-Class \ p5-HTML-Parser>=0:www/p5-HTML-Parser \ p5-Log-Any>=0.08:devel/p5-Log-Any \ p5-Params-Validate>=0.70:devel/p5-Params-Validate -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-CHI>=0.210:devel/p5-CHI \ p5-Test-Deep>=0:devel/p5-Test-Deep \ p5-Test-Memory-Cycle>=0:devel/p5-Test-Memory-Cycle diff --git a/www/p5-HTML-Pager/Makefile b/www/p5-HTML-Pager/Makefile index cf16556ffb7..cc6c71ad6d8 100644 --- a/www/p5-HTML-Pager/Makefile +++ b/www/p5-HTML-Pager/Makefile @@ -13,8 +13,8 @@ COMMENT= Perl module for handling CGI HTML paging of arbitrary data LICENSE= GPLv2 -BUILD_DEPENDS= p5-HTML-Template>=0:www/p5-HTML-Template -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTML-Template>=0:www/p5-HTML-Template USES= perl5 USE_PERL5= configure diff --git a/www/p5-HTML-Parser-Simple/Makefile b/www/p5-HTML-Parser-Simple/Makefile index 924223eed79..696377cb631 100644 --- a/www/p5-HTML-Parser-Simple/Makefile +++ b/www/p5-HTML-Parser-Simple/Makefile @@ -12,9 +12,9 @@ COMMENT= Parse nice HTML files without needing a compiler LICENSE= ART20 -BUILD_DEPENDS= p5-Moo>=1.003001:devel/p5-Moo \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Moo>=1.003001:devel/p5-Moo \ p5-Tree-Simple>=1.22:devel/p5-Tree-Simple -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Pod>=0:devel/p5-Test-Pod NO_ARCH= yes diff --git a/www/p5-HTML-PrettyPrinter/Makefile b/www/p5-HTML-PrettyPrinter/Makefile index f9550f315cb..ec5de870de1 100644 --- a/www/p5-HTML-PrettyPrinter/Makefile +++ b/www/p5-HTML-PrettyPrinter/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= vivek@khera.org COMMENT= Generate nice HTML files from HTML syntax trees -BUILD_DEPENDS= p5-HTML-Tree>=0:www/p5-HTML-Tree -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTML-Tree>=0:www/p5-HTML-Tree USES= perl5 USE_PERL5= configure diff --git a/www/p5-HTML-Prototype/Makefile b/www/p5-HTML-Prototype/Makefile index 872b79336e8..5f4465d8332 100644 --- a/www/p5-HTML-Prototype/Makefile +++ b/www/p5-HTML-Prototype/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Generate HTML and JavaScript for the Prototype library -BUILD_DEPENDS= p5-Class-Accessor>=0:devel/p5-Class-Accessor \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Accessor>=0:devel/p5-Class-Accessor \ p5-HTML-Tree>=0:www/p5-HTML-Tree -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= modbuild diff --git a/www/p5-HTML-RSSAutodiscovery/Makefile b/www/p5-HTML-RSSAutodiscovery/Makefile index 84afbe75bdf..a2f50f21baa 100644 --- a/www/p5-HTML-RSSAutodiscovery/Makefile +++ b/www/p5-HTML-RSSAutodiscovery/Makefile @@ -14,9 +14,9 @@ COMMENT= Methods for retrieving RSS-ish information from an HTML document LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-HTML-Parser>=0:www/p5-HTML-Parser \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTML-Parser>=0:www/p5-HTML-Parser \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USE_PERL5= configure diff --git a/www/p5-HTML-ResolveLink/Makefile b/www/p5-HTML-ResolveLink/Makefile index b963d13f5de..b8f2a3b2b09 100644 --- a/www/p5-HTML-ResolveLink/Makefile +++ b/www/p5-HTML-ResolveLink/Makefile @@ -14,9 +14,9 @@ COMMENT= Resolve relative links in (X)HTML into absolute URI LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-HTML-Parser>=0:www/p5-HTML-Parser \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTML-Parser>=0:www/p5-HTML-Parser \ p5-URI>0:net/p5-URI -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-HTML-RobotsMETA/Makefile b/www/p5-HTML-RobotsMETA/Makefile index ad6b87df447..43deacde9dc 100644 --- a/www/p5-HTML-RobotsMETA/Makefile +++ b/www/p5-HTML-RobotsMETA/Makefile @@ -12,8 +12,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= markun@onohara.to COMMENT= Parse HTML For Robots Exclusion META Markup -BUILD_DEPENDS= p5-HTML-Parser>=3:www/p5-HTML-Parser -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTML-Parser>=3:www/p5-HTML-Parser USES= perl5 USE_PERL5= configure diff --git a/www/p5-HTML-Scrubber/Makefile b/www/p5-HTML-Scrubber/Makefile index 78de41a0bcf..12cc26a7cfd 100644 --- a/www/p5-HTML-Scrubber/Makefile +++ b/www/p5-HTML-Scrubber/Makefile @@ -14,8 +14,8 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-HTML-Parser>=3.47:www/p5-HTML-Parser -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTML-Parser>=3.47:www/p5-HTML-Parser TEST_DEPENDS= p5-Test-CPAN-Meta>=0:devel/p5-Test-CPAN-Meta \ p5-Test-Differences>=0:devel/p5-Test-Differences \ p5-Test-EOL>=0:devel/p5-Test-EOL \ diff --git a/www/p5-HTML-Seamstress/Makefile b/www/p5-HTML-Seamstress/Makefile index 1da0052cf5b..a78860dc770 100644 --- a/www/p5-HTML-Seamstress/Makefile +++ b/www/p5-HTML-Seamstress/Makefile @@ -14,12 +14,12 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-File-Slurp>=0:devel/p5-File-Slurp \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-File-Slurp>=0:devel/p5-File-Slurp \ p5-HTML-Element-Library>=0:www/p5-HTML-Element-Library \ p5-HTML-Element-Replacer>=0:www/p5-HTML-Element-Replacer \ p5-HTML-Tree>=0:www/p5-HTML-Tree \ p5-Set-Array>=0:devel/p5-Set-Array -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Class-Prototyped>=0:devel/p5-Class-Prototyped NO_ARCH= yes diff --git a/www/p5-HTML-SimpleLinkExtor/Makefile b/www/p5-HTML-SimpleLinkExtor/Makefile index 4331d57883f..81395aea7eb 100644 --- a/www/p5-HTML-SimpleLinkExtor/Makefile +++ b/www/p5-HTML-SimpleLinkExtor/Makefile @@ -13,10 +13,10 @@ COMMENT= This is a simple HTML link extractor LICENSE= ART20 LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-HTML-Parser>=1.28:www/p5-HTML-Parser \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTML-Parser>=1.28:www/p5-HTML-Parser \ p5-URI>=1.09:net/p5-URI \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Output>=0:devel/p5-Test-Output NO_ARCH= yes diff --git a/www/p5-HTML-StickyQuery/Makefile b/www/p5-HTML-StickyQuery/Makefile index 999f04e3497..5d0011fac71 100644 --- a/www/p5-HTML-StickyQuery/Makefile +++ b/www/p5-HTML-StickyQuery/Makefile @@ -14,9 +14,9 @@ COMMENT= Add sticky QUERY_STRING to a tag href attributes LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-HTML-Parser>=0:www/p5-HTML-Parser \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTML-Parser>=0:www/p5-HTML-Parser \ p5-URI>=0:net/p5-URI -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-HTML-StripScripts-Parser/Makefile b/www/p5-HTML-StripScripts-Parser/Makefile index 50be4db60d7..b95af4e2953 100644 --- a/www/p5-HTML-StripScripts-Parser/Makefile +++ b/www/p5-HTML-StripScripts-Parser/Makefile @@ -14,9 +14,9 @@ COMMENT= XSS filter using HTML::Parser LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-HTML-Parser>=3.56:www/p5-HTML-Parser \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTML-Parser>=3.56:www/p5-HTML-Parser \ p5-HTML-StripScripts>=1.05:www/p5-HTML-StripScripts -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-HTML-TableExtract/Makefile b/www/p5-HTML-TableExtract/Makefile index 250d227bb3f..12ae804b766 100644 --- a/www/p5-HTML-TableExtract/Makefile +++ b/www/p5-HTML-TableExtract/Makefile @@ -14,9 +14,9 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-HTML-Element-Extended>=1.17:www/p5-HTML-Element-Extended \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTML-Element-Extended>=1.17:www/p5-HTML-Element-Extended \ p5-HTML-Parser>=0:www/p5-HTML-Parser -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/www/p5-HTML-TableParser/Makefile b/www/p5-HTML-TableParser/Makefile index 8fda2f5e590..79af737d8dd 100644 --- a/www/p5-HTML-TableParser/Makefile +++ b/www/p5-HTML-TableParser/Makefile @@ -13,8 +13,8 @@ COMMENT= Extract data from an HTML table LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-HTML-Parser>=3.26:www/p5-HTML-Parser -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTML-Parser>=3.26:www/p5-HTML-Parser NO_ARCH= yes USES= perl5 diff --git a/www/p5-HTML-TableTiler/Makefile b/www/p5-HTML-TableTiler/Makefile index 0cf2999d150..d702d288bef 100644 --- a/www/p5-HTML-TableTiler/Makefile +++ b/www/p5-HTML-TableTiler/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Module generate a HTML table from bidimensional array data -BUILD_DEPENDS= p5-HTML-Parser>=0:www/p5-HTML-Parser \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTML-Parser>=0:www/p5-HTML-Parser \ p5-IO-Util>=0:devel/p5-IO-Util -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-HTML-TagCloud-Extended/Makefile b/www/p5-HTML-TagCloud-Extended/Makefile index 6982107d81f..47911ff8cd8 100644 --- a/www/p5-HTML-TagCloud-Extended/Makefile +++ b/www/p5-HTML-TagCloud-Extended/Makefile @@ -14,10 +14,10 @@ COMMENT= HTML::TagCloud extension for time-stamp based coloring of tags LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Class-Accessor>=0:devel/p5-Class-Accessor \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Accessor>=0:devel/p5-Class-Accessor \ p5-Class-Data-Inheritable>=0:devel/p5-Class-Data-Inheritable \ p5-Readonly>=0:devel/p5-Readonly -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-HTML-Template-Compiled/Makefile b/www/p5-HTML-Template-Compiled/Makefile index 32c70a5b4cb..9d64fe6a79a 100644 --- a/www/p5-HTML-Template-Compiled/Makefile +++ b/www/p5-HTML-Template-Compiled/Makefile @@ -14,9 +14,9 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-HTML-Parser>=0:www/p5-HTML-Parser \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTML-Parser>=0:www/p5-HTML-Parser \ p5-URI>=0:net/p5-URI -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Pod>=0:devel/p5-Test-Pod \ p5-Test-Pod-Coverage>=0:devel/p5-Test-Pod-Coverage diff --git a/www/p5-HTML-Template-HashWrapper/Makefile b/www/p5-HTML-Template-HashWrapper/Makefile index 71c23d7bed2..3684ff42598 100644 --- a/www/p5-HTML-Template-HashWrapper/Makefile +++ b/www/p5-HTML-Template-HashWrapper/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Easy way to use the associate option from HTML::Template -BUILD_DEPENDS= p5-HTML-Template>=0:www/p5-HTML-Template -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTML-Template>=0:www/p5-HTML-Template USES= perl5 USE_PERL5= configure diff --git a/www/p5-HTML-Template-JIT/Makefile b/www/p5-HTML-Template-JIT/Makefile index 29a747e7447..f3bf99aedd0 100644 --- a/www/p5-HTML-Template-JIT/Makefile +++ b/www/p5-HTML-Template-JIT/Makefile @@ -13,10 +13,10 @@ COMMENT= Perl module to compile HTML Templates with Inline::C LICENSE= ARTPERL10 -BUILD_DEPENDS= p5-HTML-Template>=2.8:www/p5-HTML-Template \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTML-Template>=2.8:www/p5-HTML-Template \ p5-Inline>=0.43:devel/p5-Inline \ p5-Inline-C>=0:devel/p5-Inline-C -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-HTML-Template-Pluggable/Makefile b/www/p5-HTML-Template-Pluggable/Makefile index 544a878678c..0f107c9edc0 100644 --- a/www/p5-HTML-Template-Pluggable/Makefile +++ b/www/p5-HTML-Template-Pluggable/Makefile @@ -11,11 +11,11 @@ PKGNAMEPREFIX= p5- MAINTAINER= culot@FreeBSD.org COMMENT= Extends HTML::Template with plugin support -BUILD_DEPENDS= p5-HTML-Template>=2.7:www/p5-HTML-Template \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTML-Template>=2.7:www/p5-HTML-Template \ p5-Test-MockObject>=1:devel/p5-Test-MockObject \ p5-Regexp-Common>=0:textproc/p5-Regexp-Common \ p5-Class-Trigger>=0:devel/p5-Class-Trigger -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-HTML-Toc/Makefile b/www/p5-HTML-Toc/Makefile index 82c04b5c4f0..ab8b9d7a61d 100644 --- a/www/p5-HTML-Toc/Makefile +++ b/www/p5-HTML-Toc/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= alex.deiter@gmail.com COMMENT= Generate, insert and update HTML Table of Contents -BUILD_DEPENDS= p5-Test-Differences>=0:devel/p5-Test-Differences \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Test-Differences>=0:devel/p5-Test-Differences \ p5-HTML-Parser>=0:www/p5-HTML-Parser -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-HTML-TokeParser-Simple/Makefile b/www/p5-HTML-TokeParser-Simple/Makefile index 5bd82ed08f8..d1f8c6037ad 100644 --- a/www/p5-HTML-TokeParser-Simple/Makefile +++ b/www/p5-HTML-TokeParser-Simple/Makefile @@ -14,9 +14,9 @@ COMMENT= Subclass of HTML::TokeParser with easy-to-remember method calls LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-HTML-Parser>=0:www/p5-HTML-Parser \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTML-Parser>=0:www/p5-HTML-Parser \ p5-Sub-Override>=0:devel/p5-Sub-Override -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-HTML-Tree/Makefile b/www/p5-HTML-Tree/Makefile index 2c7ca7c7701..e7a95c52914 100644 --- a/www/p5-HTML-Tree/Makefile +++ b/www/p5-HTML-Tree/Makefile @@ -14,10 +14,10 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-HTML-Parser>=3.46:www/p5-HTML-Parser \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTML-Parser>=3.46:www/p5-HTML-Parser \ p5-HTML-Tagset>=3.02:www/p5-HTML-Tagset \ p5-libwww>=5.815:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Fatal>=0:devel/p5-Test-Fatal NO_ARCH= yes diff --git a/www/p5-HTML-TreeBuilder-LibXML/Makefile b/www/p5-HTML-TreeBuilder-LibXML/Makefile index dbdfb847073..13b139233cd 100644 --- a/www/p5-HTML-TreeBuilder-LibXML/Makefile +++ b/www/p5-HTML-TreeBuilder-LibXML/Makefile @@ -15,10 +15,10 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual # Do not add p5-Web-Query and p5-Web-Scraper to TEST_DEPENDS to avoid cyclic dependency loop -BUILD_DEPENDS= p5-Filter>=0:devel/p5-Filter \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Filter>=0:devel/p5-Filter \ p5-HTML-TreeBuilder-XPath>=0.14:www/p5-HTML-TreeBuilder-XPath \ p5-XML-LibXML>=1.70:textproc/p5-XML-LibXML -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/www/p5-HTML-TreeBuilder-XPath/Makefile b/www/p5-HTML-TreeBuilder-XPath/Makefile index cf649867d18..ab204d06aef 100644 --- a/www/p5-HTML-TreeBuilder-XPath/Makefile +++ b/www/p5-HTML-TreeBuilder-XPath/Makefile @@ -14,9 +14,9 @@ COMMENT= Add XPath support to HTML::TreeBuilder LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-HTML-Tree>=0:www/p5-HTML-Tree \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTML-Tree>=0:www/p5-HTML-Tree \ p5-XML-XPathEngine>=0.12:textproc/p5-XML-XPathEngine -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-HTML-WikiConverter-DokuWiki/Makefile b/www/p5-HTML-WikiConverter-DokuWiki/Makefile index 4008aea8d4e..8c20a64fac2 100644 --- a/www/p5-HTML-WikiConverter-DokuWiki/Makefile +++ b/www/p5-HTML-WikiConverter-DokuWiki/Makefile @@ -14,9 +14,9 @@ COMMENT= Convert HTML to DokuWiki markup LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-HTML-WikiConverter>=0.60:www/p5-HTML-WikiConverter \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTML-WikiConverter>=0.60:www/p5-HTML-WikiConverter \ p5-URI>=1.35:net/p5-URI -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-HTML-WikiConverter-GoogleCode/Makefile b/www/p5-HTML-WikiConverter-GoogleCode/Makefile index ff5e6596fb2..e80a5576e9d 100644 --- a/www/p5-HTML-WikiConverter-GoogleCode/Makefile +++ b/www/p5-HTML-WikiConverter-GoogleCode/Makefile @@ -14,9 +14,9 @@ COMMENT= Convert HTML to Google Code wiki markup LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-HTML-WikiConverter>=0.60:www/p5-HTML-WikiConverter \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTML-WikiConverter>=0.60:www/p5-HTML-WikiConverter \ p5-URI>=1.35:net/p5-URI -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-HTML-WikiConverter-Kwiki/Makefile b/www/p5-HTML-WikiConverter-Kwiki/Makefile index c543ba7e5f2..5450f4e2320 100644 --- a/www/p5-HTML-WikiConverter-Kwiki/Makefile +++ b/www/p5-HTML-WikiConverter-Kwiki/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Convert HTML to Kwiki markup -BUILD_DEPENDS= p5-HTML-WikiConverter>=0.54:www/p5-HTML-WikiConverter \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTML-WikiConverter>=0.54:www/p5-HTML-WikiConverter \ p5-URI>=1.35:net/p5-URI -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-HTML-WikiConverter-Markdown/Makefile b/www/p5-HTML-WikiConverter-Markdown/Makefile index 23f65fe9020..7b4e5dad6fa 100644 --- a/www/p5-HTML-WikiConverter-Markdown/Makefile +++ b/www/p5-HTML-WikiConverter-Markdown/Makefile @@ -14,9 +14,9 @@ COMMENT= Convert HTML to Markdown markup LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-HTML-WikiConverter>=0.67:www/p5-HTML-WikiConverter \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTML-WikiConverter>=0.67:www/p5-HTML-WikiConverter \ p5-URI>=1.35:net/p5-URI -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-HTML-WikiConverter-MediaWiki/Makefile b/www/p5-HTML-WikiConverter-MediaWiki/Makefile index 6ad2dc650ce..81e29829e10 100644 --- a/www/p5-HTML-WikiConverter-MediaWiki/Makefile +++ b/www/p5-HTML-WikiConverter-MediaWiki/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Convert HTML to MediaWiki markup -BUILD_DEPENDS= p5-HTML-WikiConverter>=0.63:www/p5-HTML-WikiConverter \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTML-WikiConverter>=0.63:www/p5-HTML-WikiConverter \ p5-URI>=1.35:net/p5-URI -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-HTML-WikiConverter-MoinMoin/Makefile b/www/p5-HTML-WikiConverter-MoinMoin/Makefile index 3f2f1f43c58..45ecdf892e1 100644 --- a/www/p5-HTML-WikiConverter-MoinMoin/Makefile +++ b/www/p5-HTML-WikiConverter-MoinMoin/Makefile @@ -14,9 +14,9 @@ COMMENT= Convert HTML to MoinMoin markup LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-HTML-WikiConverter>=0.60:www/p5-HTML-WikiConverter \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTML-WikiConverter>=0.60:www/p5-HTML-WikiConverter \ p5-URI>=1.35:net/p5-URI -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-HTML-WikiConverter-Oddmuse/Makefile b/www/p5-HTML-WikiConverter-Oddmuse/Makefile index ec91cf0651f..f478c6df704 100644 --- a/www/p5-HTML-WikiConverter-Oddmuse/Makefile +++ b/www/p5-HTML-WikiConverter-Oddmuse/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Convert HTML to Oddmuse markup -BUILD_DEPENDS= p5-HTML-WikiConverter>=0.60:www/p5-HTML-WikiConverter \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTML-WikiConverter>=0.60:www/p5-HTML-WikiConverter \ p5-URI>=1.35:net/p5-URI -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-HTML-WikiConverter-PbWiki/Makefile b/www/p5-HTML-WikiConverter-PbWiki/Makefile index 9d906729415..b2184e1578f 100644 --- a/www/p5-HTML-WikiConverter-PbWiki/Makefile +++ b/www/p5-HTML-WikiConverter-PbWiki/Makefile @@ -14,9 +14,9 @@ COMMENT= Convert HTML to PbWiki markup LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-HTML-WikiConverter>=0.54:www/p5-HTML-WikiConverter \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTML-WikiConverter>=0.54:www/p5-HTML-WikiConverter \ p5-URI>=1.35:net/p5-URI -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-HTML-WikiConverter-PhpWiki/Makefile b/www/p5-HTML-WikiConverter-PhpWiki/Makefile index e1b9671b8c3..bd8870c6bfa 100644 --- a/www/p5-HTML-WikiConverter-PhpWiki/Makefile +++ b/www/p5-HTML-WikiConverter-PhpWiki/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Convert HTML to PhpWiki markup -BUILD_DEPENDS= p5-HTML-WikiConverter>=0.54:www/p5-HTML-WikiConverter \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTML-WikiConverter>=0.54:www/p5-HTML-WikiConverter \ p5-URI>=1.35:net/p5-URI -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-HTML-WikiConverter-PmWiki/Makefile b/www/p5-HTML-WikiConverter-PmWiki/Makefile index a6b8125fd16..313537ffc88 100644 --- a/www/p5-HTML-WikiConverter-PmWiki/Makefile +++ b/www/p5-HTML-WikiConverter-PmWiki/Makefile @@ -14,9 +14,9 @@ COMMENT= Convert HTML to PmWiki markup LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-HTML-WikiConverter>=0.60:www/p5-HTML-WikiConverter \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTML-WikiConverter>=0.60:www/p5-HTML-WikiConverter \ p5-URI>=1.35:net/p5-URI -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-HTML-WikiConverter-SnipSnap/Makefile b/www/p5-HTML-WikiConverter-SnipSnap/Makefile index 8271bdefe43..32c1a0be579 100644 --- a/www/p5-HTML-WikiConverter-SnipSnap/Makefile +++ b/www/p5-HTML-WikiConverter-SnipSnap/Makefile @@ -14,9 +14,9 @@ COMMENT= Convert HTML to SnipSnap markup LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-HTML-WikiConverter>=0.54:www/p5-HTML-WikiConverter \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTML-WikiConverter>=0.54:www/p5-HTML-WikiConverter \ p5-URI>=1.35:net/p5-URI -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-HTML-WikiConverter-Socialtext/Makefile b/www/p5-HTML-WikiConverter-Socialtext/Makefile index 63b5f10df6f..aa67732c4a4 100644 --- a/www/p5-HTML-WikiConverter-Socialtext/Makefile +++ b/www/p5-HTML-WikiConverter-Socialtext/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Convert HTML to Socialtext markup -BUILD_DEPENDS= p5-HTML-WikiConverter>=0.60:www/p5-HTML-WikiConverter \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTML-WikiConverter>=0.60:www/p5-HTML-WikiConverter \ p5-URI>=1.35:net/p5-URI -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-HTML-WikiConverter-TikiWiki/Makefile b/www/p5-HTML-WikiConverter-TikiWiki/Makefile index 790f137efdd..19696f16395 100644 --- a/www/p5-HTML-WikiConverter-TikiWiki/Makefile +++ b/www/p5-HTML-WikiConverter-TikiWiki/Makefile @@ -14,9 +14,9 @@ COMMENT= Convert HTML to TikiWiki markup LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-HTML-WikiConverter>=0.54:www/p5-HTML-WikiConverter \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTML-WikiConverter>=0.54:www/p5-HTML-WikiConverter \ p5-URI>=1.35:net/p5-URI -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-HTML-WikiConverter-UseMod/Makefile b/www/p5-HTML-WikiConverter-UseMod/Makefile index a9103f453f7..6fa637a957e 100644 --- a/www/p5-HTML-WikiConverter-UseMod/Makefile +++ b/www/p5-HTML-WikiConverter-UseMod/Makefile @@ -14,9 +14,9 @@ COMMENT= Convert HTML to UseMod markup LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-HTML-WikiConverter>=0.54:www/p5-HTML-WikiConverter \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTML-WikiConverter>=0.54:www/p5-HTML-WikiConverter \ p5-URI>=1.35:net/p5-URI -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-HTML-WikiConverter-WakkaWiki/Makefile b/www/p5-HTML-WikiConverter-WakkaWiki/Makefile index a61b41b6baf..35ef6885095 100644 --- a/www/p5-HTML-WikiConverter-WakkaWiki/Makefile +++ b/www/p5-HTML-WikiConverter-WakkaWiki/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Convert HTML to WakkaWiki markup -BUILD_DEPENDS= p5-HTML-WikiConverter>=0.54:www/p5-HTML-WikiConverter \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTML-WikiConverter>=0.54:www/p5-HTML-WikiConverter \ p5-URI>=1.35:net/p5-URI -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-HTML-WikiConverter-WikkaWiki/Makefile b/www/p5-HTML-WikiConverter-WikkaWiki/Makefile index 7c6399d09a4..53d138a14aa 100644 --- a/www/p5-HTML-WikiConverter-WikkaWiki/Makefile +++ b/www/p5-HTML-WikiConverter-WikkaWiki/Makefile @@ -14,9 +14,9 @@ COMMENT= Convert HTML to WikkaWiki markup LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-HTML-WikiConverter>=0.54:www/p5-HTML-WikiConverter \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTML-WikiConverter>=0.54:www/p5-HTML-WikiConverter \ p5-URI>=1.35:net/p5-URI -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-HTML-WikiConverter/Makefile b/www/p5-HTML-WikiConverter/Makefile index 0af189f84e9..53c06975849 100644 --- a/www/p5-HTML-WikiConverter/Makefile +++ b/www/p5-HTML-WikiConverter/Makefile @@ -15,14 +15,14 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE_GPLv1+ = ${WRKSRC}/LICENSE # GPLv2 actually -BUILD_DEPENDS= p5-Class-Data-Inheritable>=0.02:devel/p5-Class-Data-Inheritable \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Data-Inheritable>=0.02:devel/p5-Class-Data-Inheritable \ p5-Params-Validate>=0.77:devel/p5-Params-Validate \ p5-CSS>=0:textproc/p5-CSS \ p5-HTML-Parser>=3.34:www/p5-HTML-Parser \ p5-HTML-Tagset>=3.04:www/p5-HTML-Tagset \ p5-HTML-Tree>=3.18:www/p5-HTML-Tree \ p5-URI>=1.35:net/p5-URI -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-HTTP-Async/Makefile b/www/p5-HTTP-Async/Makefile index 32c934ca65c..9c25c52b646 100644 --- a/www/p5-HTTP-Async/Makefile +++ b/www/p5-HTTP-Async/Makefile @@ -13,11 +13,11 @@ COMMENT= Process multiple HTTP requests in parallel without blocking LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-HTTP-Server-Simple>=0:www/p5-HTTP-Server-Simple \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTTP-Server-Simple>=0:www/p5-HTTP-Server-Simple \ p5-Net-HTTPS-NB>=0.13:net/p5-Net-HTTPS-NB \ p5-URI>=0:net/p5-URI \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-CGI>=0:www/p5-CGI \ p5-Test-Fatal>=0:devel/p5-Test-Fatal \ p5-Test-HTTP-Server-Simple>=0:www/p5-Test-HTTP-Server-Simple \ diff --git a/www/p5-HTTP-Body/Makefile b/www/p5-HTTP-Body/Makefile index 9cc970130b6..ba66dd36746 100644 --- a/www/p5-HTTP-Body/Makefile +++ b/www/p5-HTTP-Body/Makefile @@ -14,8 +14,8 @@ COMMENT= HTTP Body Parser LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-HTTP-Message>=0:www/p5-HTTP-Message -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTTP-Message>=0:www/p5-HTTP-Message TEST_DEPENDS= p5-Test-Deep>=0:devel/p5-Test-Deep \ p5-Test-Pod>=1.14:devel/p5-Test-Pod \ p5-Test-Pod-Coverage>=1.04:devel/p5-Test-Pod-Coverage diff --git a/www/p5-HTTP-Cache-Transparent/Makefile b/www/p5-HTTP-Cache-Transparent/Makefile index bc2ce9ade79..857b52ba7af 100644 --- a/www/p5-HTTP-Cache-Transparent/Makefile +++ b/www/p5-HTTP-Cache-Transparent/Makefile @@ -13,8 +13,8 @@ COMMENT= Implementation of http get that keeps a local cache of fetched pages LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-libwww>=0:www/p5-libwww NO_ARCH= yes USES= perl5 diff --git a/www/p5-HTTP-CookieJar/Makefile b/www/p5-HTTP-CookieJar/Makefile index 27a19dec2ce..b2cd184f794 100644 --- a/www/p5-HTTP-CookieJar/Makefile +++ b/www/p5-HTTP-CookieJar/Makefile @@ -13,8 +13,8 @@ COMMENT= Minimalist HTTP user agent cookie jar LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-HTTP-Date>=0:www/p5-HTTP-Date -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTTP-Date>=0:www/p5-HTTP-Date TEST_DEPENDS= p5-HTTP-Message>=0:www/p5-HTTP-Message \ p5-Mozilla-PublicSuffix>=0:dns/p5-Mozilla-PublicSuffix \ p5-Test-Deep>=0:devel/p5-Test-Deep \ diff --git a/www/p5-HTTP-Cookies-Mozilla/Makefile b/www/p5-HTTP-Cookies-Mozilla/Makefile index f6be21b62bc..eb9d94401d2 100644 --- a/www/p5-HTTP-Cookies-Mozilla/Makefile +++ b/www/p5-HTTP-Cookies-Mozilla/Makefile @@ -13,8 +13,8 @@ COMMENT= Cookie storage and management for Mozilla LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-HTTP-Cookies>=1.25:www/p5-HTTP-Cookies -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTTP-Cookies>=1.25:www/p5-HTTP-Cookies TEST_DEPENDS= p5-Text-Diff>=0:textproc/p5-Text-Diff \ sqlite3:databases/sqlite3 diff --git a/www/p5-HTTP-Cookies-iCab/Makefile b/www/p5-HTTP-Cookies-iCab/Makefile index ad82a0ad340..5026f23b47e 100644 --- a/www/p5-HTTP-Cookies-iCab/Makefile +++ b/www/p5-HTTP-Cookies-iCab/Makefile @@ -13,9 +13,9 @@ COMMENT= Cookie storage and management for iCab LICENSE= ART20 LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-HTTP-Cookies>=1.25:www/p5-HTTP-Cookies \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTTP-Cookies>=1.25:www/p5-HTTP-Cookies \ p5-Text-Diff>=0:textproc/p5-Text-Diff -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/www/p5-HTTP-Cookies-w3m/Makefile b/www/p5-HTTP-Cookies-w3m/Makefile index 0768a508124..783842958c8 100644 --- a/www/p5-HTTP-Cookies-w3m/Makefile +++ b/www/p5-HTTP-Cookies-w3m/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= markun@onohara.to COMMENT= Cookie storage and management for w3m -BUILD_DEPENDS= p5-Module-Install>=0:devel/p5-Module-Install -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Module-Install>=0:devel/p5-Module-Install USES= perl5 USE_PERL5= configure diff --git a/www/p5-HTTP-DAV/Makefile b/www/p5-HTTP-DAV/Makefile index 140520507c9..da1e7140626 100644 --- a/www/p5-HTTP-DAV/Makefile +++ b/www/p5-HTTP-DAV/Makefile @@ -13,10 +13,10 @@ COMMENT= WebDAV client library LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-URI>0:net/p5-URI \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-URI>0:net/p5-URI \ p5-XML-DOM>0:textproc/p5-XML-DOM \ p5-libwww>=5.48:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-HTTP-Engine/Makefile b/www/p5-HTTP-Engine/Makefile index e29f68d62a0..6e6c808a753 100644 --- a/www/p5-HTTP-Engine/Makefile +++ b/www/p5-HTTP-Engine/Makefile @@ -10,7 +10,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= kuriyama@FreeBSD.org COMMENT= Perl extension for HTTP Server Engine Drivers -BUILD_DEPENDS= \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= \ p5-Any-Moose>=0.13:devel/p5-Any-Moose \ p5-CGI-Simple>=1.103:www/p5-CGI-Simple \ p5-Filter>0:devel/p5-Filter \ @@ -19,7 +20,6 @@ BUILD_DEPENDS= \ p5-HTTP-Server-Simple>=0.35:www/p5-HTTP-Server-Simple \ p5-Mouse>=0.62:devel/p5-Mouse \ p5-URI>=1.36:net/p5-URI -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= \ p5-HTTP-Request-AsCGI>0:www/p5-HTTP-Request-AsCGI \ p5-YAML>0:textproc/p5-YAML \ diff --git a/www/p5-HTTP-Entity-Parser/Makefile b/www/p5-HTTP-Entity-Parser/Makefile index 622c01b63ec..c17d148d94c 100644 --- a/www/p5-HTTP-Entity-Parser/Makefile +++ b/www/p5-HTTP-Entity-Parser/Makefile @@ -12,12 +12,12 @@ COMMENT= PSGI compliant HTTP Entity Parser LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-JSON-MaybeXS>=0:converters/p5-JSON-MaybeXS \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-JSON-MaybeXS>=0:converters/p5-JSON-MaybeXS \ p5-WWW-Form-UrlEncoded>=0.23:www/p5-WWW-Form-UrlEncoded \ p5-HTTP-MultiPartParser>=0:www/p5-HTTP-MultiPartParser \ p5-Hash-MultiValue>=0:devel/p5-Hash-MultiValue \ p5-Stream-Buffered>=0:devel/p5-Stream-Buffered -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/www/p5-HTTP-Headers-Fast/Makefile b/www/p5-HTTP-Headers-Fast/Makefile index 368c9a29af4..c035395c629 100644 --- a/www/p5-HTTP-Headers-Fast/Makefile +++ b/www/p5-HTTP-Headers-Fast/Makefile @@ -13,8 +13,8 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-HTTP-Date>0:www/p5-HTTP-Date -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTTP-Date>0:www/p5-HTTP-Date TEST_DEPENDS= p5-Test-Requires>0:devel/p5-Test-Requires NO_ARCH= yes diff --git a/www/p5-HTTP-Link-Parser/Makefile b/www/p5-HTTP-Link-Parser/Makefile index d25a5aa46a7..b71df39504b 100644 --- a/www/p5-HTTP-Link-Parser/Makefile +++ b/www/p5-HTTP-Link-Parser/Makefile @@ -13,10 +13,10 @@ COMMENT= Parse HTTP Link headers LICENSE= MIT -BUILD_DEPENDS= p5-URI>=1.30:net/p5-URI \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-URI>=1.30:net/p5-URI \ p5-HTTP-Message>=0:www/p5-HTTP-Message \ p5-RDF-Trine>=0:textproc/p5-RDF-Trine -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-HTTP-Proxy/Makefile b/www/p5-HTTP-Proxy/Makefile index fade891660b..0c27b2008c2 100644 --- a/www/p5-HTTP-Proxy/Makefile +++ b/www/p5-HTTP-Proxy/Makefile @@ -13,10 +13,10 @@ COMMENT= Pure Perl HTTP proxy LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-HTTP-Daemon>=1.25:www/p5-HTTP-Daemon \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTTP-Daemon>=1.25:www/p5-HTTP-Daemon \ p5-HTML-Parser>=3:www/p5-HTML-Parser \ p5-libwww>=6:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/www/p5-HTTP-ProxyPAC/Makefile b/www/p5-HTTP-ProxyPAC/Makefile index 15c5df3f5b8..83b6629ea91 100644 --- a/www/p5-HTTP-ProxyPAC/Makefile +++ b/www/p5-HTTP-ProxyPAC/Makefile @@ -13,10 +13,10 @@ COMMENT= Use a proxy auto config file to get proxy info LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-JE>0:www/p5-JE \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-JE>0:www/p5-JE \ p5-URI>=0:net/p5-URI \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-HTTP-Recorder/Makefile b/www/p5-HTTP-Recorder/Makefile index ffcf2e2315b..7b34f3db8e0 100644 --- a/www/p5-HTTP-Recorder/Makefile +++ b/www/p5-HTTP-Recorder/Makefile @@ -11,12 +11,12 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Record interaction with websites -BUILD_DEPENDS= p5-HTML-Parser>=0:www/p5-HTML-Parser \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTML-Parser>=0:www/p5-HTML-Parser \ p5-HTTP-Proxy>=0:www/p5-HTTP-Proxy \ p5-HTTP-Request-Params>=0:www/p5-HTTP-Request-Params \ p5-URI>=0:net/p5-URI \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 dos2unix USE_PERL5= configure diff --git a/www/p5-HTTP-Request-AsCGI/Makefile b/www/p5-HTTP-Request-AsCGI/Makefile index da4c6d4a3c6..06f196546cb 100644 --- a/www/p5-HTTP-Request-AsCGI/Makefile +++ b/www/p5-HTTP-Request-AsCGI/Makefile @@ -14,10 +14,10 @@ COMMENT= Setup a CGI environment from a HTTP::Request LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Class-Accessor>=0:devel/p5-Class-Accessor \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Accessor>=0:devel/p5-Class-Accessor \ p5-libwww>=5.805:www/p5-libwww \ p5-URI>=0:net/p5-URI -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-HTTP-Request-Params/Makefile b/www/p5-HTTP-Request-Params/Makefile index 8c55f91df57..c3b28e0e2fa 100644 --- a/www/p5-HTTP-Request-Params/Makefile +++ b/www/p5-HTTP-Request-Params/Makefile @@ -13,12 +13,12 @@ COMMENT= Retrieve GET/POST Parameters from HTTP Requests LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-CGI>=3:www/p5-CGI \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-CGI>=3:www/p5-CGI \ p5-Class-Accessor>=0.19:devel/p5-Class-Accessor \ p5-Email-MIME-ContentType>=1:mail/p5-Email-MIME-ContentType \ p5-Email-MIME>=1.420:mail/p5-Email-MIME \ p5-HTTP-Message>=1.40:www/p5-HTTP-Message -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/www/p5-HTTP-Response-Encoding/Makefile b/www/p5-HTTP-Response-Encoding/Makefile index 64089953246..f5ba4b2ac1a 100644 --- a/www/p5-HTTP-Response-Encoding/Makefile +++ b/www/p5-HTTP-Response-Encoding/Makefile @@ -14,9 +14,9 @@ COMMENT= Adds encoding() to HTTP::Response LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-libwww>=0:www/p5-libwww \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-libwww>=0:www/p5-libwww \ p5-HTTP-Message>=0:www/p5-HTTP-Message -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/www/p5-HTTP-Router/Makefile b/www/p5-HTTP-Router/Makefile index daaa4b11ed2..36e89d83347 100644 --- a/www/p5-HTTP-Router/Makefile +++ b/www/p5-HTTP-Router/Makefile @@ -10,7 +10,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= kuriyama@FreeBSD.org COMMENT= Perl extension of Yet Another Path Router for HTTP -BUILD_DEPENDS= \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= \ p5-Class-Accessor>0:devel/p5-Class-Accessor \ p5-Devel-Caller-Perl>0:devel/p5-Devel-Caller-Perl \ p5-Filter>0:devel/p5-Filter \ @@ -21,7 +22,6 @@ BUILD_DEPENDS= \ p5-Text-SimpleTable>=0:textproc/p5-Text-SimpleTable \ p5-Text-SimpleTemplate>0:textproc/p5-Text-SimpleTemplate \ p5-URI-Template-Restrict>=0.05:net/p5-URI-Template-Restrict -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-HTTP-Server-Simple-Authen/Makefile b/www/p5-HTTP-Server-Simple-Authen/Makefile index c14033fc195..cc84091f308 100644 --- a/www/p5-HTTP-Server-Simple-Authen/Makefile +++ b/www/p5-HTTP-Server-Simple-Authen/Makefile @@ -14,9 +14,9 @@ COMMENT= Authentication plugin for HTTP::Server::Simple LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Authen-Simple>=0.4:security/p5-Authen-Simple \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Authen-Simple>=0.4:security/p5-Authen-Simple \ p5-HTTP-Server-Simple>=0.16:www/p5-HTTP-Server-Simple -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USE_PERL5= configure diff --git a/www/p5-HTTP-Server-Simple-Mason/Makefile b/www/p5-HTTP-Server-Simple-Mason/Makefile index 5dfac680423..5c9f828e6f7 100644 --- a/www/p5-HTTP-Server-Simple-Mason/Makefile +++ b/www/p5-HTTP-Server-Simple-Mason/Makefile @@ -11,10 +11,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= demon@FreeBSD.org COMMENT= Abstract baseclass for a standalone mason server -BUILD_DEPENDS= p5-HTTP-Server-Simple>=0:www/p5-HTTP-Server-Simple \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTTP-Server-Simple>=0:www/p5-HTTP-Server-Simple \ p5-HTML-Mason>=0:www/p5-HTML-Mason \ p5-Hook-LexWrap>=0:devel/p5-Hook-LexWrap -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-HTTP-Server-Simple-PSGI/Makefile b/www/p5-HTTP-Server-Simple-PSGI/Makefile index 1800f9f753e..671629f43ac 100644 --- a/www/p5-HTTP-Server-Simple-PSGI/Makefile +++ b/www/p5-HTTP-Server-Simple-PSGI/Makefile @@ -14,8 +14,8 @@ COMMENT= PSGI handler for HTTP::Server::Simple LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-HTTP-Server-Simple>=0.42:www/p5-HTTP-Server-Simple -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTTP-Server-Simple>=0.42:www/p5-HTTP-Server-Simple NO_ARCH= yes USE_PERL5= configure diff --git a/www/p5-HTTP-Server-Simple-Recorder/Makefile b/www/p5-HTTP-Server-Simple-Recorder/Makefile index 1eaa849807e..c185c2bb0ac 100644 --- a/www/p5-HTTP-Server-Simple-Recorder/Makefile +++ b/www/p5-HTTP-Server-Simple-Recorder/Makefile @@ -11,10 +11,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Mixin to record HTTP::Server::Simple's sockets -BUILD_DEPENDS= p5-HTTP-Server-Simple>=0:www/p5-HTTP-Server-Simple \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTTP-Server-Simple>=0:www/p5-HTTP-Server-Simple \ p5-Test-HTTP-Server-Simple>=0:www/p5-Test-HTTP-Server-Simple \ p5-IO-Tee>=0:devel/p5-IO-Tee -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-HTTP-Server-Simple/Makefile b/www/p5-HTTP-Server-Simple/Makefile index 0eb77d90ee5..63982cedac5 100644 --- a/www/p5-HTTP-Server-Simple/Makefile +++ b/www/p5-HTTP-Server-Simple/Makefile @@ -13,8 +13,8 @@ COMMENT= Simple standalone HTTP daemon LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-CGI>=0:www/p5-CGI -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-CGI>=0:www/p5-CGI NO_ARCH= yes USES= perl5 diff --git a/www/p5-HTTP-Session-Store-DBI/Makefile b/www/p5-HTTP-Session-Store-DBI/Makefile index eab645b8d29..286a313ba5b 100644 --- a/www/p5-HTTP-Session-Store-DBI/Makefile +++ b/www/p5-HTTP-Session-Store-DBI/Makefile @@ -10,11 +10,11 @@ PKGNAMEPREFIX= p5- MAINTAINER= kuriyama@FreeBSD.org COMMENT= Perl extension to store session data in DBI for HTTP::Session -BUILD_DEPENDS= \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= \ p5-Moose>0:devel/p5-Moose \ p5-HTTP-Session>=0.26:www/p5-HTTP-Session \ p5-DBI>0:databases/p5-DBI -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-HTTP-SimpleLinkChecker/Makefile b/www/p5-HTTP-SimpleLinkChecker/Makefile index b7213fa7961..64bcf3ddd6b 100644 --- a/www/p5-HTTP-SimpleLinkChecker/Makefile +++ b/www/p5-HTTP-SimpleLinkChecker/Makefile @@ -13,11 +13,11 @@ COMMENT= Check the HTTP response code for a link LICENSE= ART20 LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-HTTP-Message>=1.28:www/p5-HTTP-Message \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTTP-Message>=1.28:www/p5-HTTP-Message \ p5-LWP-Protocol-https>=1:www/p5-LWP-Protocol-https \ p5-Mojolicious>=4.50:www/p5-Mojolicious \ p5-libwww>0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/www/p5-HTTP-Size/Makefile b/www/p5-HTTP-Size/Makefile index 5f565a57529..74c0d6455ab 100644 --- a/www/p5-HTTP-Size/Makefile +++ b/www/p5-HTTP-Size/Makefile @@ -13,11 +13,11 @@ COMMENT= Get the byte size of an internet resource LICENSE= ART20 LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-HTML-SimpleLinkExtor>=0:www/p5-HTML-SimpleLinkExtor \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTML-SimpleLinkExtor>=0:www/p5-HTML-SimpleLinkExtor \ p5-HTTP-Message>=0:www/p5-HTTP-Message \ p5-URI>=0:net/p5-URI \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/www/p5-HTTP-Tiny-SPDY/Makefile b/www/p5-HTTP-Tiny-SPDY/Makefile index 8680cf35c79..d1ef5216c54 100644 --- a/www/p5-HTTP-Tiny-SPDY/Makefile +++ b/www/p5-HTTP-Tiny-SPDY/Makefile @@ -14,10 +14,10 @@ COMMENT= Subclass of HTTP::Tiny with SPDY support LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-IO-Socket-SSL>=1.560:security/p5-IO-Socket-SSL \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-IO-Socket-SSL>=1.560:security/p5-IO-Socket-SSL \ p5-Net-SPDY>=0:net/p5-Net-SPDY \ p5-Net-SSLeay>=1.49:security/p5-Net-SSLeay -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Mozilla-CA>=0:www/p5-Mozilla-CA NO_ARCH= yes diff --git a/www/p5-HTTP-Tiny-UA/Makefile b/www/p5-HTTP-Tiny-UA/Makefile index 6ec7d2c08d2..dc5cad5b2a0 100644 --- a/www/p5-HTTP-Tiny-UA/Makefile +++ b/www/p5-HTTP-Tiny-UA/Makefile @@ -13,9 +13,9 @@ COMMENT= Higher-level UA features for HTTP::Tiny LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Class-Tiny>=1.000:devel/p5-Class-Tiny \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Tiny>=1.000:devel/p5-Class-Tiny \ p5-superclass>=0:devel/p5-superclass -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USE_PERL5= configure diff --git a/www/p5-IMDB-Film/Makefile b/www/p5-IMDB-Film/Makefile index 04afe578931..1b1326eced4 100644 --- a/www/p5-IMDB-Film/Makefile +++ b/www/p5-IMDB-Film/Makefile @@ -12,13 +12,13 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= OO Perl interface to the movies database IMDB -BUILD_DEPENDS= p5-Cache-Cache>=0:devel/p5-Cache-Cache \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Cache-Cache>=0:devel/p5-Cache-Cache \ p5-Digest-SHA1>=0:security/p5-Digest-SHA1 \ p5-Error>=0:lang/p5-Error \ p5-HTML-Parser>=2.28:www/p5-HTML-Parser \ p5-Text-Unidecode>=0:converters/p5-Text-Unidecode \ p5-libwww>=1.41:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-Image-Delivery/Makefile b/www/p5-Image-Delivery/Makefile index 9de0bb2459e..f57e603feea 100644 --- a/www/p5-Image-Delivery/Makefile +++ b/www/p5-Image-Delivery/Makefile @@ -11,13 +11,13 @@ PKGNAMEPREFIX= p5- MAINTAINER= coryking@mozimedia.com COMMENT= Efficient transformation and delivery of web images -BUILD_DEPENDS= p5-Test-ClassAPI>=1.04:devel/p5-Test-ClassAPI \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Test-ClassAPI>=1.04:devel/p5-Test-ClassAPI \ p5-Digest-TransformPath>=0.01:devel/p5-Digest-TransformPath \ p5-File-Remove>=0.34:devel/p5-File-Remove \ p5-File-Slurp>=9999.04:devel/p5-File-Slurp \ p5-HTML-Location>=1.00:www/p5-HTML-Location \ p5-Params-Coerce>=0.13:devel/p5-Params-Coerce -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-Interchange6/Makefile b/www/p5-Interchange6/Makefile index 9b2b860b9af..7d3910eb07e 100644 --- a/www/p5-Interchange6/Makefile +++ b/www/p5-Interchange6/Makefile @@ -14,7 +14,8 @@ COMMENT= Open Source Shop Machine LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Interchange6-Schema>=0:databases/p5-Interchange6-Schema \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Interchange6-Schema>=0:databases/p5-Interchange6-Schema \ p5-Module-Runtime>=0:devel/p5-Module-Runtime \ p5-Moo>=2.000000:devel/p5-Moo \ p5-Type-Tiny>=0:devel/p5-Type-Tiny \ @@ -23,7 +24,6 @@ BUILD_DEPENDS= p5-Interchange6-Schema>=0:databases/p5-Interchange6-Schema \ p5-MooseX-CoverableModifiers>=0:devel/p5-MooseX-CoverableModifiers \ p5-aliased>=0:devel/p5-aliased -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/www/p5-JSON-API/Makefile b/www/p5-JSON-API/Makefile index 146e578f8ed..bdc483ee9fb 100644 --- a/www/p5-JSON-API/Makefile +++ b/www/p5-JSON-API/Makefile @@ -14,10 +14,10 @@ COMMENT= Module to interact with a JSON API LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-JSON>=2:converters/p5-JSON \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-JSON>=2:converters/p5-JSON \ p5-libwww>=0:www/p5-libwww \ p5-URI-Encode>0:www/p5-URI-Encode -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-IO-Capture>=0:devel/p5-IO-Capture \ p5-Test-Fake-HTTPD>=0:devel/p5-Test-Fake-HTTPD \ p5-Test-Pod-Coverage>=0:devel/p5-Test-Pod-Coverage diff --git a/www/p5-Jemplate/Makefile b/www/p5-Jemplate/Makefile index f25243c67cd..ef15c0660bb 100644 --- a/www/p5-Jemplate/Makefile +++ b/www/p5-Jemplate/Makefile @@ -16,9 +16,9 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-File-Find-Rule>=0.33:devel/p5-File-Find-Rule \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-File-Find-Rule>=0.33:devel/p5-File-Find-Rule \ p5-Template-Toolkit>=2.25:www/p5-Template-Toolkit -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-Jifty/Makefile b/www/p5-Jifty/Makefile index 48c460536a7..3f049def10e 100644 --- a/www/p5-Jifty/Makefile +++ b/www/p5-Jifty/Makefile @@ -14,7 +14,8 @@ COMMENT= Jifty -- Just Do It -- Yet another web framework LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Any-Moose>=0:devel/p5-Any-Moose \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Any-Moose>=0:devel/p5-Any-Moose \ p5-App-CLI>=0.03:devel/p5-App-CLI \ p5-CGI-Cookie-Splitter>=0:www/p5-CGI-Cookie-Splitter \ p5-CGI-Emulate-PSGI>=0.06:www/p5-CGI-Emulate-PSGI \ @@ -88,7 +89,6 @@ BUILD_DEPENDS= p5-Any-Moose>=0:devel/p5-Any-Moose \ p5-YAML>=0.35:textproc/p5-YAML \ p5-YAML-Syck>=0.71:textproc/p5-YAML-Syck \ p5-libwww>0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Base>=0.44:devel/p5-Test-Base \ p5-Test-HTTP-Server-Simple>=0.02:www/p5-Test-HTTP-Server-Simple \ p5-Test-Log4perl>0:devel/p5-Test-Log4perl \ diff --git a/www/p5-LWP-Authen-Wsse/Makefile b/www/p5-LWP-Authen-Wsse/Makefile index 00d750f8258..cabd51a5fc2 100644 --- a/www/p5-LWP-Authen-Wsse/Makefile +++ b/www/p5-LWP-Authen-Wsse/Makefile @@ -14,9 +14,9 @@ COMMENT= Library for enabling X-WSSE authentication in LWP LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-libwww>=0:www/p5-libwww \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-libwww>=0:www/p5-libwww \ p5-Digest-SHA1>=0:security/p5-Digest-SHA1 -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-LWP-Protocol-connect/Makefile b/www/p5-LWP-Protocol-connect/Makefile index f3107842dee..bd33c7d531a 100644 --- a/www/p5-LWP-Protocol-connect/Makefile +++ b/www/p5-LWP-Protocol-connect/Makefile @@ -14,13 +14,13 @@ COMMENT= Provides HTTP/CONNECT proxy support for LWP::UserAgent LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-HTTP-Message>=0:www/p5-HTTP-Message \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTTP-Message>=0:www/p5-HTTP-Message \ p5-IO-Socket-SSL>=0:security/p5-IO-Socket-SSL \ p5-libwww>=0:www/p5-libwww \ p5-LWP-Protocol-https>=0:www/p5-LWP-Protocol-https \ p5-URI>=0:net/p5-URI \ p5-Net-HTTP>=6:net/p5-Net-HTTP -RUN_DEPENDS:= ${BUILD_DEPENDS} USE_PERL5= configure USES= perl5 diff --git a/www/p5-LWP-Protocol-http10/Makefile b/www/p5-LWP-Protocol-http10/Makefile index 53ad7424abd..0cd438d7462 100644 --- a/www/p5-LWP-Protocol-http10/Makefile +++ b/www/p5-LWP-Protocol-http10/Makefile @@ -14,9 +14,9 @@ COMMENT= Legacy HTTP/1.0 support for LWP LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-HTTP-Message>=6:www/p5-HTTP-Message \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTTP-Message>=6:www/p5-HTTP-Message \ p5-libwww>=6:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USE_PERL5= configure diff --git a/www/p5-LWP-Protocol-socks/Makefile b/www/p5-LWP-Protocol-socks/Makefile index f1d4498ee51..04ed8d80e74 100644 --- a/www/p5-LWP-Protocol-socks/Makefile +++ b/www/p5-LWP-Protocol-socks/Makefile @@ -10,11 +10,11 @@ PKGNAMEPREFIX= p5- MAINTAINER= ehaupt@FreeBSD.org COMMENT= Adds support for the socks protocol and proxy facility in LWP -BUILD_DEPENDS= p5-IO-Socket-SSL>=0:security/p5-IO-Socket-SSL \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-IO-Socket-SSL>=0:security/p5-IO-Socket-SSL \ p5-IO-Socket-Socks>=0:net/p5-IO-Socket-Socks \ p5-LWP-Protocol-https>=0:www/p5-LWP-Protocol-https \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-LWP-UserAgent-POE/Makefile b/www/p5-LWP-UserAgent-POE/Makefile index 533327ab58c..a55b636c74e 100644 --- a/www/p5-LWP-UserAgent-POE/Makefile +++ b/www/p5-LWP-UserAgent-POE/Makefile @@ -10,12 +10,12 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Drop-in LWP::UserAgent replacement in POE environments -BUILD_DEPENDS= p5-POE>=0.9999:devel/p5-POE \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-POE>=0.9999:devel/p5-POE \ p5-POE-Component-Client-HTTP>=0.83:www/p5-POE-Component-Client-HTTP \ p5-POE-Component-SSLify>=1.008:security/p5-POE-Component-SSLify \ p5-libwww>=0:www/p5-libwww \ p5-Log-Log4perl>=1:devel/p5-Log-Log4perl -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-LWP-UserAgent-WithCache/Makefile b/www/p5-LWP-UserAgent-WithCache/Makefile index 2bb0ea98a06..cdc8d30adae 100644 --- a/www/p5-LWP-UserAgent-WithCache/Makefile +++ b/www/p5-LWP-UserAgent-WithCache/Makefile @@ -14,10 +14,10 @@ COMMENT= LWP::UserAgent extension with local cache LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Cache-Cache>=0:devel/p5-Cache-Cache \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Cache-Cache>=0:devel/p5-Cache-Cache \ p5-File-HomeDir>=0:devel/p5-File-HomeDir \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USE_PERL5= configure diff --git a/www/p5-LWPx-ParanoidAgent/Makefile b/www/p5-LWPx-ParanoidAgent/Makefile index b13ad7ac12a..9a0fdcaff93 100644 --- a/www/p5-LWPx-ParanoidAgent/Makefile +++ b/www/p5-LWPx-ParanoidAgent/Makefile @@ -13,10 +13,10 @@ COMMENT= Subclass of LWP::UserAgent that protects you from harm LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Crypt-SSLeay>=0.58:security/p5-Crypt-SSLeay \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Crypt-SSLeay>=0.58:security/p5-Crypt-SSLeay \ p5-Net-DNS>=0:dns/p5-Net-DNS \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-Mason/Makefile b/www/p5-Mason/Makefile index 522ec0a7b8f..d28bf0839c9 100644 --- a/www/p5-Mason/Makefile +++ b/www/p5-Mason/Makefile @@ -14,7 +14,8 @@ COMMENT= High-performance, dynamic web site authoring system LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Capture-Tiny>=0:devel/p5-Capture-Tiny \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Capture-Tiny>=0:devel/p5-Capture-Tiny \ p5-Class-Load>=0:devel/p5-Class-Load \ p5-Class-Unload>=0:devel/p5-Class-Unload \ p5-Devel-GlobalDestruction>=0:devel/p5-Devel-GlobalDestruction \ @@ -28,7 +29,6 @@ BUILD_DEPENDS= p5-Capture-Tiny>=0:devel/p5-Capture-Tiny \ p5-MooseX-HasDefaults>=0.03:devel/p5-MooseX-HasDefaults \ p5-MooseX-StrictConstructor>=0.13:devel/p5-MooseX-StrictConstructor \ p5-Try-Tiny>=0:lang/p5-Try-Tiny -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Class-Most>=0:devel/p5-Test-Class-Most \ p5-Test-LongString>=0:devel/p5-Test-LongString diff --git a/www/p5-MasonX-Interp-WithCallbacks/Makefile b/www/p5-MasonX-Interp-WithCallbacks/Makefile index 12df8057046..ed5f41d0219 100644 --- a/www/p5-MasonX-Interp-WithCallbacks/Makefile +++ b/www/p5-MasonX-Interp-WithCallbacks/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Mason callback support via Params::CallbackRequest -BUILD_DEPENDS= p5-HTML-Mason>=0:www/p5-HTML-Mason \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTML-Mason>=0:www/p5-HTML-Mason \ p5-Params-CallbackRequest>=0:devel/p5-Params-CallbackRequest -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= modbuild diff --git a/www/p5-MasonX-Profiler/Makefile b/www/p5-MasonX-Profiler/Makefile index 3e6efaf0f34..30dc6bdd75e 100644 --- a/www/p5-MasonX-Profiler/Makefile +++ b/www/p5-MasonX-Profiler/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Mason per-component profiler -BUILD_DEPENDS= p5-HTML-Mason>=0:www/p5-HTML-Mason -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTML-Mason>=0:www/p5-HTML-Mason USES= perl5 USE_PERL5= configure diff --git a/www/p5-MasonX-Request-WithApacheSession/Makefile b/www/p5-MasonX-Request-WithApacheSession/Makefile index 9fec3f5d67b..7d49d615548 100644 --- a/www/p5-MasonX-Request-WithApacheSession/Makefile +++ b/www/p5-MasonX-Request-WithApacheSession/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Interface to Apache::Session for HTML::Mason -BUILD_DEPENDS= p5-HTML-Mason>=0:www/p5-HTML-Mason \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTML-Mason>=0:www/p5-HTML-Mason \ p5-Apache-Session-Wrapper>=0:www/p5-Apache-Session-Wrapper -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= modbuild diff --git a/www/p5-MasonX-WebApp/Makefile b/www/p5-MasonX-WebApp/Makefile index 6f051bd1de8..c4024a7ffee 100644 --- a/www/p5-MasonX-WebApp/Makefile +++ b/www/p5-MasonX-WebApp/Makefile @@ -11,14 +11,14 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Works with HTML::Mason to do processing before Mason is invoked -BUILD_DEPENDS= mp2bug:www/mod_perl2 \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= mp2bug:www/mod_perl2 \ p5-HTML-Mason>=0:www/p5-HTML-Mason \ p5-Apache-Session-Wrapper>=0:www/p5-Apache-Session-Wrapper \ p5-Exception-Class>=0:devel/p5-Exception-Class \ p5-Class-Data-Inheritable>=0:devel/p5-Class-Data-Inheritable \ p5-Class-Factory-Util>=0:devel/p5-Class-Factory-Util \ p5-URI>0:net/p5-URI -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Exception>=0:devel/p5-Test-Exception \ p5-Test-Output>=0:devel/p5-Test-Output diff --git a/www/p5-Maypole/Makefile b/www/p5-Maypole/Makefile index f244e7e65e3..b631f084601 100644 --- a/www/p5-Maypole/Makefile +++ b/www/p5-Maypole/Makefile @@ -15,7 +15,8 @@ COMMENT= MVC web application framework LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-CGI-Simple>=0:www/p5-CGI-Simple \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-CGI-Simple>=0:www/p5-CGI-Simple \ p5-CGI-Untaint>=1.26:www/p5-CGI-Untaint \ p5-CGI-Untaint-date>=0:www/p5-CGI-Untaint-date \ p5-CGI-Untaint-email>=0:www/p5-CGI-Untaint-email \ @@ -36,7 +37,6 @@ BUILD_DEPENDS= p5-CGI-Simple>=0:www/p5-CGI-Simple \ p5-UNIVERSAL-require>=0:devel/p5-UNIVERSAL-require \ p5-URI>=0:net/p5-URI \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-MockModule>=0:devel/p5-Test-MockModule \ p5-DBD-SQLite>=0:databases/p5-DBD-SQLite diff --git a/www/p5-MediaWiki-API/Makefile b/www/p5-MediaWiki-API/Makefile index 09a549994bd..6317111d5eb 100644 --- a/www/p5-MediaWiki-API/Makefile +++ b/www/p5-MediaWiki-API/Makefile @@ -12,9 +12,9 @@ COMMENT= OOP MediaWiki engine client LICENSE= GPLv3 -BUILD_DEPENDS= p5-JSON>=0:converters/p5-JSON \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-JSON>=0:converters/p5-JSON \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-JSON-Any>=0:converters/p5-JSON-Any NO_ARCH= yes diff --git a/www/p5-MediaWiki/Makefile b/www/p5-MediaWiki/Makefile index 61eb6e3aed4..83c9cbc2b07 100644 --- a/www/p5-MediaWiki/Makefile +++ b/www/p5-MediaWiki/Makefile @@ -15,9 +15,9 @@ COMMENT= OOP MediaWiki engine client LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Config-IniHash>=0:devel/p5-Config-IniHash \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Config-IniHash>=0:devel/p5-Config-IniHash \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-ModPerl-VersionUtil/Makefile b/www/p5-ModPerl-VersionUtil/Makefile index 6f3aeb2dad7..e164abd27f3 100644 --- a/www/p5-ModPerl-VersionUtil/Makefile +++ b/www/p5-ModPerl-VersionUtil/Makefile @@ -14,8 +14,8 @@ COMMENT= Makes it easier to investigate your mod_perl version LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Class-Data-Inheritable>=0.02:devel/p5-Class-Data-Inheritable -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Data-Inheritable>=0.02:devel/p5-Class-Data-Inheritable NO_ARCH= yes USE_PERL5= configure diff --git a/www/p5-MojoMojo/Makefile b/www/p5-MojoMojo/Makefile index 180685bfc8a..9a26cb39207 100644 --- a/www/p5-MojoMojo/Makefile +++ b/www/p5-MojoMojo/Makefile @@ -15,7 +15,8 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual # Please keep order as in Makefile.PL -BUILD_DEPENDS= \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= \ p5-Plack>=0.9974:www/p5-Plack \ p5-Algorithm-Diff>=1.1901:devel/p5-Algorithm-Diff \ p5-Algorithm-Merge>=0:devel/p5-Algorithm-Merge \ @@ -82,7 +83,6 @@ BUILD_DEPENDS= \ p5-Term-Prompt>=0:devel/p5-Term-Prompt \ p5-Text-Emoticon-MSN>=0:textproc/p5-Text-Emoticon-MSN \ p5-File-Slurp>=0:devel/p5-File-Slurp -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-WWW-Mechanize-Catalyst>=0:devel/p5-Test-WWW-Mechanize-Catalyst NO_ARCH= yes diff --git a/www/p5-MojoX-Log-Dispatch-Simple/Makefile b/www/p5-MojoX-Log-Dispatch-Simple/Makefile index b5fcb9f19c8..177c74668dc 100644 --- a/www/p5-MojoX-Log-Dispatch-Simple/Makefile +++ b/www/p5-MojoX-Log-Dispatch-Simple/Makefile @@ -13,9 +13,9 @@ COMMENT= Simple Log::Dispatch replacement of Mojo::Log LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Log-Dispatch>=0:devel/p5-Log-Dispatch \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Log-Dispatch>=0:devel/p5-Log-Dispatch \ p5-Mojolicious>=0:www/p5-Mojolicious -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Most>=0:devel/p5-Test-Most USES= perl5 diff --git a/www/p5-MojoX-Renderer-Xslate/Makefile b/www/p5-MojoX-Renderer-Xslate/Makefile index 20f26c4ba80..6c05aa8055e 100644 --- a/www/p5-MojoX-Renderer-Xslate/Makefile +++ b/www/p5-MojoX-Renderer-Xslate/Makefile @@ -13,9 +13,9 @@ COMMENT= Text::Xslate renderer for for Mojolicious LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Mojolicious>=5.81:www/p5-Mojolicious \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Mojolicious>=5.81:www/p5-Mojolicious \ p5-Text-Xslate>=0.2013:textproc/p5-Text-Xslate -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/www/p5-Mojolicious-Plugin-Authentication/Makefile b/www/p5-Mojolicious-Plugin-Authentication/Makefile index 22ce7f4685f..4e4d948d487 100644 --- a/www/p5-Mojolicious-Plugin-Authentication/Makefile +++ b/www/p5-Mojolicious-Plugin-Authentication/Makefile @@ -14,8 +14,8 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Mojolicious>=0:www/p5-Mojolicious -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Mojolicious>=0:www/p5-Mojolicious NO_ARCH= yes USES= perl5 diff --git a/www/p5-Mojolicious-Plugin-Database/Makefile b/www/p5-Mojolicious-Plugin-Database/Makefile index 32948a0b60a..49eafef0677 100644 --- a/www/p5-Mojolicious-Plugin-Database/Makefile +++ b/www/p5-Mojolicious-Plugin-Database/Makefile @@ -14,9 +14,9 @@ COMMENT= Handling of DBI based connections in Mojolicious LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-DBI>=0:databases/p5-DBI \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-DBI>=0:databases/p5-DBI \ p5-Mojolicious>=1:www/p5-Mojolicious -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-DBD-SQLite>=0:databases/p5-DBD-SQLite \ p5-Try-Tiny>=0:lang/p5-Try-Tiny diff --git a/www/p5-Mojolicious-Plugin-HamlRenderer/Makefile b/www/p5-Mojolicious-Plugin-HamlRenderer/Makefile index 31317d290f1..c3ca7c1bfac 100644 --- a/www/p5-Mojolicious-Plugin-HamlRenderer/Makefile +++ b/www/p5-Mojolicious-Plugin-HamlRenderer/Makefile @@ -7,15 +7,15 @@ CATEGORIES= www perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- -MAINTAINER= adamw@FreeBSD.org +MAINTAINER= perl@FreeBSD.org COMMENT= Haml renderer for Mojolicious LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Mojolicious>=1.3:www/p5-Mojolicious \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Mojolicious>=1.3:www/p5-Mojolicious \ p5-Text-Haml>=0.990103:textproc/p5-Text-Haml -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/www/p5-Mojolicious-Plugin-Mongodb/Makefile b/www/p5-Mojolicious-Plugin-Mongodb/Makefile index 7591d49f80a..463b7bffa33 100644 --- a/www/p5-Mojolicious-Plugin-Mongodb/Makefile +++ b/www/p5-Mojolicious-Plugin-Mongodb/Makefile @@ -15,10 +15,10 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Mojolicious>=0:www/p5-Mojolicious \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Mojolicious>=0:www/p5-Mojolicious \ p5-MongoDB>=0:databases/p5-MongoDB \ p5-Tie-IxHash>=0:devel/p5-Tie-IxHash -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/www/p5-Mojolicious-Plugin-SetUserGroup/Makefile b/www/p5-Mojolicious-Plugin-SetUserGroup/Makefile index 660119c830f..1b5ea75bacb 100644 --- a/www/p5-Mojolicious-Plugin-SetUserGroup/Makefile +++ b/www/p5-Mojolicious-Plugin-SetUserGroup/Makefile @@ -14,9 +14,9 @@ COMMENT= Mojolicious plugin to set unprivileged credentials LICENSE= ART20 LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Mojolicious>=6.0:www/p5-Mojolicious \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Mojolicious>=6.0:www/p5-Mojolicious \ p5-Unix-Groups-FFI>=0:devel/p5-Unix-Groups-FFI -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/www/p5-Mojolicious-Plugin-TtRenderer/Makefile b/www/p5-Mojolicious-Plugin-TtRenderer/Makefile index 659acd56f53..d4426db3771 100644 --- a/www/p5-Mojolicious-Plugin-TtRenderer/Makefile +++ b/www/p5-Mojolicious-Plugin-TtRenderer/Makefile @@ -14,9 +14,9 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Mojolicious>=6.33:www/p5-Mojolicious \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Mojolicious>=6.33:www/p5-Mojolicious \ p5-Template-Toolkit>=2.18:www/p5-Template-Toolkit -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/www/p5-Mojolicious-Plugin-YamlConfig/Makefile b/www/p5-Mojolicious-Plugin-YamlConfig/Makefile index af3edd0ee60..d5ad830c698 100644 --- a/www/p5-Mojolicious-Plugin-YamlConfig/Makefile +++ b/www/p5-Mojolicious-Plugin-YamlConfig/Makefile @@ -13,9 +13,9 @@ COMMENT= YAML Configuration Plugin LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Mojolicious>=5.54:www/p5-Mojolicious \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Mojolicious>=5.54:www/p5-Mojolicious \ p5-YAML-Tiny>=1.60:textproc/p5-YAML-Tiny -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Compile>=0:devel/p5-Test-Compile USES= perl5 diff --git a/www/p5-Net-Akismet/Makefile b/www/p5-Net-Akismet/Makefile index 7fb25d0ae97..870c7c510ec 100644 --- a/www/p5-Net-Akismet/Makefile +++ b/www/p5-Net-Akismet/Makefile @@ -14,8 +14,8 @@ COMMENT= Perl interface to the Akismet comment and trackback spam blocker LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-libwww>=5.09:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-libwww>=5.09:www/p5-libwww TEST_DEPENDS= p5-Test-Pod-Coverage>=0:devel/p5-Test-Pod-Coverage USES= perl5 diff --git a/www/p5-Net-Amazon-AWIS/Makefile b/www/p5-Net-Amazon-AWIS/Makefile index a4799918a25..db7a5761cec 100644 --- a/www/p5-Net-Amazon-AWIS/Makefile +++ b/www/p5-Net-Amazon-AWIS/Makefile @@ -14,13 +14,13 @@ COMMENT= Use the Amazon Alexa Web Information Service LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Class-Accessor>=0:devel/p5-Class-Accessor \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Accessor>=0:devel/p5-Class-Accessor \ p5-DateTime-Format-Strptime>=0:devel/p5-DateTime-Format-Strptime \ p5-Digest-HMAC>=0:security/p5-Digest-HMAC \ p5-URI>=0:net/p5-URI \ p5-XML-LibXML>=0:textproc/p5-XML-LibXML \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-IO-Prompt>=0:devel/p5-IO-Prompt \ p5-Test-Exception>=0:devel/p5-Test-Exception diff --git a/www/p5-Net-Async-FastCGI/Makefile b/www/p5-Net-Async-FastCGI/Makefile index 5a2291528e5..d6dc286a66a 100644 --- a/www/p5-Net-Async-FastCGI/Makefile +++ b/www/p5-Net-Async-FastCGI/Makefile @@ -14,10 +14,10 @@ COMMENT= Perl module to use FastCGI with IO::Async LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-HTTP-Message>=0:www/p5-HTTP-Message \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTTP-Message>=0:www/p5-HTTP-Message \ p5-IO-Async>=0:devel/p5-IO-Async \ p5-Net-FastCGI>=0:www/p5-Net-FastCGI -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-HexString>=0:devel/p5-Test-HexString \ p5-Test-Refcount>0:devel/p5-Test-Refcount \ p5-Test-Identity>=0:devel/p5-Test-Identity diff --git a/www/p5-Net-Async-HTTP/Makefile b/www/p5-Net-Async-HTTP/Makefile index cb59faadba7..541bfd8d0a3 100644 --- a/www/p5-Net-Async-HTTP/Makefile +++ b/www/p5-Net-Async-HTTP/Makefile @@ -14,13 +14,13 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Future>=0.28:devel/p5-Future \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Future>=0.28:devel/p5-Future \ p5-HTTP-Cookies>=0:www/p5-HTTP-Cookies \ p5-HTTP-Message>=0:www/p5-HTTP-Message \ p5-IO-Async>=0.59:devel/p5-IO-Async \ p5-Struct-Dumb>=0.07:devel/p5-Struct-Dumb \ p5-URI>=0:net/p5-URI -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-IO-Async-SSL>=0.12:security/p5-IO-Async-SSL \ p5-Test-Identity>=0:devel/p5-Test-Identity \ p5-Test-Refcount>=0:devel/p5-Test-Refcount diff --git a/www/p5-Net-Flickr-API/Makefile b/www/p5-Net-Flickr-API/Makefile index c865ea83dd3..7ea4e35b2fa 100644 --- a/www/p5-Net-Flickr-API/Makefile +++ b/www/p5-Net-Flickr-API/Makefile @@ -12,13 +12,13 @@ PKGNAMEPREFIX= p5- MAINTAINER= snowfly@yuntech.edu.tw COMMENT= Base API class for Net::Flickr::* libraries -BUILD_DEPENDS= p5-Config-Simple>=0:devel/p5-Config-Simple \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Config-Simple>=0:devel/p5-Config-Simple \ p5-Flickr-API>=0:www/p5-Flickr-API \ p5-Flickr-Upload>=0:www/p5-Flickr-Upload \ p5-Log-Dispatch>=0:devel/p5-Log-Dispatch \ p5-Readonly>=0:devel/p5-Readonly \ p5-XML-XPath>=0:textproc/p5-XML-XPath -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= modbuild diff --git a/www/p5-Net-Flickr-Backup/Makefile b/www/p5-Net-Flickr-Backup/Makefile index fa26b816966..c9f829fb7cf 100644 --- a/www/p5-Net-Flickr-Backup/Makefile +++ b/www/p5-Net-Flickr-Backup/Makefile @@ -14,14 +14,14 @@ COMMENT= OOP for backing up your Flickr photos locally LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-File-Find-Rule>=0:devel/p5-File-Find-Rule \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-File-Find-Rule>=0:devel/p5-File-Find-Rule \ p5-IO-stringy>=2.101:devel/p5-IO-stringy \ p5-Image-MetaData-JPEG>=0.15:graphics/p5-Image-MetaData-JPEG \ p5-Net-Flickr-RDF>=2.2:www/p5-Net-Flickr-RDF \ p5-TimeDate>=1.16:devel/p5-TimeDate \ p5-Text-Unidecode>=0.04:converters/p5-Text-Unidecode \ p5-libwww>=1.38:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= modbuild diff --git a/www/p5-Net-Flickr-RDF/Makefile b/www/p5-Net-Flickr-RDF/Makefile index 45483498631..1d5ea4ff750 100644 --- a/www/p5-Net-Flickr-RDF/Makefile +++ b/www/p5-Net-Flickr-RDF/Makefile @@ -14,10 +14,10 @@ COMMENT= Describe Flickr photos as RDF LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Net-Flickr-API>=1.7:www/p5-Net-Flickr-API \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Net-Flickr-API>=1.7:www/p5-Net-Flickr-API \ p5-RDF-Simple>=0.220:textproc/p5-RDF-Simple \ p5-TimeDate>=1.16:devel/p5-TimeDate -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= modbuild diff --git a/www/p5-Net-FreshBooks-API/Makefile b/www/p5-Net-FreshBooks-API/Makefile index 7ee0786e4f8..e34c9ff7f1a 100644 --- a/www/p5-Net-FreshBooks-API/Makefile +++ b/www/p5-Net-FreshBooks-API/Makefile @@ -13,7 +13,8 @@ COMMENT= Easy OO access to the FreshBooks.com API LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-B-Hooks-EndOfScope>=0.09:devel/p5-B-Hooks-EndOfScope \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-B-Hooks-EndOfScope>=0.09:devel/p5-B-Hooks-EndOfScope \ p5-Clone>=0:devel/p5-Clone \ p5-Data-Dump>=0:devel/p5-Data-Dump \ p5-Lingua-EN-Inflect>=0:textproc/p5-Lingua-EN-Inflect \ @@ -28,7 +29,6 @@ BUILD_DEPENDS= p5-B-Hooks-EndOfScope>=0.09:devel/p5-B-Hooks-EndOfScope \ p5-XML-Simple>=0:textproc/p5-XML-Simple \ p5-libwww>=0:www/p5-libwww \ p5-namespace-autoclean>=0.11:devel/p5-namespace-autoclean -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-DateTime>=0:devel/p5-DateTime \ p5-File-Slurp>=0:devel/p5-File-Slurp \ p5-Sub-Override>=0:devel/p5-Sub-Override \ diff --git a/www/p5-Net-Plurk/Makefile b/www/p5-Net-Plurk/Makefile index 37d4327d8c7..d817f520b15 100644 --- a/www/p5-Net-Plurk/Makefile +++ b/www/p5-Net-Plurk/Makefile @@ -14,7 +14,8 @@ COMMENT= Perl interface to Plurk API LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-AnyEvent-HTTP>=0:www/p5-AnyEvent-HTTP \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-AnyEvent-HTTP>=0:www/p5-AnyEvent-HTTP \ p5-DateTime-Format-Strptime>=0:devel/p5-DateTime-Format-Strptime \ p5-Digest-HMAC>=0:security/p5-Digest-HMAC \ p5-HTTP-Lite>=0:www/p5-HTTP-Lite \ @@ -25,7 +26,6 @@ BUILD_DEPENDS= p5-AnyEvent-HTTP>=0:www/p5-AnyEvent-HTTP \ p5-Net-SSLeay>=0:security/p5-Net-SSLeay \ p5-URI>=0:net/p5-URI \ p5-namespace-autoclean>=0:devel/p5-namespace-autoclean -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USE_PERL5= configure diff --git a/www/p5-Net-Trac/Makefile b/www/p5-Net-Trac/Makefile index cd71667677d..198d9787038 100644 --- a/www/p5-Net-Trac/Makefile +++ b/www/p5-Net-Trac/Makefile @@ -14,7 +14,8 @@ COMMENT= Interact with a remote Trac instance LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Any-Moose>0:devel/p5-Any-Moose \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Any-Moose>0:devel/p5-Any-Moose \ p5-DateTime>0:devel/p5-DateTime \ p5-Lingua-EN-Inflect>0:textproc/p5-Lingua-EN-Inflect \ p5-Params-Validate>0:devel/p5-Params-Validate \ @@ -22,7 +23,6 @@ BUILD_DEPENDS= p5-Any-Moose>0:devel/p5-Any-Moose \ p5-URI>0:net/p5-URI \ p5-WWW-Mechanize>=1.52:www/p5-WWW-Mechanize \ p5-libwww>0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-Net-UPS/Makefile b/www/p5-Net-UPS/Makefile index d48d0439c7a..062879c6c24 100644 --- a/www/p5-Net-UPS/Makefile +++ b/www/p5-Net-UPS/Makefile @@ -13,13 +13,13 @@ COMMENT= Perl Client library for UPS XML Shipping API LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-IO-Socket-SSL>=0:security/p5-IO-Socket-SSL \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-IO-Socket-SSL>=0:security/p5-IO-Socket-SSL \ p5-libwww>=0:www/p5-libwww \ p5-Mozilla-CA>=0:www/p5-Mozilla-CA \ p5-Scalar-List-Utils>=0:lang/p5-Scalar-List-Utils \ p5-XML-Simple>=0:textproc/p5-XML-Simple \ p5-Task-Weaken>=0:devel/p5-Task-Weaken -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-Net-YAP/Makefile b/www/p5-Net-YAP/Makefile index 445b2ccb606..766dae69030 100644 --- a/www/p5-Net-YAP/Makefile +++ b/www/p5-Net-YAP/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= skreuzer@FreeBSD.org COMMENT= Conduit to communicate with the Yahoo! Application Platform -BUILD_DEPENDS= p5-Net-OAuth-Simple>=1.0:net/p5-Net-OAuth-Simple -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Net-OAuth-Simple>=1.0:net/p5-Net-OAuth-Simple USES= perl5 USE_PERL5= configure diff --git a/www/p5-Net-eBay/Makefile b/www/p5-Net-eBay/Makefile index 4f43593eb1d..3b247dccdee 100644 --- a/www/p5-Net-eBay/Makefile +++ b/www/p5-Net-eBay/Makefile @@ -14,7 +14,8 @@ COMMENT= Perl Interface to XML based eBay API LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Crypt-SSLeay>=0:security/p5-Crypt-SSLeay \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Crypt-SSLeay>=0:security/p5-Crypt-SSLeay \ p5-DateTime-Precise>=0:devel/p5-DateTime-Precise \ p5-HTML-Format>=0:textproc/p5-HTML-Format \ p5-HTML-PrettyPrinter>=0:www/p5-HTML-PrettyPrinter \ @@ -25,7 +26,6 @@ BUILD_DEPENDS= p5-Crypt-SSLeay>=0:security/p5-Crypt-SSLeay \ p5-XML-Dumper>=0:textproc/p5-XML-Dumper \ p5-XML-Simple>=0:textproc/p5-XML-Simple \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} OPTIONS_DEFINE= EXAMPLES diff --git a/www/p5-Newsletter/Makefile b/www/p5-Newsletter/Makefile index 9b20388fb6c..544313b368b 100644 --- a/www/p5-Newsletter/Makefile +++ b/www/p5-Newsletter/Makefile @@ -14,10 +14,10 @@ COMMENT= Simple website based Newsletter interface LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-File-Type>0:devel/p5-File-Type \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-File-Type>0:devel/p5-File-Type \ p5-MIME-Explode>0:mail/p5-MIME-Explode \ p5-MIME-Lite>0:mail/p5-MIME-Lite -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-PHP-Session/Makefile b/www/p5-PHP-Session/Makefile index fb1cbd9c460..76e3ea2b801 100644 --- a/www/p5-PHP-Session/Makefile +++ b/www/p5-PHP-Session/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Read / write PHP session files -BUILD_DEPENDS= p5-UNIVERSAL-require>=0.03:devel/p5-UNIVERSAL-require -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-UNIVERSAL-require>=0.03:devel/p5-UNIVERSAL-require USES= perl5 USE_PERL5= configure diff --git a/www/p5-POE-Component-Client-HTTP/Makefile b/www/p5-POE-Component-Client-HTTP/Makefile index 6dccfcc8854..995c386e9cb 100644 --- a/www/p5-POE-Component-Client-HTTP/Makefile +++ b/www/p5-POE-Component-Client-HTTP/Makefile @@ -16,11 +16,11 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-POE>=1.312:devel/p5-POE \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-POE>=1.312:devel/p5-POE \ p5-POE-Component-Client-Keepalive>=0.2710:net/p5-POE-Component-Client-Keepalive \ p5-URI>=1.37:net/p5-URI \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-POE-Server-TCP>=1.14:devel/p5-Test-POE-Server-TCP USES= perl5 diff --git a/www/p5-POE-Component-Client-UserAgent/Makefile b/www/p5-POE-Component-Client-UserAgent/Makefile index 08780c39f9e..e774a570d58 100644 --- a/www/p5-POE-Component-Client-UserAgent/Makefile +++ b/www/p5-POE-Component-Client-UserAgent/Makefile @@ -15,9 +15,9 @@ COMMENT= LWP and LWP::Parallel based POE component LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-POE>=0:devel/p5-POE \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-POE>=0:devel/p5-POE \ p5-ParallelUserAgent>=0:www/p5-ParallelUserAgent -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/www/p5-POE-Component-Server-HTTP/Makefile b/www/p5-POE-Component-Server-HTTP/Makefile index 2adae1d52d6..90c3769a030 100644 --- a/www/p5-POE-Component-Server-HTTP/Makefile +++ b/www/p5-POE-Component-Server-HTTP/Makefile @@ -11,11 +11,11 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= POE Component to create HTTP Servers -BUILD_DEPENDS= p5-POE>=0:devel/p5-POE \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-POE>=0:devel/p5-POE \ p5-POE-API-Peek>=0:devel/p5-POE-API-Peek \ p5-YAML>=0:textproc/p5-YAML \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-POE-Component-Server-HTTPServer/Makefile b/www/p5-POE-Component-Server-HTTPServer/Makefile index b5733b2da9d..74017d4b477 100644 --- a/www/p5-POE-Component-Server-HTTPServer/Makefile +++ b/www/p5-POE-Component-Server-HTTPServer/Makefile @@ -11,11 +11,11 @@ PKGNAMEPREFIX= p5- MAINTAINER= lin-chi@lastamericanempire.com COMMENT= POE Component to server HTTP requests -BUILD_DEPENDS= p5-POE>=0:devel/p5-POE \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-POE>=0:devel/p5-POE \ p5-libwww>=0:www/p5-libwww \ p5-HTML-Template-HashWrapper>=0:www/p5-HTML-Template-HashWrapper \ p5-MIME-Types>=0:mail/p5-MIME-Types -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-POE-Component-Server-SOAP/Makefile b/www/p5-POE-Component-Server-SOAP/Makefile index 002711d188b..97814d6ac56 100644 --- a/www/p5-POE-Component-Server-SOAP/Makefile +++ b/www/p5-POE-Component-Server-SOAP/Makefile @@ -11,10 +11,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Publish POE event handlers via SOAP over HTTP -BUILD_DEPENDS= p5-SOAP-Lite>=0.55:net/p5-SOAP-Lite \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-SOAP-Lite>=0.55:net/p5-SOAP-Lite \ p5-POE-Component-Server-SimpleHTTP>=1.54:www/p5-POE-Component-Server-SimpleHTTP \ p5-POE>=0:devel/p5-POE -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-POE-Component-Server-SimpleHTTP/Makefile b/www/p5-POE-Component-Server-SimpleHTTP/Makefile index dfdcc9a9c7b..db95f0fe4f4 100644 --- a/www/p5-POE-Component-Server-SimpleHTTP/Makefile +++ b/www/p5-POE-Component-Server-SimpleHTTP/Makefile @@ -13,10 +13,10 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Moose>=0.9:devel/p5-Moose \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Moose>=0.9:devel/p5-Moose \ p5-MooseX-POE>=0.205:devel/p5-MooseX-POE \ p5-POE>=1:devel/p5-POE -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-POE-Component-Client-HTTP>=0.82:www/p5-POE-Component-Client-HTTP \ p5-POE-Filter-HTTP-Parser>=1.06:www/p5-POE-Filter-HTTP-Parser \ p5-Test-POE-Client-TCP>=0.1:devel/p5-Test-POE-Client-TCP diff --git a/www/p5-POE-Filter-HTTP-Parser/Makefile b/www/p5-POE-Filter-HTTP-Parser/Makefile index c8f56f9539f..122c0d4874d 100644 --- a/www/p5-POE-Filter-HTTP-Parser/Makefile +++ b/www/p5-POE-Filter-HTTP-Parser/Makefile @@ -9,10 +9,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= HTTP POE filter for HTTP clients or servers -BUILD_DEPENDS= p5-POE>=1.003:devel/p5-POE \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-POE>=1.003:devel/p5-POE \ p5-libwww>=0:www/p5-libwww \ p5-HTTP-Parser>=0.06:www/p5-HTTP-Parser -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-POE-Client-TCP>=0:devel/p5-Test-POE-Client-TCP \ p5-Test-POE-Server-TCP>=0:devel/p5-Test-POE-Server-TCP diff --git a/www/p5-ParallelUserAgent/Makefile b/www/p5-ParallelUserAgent/Makefile index 6155f50a922..f9a44956100 100644 --- a/www/p5-ParallelUserAgent/Makefile +++ b/www/p5-ParallelUserAgent/Makefile @@ -14,9 +14,9 @@ COMMENT= Extension for LWP to allow parallel HTTP and FTP access LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-IO-Socket-SSL>=0:security/p5-IO-Socket-SSL \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-IO-Socket-SSL>=0:security/p5-IO-Socket-SSL \ p5-libwww>=5.64:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes REINPLACE_ARGS= -i '' diff --git a/www/p5-Parse-HTTP-UserAgent/Makefile b/www/p5-Parse-HTTP-UserAgent/Makefile index 4a3d9a17467..5a13caf911a 100644 --- a/www/p5-Parse-HTTP-UserAgent/Makefile +++ b/www/p5-Parse-HTTP-UserAgent/Makefile @@ -14,10 +14,10 @@ COMMENT= Parser for the User Agent string LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-JSON>=0:converters/p5-JSON \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-JSON>=0:converters/p5-JSON \ p5-XML-Simple>=0:textproc/p5-XML-Simple \ p5-YAML>=0:textproc/p5-YAML -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Pod>=0:devel/p5-Test-Pod \ p5-Test-Pod-Coverage>=0:devel/p5-Test-Pod-Coverage diff --git a/www/p5-Perlanet/Makefile b/www/p5-Perlanet/Makefile index ea62ad2e7f3..db0526aa989 100644 --- a/www/p5-Perlanet/Makefile +++ b/www/p5-Perlanet/Makefile @@ -15,7 +15,8 @@ COMMENT= Program for creating programs that aggregate web feeds LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-CHI>=0:devel/p5-CHI \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-CHI>=0:devel/p5-CHI \ p5-DateTime>=0:devel/p5-DateTime \ p5-HTML-Scrubber>=0:www/p5-HTML-Scrubber \ p5-HTML-Tidy>=0:textproc/p5-HTML-Tidy \ @@ -28,7 +29,6 @@ BUILD_DEPENDS= p5-CHI>=0:devel/p5-CHI \ p5-XML-Feed>=0.22:textproc/p5-XML-Feed \ p5-YAML>=0:textproc/p5-YAML \ p5-namespace-autoclean>=0:devel/p5-namespace-autoclean -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/www/p5-Plack-Middleware-CrossOrigin/Makefile b/www/p5-Plack-Middleware-CrossOrigin/Makefile index 15ae608ec56..2f800f4f6e4 100644 --- a/www/p5-Plack-Middleware-CrossOrigin/Makefile +++ b/www/p5-Plack-Middleware-CrossOrigin/Makefile @@ -13,8 +13,8 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Plack>=0:www/p5-Plack -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Plack>=0:www/p5-Plack NO_ARCH= yes USES= perl5 diff --git a/www/p5-Plack-Middleware-Expires/Makefile b/www/p5-Plack-Middleware-Expires/Makefile index ac02235a4bd..e4405725ddb 100644 --- a/www/p5-Plack-Middleware-Expires/Makefile +++ b/www/p5-Plack-Middleware-Expires/Makefile @@ -14,11 +14,11 @@ COMMENT= Perl module mod_expires for Plack LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-HTTP-Date>=0:www/p5-HTTP-Date \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTTP-Date>=0:www/p5-HTTP-Date \ p5-HTTP-Message>=0:www/p5-HTTP-Message \ p5-Plack>=0.9937:www/p5-Plack \ p5-Try-Tiny>=0.06:lang/p5-Try-Tiny -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USE_PERL5= modbuild diff --git a/www/p5-Plack-Middleware-ExtDirect/Makefile b/www/p5-Plack-Middleware-ExtDirect/Makefile index 998fa3def2e..e58efcf05af 100644 --- a/www/p5-Plack-Middleware-ExtDirect/Makefile +++ b/www/p5-Plack-Middleware-ExtDirect/Makefile @@ -13,10 +13,10 @@ COMMENT= Implement an RPC::ExtDirect gateway using Plack LICENSE= ART10 -BUILD_DEPENDS= pkg-config:devel/pkgconf \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= pkg-config:devel/pkgconf \ p5-Plack>=0:www/p5-Plack \ p5-RPC-ExtDirect>=3.20:www/p5-RPC-ExtDirect -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Pod>=1.46:devel/p5-Test-Pod USES= perl5 diff --git a/www/p5-Plack-Middleware-FixMissingBodyInRedirect/Makefile b/www/p5-Plack-Middleware-FixMissingBodyInRedirect/Makefile index 4e25eacf4fd..72a62182c75 100644 --- a/www/p5-Plack-Middleware-FixMissingBodyInRedirect/Makefile +++ b/www/p5-Plack-Middleware-FixMissingBodyInRedirect/Makefile @@ -14,9 +14,9 @@ COMMENT= Sets body for redirect response, if it is not already set LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-HTML-Parser>=0:www/p5-HTML-Parser \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTML-Parser>=0:www/p5-HTML-Parser \ p5-Plack>=0:www/p5-Plack -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-HTTP-Message>=0:www/p5-HTTP-Message USE_PERL5= configure diff --git a/www/p5-Plack-Middleware-ForceEnv/Makefile b/www/p5-Plack-Middleware-ForceEnv/Makefile index 6f265cb64e6..8d1c2837ea7 100644 --- a/www/p5-Plack-Middleware-ForceEnv/Makefile +++ b/www/p5-Plack-Middleware-ForceEnv/Makefile @@ -14,8 +14,8 @@ COMMENT= Force set environment variables for testing LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Plack>=0.9925:www/p5-Plack -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Plack>=0.9925:www/p5-Plack NO_ARCH= yes USE_PERL5= configure diff --git a/www/p5-Plack-Middleware-MethodOverride/Makefile b/www/p5-Plack-Middleware-MethodOverride/Makefile index 33bfe8bbf62..9cc1c6e7fe2 100644 --- a/www/p5-Plack-Middleware-MethodOverride/Makefile +++ b/www/p5-Plack-Middleware-MethodOverride/Makefile @@ -13,8 +13,8 @@ COMMENT= Override REST methods to Plack apps via POST LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Plack>=0:www/p5-Plack -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Plack>=0:www/p5-Plack TEST_DEPENDS= p5-URI>=0:net/p5-URI NO_ARCH= yes diff --git a/www/p5-Plack-Middleware-NoMultipleSlashes/Makefile b/www/p5-Plack-Middleware-NoMultipleSlashes/Makefile index 6524c346df0..1f05c74065e 100644 --- a/www/p5-Plack-Middleware-NoMultipleSlashes/Makefile +++ b/www/p5-Plack-Middleware-NoMultipleSlashes/Makefile @@ -13,8 +13,8 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Plack>=0:www/p5-Plack -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Plack>=0:www/p5-Plack NO_ARCH= yes USES= perl5 diff --git a/www/p5-Plack-Middleware-RemoveRedundantBody/Makefile b/www/p5-Plack-Middleware-RemoveRedundantBody/Makefile index f9687880114..1d7404efadf 100644 --- a/www/p5-Plack-Middleware-RemoveRedundantBody/Makefile +++ b/www/p5-Plack-Middleware-RemoveRedundantBody/Makefile @@ -14,8 +14,8 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Plack>=0:www/p5-Plack -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Plack>=0:www/p5-Plack TEST_DEPENDS= p5-HTTP-Message>=0:www/p5-HTTP-Message NO_ARCH= yes diff --git a/www/p5-Plack-Middleware-Rewrite/Makefile b/www/p5-Plack-Middleware-Rewrite/Makefile index c21138a45f3..fd25e28fc33 100644 --- a/www/p5-Plack-Middleware-Rewrite/Makefile +++ b/www/p5-Plack-Middleware-Rewrite/Makefile @@ -14,8 +14,8 @@ COMMENT= mod_rewrite for Plack LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Plack>=0.9942:www/p5-Plack -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Plack>=0.9942:www/p5-Plack NO_ARCH= yes USES= perl5 diff --git a/www/p5-Plack-Middleware-Test-StashWarnings/Makefile b/www/p5-Plack-Middleware-Test-StashWarnings/Makefile index b20b35ab9b9..5b37bab70e7 100644 --- a/www/p5-Plack-Middleware-Test-StashWarnings/Makefile +++ b/www/p5-Plack-Middleware-Test-StashWarnings/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= matthew@FreeBSD.org COMMENT= Test your application's warnings -BUILD_DEPENDS= p5-Plack>0:www/p5-Plack -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Plack>0:www/p5-Plack NO_ARCH= yes diff --git a/www/p5-Plack-Middleware-XForwardedFor/Makefile b/www/p5-Plack-Middleware-XForwardedFor/Makefile index 0c57c9fc95f..e51d5f972c3 100644 --- a/www/p5-Plack-Middleware-XForwardedFor/Makefile +++ b/www/p5-Plack-Middleware-XForwardedFor/Makefile @@ -14,9 +14,9 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Net-IP>=1.26:net-mgmt/p5-Net-IP \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Net-IP>=1.26:net-mgmt/p5-Net-IP \ p5-Plack>=0.9913:www/p5-Plack -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USE_PERL5= configure diff --git a/www/p5-Plack-Test-ExternalServer/Makefile b/www/p5-Plack-Test-ExternalServer/Makefile index 270c08d2908..01eba973589 100644 --- a/www/p5-Plack-Test-ExternalServer/Makefile +++ b/www/p5-Plack-Test-ExternalServer/Makefile @@ -13,9 +13,9 @@ COMMENT= Run HTTP tests on external live servers LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-URI>=0:net/p5-URI \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-URI>=0:net/p5-URI \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-HTTP-Message>=0:www/p5-HTTP-Message \ p5-Plack>=0:www/p5-Plack \ p5-Test-TCP>=0:devel/p5-Test-TCP diff --git a/www/p5-PocketIO/Makefile b/www/p5-PocketIO/Makefile index dc49155b02f..a9e120843ca 100644 --- a/www/p5-PocketIO/Makefile +++ b/www/p5-PocketIO/Makefile @@ -14,12 +14,12 @@ COMMENT= Socket.IO Plack application LICENSE= ART20 -BUILD_DEPENDS= p5-AnyEvent>=0:devel/p5-AnyEvent \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-AnyEvent>=0:devel/p5-AnyEvent \ p5-JSON>=2.53:converters/p5-JSON \ p5-Protocol-SocketIO>=0.04:www/p5-Protocol-SocketIO \ p5-Protocol-WebSocket>=0.00906:www/p5-Protocol-WebSocket \ p5-Test-TCP>=0:devel/p5-Test-TCP -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Plack>=0:www/p5-Plack \ p5-Twiggy>=0:www/p5-Twiggy diff --git a/www/p5-Pod-Site/Makefile b/www/p5-Pod-Site/Makefile index bc99221a904..775da27fd9f 100644 --- a/www/p5-Pod-Site/Makefile +++ b/www/p5-Pod-Site/Makefile @@ -14,9 +14,9 @@ COMMENT= Build browsable HTML documentation for your app LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-HTML-Parser>=0:www/p5-HTML-Parser \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTML-Parser>=0:www/p5-HTML-Parser \ p5-Object-Tiny>=0:devel/p5-Object-Tiny -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-File>=0:devel/p5-Test-File \ p5-Test-MockModule>=0.05:devel/p5-Test-MockModule \ p5-Test-XPath>=0.12:lang/p5-Test-XPath diff --git a/www/p5-PodToHTML/Makefile b/www/p5-PodToHTML/Makefile index fb968829cc9..a9a6afd127a 100644 --- a/www/p5-PodToHTML/Makefile +++ b/www/p5-PodToHTML/Makefile @@ -15,11 +15,11 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-URI>=0:net/p5-URI \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-URI>=0:net/p5-URI \ p5-HTML-Tree>=0:www/p5-HTML-Tree \ p5-HTML-Parser>=0:www/p5-HTML-Parser \ p5-HTML-Format>=0:textproc/p5-HTML-Format -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-Protocol-HTTP2/Makefile b/www/p5-Protocol-HTTP2/Makefile index e6d29165e00..80937755d40 100644 --- a/www/p5-Protocol-HTTP2/Makefile +++ b/www/p5-Protocol-HTTP2/Makefile @@ -15,9 +15,9 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-AnyEvent>=0:devel/p5-AnyEvent \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-AnyEvent>=0:devel/p5-AnyEvent \ p5-Net-SSLeay>=1.45:security/p5-Net-SSLeay -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-LeakTrace>=0:devel/p5-Test-LeakTrace \ p5-Test-TCP>=0:devel/p5-Test-TCP diff --git a/www/p5-Protocol-SocketIO/Makefile b/www/p5-Protocol-SocketIO/Makefile index c7ae3c4a2e8..50ecd2114fc 100644 --- a/www/p5-Protocol-SocketIO/Makefile +++ b/www/p5-Protocol-SocketIO/Makefile @@ -13,8 +13,8 @@ COMMENT= Socket.IO protocol implementation LICENSE= ART20 -BUILD_DEPENDS= p5-JSON>=0:converters/p5-JSON -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-JSON>=0:converters/p5-JSON NO_ARCH= yes USE_PERL5= modbuildtiny diff --git a/www/p5-Protocol-XMLRPC/Makefile b/www/p5-Protocol-XMLRPC/Makefile index 90a87f7cb67..fe374a59000 100644 --- a/www/p5-Protocol-XMLRPC/Makefile +++ b/www/p5-Protocol-XMLRPC/Makefile @@ -14,8 +14,8 @@ COMMENT= XML-RPC implementation LICENSE= ART20 -BUILD_DEPENDS= p5-XML-LibXML>=0:textproc/p5-XML-LibXML -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-XML-LibXML>=0:textproc/p5-XML-LibXML NO_ARCH= yes USE_PERL5= configure diff --git a/www/p5-REST-Client/Makefile b/www/p5-REST-Client/Makefile index 025ed2c1d5d..c883e642b68 100644 --- a/www/p5-REST-Client/Makefile +++ b/www/p5-REST-Client/Makefile @@ -13,10 +13,10 @@ COMMENT= Simple client for interacting with RESTful http/https resources LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-LWP-Protocol-https>=6.02:www/p5-LWP-Protocol-https \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-LWP-Protocol-https>=6.02:www/p5-LWP-Protocol-https \ p5-URI>0:net/p5-URI \ p5-libwww>0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-RPC-ExtDirect/Makefile b/www/p5-RPC-ExtDirect/Makefile index 6cd19d23d21..2c4df9e21c3 100644 --- a/www/p5-RPC-ExtDirect/Makefile +++ b/www/p5-RPC-ExtDirect/Makefile @@ -13,9 +13,9 @@ COMMENT= Perl extension for implementing the Ext.Direct remoting protocol LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Attribute-Handlers>=0.93:devel/p5-Attribute-Handlers \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Attribute-Handlers>=0.93:devel/p5-Attribute-Handlers \ p5-JSON>=2.53:converters/p5-JSON -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Pod>=1.46:devel/p5-Test-Pod USES= perl5 diff --git a/www/p5-RT-Authen-ExternalAuth/Makefile b/www/p5-RT-Authen-ExternalAuth/Makefile index 0bd3133956f..df4d6530b64 100644 --- a/www/p5-RT-Authen-ExternalAuth/Makefile +++ b/www/p5-RT-Authen-ExternalAuth/Makefile @@ -12,10 +12,10 @@ COMMENT= RT extension to authenticate users against an external source LICENSE= GPLv2 -BUILD_DEPENDS= p5-perl-ldap>0:net/p5-perl-ldap \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-perl-ldap>0:net/p5-perl-ldap \ p5-DBI>0:databases/p5-DBI \ p5-Net-SSLeay>0:security/p5-Net-SSLeay -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes @@ -40,7 +40,6 @@ RT_VER= ${opt:S/RT//} ### Temporary for debugging #WRKDIR= ${WRKDIRPREFIX}${.CURDIR}/work${RT_VER} -BUILD_DEPENDS+= ${LOCALBASE}/bin/rt:www/rt${RT_VER} RUN_DEPENDS+= ${LOCALBASE}/bin/rt:www/rt${RT_VER} MAN3PREFIX= ${PREFIX} diff --git a/www/p5-RT-Client-REST/Makefile b/www/p5-RT-Client-REST/Makefile index 1e67c2a6673..0e7875d3562 100644 --- a/www/p5-RT-Client-REST/Makefile +++ b/www/p5-RT-Client-REST/Makefile @@ -14,7 +14,8 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-libwww>=0:www/p5-libwww \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-libwww>=0:www/p5-libwww \ p5-Error>=0:lang/p5-Error \ p5-Exception-Class>=0:devel/p5-Exception-Class \ p5-DateTime>0:devel/p5-DateTime \ @@ -24,7 +25,6 @@ BUILD_DEPENDS= p5-libwww>=0:www/p5-libwww \ p5-URI>0:net/p5-URI TEST_DEPENDS= p5-HTTP-Server-Simple>=0:www/p5-HTTP-Server-Simple \ p5-Test-Exception>=0:devel/p5-Test-Exception -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-RT-Extension-LDAPImport/Makefile b/www/p5-RT-Extension-LDAPImport/Makefile index 6068080e9ce..eb37ea6746a 100644 --- a/www/p5-RT-Extension-LDAPImport/Makefile +++ b/www/p5-RT-Extension-LDAPImport/Makefile @@ -14,9 +14,9 @@ COMMENT= RT extension to import users from an LDAP store LICENSE_COMB= dual LICENSE= ART10 GPLv1+ -BUILD_DEPENDS= p5-perl-ldap>0:net/p5-perl-ldap \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-perl-ldap>0:net/p5-perl-ldap \ p5-Class-Accessor>0:devel/p5-Class-Accessor -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes @@ -41,7 +41,6 @@ RT_VER= ${opt:S/RT//} ### Temporary for debugging #WRKDIR= ${WRKDIRPREFIX}${.CURDIR}/work${RT_VER} -BUILD_DEPENDS+= ${LOCALBASE}/bin/rt:www/rt${RT_VER} RUN_DEPENDS+= ${LOCALBASE}/bin/rt:www/rt${RT_VER} MAN3PREFIX= ${PREFIX} diff --git a/www/p5-RT-Extension-SLA/Makefile b/www/p5-RT-Extension-SLA/Makefile index 80d42d413fb..8c14d8b6267 100644 --- a/www/p5-RT-Extension-SLA/Makefile +++ b/www/p5-RT-Extension-SLA/Makefile @@ -12,8 +12,8 @@ COMMENT= RT extension to automate due dates using service levels LICENSE= GPLv2 -BUILD_DEPENDS= p5-Business-Hours>0:misc/p5-Business-Hours -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Business-Hours>0:misc/p5-Business-Hours # SLA functionality comes as standard in RT 4.4.x CONFLICTS_INSTALL= rt44-4.4.* @@ -40,7 +40,6 @@ RT_VER= ${opt:S/RT//} ### Temporary for debugging #WRKDIR= ${WRKDIRPREFIX}${.CURDIR}/work${RT_VER} -BUILD_DEPENDS+= ${LOCALBASE}/bin/rt:www/rt${RT_VER} RUN_DEPENDS+= ${LOCALBASE}/bin/rt:www/rt${RT_VER} PLIST_SUB+= RTHOME=share/rt${RT_VER} diff --git a/www/p5-RTx-Calendar/Makefile b/www/p5-RTx-Calendar/Makefile index e3ef53a5547..fbc8d000f31 100644 --- a/www/p5-RTx-Calendar/Makefile +++ b/www/p5-RTx-Calendar/Makefile @@ -13,10 +13,10 @@ COMMENT= Calendar extension module for the RT ticketing system LICENSE_COMB= dual LICENSE= ART10 GPLv1+ -BUILD_DEPENDS= p5-Date-ICal>0:devel/p5-Date-ICal \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Date-ICal>0:devel/p5-Date-ICal \ p5-Data-ICal>0:deskutils/p5-Data-ICal \ p5-DateTime-Set>0:devel/p5-DateTime-Set -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes @@ -38,7 +38,6 @@ RT_VER= ${opt:S/RT//} .endif .endfor -BUILD_DEPENDS+= ${LOCALBASE}/bin/rt:www/rt${RT_VER} RUN_DEPENDS+= ${LOCALBASE}/bin/rt:www/rt${RT_VER} MAN3PREFIX= ${PREFIX} diff --git a/www/p5-Reaction/Makefile b/www/p5-Reaction/Makefile index d3764310451..8926a1ed11f 100644 --- a/www/p5-Reaction/Makefile +++ b/www/p5-Reaction/Makefile @@ -11,7 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Extended MVC framework built upon Catalyst -BUILD_DEPENDS= p5-Catalyst-Component-ACCEPT_CONTEXT>=0.05:www/p5-Catalyst-Component-ACCEPT_CONTEXT \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Catalyst-Component-ACCEPT_CONTEXT>=0.05:www/p5-Catalyst-Component-ACCEPT_CONTEXT \ p5-Catalyst-Component-InstancePerContext>=0.001001:www/p5-Catalyst-Component-InstancePerContext \ p5-Catalyst-Model-DBIC-Schema>=0.23:www/p5-Catalyst-Model-DBIC-Schema \ p5-Catalyst-Plugin-ConfigLoader>=0.23:www/p5-Catalyst-Plugin-ConfigLoader \ @@ -47,7 +48,6 @@ BUILD_DEPENDS= p5-Catalyst-Component-ACCEPT_CONTEXT>=0.05:www/p5-Catalyst-Compon p5-aliased>=0.22:devel/p5-aliased \ p5-namespace-clean>=0.11:devel/p5-namespace-clean \ p5-signatures>=0.05:lang/p5-signatures -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-SQL-Translator>=0.11002:databases/p5-SQL-Translator \ p5-Test-Class>=0.31:devel/p5-Test-Class \ p5-Test-Memory-Cycle>=1.04:devel/p5-Test-Memory-Cycle \ diff --git a/www/p5-Reddit-Client/Makefile b/www/p5-Reddit-Client/Makefile index 281e6575c37..e75c550edc8 100644 --- a/www/p5-Reddit-Client/Makefile +++ b/www/p5-Reddit-Client/Makefile @@ -14,13 +14,13 @@ COMMENT= Methods and object wrappers for objects exposed by the Reddit API LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-IO-Capture>=0:devel/p5-IO-Capture \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-IO-Capture>=0:devel/p5-IO-Capture \ p5-JSON>=2.53:converters/p5-JSON \ p5-URI-Encode>0:www/p5-URI-Encode \ p5-URI>0:net/p5-URI \ p5-libwww>0:www/p5-libwww \ p5-File-Path-Expand>=0:devel/p5-File-Path-Expand -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-MockModule>=0:devel/p5-Test-MockModule USES= perl5 diff --git a/www/p5-Rose-HTML-Objects/Makefile b/www/p5-Rose-HTML-Objects/Makefile index 39f146ecd10..3a2f6f7863b 100644 --- a/www/p5-Rose-HTML-Objects/Makefile +++ b/www/p5-Rose-HTML-Objects/Makefile @@ -13,7 +13,8 @@ COMMENT= Object-oriented interfaces for HTML LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Clone-PP>=0:devel/p5-Clone-PP \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Clone-PP>=0:devel/p5-Clone-PP \ p5-DateTime>=0.20:devel/p5-DateTime \ p5-Email-Valid>=0:mail/p5-Email-Valid \ p5-HTML-Parser>=0:www/p5-HTML-Parser \ @@ -24,7 +25,6 @@ BUILD_DEPENDS= p5-Clone-PP>=0:devel/p5-Clone-PP \ p5-Rose-Object>=0.854:devel/p5-Rose-Object \ p5-Rose-URI>=0.021:net/p5-Rose-URI \ p5-URI>=0:net/p5-URI -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Memory-Cycle>=0:devel/p5-Test-Memory-Cycle PORTSCOUT= skipv:0.6061 diff --git a/www/p5-Router-Simple/Makefile b/www/p5-Router-Simple/Makefile index b33c153c594..68f7fd6ac99 100644 --- a/www/p5-Router-Simple/Makefile +++ b/www/p5-Router-Simple/Makefile @@ -14,8 +14,8 @@ COMMENT= Simple HTTP Router LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Class-Accessor-Lite>=0.05:devel/p5-Class-Accessor-Lite -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Accessor-Lite>=0.05:devel/p5-Class-Accessor-Lite NO_ARCH= yes USE_PERL5= modbuild diff --git a/www/p5-SRU/Makefile b/www/p5-SRU/Makefile index d4e024400d4..35ef0b01a62 100644 --- a/www/p5-SRU/Makefile +++ b/www/p5-SRU/Makefile @@ -15,13 +15,13 @@ COMMENT= Search and Retrieval by URL LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-CGI-Application>=0:www/p5-CGI-Application \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-CGI-Application>=0:www/p5-CGI-Application \ p5-CQL-Parser>=1.12:textproc/p5-CQL-Parser \ p5-Class-Accessor>=0:devel/p5-Class-Accessor \ p5-URI>=0:net/p5-URI \ p5-XML-LibXML>=0:textproc/p5-XML-LibXML \ p5-XML-Simple>=0:textproc/p5-XML-Simple -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Exception>=0:devel/p5-Test-Exception USES= perl5 diff --git a/www/p5-Scrappy/Makefile b/www/p5-Scrappy/Makefile index 7a80764d7fd..c642dcf8324 100644 --- a/www/p5-Scrappy/Makefile +++ b/www/p5-Scrappy/Makefile @@ -11,7 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= All Powerful Web Harvester, Spider, Scraper fully automated -BUILD_DEPENDS= p5-File-ShareDir-Install>=0.03:devel/p5-File-ShareDir-Install \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-File-ShareDir-Install>=0.03:devel/p5-File-ShareDir-Install \ p5-Array-Unique>=0:devel/p5-Array-Unique \ p5-DateTime>=0:devel/p5-DateTime \ p5-DateTime-Format-SQLite>=0:devel/p5-DateTime-Format-SQLite \ @@ -29,7 +30,6 @@ BUILD_DEPENDS= p5-File-ShareDir-Install>=0.03:devel/p5-File-ShareDir-Install \ p5-WWW-Mechanize>=0:www/p5-WWW-Mechanize \ p5-Web-Scraper>=0:www/p5-Web-Scraper \ p5-YAML-Syck>=0:textproc/p5-YAML-Syck -RUN_DEPENDS:= ${BUILD_DEPENDS} PORTSCOUT= skipv:0.921111901 diff --git a/www/p5-Syntax-Highlight-HTML/Makefile b/www/p5-Syntax-Highlight-HTML/Makefile index 497031010ce..897c832596c 100644 --- a/www/p5-Syntax-Highlight-HTML/Makefile +++ b/www/p5-Syntax-Highlight-HTML/Makefile @@ -14,8 +14,8 @@ COMMENT= Syntax::Highlight::HTML - Highlight HTML syntax LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-HTML-Parser>=0:www/p5-HTML-Parser -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTML-Parser>=0:www/p5-HTML-Parser USES= perl5 USE_PERL5= configure diff --git a/www/p5-Syntax-Highlight-Shell/Makefile b/www/p5-Syntax-Highlight-Shell/Makefile index 8910de2dda5..1bbdaa4e13f 100644 --- a/www/p5-Syntax-Highlight-Shell/Makefile +++ b/www/p5-Syntax-Highlight-Shell/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Syntax::Highlight::Shell - Highlight shell scripts -BUILD_DEPENDS= p5-Shell-Parser>=0:devel/p5-Shell-Parser -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Shell-Parser>=0:devel/p5-Shell-Parser USES= perl5 USE_PERL5= configure diff --git a/www/p5-Task-Catalyst/Makefile b/www/p5-Task-Catalyst/Makefile index 55c7ef8380a..88313bec885 100644 --- a/www/p5-Task-Catalyst/Makefile +++ b/www/p5-Task-Catalyst/Makefile @@ -11,7 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= All you need to start with Catalyst -BUILD_DEPENDS= p5-Catalyst-ActionRole-ACL>=0:www/p5-Catalyst-ActionRole-ACL \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Catalyst-ActionRole-ACL>=0:www/p5-Catalyst-ActionRole-ACL \ p5-Catalyst-Action-REST>=0:www/p5-Catalyst-Action-REST \ p5-Catalyst-Authentication-Credential-HTTP>=0:www/p5-Catalyst-Authentication-Credential-HTTP \ p5-Catalyst-Authentication-Store-DBIx-Class>=0.106:www/p5-Catalyst-Authentication-Store-DBIx-Class \ @@ -39,7 +40,6 @@ BUILD_DEPENDS= p5-Catalyst-ActionRole-ACL>=0:www/p5-Catalyst-ActionRole-ACL \ p5-FCGI-ProcManager>=0:www/p5-FCGI-ProcManager \ p5-Starman>=0:www/p5-Starman \ p5-local-lib>=0:devel/p5-local-lib -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-Tatsumaki/Makefile b/www/p5-Tatsumaki/Makefile index 7e513082cbf..b9b9d2360eb 100644 --- a/www/p5-Tatsumaki/Makefile +++ b/www/p5-Tatsumaki/Makefile @@ -15,7 +15,8 @@ COMMENT= Non-blocking web framework based on Plack and AnyEvent LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Any-Moose>=0:devel/p5-Any-Moose \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Any-Moose>=0:devel/p5-Any-Moose \ p5-AnyEvent>=0:devel/p5-AnyEvent \ p5-AnyEvent-HTTP>=0:www/p5-AnyEvent-HTTP \ p5-JSON>=0:converters/p5-JSON \ @@ -24,7 +25,6 @@ BUILD_DEPENDS= p5-Any-Moose>=0:devel/p5-Any-Moose \ p5-Text-MicroTemplate>=0:textproc/p5-Text-MicroTemplate \ p5-Try-Tiny>=0:lang/p5-Try-Tiny \ p5-Twiggy>=0:www/p5-Twiggy -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-TCP>=0:devel/p5-Test-TCP USES= perl5 diff --git a/www/p5-Template-GD/Makefile b/www/p5-Template-GD/Makefile index 4714a2003a1..c84116808d1 100644 --- a/www/p5-Template-GD/Makefile +++ b/www/p5-Template-GD/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Template Toolkit plugin to interface with GD modules -BUILD_DEPENDS= p5-Template-Toolkit>=0:www/p5-Template-Toolkit -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Template-Toolkit>=0:www/p5-Template-Toolkit USES= perl5 USE_PERL5= configure diff --git a/www/p5-Template-Iterator-AlzaboWrapperCursor/Makefile b/www/p5-Template-Iterator-AlzaboWrapperCursor/Makefile index f8749ff2514..0113e936bdc 100644 --- a/www/p5-Template-Iterator-AlzaboWrapperCursor/Makefile +++ b/www/p5-Template-Iterator-AlzaboWrapperCursor/Makefile @@ -14,9 +14,9 @@ COMMENT= Turns a Class-AlzaboWrapper-Cursor object into a TT2 iterator LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Class-AlzaboWrapper>=0:devel/p5-Class-AlzaboWrapper \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-AlzaboWrapper>=0:devel/p5-Class-AlzaboWrapper \ p5-Template-Toolkit>=2:www/p5-Template-Toolkit -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= modbuild diff --git a/www/p5-Template-Mustache/Makefile b/www/p5-Template-Mustache/Makefile index c3f588a5d2a..40af9012f83 100644 --- a/www/p5-Template-Mustache/Makefile +++ b/www/p5-Template-Mustache/Makefile @@ -12,8 +12,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= kurt.lidl@cello.com COMMENT= Perl version of the fabulous Mustache template language -BUILD_DEPENDS= p5-YAML-Syck>=1.15:textproc/p5-YAML-Syck -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-YAML-Syck>=1.15:textproc/p5-YAML-Syck TEST_DEPENDS:= p5-Test-Mini-Unit>=v1.0.3:devel/p5-Test-Mini-Unit USES= perl5 diff --git a/www/p5-Template-Plugin-Class/Makefile b/www/p5-Template-Plugin-Class/Makefile index 788c0eb6c55..626eda41db6 100644 --- a/www/p5-Template-Plugin-Class/Makefile +++ b/www/p5-Template-Plugin-Class/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Allow calling of class methods on arbitrary classes -BUILD_DEPENDS= p5-Template-Toolkit>=0:www/p5-Template-Toolkit -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Template-Toolkit>=0:www/p5-Template-Toolkit USES= perl5 USE_PERL5= configure diff --git a/www/p5-Template-Plugin-Clickable-Email/Makefile b/www/p5-Template-Plugin-Clickable-Email/Makefile index 1557167bdb1..d9b2d04ccc3 100644 --- a/www/p5-Template-Plugin-Clickable-Email/Makefile +++ b/www/p5-Template-Plugin-Clickable-Email/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= TT plugin to make email addresses into HTML links -BUILD_DEPENDS= p5-Email-Find>=0:mail/p5-Email-Find \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Email-Find>=0:mail/p5-Email-Find \ p5-Template-Toolkit>=0:www/p5-Template-Toolkit -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= modbuild diff --git a/www/p5-Template-Plugin-Clickable/Makefile b/www/p5-Template-Plugin-Clickable/Makefile index 46e5b627aaf..3728edb3abf 100644 --- a/www/p5-Template-Plugin-Clickable/Makefile +++ b/www/p5-Template-Plugin-Clickable/Makefile @@ -11,10 +11,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= TT plugin to make URLs clickable in HTML -BUILD_DEPENDS= p5-URI-Find>=0.13:textproc/p5-URI-Find \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-URI-Find>=0.13:textproc/p5-URI-Find \ p5-Template-Toolkit>=2.07:www/p5-Template-Toolkit \ p5-UNIVERSAL-require>=0:devel/p5-UNIVERSAL-require -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-Template-Plugin-Comma/Makefile b/www/p5-Template-Plugin-Comma/Makefile index a926e0ba309..2df1c6b28e8 100644 --- a/www/p5-Template-Plugin-Comma/Makefile +++ b/www/p5-Template-Plugin-Comma/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= kuriyama@FreeBSD.org COMMENT= TT Plugin to commify numbers -BUILD_DEPENDS= p5-Template-Toolkit>=0:www/p5-Template-Toolkit -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Template-Toolkit>=0:www/p5-Template-Toolkit USES= perl5 USE_PERL5= configure diff --git a/www/p5-Template-Plugin-FillInForm/Makefile b/www/p5-Template-Plugin-FillInForm/Makefile index 44ac98642c7..ef1c949789b 100644 --- a/www/p5-Template-Plugin-FillInForm/Makefile +++ b/www/p5-Template-Plugin-FillInForm/Makefile @@ -14,9 +14,9 @@ COMMENT= Template::Plugin::FillInForm - TT plugin for HTML::FillInForm LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-HTML-FillInForm>=0:www/p5-HTML-FillInForm \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTML-FillInForm>=0:www/p5-HTML-FillInForm \ p5-Template-Toolkit>=0:www/p5-Template-Toolkit -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/www/p5-Template-Plugin-JSON/Makefile b/www/p5-Template-Plugin-JSON/Makefile index cd77097ecfe..ba8cf615553 100644 --- a/www/p5-Template-Plugin-JSON/Makefile +++ b/www/p5-Template-Plugin-JSON/Makefile @@ -10,10 +10,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= kuriyama@FreeBSD.org COMMENT= Adds a .json vmethod for all TT values -BUILD_DEPENDS= p5-JSON>=2.12:converters/p5-JSON \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-JSON>=2.12:converters/p5-JSON \ p5-Moose>0:devel/p5-Moose \ p5-Template-Toolkit>=2.20:www/p5-Template-Toolkit -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/www/p5-Template-Plugin-JavaScript/Makefile b/www/p5-Template-Plugin-JavaScript/Makefile index 5211d2073f0..0b907d767fe 100644 --- a/www/p5-Template-Plugin-JavaScript/Makefile +++ b/www/p5-Template-Plugin-JavaScript/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Encodes text to be safe in JavaScript -BUILD_DEPENDS= p5-Template-Toolkit>=0:www/p5-Template-Toolkit -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Template-Toolkit>=0:www/p5-Template-Toolkit USES= perl5 USE_PERL5= configure diff --git a/www/p5-Template-Plugin-MP3/Makefile b/www/p5-Template-Plugin-MP3/Makefile index fa4d825a58d..de7ec6bdf51 100644 --- a/www/p5-Template-Plugin-MP3/Makefile +++ b/www/p5-Template-Plugin-MP3/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= TT Plugin that wraps around the MP3::Info module -BUILD_DEPENDS= p5-Template-Toolkit>=0:www/p5-Template-Toolkit \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Template-Toolkit>=0:www/p5-Template-Toolkit \ p5-MP3-Info>=0:audio/p5-MP3-Info -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-Template-Plugin-Markdown/Makefile b/www/p5-Template-Plugin-Markdown/Makefile index 3f4817e3881..05483317bb6 100644 --- a/www/p5-Template-Plugin-Markdown/Makefile +++ b/www/p5-Template-Plugin-Markdown/Makefile @@ -14,9 +14,9 @@ COMMENT= TT plugin for Text::Markdown LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Template-Toolkit>=0:www/p5-Template-Toolkit \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Template-Toolkit>=0:www/p5-Template-Toolkit \ p5-Text-Markdown>=0:textproc/p5-Text-Markdown -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-Template-Plugin-StripScripts/Makefile b/www/p5-Template-Plugin-StripScripts/Makefile index b9abb33e2b4..b082754f913 100644 --- a/www/p5-Template-Plugin-StripScripts/Makefile +++ b/www/p5-Template-Plugin-StripScripts/Makefile @@ -13,9 +13,9 @@ COMMENT= TT plugin to filter HTML against XSS LICENSE= MIT -BUILD_DEPENDS= p5-HTML-StripScripts-Parser>=0.99:www/p5-HTML-StripScripts-Parser \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTML-StripScripts-Parser>=0.99:www/p5-HTML-StripScripts-Parser \ p5-Template-Toolkit>=0:www/p5-Template-Toolkit -RUN_DEPENDS:= ${BUILD_DEPENDS} USE_PERL5= configure USES= perl5 diff --git a/www/p5-Template-Plugin-Subst/Makefile b/www/p5-Template-Plugin-Subst/Makefile index b0c74753469..7db4e5c2529 100644 --- a/www/p5-Template-Plugin-Subst/Makefile +++ b/www/p5-Template-Plugin-Subst/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= TT plugin for s/// functionality in templates -BUILD_DEPENDS= p5-Template-Toolkit>=0:www/p5-Template-Toolkit -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Template-Toolkit>=0:www/p5-Template-Toolkit USES= perl5 USE_PERL5= modbuild diff --git a/www/p5-Template-Provider-Encoding/Makefile b/www/p5-Template-Provider-Encoding/Makefile index 1c99d474de4..4fb71572e75 100644 --- a/www/p5-Template-Provider-Encoding/Makefile +++ b/www/p5-Template-Provider-Encoding/Makefile @@ -14,8 +14,8 @@ COMMENT= Explicitly declare encodings of your templates LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Template-Toolkit>=0:www/p5-Template-Toolkit -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Template-Toolkit>=0:www/p5-Template-Toolkit NO_ARCH= yes USE_PERL5= configure diff --git a/www/p5-Template-Provider-FromDATA/Makefile b/www/p5-Template-Provider-FromDATA/Makefile index 66a234d0700..5527139a580 100644 --- a/www/p5-Template-Provider-FromDATA/Makefile +++ b/www/p5-Template-Provider-FromDATA/Makefile @@ -14,9 +14,9 @@ COMMENT= Load templates from your __DATA__ section LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Template-Toolkit>=2.15:www/p5-Template-Toolkit \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Template-Toolkit>=2.15:www/p5-Template-Toolkit \ p5-Class-Accessor>0:devel/p5-Class-Accessor -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-Template-Simple/Makefile b/www/p5-Template-Simple/Makefile index 67a814c37b3..27ad22b65fb 100644 --- a/www/p5-Template-Simple/Makefile +++ b/www/p5-Template-Simple/Makefile @@ -13,8 +13,8 @@ COMMENT= Fast templating module LICENSE= ART20 -BUILD_DEPENDS= p5-File-Slurp>=0:devel/p5-File-Slurp -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-File-Slurp>=0:devel/p5-File-Slurp USES= perl5 USE_PERL5= configure diff --git a/www/p5-Template-Timer/Makefile b/www/p5-Template-Timer/Makefile index 934e3a25520..3d9ab7fdc95 100644 --- a/www/p5-Template-Timer/Makefile +++ b/www/p5-Template-Timer/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Rudimentary profiling for Template Toolkit -BUILD_DEPENDS= p5-Template-Toolkit>=0:www/p5-Template-Toolkit -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Template-Toolkit>=0:www/p5-Template-Toolkit USES= perl5 USE_PERL5= configure diff --git a/www/p5-Template-Toolkit-Simple/Makefile b/www/p5-Template-Toolkit-Simple/Makefile index 3d6a8e4a80e..4e5603de260 100644 --- a/www/p5-Template-Toolkit-Simple/Makefile +++ b/www/p5-Template-Toolkit-Simple/Makefile @@ -13,8 +13,8 @@ COMMENT= Simple Interface to Template Toolkit LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Template-Toolkit>=0:www/p5-Template-Toolkit -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Template-Toolkit>=0:www/p5-Template-Toolkit USES= perl5 USE_PERL5= configure diff --git a/www/p5-Template-Toolkit/Makefile b/www/p5-Template-Toolkit/Makefile index 8c8abb65210..cffcd6a7ff8 100644 --- a/www/p5-Template-Toolkit/Makefile +++ b/www/p5-Template-Toolkit/Makefile @@ -14,8 +14,8 @@ COMMENT= Extensive Toolkit for template processing LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-AppConfig>=1.56:devel/p5-AppConfig -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-AppConfig>=1.56:devel/p5-AppConfig TEST_DEPENDS= p5-Image-Size>=0:graphics/p5-Image-Size \ p5-Pod-POM>=0:textproc/p5-Pod-POM diff --git a/www/p5-Test-HTTP-Server-Simple/Makefile b/www/p5-Test-HTTP-Server-Simple/Makefile index 65c1c47fb7d..51bda6e39e2 100644 --- a/www/p5-Test-HTTP-Server-Simple/Makefile +++ b/www/p5-Test-HTTP-Server-Simple/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Test::More functions for HTTP::Server::Simple -BUILD_DEPENDS= p5-HTTP-Server-Simple>=0:www/p5-HTTP-Server-Simple \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTTP-Server-Simple>=0:www/p5-HTTP-Server-Simple \ p5-URI>0:net/p5-URI -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-Test-HTTP/Makefile b/www/p5-Test-HTTP/Makefile index 795904b81a6..d07a5264e10 100644 --- a/www/p5-Test-HTTP/Makefile +++ b/www/p5-Test-HTTP/Makefile @@ -14,9 +14,9 @@ COMMENT= Test HTTP interactions LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Class-Field>=0:devel/p5-Class-Field \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Field>=0:devel/p5-Class-Field \ p5-libwww>=5.827:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-Test-LWP-UserAgent/Makefile b/www/p5-Test-LWP-UserAgent/Makefile index 3b8b630ca7a..94649adf854 100644 --- a/www/p5-Test-LWP-UserAgent/Makefile +++ b/www/p5-Test-LWP-UserAgent/Makefile @@ -12,13 +12,13 @@ COMMENT= LWP::UserAgent suitable for simulating and testing network calls LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-libwww>=0:www/p5-libwww \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-libwww>=0:www/p5-libwww \ p5-URI>=0:net/p5-URI \ p5-namespace-clean>=0:devel/p5-namespace-clean \ p5-HTTP-Date>=0:www/p5-HTTP-Date \ p5-Safe-Isa>=0:devel/p5-Safe-Isa \ p5-Try-Tiny>=0:lang/p5-Try-Tiny -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Plack>=0:www/p5-Plack \ p5-Path-Tiny>=0:devel/p5-Path-Tiny \ p5-Test-Deep>=0:devel/p5-Test-Deep \ diff --git a/www/p5-Test-Nginx/Makefile b/www/p5-Test-Nginx/Makefile index d17910441af..aea89517120 100644 --- a/www/p5-Test-Nginx/Makefile +++ b/www/p5-Test-Nginx/Makefile @@ -13,12 +13,12 @@ COMMENT= Testing modules for Nginx C module development LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Test-LongString>=0:devel/p5-Test-LongString \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Test-LongString>=0:devel/p5-Test-LongString \ p5-Test-Base>=0:devel/p5-Test-Base \ p5-List-MoreUtils>=0:lang/p5-List-MoreUtils \ p5-Text-Diff>=0:textproc/p5-Text-Diff \ p5-libwww>=6:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-TestGen4Web-Runner/Makefile b/www/p5-TestGen4Web-Runner/Makefile index c25512c0491..5082304a105 100644 --- a/www/p5-TestGen4Web-Runner/Makefile +++ b/www/p5-TestGen4Web-Runner/Makefile @@ -11,10 +11,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= eg@fbsd.lt COMMENT= Perl module to replay files recorded with TestGen4Web -BUILD_DEPENDS= p5-libwww>=0:www/p5-libwww \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-libwww>=0:www/p5-libwww \ p5-URI>=0:net/p5-URI \ p5-XML-Simple>=0:textproc/p5-XML-Simple -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-Text-MultiMarkdown-ApacheHandler/Makefile b/www/p5-Text-MultiMarkdown-ApacheHandler/Makefile index 0b091709986..a30291fdb55 100644 --- a/www/p5-Text-MultiMarkdown-ApacheHandler/Makefile +++ b/www/p5-Text-MultiMarkdown-ApacheHandler/Makefile @@ -11,10 +11,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Module for processing files with MultiMarkdown syntax for Apache -BUILD_DEPENDS= p5-Text-MultiMarkdown>=0:textproc/p5-Text-MultiMarkdown \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Text-MultiMarkdown>=0:textproc/p5-Text-MultiMarkdown \ p5-Text-Typography>=0:textproc/p5-Text-Typography \ ${APACHE_PKGNAMEPREFIX}mod_perl2>=2.0.5:www/mod_perl2 -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= apache:run,2.2+ perl5 USE_PERL5= configure diff --git a/www/p5-Tie-TinyURL/Makefile b/www/p5-Tie-TinyURL/Makefile index 03ade9c2a58..aa2e0397a57 100644 --- a/www/p5-Tie-TinyURL/Makefile +++ b/www/p5-Tie-TinyURL/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Tied interface to TinyURL.com -BUILD_DEPENDS= p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-libwww>=0:www/p5-libwww USES= perl5 USE_PERL5= modbuild diff --git a/www/p5-Toader/Makefile b/www/p5-Toader/Makefile index 05cc6119385..7e42b60c0ed 100644 --- a/www/p5-Toader/Makefile +++ b/www/p5-Toader/Makefile @@ -15,7 +15,8 @@ COMMENT= CMS meant to be used from the terminal and integrated into a VCS for re LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Config-Tiny>=2.14:devel/p5-Config-Tiny \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Config-Tiny>=2.14:devel/p5-Config-Tiny \ p5-Email-MIME>=1.911:mail/p5-Email-MIME \ p5-File-MimeInfo>=0.16:devel/p5-File-MimeInfo \ p5-Error-Helper>=1.0.0:devel/p5-Error-Helper \ @@ -29,7 +30,6 @@ BUILD_DEPENDS= p5-Config-Tiny>=2.14:devel/p5-Config-Tiny \ p5-Text-Tags>=0.04:textproc/p5-Text-Tags \ p5-Pod-WikiDoc>=0.18:textproc/p5-Pod-WikiDoc \ p5-Script-isAperlScript>=1.0.0:devel/p5-Script-isAperlScript -RUN_DEPENDS:= ${BUILD_DEPENDS} OPTIONS_DEFINE= DOCS diff --git a/www/p5-Toadfarm/Makefile b/www/p5-Toadfarm/Makefile index 9b6a5a75251..fe4a582f79c 100644 --- a/www/p5-Toadfarm/Makefile +++ b/www/p5-Toadfarm/Makefile @@ -13,9 +13,9 @@ COMMENT= One Mojolicious app to rule them all LICENSE= ART20 -BUILD_DEPENDS= p5-File-Which>=1.00:sysutils/p5-File-Which \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-File-Which>=1.00:sysutils/p5-File-Which \ p5-Mojolicious>=7.18:www/p5-Mojolicious -RUN_DEPENDS:= ${BUILD_DEPENDS} PORTSCOUT= skipv:0.0801,0.1001,0.1301,0.1601,0.1701,0.2601,0.2602,0.4301 diff --git a/www/p5-URI-Fetch/Makefile b/www/p5-URI-Fetch/Makefile index 1c947e6f339..464b2d492a5 100644 --- a/www/p5-URI-Fetch/Makefile +++ b/www/p5-URI-Fetch/Makefile @@ -14,10 +14,10 @@ COMMENT= Smart URI fetching/caching LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Class-ErrorHandler>=0:devel/p5-Class-ErrorHandler \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-ErrorHandler>=0:devel/p5-Class-ErrorHandler \ p5-URI>=0:net/p5-URI \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-RequiresInternet>=0.05:devel/p5-Test-RequiresInternet OPTIONS_DEFINE= CACHE diff --git a/www/p5-URL-Encode/Makefile b/www/p5-URL-Encode/Makefile index 0d79bc6f48c..9eb79a9df75 100644 --- a/www/p5-URL-Encode/Makefile +++ b/www/p5-URL-Encode/Makefile @@ -14,11 +14,13 @@ COMMENT= Encoding and decoding of application/x-www-form-urlencoded encoding LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -OPTIONS_DEFINE= XS -XS_BUILD_DEPENDS= p5-URL-Encode-XS>=0:www/p5-URL-Encode-XS -XS_RUN_DEPENDS= ${XS_BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} USES= perl5 USE_PERL5= configure +OPTIONS_DEFINE= XS + +XS_RUN_DEPENDS= p5-URL-Encode-XS>=0:www/p5-URL-Encode-XS + .include diff --git a/www/p5-W3C-LinkChecker/Makefile b/www/p5-W3C-LinkChecker/Makefile index f5eb5f8fa3e..ef66ac30319 100644 --- a/www/p5-W3C-LinkChecker/Makefile +++ b/www/p5-W3C-LinkChecker/Makefile @@ -12,14 +12,14 @@ PKGNAMEPREFIX= p5- MAINTAINER= jadawin@FreeBSD.org COMMENT= Checks the validity of links in an HTML or XHTML document -BUILD_DEPENDS= p5-CSS-DOM>=0.09:www/p5-CSS-DOM \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-CSS-DOM>=0.09:www/p5-CSS-DOM \ p5-Config-General>=0:devel/p5-Config-General \ p5-HTML-Parser>=0:www/p5-HTML-Parser \ p5-Net-IP>=0:net-mgmt/p5-Net-IP \ p5-Term-ReadKey>=0:devel/p5-Term-ReadKey \ p5-URI>=0:net/p5-URI \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-W3C-LogValidator/Makefile b/www/p5-W3C-LogValidator/Makefile index a0865e63318..dba2515fa19 100644 --- a/www/p5-W3C-LogValidator/Makefile +++ b/www/p5-W3C-LogValidator/Makefile @@ -12,14 +12,14 @@ PKGNAMEPREFIX= p5- MAINTAINER= toni.viemero@iki.fi COMMENT= Comprehensive validation tool for webmasters and web developers -BUILD_DEPENDS= p5-libwww>=0:www/p5-libwww \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-libwww>=0:www/p5-libwww \ p5-URI>=0:net/p5-URI \ p5-Config-General>=0:devel/p5-Config-General \ p5-Mail-Sendmail>=0:mail/p5-Mail-Sendmail \ p5-WebService-Validator-CSS-W3C>=0:www/p5-webservice-validator-css-w3c \ p5-WebService-Validator-HTML-W3C>=0:www/p5-webservice-validator-html-w3c \ ${LOCALBASE}/bin/checklink:www/p5-W3C-LinkChecker -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-WWW-AtMovies-TV/Makefile b/www/p5-WWW-AtMovies-TV/Makefile index 75aceae94c3..17c941f6212 100644 --- a/www/p5-WWW-AtMovies-TV/Makefile +++ b/www/p5-WWW-AtMovies-TV/Makefile @@ -13,10 +13,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Retrieve TV information from http://www.atmovies.com.tw/ -BUILD_DEPENDS= p5-HTML-TableExtract>=2.1:www/p5-HTML-TableExtract \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTML-TableExtract>=2.1:www/p5-HTML-TableExtract \ p5-Moose>=0.55:devel/p5-Moose \ p5-WWW-Mechanize>=1.34:www/p5-WWW-Mechanize -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-WWW-Babelfish/Makefile b/www/p5-WWW-Babelfish/Makefile index 3f427a6cfc9..39ff22dcfa7 100644 --- a/www/p5-WWW-Babelfish/Makefile +++ b/www/p5-WWW-Babelfish/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Perl interface to obtain translations from the babelfish server -BUILD_DEPENDS= p5-libwww>=0:www/p5-libwww \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-libwww>=0:www/p5-libwww \ p5-IO-String>=0:devel/p5-IO-String -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-WWW-Baseball-NPB/Makefile b/www/p5-WWW-Baseball-NPB/Makefile index 420e7dd8d70..936c493f7d6 100644 --- a/www/p5-WWW-Baseball-NPB/Makefile +++ b/www/p5-WWW-Baseball-NPB/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Fetches Japanese baseball games information -BUILD_DEPENDS= p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-libwww>=0:www/p5-libwww USES= perl5 USE_PERL5= configure diff --git a/www/p5-WWW-Comic/Makefile b/www/p5-WWW-Comic/Makefile index 6b4ca0275e1..110a7991f05 100644 --- a/www/p5-WWW-Comic/Makefile +++ b/www/p5-WWW-Comic/Makefile @@ -13,9 +13,9 @@ COMMENT= Retrieve comic strip images LICENSE= APACHE20 -BUILD_DEPENDS= p5-WWW-Dilbert>=1.19:www/p5-WWW-Dilbert \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-WWW-Dilbert>=1.19:www/p5-WWW-Dilbert \ p5-WWW-VenusEnvy>=1.10:www/p5-WWW-VenusEnvy -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= modbuild diff --git a/www/p5-WWW-Contact/Makefile b/www/p5-WWW-Contact/Makefile index 04f13b0391b..e731faf0385 100644 --- a/www/p5-WWW-Contact/Makefile +++ b/www/p5-WWW-Contact/Makefile @@ -15,7 +15,8 @@ COMMENT= Contact importer for all the major email systems LICENSE= ART20 GPLv1 LICENSE_COMB= dual -BUILD_DEPENDS= p5-Crypt-SSLeay>=0:security/p5-Crypt-SSLeay \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Crypt-SSLeay>=0:security/p5-Crypt-SSLeay \ p5-HTML-Parser>=0:www/p5-HTML-Parser \ p5-HTML-TokeParser-Simple>=0:www/p5-HTML-TokeParser-Simple \ p5-HTML-Tree>=0:www/p5-HTML-Tree \ @@ -26,7 +27,6 @@ BUILD_DEPENDS= p5-Crypt-SSLeay>=0:security/p5-Crypt-SSLeay \ p5-Text-vCard>=0:textproc/p5-Text-vCard \ p5-WWW-Mechanize>=0:www/p5-WWW-Mechanize \ p5-WWW-Mechanize-GZip>=0:www/p5-WWW-Mechanize-GZip -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-WWW-DHL/Makefile b/www/p5-WWW-DHL/Makefile index e8fd2577d6d..b615c4a3838 100644 --- a/www/p5-WWW-DHL/Makefile +++ b/www/p5-WWW-DHL/Makefile @@ -14,10 +14,10 @@ COMMENT= Perl module for the DHL online tracking service LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-HTML-Parser>=0:www/p5-HTML-Parser \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTML-Parser>=0:www/p5-HTML-Parser \ p5-HTML-TokeParser-Simple>=0:www/p5-HTML-TokeParser-Simple \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-WWW-Dilbert/Makefile b/www/p5-WWW-Dilbert/Makefile index 3d7e69adde5..ceaf438ba5b 100644 --- a/www/p5-WWW-Dilbert/Makefile +++ b/www/p5-WWW-Dilbert/Makefile @@ -12,8 +12,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Dilbert of the day comic strip archive and retrieval module -BUILD_DEPENDS= p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-libwww>=0:www/p5-libwww USES= perl5 USE_PERL5= modbuild diff --git a/www/p5-WWW-Facebook-API/Makefile b/www/p5-WWW-Facebook-API/Makefile index a16b367f23a..9eda9f68637 100644 --- a/www/p5-WWW-Facebook-API/Makefile +++ b/www/p5-WWW-Facebook-API/Makefile @@ -14,11 +14,11 @@ COMMENT= Facebook API implementation in Perl LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Crypt-SSLeay>=0:security/p5-Crypt-SSLeay \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Crypt-SSLeay>=0:security/p5-Crypt-SSLeay \ p5-JSON-Any>=0:converters/p5-JSON-Any \ p5-Readonly>=0:devel/p5-Readonly \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-WWW-FreeProxy/Makefile b/www/p5-WWW-FreeProxy/Makefile index 45e206eeeb9..060dfba833d 100644 --- a/www/p5-WWW-FreeProxy/Makefile +++ b/www/p5-WWW-FreeProxy/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= rodrigo@FreeBSD.org COMMENT= Fetch proxies from free proxy lists -BUILD_DEPENDS= p5-YAML>=0:textproc/p5-YAML -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-YAML>=0:textproc/p5-YAML USES= perl5 USE_PERL5= configure diff --git a/www/p5-WWW-GitHub-Gist/Makefile b/www/p5-WWW-GitHub-Gist/Makefile index 489857ac0e3..0213208cc1f 100644 --- a/www/p5-WWW-GitHub-Gist/Makefile +++ b/www/p5-WWW-GitHub-Gist/Makefile @@ -14,9 +14,9 @@ COMMENT= Perl interface to Gist LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-JSON>=0:converters/p5-JSON \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-JSON>=0:converters/p5-JSON \ p5-Moo>=0:devel/p5-Moo -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-WWW-Google-Calculator/Makefile b/www/p5-WWW-Google-Calculator/Makefile index 372ef0f7a3a..4bfccadd4d9 100644 --- a/www/p5-WWW-Google-Calculator/Makefile +++ b/www/p5-WWW-Google-Calculator/Makefile @@ -14,11 +14,11 @@ COMMENT= This module provide simple interface for Google calculator LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Class-Accessor>=0:devel/p5-Class-Accessor \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Accessor>=0:devel/p5-Class-Accessor \ p5-HTML-Parser>=0:www/p5-HTML-Parser \ p5-URI>=0:net/p5-URI \ p5-WWW-Mechanize>=0:www/p5-WWW-Mechanize -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-WWW-Google-News-TW/Makefile b/www/p5-WWW-Google-News-TW/Makefile index 281566a005c..4644244153e 100644 --- a/www/p5-WWW-Google-News-TW/Makefile +++ b/www/p5-WWW-Google-News-TW/Makefile @@ -11,10 +11,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= snowfly@yuntech.edu.tw COMMENT= Access to Google's Taiwan News Service (Not Usenet) -BUILD_DEPENDS= p5-libwww>=0:www/p5-libwww \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-libwww>=0:www/p5-libwww \ p5-URI>=0:net/p5-URI \ p5-YAML>=0:textproc/p5-YAML -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-WWW-Google-News/Makefile b/www/p5-WWW-Google-News/Makefile index 1dd4aee3438..45b9fb9e418 100644 --- a/www/p5-WWW-Google-News/Makefile +++ b/www/p5-WWW-Google-News/Makefile @@ -11,10 +11,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= snowfly@yuntech.edu.tw COMMENT= Access to Google's News Service (Not Usenet) -BUILD_DEPENDS= p5-URI>=0:net/p5-URI \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-URI>=0:net/p5-URI \ p5-XML-Atom>=0:textproc/p5-XML-Atom \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-WWW-Google-PageRank/Makefile b/www/p5-WWW-Google-PageRank/Makefile index 10df7e8cdb9..d73412bd502 100644 --- a/www/p5-WWW-Google-PageRank/Makefile +++ b/www/p5-WWW-Google-PageRank/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= snowfly@yuntech.edu.tw COMMENT= Perl interface for querying Google pagerank -BUILD_DEPENDS= p5-URI>=0:net/p5-URI \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-URI>=0:net/p5-URI \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-WWW-Google-Video/Makefile b/www/p5-WWW-Google-Video/Makefile index 88a121dc3ea..e06f4057886 100644 --- a/www/p5-WWW-Google-Video/Makefile +++ b/www/p5-WWW-Google-Video/Makefile @@ -14,8 +14,8 @@ COMMENT= Interface to fetch the Google Video Information LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-libwww>=0:www/p5-libwww USES= perl5 USE_PERL5= configure diff --git a/www/p5-WWW-HatenaDiary/Makefile b/www/p5-WWW-HatenaDiary/Makefile index e25781ab0b4..aa662c369a0 100644 --- a/www/p5-WWW-HatenaDiary/Makefile +++ b/www/p5-WWW-HatenaDiary/Makefile @@ -11,12 +11,12 @@ PKGNAMEPREFIX= p5- MAINTAINER= markun@onohara.to COMMENT= CRUD interface to Hatena::Diary -BUILD_DEPENDS= p5-YAML-Syck>=0:textproc/p5-YAML-Syck \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-YAML-Syck>=0:textproc/p5-YAML-Syck \ p5-URI>=0:net/p5-URI \ p5-WWW-HatenaLogin>=0.02:www/p5-WWW-HatenaLogin \ p5-WWW-Mechanize>=0:www/p5-WWW-Mechanize \ p5-Web-Scraper>=0:www/p5-Web-Scraper -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-WWW-HatenaLogin/Makefile b/www/p5-WWW-HatenaLogin/Makefile index a6593bc302e..af155ea688f 100644 --- a/www/p5-WWW-HatenaLogin/Makefile +++ b/www/p5-WWW-HatenaLogin/Makefile @@ -11,10 +11,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= markun@onohara.to COMMENT= Login/Logout interface to Hatena -BUILD_DEPENDS= p5-Crypt-SSLeay>=0:security/p5-Crypt-SSLeay \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Crypt-SSLeay>=0:security/p5-Crypt-SSLeay \ p5-URI>=0:net/p5-URI \ p5-WWW-Mechanize>=0:www/p5-WWW-Mechanize -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-WWW-HatenaStar/Makefile b/www/p5-WWW-HatenaStar/Makefile index e3a721efe69..eaccb17dddb 100644 --- a/www/p5-WWW-HatenaStar/Makefile +++ b/www/p5-WWW-HatenaStar/Makefile @@ -14,12 +14,12 @@ COMMENT= Perl interface to Hatena::Star LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Class-Accessor>=0:devel/p5-Class-Accessor \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Accessor>=0:devel/p5-Class-Accessor \ p5-YAML-Syck>=0:textproc/p5-YAML-Syck \ p5-URI>=0:net/p5-URI \ p5-WWW-HatenaLogin>=0:www/p5-WWW-HatenaLogin \ p5-WWW-Mechanize>=0:www/p5-WWW-Mechanize -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/www/p5-WWW-Instapaper-Client/Makefile b/www/p5-WWW-Instapaper-Client/Makefile index a7f7f8fc7eb..8d49d56d553 100644 --- a/www/p5-WWW-Instapaper-Client/Makefile +++ b/www/p5-WWW-Instapaper-Client/Makefile @@ -11,10 +11,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= markun@onohara.to COMMENT= Implementation of the Instapaper client API -BUILD_DEPENDS= p5-Class-Base>=0:devel/p5-Class-Base \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Base>=0:devel/p5-Class-Base \ p5-Crypt-SSLeay>=0:security/p5-Crypt-SSLeay \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= modbuild diff --git a/www/p5-WWW-LongURL/Makefile b/www/p5-WWW-LongURL/Makefile index 62b55cdef92..cd079830c3a 100644 --- a/www/p5-WWW-LongURL/Makefile +++ b/www/p5-WWW-LongURL/Makefile @@ -14,11 +14,11 @@ COMMENT= Perl interface to the LongURL API LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-JSON-Any>0:converters/p5-JSON-Any \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-JSON-Any>0:converters/p5-JSON-Any \ p5-URI>0:net/p5-URI \ p5-Class-Accessor>0:devel/p5-Class-Accessor \ p5-libwww>0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-LWP-Online>0:www/p5-LWP-Online diff --git a/www/p5-WWW-Mechanize-DecodedContent/Makefile b/www/p5-WWW-Mechanize-DecodedContent/Makefile index 59bfb8959d4..acb13e5e9fc 100644 --- a/www/p5-WWW-Mechanize-DecodedContent/Makefile +++ b/www/p5-WWW-Mechanize-DecodedContent/Makefile @@ -12,9 +12,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= markun@onohara.to COMMENT= Decode Mech content using its HTTP response encoding -BUILD_DEPENDS= p5-WWW-Mechanize>=0:www/p5-WWW-Mechanize \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-WWW-Mechanize>=0:www/p5-WWW-Mechanize \ p5-HTTP-Response-Encoding>=0:www/p5-HTTP-Response-Encoding -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-WWW-Mechanize-FormFiller/Makefile b/www/p5-WWW-Mechanize-FormFiller/Makefile index 0029ca18738..0b11c7589bb 100644 --- a/www/p5-WWW-Mechanize-FormFiller/Makefile +++ b/www/p5-WWW-Mechanize-FormFiller/Makefile @@ -13,11 +13,11 @@ COMMENT= Perl framework to automate HTML forms LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Data-Random>=0.05:devel/p5-Data-Random \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Data-Random>=0.05:devel/p5-Data-Random \ p5-HTML-Form>=1.038:www/p5-HTML-Form \ p5-HTML-Tagset>=0:www/p5-HTML-Tagset \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/www/p5-WWW-Mechanize-GZip/Makefile b/www/p5-WWW-Mechanize-GZip/Makefile index 10b7413b03e..5953c12fa22 100644 --- a/www/p5-WWW-Mechanize-GZip/Makefile +++ b/www/p5-WWW-Mechanize-GZip/Makefile @@ -13,8 +13,8 @@ COMMENT= Use WWW::Mechanize by requesting gzip-compression from the webserver LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-WWW-Mechanize>=0:www/p5-WWW-Mechanize -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-WWW-Mechanize>=0:www/p5-WWW-Mechanize USES= perl5 USE_PERL5= configure diff --git a/www/p5-WWW-Mechanize-PhantomJS/Makefile b/www/p5-WWW-Mechanize-PhantomJS/Makefile index 239c949cbde..3e99ff46143 100644 --- a/www/p5-WWW-Mechanize-PhantomJS/Makefile +++ b/www/p5-WWW-Mechanize-PhantomJS/Makefile @@ -11,12 +11,12 @@ COMMENT= Automate interaction with javascript websites LICENSE= ARTPERL10 -BUILD_DEPENDS= phantomjs:lang/phantomjs \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= phantomjs:lang/phantomjs \ p5-WWW-Mechanize>=1.73:www/p5-WWW-Mechanize \ p5-Object-Import>=1.004:devel/p5-Object-Import \ p5-Selenium-Remote-Driver>=0.2202:www/p5-Selenium-Remote-Driver \ p5-HTML-Selector-XPath>=0.14:www/p5-HTML-Selector-XPath -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-HTTP-Daemon>=6.0:www/p5-HTTP-Daemon \ p5-libwww>=5.829:www/p5-libwww diff --git a/www/p5-WWW-Mechanize-Pluggable/Makefile b/www/p5-WWW-Mechanize-Pluggable/Makefile index 0bf829edf0c..1bd5572de59 100644 --- a/www/p5-WWW-Mechanize-Pluggable/Makefile +++ b/www/p5-WWW-Mechanize-Pluggable/Makefile @@ -11,7 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Custmomize WWW::Mechanize via plugins -BUILD_DEPENDS= p5-Data-Dump-Streamer>=0:devel/p5-Data-Dump-Streamer \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Data-Dump-Streamer>=0:devel/p5-Data-Dump-Streamer \ p5-HTML-Form>=1.038:www/p5-HTML-Form \ p5-HTML-Parser>=2.28:www/p5-HTML-Parser \ p5-HTTP-Cookies>=0:www/p5-HTTP-Cookies \ @@ -20,7 +21,6 @@ BUILD_DEPENDS= p5-Data-Dump-Streamer>=0:devel/p5-Data-Dump-Streamer \ p5-URI>=1.25:net/p5-URI \ p5-WWW-Mechanize>=1.66:www/p5-WWW-Mechanize \ p5-libwww>=6:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Exception>=0.2:devel/p5-Test-Exception USES= perl5 diff --git a/www/p5-WWW-Mechanize-Plugin-phpBB/Makefile b/www/p5-WWW-Mechanize-Plugin-phpBB/Makefile index 8e4dcb5dadd..12e17acc7db 100644 --- a/www/p5-WWW-Mechanize-Plugin-phpBB/Makefile +++ b/www/p5-WWW-Mechanize-Plugin-phpBB/Makefile @@ -11,12 +11,12 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Screen scraper for phpBB installations -BUILD_DEPENDS= p5-WWW-Mechanize>=0:www/p5-WWW-Mechanize \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-WWW-Mechanize>=0:www/p5-WWW-Mechanize \ p5-WWW-Mechanize-Pluggable>=0.10:www/p5-WWW-Mechanize-Pluggable \ p5-HTML-Tree>=0:www/p5-HTML-Tree \ p5-Log-Log4perl>=1.0:devel/p5-Log-Log4perl \ p5-Class-Accessor>=0.19:devel/p5-Class-Accessor -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-WWW-Mechanize-Shell/Makefile b/www/p5-WWW-Mechanize-Shell/Makefile index 0c1ee0cc333..52f7cf604af 100644 --- a/www/p5-WWW-Mechanize-Shell/Makefile +++ b/www/p5-WWW-Mechanize-Shell/Makefile @@ -14,7 +14,8 @@ COMMENT= Interactive shell for www/p5-WWW-Mechanize LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-HTML-Display>=0:www/p5-HTML-Display \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTML-Display>=0:www/p5-HTML-Display \ p5-HTML-TokeParser-Simple>=2.0:www/p5-HTML-TokeParser-Simple \ p5-Hook-LexWrap>=0.20:devel/p5-Hook-LexWrap \ p5-Term-Shell>=0.02:devel/p5-Term-Shell \ @@ -22,7 +23,6 @@ BUILD_DEPENDS= p5-HTML-Display>=0:www/p5-HTML-Display \ p5-WWW-Mechanize>=1.20:www/p5-WWW-Mechanize \ p5-WWW-Mechanize-FormFiller>=0.05:www/p5-WWW-Mechanize-FormFiller \ p5-libwww>=5.69:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-CGI>=0:www/p5-CGI OPTIONS_DEFINE= EXAMPLES diff --git a/www/p5-WWW-Mechanize-SpamCop/Makefile b/www/p5-WWW-Mechanize-SpamCop/Makefile index 985c034925e..b916e74c35a 100644 --- a/www/p5-WWW-Mechanize-SpamCop/Makefile +++ b/www/p5-WWW-Mechanize-SpamCop/Makefile @@ -14,8 +14,8 @@ COMMENT= SpamCop reporting automation LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-WWW-Mechanize>=0:www/p5-WWW-Mechanize -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-WWW-Mechanize>=0:www/p5-WWW-Mechanize NO_ARCH= yes USE_PERL5= configure diff --git a/www/p5-WWW-Mechanize-TreeBuilder/Makefile b/www/p5-WWW-Mechanize-TreeBuilder/Makefile index 8d596a1d3b1..bb7ecd01425 100644 --- a/www/p5-WWW-Mechanize-TreeBuilder/Makefile +++ b/www/p5-WWW-Mechanize-TreeBuilder/Makefile @@ -13,10 +13,10 @@ COMMENT= Combine WWW::Mechanize and HTML::TreeBuilder LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-MooseX-Role-Parameterized>=0:devel/p5-MooseX-Role-Parameterized \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-MooseX-Role-Parameterized>=0:devel/p5-MooseX-Role-Parameterized \ p5-HTML-Tree>=0:www/p5-HTML-Tree \ p5-Moose>=2.1200:devel/p5-Moose -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Params-Util>0:devel/p5-Params-Util \ p5-Test-WWW-Mechanize>0:devel/p5-Test-WWW-Mechanize diff --git a/www/p5-WWW-Mechanize/Makefile b/www/p5-WWW-Mechanize/Makefile index 51e4be0b791..9586c7d0552 100644 --- a/www/p5-WWW-Mechanize/Makefile +++ b/www/p5-WWW-Mechanize/Makefile @@ -13,14 +13,14 @@ COMMENT= This module is to help you automate interaction with a website LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-CGI>=4.08:www/p5-CGI \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-CGI>=4.08:www/p5-CGI \ p5-HTML-Form>=6:www/p5-HTML-Form \ p5-HTML-Parser>=3.33:www/p5-HTML-Parser \ p5-HTML-Tree>=0:www/p5-HTML-Tree \ p5-HTTP-Server-Simple>=0.35:www/p5-HTTP-Server-Simple \ p5-URI>=0:net/p5-URI \ p5-libwww>=5.829:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Deep>=0:devel/p5-Test-Deep \ p5-Test-Exception>=0:devel/p5-Test-Exception \ p5-Test-Fatal>=0:devel/p5-Test-Fatal \ diff --git a/www/p5-WWW-Mediawiki-Client/Makefile b/www/p5-WWW-Mediawiki-Client/Makefile index 233456b0016..654d1e35e0c 100644 --- a/www/p5-WWW-Mediawiki-Client/Makefile +++ b/www/p5-WWW-Mediawiki-Client/Makefile @@ -11,13 +11,13 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Very simple cvs-like interface for Mediawiki websites -BUILD_DEPENDS= p5-VCS-Lite>0:devel/p5-VCS-Lite \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-VCS-Lite>0:devel/p5-VCS-Lite \ p5-libwww>0:www/p5-libwww \ p5-HTML-Parser>0:www/p5-HTML-Parser \ p5-XML-LibXML>0:textproc/p5-XML-LibXML \ p5-URI>=1.31:net/p5-URI \ p5-Exception-Class>0:devel/p5-Exception-Class -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Differences>0:devel/p5-Test-Differences USES= perl5 diff --git a/www/p5-WWW-Mixi/Makefile b/www/p5-WWW-Mixi/Makefile index 9019ee486ac..014528bd3e7 100644 --- a/www/p5-WWW-Mixi/Makefile +++ b/www/p5-WWW-Mixi/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Perl module of Automated interface to the Mixi -BUILD_DEPENDS= p5-libwww>=0:www/p5-libwww \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-libwww>=0:www/p5-libwww \ ja-p5-Jcode>=0:japanese/p5-Jcode -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-WWW-Myspace/Makefile b/www/p5-WWW-Myspace/Makefile index cfe7f4f7df0..1990b772283 100644 --- a/www/p5-WWW-Myspace/Makefile +++ b/www/p5-WWW-Myspace/Makefile @@ -11,7 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Access MySpace.com profile information from Perl -BUILD_DEPENDS= p5-Config-General>=0:devel/p5-Config-General \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Config-General>=0:devel/p5-Config-General \ p5-Contextual-Return>=0:devel/p5-Contextual-Return \ p5-Params-Validate>=0:devel/p5-Params-Validate \ p5-Spiffy>=0.24:devel/p5-Spiffy \ @@ -20,7 +21,6 @@ BUILD_DEPENDS= p5-Config-General>=0:devel/p5-Config-General \ p5-WWW-Mechanize>=1.2:www/p5-WWW-Mechanize \ p5-YAML>=0.39:textproc/p5-YAML \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-WWW-NicoVideo-Download/Makefile b/www/p5-WWW-NicoVideo-Download/Makefile index b2f5ba6b934..5de3b0d8b2a 100644 --- a/www/p5-WWW-NicoVideo-Download/Makefile +++ b/www/p5-WWW-NicoVideo-Download/Makefile @@ -14,11 +14,11 @@ COMMENT= Download FLV/MP4/SWF files from nicovideo.jp LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Any-Moose>=0:devel/p5-Any-Moose \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Any-Moose>=0:devel/p5-Any-Moose \ p5-CGI-Simple>=0:www/p5-CGI-Simple \ p5-Crypt-SSLeay>=0:security/p5-Crypt-SSLeay \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-WWW-NioTV/Makefile b/www/p5-WWW-NioTV/Makefile index ec030a617be..5b2ee336c4d 100644 --- a/www/p5-WWW-NioTV/Makefile +++ b/www/p5-WWW-NioTV/Makefile @@ -12,12 +12,12 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Retrieve TV information from http://www.niotv.com/ -BUILD_DEPENDS= p5-HTML-SimpleLinkExtor>=1.19:www/p5-HTML-SimpleLinkExtor \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTML-SimpleLinkExtor>=1.19:www/p5-HTML-SimpleLinkExtor \ p5-HTML-TableExtract>=2.1:www/p5-HTML-TableExtract \ p5-List-MoreUtils>=0.22:lang/p5-List-MoreUtils \ p5-Moose>=0.54:devel/p5-Moose \ p5-WWW-Mechanize>=1.34:www/p5-WWW-Mechanize -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-WWW-OpenSVN/Makefile b/www/p5-WWW-OpenSVN/Makefile index adb99fa1bfe..5b26076aed1 100644 --- a/www/p5-WWW-OpenSVN/Makefile +++ b/www/p5-WWW-OpenSVN/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= snowfly@yuntech.edu.tw COMMENT= Automated interface for OpenSVN.csie.org -BUILD_DEPENDS= p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-libwww>=0:www/p5-libwww USES= perl5 USE_PERL5= modbuild diff --git a/www/p5-WWW-OpenSearch/Makefile b/www/p5-WWW-OpenSearch/Makefile index fcd3389bcc1..5f380718018 100644 --- a/www/p5-WWW-OpenSearch/Makefile +++ b/www/p5-WWW-OpenSearch/Makefile @@ -11,13 +11,13 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Search A9 OpenSearch compatible engines -BUILD_DEPENDS= p5-URI-Template>=0:net/p5-URI-Template \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-URI-Template>=0:net/p5-URI-Template \ p5-URI>=0:net/p5-URI \ p5-Data-Page>=2.00:databases/p5-Data-Page \ p5-XML-Feed>=0.08:textproc/p5-XML-Feed \ p5-libwww>=5.60:www/p5-libwww \ p5-XML-LibXML>=1.58:textproc/p5-XML-LibXML -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-WWW-Pastebin-PastebinCom-Create/Makefile b/www/p5-WWW-Pastebin-PastebinCom-Create/Makefile index 49907ee26fd..8ef62688c72 100644 --- a/www/p5-WWW-Pastebin-PastebinCom-Create/Makefile +++ b/www/p5-WWW-Pastebin-PastebinCom-Create/Makefile @@ -12,9 +12,9 @@ COMMENT= Paste to http://pastebin.com from Perl LICENSE= ART20 -BUILD_DEPENDS= p5-Moo>=1.004001:devel/p5-Moo \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Moo>=1.004001:devel/p5-Moo \ p5-WWW-Mechanize>=1.73:www/p5-WWW-Mechanize -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-WWW-Robot/Makefile b/www/p5-WWW-Robot/Makefile index 932df192563..7d08972aedc 100644 --- a/www/p5-WWW-Robot/Makefile +++ b/www/p5-WWW-Robot/Makefile @@ -11,10 +11,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= WWW::Robot - configurable web traversal engine -BUILD_DEPENDS= p5-HTML-Tree>=0:www/p5-HTML-Tree \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTML-Tree>=0:www/p5-HTML-Tree \ p5-libwww>=0:www/p5-libwww \ p5-HTML-Tagset>=0:www/p5-HTML-Tagset -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-WWW-Salesforce/Makefile b/www/p5-WWW-Salesforce/Makefile index dd305d08988..0358a490e1a 100644 --- a/www/p5-WWW-Salesforce/Makefile +++ b/www/p5-WWW-Salesforce/Makefile @@ -13,9 +13,9 @@ COMMENT= Simple abstraction layer between SOAP::Lite and Salesforce.com LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-SOAP-Lite>=0.68:net/p5-SOAP-Lite \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-SOAP-Lite>=0.68:net/p5-SOAP-Lite \ p5-Crypt-SSLeay>=0.56:security/p5-Crypt-SSLeay -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Pod>=0:devel/p5-Test-Pod \ p5-Test-Pod-Coverage>=0:devel/p5-Test-Pod-Coverage diff --git a/www/p5-WWW-Scraper-ISBN-Amazon_Driver/Makefile b/www/p5-WWW-Scraper-ISBN-Amazon_Driver/Makefile index 9c722d03553..f1cb5967fd8 100644 --- a/www/p5-WWW-Scraper-ISBN-Amazon_Driver/Makefile +++ b/www/p5-WWW-Scraper-ISBN-Amazon_Driver/Makefile @@ -12,9 +12,9 @@ COMMENT= Search driver for the (US) Amazon online catalog LICENSE= ART20 -BUILD_DEPENDS= p5-WWW-Mechanize>=1.60:www/p5-WWW-Mechanize \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-WWW-Mechanize>=1.60:www/p5-WWW-Mechanize \ p5-WWW-Scraper-ISBN>=1:www/p5-WWW-Scraper-ISBN -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-JSON>=0:converters/p5-JSON USES= perl5 diff --git a/www/p5-WWW-Search-AltaVista/Makefile b/www/p5-WWW-Search-AltaVista/Makefile index 3faf3ea18fd..0d3fee0107f 100644 --- a/www/p5-WWW-Search-AltaVista/Makefile +++ b/www/p5-WWW-Search-AltaVista/Makefile @@ -11,10 +11,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Perl WWW::Search class for searching AltaVista -BUILD_DEPENDS= p5-Date-Manip>=0:devel/p5-Date-Manip \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Date-Manip>=0:devel/p5-Date-Manip \ p5-HTML-Tree>=0:www/p5-HTML-Tree \ p5-WWW-Search>=0:www/p5-WWW-Search -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-WWW-Search-Google/Makefile b/www/p5-WWW-Search-Google/Makefile index ed47c624e86..504d3aa0bb5 100644 --- a/www/p5-WWW-Search-Google/Makefile +++ b/www/p5-WWW-Search-Google/Makefile @@ -13,10 +13,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Perl WWW::Search class for searching Google -BUILD_DEPENDS= p5-WWW-Search>=0:www/p5-WWW-Search \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-WWW-Search>=0:www/p5-WWW-Search \ p5-SOAP-Lite>=0:net/p5-SOAP-Lite \ p5-Net-Google>=0:net/p5-Net-Google -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-WWW-Search-MSN/Makefile b/www/p5-WWW-Search-MSN/Makefile index ac8310cd548..191971e4d6e 100644 --- a/www/p5-WWW-Search-MSN/Makefile +++ b/www/p5-WWW-Search-MSN/Makefile @@ -13,9 +13,9 @@ COMMENT= Backend for searching search.msn.com LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-HTML-Tree>=0:www/p5-HTML-Tree \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTML-Tree>=0:www/p5-HTML-Tree \ p5-WWW-Search>=0:www/p5-WWW-Search -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/www/p5-WWW-Search/Makefile b/www/p5-WWW-Search/Makefile index 94653db09ea..42d2610c398 100644 --- a/www/p5-WWW-Search/Makefile +++ b/www/p5-WWW-Search/Makefile @@ -13,7 +13,8 @@ COMMENT= Perl5 module for WWW searches LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Bit-Vector>=0:math/p5-Bit-Vector \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Bit-Vector>=0:math/p5-Bit-Vector \ p5-CGI>=0:www/p5-CGI \ p5-Date-Manip>=0:devel/p5-Date-Manip \ p5-File-Slurp>=0:devel/p5-File-Slurp \ @@ -22,7 +23,6 @@ BUILD_DEPENDS= p5-Bit-Vector>=0:math/p5-Bit-Vector \ p5-URI>=0:net/p5-URI \ p5-User>=0:sysutils/p5-User \ p5-libwww>=2:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-IO-Capture>=0:devel/p5-IO-Capture \ p5-Test-File>=0:devel/p5-Test-File diff --git a/www/p5-WWW-Shorten-0rz/Makefile b/www/p5-WWW-Shorten-0rz/Makefile index edf721ce585..96f4159c56c 100644 --- a/www/p5-WWW-Shorten-0rz/Makefile +++ b/www/p5-WWW-Shorten-0rz/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= snowfly@yuntech.edu.tw COMMENT= Shorten URL using 0rz.net -BUILD_DEPENDS= p5-WWW-Shorten>=0:www/p5-WWW-Shorten \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-WWW-Shorten>=0:www/p5-WWW-Shorten \ p5-WWW-Mechanize>=0:www/p5-WWW-Mechanize -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Exception>=0:devel/p5-Test-Exception USES= perl5 diff --git a/www/p5-WWW-Shorten-Bitly/Makefile b/www/p5-WWW-Shorten-Bitly/Makefile index 0ea2e9e3a52..3e58b083a34 100644 --- a/www/p5-WWW-Shorten-Bitly/Makefile +++ b/www/p5-WWW-Shorten-Bitly/Makefile @@ -14,13 +14,13 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-File-HomeDir>=1.00:devel/p5-File-HomeDir \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-File-HomeDir>=1.00:devel/p5-File-HomeDir \ p5-JSON-MaybeXS>0:converters/p5-JSON-MaybeXS \ p5-LWP-Protocol-https>0:www/p5-LWP-Protocol-https \ p5-Path-Tiny>0:devel/p5-Path-Tiny \ p5-URI>=1.58:net/p5-URI \ p5-WWW-Shorten>=3.09:www/p5-WWW-Shorten -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-WWW-Shorten-Googl/Makefile b/www/p5-WWW-Shorten-Googl/Makefile index 860d744a0d1..45ad25867a0 100644 --- a/www/p5-WWW-Shorten-Googl/Makefile +++ b/www/p5-WWW-Shorten-Googl/Makefile @@ -11,11 +11,11 @@ PKGNAMEPREFIX= p5- MAINTAINER= cowboyneal@gmail.com COMMENT= Perl interface to goo.gl -BUILD_DEPENDS= p5-WWW-Shorten>=1.98:www/p5-WWW-Shorten \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-WWW-Shorten>=1.98:www/p5-WWW-Shorten \ p5-libwww>=5.75:www/p5-libwww \ p5-LWP-Protocol-https>=0:www/p5-LWP-Protocol-https \ p5-JSON-Any>=0:converters/p5-JSON-Any -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-WWW-Shorten-KUSO/Makefile b/www/p5-WWW-Shorten-KUSO/Makefile index e70182e2f1b..2d7a7dd76ef 100644 --- a/www/p5-WWW-Shorten-KUSO/Makefile +++ b/www/p5-WWW-Shorten-KUSO/Makefile @@ -14,8 +14,8 @@ COMMENT= Shorten URL using http://KUSO.CC/ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-WWW-Shorten>=0:www/p5-WWW-Shorten -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-WWW-Shorten>=0:www/p5-WWW-Shorten USES= perl5 USE_PERL5= configure diff --git a/www/p5-WWW-Shorten-Yourls/Makefile b/www/p5-WWW-Shorten-Yourls/Makefile index a258675a3a3..728bdcd4256 100644 --- a/www/p5-WWW-Shorten-Yourls/Makefile +++ b/www/p5-WWW-Shorten-Yourls/Makefile @@ -11,10 +11,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= beastie@tardisi.com COMMENT= Perl interface to www/yourls, Your Own URL Shortener -BUILD_DEPENDS= p5-JSON-Any>=1.18:converters/p5-JSON-Any \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-JSON-Any>=1.18:converters/p5-JSON-Any \ p5-WWW-Shorten>=1.9:www/p5-WWW-Shorten \ p5-XML-Simple>=2.18:textproc/p5-XML-Simple -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-WWW-Shorten-isgd/Makefile b/www/p5-WWW-Shorten-isgd/Makefile index 74934977d49..64b4135e76a 100644 --- a/www/p5-WWW-Shorten-isgd/Makefile +++ b/www/p5-WWW-Shorten-isgd/Makefile @@ -14,8 +14,8 @@ COMMENT= Abstract interface to is.gd, one of URL shortening sites LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-WWW-Shorten>=1.97:www/p5-WWW-Shorten -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-WWW-Shorten>=1.97:www/p5-WWW-Shorten USES= perl5 USE_PERL5= configure diff --git a/www/p5-WWW-Shorten/Makefile b/www/p5-WWW-Shorten/Makefile index da458800ecc..2e843d6c2ef 100644 --- a/www/p5-WWW-Shorten/Makefile +++ b/www/p5-WWW-Shorten/Makefile @@ -13,9 +13,9 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-libwww>=5.835:www/p5-libwww \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-libwww>=5.835:www/p5-libwww \ p5-Try-Tiny>=0.24:lang/p5-Try-Tiny -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/www/p5-WWW-SourceForge/Makefile b/www/p5-WWW-SourceForge/Makefile index 859852b298e..56c835a134c 100644 --- a/www/p5-WWW-SourceForge/Makefile +++ b/www/p5-WWW-SourceForge/Makefile @@ -13,10 +13,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= ychsiao@ychsiao.org COMMENT= Retrieve information from SourceForge site -BUILD_DEPENDS= p5-WWW-Mechanize>=0:www/p5-WWW-Mechanize \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-WWW-Mechanize>=0:www/p5-WWW-Mechanize \ p5-HTML-TableExtract>=0:www/p5-HTML-TableExtract \ p5-YAML>=0:textproc/p5-YAML -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-WWW-Spinn3r/Makefile b/www/p5-WWW-Spinn3r/Makefile index 283a91316bb..2f54e7bc63c 100644 --- a/www/p5-WWW-Spinn3r/Makefile +++ b/www/p5-WWW-Spinn3r/Makefile @@ -11,13 +11,13 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Interface to the Spinn3r API -BUILD_DEPENDS= p5-Class-Accessor>=0:devel/p5-Class-Accessor \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Accessor>=0:devel/p5-Class-Accessor \ p5-DateTime>=0:devel/p5-DateTime \ p5-DateTime-Format-ISO8601>=0:devel/p5-DateTime-Format-ISO8601 \ p5-URI>=0:net/p5-URI \ p5-XML-Twig>=0:textproc/p5-XML-Twig \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Memory-Cycle>=0:devel/p5-Test-Memory-Cycle USES= perl5 diff --git a/www/p5-WWW-TWSMS/Makefile b/www/p5-WWW-TWSMS/Makefile index 66bcede24f3..944574a1199 100644 --- a/www/p5-WWW-TWSMS/Makefile +++ b/www/p5-WWW-TWSMS/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= snowfly@yuntech.edu.tw COMMENT= Perl interface for sending sms by TWSMS -BUILD_DEPENDS= p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-libwww>=0:www/p5-libwww USES= perl5 USE_PERL5= configure diff --git a/www/p5-WWW-TinySong/Makefile b/www/p5-WWW-TinySong/Makefile index be95f443968..db46add1eaa 100644 --- a/www/p5-WWW-TinySong/Makefile +++ b/www/p5-WWW-TinySong/Makefile @@ -14,9 +14,9 @@ COMMENT= Get free music links from tinysong.com LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-HTML-Parser>=0:www/p5-HTML-Parser \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTML-Parser>=0:www/p5-HTML-Parser \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/www/p5-WWW-Tumblr/Makefile b/www/p5-WWW-Tumblr/Makefile index 77f48e9a960..11a249f2fae 100644 --- a/www/p5-WWW-Tumblr/Makefile +++ b/www/p5-WWW-Tumblr/Makefile @@ -14,12 +14,12 @@ COMMENT= Perl interface for the Tumblr API LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-HTTP-Message>0:www/p5-HTTP-Message \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTTP-Message>0:www/p5-HTTP-Message \ p5-JSON>0:converters/p5-JSON \ p5-Moose>0:devel/p5-Moose \ p5-Net-OAuth>0:net/p5-Net-OAuth \ p5-libwww>0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-WWW-VenusEnvy/Makefile b/www/p5-WWW-VenusEnvy/Makefile index 84b0b24044b..2e4260abffa 100644 --- a/www/p5-WWW-VenusEnvy/Makefile +++ b/www/p5-WWW-VenusEnvy/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= VenusEnvy comic strip archive and retrieval module -BUILD_DEPENDS= p5-libwww>=5.805:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-libwww>=5.805:www/p5-libwww USES= perl5 USE_PERL5= modbuild diff --git a/www/p5-WWW-WebArchive/Makefile b/www/p5-WWW-WebArchive/Makefile index 83deecd1e89..096835ee771 100644 --- a/www/p5-WWW-WebArchive/Makefile +++ b/www/p5-WWW-WebArchive/Makefile @@ -14,10 +14,10 @@ COMMENT= Retrieve old versions of public web pages from various web archives LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-App-Options>=0:devel/p5-App-Options \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-App-Options>=0:devel/p5-App-Options \ p5-App-Trace>=0:devel/p5-App-Trace \ p5-WWW-Mechanize>=0:www/p5-WWW-Mechanize -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USE_PERL5= configure diff --git a/www/p5-WWW-Wikipedia/Makefile b/www/p5-WWW-Wikipedia/Makefile index 7d71e4d0e51..934e8c3df02 100644 --- a/www/p5-WWW-Wikipedia/Makefile +++ b/www/p5-WWW-Wikipedia/Makefile @@ -14,10 +14,10 @@ COMMENT= Perl module of Automated interface to the Wikipedia LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-LWP-Protocol-https>=0:www/p5-LWP-Protocol-https \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-LWP-Protocol-https>=0:www/p5-LWP-Protocol-https \ p5-Text-Autoformat>=0:textproc/p5-Text-Autoformat \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/www/p5-WWW-iTunesConnect/Makefile b/www/p5-WWW-iTunesConnect/Makefile index 9e92f006aa9..8b1628a0e33 100644 --- a/www/p5-WWW-iTunesConnect/Makefile +++ b/www/p5-WWW-iTunesConnect/Makefile @@ -12,11 +12,11 @@ DISTNAME= ${PKGNAMEPREFIX}${PORTNAME}-${PORTVERSION} MAINTAINER= bfoz@bfoz.net COMMENT= Client interface for Apple's iTunes Connect service -BUILD_DEPENDS= p5-HTML-Tree>=0:www/p5-HTML-Tree \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTML-Tree>=0:www/p5-HTML-Tree \ p5-libwww>=5.829:www/p5-libwww \ p5-Net-SSLeay>=0:security/p5-Net-SSLeay \ p5-HTML-Form>=0:www/p5-HTML-Form -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-Web-Query/Makefile b/www/p5-Web-Query/Makefile index 78e52819036..00f494b4e08 100644 --- a/www/p5-Web-Query/Makefile +++ b/www/p5-Web-Query/Makefile @@ -14,13 +14,13 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-HTML-Parser>=0:www/p5-HTML-Parser \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTML-Parser>=0:www/p5-HTML-Parser \ p5-HTML-Selector-XPath>=0.20:www/p5-HTML-Selector-XPath \ p5-HTML-TreeBuilder-LibXML>=0:www/p5-HTML-TreeBuilder-LibXML \ p5-HTML-TreeBuilder-XPath>=0:www/p5-HTML-TreeBuilder-XPath \ p5-Scalar-List-Utils>=1.44:lang/p5-Scalar-List-Utils \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Exception>=0:devel/p5-Test-Exception NO_ARCH= yes diff --git a/www/p5-Web-Scraper/Makefile b/www/p5-Web-Scraper/Makefile index 3c724ee41bd..662088bb3da 100644 --- a/www/p5-Web-Scraper/Makefile +++ b/www/p5-Web-Scraper/Makefile @@ -14,7 +14,8 @@ COMMENT= Web Scraping Toolkit inspired by Scrapi LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-HTML-Parser>0:www/p5-HTML-Parser \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTML-Parser>0:www/p5-HTML-Parser \ p5-HTML-Selector-XPath>=0.03:www/p5-HTML-Selector-XPath \ p5-HTML-Tagset>0:www/p5-HTML-Tagset \ p5-HTML-TreeBuilder-LibXML>=0.04:www/p5-HTML-TreeBuilder-LibXML \ @@ -25,7 +26,6 @@ BUILD_DEPENDS= p5-HTML-Parser>0:www/p5-HTML-Parser \ p5-XML-XPathEngine>=0.08:textproc/p5-XML-XPathEngine \ p5-YAML>0:textproc/p5-YAML \ p5-libwww>=5.827:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Base>=0:devel/p5-Test-Base \ p5-Test-Requires>=0:devel/p5-Test-Requires diff --git a/www/p5-Web-Simple/Makefile b/www/p5-Web-Simple/Makefile index f3bfc091b21..d491f25bab6 100644 --- a/www/p5-Web-Simple/Makefile +++ b/www/p5-Web-Simple/Makefile @@ -13,12 +13,12 @@ COMMENT= Quick and easy way to build simple web applications LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-HTTP-Body>=1.22:www/p5-HTTP-Body \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTTP-Body>=1.22:www/p5-HTTP-Body \ p5-Moo>=0.009014:devel/p5-Moo \ p5-Plack>=0.9968:www/p5-Plack \ p5-Syntax-Keyword-Gather>=1.001000:devel/p5-Syntax-Keyword-Gather \ p5-strictures>=1:devel/p5-strictures -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Data-Dumper-Concise>=2.20:devel/p5-Data-Dumper-Concise NO_ARCH= yes diff --git a/www/p5-Web-oEmbed/Makefile b/www/p5-Web-oEmbed/Makefile index 5b4fb036006..8615f6bebb3 100644 --- a/www/p5-Web-oEmbed/Makefile +++ b/www/p5-Web-oEmbed/Makefile @@ -14,12 +14,12 @@ COMMENT= oEmbed consumer LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Any-Moose>=0:devel/p5-Any-Moose \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Any-Moose>=0:devel/p5-Any-Moose \ p5-HTML-Tree>=0:www/p5-HTML-Tree \ p5-JSON-XS>=0:converters/p5-JSON-XS \ p5-XML-LibXML-Simple>=0:textproc/p5-XML-LibXML-Simple \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USE_PERL5= configure diff --git a/www/p5-WebDAO/Makefile b/www/p5-WebDAO/Makefile index 7035fbfd008..60601b7d647 100644 --- a/www/p5-WebDAO/Makefile +++ b/www/p5-WebDAO/Makefile @@ -14,13 +14,13 @@ COMMENT= Platform for easy creation of web applications LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-DateTime>=0.37:devel/p5-DateTime \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-DateTime>=0.37:devel/p5-DateTime \ p5-DateTime-Format-HTTP>=0.37:devel/p5-DateTime-Format-HTTP \ p5-FCGI>=0.67:www/p5-FCGI \ p5-HTTP-Body>=1.11:www/p5-HTTP-Body \ p5-URI>=1.36:net/p5-URI \ p5-XML-Flow>=0.86:textproc/p5-XML-Flow -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Class>=0:devel/p5-Test-Class NO_ARCH= yes diff --git a/www/p5-WebService-Bloglines/Makefile b/www/p5-WebService-Bloglines/Makefile index 5a1b323df55..5f17aab5bd6 100644 --- a/www/p5-WebService-Bloglines/Makefile +++ b/www/p5-WebService-Bloglines/Makefile @@ -11,11 +11,11 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Easy-to-use Interface for Bloglines Web Services -BUILD_DEPENDS= p5-libwww>=0:www/p5-libwww \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-libwww>=0:www/p5-libwww \ p5-XML-RSS>=0:textproc/p5-XML-RSS \ p5-XML-RSS-LibXML>=0:textproc/p5-XML-RSS-LibXML \ p5-XML-XPath>=0:textproc/p5-XML-XPath -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-WebService-GData/Makefile b/www/p5-WebService-GData/Makefile index 1ae360876cf..6a381397238 100644 --- a/www/p5-WebService-GData/Makefile +++ b/www/p5-WebService-GData/Makefile @@ -16,9 +16,9 @@ COMMENT= Google data protocol v2 base object to inherit from LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-JSON>=2.0:converters/p5-JSON \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-JSON>=2.0:converters/p5-JSON \ p5-libwww>0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Mock-LWP>=0.05:devel/p5-Test-Mock-LWP USES= perl5 diff --git a/www/p5-WebService-Google-Reader/Makefile b/www/p5-WebService-Google-Reader/Makefile index 9ebf06040dd..59aeae47044 100644 --- a/www/p5-WebService-Google-Reader/Makefile +++ b/www/p5-WebService-Google-Reader/Makefile @@ -13,7 +13,8 @@ COMMENT= Perl interface to Google Reader LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-JSON-XS>=2:converters/p5-JSON-XS \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-JSON-XS>=2:converters/p5-JSON-XS \ p5-URI>=1.36:net/p5-URI \ p5-libwww>=6.02:www/p5-libwww \ p5-LWP-Protocol-https>=6.02:www/p5-LWP-Protocol-https \ @@ -24,7 +25,6 @@ BUILD_DEPENDS= p5-JSON-XS>=2:converters/p5-JSON-XS \ p5-JSON>=2:converters/p5-JSON \ p5-XML-Atom>0:textproc/p5-XML-Atom \ p5-XML-LibXML>0:textproc/p5-XML-LibXML -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-WebService-Google-Sets/Makefile b/www/p5-WebService-Google-Sets/Makefile index a38af200ffd..d619b4a854b 100644 --- a/www/p5-WebService-Google-Sets/Makefile +++ b/www/p5-WebService-Google-Sets/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Perl access to Google Labs Sets site -BUILD_DEPENDS= p5-libwww>0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-libwww>0:www/p5-libwww USES= perl5 USE_PERL5= configure diff --git a/www/p5-WebService-IMDB/Makefile b/www/p5-WebService-IMDB/Makefile index e140fd0a3dd..bec8da7f28d 100644 --- a/www/p5-WebService-IMDB/Makefile +++ b/www/p5-WebService-IMDB/Makefile @@ -14,7 +14,8 @@ COMMENT= Perl interface to IMDb LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Cache-Cache>=0:devel/p5-Cache-Cache \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Cache-Cache>=0:devel/p5-Cache-Cache \ p5-Class-Accessor>=0:devel/p5-Class-Accessor \ p5-DateTime>=0:devel/p5-DateTime \ p5-DateTime-Format-Strptime>=0:devel/p5-DateTime-Format-Strptime \ @@ -22,7 +23,6 @@ BUILD_DEPENDS= p5-Cache-Cache>=0:devel/p5-Cache-Cache \ p5-JSON>=0:converters/p5-JSON \ p5-URI>=0:net/p5-URI \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-WebService-ISBNDB/Makefile b/www/p5-WebService-ISBNDB/Makefile index 3853b19c466..d9005ce8f5b 100644 --- a/www/p5-WebService-ISBNDB/Makefile +++ b/www/p5-WebService-ISBNDB/Makefile @@ -11,13 +11,13 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Perl extension to access isbndb.com -BUILD_DEPENDS= p5-Business-ISBN>=1.80:misc/p5-Business-ISBN \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Business-ISBN>=1.80:misc/p5-Business-ISBN \ p5-Class-Std>=0.0.8:devel/p5-Class-Std \ p5-Error>=0.17:lang/p5-Error \ p5-libwww>=5.801:www/p5-libwww \ p5-XML-LibXML>=1.58:textproc/p5-XML-LibXML \ p5-TimeDate>=1.16:devel/p5-TimeDate -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/www/p5-WebService-Linode/Makefile b/www/p5-WebService-Linode/Makefile index b2cb6a93def..ea446cb2a72 100644 --- a/www/p5-WebService-Linode/Makefile +++ b/www/p5-WebService-Linode/Makefile @@ -13,11 +13,11 @@ COMMENT= Perl Interface to the Linode.com API LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Crypt-SSLeay>=0:security/p5-Crypt-SSLeay \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Crypt-SSLeay>=0:security/p5-Crypt-SSLeay \ p5-JSON>=0:converters/p5-JSON \ p5-Mozilla-CA>=0:www/p5-Mozilla-CA \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-MockObject>=0:devel/p5-Test-MockObject NO_ARCH= yes diff --git a/www/p5-WebService-MoviePosterDB/Makefile b/www/p5-WebService-MoviePosterDB/Makefile index fe83efa7ea1..508b541a84e 100644 --- a/www/p5-WebService-MoviePosterDB/Makefile +++ b/www/p5-WebService-MoviePosterDB/Makefile @@ -14,12 +14,12 @@ COMMENT= Perl interface to MoviePosterDB LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Cache-Cache>=0:devel/p5-Cache-Cache \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Cache-Cache>=0:devel/p5-Cache-Cache \ p5-Class-Accessor>=0:devel/p5-Class-Accessor \ p5-JSON>=0:converters/p5-JSON \ p5-URI>=0:net/p5-URI \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-WebService-MusicBrainz/Makefile b/www/p5-WebService-MusicBrainz/Makefile index 29b83e178f8..df2b1f294c6 100644 --- a/www/p5-WebService-MusicBrainz/Makefile +++ b/www/p5-WebService-MusicBrainz/Makefile @@ -13,12 +13,12 @@ COMMENT= Perl interface to MusicBrainz LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Class-Accessor>=0:devel/p5-Class-Accessor \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Accessor>=0:devel/p5-Class-Accessor \ p5-URI>=0:net/p5-URI \ p5-XML-LibXML>=0:textproc/p5-XML-LibXML \ p5-libwww>=0:www/p5-libwww \ p5-Mojolicious>=7.13:www/p5-Mojolicious -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-WebService-MusicBrainz0/Makefile b/www/p5-WebService-MusicBrainz0/Makefile index aa9363174c3..09990a83af5 100644 --- a/www/p5-WebService-MusicBrainz0/Makefile +++ b/www/p5-WebService-MusicBrainz0/Makefile @@ -14,11 +14,11 @@ COMMENT= Perl interface to MusicBrainz LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Class-Accessor>=0:devel/p5-Class-Accessor \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Accessor>=0:devel/p5-Class-Accessor \ p5-URI>=0:net/p5-URI \ p5-XML-LibXML>=0:textproc/p5-XML-LibXML \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-WebService-NoPaste/Makefile b/www/p5-WebService-NoPaste/Makefile index 2d48b7d1188..1de9c277660 100644 --- a/www/p5-WebService-NoPaste/Makefile +++ b/www/p5-WebService-NoPaste/Makefile @@ -14,10 +14,10 @@ COMMENT= Pastebin web application to upload snippets of text LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-IO-All>=0:devel/p5-IO-All \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-IO-All>=0:devel/p5-IO-All \ p5-Spiffy>=0:devel/p5-Spiffy \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} OPTIONS_DEFINE= X11 X11_DESC= X11 Clipboard support diff --git a/www/p5-WebService-Rakuten/Makefile b/www/p5-WebService-Rakuten/Makefile index 751b728cc6c..3701e092940 100644 --- a/www/p5-WebService-Rakuten/Makefile +++ b/www/p5-WebService-Rakuten/Makefile @@ -11,12 +11,12 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Rakuten WebService API -BUILD_DEPENDS= ja-p5-Unicode-Japanese>=0:japanese/p5-Unicode-Japanese \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= ja-p5-Unicode-Japanese>=0:japanese/p5-Unicode-Japanese \ p5-JSON>=0:converters/p5-JSON \ p5-Readonly>=0:devel/p5-Readonly \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} -BUILD_DEPENDS+= p5-Test-Exception>=0:devel/p5-Test-Exception +TEST_DEPENDS= p5-Test-Exception>=0:devel/p5-Test-Exception USES= perl5 USE_PERL5= configure diff --git a/www/p5-WebService-Simple/Makefile b/www/p5-WebService-Simple/Makefile index 199ecabbeb9..ab1680b77e4 100644 --- a/www/p5-WebService-Simple/Makefile +++ b/www/p5-WebService-Simple/Makefile @@ -13,7 +13,8 @@ COMMENT= Simple Interface To Web Services APIs LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Class-Accessor>=0:devel/p5-Class-Accessor \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Accessor>=0:devel/p5-Class-Accessor \ p5-Class-Data-ConfigHash>=0:devel/p5-Class-Data-ConfigHash \ p5-Class-Inspector>=0:devel/p5-Class-Inspector \ p5-Hash-MultiValue>=0:devel/p5-Hash-MultiValue \ @@ -24,7 +25,6 @@ BUILD_DEPENDS= p5-Class-Accessor>=0:devel/p5-Class-Accessor \ p5-XML-LibXML>=0:textproc/p5-XML-LibXML \ p5-XML-Simple>=0:textproc/p5-XML-Simple \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-XML-Feed>=0:textproc/p5-XML-Feed \ p5-XML-Parser-Lite-Tree>=0:textproc/p5-XML-Parser-Lite-Tree diff --git a/www/p5-WebService-Technorati/Makefile b/www/p5-WebService-Technorati/Makefile index 27a8b257e5a..63029c9b745 100644 --- a/www/p5-WebService-Technorati/Makefile +++ b/www/p5-WebService-Technorati/Makefile @@ -11,10 +11,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Perl interface to the Technorati web services interface -BUILD_DEPENDS= p5-XML-XPath>=0:textproc/p5-XML-XPath \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-XML-XPath>=0:textproc/p5-XML-XPath \ p5-Exception-Class>=0:devel/p5-Exception-Class \ p5-libwww>=0:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 shebangfix SHEBANG_FILES= pod2html.pl diff --git a/www/p5-WordPress-XMLRPC/Makefile b/www/p5-WordPress-XMLRPC/Makefile index bc63395f97f..cfe154dc3c5 100644 --- a/www/p5-WordPress-XMLRPC/Makefile +++ b/www/p5-WordPress-XMLRPC/Makefile @@ -13,9 +13,9 @@ COMMENT= Perl 5 API to WordPress XML-RPC services LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-SOAP-Lite>=0:net/p5-SOAP-Lite \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-SOAP-Lite>=0:net/p5-SOAP-Lite \ p5-XMLRPC-Lite>=0:net/p5-XMLRPC-Lite -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Smart-Comments>=0:devel/p5-Smart-Comments \ p5-YAML>=0:textproc/p5-YAML diff --git a/www/p5-Yahoo-Search/Makefile b/www/p5-Yahoo-Search/Makefile index a33f0a42704..0ff75c9a485 100644 --- a/www/p5-Yahoo-Search/Makefile +++ b/www/p5-Yahoo-Search/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Perl interface to the Yahoo Search public API -BUILD_DEPENDS= p5-URI>=1.54:net/p5-URI \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-URI>=1.54:net/p5-URI \ p5-libwww>=5.835:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Simple>=0.88:devel/p5-Test-Simple USES= perl5 diff --git a/www/p5-chklinks/Makefile b/www/p5-chklinks/Makefile index c8f665bc5f6..1284771677b 100644 --- a/www/p5-chklinks/Makefile +++ b/www/p5-chklinks/Makefile @@ -14,10 +14,10 @@ COMMENT= Non-threaded Perl link checker LICENSE= GPLv3+ LICENSE_FILE= ${WRKSRC}/COPYING -BUILD_DEPENDS= p5-HTML-Parser>=0:www/p5-HTML-Parser \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-HTML-Parser>=0:www/p5-HTML-Parser \ p5-libwww>=0:www/p5-libwww \ p5-URI>=0:net/p5-URI -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/p5-libservlet/Makefile b/www/p5-libservlet/Makefile index c3ee4f5dff5..fefa5f089b8 100644 --- a/www/p5-libservlet/Makefile +++ b/www/p5-libservlet/Makefile @@ -14,8 +14,8 @@ COMMENT= Servlet API for Perl LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Exception-Class>=0:devel/p5-Exception-Class -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Exception-Class>=0:devel/p5-Exception-Class USES= perl5 USE_PERL5= configure diff --git a/www/p5-webservice-validator-css-w3c/Makefile b/www/p5-webservice-validator-css-w3c/Makefile index d4e990d047a..d76dd835fb7 100644 --- a/www/p5-webservice-validator-css-w3c/Makefile +++ b/www/p5-webservice-validator-css-w3c/Makefile @@ -11,11 +11,11 @@ PKGNAMEPREFIX= p5- MAINTAINER= toni.viemero@iki.fi COMMENT= Experimental interface to the W3C CSS Validation online service -BUILD_DEPENDS= p5-libwww>=0:www/p5-libwww \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-libwww>=0:www/p5-libwww \ p5-URI>=0:net/p5-URI \ p5-SOAP-Lite>=0:net/p5-SOAP-Lite \ p5-Class-Accessor>=0:devel/p5-Class-Accessor -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/www/py-django/Makefile b/www/py-django/Makefile index 6cfe2a47c93..0480e3e9bb7 100644 --- a/www/py-django/Makefile +++ b/www/py-django/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= django -PORTVERSION= 1.11.15 +PORTVERSION= 1.11.16 CATEGORIES= www python PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/www/py-django111/Makefile b/www/py-django111/Makefile index 3dd3e7789e4..a93ad266613 100644 --- a/www/py-django111/Makefile +++ b/www/py-django111/Makefile @@ -4,7 +4,7 @@ # Remember to update www/py-django along with this port. PORTNAME= django -PORTVERSION= 1.11.15 +PORTVERSION= 1.11.16 CATEGORIES= www python MASTER_SITES= CHEESESHOP \ https://www.djangoproject.com/m/releases/${PORTVERSION}/ diff --git a/www/py-django111/distinfo b/www/py-django111/distinfo index 9292fa88d31..be86a318a35 100644 --- a/www/py-django111/distinfo +++ b/www/py-django111/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1533180658 -SHA256 (python/Django-1.11.15.tar.gz) = b18235d82426f09733d2de9910cee975cf52ff05e5f836681eb957d105a05a40 -SIZE (python/Django-1.11.15.tar.gz) = 7843843 +TIMESTAMP = 1538485412 +SHA256 (python/Django-1.11.16.tar.gz) = 29268cc47816a44f27308e60f71da635f549c47d8a1d003b28de55141df75791 +SIZE (python/Django-1.11.16.tar.gz) = 7852514 diff --git a/www/py-django20/Makefile b/www/py-django20/Makefile index 04d1a7b9719..74101ae645e 100644 --- a/www/py-django20/Makefile +++ b/www/py-django20/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= django -PORTVERSION= 2.0.8 +PORTVERSION= 2.0.9 CATEGORIES= www python MASTER_SITES= CHEESESHOP \ https://www.djangoproject.com/m/releases/${PORTVERSION}/ diff --git a/www/py-django20/distinfo b/www/py-django20/distinfo index 69c0c0b167b..91843a4b5d9 100644 --- a/www/py-django20/distinfo +++ b/www/py-django20/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1533180034 -SHA256 (python/Django-2.0.8.tar.gz) = 68aeea369a8130259354b6ba1fa9babe0c5ee6bced505dea4afcd00f765ae38b -SIZE (python/Django-2.0.8.tar.gz) = 7987343 +TIMESTAMP = 1538485381 +SHA256 (python/Django-2.0.9.tar.gz) = d6d94554abc82ca37e447c3d28958f5ac39bd7d4adaa285543ae97fb1129fd69 +SIZE (python/Django-2.0.9.tar.gz) = 7992507 diff --git a/www/py-django21/Makefile b/www/py-django21/Makefile index 301febd939c..982eb6c43b1 100644 --- a/www/py-django21/Makefile +++ b/www/py-django21/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= django -PORTVERSION= 2.1.1 +PORTVERSION= 2.1.2 CATEGORIES= www python MASTER_SITES= CHEESESHOP \ https://www.djangoproject.com/m/releases/${PORTVERSION}/ diff --git a/www/py-django21/distinfo b/www/py-django21/distinfo index 97d1d9ead40..bd651199d2a 100644 --- a/www/py-django21/distinfo +++ b/www/py-django21/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1535806176 -SHA256 (python/Django-2.1.1.tar.gz) = e1cc1cd6b658aa4e052f5f2b148bfda08091d7c3558529708342e37e4e33f72c -SIZE (python/Django-2.1.1.tar.gz) = 8595422 +TIMESTAMP = 1538485349 +SHA256 (python/Django-2.1.2.tar.gz) = efbcad7ebb47daafbcead109b38a5bd519a3c3cd92c6ed0f691ff97fcdd16b45 +SIZE (python/Django-2.1.2.tar.gz) = 8611286 diff --git a/www/py-flask-apscheduler/Makefile b/www/py-flask-apscheduler/Makefile index d55a9599586..f61acb583e6 100644 --- a/www/py-flask-apscheduler/Makefile +++ b/www/py-flask-apscheduler/Makefile @@ -7,7 +7,7 @@ CATEGORIES= www python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -MAINTAINER= feld@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= APScheduler support for Flask LICENSE= BSD3CLAUSE diff --git a/www/py-flask-marshmallow/Makefile b/www/py-flask-marshmallow/Makefile index 94eba75eb3e..4c24bf0322a 100644 --- a/www/py-flask-marshmallow/Makefile +++ b/www/py-flask-marshmallow/Makefile @@ -7,7 +7,7 @@ CATEGORIES= www python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -MAINTAINER= feld@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Marshmallow support for Flask LICENSE= BSD3CLAUSE diff --git a/www/py-flask-script/Makefile b/www/py-flask-script/Makefile index dffa4362f4d..ba557743093 100644 --- a/www/py-flask-script/Makefile +++ b/www/py-flask-script/Makefile @@ -7,7 +7,7 @@ CATEGORIES= www python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -MAINTAINER= feld@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Scripting support for Flask LICENSE= BSD3CLAUSE diff --git a/www/py-google-api-core/Makefile b/www/py-google-api-core/Makefile index faa2a9784b9..f37a06cc89d 100644 --- a/www/py-google-api-core/Makefile +++ b/www/py-google-api-core/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= google-api-core -PORTVERSION= 1.4.0 +PORTVERSION= 1.4.1 CATEGORIES= www python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -18,7 +18,7 @@ RUN_DEPENDS= ${PY_FUTURES} \ ${PYTHON_PKGNAMEPREFIX}googleapis-common-protos>=1.5.3:devel/py-googleapis-common-protos@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}grpcio>=1.8.2:devel/py-grpcio@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}grpcio-gcp>=0.2.2:devel/py-grpcio-gcp@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}protobuf>=3.0.0:devel/py-protobuf@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}protobuf>=3.4.0:devel/py-protobuf@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}pytz>=0:devel/py-pytz@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}requests>=2.18.0:www/py-requests@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}six>=1.10.0:devel/py-six@${PY_FLAVOR} diff --git a/www/py-google-api-core/distinfo b/www/py-google-api-core/distinfo index e281583e901..e4d50c47299 100644 --- a/www/py-google-api-core/distinfo +++ b/www/py-google-api-core/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1536758810 -SHA256 (google-api-core-1.4.0.tar.gz) = 121cc7b93fcf5bde0bf8047a5fb9b5217a7e663eaf83f828044a073781c88901 -SIZE (google-api-core-1.4.0.tar.gz) = 55571 +TIMESTAMP = 1538591910 +SHA256 (google-api-core-1.4.1.tar.gz) = a9ae625afd0ea5a4618604675d1fc140998c9c2b17f1d91817a7a7f5b33f7484 +SIZE (google-api-core-1.4.1.tar.gz) = 55844 diff --git a/www/py-google-api-core/pkg-descr b/www/py-google-api-core/pkg-descr index f8b585773e2..eea504e195f 100644 --- a/www/py-google-api-core/pkg-descr +++ b/www/py-google-api-core/pkg-descr @@ -4,4 +4,4 @@ This library is not meant to stand-alone. Instead it defines common helpers used by all Google API clients. WWW: https://pypi.org/project/google-api-core/ -WWW: https://github.com/GoogleCloudPlatform/google-cloud-python +WWW: https://github.com/googleapis/google-cloud-python diff --git a/www/py-pySmartDL/Makefile b/www/py-pySmartDL/Makefile index e3948794253..6a6aea90a08 100644 --- a/www/py-pySmartDL/Makefile +++ b/www/py-pySmartDL/Makefile @@ -7,7 +7,7 @@ CATEGORIES= www python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -MAINTAINER= feld@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Smart download manager for Python RUN_DEPENDS= ${PY_FUTURES} diff --git a/www/py-requests-file/Makefile b/www/py-requests-file/Makefile index 16ac2c8aced..26a168eca42 100644 --- a/www/py-requests-file/Makefile +++ b/www/py-requests-file/Makefile @@ -2,24 +2,22 @@ # $FreeBSD$ PORTNAME= requests-file -PORTVERSION= 1.4.2 +PORTVERSION= 1.4.3 CATEGORIES= www python +MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -MAINTAINER= feld@FreeBSD.org +MAINTAINER= sunpoet@FreeBSD.org COMMENT= Transport adapter for use with the Requests Python library LICENSE= APACHE20 -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}requests>0:www/py-requests@${PY_FLAVOR} \ +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}requests>=1.0.0:www/py-requests@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six@${PY_FLAVOR} +USES= python +USE_PYTHON= autoplist concurrent distutils + NO_ARCH= yes -USES= python -USE_PYTHON= autoplist distutils - -USE_GITHUB= yes -GH_ACCOUNT= dashea - .include diff --git a/www/py-requests-file/distinfo b/www/py-requests-file/distinfo index 37ffae86a70..07a0f2c2e47 100644 --- a/www/py-requests-file/distinfo +++ b/www/py-requests-file/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1507832477 -SHA256 (dashea-requests-file-1.4.2_GH0.tar.gz) = 311c0accf3c9496ca6db7c53ca2d64a31e54fe94e825074f1844707b86df6420 -SIZE (dashea-requests-file-1.4.2_GH0.tar.gz) = 5889 +TIMESTAMP = 1538663207 +SHA256 (requests-file-1.4.3.tar.gz) = 8f04aa6201bacda0567e7ac7f677f1499b0fc76b22140c54bc06edf1ba92e2fa +SIZE (requests-file-1.4.3.tar.gz) = 5252 diff --git a/www/py-requests-futures/Makefile b/www/py-requests-futures/Makefile index 3270babbb70..b5bcc4cf532 100644 --- a/www/py-requests-futures/Makefile +++ b/www/py-requests-futures/Makefile @@ -7,7 +7,7 @@ CATEGORIES= www python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -MAINTAINER= feld@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= HTTP library written in Python for human beings LICENSE= APACHE20 diff --git a/www/qt5-webkit/Makefile b/www/qt5-webkit/Makefile index a7c2e15348a..08b6cfbda3e 100644 --- a/www/qt5-webkit/Makefile +++ b/www/qt5-webkit/Makefile @@ -2,7 +2,7 @@ PORTNAME= webkit DISTVERSION= 5.212.0-alpha2 -PORTREVISION= 12 +PORTREVISION= 13 CATEGORIES= www MASTER_SITES= https://github.com/annulen/${PORTNAME}/releases/download/${DISTNAME}/ PKGNAMEPREFIX= qt5- diff --git a/www/qt5-webkit/files/patch-Source_WebKit_PlatformQt.cmake b/www/qt5-webkit/files/patch-Source_WebKit_PlatformQt.cmake index 45c24851f22..65885324881 100644 --- a/www/qt5-webkit/files/patch-Source_WebKit_PlatformQt.cmake +++ b/www/qt5-webkit/files/patch-Source_WebKit_PlatformQt.cmake @@ -1,18 +1,44 @@ ---- Source/WebKit/PlatformQt.cmake.orig 2017-06-15 23:36:48 UTC +commit 14947c04b3c19b5eb04a683081742b14c1d32786 +Author: Konstantin Tokarev +Date: Sat Oct 7 17:38:32 2017 +0300 + + [cmake] Fix build with CMake 3.10: -frtti was enabled for wrong file path + + Change-Id: I65d4f491f21c17f6d99a14259988d2ddb0d67105 + +--- Source/WebKit/PlatformQt.cmake.orig 2018-10-07 11:03:32 UTC +++ Source/WebKit/PlatformQt.cmake -@@ -481,6 +481,7 @@ if (NOT MACOS_BUILD_FRAMEWORKS) +@@ -481,6 +481,8 @@ if (NOT MACOS_BUILD_FRAMEWORKS) BASE_NAME Qt5WebKit DEPS "${WEBKIT_PKGCONGIG_DEPS}" FILENAME_VAR WebKit_PKGCONFIG_FILENAME ++ INCLUDE_INSTALL_DIR "${KDE_INSTALL_INCLUDEDIR}/QtWebKit" + DESCRIPTION "Qt WebKit module" ) - set(ECM_PKGCONFIG_INSTALL_DIR "${LIB_INSTALL_DIR}/pkgconfig" CACHE PATH "The directory where pkgconfig will be installed to.") + set(ECM_PKGCONFIG_INSTALL_DIR "${CMAKE_INSTALL_PREFIX}/libdata/pkgconfig" CACHE PATH "The directory where pkgconfig will be installed to.") install(FILES ${WebKit_PKGCONFIG_FILENAME} DESTINATION ${ECM_PKGCONFIG_INSTALL_DIR} COMPONENT Data) -@@ -671,6 +672,7 @@ if (NOT MACOS_BUILD_FRAMEWORKS) +@@ -671,6 +673,8 @@ if (NOT MACOS_BUILD_FRAMEWORKS) BASE_NAME Qt5WebKitWidgets DEPS "${WEBKITWIDGETS_PKGCONFIG_DEPS}" FILENAME_VAR WebKitWidgets_PKGCONFIG_FILENAME ++ INCLUDE_INSTALL_DIR "${KDE_INSTALL_INCLUDEDIR}/QtWebKitWidgets" + DESCRIPTION "Qt WebKitWidgets module" ) install(FILES ${WebKitWidgets_PKGCONFIG_FILENAME} DESTINATION ${ECM_PKGCONFIG_INSTALL_DIR} COMPONENT Data) endif () +@@ -786,6 +790,7 @@ if (COMPILER_IS_GCC_OR_CLANG) + set_source_files_properties( + qt/Api/qwebdatabase.cpp + qt/Api/qwebelement.cpp ++ qt/Api/qwebfullscreenrequest.cpp + qt/Api/qwebhistory.cpp + qt/Api/qwebhistoryinterface.cpp + qt/Api/qwebpluginfactory.cpp +@@ -795,7 +800,6 @@ if (COMPILER_IS_GCC_OR_CLANG) + + qt/WidgetApi/qgraphicswebview.cpp + qt/WidgetApi/qwebframe.cpp +- qt/WidgetApi/qwebfullscreenrequest.cpp + qt/WidgetApi/qwebinspector.cpp + qt/WidgetApi/qwebpage.cpp + qt/WidgetApi/qwebview.cpp diff --git a/www/qt5-webkit/files/patch-git_14947c-fix_build_cmake_3.10 b/www/qt5-webkit/files/patch-git_14947c-fix_build_cmake_3.10 deleted file mode 100644 index 3cf00e36853..00000000000 --- a/www/qt5-webkit/files/patch-git_14947c-fix_build_cmake_3.10 +++ /dev/null @@ -1,28 +0,0 @@ -commit 14947c04b3c19b5eb04a683081742b14c1d32786 -Author: Konstantin Tokarev -Date: Sat Oct 7 17:38:32 2017 +0300 - - [cmake] Fix build with CMake 3.10: -frtti was enabled for wrong file path - - Change-Id: I65d4f491f21c17f6d99a14259988d2ddb0d67105 - -diff --git Source/WebKit/PlatformQt.cmake Source/WebKit/PlatformQt.cmake -index 61433257a76..edfa57e97ac 100644 ---- Source/WebKit/PlatformQt.cmake -+++ Source/WebKit/PlatformQt.cmake -@@ -795,6 +795,7 @@ if (COMPILER_IS_GCC_OR_CLANG) - set_source_files_properties( - qt/Api/qwebdatabase.cpp - qt/Api/qwebelement.cpp -+ qt/Api/qwebfullscreenrequest.cpp - qt/Api/qwebhistory.cpp - qt/Api/qwebhistoryinterface.cpp - qt/Api/qwebpluginfactory.cpp -@@ -804,7 +805,6 @@ if (COMPILER_IS_GCC_OR_CLANG) - - qt/WidgetApi/qgraphicswebview.cpp - qt/WidgetApi/qwebframe.cpp -- qt/WidgetApi/qwebfullscreenrequest.cpp - qt/WidgetApi/qwebinspector.cpp - qt/WidgetApi/qwebpage.cpp - qt/WidgetApi/qwebview.cpp diff --git a/www/qutebrowser/Makefile b/www/qutebrowser/Makefile index ca11d5d67f4..36196e69cf7 100644 --- a/www/qutebrowser/Makefile +++ b/www/qutebrowser/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= qutebrowser -DISTVERSION= 1.4.2 +DISTVERSION= 1.5.0 CATEGORIES= www MASTER_SITES= CHEESESHOP diff --git a/www/qutebrowser/distinfo b/www/qutebrowser/distinfo index 468d67048b6..b48064ec98a 100644 --- a/www/qutebrowser/distinfo +++ b/www/qutebrowser/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1536043103 -SHA256 (qutebrowser-1.4.2.tar.gz) = fd5d47b0e45e40b1348caf37e8ac304256d453d147f7a930193d3c4aeb21d2de -SIZE (qutebrowser-1.4.2.tar.gz) = 3549553 +TIMESTAMP = 1538654925 +SHA256 (qutebrowser-1.5.0.tar.gz) = 179b5d0e05159a77097dffc1469eec7955a1569d9fe65870c35c1c783e6d5d1f +SIZE (qutebrowser-1.5.0.tar.gz) = 3565920 diff --git a/www/redmine-a_common_libs/Makefile b/www/redmine-a_common_libs/Makefile index 1a9d5edf740..4292cbd4c4d 100644 --- a/www/redmine-a_common_libs/Makefile +++ b/www/redmine-a_common_libs/Makefile @@ -9,7 +9,7 @@ PKGNAMEPREFIX= redmine- DISTNAME= ${BB_COMMIT} DIST_SUBDIR= ${PORTNAME}-${PORTVERSION} -MAINTAINER= feld@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Common libraries for RedMine RUN_DEPENDS= rubygem-activerecord-session_store>0:databases/rubygem-activerecord-session_store diff --git a/www/redmine-default_assign/Makefile b/www/redmine-default_assign/Makefile index d459ab5feac..b90d40e7516 100644 --- a/www/redmine-default_assign/Makefile +++ b/www/redmine-default_assign/Makefile @@ -6,7 +6,7 @@ PORTVERSION= 0.6 CATEGORIES= www PKGNAMEPREFIX= redmine- -MAINTAINER= feld@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Assign Redmine tickets by default LICENSE= GPLv2+ diff --git a/www/redmine-graphs/Makefile b/www/redmine-graphs/Makefile index d9625c00ff8..64e94f97d5b 100644 --- a/www/redmine-graphs/Makefile +++ b/www/redmine-graphs/Makefile @@ -6,7 +6,7 @@ PORTVERSION= 0.0.20170403 CATEGORIES= www PKGNAMEPREFIX= redmine- -MAINTAINER= feld@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Additional Redmine graphs LICENSE= GPLv2+ diff --git a/www/redmine-issue_templates/Makefile b/www/redmine-issue_templates/Makefile index acd75841e09..9e1383f430f 100644 --- a/www/redmine-issue_templates/Makefile +++ b/www/redmine-issue_templates/Makefile @@ -8,7 +8,7 @@ MASTER_SITES= https://bitbucket.org/akiko_pusu/redmine_issue_templates/downloads PKGNAMEPREFIX= redmine- DISTNAME= redmine_${PORTNAME}-${PORTVERSION} -MAINTAINER= feld@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Redmine project issue templates plugin LICENSE= GPLv2+ diff --git a/www/redmine-knowledgebase/Makefile b/www/redmine-knowledgebase/Makefile index d3cda9b6752..1cbaa9465ea 100644 --- a/www/redmine-knowledgebase/Makefile +++ b/www/redmine-knowledgebase/Makefile @@ -8,7 +8,7 @@ PORTREVISION= 0 CATEGORIES= www PKGNAMEPREFIX= redmine- -MAINTAINER= feld@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Knowledgebase functionality for Redmine LICENSE= MIT diff --git a/www/redmine-ldap_sync/Makefile b/www/redmine-ldap_sync/Makefile index 991c87a0651..10d49a6b617 100644 --- a/www/redmine-ldap_sync/Makefile +++ b/www/redmine-ldap_sync/Makefile @@ -7,7 +7,7 @@ CATEGORIES= www PKGNAMEPREFIX= redmine- DIST_SUBDIR= ${PORTNAME}-${PORTVERSION} -MAINTAINER= feld@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= LDAP user/group synchronization for Redmine LICENSE= GPLv3+ diff --git a/www/redmine-qa_contact/Makefile b/www/redmine-qa_contact/Makefile index 1716bce8219..12c79cc4728 100644 --- a/www/redmine-qa_contact/Makefile +++ b/www/redmine-qa_contact/Makefile @@ -6,7 +6,7 @@ PORTVERSION= 0.0.20120612 CATEGORIES= www PKGNAMEPREFIX= redmine- -MAINTAINER= feld@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Redmine QA Contact plugin NO_ARCH= yes diff --git a/www/redmine-redcarpet_formatter/Makefile b/www/redmine-redcarpet_formatter/Makefile index 48833bdc7a2..5cfd3e8bf39 100644 --- a/www/redmine-redcarpet_formatter/Makefile +++ b/www/redmine-redcarpet_formatter/Makefile @@ -7,7 +7,7 @@ DISTVERSIONPREFIX=v CATEGORIES= www PKGNAMEPREFIX= redmine- -MAINTAINER= feld@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Redmine plugin to support Markdown LICENSE= GPLv2 diff --git a/www/redmine-single_auth/Makefile b/www/redmine-single_auth/Makefile index 8a9d5a7e2b1..595df6ba06e 100644 --- a/www/redmine-single_auth/Makefile +++ b/www/redmine-single_auth/Makefile @@ -10,7 +10,7 @@ PKGNAMEPREFIX= redmine- DISTNAME= ${BB_COMMIT} DIST_SUBDIR= ${PORTNAME}-${PORTVERSION} -MAINTAINER= feld@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= SSO authentication method for Redmine RUN_DEPENDS= redmine-a_common_libs>0:www/redmine-a_common_libs diff --git a/www/redmine-wiki_notes/Makefile b/www/redmine-wiki_notes/Makefile index 9bcb5997ab4..ff26b5e673b 100644 --- a/www/redmine-wiki_notes/Makefile +++ b/www/redmine-wiki_notes/Makefile @@ -6,7 +6,7 @@ PORTVERSION= 0.0.20150125 CATEGORIES= www PKGNAMEPREFIX= redmine- -MAINTAINER= feld@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Redmine wiki notes plugin LICENSE= GPLv2 diff --git a/www/rubygem-jekyll/Makefile b/www/rubygem-jekyll/Makefile index 9e964f38477..93435a85330 100644 --- a/www/rubygem-jekyll/Makefile +++ b/www/rubygem-jekyll/Makefile @@ -27,9 +27,9 @@ RUN_DEPENDS= rubygem-addressable>=2.4:www/rubygem-addressable \ CONFLICTS_INSTALL= rubygem-jekyll2-* -NO_ARCH= yes -USE_RUBY= yes USES= gem +USE_RUBY= yes +NO_ARCH= yes PLIST_FILES= bin/jekyll diff --git a/www/rubygem-jekyll/pkg-descr b/www/rubygem-jekyll/pkg-descr index a346bd712e5..ffca117c37b 100644 --- a/www/rubygem-jekyll/pkg-descr +++ b/www/rubygem-jekyll/pkg-descr @@ -5,4 +5,4 @@ complete, static website suitable for serving with Apache or your favorite web server. This is also the engine behind GitHub Pages, which you can use to host your project's page or blog on GitHub. -WWW: http://jekyllrb.com/ +WWW: https://jekyllrb.com/ diff --git a/www/rubygem-passenger/Makefile b/www/rubygem-passenger/Makefile index 8264eea3a23..75fa1ba2309 100644 --- a/www/rubygem-passenger/Makefile +++ b/www/rubygem-passenger/Makefile @@ -3,6 +3,7 @@ PORTNAME= passenger PORTVERSION= 5.3.5 +PORTREVISION= 1 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMEPREFIX= rubygem- @@ -62,7 +63,7 @@ BUILD_DEPENDS+= rubygem-rack>=0:www/rubygem-rack RUN_DEPENDS:= ${BUILD_DEPENDS} SUB_LIST+= GEM_LIB_DIR=${GEM_LIB_DIR} RUBY=${RUBY} -SUB_FILES= pkg-message +SUB_FILES= pkg-message-${FLAVOR} PLIST_FILES= bin/passenger \ bin/passenger-config \ diff --git a/www/rubygem-passenger/files/pkg-message.in b/www/rubygem-passenger/files/pkg-message-apache.in similarity index 100% rename from www/rubygem-passenger/files/pkg-message.in rename to www/rubygem-passenger/files/pkg-message-apache.in diff --git a/www/rubygem-passenger/files/pkg-message-nginx.in b/www/rubygem-passenger/files/pkg-message-nginx.in new file mode 100644 index 00000000000..e79125579da --- /dev/null +++ b/www/rubygem-passenger/files/pkg-message-nginx.in @@ -0,0 +1,16 @@ +##################################################################### + +Please edit your nginx configuration file, and add these lines: + + server { + root %%PASSENGER_INSTALL_DIR%%; + passenger_enabled on; + passenger_ruby %%RUBY%%; + passenger_sticky_sessions on; + } + +After you restart nginx, you are ready to deploy any number of Ruby on Rails +applications on nginx, without any further Ruby on Rails-specific +configuration! + +##################################################################### diff --git a/www/tdiary/Makefile b/www/tdiary/Makefile index 11d446fd2b8..e9d5171d2a1 100644 --- a/www/tdiary/Makefile +++ b/www/tdiary/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= tdiary -PORTVERSION= 5.0.9 +PORTVERSION= 5.0.10 CATEGORIES?= www ruby MASTER_SITES= https://github.com/tdiary/tdiary-core/releases/download/v${PORTVERSION}/ DISTNAME= ${PORTNAME}-full-v${PORTVERSION} @@ -13,9 +13,9 @@ COMMENT= Web-based diary system (like weblog) written in Ruby LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/LICENSE -RUN_DEPENDS= rubygem-bundler>=1.16.1:sysutils/rubygem-bundler \ +RUN_DEPENDS= rubygem-bundler>=1.16.5:sysutils/rubygem-bundler \ rubygem-emot>=0.0.4:textproc/rubygem-emot \ - rubygem-fastimage>=2.1.3:graphics/rubygem-fastimage \ + rubygem-fastimage>=2.1.4:graphics/rubygem-fastimage \ rubygem-hikidoc>=0.1.0:textproc/rubygem-hikidoc \ rubygem-mail>=2.7.0:mail/rubygem-mail \ rubygem-rack>=2.0.5:www/rubygem-rack \ @@ -23,6 +23,7 @@ RUN_DEPENDS= rubygem-bundler>=1.16.1:sysutils/rubygem-bundler \ USES= shebangfix USE_RUBY= yes + NO_ARCH= yes NO_BUILD= yes @@ -81,7 +82,7 @@ pre-patch: @${RM} ${WRKSRC}/tmp/.gitkeep @${RM} -r ${WRKSRC}/.bundle @${RM} -r ${WRKSRC}/.vscode - @${RM} -r ${WRKSRC}/misc/lib/bundler-1.16.1 + @${RM} -r ${WRKSRC}/misc/lib/bundler-1.16.5 @${RM} -r ${WRKSRC}/public @${RM} -r ${WRKSRC}/spec @${RM} -r ${WRKSRC}/test diff --git a/www/tdiary/distinfo b/www/tdiary/distinfo index 62780531430..53a0d6c61a7 100644 --- a/www/tdiary/distinfo +++ b/www/tdiary/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1530262596 -SHA256 (tdiary-full-v5.0.9.tar.gz) = dd01c3af5916185b74aa53bb9072f40d3b492be6803aab397759b58f4cdf56de -SIZE (tdiary-full-v5.0.9.tar.gz) = 7038364 +TIMESTAMP = 1538268183 +SHA256 (tdiary-full-v5.0.10.tar.gz) = a05ee96d6ac8c0dd5a8a9176ca3788d79be54ebdcf2ac5bc9a38b54edd03bf73 +SIZE (tdiary-full-v5.0.10.tar.gz) = 7300429 diff --git a/x11-fonts/Makefile b/x11-fonts/Makefile index 9d05c7f4033..d77b39916c2 100644 --- a/x11-fonts/Makefile +++ b/x11-fonts/Makefile @@ -168,6 +168,7 @@ SUBDIR += profont SUBDIR += proggy_fonts SUBDIR += proggy_fonts-ttf + SUBDIR += psftools SUBDIR += py-QtAwesome SUBDIR += py-bdflib SUBDIR += roboto-fonts-ttf diff --git a/x11-fonts/ohsnap/Makefile b/x11-fonts/ohsnap/Makefile index dd572728af5..28b278e6061 100644 --- a/x11-fonts/ohsnap/Makefile +++ b/x11-fonts/ohsnap/Makefile @@ -5,7 +5,7 @@ PORTVERSION= 1.8.0 CATEGORIES= x11-fonts MASTER_SITES= SF/osnapfont/ -MAINTAINER= lebarondemerde@privacychain.ch +MAINTAINER= rigoletto@FreeBSD.org COMMENT= Monospaced font based on Artwiz Snap LICENSE= GPLv2 diff --git a/x11-fonts/p5-Font-TTF/Makefile b/x11-fonts/p5-Font-TTF/Makefile index 61f17c499e8..df6bd5315af 100644 --- a/x11-fonts/p5-Font-TTF/Makefile +++ b/x11-fonts/p5-Font-TTF/Makefile @@ -11,8 +11,8 @@ COMMENT= Perl module for TrueType font hacking LICENSE= ART20 -BUILD_DEPENDS= p5-IO-String>=0:devel/p5-IO-String -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-IO-String>=0:devel/p5-IO-String USES= perl5 USE_PERL5= configure diff --git a/x11-fonts/psftools/Makefile b/x11-fonts/psftools/Makefile new file mode 100644 index 00000000000..de8f74a9c08 --- /dev/null +++ b/x11-fonts/psftools/Makefile @@ -0,0 +1,21 @@ +# $FreeBSD$ + +PORTNAME= psftools +PORTVERSION= 1.0.10 +CATEGORIES= x11-fonts +MASTER_SITES= http://www.seasip.info/Unix/PSF/ + +MAINTAINER= tobik@FreeBSD.org +COMMENT= Converters for simple fixed-width bitmap fonts + +LICENSE= GPLv2 +LICENSE_FILE= ${WRKSRC}/COPYING + +USES= libtool +GNU_CONFIGURE= yes +CONFIGURE_ARGS= --disable-static +INSTALL_TARGET= install-strip + +PORTSCOUT= ignore:1 + +.include diff --git a/x11-fonts/psftools/distinfo b/x11-fonts/psftools/distinfo new file mode 100644 index 00000000000..b0d3f295d17 --- /dev/null +++ b/x11-fonts/psftools/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1538634601 +SHA256 (psftools-1.0.10.tar.gz) = 1bc03214a29c4fc461a7aa11b9a3debde419b1271fa5110273ded961774e2b6f +SIZE (psftools-1.0.10.tar.gz) = 764867 diff --git a/x11-fonts/psftools/pkg-descr b/x11-fonts/psftools/pkg-descr new file mode 100644 index 00000000000..62b4f96a20c --- /dev/null +++ b/x11-fonts/psftools/pkg-descr @@ -0,0 +1,32 @@ +The PSF Tools are an attempt to do something similar to NetPBM, for +simple fixed-width bitmap fonts. + +The current release can convert the following formats to PSF: + +- Raw (DOS-style) font +- Windows font (FNT, FON) +- Sinclair Spectrum +3 +- MDA character ROM dump +- DOS/Linux codepages (CP, CPI) +- Hercules WriteOn (WOF) +- Wyse-60 soft font +- BBC Micro soft font +- Plain text + +and PSF to the following formats: + +- Raw font +- Windows font (FNT, FON) +- Hercules WriteOn (WOF) +- DOS codepages (CPI) +- Sinclair Spectrum +3 +- BDF +- C include file +- BSD 'wsfont' kernel header +- XBM image containing all characters +- Single PBM image for each character +- Plain text +- Wyse-60 soft font +- BBC Micro soft font + +WWW: http://www.seasip.info/Unix/PSF/ diff --git a/x11-fonts/psftools/pkg-plist b/x11-fonts/psftools/pkg-plist new file mode 100644 index 00000000000..d6d0661e8b1 --- /dev/null +++ b/x11-fonts/psftools/pkg-plist @@ -0,0 +1,66 @@ +bin/bbc2psf +bin/cpi2psf +bin/cpicomp +bin/cpidcomp +bin/fnt2psf +bin/fnts2fon +bin/fon2fnts +bin/mda2psf +bin/page2cp2 +bin/psf2bbc +bin/psf2bdf +bin/psf2bsd +bin/psf2fnt +bin/psf2inc +bin/psf2pbms +bin/psf2raw +bin/psf2txt +bin/psf2wof +bin/psf2wyse +bin/psf2xbm +bin/psf2zx +bin/psfjoin +bin/psfmerge +bin/psfpages +bin/psfs2cpi +bin/psfs2mda +bin/psfxform +bin/raw2psf +bin/txt2psf +bin/wof2psf +bin/wyse2psf +bin/zx2psf +include/psflib.h +include/psfutils.h +lib/libpsf.so +lib/libpsf.so.0 +lib/libpsf.so.0.1.1 +man/man1/cpi2psf.1.gz +man/man1/cpicomp.1.gz +man/man1/cpidcomp.1.gz +man/man1/fnt2psf.1.gz +man/man1/fnts2fon.1.gz +man/man1/fon2fnts.1.gz +man/man1/mda2psf.1.gz +man/man1/psf2bdf.1.gz +man/man1/psf2bsd.1.gz +man/man1/psf2fnt.1.gz +man/man1/psf2inc.1.gz +man/man1/psf2pbms.1.gz +man/man1/psf2raw.1.gz +man/man1/psf2txt.1.gz +man/man1/psf2wof.1.gz +man/man1/psf2wyse.1.gz +man/man1/psf2xbm.1.gz +man/man1/psf2zx.1.gz +man/man1/psfjoin.1.gz +man/man1/psfmerge.1.gz +man/man1/psfpages.1.gz +man/man1/psfs2cpi.1.gz +man/man1/psfs2mda.1.gz +man/man1/psfxform.1.gz +man/man1/raw2psf.1.gz +man/man1/txt2psf.1.gz +man/man1/wof2psf.1.gz +man/man1/wyse2psf.1.gz +man/man1/zx2psf.1.gz diff --git a/x11-fonts/py-QtAwesome/Makefile b/x11-fonts/py-QtAwesome/Makefile index ea4d9dde1ee..ba2ce45a644 100644 --- a/x11-fonts/py-QtAwesome/Makefile +++ b/x11-fonts/py-QtAwesome/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= QtAwesome -DISTVERSION= 0.4.4 +DISTVERSION= 0.5.1 CATEGORIES= x11-fonts graphics python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/x11-fonts/py-QtAwesome/distinfo b/x11-fonts/py-QtAwesome/distinfo index 8c884037479..71525ca934d 100644 --- a/x11-fonts/py-QtAwesome/distinfo +++ b/x11-fonts/py-QtAwesome/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1517200463 -SHA256 (QtAwesome-0.4.4.tar.gz) = 50f9c1d9ce34e57f5b13ef76d5c87e06de9804b8dfe1c34c4ba73197200f878a -SIZE (QtAwesome-0.4.4.tar.gz) = 159621 +TIMESTAMP = 1538899692 +SHA256 (QtAwesome-0.5.1.tar.gz) = 41add5ad15659f461451afe0fb2d9eaef0294eb1067ab517b86a973e1df7c696 +SIZE (QtAwesome-0.5.1.tar.gz) = 593031 diff --git a/x11-toolkits/girara/Makefile b/x11-toolkits/girara/Makefile index 6ad61b4cd2c..0d389e631b5 100644 --- a/x11-toolkits/girara/Makefile +++ b/x11-toolkits/girara/Makefile @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= girara -PORTVERSION= 0.3.0 -PORTREVISION= 1 +PORTVERSION= 0.3.1 CATEGORIES= x11-toolkits graphics MASTER_SITES= https://pwmt.org/projects/girara/download/ \ http://www.madpilot.net/~mad/pwmt.org/ diff --git a/x11-toolkits/girara/distinfo b/x11-toolkits/girara/distinfo index cda2cda650d..61e51ff4e29 100644 --- a/x11-toolkits/girara/distinfo +++ b/x11-toolkits/girara/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1527194025 -SHA256 (girara-0.3.0.tar.xz) = b752fa5ff0a98cfa773bbcf66bb8a5e337a61cbb085d6577b3979178d17e41a2 -SIZE (girara-0.3.0.tar.xz) = 57820 +TIMESTAMP = 1538391040 +SHA256 (girara-0.3.1.tar.xz) = 3c409bac00b6628aa80c601a64e11c3ff07a3c0721ac80436eceb282cb55bcb5 +SIZE (girara-0.3.1.tar.xz) = 58148 diff --git a/x11-toolkits/ntk/Makefile b/x11-toolkits/ntk/Makefile index 6649c18e804..83a07ce201c 100644 --- a/x11-toolkits/ntk/Makefile +++ b/x11-toolkits/ntk/Makefile @@ -3,6 +3,7 @@ PORTNAME= ntk DISTVERSIONPREFIX= v DISTVERSION= 1.3.1000 +PORTREVISION= 1 CATEGORIES= x11-toolkits MAINTAINER= yuri@FreeBSD.org @@ -15,7 +16,7 @@ LIB_DEPENDS= libfontconfig.so:x11-fonts/fontconfig \ libfreetype.so:print/freetype2 \ libpng.so:graphics/png -USES= jpeg localbase:ldflags pkgconfig waf +USES= gnome jpeg localbase:ldflags pkgconfig waf USE_GITHUB= yes GH_ACCOUNT= original-male USE_GNOME= cairo @@ -39,7 +40,7 @@ post-install: s| -D_LARGEFILE64_SOURCE||; \ s| -D_FILE_OFFSET_BITS=64||' \ ${STAGEDIR}${PREFIX}/libdata/pkgconfig/ntk*.pc - @${RM} ${STAGEDIR}${PREFIX}/lib/libntk*.a.* + @${RM} ${STAGEDIR}${PREFIX}/lib/libntk*.a* # https://github.com/original-male/ntk/issues/12 @${STRIP_CMD} \ ${STAGEDIR}${PREFIX}/bin/ntk-chtheme \ ${STAGEDIR}${PREFIX}/bin/ntk-fluid \ diff --git a/x11-toolkits/ntk/pkg-plist b/x11-toolkits/ntk/pkg-plist index 48d4a6e161b..17777701f28 100644 --- a/x11-toolkits/ntk/pkg-plist +++ b/x11-toolkits/ntk/pkg-plist @@ -145,11 +145,9 @@ include/ntk/FL/names.h include/ntk/FL/themes.H include/ntk/FL/win32.H include/ntk/FL/x.H -lib/libntk.a lib/libntk.so lib/libntk.so.1 lib/libntk.so.%%SHLIB_VER%% -lib/libntk_images.a lib/libntk_images.so lib/libntk_images.so.1 lib/libntk_images.so.%%SHLIB_VER%% diff --git a/x11-toolkits/p5-Alien-wxWidgets/Makefile b/x11-toolkits/p5-Alien-wxWidgets/Makefile index 1ce8dafb235..1dbbf538b25 100644 --- a/x11-toolkits/p5-Alien-wxWidgets/Makefile +++ b/x11-toolkits/p5-Alien-wxWidgets/Makefile @@ -13,8 +13,8 @@ COMMENT= Perl5 module for building, finding and using wxWidgets binaries LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Module-Pluggable>=5.1:devel/p5-Module-Pluggable -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Module-Pluggable>=5.1:devel/p5-Module-Pluggable NO_ARCH= yes USES= perl5 compiler:env diff --git a/x11-toolkits/p5-Gtk2-Chmod/Makefile b/x11-toolkits/p5-Gtk2-Chmod/Makefile index cc9e8768786..7096dead6fb 100644 --- a/x11-toolkits/p5-Gtk2-Chmod/Makefile +++ b/x11-toolkits/p5-Gtk2-Chmod/Makefile @@ -12,9 +12,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= vvelox@vvelox.net COMMENT= Provides a dialog for getting values to use with chmod -BUILD_DEPENDS= p5-File-Stat-Bits>=0:sysutils/p5-File-Stat-Bits \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-File-Stat-Bits>=0:sysutils/p5-File-Stat-Bits \ p5-Gtk2>=1.060:x11-toolkits/p5-Gtk2 -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/x11-toolkits/p5-Gtk2-Ex-Dialogs/Makefile b/x11-toolkits/p5-Gtk2-Ex-Dialogs/Makefile index 5307cb09989..a3cf3ae019f 100644 --- a/x11-toolkits/p5-Gtk2-Ex-Dialogs/Makefile +++ b/x11-toolkits/p5-Gtk2-Ex-Dialogs/Makefile @@ -13,9 +13,9 @@ COMMENT= Useful tools for Gnome2/Gtk2 Perl GUI design LICENSE= LGPL21 -BUILD_DEPENDS= p5-File-Type>=0:devel/p5-File-Type \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-File-Type>=0:devel/p5-File-Type \ p5-Gtk2-Ex-Utils>=0:x11-toolkits/p5-Gtk2-Ex-Utils -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/x11-toolkits/p5-Gtk2-Ex-PodViewer/Makefile b/x11-toolkits/p5-Gtk2-Ex-PodViewer/Makefile index 7e348971c1c..2041018198c 100644 --- a/x11-toolkits/p5-Gtk2-Ex-PodViewer/Makefile +++ b/x11-toolkits/p5-Gtk2-Ex-PodViewer/Makefile @@ -14,12 +14,12 @@ COMMENT= Displays plain old documentation LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Gtk2>=0:x11-toolkits/p5-Gtk2 \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Gtk2>=0:x11-toolkits/p5-Gtk2 \ p5-IO-stringy>=0:devel/p5-IO-stringy \ p5-Locale-gettext>=0:devel/p5-Locale-gettext \ p5-Gtk2-Ex-Simple-List>=0.50:x11-toolkits/p5-Gtk2-Ex-Simple-List \ p5-Pod-Simple>=0:textproc/p5-Pod-Simple -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/x11-toolkits/p5-Gtk2-Ex-Simple-List/Makefile b/x11-toolkits/p5-Gtk2-Ex-Simple-List/Makefile index ab09910c318..b1084bbb0d0 100644 --- a/x11-toolkits/p5-Gtk2-Ex-Simple-List/Makefile +++ b/x11-toolkits/p5-Gtk2-Ex-Simple-List/Makefile @@ -14,9 +14,9 @@ COMMENT= Simple interface to complex MVC list widget LICENSE= LGPL21 LGPL3 LICENSE_COMB= dual -BUILD_DEPENDS= p5-Glib2>=1.00:devel/p5-Glib2 \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Glib2>=1.00:devel/p5-Glib2 \ p5-Gtk2>=1.060:x11-toolkits/p5-Gtk2 -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/x11-toolkits/p5-Gtk2-ImageView/Makefile b/x11-toolkits/p5-Gtk2-ImageView/Makefile index 58a44058c21..47682eb6a1a 100644 --- a/x11-toolkits/p5-Gtk2-ImageView/Makefile +++ b/x11-toolkits/p5-Gtk2-ImageView/Makefile @@ -12,12 +12,12 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Perl bindings to the GtkImageView image viewer widget -BUILD_DEPENDS= p5-Cairo>=0:graphics/p5-Cairo \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Cairo>=0:graphics/p5-Cairo \ p5-ExtUtils-Depends>=0.2:devel/p5-ExtUtils-Depends \ p5-ExtUtils-PkgConfig>=1.03:devel/p5-ExtUtils-PkgConfig \ p5-Gtk2>=1.140:x11-toolkits/p5-Gtk2 LIB_DEPENDS= libgtkimageview.so:x11-toolkits/gtkimageview -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/x11-toolkits/p5-Gtk2-TrayIcon/Makefile b/x11-toolkits/p5-Gtk2-TrayIcon/Makefile index 57e4422d78f..bef0ca05ed6 100644 --- a/x11-toolkits/p5-Gtk2-TrayIcon/Makefile +++ b/x11-toolkits/p5-Gtk2-TrayIcon/Makefile @@ -11,11 +11,11 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Perl interface to the EggTrayIcon library -BUILD_DEPENDS= p5-Cairo>=0:graphics/p5-Cairo \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Cairo>=0:graphics/p5-Cairo \ p5-ExtUtils-Depends>=0:devel/p5-ExtUtils-Depends \ p5-ExtUtils-PkgConfig>=0:devel/p5-ExtUtils-PkgConfig \ p5-Gtk2>=0:x11-toolkits/p5-Gtk2 -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/x11-toolkits/p5-Gtk3/Makefile b/x11-toolkits/p5-Gtk3/Makefile index 4407f64275c..1a351a00670 100644 --- a/x11-toolkits/p5-Gtk3/Makefile +++ b/x11-toolkits/p5-Gtk3/Makefile @@ -13,9 +13,9 @@ COMMENT= Perl module for Gtk+ 3.x graphical user interface library LICENSE= LGPL21+ LICENSE_FILE_LGPL21= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Cairo-GObject>=1:devel/p5-Cairo-GObject \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Cairo-GObject>=1:devel/p5-Cairo-GObject \ p5-Glib-Object-Introspection>=0.016:devel/p5-Glib-Object-Introspection -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/x11-toolkits/p5-Tk-Action/Makefile b/x11-toolkits/p5-Tk-Action/Makefile index 00498708cc3..91c9d97b186 100644 --- a/x11-toolkits/p5-Tk-Action/Makefile +++ b/x11-toolkits/p5-Tk-Action/Makefile @@ -14,11 +14,11 @@ COMMENT= Action abstraction for Tk LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Moose>=0.92:devel/p5-Moose \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Moose>=0.92:devel/p5-Moose \ p5-MooseX-Has-Sugar>=0:devel/p5-MooseX-Has-Sugar \ p5-MooseX-SemiAffordanceAccessor>=0:devel/p5-MooseX-SemiAffordanceAccessor \ p5-Tk-Sugar>=0:x11-toolkits/p5-Tk-Sugar -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USE_PERL5= configure diff --git a/x11-toolkits/p5-Tk-Autoscroll/Makefile b/x11-toolkits/p5-Tk-Autoscroll/Makefile index 59c5872021e..3546982a0d9 100644 --- a/x11-toolkits/p5-Tk-Autoscroll/Makefile +++ b/x11-toolkits/p5-Tk-Autoscroll/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Tk::Autoscroll - space invaders-like scrolling -BUILD_DEPENDS= p5-Tk>=0:x11-toolkits/p5-Tk -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Tk>=0:x11-toolkits/p5-Tk USES= perl5 USE_PERL5= configure diff --git a/x11-toolkits/p5-Tk-ColourChooser/Makefile b/x11-toolkits/p5-Tk-ColourChooser/Makefile index 2e9a2a44265..f1f6929db3d 100644 --- a/x11-toolkits/p5-Tk-ColourChooser/Makefile +++ b/x11-toolkits/p5-Tk-ColourChooser/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Perl/Tk module providing a Colour selection dialogue box -BUILD_DEPENDS= p5-Tk>=0:x11-toolkits/p5-Tk -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Tk>=0:x11-toolkits/p5-Tk USES= perl5 USE_PERL5= configure diff --git a/x11-toolkits/p5-Tk-Contrib/Makefile b/x11-toolkits/p5-Tk-Contrib/Makefile index 0a363f355f9..cc81860a3d4 100644 --- a/x11-toolkits/p5-Tk-Contrib/Makefile +++ b/x11-toolkits/p5-Tk-Contrib/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Contributed Tk widgets -BUILD_DEPENDS= p5-Tk>=804:x11-toolkits/p5-Tk -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Tk>=804:x11-toolkits/p5-Tk USES= perl5 USE_PERL5= configure diff --git a/x11-toolkits/p5-Tk-CursorControl/Makefile b/x11-toolkits/p5-Tk-CursorControl/Makefile index c946d467ac1..cf3015f776f 100644 --- a/x11-toolkits/p5-Tk-CursorControl/Makefile +++ b/x11-toolkits/p5-Tk-CursorControl/Makefile @@ -14,8 +14,8 @@ COMMENT= Manipulate the mouse cursor programmatically LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Tk>=800.015:x11-toolkits/p5-Tk -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Tk>=800.015:x11-toolkits/p5-Tk ALL_TARGETS= pure_install NO_ARCH= yes diff --git a/x11-toolkits/p5-Tk-DKW/Makefile b/x11-toolkits/p5-Tk-DKW/Makefile index 51a9fe66e0d..dfb27094062 100644 --- a/x11-toolkits/p5-Tk-DKW/Makefile +++ b/x11-toolkits/p5-Tk-DKW/Makefile @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Collection of Tk widgets -BUILD_DEPENDS= p5-Tk>=804:x11-toolkits/p5-Tk \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Tk>=804:x11-toolkits/p5-Tk \ p5-Tk-Contrib>=0.07:x11-toolkits/p5-Tk-Contrib -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure diff --git a/x11-toolkits/p5-Tk-Date/Makefile b/x11-toolkits/p5-Tk-Date/Makefile index 22fdf74b499..81481dfbf5c 100644 --- a/x11-toolkits/p5-Tk-Date/Makefile +++ b/x11-toolkits/p5-Tk-Date/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Tk::Date - a date/time widget for perl/Tk -BUILD_DEPENDS= p5-Tk-GBARR>=0:x11-toolkits/p5-Tk-GBARR -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Tk-GBARR>=0:x11-toolkits/p5-Tk-GBARR USES= perl5 USE_PERL5= configure diff --git a/x11-toolkits/p5-Tk-DynaTabFrame/Makefile b/x11-toolkits/p5-Tk-DynaTabFrame/Makefile index 4fa7272bd2c..1cf9a8ce3f7 100644 --- a/x11-toolkits/p5-Tk-DynaTabFrame/Makefile +++ b/x11-toolkits/p5-Tk-DynaTabFrame/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= NoteBook widget with orientable, dynamically stacking tabs -BUILD_DEPENDS= p5-Tk>=804.027:x11-toolkits/p5-Tk -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Tk>=804.027:x11-toolkits/p5-Tk USES= perl5 USE_PERL5= configure diff --git a/x11-toolkits/p5-Tk-Enscript/Makefile b/x11-toolkits/p5-Tk-Enscript/Makefile index 2d69f258db5..a7030fb1f27 100644 --- a/x11-toolkits/p5-Tk-Enscript/Makefile +++ b/x11-toolkits/p5-Tk-Enscript/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Tk::Enscript - a text-to-postscript converter using Tk::Canvas -BUILD_DEPENDS= p5-Tk>=0:x11-toolkits/p5-Tk -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Tk>=0:x11-toolkits/p5-Tk USES= perl5 USE_PERL5= configure diff --git a/x11-toolkits/p5-Tk-FileDialog/Makefile b/x11-toolkits/p5-Tk-FileDialog/Makefile index d7a0f8dfa59..1485ec124dd 100644 --- a/x11-toolkits/p5-Tk-FileDialog/Makefile +++ b/x11-toolkits/p5-Tk-FileDialog/Makefile @@ -14,8 +14,8 @@ COMMENT= Tk::FileDialog - A file selector dialog for perl/Tk LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Tk>=0:x11-toolkits/p5-Tk -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Tk>=0:x11-toolkits/p5-Tk USES= perl5 USE_PERL5= configure diff --git a/x11-toolkits/p5-Tk-FontDialog/Makefile b/x11-toolkits/p5-Tk-FontDialog/Makefile index 65c4659cee9..cad251fb69f 100644 --- a/x11-toolkits/p5-Tk-FontDialog/Makefile +++ b/x11-toolkits/p5-Tk-FontDialog/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= pi@FreeBSD.org COMMENT= Font dialog widget -BUILD_DEPENDS= p5-Tk>=804:x11-toolkits/p5-Tk -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Tk>=804:x11-toolkits/p5-Tk USES= perl5 USE_PERL5= configure diff --git a/x11-toolkits/p5-Tk-GBARR/Makefile b/x11-toolkits/p5-Tk-GBARR/Makefile index ff2e6fd2ef1..d16c994965b 100644 --- a/x11-toolkits/p5-Tk-GBARR/Makefile +++ b/x11-toolkits/p5-Tk-GBARR/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Some collection of Tk Widgets -BUILD_DEPENDS= p5-Tk>=0:x11-toolkits/p5-Tk -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Tk>=0:x11-toolkits/p5-Tk USES= perl5 USE_PERL5= configure diff --git a/x11-toolkits/p5-Tk-Getopt/Makefile b/x11-toolkits/p5-Tk-Getopt/Makefile index f0d177fe500..11964813b03 100644 --- a/x11-toolkits/p5-Tk-Getopt/Makefile +++ b/x11-toolkits/p5-Tk-Getopt/Makefile @@ -13,9 +13,9 @@ COMMENT= User configuration window for Tk with interface to Getopt::Long LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Tk>=804:x11-toolkits/p5-Tk \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Tk>=804:x11-toolkits/p5-Tk \ p5-Tk-FontDialog>=0:x11-toolkits/p5-Tk-FontDialog -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 diff --git a/x11-toolkits/p5-Tk-HistEntry/Makefile b/x11-toolkits/p5-Tk-HistEntry/Makefile index 44579f48c37..1f8ae666bbd 100644 --- a/x11-toolkits/p5-Tk-HistEntry/Makefile +++ b/x11-toolkits/p5-Tk-HistEntry/Makefile @@ -13,8 +13,8 @@ COMMENT= Tk::HistEntry - Entry widget with history capability LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Tk>=0:x11-toolkits/p5-Tk -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Tk>=0:x11-toolkits/p5-Tk NO_ARCH= yes USES= perl5 diff --git a/x11-toolkits/p5-Tk-JComboBox/Makefile b/x11-toolkits/p5-Tk-JComboBox/Makefile index 4609717973b..1acb4b5f9dc 100644 --- a/x11-toolkits/p5-Tk-JComboBox/Makefile +++ b/x11-toolkits/p5-Tk-JComboBox/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Contains a Label or Entry, a Button, and a Listbox -BUILD_DEPENDS= p5-Tk>=804.027:x11-toolkits/p5-Tk -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Tk>=804.027:x11-toolkits/p5-Tk USES= perl5 USE_PERL5= configure diff --git a/x11-toolkits/p5-Tk-ResizeButton/Makefile b/x11-toolkits/p5-Tk-ResizeButton/Makefile index 57689cccc2c..7759dcdbeb7 100644 --- a/x11-toolkits/p5-Tk-ResizeButton/Makefile +++ b/x11-toolkits/p5-Tk-ResizeButton/Makefile @@ -14,8 +14,8 @@ COMMENT= Resizable button to be used in a Tk::HList column header LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Tk>=0:x11-toolkits/p5-Tk -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Tk>=0:x11-toolkits/p5-Tk USES= perl5 USE_PERL5= configure diff --git a/x11-toolkits/p5-Tk-Role-Dialog/Makefile b/x11-toolkits/p5-Tk-Role-Dialog/Makefile index c01eac5a290..dca701d34be 100644 --- a/x11-toolkits/p5-Tk-Role-Dialog/Makefile +++ b/x11-toolkits/p5-Tk-Role-Dialog/Makefile @@ -14,13 +14,13 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Moose>=0.92:devel/p5-Moose \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Moose>=0.92:devel/p5-Moose \ p5-MooseX-Has-Sugar>=0:devel/p5-MooseX-Has-Sugar \ p5-MooseX-Types-Path-Class>=0:devel/p5-MooseX-Types-Path-Class \ p5-Tk>=0:x11-toolkits/p5-Tk \ p5-Tk-Role-HasWidgets>=${PORTVERSION}:x11-toolkits/p5-Tk-Role-HasWidgets \ p5-Tk-Sugar>=0:x11-toolkits/p5-Tk-Sugar -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USE_PERL5= modbuild diff --git a/x11-toolkits/p5-Tk-Role-HasWidgets/Makefile b/x11-toolkits/p5-Tk-Role-HasWidgets/Makefile index caccc71cf64..3bd27d6dd1a 100644 --- a/x11-toolkits/p5-Tk-Role-HasWidgets/Makefile +++ b/x11-toolkits/p5-Tk-Role-HasWidgets/Makefile @@ -14,9 +14,9 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= p5-Moose>=0.92:devel/p5-Moose \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Moose>=0.92:devel/p5-Moose \ p5-MooseX-Has-Sugar>=0:devel/p5-MooseX-Has-Sugar -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USE_PERL5= modbuild diff --git a/x11-toolkits/p5-Tk-Splashscreen/Makefile b/x11-toolkits/p5-Tk-Splashscreen/Makefile index 041a925b88e..2bed2dd5a2a 100644 --- a/x11-toolkits/p5-Tk-Splashscreen/Makefile +++ b/x11-toolkits/p5-Tk-Splashscreen/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Tk::Splashscreen, display a Splashscreen during program initialization -BUILD_DEPENDS= p5-Tk>=0:x11-toolkits/p5-Tk -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Tk>=0:x11-toolkits/p5-Tk USES= perl5 USE_PERL5= configure diff --git a/x11-toolkits/p5-Tk-Sugar/Makefile b/x11-toolkits/p5-Tk-Sugar/Makefile index 7e2cdb290ff..a232dc1a52b 100644 --- a/x11-toolkits/p5-Tk-Sugar/Makefile +++ b/x11-toolkits/p5-Tk-Sugar/Makefile @@ -14,8 +14,8 @@ COMMENT= Sugar syntax for Tk LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Sub-Exporter>=0:devel/p5-Sub-Exporter -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Sub-Exporter>=0:devel/p5-Sub-Exporter NO_ARCH= yes USE_PERL5= configure diff --git a/x11-toolkits/p5-Tk-TableMatrix/Makefile b/x11-toolkits/p5-Tk-TableMatrix/Makefile index 0b0c559d4a1..2f764ebcef0 100644 --- a/x11-toolkits/p5-Tk-TableMatrix/Makefile +++ b/x11-toolkits/p5-Tk-TableMatrix/Makefile @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Table/matrix extension to perl/tk for displaying table formatted data -BUILD_DEPENDS= p5-Tk>=0:x11-toolkits/p5-Tk -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Tk>=0:x11-toolkits/p5-Tk USES= perl5 USE_PERL5= configure diff --git a/x11-toolkits/p5-Tk-ToolBar/Makefile b/x11-toolkits/p5-Tk-ToolBar/Makefile index 349393bd766..acb106f13d7 100644 --- a/x11-toolkits/p5-Tk-ToolBar/Makefile +++ b/x11-toolkits/p5-Tk-ToolBar/Makefile @@ -13,8 +13,8 @@ COMMENT= Toolbar widget for Perl/Tk LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Tk>=0:x11-toolkits/p5-Tk -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Tk>=0:x11-toolkits/p5-Tk TEST_DEPENDS= p5-Test-Pod>=1.14:devel/p5-Test-Pod NO_ARCH= yes diff --git a/x11-toolkits/p5-Tk-WaitBox/Makefile b/x11-toolkits/p5-Tk-WaitBox/Makefile index 8da8eddcf8e..110008b5ecc 100644 --- a/x11-toolkits/p5-Tk-WaitBox/Makefile +++ b/x11-toolkits/p5-Tk-WaitBox/Makefile @@ -10,8 +10,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Wait Dialog for Perl/Tk -BUILD_DEPENDS= p5-Tk>=804.027:x11-toolkits/p5-Tk -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Tk>=804.027:x11-toolkits/p5-Tk USES= perl5 USE_PERL5= configure diff --git a/x11-toolkits/p5-Wx/Makefile b/x11-toolkits/p5-Wx/Makefile index 83ec75988cd..580ea62ad7f 100644 --- a/x11-toolkits/p5-Wx/Makefile +++ b/x11-toolkits/p5-Wx/Makefile @@ -14,9 +14,9 @@ COMMENT= Perl5 interface to the wxWidgets cross-platform GUI toolkit LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-ExtUtils-XSpp>=0.16.03:devel/p5-ExtUtils-XSpp \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-ExtUtils-XSpp>=0.16.03:devel/p5-ExtUtils-XSpp \ p5-Alien-wxWidgets>=0.25:x11-toolkits/p5-Alien-wxWidgets -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= compiler:c++11-lib perl5 USE_CXXSTD= c++11 diff --git a/x11-toolkits/rubygem-tk/Makefile b/x11-toolkits/rubygem-tk/Makefile index 571ab604e4e..ff6c3a19cf1 100644 --- a/x11-toolkits/rubygem-tk/Makefile +++ b/x11-toolkits/rubygem-tk/Makefile @@ -3,7 +3,7 @@ PORTNAME= tk PORTVERSION= 0.2.0 CATEGORIES= x11-toolkits rubygems -MASTER_SITES= https://rubygems.org/downloads/ +MASTER_SITES= RG MAINTAINER= nmingotti@gmail.com COMMENT= Ruby interface to TclTk-8.6 @@ -11,8 +11,6 @@ COMMENT= Ruby interface to TclTk-8.6 LICENSE= BSD2CLAUSE LIB_DEPENDS= libunwind.so:devel/libunwind -RUN_DEPENDS= tcl86>=${PORTVERSION}:lang/tcl86 \ - tk86>=${PORTVERSION}:x11-toolkits/tk86 CONFIGURE_ARGS=--with-tcltkversion=8.6,8.6 \ --with-tk-include=${LOCALBASE}/include/tk8.6 \ diff --git a/x11-wm/hs-xmonad-contrib/Makefile b/x11-wm/hs-xmonad-contrib/Makefile index 7b3afbeaacb..ac427f06582 100644 --- a/x11-wm/hs-xmonad-contrib/Makefile +++ b/x11-wm/hs-xmonad-contrib/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= xmonad-contrib -PORTVERSION= 0.14 +PORTVERSION= 0.15 CATEGORIES= x11-wm haskell MAINTAINER= haskell@FreeBSD.org diff --git a/x11-wm/hs-xmonad-contrib/distinfo b/x11-wm/hs-xmonad-contrib/distinfo index e7683ded120..ae21decbffb 100644 --- a/x11-wm/hs-xmonad-contrib/distinfo +++ b/x11-wm/hs-xmonad-contrib/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1538003068 -SHA256 (cabal/xmonad-contrib-0.14.tar.gz) = deccbc44f19977fc860024d2eb2ff63b5856058e3b078d16c234bb05fbe0c098 -SIZE (cabal/xmonad-contrib-0.14.tar.gz) = 523437 +TIMESTAMP = 1538777402 +SHA256 (cabal/xmonad-contrib-0.15.tar.gz) = ba7686007037fc081de09fc05914fbb84cad8123e1f4eedb8895c863fcfb3e65 +SIZE (cabal/xmonad-contrib-0.15.tar.gz) = 524285 diff --git a/x11-wm/hs-xmonad/Makefile b/x11-wm/hs-xmonad/Makefile index acb26184355..7e2e74054b6 100644 --- a/x11-wm/hs-xmonad/Makefile +++ b/x11-wm/hs-xmonad/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= xmonad -PORTVERSION= 0.14 +PORTVERSION= 0.15 CATEGORIES= x11-wm haskell MAINTAINER= haskell@FreeBSD.org @@ -18,7 +18,10 @@ MAN1SRC= man EXECUTABLE= xmonad -FLAGS_DISABLE= testing +OPTIONS_DEFINE= EXAMPLES + +INSTALL_PORTEXAMPLES= ${INSTALL_DATA} ${WRKSRC}/man/xmonad.hs \ + ${STAGEDIR}${EXAMPLESDIR} .include "${.CURDIR}/../../lang/ghc/bsd.cabal.mk" diff --git a/x11-wm/hs-xmonad/distinfo b/x11-wm/hs-xmonad/distinfo index 05d33c21573..c0d47d70114 100644 --- a/x11-wm/hs-xmonad/distinfo +++ b/x11-wm/hs-xmonad/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1538002916 -SHA256 (cabal/xmonad-0.14.tar.gz) = a456d091373e8d5cd7635917171763b1216814aea4a476b9ceb9cb7315980353 -SIZE (cabal/xmonad-0.14.tar.gz) = 65744 +TIMESTAMP = 1538773720 +SHA256 (cabal/xmonad-0.15.tar.gz) = 4a7948e6eee5e34a27d15444589ade3b3fa1adecadbf37b943cff8348380f928 +SIZE (cabal/xmonad-0.15.tar.gz) = 68822 diff --git a/x11/admiral/Makefile b/x11/admiral/Makefile index 143d0bad685..8de09ef7caf 100644 --- a/x11/admiral/Makefile +++ b/x11/admiral/Makefile @@ -7,7 +7,7 @@ DISTVERSIONSUFFIX= -g5a9f33b PORTREVISION= 1 CATEGORIES= x11 -MAINTAINER= lebarondemerde@privacychain.ch +MAINTAINER= rigoletto@FreeBSD.org COMMENT= Merge concurrent outputs for a status bar LICENSE= BSD2CLAUSE diff --git a/x11/leechcraft/Makefile b/x11/leechcraft/Makefile index 6c030831182..f2efd60ea5c 100644 --- a/x11/leechcraft/Makefile +++ b/x11/leechcraft/Makefile @@ -3,7 +3,7 @@ PORTNAME= leechcraft PORTVERSION= 0.6.70 -PORTREVISION= 34 +PORTREVISION= 35 CATEGORIES= x11 MASTER_SITES= http://dist.leechcraft.org/LeechCraft/0.6.70/ @@ -78,6 +78,7 @@ BITTORRENT_DESC= Full-featured BitTorrent client plugin BITTORRENT_CMAKE_ON= -DENABLE_TORRENT:BOOL=true BITTORRENT_CMAKE_OFF= -DENABLE_TORRENT:BOOL=false BITTORRENT_LIB_DEPENDS= libtorrent-rasterbar.so:net-p2p/libtorrent-rasterbar +BITTORRENT_BROKEN= see https://dev.leechcraft.org/issues/2062 BLASQ_DESC= Cloud image storage services client (like Flickr or Picasa) BLASQ_CMAKE_ON= -DENABLE_BLASQ:BOOL=true diff --git a/x11/p5-X11-IdleTime/Makefile b/x11/p5-X11-IdleTime/Makefile index ca2935b0458..537cb295ddf 100644 --- a/x11/p5-X11-IdleTime/Makefile +++ b/x11/p5-X11-IdleTime/Makefile @@ -13,9 +13,9 @@ COMMENT= Perl module that reports number of seconds that X11 has been idle LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Inline>=0.44:devel/p5-Inline \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Inline>=0.44:devel/p5-Inline \ p5-Inline-C>=0.44:devel/p5-Inline-C -RUN_DEPENDS:= ${BUILD_DEPENDS} MAKE_JOBS_UNSAFE= yes USES= perl5 diff --git a/x11/p5-X11-Protocol-Other/Makefile b/x11/p5-X11-Protocol-Other/Makefile index d2bb7c2e528..9e4973e2584 100644 --- a/x11/p5-X11-Protocol-Other/Makefile +++ b/x11/p5-X11-Protocol-Other/Makefile @@ -13,8 +13,8 @@ COMMENT= Module for window manager related functions for use by client programs LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/COPYING -BUILD_DEPENDS= p5-X11-Protocol>=0:x11/p5-X11-Protocol -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-X11-Protocol>=0:x11/p5-X11-Protocol USES= perl5 shebangfix USE_PERL5= configure diff --git a/x11/p5-X11-XCB/Makefile b/x11/p5-X11-XCB/Makefile index 48913f8b7dc..96f4926ddeb 100644 --- a/x11/p5-X11-XCB/Makefile +++ b/x11/p5-X11-XCB/Makefile @@ -16,7 +16,8 @@ LICENSE_COMB= dual LIB_DEPENDS= libxcb.so:x11/libxcb \ libxcb-util.so:x11/xcb-util \ libxcb-icccm.so:x11/xcb-util-wm -BUILD_DEPENDS= \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= \ ${LOCALBASE}/share/xcb/xcb.xsd:x11/xcb-proto \ p5-Data-Dump>=0:devel/p5-Data-Dump \ p5-Mouse>=0:devel/p5-Mouse \ @@ -29,7 +30,6 @@ BUILD_DEPENDS= \ p5-XML-Descent>=0:textproc/p5-XML-Descent \ p5-XML-Simple>=0:textproc/p5-XML-Simple \ p5-XS-Object-Magic>=0:devel/p5-XS-Object-Magic -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= localbase perl5 USE_PERL5= configure diff --git a/x11/p5-X11-Xlib/Makefile b/x11/p5-X11-Xlib/Makefile index b8482849bb6..67fd9de911d 100644 --- a/x11/p5-X11-Xlib/Makefile +++ b/x11/p5-X11-Xlib/Makefile @@ -13,11 +13,11 @@ COMMENT= Low-level access to the X11 library LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Devel-CheckLib>=0:devel/p5-Devel-CheckLib \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Devel-CheckLib>=0:devel/p5-Devel-CheckLib \ p5-ExtUtils-Depends>=0:devel/p5-ExtUtils-Depends \ p5-Try-Tiny>=0:lang/p5-Try-Tiny -RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_XORG= x11 xcomposite xext xfixes xinerama xorgproto xrender xtst diff --git a/x11/p5-XTerm-Conf/Makefile b/x11/p5-XTerm-Conf/Makefile index 93f653e3759..fbd369e3f39 100644 --- a/x11/p5-XTerm-Conf/Makefile +++ b/x11/p5-XTerm-Conf/Makefile @@ -13,8 +13,8 @@ COMMENT= Perl module that changes configuration of a running xterm LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-Term-ReadKey>=2.32:devel/p5-Term-ReadKey -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Term-ReadKey>=2.32:devel/p5-Term-ReadKey USES= perl5 USE_PERL5= configure diff --git a/x11/polybar/Makefile b/x11/polybar/Makefile index 70713bef8c8..8615d044073 100644 --- a/x11/polybar/Makefile +++ b/x11/polybar/Makefile @@ -4,7 +4,7 @@ PORTNAME= polybar DISTVERSION= 3.2.1 CATEGORIES= x11 -MAINTAINER= lebarondemerde@privacychain.ch +MAINTAINER= rigoletto@FreeBSD.org COMMENT= Fast and easy-to-use status bar LICENSE= MIT diff --git a/x11/xfce4-whiskermenu-plugin/Makefile b/x11/xfce4-whiskermenu-plugin/Makefile index fd9a84e85d4..d77bd260179 100644 --- a/x11/xfce4-whiskermenu-plugin/Makefile +++ b/x11/xfce4-whiskermenu-plugin/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= xfce4-whiskermenu-plugin -PORTVERSION= 2.2.1 +PORTVERSION= 2.3.0 CATEGORIES= x11 xfce MASTER_SITES= XFCE/src/panel-plugins/${PORTNAME}/${PORTVERSION:R} DIST_SUBDIR= xfce4 @@ -13,16 +13,18 @@ COMMENT= Alternate menu for the Xfce Desktop LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING +USES= cmake:outsource compiler:c++14-lang gettext-tools localbase pkgconfig \ + tar:bzip2 xfce:gtk3 +USE_GNOME= gtk30 cairo +USE_XFCE= panel + +INSTALLS_ICONS= yes + OPTIONS_DEFINE= NLS OPTIONS_SUB= yes NLS_USES= gettext-runtime -USES= cmake:outsource gettext-tools localbase pkgconfig tar:bzip2 xfce:gtk3 -USE_GNOME= gtk30 cairo -USE_XFCE= panel -INSTALLS_ICONS= yes - post-patch-NLS-off: @${REINPLACE_CMD} '/add_subdirectory(po)/d' ${WRKSRC}/CMakeLists.txt diff --git a/x11/xfce4-whiskermenu-plugin/distinfo b/x11/xfce4-whiskermenu-plugin/distinfo index ba97a49e269..69ad7581d77 100644 --- a/x11/xfce4-whiskermenu-plugin/distinfo +++ b/x11/xfce4-whiskermenu-plugin/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1531505600 -SHA256 (xfce4/xfce4-whiskermenu-plugin-2.2.1.tar.bz2) = b5f8efcc94cb26e4394ae599ac5955d745f3c11c39605036709ede5454f302b9 -SIZE (xfce4/xfce4-whiskermenu-plugin-2.2.1.tar.bz2) = 145751 +TIMESTAMP = 1538415431 +SHA256 (xfce4/xfce4-whiskermenu-plugin-2.3.0.tar.bz2) = 7e569bb0dff7e3db3d964e23323f54c6de7249741c6a0e33a0fa501d83040b16 +SIZE (xfce4/xfce4-whiskermenu-plugin-2.3.0.tar.bz2) = 156013 diff --git a/x11/xfce4-whiskermenu-plugin/pkg-plist b/x11/xfce4-whiskermenu-plugin/pkg-plist index 7d7e1359704..0f3f61646a0 100644 --- a/x11/xfce4-whiskermenu-plugin/pkg-plist +++ b/x11/xfce4-whiskermenu-plugin/pkg-plist @@ -18,6 +18,7 @@ share/icons/hicolor/scalable/apps/xfce4-whiskermenu.svg %%NLS%%share/locale/ca/LC_MESSAGES/xfce4-whiskermenu-plugin.mo %%NLS%%share/locale/ca@valencia/LC_MESSAGES/xfce4-whiskermenu-plugin.mo %%NLS%%share/locale/cs/LC_MESSAGES/xfce4-whiskermenu-plugin.mo +%%NLS%%share/locale/cy/LC_MESSAGES/xfce4-whiskermenu-plugin.mo %%NLS%%share/locale/da/LC_MESSAGES/xfce4-whiskermenu-plugin.mo %%NLS%%share/locale/de/LC_MESSAGES/xfce4-whiskermenu-plugin.mo %%NLS%%share/locale/el/LC_MESSAGES/xfce4-whiskermenu-plugin.mo