notbugAs an Amazon Associate I earn from qualifying purchases.
Want a good read? Try FreeBSD Mastery: Jails (IT Mastery Book 15)
Want a good monitor light? See my photosAll times are UTC
Ukraine
This referral link gives you 10% off a Fastmail.com account and gives me a discount on my Fastmail account.

Get notified when packages are built

A new feature has been added. FreshPorts already tracks package built by the FreeBSD project. This information is displayed on each port page. You can now get an email when FreshPorts notices a new package is available for something on one of your watch lists. However, you must opt into that. Click on Report Subscriptions on the right, and New Package Notification box, and click on Update.

Finally, under Watch Lists, click on ABI Package Subscriptions to select your ABI (e.g. FreeBSD:14:amd64) & package set (latest/quarterly) combination for a given watch list. This is what FreshPorts will look for.

non port: x11-toolkits/p5-Prima/Makefile

Number of commits found: 87

Sunday, 11 Feb 2024
11:48 Piotr Kubaj (pkubaj) search for other commits by this committer
x11-toolkits/p5-Prima: fix build on 32-bits

img/codec_Xpm.c:635:21: error: incompatible function pointer types assigning to
'Bool (*)(PImgCodec, PImgLoadFileInstance)' (aka 'long (*)(struct ImgCodec *,
struct _ImgLoadFileInstance *)') from 'int (PImgCodec, PImgLoadFileInstance)'
(aka 'int (struct ImgCodec *, struct _ImgLoadFileInstance *)')
[-Wincompatible-function-pointer-types]
        vmt. load          = load;
                           ^ ~~~~
img/codec_Xpm.c:639:21: error: incompatible function pointer types assigning to
'Bool (*)(PImgCodec, PImgSaveFileInstance)' (aka 'long (*)(struct ImgCodec *,
struct _ImgSaveFileInstance *)') from 'int (PImgCodec, PImgSaveFileInstance)'
(aka 'int (struct ImgCodec *, struct _ImgSaveFileInstance *)')
[-Wincompatible-function-pointer-types]
        vmt. save          = save;
                           ^ ~~~~
commit hash: 5c4db1815ffa90d991a659bd469f6e4cf46a47a2 commit hash: 5c4db1815ffa90d991a659bd469f6e4cf46a47a2 commit hash: 5c4db1815ffa90d991a659bd469f6e4cf46a47a2 commit hash: 5c4db1815ffa90d991a659bd469f6e4cf46a47a2 5c4db18
Saturday, 23 Dec 2023
18:14 Nuno Teixeira (eduardo) search for other commits by this committer
*/*: Bump consumers of x11-toolkits/gtk30

New version of gtk3 in tree
commit hash: 3572ca3e01dedf1fe5b3776bd164e123252f5ef5 commit hash: 3572ca3e01dedf1fe5b3776bd164e123252f5ef5 commit hash: 3572ca3e01dedf1fe5b3776bd164e123252f5ef5 commit hash: 3572ca3e01dedf1fe5b3776bd164e123252f5ef5 3572ca3
Friday, 28 Jul 2023
17:13 Daniel Engberg (diizzy) search for other commits by this committer
*/*: Bump jpeg-turbo users treewide

New major version 3.0.0
commit hash: 664a2fa1e56e670a356f54c94389bdb47d868f3f commit hash: 664a2fa1e56e670a356f54c94389bdb47d868f3f commit hash: 664a2fa1e56e670a356f54c94389bdb47d868f3f commit hash: 664a2fa1e56e670a356f54c94389bdb47d868f3f 664a2fa
Saturday, 27 May 2023
04:24 Po-Chuan Hsieh (sunpoet) search for other commits by this committer
x11-toolkits/p5-Prima: Update to 1.68002

Changes:	https://metacpan.org/dist/Prima/changes
commit hash: 654dc9cdef057fe714c15a7588b4afa4efcbdcd9 commit hash: 654dc9cdef057fe714c15a7588b4afa4efcbdcd9 commit hash: 654dc9cdef057fe714c15a7588b4afa4efcbdcd9 commit hash: 654dc9cdef057fe714c15a7588b4afa4efcbdcd9 654dc9c
Tuesday, 21 Mar 2023
19:22 Po-Chuan Hsieh (sunpoet) search for other commits by this committer
x11-toolkits/p5-Prima: Update to 1.68

