mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
59 lines
1.8 KiB
Plaintext
59 lines
1.8 KiB
Plaintext
*** Makefile.orig Mon Mar 17 09:18:40 1997
|
|
--- Makefile Tue Mar 18 13:40:12 1997
|
|
***************
|
|
*** 14,31 ****
|
|
|
|
##change the next line if you want lynx installed somewhere
|
|
##besides /usr/local/bin
|
|
! exec= /usr/local/bin
|
|
|
|
##change the next line if you want the lynx man file installed somewhere
|
|
##besides /usr/local/man/man1
|
|
! doc= /usr/local/man/man1
|
|
|
|
##change the next line if you want the lynx.cfg file installed somewhere
|
|
##besides /usr/local/lib
|
|
! cfg= /usr/local/lib
|
|
|
|
! installbin= install -c -s -m 755
|
|
! installdoc= install -c -m 444
|
|
|
|
##set the relative location of the WWW library Implementation directory,
|
|
##from this directory
|
|
--- 14,31 ----
|
|
|
|
##change the next line if you want lynx installed somewhere
|
|
##besides /usr/local/bin
|
|
! exec= ${PREFIX}/bin
|
|
|
|
##change the next line if you want the lynx man file installed somewhere
|
|
##besides /usr/local/man/man1
|
|
! doc= ${PREFIX}/man/man1
|
|
|
|
##change the next line if you want the lynx.cfg file installed somewhere
|
|
##besides /usr/local/lib
|
|
! cfg= ${PREFIX}/etc
|
|
|
|
! installbin= ${INSTALL} -c -s -m ${BINMODE} -o ${BINOWN} -g ${BINGRP}
|
|
! installdoc= ${INSTALL} -c -m ${MANMODE} -o ${MANOWN} -g ${MANGRP}
|
|
|
|
##set the relative location of the WWW library Implementation directory,
|
|
##from this directory
|
|
***************
|
|
*** 270,276 ****
|
|
SITE_LYDEFS = $(DIR_LYDEFS) # Your defines here
|
|
|
|
# Set SITE_DEFS to one or more of the defines for lynx below:
|
|
! SITE_DEFS = $(DIR_DEFS) # Your defines here
|
|
|
|
# if you are compiling on a previously unsupported system, modify
|
|
# this generic entry!!
|
|
--- 270,276 ----
|
|
SITE_LYDEFS = $(DIR_LYDEFS) # Your defines here
|
|
|
|
# Set SITE_DEFS to one or more of the defines for lynx below:
|
|
! SITE_DEFS = $(DIR_DEFS) -DLYNX_CFG_FILE='\"${PREFIX}/etc/lynx.cfg\"'
|
|
|
|
# if you are compiling on a previously unsupported system, modify
|
|
# this generic entry!!
|