Commit History - (may be incomplete: for full details, see links to repositories near top of page) |
Commit | Credits | Log message |
20140816 29 Feb 2024 13:56:47 |
Antoine Brodin (antoine) |
libyal: move man pages to share
Tested by: bofh |
20140816 14 Feb 2024 13:41:44 |
Antoine Brodin (antoine) |
devel/libewf: update to 20140816 |
20140814 21 Feb 2023 18:49:30 |
Antoine Brodin (antoine) |
devel/libewf: update to 20140814 |
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) |
20140812 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 ) |
20140812 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 ) |
20140812 26 Jun 2021 08:46:53 |
Antoine Brodin (antoine) |
devel/libewf: update to 20140812 |
20140811 06 Apr 2021 14:31:07 |
Mathieu Arnold (mat) |
Remove # $FreeBSD$ from Makefiles. |
20140811 01 Dec 2020 14:16:47 |
antoine |
Update to 20140811 |
20140810 13 Oct 2020 07:32:08 |
antoine |
Update to 20140810 |
20140808 19 Jan 2020 20:18:10 |
antoine |
Update to 20140808 |
20140807_1 24 Dec 2019 14:13:06 |
antoine |
Remove python 2.7 support |
20140807 21 Mar 2019 12:19:33 |
antoine |
Update to 20140807 |
20140806 03 Feb 2019 09:27:37 |
antoine |
Update to 20140806 |
20140804 04 Jul 2018 09:20:14 |
antoine |
- Update to 20140804
- Build python2 and python3 bindings |
20140803_1 12 Jun 2018 16:40:33 |
antoine |
Do not use ssl (EVP), this fixes build with OpenSSL 1.1
PR: 228941 |
20140803 16 Feb 2018 18:35:03 |
brnrd |
security/openssl-devel: Mark ports broken cat devel
- REASON from build log |
20140803 29 Jan 2018 12:18:02 |
antoine |
Update to 20140803 |
20140802 02 Dec 2017 13:04:59 |
antoine |
Update to 20140802 |
20140801 14 Oct 2017 16:00:01 |
nobutaka |
- Update libewf to 20140801 (experimental version is not used as it breaks API
and is not compatible with bulk_extractor and sleuthkit)
- Hand over maintainership to antoine
- Unbundle libsmdev and libsmraw
- Remove unneeded .la files and iconv dependency
- Make NLS optional
- Update WWW
PR: 222940
Submitted by: antoine |
20140608_1 15 Mar 2017 14:45:31 |
mat |
Remove all USE_OPENSSL occurrences.
Sponsored by: Absolight |
20140608_1 08 Dec 2016 19:23:25 |
tijl |
Remove libiconv.so.3 compatibility link that was added in r374303 to
prevent massive PORTREVISION bumps. Bump dependent ports that have not
been bumped since. |
20140608 25 Oct 2016 20:28:23 |
antoine |
Fix MASTER_SITES |
20140608 01 Apr 2016 14:00:57 |
mat |
Remove ${PORTSDIR}/ from dependencies, categories d, e, f, and g.
With hat: portmgr
Sponsored by: Absolight |
20140608 27 Jan 2016 20:35:37 |
amdmi3 |
- Remove always false conditional
Approved by: portmgr blanket |
20140608 27 Oct 2014 10:40:08 |
bapt |
Cleanup plist |
20140608 20 Oct 2014 16:04:14 |
mva |
- Convert ports of devel/ to USES=python
Approved by: portmgr (implicit) |
20140608 15 Jun 2014 13:12:21 |
antoine |
Update to 20140608 |
20140427 10 Jun 2014 07:39:02 |
olgeni |
Remove indefinite articles and trailing periods from COMMENT, plus
minor COMMENT typos and surrounding whitespace fixes. Categories D-F.
CR: D196
Approved by: portmgr (bapt) |
20140427 29 Apr 2014 16:55:49 |
antoine |
Update to 20140427 |
20140406_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 ) |
20140406 07 Apr 2014 21:15:17 |
antoine |
Fix distinfo
Reported by: mat and swills |
20140406 07 Apr 2014 18:05:14 |
antoine |
- Update to 20140406
- Strip libraries |
20140227 03 Mar 2014 19:45:19 |
antoine |
- Update to 20140227
- Use libtool
PR: ports/186836
Approved by: maintainer timeout (2 weeks) |
20131230 13 Jan 2014 21:00:04 |
rene |
Python cleanup:
- USE_PYTHON* = 2.X -> USE_PYTHON* = 2
- USE_PYTHON* = 2.X+ -> USE_PYTHON* = yes
Reviewed by: python (mva, rm)
Approved by: portmgr-lurkers (mat) |
20131230 05 Jan 2014 16:44:46 |
antoine |
Update to 20131230 |
20131210 12 Dec 2013 19:15:21 |
antoine |
Update to 20131210 |
20130416 24 Sep 2013 18:17:19 |
antoine |
- Add an explicit dependency on pkgconf (needed for fuse detection)
- Convert to STAGEDIR |
20130416 20 Sep 2013 17:13:47 |
bapt |
Add NO_STAGE all over the place in preparation for the staging support (cat:
devel part 3) |
20130416 11 Jul 2013 16:51:55 |
antoine |
Update libewf to 20130416 and libvshadow to 20130509
This makes them fetchable again
PR: ports/180285 , ports/180064
Approved by: maintainer timeout |
20130303 27 Apr 2013 08:50:47 |
mva |
- Convert USE_ICONV=yes to USES=iconv
- Change USE_GNOME=pkgconfig|gnomehack to USES=pathfix|pkgconfig while here
Reviewed by: bapt, kwm |
20130303 24 Apr 2013 07:35:41 |
ak |
- Convert USE_GETTEXT to USES (part 1)
Approved by: portmgr (bapt) |
20130303 09 Mar 2013 01:27:08 |
nobutaka |
Update to 20130303.
Change MASTER_SITES to Google Code.
Change LICENSE to LGPL3.
Use USES=pathfix instead of patching Makefile.in.
Remove CFLAGS that are not needed anymore.
PR: ports/175980
Submitted by: antoine |
20120813 06 Mar 2013 16:52:02 |
bapt |
Convert USE_FUSE macros into USES feature.
While here trim headers
Convert some USE_GNOME= gnomehack -> USES= pathfix |
20120813 14 Dec 2012 15:47:01 |
flo |
- introduce a USE_FUSE macro
- convert all fuse ports to use the new macro
The macro makes sure sysutils/fusefs-libs gets installed and depending on
fuse being in base or not it installs sysutils/fusefs-kmod.
Approved by: portmgr (bapt) |
20120813 25 Aug 2012 10:30:00 |
nobutaka |
Update to 20120813. |
20120603 20 Jun 2012 17:27:58 |
nobutaka |
Remove unused USE_LIBTOOL line.
Reported by: Alex Kozlov <spam@rm-rf.kiev.ua> |
20120603 05 Jun 2012 15:39:29 |
nobutaka |
Update to 20120603. |
20120504 31 May 2012 17:01:28 |
nobutaka |
Add libewf, a library for support of the Expert Witness Compression Format
(EWF). |