Changes:	https://metacpan.org/dist/Prima/changes
commit hash: 77f880cf1aaa1ccb59c7ce65790f8983290c3194 commit hash: 77f880cf1aaa1ccb59c7ce65790f8983290c3194 commit hash: 77f880cf1aaa1ccb59c7ce65790f8983290c3194 commit hash: 77f880cf1aaa1ccb59c7ce65790f8983290c3194 77f880cf
Monday, 30 Jan 2023
13:02 Po-Chuan Hsieh (sunpoet) search for other commits by this committer
x11-toolkits/p5-Prima: Update to 1.67

Changes:	https://metacpan.org/dist/Prima/changes
commit hash: 850317c519ddfe9bd723f007d7834e921b8ccd78 commit hash: 850317c519ddfe9bd723f007d7834e921b8ccd78 commit hash: 850317c519ddfe9bd723f007d7834e921b8ccd78 commit hash: 850317c519ddfe9bd723f007d7834e921b8ccd78 850317c
Wednesday, 7 Sep 2022
21:10 Stefan Eßer (se) search for other commits by this committer
Add WWW entries to port Makefiles

It has been common practice to have one or more URLs at the end of the
ports' pkg-descr files, one per line and prefixed with "WWW:". These
URLs should point at a project website or other relevant resources.

Access to these URLs required processing of the pkg-descr files, and
they have often become stale over time. If more than one such URL was
present in a pkg-descr file, only the first one was tarnsfered into
the port INDEX, but for many ports only the last line did contain the
port specific URL to further information.

There have been several proposals to make a project URL available as
a macro in the ports' Makefiles, over time.

This commit implements such a proposal and moves one of the WWW: entries
of each pkg-descr file into the respective port's Makefile. A heuristic
attempts to identify the most relevant URL in case there is more than
one WWW: entry in some pkg-descr file. URLs that are not moved into the
Makefile are prefixed with "See also:" instead of "WWW:" in the pkg-descr
files in order to preserve them.

There are 1256 ports that had no WWW: entries in pkg-descr files. These
ports will not be touched in this commit.

The portlint port has been adjusted to expect a WWW entry in each port
Makefile, and to flag any remaining "WWW:" lines in pkg-descr files as
deprecated.

Approved by:		portmgr (tcberner)
commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52 commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52 commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52 commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52 b7f0544
Wednesday, 31 Aug 2022
11:41 Po-Chuan Hsieh (sunpoet) search for other commits by this committer
x11-toolkits/p5-Prima: Update to 1.66

Changes:	https://metacpan.org/dist/Prima/changes
commit hash: 152597b8d59edd079a114d1f3705d49b980cbb31 commit hash: 152597b8d59edd079a114d1f3705d49b980cbb31 commit hash: 152597b8d59edd079a114d1f3705d49b980cbb31 commit hash: 152597b8d59edd079a114d1f3705d49b980cbb31 152597b
Wednesday, 20 Jul 2022
14:23 Tobias C. Berner (tcberner) search for other commits by this committer
x11-toolkits: remove 'Created by' lines

