Port details |
- pthsem GNU Portable Threads with semaphores
- 2.0.8_4 devel =2 2.0.8_4Version of this port present on the latest quarterly branch.
- Maintainer: bkoenig@alpha-tierchen.de
- Port Added: 2007-12-17 23:20:47
- Last Update: 2024-02-23 14:49:54
- Commit Hash: 06885a2
- People watching this port, also watch:: jdictionary, py311-Automat, py311-python-gdsii, py39-PyOpenGL, p5-Sane
- License: not specified in port
- WWW:
- https://www.auto.tuwien.ac.at/~mkoegler/index.php/pth
- Description:
- GNU pth is a user mode multi threading library. pthsem is an extend
version, with support for semaphores added. It can be installed parallel
to a normal pth. The header file is called pthsem.h, the configuration
program pthsem-config and the autoconf macro AC_CHECK_PTHSEM. If
references to one of these names are changed, pthsem can be used as an
replacement of GNU pth.
- ¦ ¦ ¦ ¦
- Manual pages:
- FreshPorts has no man page information for this port.
- pkg-plist: as obtained via:
make generate-plist - Dependency lines:
-
- To install the port:
- cd /usr/ports/devel/pthsem/ && make install clean
- To add the package, run one of these commands:
- pkg install devel/pthsem
- pkg install pthsem
NOTE: If this package has multiple flavors (see below), then use one of them instead of the name specified above.- PKGNAME: pthsem
- Flavors: there is no flavor information for this port.
- distinfo:
- SHA256 (pthsem_2.0.8.tar.gz) = 4024cafdd5d4bce2b1778a6be5491222c3f6e7ef1e43971264c451c0012c5c01
SIZE (pthsem_2.0.8.tar.gz) = 687551
Packages (timestamps in pop-ups are UTC):
- Dependencies
- NOTE: FreshPorts displays only information on required and default dependencies. Optional dependencies are not covered.
- Build dependencies:
-
- gmake>=4.3 : devel/gmake
- This port is required by:
- for Libraries
-
- net/linknx
-
Deleted ports which required this port:
- * - 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:
- devel_pthsem
- USES:
- gmake libtool pathfix
- FreshPorts was unable to extract/find any pkg message
- Master Sites:
|
Commit History - (may be incomplete: for full details, see links to repositories near top of page) |
Commit | Credits | Log message |
2.0.8_4 23 Feb 2024 14:49:54 |
Muhammad Moinur Rahman (bofh) |
devel/pthsem: Moved man to share/man
Approved by: portmgr (blanket) |
07 Sep 2022 21:58:51 |
Stefan Eßer (se) |
Remove WWW entries moved into port Makefiles
Commit b7f05445c00f has added WWW entries to port Makefiles based on
WWW: lines in pkg-descr files.
This commit removes the WWW: lines of moved-over URLs from these
pkg-descr files.
Approved by: portmgr (tcberner) |
2.0.8_3 07 Sep 2022 21:10:59 |
Stefan Eßer (se) |
Add WWW entries to port Makefiles
It has been common practice to have one or more URLs at the end of the
ports' pkg-descr files, one per line and prefixed with "WWW:". These
URLs should point at a project website or other relevant resources.
Access to these URLs required processing of the pkg-descr files, and
they have often become stale over time. If more than one such URL was
present in a pkg-descr file, only the first one was tarnsfered into
the port INDEX, but for many ports only the last line did contain the
port specific URL to further information.
There have been several proposals to make a project URL available as
a macro in the ports' Makefiles, over time.
(Only the first 15 lines of the commit message are shown above ) |
2.0.8_3 20 Jul 2022 14:21:35 |
Tobias C. Berner (tcberner) |
devel: remove 'Created by' lines
A big Thank You to the original contributors of these ports:
* "Waitman Gobble" <uzimac@da3m0n8t3r.com>
* <jkoshy@FreeBSD.org>
* Aaron Dalton <aaron@FreeBSD.org>
* Aaron Dalton <aaron@daltons.ca>
* Aaron H. K. Diep <ahkdiep@gmail.com>
* Aaron Hurt <ahurt@anbcs.com>
* Abel Chow <abel_chow@yahoo.com>
* Adam McLaurin
* Adam Saponara <as@php.net>
* Adam Weinberger <adamw@FreeBSD.org>
* Ade Lovett <ade@FreeBSD.org> (Only the first 15 lines of the commit message are shown above ) |
2.0.8_3 06 Apr 2021 14:31:07 |
Mathieu Arnold (mat) |
Remove # $FreeBSD$ from Makefiles. |
2.0.8_3 02 Aug 2015 15:03:20 |
tijl |
By default libtool replaces -export-symbols <file> with -retain-symbols-file
<file> on ELF systems, but this doesn't really do what -export-symbols is
meant to do. On GNU ELF systems it converts <file> to a simple version
script first and then uses -version-script instead of -retain-symbols-file.
Let USES=libtool patch libtool scripts to do this on all systems with GNU
ld(1).
Bump PORTREVISION on all ports where the build log contains -export-symbols.
audio/calf: This port builds a module that now exports only one function,
but it also builds a number of executables that link to this module and
expect to see other functions. Because it's already a bit dodgy to link to
a module (libtool warns about this) let the module continue to export only
one function and instead build an ordinary library from the same source that
the executables can link to. Fix a number of other issues in the same (Only the first 15 lines of the commit message are shown above ) |
2.0.8_2 11 Sep 2014 10:38:29 |
amdmi3 |
- Drop .la files, no dependees require them
Approved by: portmgr blanket |
2.0.8_1 23 Apr 2014 13:25:17 |
tijl |
When linking a library libA with a library libB using libtool, if libB.la
exists, libtool will add all libraries libB.la refers to (dependency_libs
field) to the linker command line and store them in the dependency_libs
field of libA.la. So everything that subsequently links with libA will also
link to these extra libraries. This causes too much overlinking.
This commit modifies Mk/Uses/libtool.mk so it empties the dependency_libs
field in .la libraries during staging. However, because .la libraries have
very limited use when dependency_libs is empty it makes sense to completely
remove them during staging.
So with this commit USES=libtool is modified to remove .la libraries and a
new form (USES=libtool:keepla) is introduced in case they need to be kept
(dependency_libs is still emptied).
(Only the first 15 lines of the commit message are shown above ) |
2.0.8 22 Apr 2014 17:14:44 |
bapt |
Update to 2.0.8
Fix pthsem.m4 macros to avoid [] to disappear (this allow net/linknx to generate
a working test for conf |
2.0.7 25 Jan 2014 00:39:12 |
bapt |
Support stage |
2.0.7 20 Sep 2013 17:13:47 |
bapt |
Add NO_STAGE all over the place in preparation for the staging support (cat:
devel part 3) |
2.0.7 03 Jul 2011 14:59:23 |
ohauer |
-remove MD5 |
2.0.7 20 Nov 2009 22:53:09 |
pav |
- Mark MAKE_JOBS_UNSAFE
Reported by: pointyhat |
2.0.7 01 Jun 2008 09:42:37 |
olgeni |
Large round of typo fixes in ports/devel (pkg-descr). |
2.0.7 17 Dec 2007 23:20:34 |
miwi |
GNU pth is a user mode multi threading library. pthsem is an extend
version, with support for semaphores added. It can be installed parallel
to a normal pth. The header file is called pthsem.h, the configuration
programm pthsem-config and the autoconf macro AC_CHECK_PTHSEM. If
references to one of these names are changed, pthsem can be used as an
replacement of GNU pth.
WWW: http://www.auto.tuwien.ac.at/~mkoegler/index.php/pth
PR: ports/118471
Submitted by: Björn König <bkoenig at alpha-tierchen.de> |