diff options
author | Øyvind Repvik <repvik@foonas.org> | 2008-12-07 21:03:04 +0100 |
---|---|---|
committer | Øyvind Repvik <repvik@foonas.org> | 2008-12-07 21:05:17 +0100 |
commit | 563054a2db557ef229b6d30842bf17f86c02f249 (patch) | |
tree | 06fc3bd8df2aba73e62f5ab81d872529e7f6c068 /packages/samba/samba_3.2.5.bb | |
parent | 52379ecee3d7c3a2a9b0ecd49c5ca164d182c345 (diff) |
samba:
Add samba 3.2.5, again thanks to timtimred.
Diffstat (limited to 'packages/samba/samba_3.2.5.bb')
-rw-r--r-- | packages/samba/samba_3.2.5.bb | 68 |
1 files changed, 68 insertions, 0 deletions
diff --git a/packages/samba/samba_3.2.5.bb b/packages/samba/samba_3.2.5.bb new file mode 100644 index 0000000000..efee5e70a5 --- /dev/null +++ b/packages/samba/samba_3.2.5.bb @@ -0,0 +1,68 @@ +require samba.inc +inherit update-rc.d + +PR = "r7" + +SRC_URI += "file://config-lfs.patch;patch=1 \ + file://quota.patch;patch=1;pnum=0 \ + file://config-h.patch;patch=1 \ + file://init \ + file://smb.conf \ + " + +# file://cifs.patch;patch=1 \ + +INITSCRIPT_NAME = "samba" +# No dependencies, goes in at level 20 (NOTE: take care with the +# level, later levels put the shutdown later too - see the links +# in rc6.d, the shutdown must precede network shutdown). +INITSCRIPT_PARAMS = "defaults" +CONFFILES_${PN} = "${sysconfdir}/samba/smb.conf" + +# The file system settings --foodir=dirfoo and overridden unconditionally +# in the samba config by --with-foodir=dirfoo - even if the --with is not +# specified! Fix that here. Set the privatedir to /etc/samba/private. +EXTRA_OECONF += "\ + SMB_BUILD_CC_NEGATIVE_ENUM_VALUES=yes \ + samba_cv_CC_NEGATIVE_ENUM_VALUES=yes \ + samba_cv_struct_timespec=yes \ + linux_getgrouplist_ok=no \ + samba_cv_HAVE_BROKEN_GETGROUPS=no \ + samba_cv_HAVE_FTRUNCATE_EXTEND=yes \ + ac_cv_path_KRB5CONFIG=no \ + samba_cv_have_setresuid=yes \ + samba_cv_have_setresgid=yes \ + --with-configdir=${sysconfdir}/samba \ + --with-privatedir=${sysconfdir}/samba/private \ + --with-lockdir=${localstatedir}/lock \ + --with-piddir=${localstatedir}/run \ + --with-logfilebase=${localstatedir}/log \ + --with-libdir=${libdir} \ + --with-mandir=${mandir} \ + --with-swatdir=${datadir}/swat \ + " + +do_configure() { + oe_runconf +} + +do_install_append() { + install -d "${D}/var/log/samba" + install -d "${D}${sysconfdir}/init.d" + install -c -m 755 ${WORKDIR}/init ${D}${sysconfdir}/init.d/samba + install -d "${D}${sysconfdir}/samba" + install -c -m 644 ${WORKDIR}/smb.conf ${D}${sysconfdir}/samba/smb.conf + install -d ${D}/var/spool/samba +} + +PACKAGES =+ "swat" + +FILES_swat = "${sbindir}/swat ${datadir}/swat ${libdir}/*.msg" +FILES_${PN} += "${libdir}/vfs/*.so ${libdir}/charset/*.so ${libdir}/*.dat \ + ${libdir}/auth/*.so ${libdir}/security/*.so" +FILES_${PN}-dbg += "${libdir}/vfs/.debug/*.so ${libdir}/charset/.debug/*.so \ + ${libdir}/auth/.debug/*.so ${libdir}/security/.debug/*.so" + +# +# bug fix for samba.inc: +FILES_cifs-doc += "${mandir}/man8/mount.cifs.8" |