A big Thank You to the original contributors of these ports:

  *  1wardd@airmail.net
  *  Alexander Kabaev <ak03@gte.com>
  *  Alexander Novitsky <alecn2002@yandex.ru>
  *  Alexey Dokuchaev <danfe@FreeBSD.org>
  *  Andreas Kohn <andreas@syndrom23.de>
  *  Andrew Pantyukhin <infofarmer@FreeBSD.org>
  *  Anton Berezin <tobez@FreeBSD.org>
  *  Brian Buchanan <brian@CSUA.Berkeley.EDU>
  *  Cezary Morga <cm@therek.net>
  *  Cheng-Lung Sung <clsung@FreeBSD.org>
  *  Danilo Egea Gondolfo <danilo@FreeBSD.org>
  *  Dima Sivachenko <dima@Chg.RU>
  *  Edwin Groothuis <edwin@mavetju.org>
  *  Eric Anholt <anholt@FreeBSD.org>
  *  Igor Pokrovsky <ip@doom.homeunix.org>
  *  James FitzGibbon <jfitz@FreeBSD.org>
  *  Jean-Sébastien Pédron <dumbbell@FreeBSD.org>
  *  Joe Marcus Clarke <marcus@FreeBSD.org>
  *  Juli Mallett
  *  Kenjiro Cho <kjc@csl.sony.co.jp>
  *  Kimura Fuyuki <fuyuki@hadaly.org>
  *  Koop Mast <kwm@FreeBSD.org>
  *  Lars Koeller <Lars.Koeller@Uni-Bielefeld.de>
  *  Lubomir Marinov <lubomir_m@abv.bg>
  *  Marc Recht <marc@informatik.uni-bremen.de>
  *  Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org>
  *  Martin Klaffenboeck <martin.klaffenboeck@gmx.at>
  *  Martin Matuska <mm@FreeBSD.org>
  *  Maxim Sobolev <sobomax@FreeBSD.org>
  *  Michael Grünewald <michipili@gmail.com>
  *  Michael Johnson <ahze@FreeBSD.org>
  *  Mike Krutov <neko@takino.org>
  *  Mike Meyer <mwm@mired.org>
  *  Olivier Duchateau
  *  Paul Schmehl <pauls@utdallas.edu>
  *  Peter Hawkins <thepish@FreeBSD.org>
  *  Piotr Kubaj <pkubaj@anongoth.pl>
  *  Radim Kolar
  *  Rene Ladan <rene@FreeBSD.org>
  *  Robert C. Noland III <rnoland@FreeBSD.org>
  *  Simon Barner <barner@gmx.de>
  *  Stephane Legrand <stephane@FreeBSD.org>
  *  Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>
  *  Thomas Gellekum <tg@FreeBSD.org>
  *  Tom McLaughlin <tmclaugh@sdf.lonestar.org>
  *  Vanilla I. Shu <vanilla@MinJe.com.TW>
  *  Will Andrews <andrews@technologist.com>
  *  Yukihiro Nakai <nakai@FreeBSD.org>
  *  Zane C, Bowers <vvelox@vvelox.net>
  *  asami
  *  chinsan
  *  chuckr
  *  clsung@dragon2.net
  *  dmitry@karasik.eu.org
  *  fjoe@FreeBSD.org
  *  gahr
  *  gena
  *  ijliao
  *  mi
  *  minter@lunenburg.org
  *  nivit@users.sourceforge.net
  *  ports@c0decafe.net
  *  roland.jesse@gmx.net
  *  thierry@pompo.net
  *  vanilla

With hat:	portmgr
commit hash: 71b6a9f9c7b4d46953a1ce59dc242f0ba1c28f17 commit hash: 71b6a9f9c7b4d46953a1ce59dc242f0ba1c28f17 commit hash: 71b6a9f9c7b4d46953a1ce59dc242f0ba1c28f17 commit hash: 71b6a9f9c7b4d46953a1ce59dc242f0ba1c28f17 71b6a9f
Tuesday, 26 Apr 2022
15:01 Po-Chuan Hsieh (sunpoet) search for other commits by this committer
x11-toolkits/p5-Prima: Update to 1.65

- Remove PORTSCOUT
- Add THAI option

Changes:	https://metacpan.org/dist/Prima/changes
commit hash: ad4f328ac66227ef12d863b40095b303e9ca280f commit hash: ad4f328ac66227ef12d863b40095b303e9ca280f commit hash: ad4f328ac66227ef12d863b40095b303e9ca280f commit hash: ad4f328ac66227ef12d863b40095b303e9ca280f ad4f328
Sunday, 17 Apr 2022
23:59 Po-Chuan Hsieh (sunpoet) search for other commits by this committer
x11-toolkits/p5-Prima: Add PORTSCOUT
commit hash: 1e0fa9d948e23e8c7825c9fc21afc79f2c845f33 commit hash: 1e0fa9d948e23e8c7825c9fc21afc79f2c845f33 commit hash: 1e0fa9d948e23e8c7825c9fc21afc79f2c845f33 commit hash: 1e0fa9d948e23e8c7825c9fc21afc79f2c845f33 1e0fa9d
Tuesday, 21 Sep 2021
22:23 Po-Chuan Hsieh (sunpoet) search for other commits by this committer
x11-toolkits/p5-Prima: Update to 1.63

Changes:	https://metacpan.org/dist/Prima/changes
commit hash: a6c2157149a7f84b89695e13a70c496b9ac07c7c commit hash: a6c2157149a7f84b89695e13a70c496b9ac07c7c commit hash: a6c2157149a7f84b89695e13a70c496b9ac07c7c commit hash: a6c2157149a7f84b89695e13a70c496b9ac07c7c a6c2157
Friday, 25 Jun 2021
13:40 Po-Chuan Hsieh (sunpoet) search for other commits by this committer
x11-toolkits/p5-Prima: Update to 1.62

