non port: editors/xcoral/Makefile |
SVNWeb
|
Number of commits found: 28 |
Wed, 7 Sep 2022
|
[ 21:10 Stefan Eßer (se) ] b7f0544 (Only the first 10 of 27931 ports in this commit are shown above. )
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 )
|
Wed, 20 Jul 2022
|
[ 14:21 Tobias C. Berner (tcberner) ] 7cd7a8d (Only the first 10 of 119 ports in this commit are shown above. )
editors: remove 'Created by' lines
A big Thank You to the original contributors of these ports:
* Adam Saponara <as@php.net>
* Adam Weinberger <adamw@FreeBSD.org>
* Akinori MUSHA aka knu <knu@idaemons.org>
* Alexey Dokuchaev <danfe@FreeBSD.org>
* Andreas Kohout <shanee@augusta.de>
* Andrej Zverev <az@inec.ru>
* Andrey Zakhvatov
* Anton Tornqvist <antont@inbox.lv>
* Bill Fumerola <billf@chc-chimes.com>
* Bob Eager <bob@eager.cx>
* Chris D. Faulhaber <jedgar@fxp.org> (Only the first 15 lines of the commit message are shown above )
|
Tue, 6 Apr 2021
|
[ 14:31 Mathieu Arnold (mat) ] 305f148 (Only the first 10 of 29333 ports in this commit are shown above. )
Remove # $FreeBSD$ from Makefiles.
|
Thu, 31 Dec 2020
|
[ 20:21 mi ]
Start searching for headers and libraries under ${LOCALBASE}/ --
in case newer implementations of anything are installed there.
When compiling on 13.x or above, insist on libgnuregex version above
5 -- earlier FreeBSD releases came with libgnuregex.so.5, but that's
now gone and replaced by the devel/libgnuregex port, which currently
installs libgnuregex.so.6.
PR: 252252 252250 252245
Submitted by: kevans
Sponsored by: United Marsupials
|
Sat, 5 Sep 2020
|
[ 01:06 mi ]
Fix the "duplicate symbol" problem, which builds on -current have
uncovered recently.
While here, also:
1. Fix some compiler-warnings shown by the newer clang.
2. Stop patching the BR_Parser.c -- because we patch
BR_Parser.y anyway, which necessitates regenerating
the former.
3. Fix the concurrency problem with the bison-invocation
which would, occasionally, break parallel builds.
Reported by: pkg-fallout
Sponsored by: United Marsupials
|
Tue, 5 Nov 2019
|
[ 15:48 zeising ] (Only the first 10 of 73 ports in this commit are shown above. )
Add USES=xorg USES=gl, ports categories e
Add USES=xorg, USES=gl and in a few cases USES=gnome to ports in categories
starting with 'e'.
|
Sat, 7 Sep 2019
|
[ 03:52 mi ]
Fix one more bug from the era, when trees were large and
pointers -- the size of int.
Sponsored by: filial duty
|
Fri, 26 Jul 2019
|
[ 20:46 gerald ] (Only the first 10 of 3853 ports in this commit are shown above. )
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
|
Mon, 1 Jul 2019
|
[ 12:50 pkubaj ]
editors/xcoral: fix build
Add USES=compiler:c11 to fix build:
BR_Parser.y:1652: error: argument 'file_name' doesn't match prototype
BR_Interface.h:101: error: prototype declaration
Approved by: mentors (implicit approval)
|
Sat, 24 Jan 2015
|
[ 18:43 mi ]
Add a patch to relax requirements for matching font-names available
in the editor's menu. The menu isn't changeable through the interface
nor through the config-files (nor even Xresources).
By allowing the templates to be used, we let the users to, at least,
control the actual fonts in use by manipulating the font-path.
Bump PORTREVISION.
|
Wed, 31 Dec 2014
|
[ 04:42 mi ]
Although it continued to build -- with lots of warnings -- the editor
quietly stopped working over the years. It would not come up on 64-bit
at all, and, even where it worked, the copy/pasting was broken due to,
apparently, some unwarranted assumptions about X11, that were no longer
true with modern Xorg.
This change makes use of a major patch, that provides for reasonably
warning-free compile -- which, by itself, fixes the crashes. Also
included in the patch are fixes for copy/pasting as well for parallel
building. (Awareness raised upstream.)
Because BR_Parser.y is among the patched files, bison is now needed at
build-time (found by KATO Tsuguru).
Bump PORTREVISION and take maintainership for the time being.
Reviewed by: KATO Tsuguru
Sponsored by: Fatherly Love
|
Tue, 15 Jul 2014
|
[ 23:30 adamw ] (Only the first 10 of 66 ports in this commit are shown above. )
Add DOCS to OPTIONS for ports that have PORTDOCS in the plist.
|
Wed, 11 Jun 2014
|
[ 14:50 tijl ] (Only the first 10 of 297 ports in this commit are shown above. )
Support LIBS like LDFLAGS.
- Add LIBS="${LIBS}" to MAKE_ENV and CONFIGURE_ENV.
- Add an option helper for LIBS.
- Adjust all ports that already use LIBS. Also remove references to
PTHREAD_CFLAGS and PTHREAD_LIBS while here.
- Some ports did not support having a LIBS environment variable and
required additional patches.
Somewhat simplified a linker command line looks like:
${CC} ${src_LDFLAGS} ${LDFLAGS} ${src_LIBS} ${LIBS}
where src_LDFLAGS and src_LIBS are controlled by upstream and LDFLAGS and
LIBS can be controlled by us. If possible -L and -l flags need to be (Only the first 15 lines of the commit message are shown above )
|
Tue, 10 Jun 2014
|
[ 07:39 olgeni ] (Only the first 10 of 388 ports in this commit are shown above. )
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)
|
Thu, 6 Feb 2014
|
[ 12:15 miwi ]
- Stage support
|
Fri, 20 Sep 2013
|
[ 16:36 bapt ] (Only the first 10 of 298 ports in this commit are shown above. )
Add NO_STAGE all over the place in preparation for the staging support (cat:
editors)
|
Sun, 22 Nov 2009
|
[ 19:49 pav ] (Only the first 10 of 86 ports in this commit are shown above. )
- Mark MAKE_JOBS_UNSAFE
Reported by: pointyhat
|
Mon, 5 Jan 2009
|
[ 19:44 pav ] (Only the first 10 of 103 ports in this commit are shown above. )
- Remove conditional checks for FreeBSD 5.x and older
|
Sat, 26 Apr 2008
|
[ 12:52 lwhsu ]
- Update to version 3.47
PR: ports/123083
Submitted by: KATO Tsuguru <tkato432 AT yahoo.com>
|
Sat, 19 Apr 2008
|
[ 17:56 miwi ] (Only the first 10 of 2842 ports in this commit are shown above. )
- 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)
|
Sat, 19 May 2007
|
[ 20:32 flz ] (Only the first 10 of 7868 ports in this commit are shown above. )
- Welcome X.org 7.2 \o/.
- Set X11BASE to ${LOCALBASE} for recent ${OSVERSION}.
- Bump PORTREVISION for ports intalling files in ${X11BASE}.
|
Thu, 21 Dec 2006
|
[ 19:57 miwi ]
- Update to 3.46
PR: 106985
Submitted by: KATO Tsuguru <tkato432@yahoo.com>
|
Fri, 23 Jun 2006
|
[ 16:19 erwin ]
Update to 3.45
PR: 99374
Submitted by: Ports fury
|
Sun, 12 Feb 2006
|
[ 20:06 erwin ]
Update to 3.44
PR: 93238
Submitted by: Ports fury
|
Thu, 5 Jun 2003
|
[ 20:50 naddy ]
Update to version 3.42b.
PR: 52714
Submitted by: Ports Fury
|
Tue, 8 Apr 2003
|
[ 23:16 mi ]
Upgrade from 3.40 to 3.42. Make it use our -lgnuregex instead of compiling
its own (same version). May be, the upgrade will fix the intermittent crashes
one of my users was experiencing...
|
Thu, 20 Feb 2003
|
[ 17:12 knu ] (Only the first 10 of 51 ports in this commit are shown above. )
De-pkg-comment.
|
Tue, 11 Jun 2002
|
[ 00:37 pat ]
Update to 3.40
PR: 38228
Submitted by: KATO Tsuguru <tkato@prontomail.com>
|
Number of commits found: 28 |