add plugin(streamtvplayer)
[vuplus_openembedded] / recipes / samba / samba-essential.inc
1 SECTION = "console/network"
2 LICENSE = "GPL"
3 DEPENDS = "readline"
4                
5 SRC_URI = "http://samba.org/samba/ftp/stable/samba-${PV}.tar.gz \
6            file://configure.patch;patch=1 \
7            file://cifs.patch;patch=1"
8 S = "${WORKDIR}/samba-${PV}/source"
9
10 inherit autotools
11
12 EXTRA_OECONF = '--disable-cups --with-readline=${STAGING_LIBDIR}/.. \
13               --without-ads --without-automount --without-smbmount --without-syslog \
14               --without-ldapsam --without-quotas --without-nisplus-home \
15               --without-sys-quotas --without-libsmbclient --without-winbind \
16               --without-acl-support'
17               
18 do_configure_prepend () {
19         ./script/mkversion.sh
20         if [ ! -e acinclude.m4 ]; then
21                 cat aclocal.m4 > acinclude.m4
22         fi
23 }
24
25 do_compile () {
26         oe_runmake proto_exists
27         base_do_compile
28 }
29
30 do_install_append() {
31         rm -f ${D}${bindir}/*.old
32         rm -f ${D}${sbindir}/*.old
33         
34         mkdir -p ${D}/sbin/
35 }
36
37 do_install_prepend() {
38
39         mkdir -p ${D}/sbin/
40        
41 }
42