Advertisement
Guest User

Untitled

a guest
Apr 11th, 2014
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.56 KB | None | 0 0
  1. SUMMARY="Library bits of the samba network filesystem"
  2. DESCRIPTION="
  3. Samba is an Open Source/Free Software suite that provides seamless file and \
  4. print services to SMB/CIFS clients. Samba is freely available, unlike other \
  5. SMB/CIFS implementations, and allows for interoperability between Linux/Unix \
  6. servers and Windows-based clients. Samba is software that can be run on a \
  7. platform other than Microsoft Windows, for example, UNIX, Linux, IBM System \
  8. 390, OpenVMS, and other operating systems. Samba uses the TCP/IP protocol that \
  9. is installed on the host server. When correctly configured, it allows that \
  10. host to interact with a Microsoft Windows client or server as if it is a \
  11. Windows file and print server."
  12. HOMEPAGE="http://www.samba.org/"
  13. COPYRIGHT="1992-2014 Anrew Tridgell and the Samba Team"
  14. LICENSE="GNU GPL v3"
  15.  
  16. SRC_URI="http://ftp.samba.org/pub/samba/samba-3.6.23.tar.gz"
  17. CHECKSUM_SIZE="34122387"
  18. CHECKSUM_RMD160="43dc3b5dcc2ee515bed03ad77b9726841faea946"
  19. CHECKSUM_SHA512="54189079a4f65f1e9c818f9edc9d862c4261c3a4925146f3ab19603052d2c08d32b59ddc243422683338dc4f1192b22f02acaa719e11aa44146c5d3bb11fdcb0"
  20.  
  21. REVISION="1"
  22. ARCHITECTURES="x86_gcc2 x86 x86_64"
  23. PATCHES="samba-3.6.23.patch"
  24.  
  25. GLOBAL_WRITABLE_FILES="
  26. settings/samba directory keep-old
  27. "
  28.  
  29. PROVIDES="
  30. cmd:smbclient = $portVersion
  31. cmd:eventlogadm = $portVersion
  32. cmd:nmbd = $portVersion
  33. cmd:rpcclient = $portVersion
  34. cmd:smbcquotas = $portVersion
  35. cmd:smbstatus = $portVersion
  36. cmd:tdbdump = $portVersion
  37. cmd:nmblookup = $portVersion
  38. cmd:sharesec = $portVersion
  39. cmd:smbd = $portVersion
  40. # cmd:smbta-util = $portVersion
  41. cmd:tdbrestore = $portVersion
  42. cmd:ntlm_auth = $portVersion
  43. cmd:smbcacls = $portVersion
  44. cmd:smbget = $portVersion
  45. cmd:smbtree = $portVersion
  46. cmd:tdbtool = $portVersion
  47. cmd:pdbedit = $portVersion
  48. cmd:smbclient = $portVersion
  49. cmd:smbpasswd = $portVersion
  50. cmd:swat = $portVersion
  51. cmd:testparm = $portVersion
  52. cmd:net = $portVersion
  53. cmd:profiles = $portVersion
  54. cmd:smbcontrol = $portVersion
  55. cmd:smbspool = $portVersion
  56. cmd:tdbbackup = $portVersion
  57. "
  58.  
  59. REQUIRES="
  60. haiku >= $haikuVersion
  61. lib:libiconv
  62. lib:libintl
  63. lib:libncurses
  64. lib:libreadline
  65. lib:libz
  66. "
  67.  
  68. BUILD_REQUIRES="
  69. devel:libiconv
  70. devel:libintl
  71. devel:libncurses
  72. devel:libreadline
  73. devel:libz
  74. "
  75.  
  76. BUILD_PREREQUIRES="
  77. haiku_devel >= $haikuVersion
  78. cmd:autoconf
  79. cmd:perl
  80. cmd:python
  81. cmd:find
  82. cmd:gcc
  83. cmd:ld
  84. cmd:make
  85. cmd:which
  86. "
  87.  
  88. BUILD()
  89. {
  90. cd source3
  91. ./autogen.sh
  92. runConfigure ./configure
  93. make $jobArgs
  94. }
  95.  
  96. INSTALL()
  97. {
  98. make installmodules
  99. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement