mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
19c72d4e31
forgot to add patch-ac tested packaging Reviewed by: as requested by Satoshi
27 lines
659 B
Bash
27 lines
659 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="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
|
|
|
|
perl -pi -e "s|!!LOCALBASE!!|$LOCALBASE|" ${WRKSRC}/knews.tmpl
|
|
|
|
exit 0
|