Changes:	https://metacpan.org/dist/Prima/changes
commit hash: 62d0e264dc60ff2f7295cfa6709dd9e68cb18e6c commit hash: 62d0e264dc60ff2f7295cfa6709dd9e68cb18e6c commit hash: 62d0e264dc60ff2f7295cfa6709dd9e68cb18e6c commit hash: 62d0e264dc60ff2f7295cfa6709dd9e68cb18e6c 62d0e26
Sunday, 30 May 2021
19:59 Po-Chuan Hsieh (sunpoet) search for other commits by this committer
x11-toolkits/p5-Prima: Update to 1.61

Changes:	https://metacpan.org/changes/distribution/Prima
commit hash: b6ed9978d49a81dfc575e1dcccd8aead1b451763 commit hash: b6ed9978d49a81dfc575e1dcccd8aead1b451763 commit hash: b6ed9978d49a81dfc575e1dcccd8aead1b451763 commit hash: b6ed9978d49a81dfc575e1dcccd8aead1b451763 b6ed997
Tuesday, 6 Apr 2021
14:31 Mathieu Arnold (mat) search for other commits by this committer
Remove # $FreeBSD$ from Makefiles.
commit hash: 305f148f482daf30dcf728039d03d019f88344eb commit hash: 305f148f482daf30dcf728039d03d019f88344eb commit hash: 305f148f482daf30dcf728039d03d019f88344eb commit hash: 305f148f482daf30dcf728039d03d019f88344eb 305f148
Saturday, 19 Dec 2020
20:24 sunpoet search for other commits by this committer
Update to 1.60

- Update WWW

Changes:	https://metacpan.org/changes/distribution/Prima
Original commitRevision:558660 
Friday, 2 Oct 2020
13:19 sunpoet search for other commits by this committer
Add FRIBIDI and HARFBUZZ options
Original commitRevision:551206 
Friday, 24 Jul 2020
07:49 sunpoet search for other commits by this committer
Update to 1.59

Changes:	https://metacpan.org/changes/distribution/Prima
Original commitRevision:543175 
Tuesday, 7 Apr 2020
14:36 sunpoet search for other commits by this committer
Update to 1.58

Changes:	https://metacpan.org/changes/distribution/Prima
Original commitRevision:531013 
Monday, 13 Jan 2020
17:49 sunpoet search for other commits by this committer
Update to 1.57

Changes:	https://metacpan.org/changes/distribution/Prima
Original commitRevision:522958 
Thursday, 7 Nov 2019
18:36 zeising search for other commits by this committer
Add USES=xorg USES=gl, ports categories x

Add USES=xorg and USES=gl to ports in categories starting with 'x'
While here, try to sprinkle other USES (mostly gnome and sdl) as needed.
Original commitRevision:517000 
Saturday, 24 Aug 2019
00:10 sunpoet search for other commits by this committer
Update to 1.56

Changes:	https://metacpan.org/changes/distribution/Prima
Original commitRevision:509703 
Wednesday, 27 Mar 2019
19:23 sunpoet search for other commits by this committer
Update to 1.55

Changes:	https://metacpan.org/changes/distribution/Prima
Original commitRevision:496973 
Saturday, 2 Feb 2019
21:56 sunpoet search for other commits by this committer
Update to 1.54

Changes:	https://metacpan.org/changes/distribution/Prima
Original commitRevision:492013 
Tuesday, 16 Oct 2018
20:05 sunpoet search for other commits by this committer
Update to 1.53

- Add GTK3 option
- Add USES=gnome

Changes:	https://metacpan.org/changes/distribution/Prima
Original commitRevision:482257 
Wednesday, 28 Jun 2017
15:43 sunpoet search for other commits by this committer
Update to 1.52

Changes:	http://search.cpan.org/dist/Prima/Changes
Original commitRevision:444591 
Thursday, 27 Apr 2017
07:03 sunpoet search for other commits by this committer
Update to 1.51

- Add LICENSE_FILE

Changes:	http://search.cpan.org/dist/Prima/Changes
Original commitRevision:439516 
Thursday, 5 Jan 2017
19:33 sunpoet search for other commits by this committer
Update to 1.50

Changes:	http://search.cpan.org/dist/Prima/Changes
Original commitRevision:430658 
Tuesday, 11 Oct 2016
14:15 adamw search for other commits by this committer
Update to 1.49.

Changes: https://metacpan.org/changes/distribution/Prima
Original commitRevision:423763 
Tuesday, 21 Jun 2016
15:10 mat search for other commits by this committer
Update to 1.47.

