FreeBSD ports you maintain which are out of date

2022-05-15 Thread portscout
Dear port maintainer, The portscout new distfile checker has detected that one or more of your ports appears to be out of date. Please take the opportunity to check each of the ports listed below, and if possible and appropriate, submit/commit an update. If any ports have already been updated, you

How to override port Makefile to point to local directory?

2022-05-15 Thread Pat Maddox
I am writing software that I would eventually like to install on FreeBSD. I'm currently stuck trying to write a Makefile that will point to my local git dir, so I can build and install it while I'm developing. All of the finished Makefiles reference tar packages, which makes sense. But when I'm

Re: How to override port Makefile to point to local directory?

2022-05-15 Thread Chris
On 2022-05-15 20:29, Pat Maddox wrote: I am writing software that I would eventually like to install on FreeBSD. I'm currently stuck trying to write a Makefile that will point to my local git dir, so I can build and install it while I'm developing. All of the finished Makefiles reference tar pa

Re: How to override port Makefile to point to local directory?

2022-05-15 Thread Pat Maddox
On 15 May 2022, at 20:49, Chris wrote: On 2022-05-15 20:29, Pat Maddox wrote: I am writing software that I would eventually like to install on FreeBSD. I'm currently stuck trying to write a Makefile that will point to my local git dir, so I can build and install it while I'm developing. All of

Re: How to override port Makefile to point to local directory?

2022-05-15 Thread Pat Maddox
On 15 May 2022, at 22:28, Pat Maddox wrote: On 15 May 2022, at 20:49, Chris wrote: On 2022-05-15 20:29, Pat Maddox wrote: I am writing software that I would eventually like to install on FreeBSD. I'm currently stuck trying to write a Makefile that will point to my local git dir, so I can bui

Re: How to override port Makefile to point to local directory?

2022-05-15 Thread Tatsuki Makino
Hello. Pat Maddox wrote on 2022/05/16 15:08: > I figure there’s gotta be some sort of `make SRCDIR=. install` to bypass > fetch & extract, but this will do for now. > Is it a variable DISTDIR or PACKAGES? If you write the following in /etc/make.conf, you can use a different location only for

Re: How to override port Makefile to point to local directory?

2022-05-15 Thread Pat Maddox
On 15 May 2022, at 23:25, Tatsuki Makino wrote: Hello. Pat Maddox wrote on 2022/05/16 15:08: I figure there’s gotta be some sort of `make SRCDIR=. install` to bypass fetch & extract, but this will do for now. Is it a variable DISTDIR or PACKAGES? If you write the following in /etc/make.co