------------------------------------ (Some lines out of following lines doesn't seem to be included in previous commit log, so ..including ..) - Finding the GMT offset of the local time is not straight forward. Added an ifdef in kernel.c/kernel_init() to handle Solaris' way of doing it. - INADDR_NONE is not defined on Solaris. Added workaround to rumba.c * Release Sharity-Light 1.2 1998-11-24 - Added aSYSTEM and aHIDDEN attributes to smb_proc_unlink(), this allows deleting dotfiles on a samba server. - Added contributed recode code for russian character set (compile time option) * Release Sharity-Light 1.3 2003-12-29
37 lines
1.2 KiB
Makefile
37 lines
1.2 KiB
Makefile
# $NetBSD: Makefile,v 1.12 2016/09/01 12:58:46 mef Exp $
|
|
#
|
|
|
|
DISTNAME= Sharity-Light.1.3
|
|
PKGNAME= sharity-light-1.3
|
|
CATEGORIES= net
|
|
MASTER_SITES= http://www.obdev.at/ftp/pub/Products/Sharity-Light/
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://www.obdev.at/products/sharity-light/
|
|
COMMENT= Userland smbfs -- SMB to NFS protocol converter
|
|
LICENSE= gnu-gpl-v2
|
|
|
|
NOT_FOR_PLATFORM= Interix-*-* # SMB is all native
|
|
|
|
# avoid picking up a bad value from a users environment
|
|
MAKE_ENV+= "ARCH= "
|
|
|
|
INSTALLATION_DIRS= ${PKGMANDIR}/man8 sbin
|
|
|
|
post-extract:
|
|
${MKDIR} ${WRKDIR}/unshlight
|
|
${LN} -s ${FILESDIR}/unshlight.c ${WRKDIR}/unshlight
|
|
${LN} -s ${FILESDIR}/Makefile.unshlight ${WRKDIR}/unshlight/Makefile
|
|
|
|
post-build:
|
|
cd ${WRKDIR}/unshlight && ${MAKE}
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/shlight ${DESTDIR}${PREFIX}/sbin
|
|
${INSTALL_PROGRAM} ${WRKDIR}/unshlight/unshlight ${DESTDIR}${PREFIX}/sbin
|
|
${INSTALL_DATA_DIR} ${DESTDIR}${PREFIX}/share/doc/sharity-light
|
|
${INSTALL_DATA} ${WRKSRC}/README ${WRKSRC}/FAQ.txt \
|
|
${DESTDIR}${PREFIX}/share/doc/sharity-light/
|
|
${INSTALL_MAN} ${WRKSRC}/smbmount.8 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man8/shlight.8
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|