Sponsored by:	Absolight
Original commitRevision:417272 
Friday, 1 Apr 2016
14:33 mat search for other commits by this committer
Remove ${PORTSDIR}/ from dependencies, categories v, w, x, y, and z.

With hat:	portmgr
Sponsored by:	Absolight
Original commitRevision:412351 
Sunday, 20 Mar 2016
23:45 adamw search for other commits by this committer
Update to 1.46. Prima can now leverage pkg-config, so switch to
that rather than using CONFIGURE_ARGS.

Changes: https://metacpan.org/changes/distribution/Prima
Original commitRevision:411527 
Thursday, 3 Dec 2015
20:01 antoine search for other commits by this committer
Update giflib to 5.1.1

PR:		204492
Original commitRevision:402898 
Friday, 6 Nov 2015
08:51 sunpoet search for other commits by this committer
- Update to 1.45
- Pet portlint: fix diff header of patch files
- Sort PLIST

Changes:	http://search.cpan.org/dist/Prima/Changes
Original commitRevision:400891 
Thursday, 13 Aug 2015
17:35 sunpoet search for other commits by this committer
- Update to 1.44

Changes:	http://search.cpan.org/dist/Prima/Changes
Original commitRevision:394125 
Monday, 29 Jun 2015
15:47 adamw search for other commits by this committer
After r390893, chmod u+w/u-w for stripping perl XS modules is unnecessary,
and in fact now leads to incorrect permissions.

Remove all instances of it from perl@ ports.
Original commitRevision:390918 
Monday, 22 Jun 2015
18:33 antoine search for other commits by this committer
Convert to USES=jpeg
Original commitRevision:390310 
Monday, 20 Apr 2015
15:24 mat search for other commits by this committer
Update to 1.43.  Add a patch to make it build with Perl 5.21.6+.

Sponsored by:	Absolight
Original commitRevision:384363 
Wednesday, 15 Apr 2015
08:20 tijl search for other commits by this committer
converters/libiconv:
- Remove const qualifier from iconv(3) to match POSIX:
  http://pubs.opengroup.org/onlinepubs/9699919799/functions/iconv.html
- Patch iconv.h to expose more GNU extensions when LIBICONV_PLUG is
  defined because the base system iconv supports these extensions too.

Add/remove patches to/from ports to call iconv with non-const arguments.

This breaks some ports on FreeBSD 10 because base system iconv.h still has
the const qualifier.  Fix this by letting USES=iconv add a build dependency
on converters/libiconv so ports can use its iconv.h (with LIBICONV_PLUG
defined) instead of the base system iconv.h.

This exposed some ports that link with libiconv when it is available instead
of using libc iconv.  In these cases one of the following changes has been
made:
- patch configure scripts to test for libc iconv first
- add ac_cv_lib_iconv_libiconv=no or similar to CONFIGURE_ARGS to disable
  some configure tests
- converters/wkhtmltopdf: this includes Qt4 so add a patch from devel/qt4
- lang/gcc5-aux: respect CFLAGS and friends during configure such that
  LIBICONV_PLUG is defined in the iconv test, also switch to external
  gettext
- mail/gnarwl: replace patches with CPPFLAGS/LIBS
- multimedia/ffmpeg2theora: remove iconv test from SConstruct and use
  ICONV_LIB in port Makefile instead, also fix a bug in subtitles.c
- net-im/licq: finish conversion to cmake
- net-mgmt/bandwidthd, net-mgmt/icinga, net-mgmt/nagios, net-mgmt/nagios4:
  don't need iconv
- textproc/p5-XML-TinyXML: finish conversion to USES=perl5

Other changes:
- databases/qdbm and slaves: respect CFLAGS and friends, also enable bzip2
  and lzo support
- games/ldmud: respect CFLAGS and friends
- graphics/inventor: replace some patches with MAKE_ARGS/MAKE_ENV to respect
  CFLAGS and friends, also remove FreeBSD/alpha patch and add missing xorg
  dependencies

PR:		199099
Exp-run by:	antoine
Approved by:	portmgr (antoine)
Original commitRevision:384038 
Wednesday, 14 Jan 2015
18:19 antoine search for other commits by this committer
Update graphics/giflib to 5.0.5

Differential Revision:	https://reviews.freebsd.org/D1361
Submitted by:	bapt
Reviewed by:	self
Exp-run by:	self
Original commitRevision:377033 
Monday, 12 Jan 2015
18:37 sunpoet search for other commits by this committer
- Update to 1.41
- Allow to strip shared library as regular user

