It's not permissible for a port to touch $HOME during the build. The
moon-buggy game does this during install to pre-create the high scores
file $HOME/.mbscores.
Moon-buggy creates two versions of high scores: One in $HOME and the
other in /var/games/moon-buggy. This makes compliance tricky because
the high scores at /var/games needs to persist after the package is
uninstalled if the scores have changed.
To handle this, I moved scores creation to pkg-install script and also
created a "baseline" scores files so during pkg-deinstall it can be
determined if new high scores exist. The complimentary pkg-deinstall
script will compare the current high-score file with the baseline. If
they are the same, both are removed along with /var/games/moon-buggy
folder which makes poudriere happy.
While here:
* Remove the unnecessary NEED_ROOT
* Remove the unnecessary setgid configure argument
* use @owner, @group in pkg-plist instead
* move CHMOD to post-install with BINMODE although @mode could have
been used as well.
This work is covered by the "Just fix it" blanklet.
- Take maintainership
- Make the port non-interactive, undeprecate
- Remove NO_PACKAGE, the port is already marked as RESTRICTED
- Remove now needless MAKE_ENV
Type::Tiny::XS provides an XS boost for some of Type::Tiny's built-in type
constraints. Type::Tiny::XS is not required for Type::Tiny, but provides a speed
boost for some type checks if available.
WWW: http://search.cpan.org/dist/Type-Tiny-XS/
This port was in bad shape!
1) It had a MASTER_SITES definition pointing to a FreeBSD mirror. This
was a circular dependency that broke when the "real" master site
domain disappeared. Fix this by hosting at LOCAL/MARINO
2) The kai-pc ttf font was never installed (always broken)
3) It broke (more) with recent chinese font work
4) It included makefile.tty by absolute ${PORTDIR} instead of
correct ${.CURDIR}, which also unnecessarily required <pre>, <post>
5) It wasn't staged
So fix all that. Also improve efficiency of staging by copying directly
from distfiles to stage directory instead of first copying to WRKSRC then
STAGEDIR. The post-install target is no longer needed, nor is the
pkg-plist file.
Update to 2.0.3
Add options for the extra (deprecated) command-line utilities
From ChangeLog.txt:
- Fix defect that doesn't allow adding station locations if only a single
callsign certificate is installed.
Thanks Kenji!
PR: ports/191871
This module is useful if you manage data which has a lot of on/off attributes
like active, inactive, deleted, important, etc. If you do not want to add an
extra column for each of those attributes you can easily specify them in one
integer column.
A bit field is a way to store multiple bit values on one integer field.
The main benefit from this module is that you can add additional attributes
to your result class whithout the need to deploy or change the schema on the
data base.
WWW: http://search.cpan.org/dist/DBIx-Class-BitField/