mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-14 23:46:10 +00:00
95ad3cdc9b
Submitted by: andreas@klemm.gtn.com (Andreas Klemm)
25 lines
603 B
Bash
25 lines
603 B
Bash
#! /bin/sh
|
|
echo "You should tell knews the name of your NNTP server"
|
|
echo "You can do this by setting the environment variable NNTPSERVER"
|
|
echo "csh users: in .cshrc: setenv NNTPSERVER host.domain"
|
|
echo "sh users: in .profile: NNTPSERVER=host.domain; export NNTPSERVER"
|
|
|
|
# work around a problem with bmake regarding files ending in .l
|
|
#
|
|
FILES_TO_PATCH="kedit.c widgets.c save.c search.c"
|
|
for file in $FILES_TO_PATCH
|
|
do
|
|
ed -s ${WRKSRC}/src/${file} <<-EOF
|
|
g/^#include.*\.l/s/\.l/.h/
|
|
w
|
|
q
|
|
EOF
|
|
done
|
|
|
|
for file in ${WRKSRC}/src/layouts/*
|
|
do
|
|
mv $file `echo $file | sed -e 's/\.l/.h/'`
|
|
done
|
|
|
|
exit 0
|