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.

Port details
libc++ LLVM C++ standard library with c++11 support
208080 devel Deleted on this many watch lists=0 search for ports that depend on this port Find issues related to this port Report an issue related to this port View this port on Repology. pkg-fallout 208080Version of this port present on the latest quarterly branch.
Maintainer: dim@FreeBSD.org search for ports maintained by this maintainer
Port Added: 2013-07-10 11:26:00
Last Update: 2017-02-24 17:57:08
SVN Revision: 434738
License: not specified in port
WWW:
http://libcxx.llvm.org/
Description:
libc++ is a new implementation of the C++ standard library made by the llvm project targeting C++11. WWW: http://libcxx.llvm.org/
Homepage    cgit ¦ GitHub ¦ GitHub ¦ GitLab ¦ SVNWeb

Manual pages:
FreshPorts has no man page information for this port.
pkg-plist: as obtained via: make generate-plist
There is no configure plist information for this port.
Dependency lines:
  • libc++>0:devel/libc++
No installation instructions:
This port has been deleted.
PKGNAME: libc++
Flavors: there is no flavor information for this port.
distinfo:
SHA256 (libc++-208080.tar.xz) = e764167cef1b73f03f2e736eedb2d45d0d2247590de8c878f8ca0bba6f2a9cfc SIZE (libc++-208080.tar.xz) = 867788

No package information for this port in our database
Sometimes this happens. Not all ports have packages.
Dependencies
NOTE: FreshPorts displays only information on required and default dependencies. Optional dependencies are not covered.
Build dependencies:
  1. cmake : devel/cmake
NOTE: dependencies for deleted ports are notoriously suspect
This port is required by:
for Build

Deleted ports which required this port:

Expand this list of 1 deleted port
  1. databases/mysql-workbench52*
  2. Collapse this list of deleted ports.
* - deleted ports are only shown under the This port is required by section. It was harder to do for the Required section. Perhaps later...

Configuration Options:
No options to configure
Options name:
N/A
USES:
tar:xz cmake:outsource compiler:c++11-lang
FreshPorts was unable to extract/find any pkg message
Master Sites:
Expand this list (5 items)
Collapse this list.
  1. http://distcache.FreeBSD.org/local-distfiles/bapt/
  2. http://distcache.eu.FreeBSD.org/local-distfiles/bapt/
  3. http://distcache.us-east.FreeBSD.org/local-distfiles/bapt/
  4. http://distcache.us-west.FreeBSD.org/local-distfiles/bapt/
  5. http://files.etoilebsd.net/libc++/
Collapse this list.

Number of commits found: 19

Commit History - (may be incomplete: for full details, see links to repositories near top of page)
CommitCreditsLog message
208080
24 Feb 2017 17:57:08
Revision:434738Original commit files touched by this commit Sanity Test Failure
dim search for other commits by this committer
Remove the devel/libc++ and devel/libcxxrt ports.

Since all supported versions of FreeBSD now have libc++ and libcxxrt in
the base system, and these ports were outdated, remove them, and update
any ports that still depended on them:
* graphics/gnash
* textproc/hs-double-conversion
* x11-toolkits/hs-wxc
* math/parmetis

Approved by:	portmgr (antoine)
Exp-run by:	antoine
PR:		217257
MFH:		2017Q1
208080
18 Jan 2017 13:20:32
Revision:431796Original commit files touched by this commit Sanity Test Failure
tijl search for other commits by this committer
The output of tools like awk, date, sort, tr,... depends on the current
locale set by the user.  Add LANG=C and LC_ALL=C at the beginning of
bsd.port.mk and export them so all commands are executed with the C locale.
LC_ALL=C overrides all other LC_* variables.  LANG is used by setlocale(3)
as default value for LC_* variables, so normally it isn't used when LC_ALL
is set, but there's code out there that looks at LANG directly so it's safer
to set it as well.  The only commands not captured by this are !=
assignments before any inclusion of bsd.port.*mk.

Introduce USE_LOCALE=<locale> that adds LANG=<locale> and LC_ALL=<locale> to
CONFIGURE_ENV and MAKE_ENV so upstream build systems can be executed with a
different locale (e.g. USE_LOCALE=en_US.UTF-8).

PR:		215882
Exp-run by:	antoine
Approved by:	portmgr (antoine)
208080
07 Dec 2016 09:48:39
Revision:428042Original commit files touched by this commit
cpm search for other commits by this committer
devel/libc++: Fix std::is_function<void() const> failed

In file included from /usr/include/c++/v1/string:439:
In file included from /usr/include/c++/v1/algorithm:624:
/usr/include/c++/v1/type_traits:433:76: error: no matching function for call to
'__source'
    : public integral_constant<bool,
sizeof(__is_function_imp::__test<_Tp>(__is_function_imp::__source<_Tp>())) == 1>
                                                                          
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/usr/include/c++/v1/type_traits:438:14: note: in instantiation of template class
'std::__1::__libcpp_is_function<void (unsigned char *) const, false>' requested
here
    : public __libcpp_is_function<_Tp> {};
             ^
/usr/include/c++/v1/type_traits:443:97: note: in instantiation of template class
'std::__1::is_function<void (unsigned char *) const>' requested here
template <class _Tp, class _Up> struct __libcpp_is_member_function_pointer<_Tp
_Up::*> : public is_function<_Tp> {};
                                                                                
               ^
