diff options
Diffstat (limited to 'devel/cvsd/Makefile')
-rw-r--r-- | devel/cvsd/Makefile | 22 |
1 files changed, 15 insertions, 7 deletions
diff --git a/devel/cvsd/Makefile b/devel/cvsd/Makefile index 1c283d0fa838..277629c94308 100644 --- a/devel/cvsd/Makefile +++ b/devel/cvsd/Makefile @@ -7,7 +7,7 @@ # PORTNAME= cvsd -PORTVERSION= 0.9.18 +PORTVERSION= 0.9.19 CATEGORIES= devel MASTER_SITES= http://tiefighter.et.tudelft.nl/~arthur/cvsd/ @@ -16,7 +16,6 @@ COMMENT= CVS pserver daemon USE_PERL5= yes USE_GETOPT_LONG= yes -USE_REINPLACE= yes GNU_CONFIGURE= yes CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL} CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}" @@ -27,11 +26,20 @@ MAKE_ARGS= ACLOCAL="${TRUE}" AUTOCONF="${TRUE}" AUTOMAKE="${TRUE}" \ MAN5= cvsd.conf.5 MAN8= cvsd.8 cvsd-buildroot.8 cvsd-passwd.8 -post-patch: - @${REINPLACE_CMD} -e 's|init.d/cvsd|rc.d/cvsd.sh.sample|g ; \ - s|init.d|rc.d|g' ${WRKSRC}/Makefile.in - -post-install: +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/cvsd ${PREFIX}/sbin/cvsd +.for file in cvsd-buildroot cvsd-passwd + ${INSTALL_SCRIPT} ${WRKSRC}/${file} ${PREFIX}/sbin/${file} +.endfor + ${INSTALL_DATA} ${WRKSRC}/cvsd.init ${PREFIX}/etc/rc.d/cvsd.sh.sample + @${MKDIR} ${PREFIX}/etc/cvsd + ${INSTALL_DATA} ${WRKSRC}/cvsd.conf-dist ${PREFIX}/etc/cvsd/cvsd.conf.sample +.for file in ${MAN5} + ${INSTALL_MAN} ${WRKSRC}/${file} ${MANPREFIX}/man/man5/${file} +.endfor +.for file in ${MAN8} + ${INSTALL_MAN} ${WRKSRC}/${file} ${MANPREFIX}/man/man8/${file} +.endfor .if !defined(NOPORTDOCS) @${MKDIR} ${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR} |