Commit History - (may be incomplete: for full details, see links to repositories near top of page) |
Commit | Credits | Log message |
0.3.17_3 03 Jan 2024 14:09:44 |
Piotr Kubaj (pkubaj) |
devel/liboil: drop ELFv1 support |
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) |
0.3.17_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 ) |
0.3.17_3 20 Jul 2022 19:44:12 |
Tobias C. Berner (tcberner) |
cleanup: remove '$MCom' tag
gnome@ no longer uses Marcusom as their staging ground.
Approved by: gnome (nc)
Differential Revision: https://reviews.freebsd.org/D35866 |
0.3.17_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 ) |
0.3.17_3 16 Jun 2021 09:00:17 |
Piotr Kubaj (pkubaj) |
devel/liboil: fix build on powerpc
Same issue as on powerpc64. |
0.3.17_3 06 Apr 2021 14:31:07 |
Mathieu Arnold (mat) |
Remove # $FreeBSD$ from Makefiles. |
0.3.17_3 24 May 2020 01:46:53 |
pkubaj |
devel/liboil: use GCC on powerpc64 elfv2
clang fails to build this port. |
0.3.17_3 13 Jan 2019 21:35:54 |
linimon |
Our local patches cause build breakage on powerpc64. Remove @plt
from files/patch-vec_memcpy.diff and files/patch-vec_memset.diff to
fix breakage.
PR: 233852
Submitted by: Piotr Kubaj |
0.3.17_3 16 Jan 2018 09:02:03 |
amdmi3 |
- Update WWW |
0.3.17_3 21 Oct 2016 15:21:13 |
mat |
Use USES=pathfix where applicable.
PR: 213195
Submitted by: mat
Exp-run by: antoine
Sponsored by: Absolight
Differential Revision: https://reviews.freebsd.org/D8093 |
0.3.17_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 ) |
0.3.17_2 18 Feb 2015 16:43:13 |
amdmi3 |
- Strip library |
0.3.17_2 15 Nov 2014 12:55:32 |
marino |
devel/liboil: correction, powerpc is fine, it's broken on powerpc64
Reported by: danfe@
PR: 194468 |
0.3.17_2 14 Nov 2014 11:40:21 |
marino |
devel/liboil: mark broken on powerpc
PR: 194468 |
0.3.17_2 27 Oct 2014 10:40:08 |
bapt |
Cleanup plist |
0.3.17_2 10 Sep 2014 15:31:14 |
amdmi3 |
- Clarify LICENSE
- Drop .la files, no dependees require them |
0.3.17_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 ) |
0.3.17 02 Mar 2014 22:05:43 |
bapt |
Convert to USES=libtool |
0.3.17 24 Oct 2013 17:32:55 |
tijl |
Fix build with clang on amd64. |
0.3.17 19 Oct 2013 11:07:37 |
tijl |
- Remove -fheinous-gnu-extensions. No longer needed. [1]
- Remove substitutions that have no effect.
PR: ports/181504 [1]
Submitted by: nork [1] |
0.3.17 25 Sep 2013 00:54:09 |
bdrewery |
- Remove NO_STAGE as these have been tested to be safe
With hat: portmgr |
0.3.17 20 Sep 2013 21:49:30 |
mm |
Returning maintainership on my multimedia ports to ports@freebsd.org |
0.3.17 20 Sep 2013 17:13:47 |
bapt |
Add NO_STAGE all over the place in preparation for the staging support (cat:
devel part 3) |
0.3.17 04 Sep 2013 23:08:40 |
bapt |
Fix with clang is cc is clang, remove the now useless USE_GCC=any |
02 Sep 2013 06:45:48
|
bapt |
Eradicate USE_GNOME=pkgconfig from devel
While here:
USE_GMAKE->USES=gmake
USE_GNOME=gnomehack->USES=pathfix
USE_PERL5*->USES=perl5 |
0.3.17 23 Oct 2012 20:32:59 |
mm |
Fix build with clang.
PR: ports/164190
Submitted by: Yuri Pankov
Feature safe: yes |
0.3.17 09 Oct 2012 22:12:14 |
linimon |
Force numerous ports that fail to build with clang over to instead always
rely on gcc. The patch uses the new USE_GCC=any code in Mk/bsd.gcc.mk to
accomplish this.
The ports chosen were ports that blocked 2 or more ports from building with
clang. (There are several hundred other ports that still fail to build with
clang, even with this patch. This is merely one step along the way.)
Those interested in fixing these ports with clang, and have clang as their
default compiler, can simply set FORCE_BASE_CC_FOR_TESTING=yes.
For those who have gcc as their default compiler, this change is believed
to cause no change.
Hat: portmgr
Tested with: multiple runs on amd64-8-exp-bcm and 9-exp-clang, with various
combinations of patch/no-patch and flag settings. |
0.3.17 11 Aug 2011 19:20:17 |
kwm |
Remove USE_GNOME=gnometarget from ports. It has been a empty keyword since
mid 2008.
PR: ports/159624
Submitted by: Ruslan Mahmatkhanov <cvs-src@yandex.ru> |
0.3.17 03 Jul 2011 14:59:23 |
ohauer |
-remove MD5 |
0.3.17 23 Mar 2011 15:53:22 |
mm |
- Add LICENSE knob(s) |
0.3.17 04 Dec 2010 07:34:27 |
ade |
Sync to new bsd.autotools.mk |
0.3.17 09 Mar 2010 09:56:23 |
mm |
- Update to 0.3.17
- Take maintainership
- liboil stopped development and remains in maintenance mode only
- project outdated and replaced with ORC (The Oil Runtime Compiler)
http://code.entropywave.com/projects/orc/ |
0.3.16 02 Aug 2009 19:36:34 |
mezz |
-Repocopy devel/libtool15 -> libtool22 and libltdl15 -> libltdl22.
-Update libtool and libltdl to 2.2.6a.
-Remove devel/libtool15 and devel/libltdl15.
-Fix ports build with libtool22/libltdl22.
-Bump ports that depend on libltdl22 due to shared library version change.
-Explain what to do update in the UPDATING.
It has been tested with GNOME2, XFCE4, KDE3, KDE4 and other many wm/desktop
and applications in the runtime.
With help: marcus and kwm
Pointyhat-exp: a few times by pav
Tested by: pgollucci, "Romain Tartière" <romain@blogreen.org>, and
a few MarcusCom CVS users. Also, I might have missed a few.
Repocopy by: marcus
Approved by: portmgr |
0.3.16 06 May 2009 00:12:32 |
amdmi3 |
- Update to 0.3.16
PR: 133947
Submitted by: Paul <onemda at gmail dot com> |
0.3.15 30 Mar 2009 01:53:39 |
marcel |
Fix non-PIC calls in assembly for PowerPC. While here, define
symbols as functions and give them a correct size.
Ok'd: gerald (thanks!) |
0.3.15 06 Jan 2009 18:37:41 |
gerald |
Bump USE_GCC=4.1+ to USE_GCC=4.2+.
Approved by: ahze (via multimedia@FreeBSD.org) |
0.3.15 05 Jan 2009 19:44:02 |
pav |
- Remove conditional checks for FreeBSD 5.x and older |
0.3.15 26 Jul 2008 03:30:27 |
ahze |
Update to 0.3.15 |
0.3.14 24 Mar 2008 03:50:55 |
marcus |
The FreeBSD GNOME team is proud to annunce the release of GNOME 2.22.0 for
FreeBSD. The official GNOME 2.22 release notes can be found at
http://library.gnome.org/misc/release-notes/2.22/ . On the FreeBSD front,
this release features an updated hal port with support for video4linux
devices, DRM (Direct Rendering), and better support of removable media. Work
is also underway to tie webkit more closely into GNOME. As part of the
GNOME 2.22 upgrade, GStreamer received a rather large upgrade as well.
Be sure to consult UPDATING on the proper steps to upgrade all of your
GNOME ports.
This release would not have been possible without the contributions and
testing efforts of the following people:
Pawel Worach
kan
edwin
Peter Ulrich Kruppa
J. W. Ballantine
Yasuda Keisuke
Andriy Gapon |
0.3.12 05 Feb 2008 12:33:13 |
ahze |
Use gcc 4.1+ instead of 4.0 when WITH_3DNOW_GCC40 is defined since it's not
supported anymore.
PR: ports/119969
Submitted by: Tsurutani Naoki |
0.3.12 04 Oct 2007 03:25:19 |
rafan |
- Fix INDEX |
0.3.12 04 Oct 2007 00:41:11 |
edwin |
Remove always-false/true conditions based on OSVERSION 500000 |
0.3.12 03 Oct 2007 00:26:58 |
ahze |
Don't give the 3dnow gcc 4.0+ option on OSVERSION < 700042 since it includes gcc
4.2. |
0.3.12 16 Aug 2007 15:47:30 |
mezz |
Makes CFLAGS neater (no repetative -O*)
Submitted by: mi |
0.3.12 05 Jun 2007 16:15:33 |
ahze |
Update to 0.3.12 |
0.3.11 24 Mar 2007 21:50:39 |
marcus |
Update to 0.3.11. |
0.3.10_1 09 Jan 2007 20:11:49 |
marcus |
* Disable SSE2 support since it is buggy and can cause crashes in
gstreamer applications
* Add gnometarget
Approved by: ahze |
0.3.10 19 Nov 2006 23:25:49 |
ahze |
Fix depends on gcc34 on 5.x unless WITH_3DNOW_GCC40 is defined then it
will depend on gcc40+
Reported by: pav |
0.3.10 19 Nov 2006 16:15:21 |
ahze |
- Update to 0.3.10
- Add a knob that enables 3dnow extensions (requires gcc40+) |
0.3.9_1 31 Oct 2006 02:30:46 |
ahze |
- Don't depend on glib since only the examples use glib |
0.3.9_1 06 Jul 2006 05:45:16 |
marcus |
Add a RUN_DEPENDS on gcc34 (yuck!) for 5.X since liboil links to libgcc_s.so
which is not installed by the base gcc for some reason. Without this
fix binaries that link to liboil would fail to load. |
0.3.9 12 Jun 2006 14:18:26 |
ahze |
- Don't force gcc3.4 on 4.x, gcc 2.95 in base works just fine. |
0.3.9 12 Jun 2006 13:59:44 |
ahze |
- Force use of gcc34 on 5.x to fix build due to a bug in the base gcc version.
Reported by: pointyhat via kris |
0.3.9 09 Jun 2006 18:00:35 |
ahze |
- Transfer MAINTAINER to multimedia@
Approved by: dhw (postmaster, for using multimedia@ as maintainer)
gnome (gstreamer ports) |
0.3.9 07 Jun 2006 01:56:19 |
ahze |
- Update to 0.3.9
Spotted on: portscout |
0.3.8 17 May 2006 22:03:40 |
ahze |
- Update to 0.3.8
- Adopt port |
0.3.6 01 May 2006 16:31:33 |
lofi |
Don't require gcc 3.4, since liboil in fact builds quite happily with older
compilers, too. |
0.3.6 29 Apr 2006 22:17:10 |
ahze |
- Update to 0.3.6 |
0.3.5_1 14 Apr 2006 23:25:09 |
linimon |
Reset kwm due to no response about email.
Hat: portmgr |
0.3.5_1 23 Feb 2006 10:40:45 |
ade |
Conversion to a single libtool environment.
Approved by: portmgr (kris) |
0.3.5 22 Jan 2006 08:30:12 |
edwin |
SHA256ify
Approved by: krion@ |
0.3.5 22 Jan 2006 01:48:34 |
edwin |
Replace ugly "@unexec rmdir %D... 2>/dev/null || true" with @dirrmtry
Approved by: krion@
PR: ports/88711 (related) |
0.3.5 15 Nov 2005 06:52:12 |
ade |
Mass-conversion to the USE_AUTOTOOLS New World Order. The code present
in bsd.autotools.mk essentially makes this a no-op given that all the
old variables set a USE_AUTOTOOLS_COMPAT variable, which is parsed in
exactly the same way as USE_AUTOTOOLS itself.
Moreover, USE_AUTOTOOLS has already been extensively tested by the GNOME
team -- all GNOME 2.12.x ports use it.
Preliminary documentation can be found at:
http://people.FreeBSD.org/~ade/autotools.txt
which is in the process of being SGMLized before introduction into the
Porters Handbook.
Light blue touch-paper. Run. |
0.3.5 05 Nov 2005 14:56:18 |
kwm |
Update to 0.3.5.
Change WWW to http://liboil.freedesktop.org now that its hosted there. |
0.3.3_1 05 Nov 2005 05:22:06 |
marcus |
Bump PORTREVISION to chase the glib20 shared library update. |
0.3.3 21 Oct 2005 09:36:37 |
kwm |
Update to 0.3.3.
Fix build on 4.x by using gcc 3.4. |
0.3.2 26 May 2005 19:02:14 |
kwm |
Update to 0.3.2.
Add patch for cpu instruction detection [1].
Submitted by: [1] bland (earlier version) |
0.3.1 10 Apr 2005 21:45:48 |
kris |
BROKEN on 4.x: Does not compile |
0.3.1 20 Mar 2005 15:56:24 |
kwm |
Update to 0.3.1.
Submitted by: anholt |
0.2.2_1 17 Mar 2005 09:41:42 |
kwm |
Remove gnomeprefix. It doesn't has any use.
Submitted by: pointyhat via kris^Hon |
0.2.2_1 12 Mar 2005 10:54:27 |
marcus |
Bump PORTREVISION to chase the glib20 shared lib version change. |
0.2.2 28 Nov 2004 23:11:37 |
kwm |
This patch is not needed.
Approved by: pav (mentor) |
0.2.2 28 Nov 2004 18:46:47 |
kwm |
Add liboil a library of simple functions that are optimized for various CPUs.
These functions are generally loops implementing simple algorithmes.
Grab maintainer-ship
PR: 74361
Submitted by: ijliao
Approved by: pav (mentor) |