non port: misc/bibletime/Makefile |
Number of commits found: 96 |
Thursday, 14 Sep 2023
|
07:08 Tobias C. Berner (tcberner)
misc/bibletime: switch to using WebEngine
Qt5Webkit will be removed at the end of the year.
See: commit e8e65e7574de0b374caaa3da0ba6a26a67103e62
www/qt5-webkit: mark for deletion
Qt upstream switched to QtWebEngine quite a while ago, and the maintenance
of QtWebKit was carried out by a separate person.
Unfortunately, no release or updates have been pushed in the recent
years.
Note: there is a fork [1] of the used fork [2], that might be viable for
people that
really still need to rely on Qt5Webkit.
[1] https://github.com/movableink/webkit/
[2] https://github.com/qtwebkit/qtwebkit
5e2b11d |
Tuesday, 25 Apr 2023
|
15:17 Christian Weisgerber (naddy)
audio/opus: bump consumers after update to 1.4
feb1fa3 |
Sunday, 11 Sep 2022
|
10:20 Felix Palmen (zirias)
Mk/Uses: always use colon for build/run suffix
Most USES use a colon for build/run(/test) suffixes. Change kde.mk,
qt.mk and pyqt.mk to do the same, and update all ports using that.
Document in CHANGES.
PR: 266034
Exp-run by: antoine
Approved by: tcberner (mentor)
Differential Revision: https://reviews.freebsd.org/D36349
ddae4e9 |
Wednesday, 7 Sep 2022
|
21:10 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.
This commit implements such a proposal and moves one of the WWW: entries
of each pkg-descr file into the respective port's Makefile. A heuristic
attempts to identify the most relevant URL in case there is more than
one WWW: entry in some pkg-descr file. URLs that are not moved into the
Makefile are prefixed with "See also:" instead of "WWW:" in the pkg-descr
files in order to preserve them.
There are 1256 ports that had no WWW: entries in pkg-descr files. These
ports will not be touched in this commit.
The portlint port has been adjusted to expect a WWW entry in each port
Makefile, and to flag any remaining "WWW:" lines in pkg-descr files as
deprecated.
Approved by: portmgr (tcberner)
b7f0544 |
Sunday, 4 Sep 2022
|
23:51 Dima Panov (fluffy)
misc/bibletime: add hidden dependencies on qt5-printsupport and qt5-widgets (+)
Stage-qa raise missed declaration of used libraries of qt5-printsupport and
qt5-widgets.
Approved by: portmgr blanket
a6a870a |
Monday, 19 Jul 2021
|
04:57 Tobias C. Berner (tcberner)
misc/bibletime: add missing build dependency on testlib
The dependency was previously pulled in transitively.
PR: 257100
e986782 |
Wednesday, 7 Apr 2021
|
08:09 Mathieu Arnold (mat)
One more small cleanup, forgotten yesterday.
Reported by: lwhsu
cf118cc |
Tuesday, 6 Apr 2021
|
14:31 Mathieu Arnold (mat)
Remove # $FreeBSD$ from Makefiles.
305f148 |
Friday, 26 Jul 2019
|
20:46 gerald
Bump PORTREVISION for ports depending on the canonical version of GCC
as defined in Mk/bsd.default-versions.mk which has moved from GCC 8.3
to GCC 9.1 under most circumstances now after revision 507371.
This includes ports
- with USE_GCC=yes or USE_GCC=any,
- with USES=fortran,
- using Mk/bsd.octave.mk which in turn features USES=fortran, and
- with USES=compiler specifying openmp, nestedfct, c11, c++0x, c++11-lang,
c++11-lib, c++14-lang, c++17-lang, or gcc-c++11-lib
plus, everything INDEX-11 shows with a dependency on lang/gcc9 now.
PR: 238330
 |
Wednesday, 19 Jun 2019
|
14:31 linimon
Add compiler:c11 to USES to unbreak on powerpc64:
btosismorphsegmentation.cpp.o: undefined reference to
sword::SWOptionFilter::SWOptionFilter
Approved by: portmgr (tier-2 blanket)
 |
