NXEngine is an open source implementation of
Cave Story game engine. This port installs
NXEngine and Cave Story data files.
Reviewed by: matthew, swills
Differential Revision: https://reviews.freebsd.org/D12327
This library provides a command-line-interface (CLI) and Python library to make
access to Planet's public API easy to use.
The command line interface is intended to be functional for many tasks but is
just a thin layer on the lower level Python API.
WWW: https://pypi.python.org/pypi/planet
In file included from ../src/i18n.cc:8:
In file included from /usr/local/include/unicode/brkiter.h:47:
In file included from /usr/local/include/unicode/unistr.h:33:
/usr/local/include/unicode/char16ptr.h:90:19: error: deleted function definitions are a C++11 extension [-Werror,-Wc++11-extensions]
Char16Ptr() = delete;
^
/usr/local/include/unicode/char16ptr.h:198:24: error: deleted function definitions are a C++11 extension [-Werror,-Wc++11-extensions]
ConstChar16Ptr() = delete;
^
../src/runtime.cc:14238:3: error: no member named 'Normalizer' in namespace 'icu'; did you mean 'UNormalizer2'?
icu::Normalizer::normalize(u_value, normalizationForms[form_id], 0,
^~~~~~~~~~~~~~~
UNormalizer2
/usr/local/include/unicode/unorm2.h:119:29: note: 'UNormalizer2' declared here
typedef struct UNormalizer2 UNormalizer2; /**< C typedef for struct UNormalizer2. @stable ICU 4.4 */
^
../src/runtime.cc:14238:8: error: incomplete type 'UNormalizer2' named in nested name specifier
icu::Normalizer::normalize(u_value, normalizationForms[form_id], 0,
~~~~~^~~~~~~~~~~~
/usr/local/include/unicode/unorm2.h:118:8: note: forward declaration of 'UNormalizer2'
struct UNormalizer2;
^
PR: 222269
- Switch to USE_GITHUB and the GH_* foo
- Update WWW in pkg-descr
- Bump PORTREVISION
While I'm here, pet portlint, CATEGORIES appears out-of-order and USE_* comes
before USES.
PR: 221940
Submitted by: xmj
Approved by: rm (maintainer timeout, 2 weeks)
../deps/v8/src/runtime/runtime-i18n.cc:587:3: error: no member named 'Normalizer' in namespace 'icu'; did you mean 'UNormalizer2'?
icu::Normalizer::normalize(u_value, normalizationForms[form_id], 0, result,
^~~~~~~~~~~~~~~
UNormalizer2
/usr/local/include/unicode/unorm2.h:119:29: note: 'UNormalizer2' declared here
typedef struct UNormalizer2 UNormalizer2; /**< C typedef for struct UNormalizer2. @stable ICU 4.4 */
^
../deps/v8/src/runtime/runtime-i18n.cc:587:8: error: incomplete type 'UNormalizer2' named in nested name specifier
icu::Normalizer::normalize(u_value, normalizationForms[form_id], 0, result,
~~~~~^~~~~~~~~~~~
/usr/local/include/unicode/unorm2.h:118:8: note: forward declaration of 'UNormalizer2'
struct UNormalizer2;
^
PR: 222224
nstat is a replacement for the most frequently used parts of vmstat, netstat
(bw), and pmc-memory.x The advantage of using nstat is that it can run all in a
single session, rather than having to use 3 terminal sessions to monitor a
machine.
Submitted by: gallatin (private email)