OcempGUI is a small toolkit, which comes with various modules suitable for
event management, user interfaces, 2D drawing and accessibility.
OcempGUI enables developers to enhance their python and/or pygame applications
and games easily with graphical UI elements such as buttons, entry boxes,
scrolling abilities and more as well as simple event brokers or features, which
enhance the program by adding accessibility to its objects.
It can save a developer much time by providing a broad range of drawing
routines and ready-to-use event capable object types. The developer can focus
on the main tasks instead of taking care about needed low-level components,
which are given to him with OcempGUI.
WWW: http://ocemp.sourceforge.net/gui.html
PR: 101397
Submitted by: Alexander Botero-Lowry <alex__@__foxybanana.com>
Approved by: garga (mentor)
- Use magic MASTER_SITES
- Use BUILD_DEPENDS=${RUN_DEPENDS} to avoid extra dependencies
- Use versioned package dependencies
PR: ports/101091 [1]
Submitted by: chinsan <chinsan.tw@gmail.com>
* Add a check for direct use of sysctl(8). [1]
* Add a check for use of the deprecated macro INSTALLS_SHLIB, and point people
to USE_LDCONFIG instead. [2]
* Add a check for plists with less than 6 items, and point people to
PLIST_FILES instead. [3]
PR: 100472 [1]
91933 [2]
100190 [3]
Submitted by: Babak Farrokhi <babak@farrokhi.net> [1]
- Update to 2.17
Short changelog:
- Add "-x NAME" to readelf in addition to "-x NUMBER".
- Add -i and -t switches to cxxfilt. -i disables the display of implementation
specific extra demangling information (if any) and -t disables the demangling
of types.
- Add support for the "@<file>" syntax to the command lines of all tools, so
that extra switches can be read from <file>.
- Add "-W/--dwarf" to objdump to display the contents of the DWARF
debug sections.
- Add "-t/--section-details" to readelf to display section details.
"-N/--full-section-name" is deprecated.
- powerpc-linux ld now supports a variant form of PLT and GOT for the security
conscious. This form will automatically be chosen when ld detects that all
code in regular object files was generated by gcc -msecure-plt. The old PLT
and GOT may be forced by a new ld option, --bss-plt.
- Add "-i/--inlines" to addr2line to print enclosing scope information
for inlined function chains, back to first non-inlined function.
- Add "-N/--full-section-name" to readelf to display full section name.
- Add "-M entry:<addr>" switch to objdump to specify a function entry address
when disassembling VAX binaries.
- Add "--globalize-symbol <name>" and "--globalize-symbols <filename>" switches
to objcopy to convert local symbols into global symbols.
PR: ports/101447
Submitted by: Stanislav Sedov (maintainer)
splitting, matching. It is independent from the Str library, and can
replace Str in many cases. Unlike Str, xstr is thread-safe. xstr does
not implement regular expressions in general, but an important subset.
Some operations of xstr are performed as quickly as by Str; if the string
to be processed is small, xstr is often faster than Str; if the string is
big, xstr is upto half as fast than Str.
Author: Gerd Stolpmann <gerd@gerd-stolpmann.de>
WWW: http://www.ocaml-programming.de/packages/
PR: ports/101032
Submitted by: Stanislav Sedov <ssedov at mbsd.msk.ru>