diff options
author | taca <taca> | 2003-06-04 16:25:33 +0000 |
---|---|---|
committer | taca <taca> | 2003-06-04 16:25:33 +0000 |
commit | c318edc29d5e843950ebf0ec569ee929dcf42c12 (patch) | |
tree | 652b21d9d8a3e36890ac10c3a7ffcba5ed85d9ba /net/ja-samba/Makefile | |
parent | 4f3307153ebd40a024e8b09d41b3365c60d06b1f (diff) | |
download | pkgsrc-c318edc29d5e843950ebf0ec569ee929dcf42c12.tar.gz |
Update ja-samba package to 2.2.8.1.1.0nb1.
* Sync with net/samba package:
- clean up findsmp; no need to prepend ${WRKSRC}.
- Don't create ${PREFIX}/private.
- Stop installing HTML documentation.
* Allow longer share name to Windows XP and Windows 2003 server as well as
Windows 2000. Discussion was on the samba-jp mailing list.
Diffstat (limited to 'net/ja-samba/Makefile')
-rw-r--r-- | net/ja-samba/Makefile | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/net/ja-samba/Makefile b/net/ja-samba/Makefile index 45c82c88852..41ca3bad8bd 100644 --- a/net/ja-samba/Makefile +++ b/net/ja-samba/Makefile @@ -1,8 +1,9 @@ -# $NetBSD: Makefile,v 1.16 2003/05/28 08:59:47 taca Exp $ +# $NetBSD: Makefile,v 1.17 2003/06/04 16:25:33 taca Exp $ .include "Makefile.common" PKGNAME= ja-samba-${SAMBA_BASE_VERS:S/a/.1/}.${SAMBA_JA_VERS} +PKGREVISION= 1 CATEGORIES= net MAINTAINER= tech-pkg-ja@jp.netbsd.org @@ -60,7 +61,6 @@ MESSAGE_SUBST+= ROOT_GROUP=${ROOT_GROUP} MESSAGE_SUBST+= ROOT_USER=${ROOT_USER} DOCDIR= ${PREFIX}/share/doc/samba -HTMLDIR= ${PREFIX}/share/doc/html/samba EXAMPLESDIR= ${PREFIX}/share/examples/samba CONF_FILES= ${EXAMPLESDIR}/smb.conf.default ${SAMBA_ETCDIR}/smb.conf @@ -69,7 +69,7 @@ RCD_SCRIPTS= samba nmbd smbd OWN_DIRS= ${SAMBA_ETCDIR} ${SAMBA_LOCKDIR} OWN_DIRS_PERMS= ${SAMBA_PRIVATE} ${ROOT_USER} ${ROOT_GROUP} 0500 -REPLACE_PERL= ${WRKSRC}/script/findsmb.in +REPLACE_PERL= script/findsmb.in # Remove irrelevant files for this package. post-extract: @@ -86,11 +86,11 @@ post-extract: post-install: # Install Samba documentation. - ${INSTALL_DATA_DIR} ${DOCDIR} ${HTMLDIR} + ${INSTALL_DATA_DIR} ${DOCDIR} cd ${WRKDIR}/${DISTNAME}/docs; \ - ${INSTALL_DATA} announce textdocs/* ${DOCDIR}; \ - ${INSTALL_DATA} Registry/*.reg ${DOCDIR}; \ - ${INSTALL_DATA} faq/*.html ${HTMLDIR} + for file in announce textdocs/* Registry/*.reg; do \ + ${INSTALL_DATA} $$file ${DOCDIR}; \ + done # Install Samba examples. ${INSTALL_DATA_DIR} ${EXAMPLESDIR} |