Re: Aggressive ports removal

2020-08-30 Thread Gary Aitken
On 8/30/20 1:54 PM, Yuri wrote: On 2020-08-30 12:39, Gary Aitken wrote: Should I file a bug report? Yes, please create a bug report for the port "sysutils/bsdstats". I believe that its current maintainer also runs the BSDstats website.

Re: Aggressive ports removal

2020-08-30 Thread Gary Aitken
On 8/30/20 12:20 PM, Warner Losh wrote:> On Sun, Aug 30, 2020, 12:13 PM Gary Aitken mailto:free...@dreamchaser.org>> wrote: I don't know how easy this would be to implement, but it would be very useful to know which ports are actually being built and installed. How diffic

Re: Aggressive ports removal

2020-08-30 Thread Gary Aitken
On 8/30/20 2:28 AM, Niclas Zeising wrote: On 2020-08-30 01:27, Greg 'groggy' Lehey wrote: Sorry for the length of the quotes, but I've added people who might not have seen the (relatively long) thread on this subject. This seems the best message to refer to. On Saturday, 29 August 2020 at

arduino vs. arduino18

2020-06-03 Thread Gary Aitken
Can anyone shed light on why the arduino port is still present? It seems to be superceded by the arduino18 port. There is no info in UPDATING for either, and the pkg-dmesg files say the same thing. arduino does not find the device when run as a non-privileged user on 11.3-RELEASE, and is

Re: ifdef __linux__ / gtk issue; how to list defined symbols for cmake?

2019-06-28 Thread Gary Aitken
Thanks a boatload for the detailed explanation. Gary ___ freebsd-ports@freebsd.org mailing list https://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"

ifdef __linux__ / gtk issue; how to list defined symbols for cmake?

2019-06-24 Thread Gary Aitken
I'm working on porting the prusa slicer. It contains a boatload of things like #if defined _WIN32 ... #elif defined(__linux__) ... #elif defined __APPLE__ ... occasionally there is a #if defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__) ||

Re: force github file extension for fetch? (tar.bz2 instead of tar.gz)

2019-06-03 Thread Gary Aitken
On 6/3/19 3:33 PM, Michael Gmelin wrote: On Mon, 3 Jun 2019 12:46:32 -0600 Gary Aitken wrote: On 6/3/19 11:19 AM, Michael Gmelin wrote: On 3. Jun 2019, at 19:03, Gary Aitken wrote: Is it possible to force fetching of .tar.bz2 instead of .tar.gz if both are available? Or how does one get

Re: .build directory for cmake

2019-06-03 Thread Gary Aitken
On 6/3/19 2:07 PM, Tatsuki Makino wrote: What if that changes to USES=cmake:insource ? If I do that I see no different behavior from USES=cmake, at least in terms of trying to reproduce the original problem (which was resolved by removing the work/.configure_done* file).

Re: force github file extension for fetch? (tar.bz2 instead of tar.gz)

2019-06-03 Thread Gary Aitken
On 6/3/19 11:19 AM, Michael Gmelin wrote: On 3. Jun 2019, at 19:03, Gary Aitken wrote: In attempting to build a new port (prusa3d slicer) I need another new port (wxWidgets). The original distfile fetch of wxWidgets was a .tar.gz. The configure phase had an error; a search for the source

force github file extension for fetch? (tar.bz2 instead of tar.gz)

2019-06-03 Thread Gary Aitken
In attempting to build a new port (prusa3d slicer) I need another new port (wxWidgets). The original distfile fetch of wxWidgets was a .tar.gz. The configure phase had an error; a search for the source of the error turned up a bug (old) which claimed the error was solved by fetching the distfile

Re: .build directory for cmake (was: freebsd-ports Digest, Vol 836, Issue 1)

2019-06-03 Thread Gary Aitken
On 6/3/19 8:18 AM, Adriaan de Groot wrote: On Monday, 3 June 2019 14:00:01 CEST freebsd-ports-requ...@freebsd.org wrote: From: Gary Aitken I'm trying to port some linux code which uses cmake, and clearly don't know what I'm doing. I have USES= cmake set, but a make build terminates

.build directory for cmake

2019-06-02 Thread Gary Aitken
I'm trying to port some linux code which uses cmake, and clearly don't know what I'm doing. I have USES= cmake set, but a make build terminates with: cd: /usr/ports/cad/prusa-slicer/work/.build: No such file or directory What am I missing? I presume the .build directory should be

portsnap not honoring WORKDIR and PORTSDIR?

2018-04-21 Thread Gary Aitken
Is portsnap supposed to honor WORKDIR and PORTSDIR? These are defined in /etc/portsnap.conf, and it's not clear to me whether they are honored only via the .conf file or whether they are supposed to be honored from the environment as well. They appear to not be honored from the environment, and

Re: How to get -RC2 is tarball name?