Changes:	http://search.cpan.org/dist/Prima/Changes
Original commitRevision:376878 
Thursday, 25 Dec 2014
20:54 bapt search for other commits by this committer
Bump portrevision after png update
Original commitRevision:375598 
19:04 antoine search for other commits by this committer
Change libpng15.so to libpng.so in LIB_DEPENDS to prepare the upgrade
Original commitRevision:375594 
Monday, 8 Dec 2014
16:48 tijl search for other commits by this committer
Replace USES=libtool:oldver with USES=libtool or USES=libtool:keepla in
the 32 ports that still use it.  Bump PORTREVISION on their dependent
ports except the ones that depend on these:

audio/libogg
audio/libvorbis
devel/pcre
ftp/curl
graphics/jpeg
graphics/libart_lgpl
graphics/tiff
textproc/expat2
textproc/libxslt

In these cases the same trick as in the recent gettext update is used.
The ports install a symlink with the old library version.  When enough
of their dependent ports have had regular updates the remaining ones can
get a PORTREVISION bump and the links can be removed.

Also remove the devel/pcre dependency from USE_GNOME=glib20.  It causes
over 2200 packages to depend on devel/pcre while less than 200 actually
link with it.  The glib20 package still depends on devel/pcre so this
should not make a difference for ports with USE_GNOME=glib20.  Also,
libdata/pkgconfig/glib-2.0.pc lists pcre as a private library so
USE_GNOME=glib20 should not propagate it.

PR:		195724
Exp-run by:	antoine
Approved by:	portmgr (antoine)
Original commitRevision:374303 
Wednesday, 26 Nov 2014
13:08 mat search for other commits by this committer
Change the way Perl modules are installed, update the default Perl to 5.18.

Before, we had:

  site_perl :           lib/perl5/site_perl/5.18
  site_perl/perl_arch : lib/perl5/site_perl/5.18/mach
  perl_man3 :           lib/perl5/5.18/man/man3

Now we have:

  site_perl : lib/perl5/site_perl
  site_arch : lib/perl5/site_perl/mach/5.18
  perl_man3 : lib/perl5/site_perl/man/man3

Modules without any .so will be installed at the same place regardless of the
Perl version, minimizing the upgrade when the major Perl version is changed.
It uses a version dependent directory for modules with compiled bits.

As PERL_ARCH is no longer needed in plists, it has been removed from
PLIST_SUB.

The USE_PERL5=fixpacklist keyword is removed, the .packlist file is now
always removed, as is perllocal.pod.

The old site_perl and site_perl/arch directories have been kept in the
default Perl @INC for all Perl ports, and will be phased out as these old
Perl versions expire.

PR:		194969
Differential Revision:	https://reviews.freebsd.org/D1019
Exp-run by:	antoine
Reviewed by:	perl@
Approved by:	portmgr
Original commitRevision:373448 
Tuesday, 9 Sep 2014
14:43 sunpoet search for other commits by this committer
- Update to 1.40
- Convert to new options helper
- Strip shared library

Changes:	http://search.cpan.org/dist/Prima/Changes
Original commitRevision:367738 
Wednesday, 2 Apr 2014
14:08 sunpoet search for other commits by this committer
- Update LICENSE
Original commitRevision:349921 
Saturday, 8 Feb 2014
19:23 antoine search for other commits by this committer
The generation of Prima/Config.pm is not stage safe.
Correct the path inside this file in stage directory.
This fixes graphics/IPA build.

Reported by:	pkg-fallout
Original commitRevision:343376 
Thursday, 7 Nov 2013
04:52 vanilla search for other commits by this committer
Support STAGEDIR.
Original commitRevision:333059 
Friday, 20 Sep 2013
23:57 bapt search for other commits by this committer
Add NO_STAGE all over the place in preparation for the staging support (cat:
x11-toolkits)
Original commitRevision:327785 
Thursday, 5 Sep 2013
03:30 sunpoet search for other commits by this committer
- Update to 1.37
- Convert to new LIB_DEPENDS format
- Fix GTK2 option

Changes:	https://github.com/dk/Prima/blob/master/HISTORY
Original commitRevision:326339 
Friday, 2 Aug 2013
18:52 mat search for other commits by this committer
- Convert to new perl framework
- Trim Makefile header
- Remove MAKE_JOBS_SAFE=yes, it's the default.
Original commitRevision:324174 
Friday, 12 Jul 2013
15:19 bapt search for other commits by this committer
Mark jobs unsafe
Original commitRevision:322841 
Thursday, 6 Jun 2013
13:24 mat search for other commits by this committer
PERL_CONFIGURE implies USE_PERL5.

