Port details |
- libds ANSI Generic Data Structures Library
- 2.2 devel =2 2.2Version of this port present on the latest quarterly branch.
- There is no maintainer for this port.
- Any concerns regarding this port should be directed to the FreeBSD Ports mailing list via ports@FreeBSD.org
- Port Added: 2003-08-28 09:16:36
- Last Update: 2022-09-07 21:58:51
- Commit Hash: fb16dfe
- People watching this port, also watch:: jdictionary, py311-Automat, py311-python-gdsii, py39-PyOpenGL, p5-Sane
- License: BSD4CLAUSE
- WWW:
- https://sourceforge.net/projects/libds/
- Description:
- LibDS is a small but powerful and easy to use library containing a few
very useful data structures. Currently, the following data structures are
supported:
- a balanced binary tree (an AVL tree);
- a binary HEAP;
- a QUEUE;
- a HASH table;
- a SET and a BAG;
- a variable length array that can grows dynamically as new elements are
added or deleted (PARRAY).
- a STACK;
LibDS has been designed to be very easy to use, without sacrificing either
flexibility or speed. The API is small, and clean.
- ¦ ¦ ¦ ¦
- 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/libds/ && make install clean
- To add the package, run one of these commands:
- pkg install devel/libds
- pkg install libds
NOTE: If this package has multiple flavors (see below), then use one of them instead of the name specified above.- PKGNAME: libds
- Flavors: there is no flavor information for this port.
- distinfo:
- TIMESTAMP = 1637613286
SHA256 (libds-2.2.tar.gz) = cf2a8f4b4a754f43c91cbb9cdd26b355a4ab3c0d87e7fa9ade6532d5566aea57
SIZE (libds-2.2.tar.gz) = 49619
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:
-
- as : devel/binutils
- There are no ports dependent upon this port
Configuration Options:
- ===> The following configuration options are available for libds-2.2:
DOCS=on: Build and/or install documentation
===> Use 'make config' to modify these settings
- Options name:
- devel_libds
- 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 |
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.2 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.2 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.2 22 Nov 2021 20:35:42 |
Neel Chauhan (nc) |
devel/libds: Update to 2.2 |
2.1 06 Apr 2021 14:31:07 |
Mathieu Arnold (mat) |
Remove # $FreeBSD$ from Makefiles. |
2.1 04 Aug 2019 16:11:16 |
sunpoet |
Update MASTER_SITES and unbreak this port |
2.1 04 Aug 2019 10:02:47 |
antoine |
Mark BROKEN: unfetchable |
2.1 24 Jun 2019 16:47:45 |
amdmi3 |
- Use actual version in the port (no functional change)
- Add WWW |
1.0_1 29 Mar 2018 15:02:05 |
emaste |
Use BINARY_ALIAS to make LLD_UNSAFE more widely applicable
Some ports do not honour $LD or -fuse-ld=bfd in $CFLAGS, but do invoke
ld via $PATH. Automatically set BINARY_ALIAS+=ld=${LD} when LLD_UNSAFE
is active to use ld.bfd for these ports.
Approved by: portmgr (antoine)
Sponsored by: The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D14876 |
1.0_1 28 Mar 2018 12:58:19 |
emaste |
Also set LLD_UNSAFE when using BINARY_ALIAS to choose ld.bfd
arm64 provides no /usr/bin/ld.bfd by default. LLD_UNSAFE automatically
adds a dependency on binutils for this case, so is needed in addition
to BINARY_ALIAS=ld=ld.bfd.
Approved by: portmgr (LLD_UNSAFE blanket)
Sponsored by: The FreeBSD Foundation |
1.0_1 27 Mar 2018 21:24:51 |
emaste |
devel/libds: use BINARY_ALIAS to ensure linker is ld.bfd
lld has no built-in search paths (/lib, /usr/lib). Normally the linker
is invoked from the compiler driver, and the search paths are added by
the compiler. If lld is invoked directly library search paths must be
specified explicitly, with -L/lib -L/usr/lib.
This port does not honour LD or -fuse-ld in CFLAGS via LLD_UNSAFE, but
BINARY_ALIAS can be used to ensure we use the BFD linker.
PR: 226972
Approved by: portmgr (LLD_UNSAFE blanket)
Sponsored by: The FreeBSD Foundation |
1.0_1 23 Jan 2016 01:41:51 |
amdmi3 |
- Switch to options helpers |
1.0_1 16 Jun 2015 02:17:25 |
amdmi3 |
- Add LICENSE
- Fix library installation |
1.0 27 Oct 2014 10:40:08 |
bapt |
Cleanup plist |
1.0 08 Jul 2014 09:07:45 |
vanilla |
1: Stagify.
2: use options helper to handle PORTSDOCS. |
1.0 04 Jul 2014 12:06:07 |
bapt |
Resetting maintainership on ports that have not been staged and without any
pending PR (related to stage)
With hat: portmgr |
1.0 20 Sep 2013 17:13:47 |
bapt |
Add NO_STAGE all over the place in preparation for the staging support (cat:
devel part 3) |
1.0 03 Jul 2011 14:59:23 |
ohauer |
-remove MD5 |
1.0 22 Aug 2009 00:18:43 |
amdmi3 |
- Switch SourceForge ports to the new File Release System: categories starting
with D |
1.0 19 Apr 2008 17:56:05 |
miwi |
- Remove unneeded dependency from gtk12/gtk20 [1]
- Remove USE_XLIB/USE_X_PREFIX/USE_XPM in favor of USE_XORG
- Remove X11BASE support in favor of LOCALBASE or PREFIX
- Use USE_LDCONFIG instead of INSTALLS_SHLIB
- Remove unneeded USE_GCC 3.4+
Thanks to all Helpers:
Dmitry Marakasov, Chess Griffin, beech@, dinoex, rafan, gahr,
ehaupt, nox, itetcu, flz, pav
PR: 116263
Tested on: pointyhat
Approved by: portmgr (pav) |
1.0 22 Jan 2006 08:30:12 |
edwin |
SHA256ify
Approved by: krion@ |
1.0 22 Jan 2006 05:52:28 |
edwin |
eplace ugly "@unexec rmdir %D... 2>/dev/null || true" with @dirrmtry
Approved by: krion@
PR: ports/88711 (related) |
1.0 10 Apr 2004 16:07:10 |
trevor |
Trim whitespace. |
1.0 31 Mar 2004 03:12:58 |
trevor |
SIZEify (maintainer timeout) |
1.0 22 Mar 2004 12:57:41 |
arved |
Only the shared library needs -fPIC |
1.0 22 Feb 2004 18:15:12 |
arved |
Fix build on AMD64
PR: 63185
Submitted by: Hendrik Scholz <hendrik@scholz.net> |
1.0 19 Oct 2003 08:59:55 |
kris |
Respect CC and CFLAGS |
1.0 28 Aug 2003 09:16:04 |
edwin |
NEW PORT: devel/libds (Useful data structures library)
A small, but useful library of data structures. Has AVL
tree, binary heap, hash table, a queue, a stack, variable
length array.
PR: ports/44565
Submitted by: Peter Bozarov <peter@bozz.demon.nl> |