freebsd-ports/news/nntpcache/pkg-plist

50 lines
2.2 KiB
Text
Raw Normal View History

- Update to version 2.4.0b5 - Remove a verifiably bad site from MASTER_SITES. - Remove duplicate entry (DNS entry points to same IP) from MASTER_SITES. - Add new mirror to MASTER_SITES. - Change MAINTAINER to -ports, as the previous maintainer (and author) has expressed a lack of interest in continued maintenance of this port. - Deploy DOCSDIR. - General clean-up and reorganisation of Makefile. - Remove PKGMESSAGE completely, since this port requires no user action which is out of the ordinary (I do not consider editing configuration files to be out of the ordinary), and it contains no information which is not also contained elsewhere in a more standardised location. - Add NO_CDROM, as this software is not free and never has been. - Bring the startup script installed in ${PREFIX}/etc/rc.d up to current standards (I hope). - Install a fully functional startup script in ${PREFIX}/etc/rc.d (as most ports now do), instead of an inactive .sample startup script. - Install HTML documentation. - Deploy %%PORTDOCS%% pragma in pkg-plist. - Make SPOOLDIR a user-tweakable option (default: /var/spool). NNTPCache will cache news articles in ${SPOOLDIR}/nntpcache. - Remove the non-standard "hardlink-pgp-files" target from Makefile. - Comment out the run-time dependency on security/pgp for now. The only NNTPCache functionality which depends on PGP is very optional indeed and furthermore, there is now a plethora of PGPish ports for the user to choose from. (This may need to be tweaked further, since NNTPCache builds without PGP support if PGP is not detected during the configurations stage.) Approved by: Julian Assange <nntpcache@nntpcache.org>, previous maintainer
2001-09-14 11:47:23 +02:00
@exec mkdir -p %%SPOOLDIR%%
bin/confused
bin/mmap_tests
%%ETCDIR%%/VERSION
@unexec rm %%SPOOLDIR%%/VERSION 2>&1 >/dev/null || true
- Update to version 2.4.0b5 - Remove a verifiably bad site from MASTER_SITES. - Remove duplicate entry (DNS entry points to same IP) from MASTER_SITES. - Add new mirror to MASTER_SITES. - Change MAINTAINER to -ports, as the previous maintainer (and author) has expressed a lack of interest in continued maintenance of this port. - Deploy DOCSDIR. - General clean-up and reorganisation of Makefile. - Remove PKGMESSAGE completely, since this port requires no user action which is out of the ordinary (I do not consider editing configuration files to be out of the ordinary), and it contains no information which is not also contained elsewhere in a more standardised location. - Add NO_CDROM, as this software is not free and never has been. - Bring the startup script installed in ${PREFIX}/etc/rc.d up to current standards (I hope). - Install a fully functional startup script in ${PREFIX}/etc/rc.d (as most ports now do), instead of an inactive .sample startup script. - Install HTML documentation. - Deploy %%PORTDOCS%% pragma in pkg-plist. - Make SPOOLDIR a user-tweakable option (default: /var/spool). NNTPCache will cache news articles in ${SPOOLDIR}/nntpcache. - Remove the non-standard "hardlink-pgp-files" target from Makefile. - Comment out the run-time dependency on security/pgp for now. The only NNTPCache functionality which depends on PGP is very optional indeed and furthermore, there is now a plethora of PGPish ports for the user to choose from. (This may need to be tweaked further, since NNTPCache builds without PGP support if PGP is not detected during the configurations stage.) Approved by: Julian Assange <nntpcache@nntpcache.org>, previous maintainer
2001-09-14 11:47:23 +02:00
@exec cp %D/%F %%SPOOLDIR%%
@exec chown -R news:news %%SPOOLDIR%%
@exec chmod 750 %%SPOOLDIR%%
@exec chmod 640 %%SPOOLDIR%%/VERSION
%%ETCDIR%%/http/index.html
%%ETCDIR%%/http/moose.gif
%%ETCDIR%%/http/nntpcache.jpg
%%ETCDIR%%/innreport.conf-dist
%%ETCDIR%%/innreport.pl
%%ETCDIR%%/innreport.pm
%%ETCDIR%%/newshound.conf-dist
@unexec if cmp -s %D/%%ETCDIR%%/nntpcache.access %D/etc/nntpcache/nntpcache.access-dist; then rm -f %D/etc/nntpcache/nntpcache.access; fi
%%ETCDIR%%/nntpcache.access-dist
@exec if [ ! -f %D/%%ETCDIR%%/nttpcache.access ]; then cp -p %D/%F %B/nntpcache.access
@unexec if cmp -s %D/%%ETCDIR%%/nntpcache.config %D/etc/nntpcache/nntpcache.config-dist; then rm -f %D/etc/nntpcache/nntpcache.config; fi
%%ETCDIR%%/nntpcache.config-dist
@exec if [ ! -f %D/%%ETCDIR%%/nttpcache.config ]; then cp -p %D/%F %B/nntpcache.config
@unexec if cmp -s %D/%%ETCDIR%%/nntpcache.servers %D/etc/nntpcache/nntpcache.servers-dist; then rm -f %D/etc/nntpcache/nntpcache.servers; fi
%%ETCDIR%%/nntpcache.servers-dist
@exec if [ ! -f %D/%%ETCDIR%%/nttpcache.servers ]; then cp -p %D/%F %B/nntpcache.servers
@unexec if cmp -s %D/%%ETCDIR%%/pubring.asc %D/etc/nntpcache/pubring.asc-dist; then rm -f %D/etc/nntpcache/pubring.asc; fi
%%ETCDIR%%/pubring.asc-dist
@exec if [ ! -f %D/%%ETCDIR%%/pubring.asc ]; then cp -p %D/%F %B/pubring.asc
@unexec if cmp -s %D/%%ETCDIR%%/pubring.pgp %D/etc/nntpcache/pubring.pgp-dist; then rm -f %D/etc/nntpcache/pubring.pgp; fi
%%ETCDIR%%/pubring.pgp-dist
@exec if [ ! -f %D/%%ETCDIR%%/pubring.pgp ]; then cp -p %D/%F %B/pubring.pgp
%%ETCDIR%%/spam.filter
include/mmap_results.h
libexec/nntpcache-gdb.sh
- Update to version 2.4.0b5 - Remove a verifiably bad site from MASTER_SITES. - Remove duplicate entry (DNS entry points to same IP) from MASTER_SITES. - Add new mirror to MASTER_SITES. - Change MAINTAINER to -ports, as the previous maintainer (and author) has expressed a lack of interest in continued maintenance of this port. - Deploy DOCSDIR. - General clean-up and reorganisation of Makefile. - Remove PKGMESSAGE completely, since this port requires no user action which is out of the ordinary (I do not consider editing configuration files to be out of the ordinary), and it contains no information which is not also contained elsewhere in a more standardised location. - Add NO_CDROM, as this software is not free and never has been. - Bring the startup script installed in ${PREFIX}/etc/rc.d up to current standards (I hope). - Install a fully functional startup script in ${PREFIX}/etc/rc.d (as most ports now do), instead of an inactive .sample startup script. - Install HTML documentation. - Deploy %%PORTDOCS%% pragma in pkg-plist. - Make SPOOLDIR a user-tweakable option (default: /var/spool). NNTPCache will cache news articles in ${SPOOLDIR}/nntpcache. - Remove the non-standard "hardlink-pgp-files" target from Makefile. - Comment out the run-time dependency on security/pgp for now. The only NNTPCache functionality which depends on PGP is very optional indeed and furthermore, there is now a plethora of PGPish ports for the user to choose from. (This may need to be tweaked further, since NNTPCache builds without PGP support if PGP is not detected during the configurations stage.) Approved by: Julian Assange <nntpcache@nntpcache.org>, previous maintainer
2001-09-14 11:47:23 +02:00
libexec/nntpcache.gdb
2014-03-29 19:12:30 +01:00
libexec/nntpcached.debug
libexec/unixauth
man/man8/newshound.8.gz
man/man8/nntpcached.8.gz
sbin/innreport.sh
sbin/newshound
sbin/newshound.pl
sbin/nntpcached
@exec mkdir -p %D/%%ETCDIR%%/http/innreport/pics
@dirrm %%ETCDIR%%/http/innreport/pics
@dirrm %%ETCDIR%%/http/innreport
@dirrm %%ETCDIR%%/http
@dirrmtry %%ETCDIR%%
@unexec rmdir %%SPOOLDIR%% 2>&1 >/dev/null || echo "If you want to completely remove nntpcached, please execute 'rm -fr %%SPOOLDIR%%' by yourself."; true