2018-04-20 Thread Gary Aitken
On 04/20/18 00:01, Yasuhiro KIMURA wrote: From: Gary Aitken <free...@dreamchaser.org> Subject: How to get -RC2 is tarball name? Date: Thu, 19 Apr 2018 23:48:24 -0600 I'm trying to fetch: https://download.gimp.org/mirror/pub/gimp/v2.10/gimp-2.10.0-RC2.tar.bz2 Both the RC2 and t

How to get -RC2 is tarball name?

2018-04-19 Thread Gary Aitken
I'm trying to fetch: https://download.gimp.org/mirror/pub/gimp/v2.10/gimp-2.10.0-RC2.tar.bz2 Both the RC2 and the bz2 are giving me problems. I've tried every combination I can think of and can't seem to get the right thing. In order to get the -RC2 I had to resort to: PORTNAME?=

Re: magic syntax for most recent git from sourceforge? [solved]

2018-04-18 Thread Gary Aitken
On 04/18/18 00:06, Le Baron d’Merde wrote: On Tue, Apr 17, 2018 at 09:48:53PM -0600, Gary Aitken wrote: On 04/16/18 13:17, Gary Aitken wrote: Can anyone give me the magic formula for fetching the most recent git distro from sourceforge for a ports Makefile? The porter's handbook talks about

Re: magic syntax for most recent git from sourceforge? [solved]

2018-04-17 Thread Gary Aitken
On 04/16/18 13:17, Gary Aitken wrote: Can anyone give me the magic formula for fetching the most recent git distro from sourceforge for a ports Makefile? The porter's handbook talks about how to fetch git repos from github but not about how to get them from sourceforge. I've tried a few things

magic syntax for most recent git from sourceforge?

2018-04-16 Thread Gary Aitken
Can anyone give me the magic formula for fetching the most recent git distro from sourceforge for a ports Makefile? The porter's handbook talks about how to fetch git repos from github but not about how to get them from sourceforge. I've tried a few things but can't get the right combo of

Re: .if and Makefile issues

2018-03-26 Thread Gary Aitken
On 03/26/18 01:11, Don Lewis wrote: On 25 Mar, Don Lewis wrote: On 25 Mar, Gary Aitken wrote: I forgot that all of the lines from the "if" up to but not including "fi" need to end with a \ so that make treats them all as one multi-line shell command: post-build: ec

.if and Makefile issues

2018-03-25 Thread Gary Aitken
Bewildered and frustrated, looking for some guidance on a seemingly simple task: check the existence of a file and rename it. Looking at a number of examples in the Porter's guide, I should be able to do something like this: post-build: echo "* post-build *" #Avoid executable name

how to get autoconf to run

2018-03-19 Thread Gary Aitken
Hate to return so soon, but what is required in Makefile to get autoconf to do its thing? According the the porter's handbook, adding USE_AUTOTOOLS= autoheader aclocal should get autoconf to do its thing. It doesn't mention GNU_CONFIGURE= yes but I assume that is also required. In any

Re: github fetch not working (solved, mostly)

2018-03-18 Thread Gary Aitken
On 03/18/18 18:13, Miroslav Lachman wrote: Gary Aitken wrote on 2018/03/19 00:02: fetch: https://codeload.github.com/sergiomb2/ufraw/tar.gz/g20161113?dummy=/sergiomb2-ufraw-g20161113_GH0.tar.gz: Not Found => Attempting to fetch http://distcache.FreeBSD.org/ports-distfiles/ufraw-de

Re: github fetch not working (solved, mostly)

2018-03-18 Thread Gary Aitken
On 03/18/18 14:53, Miroslav Lachman wrote: Gary Aitken wrote on 2018/03/18 20:04: Trying to work up a development port of ufraw, fetching from https://github.com/sergiomb2/ufraw.git (or at least that's where I can get the source manually) Going slowly, just trying to get the source fetched

github fetch not working

2018-03-18 Thread Gary Aitken
Trying to work up a development port of ufraw, fetching from https://github.com/sergiomb2/ufraw.git (or at least that's where I can get the source manually) Going slowly, just trying to get the source fetched properly: /!\ ufraw-devel-g20161113: Makefile warnings, please consider fixing /!\

Re: best time to sync

2016-11-18 Thread Gary Aitken
On 11/18/16 08:29, Kurt Jaeger wrote: > Hello, > >> Can someone tell me what the best time to synchronize ports is, >> in terms of having a consistent ports tree? > >> Thought I saw something once about the end of the weekend being best >> but can't find it. In any case, is there a period

best time to sync

2016-11-18 Thread Gary Aitken
Can someone tell me what the best time to synchronize ports is, in terms of having a consistent ports tree? Thought I saw something once about the end of the weekend being best but can't find it. In any case, is there a period during which the ports tree is held frozen to get a consistent

libmspack build error, unrecognized command line option -Wno-unused-result

2015-01-30 Thread Gary Aitken
Is anyone else seeing this error building archivers/libmspack cc1: error: unrecognized command line option -Wno-unused-result ___ freebsd-ports@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any

portmaster -- preserving added files?

