non port: devel/adacurses/Makefile |
SVNWeb
|
Number of commits found: 50 |
Sun, 23 Apr 2023
|
[ 09:09 Gerald Pfeifer (gerald) ] 8d3e020 (Only the first 10 of 2091 ports in this commit are shown above. )
*: Bump PORTREVISIONs for math/mpc update to 1.3.1
|
Mon, 28 Nov 2022
|
[ 11:10 Dima Panov (fluffy) ] 2bd721b
devel/adacurses: adopt and update to 20211021 release
|
Fri, 30 Sep 2022
|
[ 17:54 Alexey Dokuchaev (danfe) ] e0340ee
Ada ports and Synth: extend expiration till the end of the year
Requested by: fluffy
|
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) ] aa6eefd (Only the first 10 of 5087 ports in this commit are shown above. )
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 )
|
Fri, 1 Jul 2022
|
[ 15:18 Rene Ladan (rene) ] a4a20a8
cleanup: Expire gcc6-aux consumers on 2022-09-30
This entails:
- devel/adacurses/Makefile
- misc/ini_file_manager/Makefile
- ports-mgmt/synth/Makefile
The DEPRECATED is set via USES=ada
|
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.
|
Mon, 18 Jan 2021
|
[ 16:32 swills ]
devel/adacurses: allow base ncurses where newer ncurses is available
|
Sun, 14 Apr 2019
|
[ 09:31 amdmi3 ]
- Add LICENSE_FILE
- Update WWW
|
Tue, 17 Apr 2018
|
[ 16:04 fernape ]
devel/adacurses: update to 20180127
PR: 227534
Reported by: lebarondemerde@privacychain.ch
Approved by: tcberner (mentor)
Differential Revision: https://reviews.freebsd.org/D15107
|
Sat, 10 Mar 2018
|
[ 17:46 gerald ] (Only the first 10 of 1104 ports in this commit are shown above. )
Bump PORTREVISIONs of all users of math/mpc that we just updated to
version 1.1.0 (via revision 464079).
|
Fri, 21 Apr 2017
|
[ 20:25 rene ] (Only the first 10 of 62 ports in this commit are shown above. )
Return ports maintained by John Marino to the pool, he is no longer interested.
Submitted by: Mark Millard via private e-mail
|
Wed, 15 Feb 2017
|
[ 21:33 rene ] (Only the first 10 of 62 ports in this commit are shown above. )
Return the ports mistakenly reset to ports@ in r433856 to John Marino.
The mistake was completely on my part, I somehow connected the dots the
wrong way in my head.
The only exceptions (for now) are archivers/zstd and ports-mgmt/synth
which were already picked up by new volunteers in the mean time.
|
Sat, 11 Feb 2017
|
[ 12:42 rene ] (Only the first 10 of 63 ports in this commit are shown above. )
Return ports maintained by John Marino to the pool, see r433827 for details
|
Sun, 9 Oct 2016
|
[ 02:58 marino ]
devel/adacurses: Prevent building with base ncurses headers
It turns out that the C source files were getting built with the headers
from the base ncurses. The recent update in Synth's display exposed a
resulting problem with the add chtype routines, resulting in garbled
output. Since adacurses is a static library, synth requires a revbump.
|
Fri, 22 Jul 2016
|
[ 01:37 marino ]
devel/adacurses: Set ncurses:port for every platform
Currently AdaCurses on all DragonFly platforms and FreeBSD 11+ platforms
requires the ports version of ncurses. Only FreeBSD 9 and 10 can use the
system ncurses. The previous commit updated the gpr file in a way that
looks for the ncurses libraries only at $LOCALBASE/lib, which may have
broken FreeBSD 9 and 10 in a poudriere environment. Rather than fix
those older platforms, just make the ncurses requirement the same for
every platform. The only ports consumer is ports-mgmt/synth, and that
will soon link ncurses statically anyway.
|
Thu, 21 Jul 2016
|
[ 18:31 marino ]
devel/adacurses: Remove hardcoded dynamic linking, plus ...
The AdaCurses source contains "pragma Linking_Options" which hardcodes
linking flags like "-lncurses" and "-lmenu". This makes it very hard
to statically link libncurses because the pragma flags come at the
end causing the linker to include these libraries. Fix it by removing
the pragmas and require the user to specify the flags themselves.
Related: the provided adacurses.gpr was also hardcoded for dynamic linking
but it only included the base library (excluding menu, form, and panel).
Rework this gpr file to continue to link dynamically by default, and
continue to exclude menu, for, and panel by default, but add environment
variables that easily allow static linking and adding of menu/form/panel
individually as required.
|
Mon, 11 Jul 2016
|
[ 00:27 marino ]
devel/adacurses: Extend F11 ncurses workaround to FreeBSD 12
PR 199109 regarding the ncurses regression was never addressed, so the
temporary workaround appears to be permanent fix now. This change makes
it apply to FreeBSD 11 and later rather than FreeBSD 11 only.
Reported by: pkg-fallout
|
Sat, 30 Apr 2016
|
[ 06:44 marino ] (Only the first 10 of 42 ports in this commit are shown above. )
Change Ada Framework foundation from gcc5-aux to gcc6-aux
GCC 6.1 was released this week. The Ada Framework in FreeBSD ports has
been based on GCC 5.3 GNAT although GCC 6.x has been supported for awhile
via the ADA_DEFAULT option in make.conf.
Now that GCC 6 has been officially released, switch to it by default.
People can maintain the old foundation by putting "ADA_DEFAULT=5" in
/etc/make.conf.
Libraries built by one GNAT are unusable by another, so almost every Ada
port has been bumped as a result. Noticable exceptions are dns/ironsides
which fails to build on gcc6 (thus USES=ada:5 is set) and cad/ghdl which
needs additional testing as it may require gcc5 on FreeBSD (DragonFly
uses the LLVM backend only).
|
Mon, 12 Oct 2015
|
[ 11:05 marino ]
devel/adacurses: Upgrade version 20110404 => 20150808
Note that the release distfile has a fatal flaw in it. It expects
ADAGEN_LDFLAGS to be defined by the configure script and its not, so
this substition was manually removed.
While here, clean up pkg-plist with use of PORTDOCS definition and a
nice PLIST_SUB to make it shorter and readable. Also, man page is
always installed now instead of as a function of DOCS setting.
|
Tue, 26 May 2015
|
[ 14:12 marino ]
devel/adacurses: work around FreeBSD 11 ncurses regression
The upgrade of ncurses on the -CURRENT version of FreeBSD resulted in an
regression (see PR) which results in multiple pkg-fallout mails to me
weekly. Since the PR isn't moving despite periodic pinging, I am
forcing the ports version of ncurses to be used with FreeBSD 11 rather
than the base like FreeBSD 10 and earlier, and DragonFly.
While here, tweak a makefile install target that was emitting a non-fatal
error.
PR: 199109
|
Thu, 12 Mar 2015
|
[ 09:43 marino ]
devel/adacurses: Link with base ncurses preferentially over ports version
While here, mark as jobs unsafe.
|
Thu, 16 Oct 2014
|
[ 10:36 marino ] (Only the first 10 of 17 ports in this commit are shown above. )
marino 12 devel ports: Remove @dirrm, tend install commands, plus
The main purpose of this commit is to remove @dirrm from the pkg-plist of
some of my ports in devel category. While here, also:
* Unmask some commands
* Use parenthesis on compound commands for multi-job support
* Add a license in one case
* USES=python conversion in one case
* Add WWW and reformat description in one case
* Respect 80-columns
|
Tue, 29 Jul 2014
|
[ 19:11 adamw ] (Only the first 10 of 436 ports in this commit are shown above. )
Convert a bunch of EXTRACT_SUFX=... into USES=tar:...
Approved by: portmgr (not really, but touches unstaged ports)
|
Thu, 15 May 2014
|
[ 11:11 marino ]
devel/adacurses: Fix linking options on adacurses.gpr
The options weren't getting sent to the linker. Moreover, the -lncurses
switch was not required and runpath switches are required, otherwise
the realtime linker finds the system libncurses before the ports version.
Use "Linker_Options" instead of "Switches" to enable linker options.
Reported by: Natacha Porte
|
Mon, 17 Feb 2014
|
[ 08:24 marino ]
devel/adacurses: Correct adacurses.gpr; library name uses capital letters
|
Sun, 16 Feb 2014
|
[ 12:18 marino ]
devel/adacurses: Build it properly; switch to original sources
This was another Ada "library" port that didn't actually build the
library. The first step is to switch to the original source (AdaCurses
has been distributed by ncurses, but it's maintained separately by
Thomas Dickey). Besides a much smaller distfile, we also get the html
documentation which is not provided by ncurses.
Use the provided makefile to build. The only change was adacurses.gpr
added by myself to use as an alternative to adacurses-config (which is
also now generated instead of provided if /files). This should address
a complaint I heard at FOSDEM about AdaCurses not working (hopefully).
|
[ 09:38 marino ]
devel/adacurses: Take over maintainership
|
Fri, 20 Sep 2013
|
[ 17:03 bapt ] (Only the first 10 of 379 ports in this commit are shown above. )
Add NO_STAGE all over the place in preparation for the staging support (cat:
devel part 1)
|
Tue, 30 Apr 2013
|
[ 12:27 bapt ]
These ports have listed lang/gnat as a build dependency but the truth is that
they are not written in Ada and build fine without any Ada compiler.
PR: ports/178166
Submitted by: John Marino <draco@marino.st>
|
Wed, 18 May 2011
|
[ 17:23 sylvio ]
- Update to 5.9
- Add License
|
Thu, 3 Mar 2011
|
[ 11:45 sylvio ]
- Update to 5.8
|
Sat, 4 Dec 2010
|
[ 07:34 ade ] (Only the first 10 of 1730 ports in this commit are shown above. )
Sync to new bsd.autotools.mk
|
Fri, 27 Nov 2009
|
[ 22:52 sylvio ] (Only the first 10 of 100 ports in this commit are shown above. )
- Update my mail address to FreeBSD
Approved by: miwi (mentor)
|
Thu, 3 Sep 2009
|
[ 23:49 araujo ]
- Update to latest libtool version.
PR: ports/138082
Submitted by: Sylvio Cesar <scjamorim@bsd.com.br> (maintainer)
|
Sun, 21 Jun 2009
|
[ 22:11 araujo ]
- Pass maintainership to Sylvio Amorim <scjamorim at bsd.com.br>.
|
Thu, 30 Apr 2009
|
[ 11:46 araujo ]
- Update to 5.7.
|
Fri, 29 Jun 2007
|
[ 16:29 araujo ] (Only the first 10 of 87 ports in this commit are shown above. )
- Change my mail address to araujo@.
Approved by: stas (mentor)
|
Wed, 17 Jan 2007
|
[ 16:24 nivit ]
- Updated to 5.6
- Taken maintainership by submitter
PR: ports/107698
Submitted by: "Marcelo Araujo" <araujo at bsdmail.org>
Approved by: alexbl (mentor, implicit)
|
Thu, 23 Feb 2006
|
[ 10:40 ade ] (Only the first 10 of 2514 ports in this commit are shown above. )
Conversion to a single libtool environment.
Approved by: portmgr (kris)
|
Tue, 15 Nov 2005
|
[ 06:52 ade ] (Only the first 10 of 1438 ports in this commit are shown above. )
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.
|
Tue, 31 May 2005
|
[ 21:34 oliver ] (Only the first 10 of 14 ports in this commit are shown above. )
change the libtool version to use from 1.3 to 1.5
|
Sun, 14 Mar 2004
|
[ 06:17 ade ] (Only the first 10 of 945 ports in this commit are shown above. )
Whoa there, boy, that's a mighty big commit y'all have there...
Begin autotools sanitization sequence by requiring ports to explicitly
specify which version of {libtool,autoconf,automake} they need, erasing
the concept of a "system default".
For ports-in-waiting:
USE_LIBTOOL=YES -> USE_LIBTOOL_VER=13
USE_AUTOCONF=YES -> USE_AUTOCONF_VER=213
USE_AUTOMAKE=YES -> USE_AUTOMAKE_VER=14
Ports attempting to use the old style system after June 1st 2004 will be
sorely disappointed.
|
Wed, 4 Feb 2004
|
[ 05:21 marcus ] (Only the first 10 of 1588 ports in this commit are shown above. )
Bump PORTREVISION on all ports that depend on gettext to aid with upgrading.
(Part 2)
|
Fri, 21 Nov 2003
|
[ 09:06 leeym ]
Update to 5.3 and get rid of BROKEN
PR: 59534
Submitted by: Clement Laforet <sheepkiller@cultdeadsheep.org>
|
Sun, 18 May 2003
|
[ 09:35 kris ]
BROKEN on 5.1: bad C++
|
Sun, 23 Feb 2003
|
[ 11:07 olgeni ]
Suppress command echo.
|
[ 10:58 olgeni ]
Whitespace.
|
Thu, 20 Feb 2003
|
[ 17:07 knu ] (Only the first 10 of 432 ports in this commit are shown above. )
De-pkg-comment.
|
Wed, 19 Jun 2002
|
[ 20:05 olgeni ]
Add devel/adacurses, ncurses bindings for the Ada language (lang/gnat).
|
Number of commits found: 50 |