rust porting question (was: Re: make extract woes (rust))

2020-04-20 Thread f.holop
another day, another rust porting question :} what can i do when the crate name is different from GH_PROJECT? https://github.com/sharkdp/fd/blob/master/Cargo.toml name = "fd-find" repository = "https://github.com/sharkdp/fd"; -f --

Re: porting question

2016-07-12 Thread Edgar Pettijohn
Sent from my iPhone > On Jul 12, 2016, at 6:11 AM, Daniel Jakots wrote: > > On Mon, 11 Jul 2016 16:51:19 -0500, Edgar Pettijohn > wrote: > >> I think I may have found the issue. The plist >> under /usr/ports/plist/... still had the wrong info. Should this >> have been fixed by $ make updat

Re: porting question

2016-07-12 Thread Daniel Jakots
On Mon, 11 Jul 2016 16:51:19 -0500, Edgar Pettijohn wrote: > I think I may have found the issue. The plist > under /usr/ports/plist/... still had the wrong info. Should this > have been fixed by $ make update-plist? If so there may be a bug > involved. If not I guess I should double check the

Re: porting question

2016-07-12 Thread Stuart Henderson
On 2016/07/11 16:51, Edgar Pettijohn wrote: > On 16-07-11 09:21:18, Stuart Henderson wrote: > > On 2016/07/10 23:54, Edgar Pettijohn wrote: > > > I'm attempting to port libxlsxwriter. The problem I'm having is > > > that I can't seem to get the examples to install correctly. > > > > > > In the Ma

Re: porting question

2016-07-11 Thread Edgar Pettijohn
On 16-07-11 17:57:38, Amit Kulkarni wrote: > On Mon, Jul 11, 2016 at 4:51 PM, Edgar Pettijohn > wrote: > > > On 16-07-11 09:21:18, Stuart Henderson wrote: > > > On 2016/07/10 23:54, Edgar Pettijohn wrote: > > > > I'm attempting to port libxlsxwriter. The problem I'm having is > > > > that I can'

Re: porting question

2016-07-11 Thread Amit Kulkarni
On Mon, Jul 11, 2016 at 4:51 PM, Edgar Pettijohn wrote: > On 16-07-11 09:21:18, Stuart Henderson wrote: > > On 2016/07/10 23:54, Edgar Pettijohn wrote: > > > I'm attempting to port libxlsxwriter. The problem I'm having is > > > that I can't seem to get the examples to install correctly. > > > >

Re: porting question

2016-07-11 Thread Edgar Pettijohn
On 16-07-11 09:21:18, Stuart Henderson wrote: > On 2016/07/10 23:54, Edgar Pettijohn wrote: > > I'm attempting to port libxlsxwriter. The problem I'm having is > > that I can't seem to get the examples to install correctly. > > > > In the Makefile I have this: > > ${INSTALL_DATA_DIR} ${PREFIX}/sh

Re: porting question

2016-07-11 Thread Stuart Henderson
On 2016/07/10 23:54, Edgar Pettijohn wrote: > I'm attempting to port libxlsxwriter. The problem I'm having is > that I can't seem to get the examples to install correctly. > > In the Makefile I have this: > ${INSTALL_DATA_DIR} ${PREFIX}/share/examples/libxlsxwriter > ${INSTALL_DATA} ${WRKSRC}/exa

Re: porting question

2016-07-10 Thread Dmitrij D. Czarkoff
Edgar Pettijohn wrote: > I'm attempting to port libxlsxwriter. The problem I'm having is > that I can't seem to get the examples to install correctly. > > In the Makefile I have this: > ${INSTALL_DATA_DIR} ${PREFIX}/share/examples/libxlsxwriter > ${INSTALL_DATA} ${WRKSRC}/examples/*.c ${PREFIX}

porting question

2016-07-10 Thread Edgar Pettijohn
I'm attempting to port libxlsxwriter. The problem I'm having is that I can't seem to get the examples to install correctly. In the Makefile I have this: ${INSTALL_DATA_DIR} ${PREFIX}/share/examples/libxlsxwriter ${INSTALL_DATA} ${WRKSRC}/examples/*.c ${PREFIX}/share/examples/libxlsxwriter/ pkg/P

Re: Porting question - otter-browser patches

2015-04-05 Thread Vadim Zhukov
05 апр. 2015 г. 1:14 пользователь "Adam Wolk" написал: > > Hi ports@ > > I was asked by upstream to pull up all patches up to: > - 1ea5df13f908495df4ad9d634d997f6fd4c9 > while the tagged revision is > - c1819f1184ae18a76ab455caa6fcc713c9c6bf3d > > This results in a 2k lines patch: > $ git di

Porting question - otter-browser patches

2015-04-04 Thread Adam Wolk
Hi ports@ I was asked by upstream to pull up all patches up to: - 1ea5df13f908495df4ad9d634d997f6fd4c9 while the tagged revision is - c1819f1184ae18a76ab455caa6fcc713c9c6bf3d This results in a 2k lines patch: $ git diff 1ea5df1..c1819f1 | wc -l 2289 minus the one bumping the version nu

Re: porting question

2010-05-29 Thread Christian Weisgerber
Adam Borbely wrote: > I'm trying making a port of ser2net. > should this put in comms or net? i bet the former. I suggest comms. > question: > - the lock dir is /var/lock by default. this does not > exist by default. shold that be something like > /var/spool/lock or the user should make th

porting question

2010-05-28 Thread Adam Borbely
hi, I'm trying making a port of ser2net. most things are working fine, the port is built with no problem and is working as I expected: opens the tcp ports and I can connect to the modem attached to the serial port from a remote machine and I can dial in to a remote PBX with no problem. one thing

nmap porting question

2006-10-18 Thread Okan Demirmen
so i'm reviewing the recent alpha releases of nmap and i've run into a small snag; configure is now checking for libpcap => 0.9.4. if the version is lower, then it begins to build its own rolled version of libpcap. nmap seems to want this now. i'd much rather prefer that nmap uses base's libpcap

Re: bstring libary porting question

2006-07-18 Thread Aleksander Piotrowski
Chris Humphries <[EMAIL PROTECTED]> wrote: > The thing is that the project doesn't include a Makefile and I am doing > everything manually. What would be the best way to handle this? Should I > have a > patch to create a Makefile and then use it? All that is basically needed is > to > c

bstring libary porting question

2006-07-17 Thread Chris Humphries
Hello, I am currently working on a port of bstring, which is basically a few files of .c and .h with some testing .c files. I was planning on making a .a library and store it in a library directory (was just told $PREFIX/lib). The thing is that the project doesn't incl