Reported by: http://az.semmy.ru/perl_sdad.txt
Original commitRevision:320093 
Saturday, 27 Apr 2013
22:09 bapt search for other commits by this committer
Convert the last USE_ICONV to USES=iconv
Original commitRevision:316695 
Friday, 29 Mar 2013
00:44 eadler search for other commits by this committer
For perl@ owned ports:

- Fix COMMENT
- Trim header
Original commitRevision:315509 
Friday, 11 Jan 2013
11:46 tobez search for other commits by this committer
Update to 1.36.

Changes: http://cpansearch.perl.org/src/KARASIK/Prima-1.36/HISTORY
Original commitRevision:310229 
Monday, 30 Jul 2012
19:46 sunpoet search for other commits by this committer
- Update to 1.35

Changes:	http://cpansearch.perl.org/src/KARASIK/Prima-1.35/HISTORY
Original commit
Sunday, 24 Jun 2012
15:02 sunpoet search for other commits by this committer
- Update to 1.34
- Add LICENSE
- Pet portlint: remove ABI version number from LIB_DEPENDS
- Sort LIB_DEPENDS
- Use PERL_CONFIGURE
- Convert to new options framework
- Cleanup Makefile
- Add CPAN as primary WWW
- Pass maintainership to perl@

Changes:        http://search.cpan.org/dist/Prima/HISTORY
Original commit
Saturday, 9 Jun 2012
09:44 erwin search for other commits by this committer
Unmark BROKEN, already fixed

Submitted by:   az
Original commit
09:21 erwin search for other commits by this committer
Mark BROKEN: does not build with new giflib

Submitted by:   pointyhat
Pointyhat:      dinoex
Original commit
Wednesday, 6 Jun 2012
08:02 pav search for other commits by this committer
- Drop maintainership

PR:             ports/168745
Submitted by:   Dmitry Karasik <dk@tetsuo.karasik.eu.org> (maintainer)
Original commit
Friday, 1 Jun 2012
05:26 dinoex search for other commits by this committer
- update png to 1.5.10
Original commit
Wednesday, 22 Feb 2012
03:48 swills search for other commits by this committer
- Migreate from libungif to giflib

PR:             ports/165378
Submitted by:   swills (myself)
Approved by:    Dmitry Karasik <dmitry@karasik.eu.org> (maintainer)
Original commit
Sunday, 8 Jan 2012
05:08 swills search for other commits by this committer
- Update to 1.31 which fixes build with Perl 5.14

PR:             ports/163716
Submitted by:   FAndrey <f0andrey@gmail.com>
Approved by:    Dmitry Karasik <dmitry@karasik.eu.org> (maintainer)
Original commit
Thursday, 26 Aug 2010
20:11 dinoex search for other commits by this committer
- fix after tiff update to 4.0.0
PR:             149611
Original commit
Sunday, 28 Mar 2010
06:47 dinoex search for other commits by this committer
- update to 1.4.1
Reviewed by:    exp8 run on pointyhat
Supported by:   miwi
Original commit
Friday, 5 Feb 2010
11:46 dinoex search for other commits by this committer
- update to jpeg-8
Original commit
Tuesday, 29 Dec 2009
10:25 miwi search for other commits by this committer
- Convert NOMANCOMPRESS to NO_MANCOMPRESS to sync with src

PR:     ports/136065 ports/127469
Submitted by:   N.J. Mann <njm@njm.me.uk> and Aldis Berjoza
<killasmurf86@gmail.com>

- Early identify port CONFLICTS

PR:     137855
Submitted by:           Piotr Smyrak <smyru@heron.pl>

- Add --no-same-permissions to the EXTRACT_AFTER_ARGS command.

Tijl Coosemans has been reported an issue that when root is extracting from the
tarball, and the tarball contains world writable files
(sysutils/policykit as an example), there is a chance that the files
gets changed by malicious third parties right after the extraction,
which makes it possible to inject code into the package thus compromise
the system.

Submitted by:   Tijl Coosemans <tijl@coosemans.org> Xin LI (delphij@)

- Fix some whitespaces

Tested with:    exp-run
Original commit
Saturday, 18 Jul 2009
11:11 dinoex search for other commits by this committer
- update to jpeg7
Tested by:      pav on pointyhat
Original commit
Thursday, 25 Dec 2008
19:51 miwi search for other commits by this committer
- Update to 1.27

