some existing COMPILER lines with arch restrictions etc. In the usual
case this is now using "COMPILER = base-clang ports-gcc base-gcc" on
ports with c++ libraries in WANTLIB.
This is basically intended to be a noop on architectures using clang
as the system compiler, but help with other architectures where we
currently have many ports knocked out due to building with an unsuitable
compiler -
- some ports require c++11/newer so the GCC version in base that is used
on these archirtectures is too old.
- some ports have conflicts where an executable is built with one compiler
(e.g. gcc from base) but a library dependency is built with a different
one (e.g. gcc from ports), resulted in mixing incompatible libraries in the
same address space.
devel/gmp is intentionally skipped as it's on the path to building gcc -
the c++ library there is unused in ports (and not built by default upstream)
so intending to disable building gmpcxx in a future commit.
Comment:
archiver based on tar and lzip multimembers
Description:
Tarlz is a small and simple implementation of the tar archiver. By default
tarlz creates, lists and extracts archives in the ustar format compressed with
lzip on a per file basis. Tarlz can append files to the end of such compressed
archives.
Each tar member is compressed in its own lzip member, as well as the
end-of-file blocks. This same method works for any tar format (gnu, ustar,
posix) and is fully backward compatible with standard tar tools, which treat
the resulting multimember tar.lz archive like any other tar.lz archive.
Tarlz can create tar archives with four levels of compression granularity; per
file, per directory, appendable solid, and solid.
Maintainer: Juan Francisco Cantero Hurtado <juanfra@openbsd.org>
WWW: http://lzip.nongnu.org/tarlz.html