Wednesday, 16 Jan 2019
|
11:13 tijl
Fix Qt5 symbol version scripts to put the catch-all clause first. When
a symbol matches multiple clauses the last one takes precedence. If the
catch-all is last it captures everything. In the case of Qt5 libraries
this caused all symbols to have a Qt_5 label while some should have
Qt_5_PRIVATE_API. This only affects lld because GNU ld always gives the
catch-all lowest priority.
Older versions of Qt5Webengine exported some memory allocation symbols from
the bundled Chromium. Version 5.9 stopped exporting these [1] but the
symbols were kept as weak wrappers for the standard allocation functions to
maintain binary compatibility. [2][3] The problem is that the call to the
standard function in these weak wrappers is only resolved to the standard
function if there's a call to this standard function in other parts of
Qt5Webengine, because only then is there a non-weak symbol that takes
precedence over the weak one. If there's no such non-weak symbol the call
in the weak wrapper resolves to the weak wrapper itself creating an infinite
call loop that overflows the stack and causes a crash. Some of the
allocation functions are variants of C++ new and delete and it probably
depends on the compiler whether these variants are used in other parts of
Qt5Webengine.
Remove the weak wrappers (make them Linux specific). This isn't binary
compatible but we are already breaking that with the changes to the symbol
versions.
[1]
https://github.com/qt/qtwebengine/commit/5c2cbfccf9aafb547b0b30914c4056abd25942a4
[2]
https://github.com/qt/qtwebengine/commit/2ed5054e3a800fa97c2c9e920ba1e6ea4b6ef2a5
[3]
https://github.com/qt/qtwebengine/commit/009f5ebb4bd6e50188671e0815a5dae6afe39db5
Bump all ports that depend on Qt5.
PR: 234070
Exp-run by: antoine
Approved by: kde (adridg)
 |
Tuesday, 25 Dec 2018
|
20:25 tcberner
Change cmake default behaviour to outsource.
Ports that build out of source now simply can use "USES=cmake"
instead of "USES=cmake:outsource". Ports that fail to build
out of source now need to specify "USES=cmake:insource".
I tried to only set insource where explictely needed.
PR: 232038
Exp-run by: antoine
 |
Thursday, 6 Sep 2018
|
13:52 ericbsd
ericbsd take the maintainership of misc/bibletime and update it to 2.11.2
Approved by: bapt (mentor)
 |
Thursday, 28 Jun 2018
|
17:39 tcberner
Replace bsd.qt.mk by Uses/qt.mk and Uses/qt-dist.mk
From now on, ports that depend on Qt4 will have to set
USES= qt:4
USE_QT= foo bar
ports depending on Qt5 will use
USES= qt:5
USE_QT= foo bar
PR: 229225
Exp-run by: antoine
Reviewed by: mat
Approved by: portmgr (antoine)
Differential Revision: -https://reviews.freebsd.org/D15540
 |