2013-09-26 Thread Gary Aitken
Is portmaster supposed to retain files which it did not install when updating / reinstalling a port? For example, jave extensions are normally installed by placing a jar file in /usr/local/openjdk6/jre/lib/ext/ When reinstalling, these are wiped out. At least I think that's what happened when

Re: portmaster -- preserving added files?

2013-09-26 Thread Gary Aitken
On 09/26/13 12:39, Kimmo Paasiala wrote: On Thu, Sep 26, 2013 at 9:25 PM, Scot Hetzel swhet...@gmail.com wrote: On Thu, Sep 26, 2013 at 11:35 AM, Gary Aitken free...@dreamchaser.org wrote: Is portmaster supposed to retain files which it did not install when updating / reinstalling a port

Re: Multiple Java versions

2013-09-25 Thread Gary Aitken
On 09/25/13 00:38, Andrea Venturoli wrote: On 09/25/13 08:28, Jason Helfman wrote: java/javavmwrapper cc: java Sorry for being so dumb, but I don't understand this... I though I was using javavmwrapper... what do you mean? I believe you are correct in your original statement, and that

Re: Multiple Java versions

2013-09-25 Thread Gary Aitken
On 09/25/13 12:54, Gary Aitken wrote: On 09/25/13 00:38, Andrea Venturoli wrote: On 09/25/13 08:28, Jason Helfman wrote: java/javavmwrapper cc: java Sorry for being so dumb, but I don't understand this... I though I was using javavmwrapper... what do you mean? I believe you are correct

Re: Gimp package?

2013-09-22 Thread Gary Aitken
On 09/21/13 13:15, grarpamp wrote: On 9/19/13, Gary Aitken vagab...@blackfoot.net wrote: On 09/19/13 12:46, grarpamp wrote: Hi. I see that a gimp port exists so I went to try the gimp package but could not find it in the stable i386 package branches on the FTP server, or in say 9 stable

Re: Gimp package?

2013-09-19 Thread Gary Aitken
On 09/19/13 12:46, grarpamp wrote: Hi. I see that a gimp port exists so I went to try the gimp package but could not find it in the stable i386 package branches on the FTP server, or in say 9 stable amd64. Is there a problem building or distributing it to FTP or am I missing something? The

Re: www/firefox: no audio with youtube and in-browser videos

2013-09-02 Thread Gary Aitken
On 09/02/13 13:16, O. Hartmann wrote: I have no audio in any video played by the browser. This feature was introduced with the last port update of www/firefox, which is at the moment of version pkg info firefox firefox-23.0.1,1 The operating system is FreeBSD 10.0-CURRENT #0

firefox audio / youtube crashes

2013-08-08 Thread Gary Aitken
Firefox 22.0,1 core dumps when attempting to play a youtube video; the video loads and firefox immediately crashes when it starts playing. $ firefox (process:8337): GLib-CRITICAL **: g_slice_set_config: assertion `sys_page_size == 0' failed Assertion failed: (wrote = 0 wrote == got), function

Re: firefox audio / youtube crashes

2013-08-08 Thread Gary Aitken
On 08/08/13 10:11, Florian Smeets wrote: On 08.08.13 17:30, Gary Aitken wrote: Firefox 22.0,1 core dumps when attempting to play a youtube video; the video loads and firefox immediately crashes when it starts playing. $ firefox (process:8337): GLib-CRITICAL **: g_slice_set_config: assertion

hmmm, build --from sd on openoffice-3 ?

2013-08-05 Thread Gary Aitken
While trying to build openoffice-3, I get an error as follows: ... sw deliver deliver -- version: 275594 COPY: build.lst - /usr/ports/editors/openoffice-3/work/aoo-3.4.1/main/solver/341/unxfbsdx.pro/inc/sw/build.lst LOG: writing

Re: firefox won't build

2013-07-31 Thread Gary Aitken
On 07/31/13 02:48, James wrote: What is the exact build stop error? It was in the original post, but here's a bit more detail: === Building for firefox-22.0,1 ... gmake -C 2d libs Blur.cpp gmake[4]: Entering directory `/usr/ports/www/firefox/work/mozilla-release/obj-x8

firefox won't build

2013-07-30 Thread Gary Aitken
Ports tree updated this morning and everything being built on amd64. Unfortunately, I don't know enough about c++ templates to see what's wrong. Anyone else seeing this? In file included from /usr/ports/www/firefox/work/mozilla-release/gfx/2d/Blur.cp p:7: In file included from

configure tweaks for Makefile generation?

2012-11-06 Thread Gary Aitken
I'm confused about tweaking a Makefile which is normally generated initially using ./configure. If one needs to define variables which affect the make process, and a Makefile is generated initially using ./configure, is the right thing to do simply to insert the define directly into the Makefile,

general ports config question

2012-11-05 Thread Gary Aitken
Tried getting an answer on questions but nothing useful; hope this is appropriate. I've been wanting gimp 2.8.0 (now 2.8.2) for a bit and as it's been slow to show up in the ports collection, thought I would see about building it. Unfortunately, I don't know squat about the process but figured