- move to pkg-readmes

This commit is contained in:
jasper 2010-11-07 20:47:08 +00:00
parent cc12c18d21
commit 295171d20a
3 changed files with 10 additions and 12 deletions

View File

@ -1,14 +1,14 @@
# $OpenBSD: Makefile,v 1.35 2010/10/18 21:35:48 sthen Exp $
# $OpenBSD: Makefile,v 1.36 2010/11/07 20:47:08 jasper Exp $
COMMENT= manage remote serial consoles via TCP/IP
DISTNAME= conserver-8.1.16
REVISION= 0
REVISION= 1
CATEGORIES= comms
MAINTAINER= Peter Valchev <pvalchev@openbsd.org>
HOMEPAGE= http://www.conserver.com
HOMEPAGE= http://www.conserver.com/
# BSD
PERMIT_PACKAGE_CDROM= Yes
@ -29,8 +29,4 @@ USE_GROFF = Yes
REGRESS_TARGET= test
post-install:
@${INSTALL_DATA} ${FILESDIR}/README.OpenBSD \
${PREFIX}/share/examples/conserver
.include <bsd.port.mk>

View File

@ -1,4 +1,4 @@
@comment $OpenBSD: PLIST,v 1.7 2008/06/21 11:29:25 sthen Exp $
@comment $OpenBSD: PLIST,v 1.8 2010/11/07 20:47:08 jasper Exp $
@bin bin/console
@man man/man1/console.1
@man man/man5/conserver.cf.5
@ -6,8 +6,8 @@
@man man/man8/conserver.8
@bin sbin/conserver
@bin sbin/conserver-convert
share/doc/pkg-readmes/${FULLPKGNAME}
share/examples/conserver/
share/examples/conserver/README.OpenBSD
share/examples/conserver/conserver.cf
@sample ${SYSCONFDIR}/conserver.cf
share/examples/conserver/conserver.passwd

View File

@ -1,3 +1,5 @@
$OpenBSD: README,v 1.1 2010/11/07 20:47:08 jasper Exp $
Using conserver in an OpenBSD environment:
1. Customize the configuration for your needs, see /etc/conserver.cf
@ -10,12 +12,12 @@ Using conserver in an OpenBSD environment:
echo -n 'starting local daemons:'
...
if [ -f /etc/conserver.cf ]; then
if [ X"${conserver}" = X"YES" -a -x /usr/local/sbin/conserver ]; then
echo -n ' conserver'; /usr/local/sbin/conserver -d -n
if [ X"${conserver}" = X"YES" -a -x ${PREFIX}/sbin/conserver ]; then
echo -n ' conserver'; ${PREFIX}/sbin/conserver -d -n
fi
fi
...
echo '.'
4. See the man pages for conserver, conserver.cf, and console as well as
the files in /usr/local/share/examples/conserver for more information.
the files in ${PREFIX}/share/examples/conserver for more information.