PR:             129910
Submitted by:   Dennis Herrmann <adox@mcx2.org>
Approved by:    maintainer
Original commit
Saturday, 19 Apr 2008
17:56 miwi search for other commits by this committer
- Remove unneeded dependency from gtk12/gtk20 [1]
- Remove USE_XLIB/USE_X_PREFIX/USE_XPM in favor of USE_XORG
- Remove X11BASE support in favor of LOCALBASE or PREFIX
- Use USE_LDCONFIG instead of INSTALLS_SHLIB
- Remove unneeded USE_GCC 3.4+

Thanks to all Helpers:
        Dmitry Marakasov, Chess Griffin, beech@, dinoex, rafan, gahr,
        ehaupt, nox, itetcu, flz, pav

PR:             116263
Tested on:      pointyhat
Approved by:    portmgr (pav)
Original commit
Thursday, 17 Apr 2008
14:30 araujo search for other commits by this committer
- Take advantage of CPAN macro from bsd.sites.mk, change
${MASTER_SITE_PERL_CPAN} to CPAN.

PR:             ports/122674
Submitted by:   Philip M. Gollucci <pgollucci@p6m7g8.com>
Reworked by:    araujo (myself)
Approved by:    portmgr (pav)
Original commit
Thursday, 23 Aug 2007
10:09 rafan search for other commits by this committer
- Update to 1.22
- Switch to USE_XORG

PR:             ports/115500
Submitted by:   Dmitry Karasik <dmitry at karasik.eu.org> (maintainer)
Original commit
Saturday, 19 May 2007
20:32 flz search for other commits by this committer
- Welcome X.org 7.2 \o/.
- Set X11BASE to ${LOCALBASE} for recent ${OSVERSION}.
- Bump PORTREVISION for ports intalling files in ${X11BASE}.
Original commit
Sunday, 10 Dec 2006
22:07 miwi search for other commits by this committer
- Update to 1.21
- Respect X11BASE [1]

PR:             ports/105808
Submitted by:   Dmitry Karasik <dmitry@karasik.eu.org> (maintainer)
                rafan@ (thanks) [1]
Original commit
Saturday, 9 Dec 2006
07:49 rafan search for other commits by this committer
- Respect X11BASE

Approved by:    portmgr (linimon)
Original commit
Sunday, 12 Dec 2004
23:24 sem search for other commits by this committer
- Update to 1.16

PR:             ports/74814
Submitted by:   maintainer
Original commit
Tuesday, 30 Mar 2004
19:56 krion search for other commits by this committer
- Use USE_ICONV knob

Approved by:    portmgr
Original commit
Wednesday, 17 Mar 2004
00:33 marcus search for other commits by this committer
Add a directory I left out in my previous commit, and chase the new home
for Xft.
Original commit
Sunday, 22 Feb 2004
22:53 linimon search for other commits by this committer
Update to 1.14: minor new features and bug fixes:

  1.14  Add system-specific file dialogs. Add Edit::undo.
  1.13  Add themes support. Add command-line arguments interface.
  1.12  Incorporate Tk geometry managers packer and placer
  1.11  Add support for antialiased fonts under X11. Port to cygwin.
  1.10  Add libtiff support. Add grid widgets.
  1.09  No new features
  1.08  Add limited utf8/unicode support. Enhance image conversion
        functionality.

PR:             ports/63115
Submitted by:   Dmitry Karasik <dmitry@karasik.eu.org> (maintainer)
Original commit
Wednesday, 24 Sep 2003
09:37 osa search for other commits by this committer
Make portlint(1) happy by changing strip to ${STRIP_CMD}

Submitted by:   Oleg Karachevtsev <ok@etrust.ru>
PR:             56998
Original commit
Friday, 21 Feb 2003
14:19 knu search for other commits by this committer
De-pkg-comment.
Original commit
Tuesday, 4 Feb 2003
13:10 edwin search for other commits by this committer
and make portlint happy

PR:             ports/43387
Original commit
13:09 edwin search for other commits by this committer
x11-toolkits/p5-Prima port upgrade

PR:             ports/43387
Submitted by:   Dmitry Karasik <dk@plab.ku.dk>
Original commit
Wednesday, 22 May 2002
23:14 pat search for other commits by this committer
Update to 1.05

PR:             37819
Submitted by:   maintainer
Original commit
Friday, 14 Dec 2001
23:53 tobez search for other commits by this committer
Add p5-Prima 1.03, an extensible Perl toolkit for multi-platform GUI  
development.    
Original commit

Number of commits found: 87