summaryrefslogblamecommitdiff
path: root/news/knews/scripts/pre-configure
blob: 364cfdde63a7d30a9d83cb853e636ac84fa29405 (plain) (tree)
1
2
3
4
5
6
7
8
9




                                                                        


                                                               
                                          













                                                  

                                                              
      
#! /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