Thursday, 21 Jun 2018
|
16:52 tcberner
multimedia/*phonon*: update and flavorize with @qt4/@qt5
Approved by: portmgr (mat)
Differential Revision: https://reviews.freebsd.org/D14632
 |
Monday, 18 Jun 2018
|
14:00 linimon
Mark ports broken on powerpc64, categories g-n.
While here, pet portlint and do some other cleanup.
Approved by: portmgr (tier-2 blanket)
 |
Friday, 23 Feb 2018
|
01:33 tabthorpe
- Reassign ports to the heap
 |
01:30 tabthorpe
- Update misc/sword to 1.8.0
- Chase shlib bump
- Reassign to the heap
PR: 225276
Submitted by: bsam
 |
Thursday, 20 Apr 2017
|
13:33 tabthorpe
- Mark as BROKEN on 12.X
MFH: 2017Q2
 |
Wednesday, 15 Mar 2017
|
14:45 mat
Remove all USE_OPENSSL occurrences.
Sponsored by: Absolight
 |
Friday, 1 Apr 2016
|
14:16 mat
Remove ${PORTSDIR}/ from dependencies, categories m, n, o, and p.
With hat: portmgr
Sponsored by: Absolight
 |
Saturday, 10 Jan 2015
|
05:13 tabthorpe
- Update to 2.10.1
 |
Wednesday, 10 Sep 2014
|
20:50 gerald
Update the default version of GCC in the Ports Collection from GCC 4.7.4
to GCC 4.8.3.
Part II, Bump PORTREVISIONs.
PR: 192025
Tested by: antoine (-exp runs)
Approved by: portmgr (implicit)
 |
Tuesday, 29 Jul 2014
|
21:07 adamw
Convert a bunch of USE_XZ to USES=tar:xz.
Approved by: portmgr (not really, but touches unstaged ports)
 |
Monday, 14 Jul 2014
|
18:42 bapt
Modernize LIB_DEPENDS
With hat: portmgr
 |
Tuesday, 18 Feb 2014
|
14:31 makc
- Bump PORTREVISION after KDE4_PREFIX change
 |
Thursday, 16 Jan 2014
|
20:47 tabthorpe
- Chase misc/sword shlib change
- Bump PORTREVISION
 |
Wednesday, 15 Jan 2014
|
06:24 tabthorpe
- Bump PORTREVISION to chase shlib change in misc/sword
 |
Saturday, 4 Jan 2014
|
07:33 tabthorpe
- Fix text filter settings not being saved
- Bump PORTREVISION
Submitted by: Jaak Ristioja (upline developer)
 |
Tuesday, 31 Dec 2013
|
15:49 tabthorpe
- Update to 2.10.0
 |
Monday, 23 Dec 2013
|
18:51 tabthorpe
- Remove NO_STAGE
- Turns out cmake(1) has it all built in
Thanks to: bapt
 |
Wednesday, 11 Dec 2013
|
18:05 tabthorpe
- Explicity depend on libsword-1.6.2.so
- Fix LIB_DEPENDS for clucene
- Add CONFLICTS for soon to be added bibletime-devel
 |
05:54 tabthorpe
- Revert to previous version
Submitted by: FreshPorts Sanity checking daemon
 |
05:43 tabthorpe
- Explicitly depend on sword 1.6.2
- Add CONFLICTS for soon to be added 2.10
 |
Friday, 20 Sep 2013
|
20:50 bapt
Add NO_STAGE all over the place in preparation for the staging support (cat:
misc)
 |
Tuesday, 10 Sep 2013
|
04:08 danfe
- Now that misc/sword port is fixed, remove no longer needed USE_GCC
- While here: drop the article from COMMENT, remove LICENSE_FILE (it
was actually just vanilla GPL boilerplate), sanitize dependencies,
put USES where it's normally found; tidy up port description a bit.
Approved by: tabthorpe (maintainer, implicit)
 |
01:23 tabthorpe
- Add USE_GCC=any to build on 10.X
Submitted by: pkg-fallout
 |
Saturday, 29 Jun 2013
|
05:16 tabthorpe
- Update to 2.9.2
 |
Friday, 22 Mar 2013
|
20:06 makc
- convert USE_CMAKE to USES
- while here clean up some ports from CMAKE_VERBOSE, which is intended
for users
Approved by: portmgr (miwi)
 |
Monday, 28 Jan 2013
|
22:25 jkim
- Re-assign textproc/clucene maintainship to office@. [1]
- Update textproc/clucene to 2.3.3.4. Note this version is required by
recent LibreOffice.
- Remove textproc/clucene-contrib because it is now integrated into
textproc/clucene. [2]
- Mark textproc/p5-Lucene as broken. There is no dependent port and it was
only written for obsolete Lucene 0.9.x API. [3]
- Update deskutils/kdepim4 and deskutils/strigi to build with the new
CLucene port. [4]
- Update misc/bibletime and misc/sword to use new CLucene 2.3.x API. [5]
Approved by: clsung (maintainer timeout) [1]
Approved by: tj (maintainer) [2]
Approved by: perl [3]
Approved by: kde [4]
Approved by: tabthorpe (maintainer timeout) [5]
Obtained from: The SWORD Project [5]
 |
Sunday, 1 Jul 2012
|
03:50 tabthorpe
- Chase change to misc/sword
- Bump PORTREVISION
 |
Sunday, 10 Jun 2012
|
18:42 swills
- Convert all remaining instances of BUILD_DEPENDS=${RUN_DEPENDS} or
RUN_DEPENDS=${BUILD_DEPENDS} to use := which portlint has warned
about for a while.
PR: ports/168208
Approved by: portmgr (miwi)
 |
Wednesday, 6 Jun 2012
|
06:44 miwi
- Convert USE_QT_VER=4 and QT_COMPONETS to USE_QT4
Review by: bapt, David Naylor (kde team)
 |
Friday, 1 Jun 2012
|
05:26 dinoex
- update png to 1.5.10
 |
Friday, 23 Dec 2011
|
03:29 tabthorpe
- Update to 2.9.1
 |
Thursday, 8 Dec 2011
|
15:59 tabthorpe
- Update to 2.9.0
Feature safe: yes
 |
Wednesday, 23 Nov 2011
|
03:41 tabthorpe
- Update to 2.8.4
Feature safe: yes
 |
Tuesday, 22 Nov 2011
|
18:01 tabthorpe
- Update to 2.8.3
Feature safe: yes
 |
Thursday, 8 Sep 2011
|
12:20 tabthorpe
- Update to 2.8.2
 |
Sunday, 10 Apr 2011
|
08:47 makc
CMAKE_BUILD_TYPE is set in bsd.cmake.mk now, remove it from Makefiles
Clean up and remove support for 6.x
Approved by: tabthorpe via irc
 |
Sunday, 23 Jan 2011
|
03:34 tabthorpe
- Update to 2.8.1
Feature safe: yes
 |
Thursday, 2 Dec 2010
|
20:39 tabthorpe
- Remove boost dependency
- Bump PORTREVISION
 |
Sunday, 28 Nov 2010
|
01:36 tabthorpe
- Update to 2.8.0
 |
Thursday, 28 Oct 2010
|
23:54 tabthorpe
- Chase misc/sword libbump
- Bump PORTREVISION
- Remove MD5 checksum while I am here
 |
Wednesday, 8 Sep 2010
|
03:31 tabthorpe
- Update to 2.7.3
 |
Monday, 12 Jul 2010
|
16:05 tabthorpe
- Update to 2.7.2
 |
Wednesday, 7 Jul 2010
|
15:35 tabthorpe
- Update to 2.7.1
- Add LICENSE
Feature safe: yes
 |
Thursday, 20 May 2010
|
14:09 tabthorpe
- Update to 2.7
 |
Sunday, 28 Mar 2010
|
06:47 dinoex
- update to 1.4.1
Reviewed by: exp8 run on pointyhat
Supported by: miwi
 |
Thursday, 25 Feb 2010
|
13:02 tabthorpe
- Update to 2.6
Feature safe: yes
 |
Thursday, 7 Jan 2010
|
17:47 tabthorpe
- Chase sword libbump
- Remove CONFLICTS and un-needed patch
 |
Sunday, 20 Dec 2009
|
19:11 tabthorpe
- Update to 2.5
 |
Wednesday, 18 Nov 2009
|
20:18 tabthorpe
- Update to 2.4
 |
Friday, 30 Oct 2009
|
19:38 tabthorpe
- Fix CONFLICTS missed in previous commit
 |
19:33 tabthorpe
- Rename misc/bibletime-kde4 -> misc/bibletime now that KDE dependencies are
removed
 |
Thursday, 26 Feb 2009
|
19:58 tabthorpe
- Remove misc/bibletime and misc/bibletime-devel
 |
Thursday, 21 Aug 2008
|
06:18 rafan
Update CONFIGURE_ARGS for how we pass CONFIGURE_TARGET to configure script.
Specifically, newer autoconf (> 2.13) has different semantic of the
configure target. In short, one should use --build=CONFIGURE_TARGET
instead of CONFIGURE_TARGET directly. Otherwise, you will get a warning
and the old semantic may be removed in later autoconf releases.
To workaround this issue, many ports hack the CONFIGURE_TARGET variable
so that it contains the ``--build='' prefix.
To solve this issue, under the fact that some ports still have
configure script generated by the old autoconf, we use runtime detection
in the do-configure target so that the proper argument can be used.
Changes to Mk/*:
- Add runtime detection magic in bsd.port.mk
- Remove CONFIGURE_TARGET hack in various bsd.*.mk
- USE_GNOME=gnometarget is now an no-op
Changes to individual ports, other than removing the CONFIGURE_TARGET hack:
= pkg-plist changed (due to the ugly CONFIGURE_TARGET prefix in * executables)
- comms/gnuradio
- science/abinit
- science/elmer-fem
- science/elmer-matc
- science/elmer-meshgen2d
- science/elmerfront
- science/elmerpost
= use x86_64 as ARCH
- devel/g-wrap
= other changes
- print/magicfilter
GNU_CONFIGURE -> HAS_CONFIGURE since it's not generated by autoconf
Total # of ports modified: 1,027
Total # of ports affected: ~7,000 (set GNU_CONFIGURE to yes)
PR: 126524 (obsoletes 52917)
Submitted by: rafan
Tested on: two pointyhat 7-amd64 exp runs (by pav)
Approved by: portmgr (pav)
 |
Friday, 6 Jun 2008
|
13:45 edwin
Bump portrevision due to upgrade of devel/gettext.
The affected ports are the ones with gettext as a run-dependency
according to ports/INDEX-7 (5007 of them) and the ones with USE_GETTEXT
in Makefile (29 of them).
PR: ports/124340
Submitted by: edwin@
Approved by: portmgr (pav)
 |
Wednesday, 21 May 2008
|
12:55 tabthorpe
- Chase misc/sword libbump
- Bump PORTREVISION
 |
Monday, 12 May 2008
|
18:51 tabthorpe
- Update to 1.6.5.1
- Changelog at
<http://sourceforge.net/project/shownotes.php?release_id=449414&group_id=954>
 |
Tuesday, 18 Dec 2007
|
19:38 tabthorpe
- Update to 1.6.5
Approved by: portmgr (pav)
 |
Thursday, 23 Aug 2007
|
04:00 tabthorpe
- change maintainer address on ports I maintain
Approved by: clsung (mentor)
 |
Saturday, 19 May 2007
|
20:32 flz
- Welcome X.org 7.2 \o/.
- Set X11BASE to ${LOCALBASE} for recent ${OSVERSION}.
- Bump PORTREVISION for ports intalling files in ${X11BASE}.
 |
Friday, 20 Apr 2007
|
21:07 miwi
- Update to 1.6.4
PR: 111871
Submitted by: Thomas Abthorpe <thomas@goodking.ca> (maintainer)
 |
Thursday, 8 Feb 2007
|
22:35 miwi
- Remove IGNORE on FreeBSD 4.x, it's no longer need.
PR: 108944
Submitted by: Thomas Abthorpe <thomas@goodking.ca> (maintainer)
 |
Monday, 5 Feb 2007
|
10:36 clsung
- Update to 1.6.3b
PR: ports/108675
Submitted by: maintainer (Thomas Abthorpe)
 |
Tuesday, 12 Dec 2006
|
21:06 miwi
- Update to 1.6.2
PR: ports/106644
Submitted by: Thomas Abthorpe <thomas@goodking.ca> (maintainer)
 |
Wednesday, 1 Nov 2006
|
09:42 miwi
- Update to 1.6.1
PR: ports/104936
Submitted by: Thomas Abthorpe <thomas@goodking.ca> (maintainer)
 |
Saturday, 30 Sep 2006
|
07:40 miwi
- Update to 1.6
PR: ports/103735
Submitted by: Thomas Abthorpe <thomas(at)goodking.ca> (maintainer)
 |
Saturday, 5 Aug 2006
|
21:49 shaun
Mark BROKEN on 4.x: fails to compile.
PR: ports/101208
Submitted by: Thomas Abthorpe <thomas@goodking.ca> (maintainer)
 |
Saturday, 15 Jul 2006
|
00:10 rafan
- Update to 1.5.3
- Pass maintainership to submitter
- Reformat pkg-descr
- Workaround for sword 1.5.8 (LIB_DEPENDS -> {RUN,BUILD}_DEPENDS)
PR: ports/100213
Submitted by Thomas Abthorpe <thomas goodking.ca>
 |
Wednesday, 10 May 2006
|
22:37 edwin
Remove USE_REINPLACE from ports starting with M
 |
Thursday, 23 Feb 2006
|
10:40 ade
Conversion to a single libtool environment.
Approved by: portmgr (kris)
 |
Tuesday, 22 Nov 2005
|
22:19 linimon
Reassign to ports pool. Thanks to the previous maintainer for your help in
the past.
PR: ports/89436
Submitted by: Willem van Engen <wvengen at stack dot nl>
 |
Saturday, 5 Nov 2005
|
05:22 marcus
Bump PORTREVISION to chase the glib20 shared library update.
 |
Thursday, 3 Nov 2005
|
21:08 edwin
Fix BROKEN status by completing pkg-plist
 |
Saturday, 23 Jul 2005
|
02:53 kris
This port is scheduled for deletion on 2005-09-22 if it is still broken
at that time and no PRs have been submitted to fix it.
 |
Saturday, 12 Mar 2005
|
10:54 marcus
Bump PORTREVISION to chase the glib20 shared lib version change.
 |
Monday, 28 Feb 2005
|
00:15 kris
BROKEN: Incomplete pkg-plist
 |
Friday, 27 Aug 2004
|
18:50 sem
Update to 1.4.1.
Add documentation.
PR: ports/70713
Submitted by: maintainer
 |
Monday, 5 Apr 2004
|
03:31 marcus
Chase the glib20 update, and bump all affected ports' PORTREVISIONs.
 |
Wednesday, 4 Feb 2004
|
05:10 marcus
Bump PORTREVISION on all ports that depend on gettext to aid with upgrading.
(Part 1)
 |
Wednesday, 9 Jul 2003
|
09:25 znerd
Unbroken and updated to 1.2.2.
Approved by: MAINTAINER
 |
Tuesday, 6 May 2003
|
06:54 kris
BROKEN: Does not compile
 |
Friday, 21 Feb 2003
|
12:48 knu
De-pkg-comment.
 |
Saturday, 23 Nov 2002
|
03:33 edwin
New port: misc/bibletime
BibleTime is a powerful Bible study application for the K Desktop
Environment running on Unix operating systems. BibleTime is
based on the Sword library which provides access to all the
different text modules created by the Crosswire Bible Society.
PR: ports/34981
Submitted by: Willem van Engen <wvengen+port@stack.nl>
 |
Number of commits found: 96 |