/usr/include/c++/v1/type_traits:446:14: note: in instantiation of template class
'std::__1::__libcpp_is_member_function_pointer<void
(flatbuffers::simple_allocator::*)(unsigned char *) const>' requested here
    : public __libcpp_is_member_function_pointer<typename remove_cv<_Tp>::type>
{};
             ^

PR:		215016
Submitted by:	cpm
Reviewed by:	dim (maintainer)
Approved by:	dim (maintainer), feld (mentor, implicit)
Obtained from:	https://reviews.llvm.org/D7573
MFH:		2016Q4
208080
19 May 2016 10:21:25
Revision:415498Original commit files touched by this commit
amdmi3 search for other commits by this committer
- Fix trailing whitespace in pkg-descrs, categories [a-f]*

Approved by:	portmgr blanket
208080
01 Apr 2016 14:00:57
Revision:412346Original commit files touched by this commit
mat search for other commits by this committer
Remove ${PORTSDIR}/ from dependencies, categories d, e, f, and g.

With hat:	portmgr
Sponsored by:	Absolight
208080
08 Mar 2016 12:48:51
Revision:410612Original commit files touched by this commit
marino search for other commits by this committer
devel/libc++: specific libcxxrt LIB_DEPENDS conditionally

The libcxxrt was unconditionally specified, but pkg(8) would not
register it on FreeBSD 10+ because the libcxxrt.so requirement of the
specification was satisfied by the base libraries.

As a result, Synth would rebuild the libc++ each time becaues there
were more dependency requirements in the port Makefile than the resulting
package, leading Synth to consider the package obsolete.

Since there are already existence tests for setting flags, the solution
is trivial: move LIB_DEPENDS definition inside the conditional blocks.
The resulting package is the same everywhere, and Synth is happy too.

PR:		207756
Submitted by:	Andrew Terekhov
Discussed with:	dim@, bapt@ (no conclusion, I fixed it myself)
208080
15 Oct 2015 14:55:14
Revision:399346Original commit files touched by this commit Sanity Test Failure
mat search for other commits by this committer
Drop 8 support.

With hat:	portmgr
Sponsored by:	Absolight
Differential Revision:	https://reviews.freebsd.org/D3694
208080
07 Apr 2015 17:52:36
Revision:383525Original commit files touched by this commit
bdrewery search for other commits by this committer
Dim has an update in testing.

PR:	196536
208080
04 Apr 2015 00:22:58
Revision:383184Original commit files touched by this commit
marino search for other commits by this committer
devel/libc++: Mainly fix DragonFly support.

This port was originally fixed in dports using alias:10 but this fix
was faulty.  The libc++ headers reference __FreeBSD__ so alias won't
work.  It needs to be patched to check __DragonFly__, including a file
that was the subject of EXTRA_PATCHES.

Moreover, the port was installing the .orig files left over from
patching.  I remove these in post-patch now.
208080
01 Jan 2015 18:33:15
Revision:376020Original commit files touched by this commit
bapt search for other commits by this committer
Back to the pool
208080
22 Sep 2014 07:11:04
Revision:368814Original commit files touched by this commit
bapt search for other commits by this committer
Remove useless plist entries
208080
06 May 2014 14:38:17
Revision:353096Original commit files touched by this commit
bapt search for other commits by this committer
Update libc++ to r208080
Fix build on FreeBSD 8.4 by using devel/libmissing and new devel/xlocale
Add devel/xlocale which is a striped down version of freebsd's xlocale with just
the minimal
requirements for libc++, initially maintained in libc++'s trunk for solaris
support
200683
06 May 2014 12:20:43
Revision:353085Original commit files touched by this commit
bapt search for other commits by this committer
Fix build on FreeBSD 9.1
200683
13 Mar 2014 14:06:33
Revision:348070Original commit files touched by this commit
bapt search for other commits by this committer
Update my ports to the latest infrastructure changes
200683
03 Feb 2014 10:57:02
Revision:342417Original commit files touched by this commit
bapt search for other commits by this committer
Update to libc++ r200683
This include fixes that makes it usable by all g++ version we have
200401
29 Jan 2014 23:46:14
Revision:341794Original commit files touched by this commit
bapt search for other commits by this committer
Update to r200401
Use libcxxrt from ports if not in base
Add stage support
Convert libc++.so into a ldscript
Create a testing lib/c++/libstdc++ ldscript to cheat with g++
185324
29 Jan 2014 17:54:50
Revision:341766Original commit files touched by this commit
bapt search for other commits by this committer
Take maintainership

Approved by:	kwm
185324
20 Sep 2013 17:13:47
Revision:327724Original commit files touched by this commit
bapt search for other commits by this committer
Add NO_STAGE all over the place in preparation for the staging support (cat:
devel part 3)
185324
10 Jul 2013 11:25:44
Revision:322652Original commit files touched by this commit
kwm search for other commits by this committer
Add llvm's libc++ stdc++ library, which supports c++11.
This is for 9.1-stable so ports can use it. libc++ isn't build by default in
9.x.
Borrow some code from the llvm/clang -devel ports for generating svn checkout
semi automaticly.

Number of commits found: 19