diff options
Diffstat (limited to 'sysutils/LPRng/Makefile')
-rw-r--r-- | sysutils/LPRng/Makefile | 53 |
1 files changed, 41 insertions, 12 deletions
diff --git a/sysutils/LPRng/Makefile b/sysutils/LPRng/Makefile index c2ed3ce018e8..cda6b71bdeef 100644 --- a/sysutils/LPRng/Makefile +++ b/sysutils/LPRng/Makefile @@ -6,7 +6,7 @@ # PORTNAME= LPRng -PORTVERSION= 3.8.26 +PORTVERSION= 3.8.28 CATEGORIES= sysutils print MASTER_SITES= ftp://ftp.lprng.com/pub/%SUBDIR%/ \ ftp://ftp.cise.ufl.edu/pub/mirrors/%SUBDIR%/ \ @@ -23,8 +23,14 @@ LIB_DEPENDS= gdbm.3:${PORTSDIR}/databases/gdbm GNU_CONFIGURE= yes USE_INC_LIBTOOL_VER=13 -INSTALLS_SHLIB= yes +SUB_FILES= pkg-message pkg-install +SUB_LIST= SYSCONFDIR="${SYSCONFDIR}" + +PKGDEINSTALL= ${PKGINSTALL} + +CONFIGURE_ENV= LDFLAGS="-L${LOCALBASE}/lib" \ + CPPFLAGS="-I${LOCALBASE}/include" CONFIGURE_ARGS= \ --with-sbindir=${PREFIX}/sbin \ --with-filterdir=${PREFIX}/libexec/filters \ @@ -32,15 +38,20 @@ CONFIGURE_ARGS= \ --with-lpd_conf_path=${PREFIX}/etc/lpd.conf \ --with-lpd_perms_path=${PREFIX}/etc/lpd.perms \ --with-printcap_path=/etc/printcap \ - LDFLAGS="-L${LOCALBASE}/lib" \ - CPPFLAGS="-I${LOCALBASE}/include" \ --with-ld_library_path="${PREFIX}/lib:/lib:/usr/lib:/${LOCALBASE}/lib" \ --enable-gdbm=${LOCALBASE} -.if defined(PREFIX) - CONFIGURE_ARGS+= --prefix="${PREFIX}" + +.if defined(PORT_REPLACES_BASE_LPR) +PREFIX= /usr +SYSCONFDIR= /etc .endif + .if defined(SYSCONFDIR) - CONFIGURE_ARGS+= --sysconfdir="${SYSCONFDIR}" +CONFIGURE_ARGS+= --sysconfdir="${SYSCONFDIR}" +PLIST_SUB+= CWD="" SYSCONFDIR="${SYSCONFDIR:S,^/,,}" +.else +SYSCONFDIR= ${PREFIX}/etc +PLIST_SUB+= CWD="@comment " SYSCONFDIR="${SYSCONFDIR:S,^${PREFIX}/,,}" .endif MAN1= lpf.1 psbanner.1 lp.1 cancel.1 lprng_certs.1 lprng_index_certs.1 \ @@ -48,9 +59,15 @@ MAN1= lpf.1 psbanner.1 lp.1 cancel.1 lprng_certs.1 lprng_index_certs.1 \ MAN5= printcap.5 lpd.conf.5 lpd.perms.5 MAN8= lpc.8 checkpc.8 lpd.8 +.include <bsd.port.pre.mk> + +.if ${PREFIX} == "/usr" +CONFIGURE_ARGS+= --mandir="${PREFIX}/share/man" +.endif + pre-everything:: @${ECHO_MSG} "If you want to replace the default printing system with LPRng, use:" - @${ECHO_MSG} " make PREFIX=/usr SYSCONFDIR=/etc clean all install" + @${ECHO_MSG} " make PORT_REPLACES_BASE_LPR=yes clean all install" @${ECHO_MSG} " OR" @${ECHO_MSG} " make CONFIGURE_SCRIPT=STANDARD_configuration clean all install" @if [ "${PREFIX}" = "/usr" -a ! -d /usr/man ] ; then \ @@ -63,18 +80,30 @@ pre-everything:: ${ECHO_MSG} 'man pages and defaults to $${PREFIX}/man, which is incorrect for FreeBSD.'; \ fi +post-patch: + @${ECHO} "#! /bin/sh" > ${WRKSRC}/postinstall.freebsd.sh + +pre-install: apply-slist + @${SH} ${PKGINSTALL} ${PKGNAME} PRE-INSTALL + post-install: + @${INSTALL_DATA} ${WRKSRC}/lpd.conf ${SYSCONFDIR}/lpd.conf.sample + @${INSTALL_DATA} ${WRKSRC}/lpd.perms ${SYSCONFDIR}/lpd.perms.sample + @${INSTALL_DATA} ${WRKSRC}/printcap ${SYSCONFDIR}/printcap.sample + @${MKDIR} ${PREFIX}/etc/rc.d + @${INSTALL_DATA} ${WRKSRC}/init.freebsd ${PREFIX}/etc/rc.d/lprng.sh .if !defined(NOPORTDOCS) @${INSTALL} -d -o ${SHAREOWN} -g ${SHAREGRP} -m 0555 ${DOCSDIR} @${INSTALL} -d -o ${SHAREOWN} -g ${SHAREGRP} -m 0555 ${DOCSDIR}/Reference @${INSTALL} -d -o ${SHAREOWN} -g ${SHAREGRP} -m 0555 ${DOCSDIR}/PrintingCookbook .for ext in html pdf ppt ps txt gif jpg png - for i in `${LS} ${WRKSRC}/DOCS | ${GREP} "\.${ext}$$"`; \ + @for i in `${LS} ${WRKSRC}/DOCS | ${GREP} "\.${ext}$$"`; \ do ${INSTALL_DATA} ${WRKSRC}/DOCS/$$i ${DOCSDIR}; done - for i in `${LS} ${WRKSRC}/PrintingCookbook/HTML | ${GREP} "\.${ext}$$"`; \ + @for i in `${LS} ${WRKSRC}/PrintingCookbook/HTML | ${GREP} "\.${ext}$$"`; \ do ${INSTALL_DATA} ${WRKSRC}/PrintingCookbook/HTML/$$i ${DOCSDIR}/PrintingCookbook; done; .endfor .endif - @${SED} -e "s!DOCSDIR!${DOCSDIR}/!" ${PKGMESSAGE} + @${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL + @${CAT} ${PKGMESSAGE} -.include <bsd.port.mk> +.include <bsd.port.post.mk> |