summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/unfs-server/unfs-server_2.2beta47.bb
blob: 86ef300b09c4cf354fb32e671443ef19e5b80d17 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
DESCRIPTION = "Userspace NFS server"
SECTION = "console/network"
LICENSE = "GPLv2+"
LIC_FILES_CHKSUM = "file://COPYING;md5=8ca43cbc842c2336e835926c2166c28b"

RDEPENDS_${PN} = "pseudo"
RDEPENDS_${PN}_virtclass-native = "pseudo-native"
RDEPENDS_${PN}_virtclass-nativesdk = "pseudo-nativesdk"
PR = "r2"

SRC_URI = "ftp://linux.mathematik.tu-darmstadt.de/pub/linux/oldstuff/people/okir/nfs-server-${PV}.tar.gz \
           file://001-2.2b47-2.2b51.patch \
           file://002-destdir.patch \
           file://003-manpages.patch \
           file://004-strsignal.patch \
           file://005-sys-time.patch \
           file://006-reiserfs.patch \
           file://007-map.patch \
           file://008-configure.patch \
           file://009-multirw.patch \
           file://010-realpath.patch \
           file://011-fno-strict-aliasing.patch \
           file://012-nostrip.patch \
           file://013-mntpathlen.patch \
           file://014-uninitialized.patch \
           file://015-setattr.patch \
           file://016-makefile.in.patch \
           file://017-wrs-dynamic-rpc.patch \
           file://018-remove-tcp-wrappers.patch \
           file://019-pid-before-fork.patch \
           file://020-undefined-chmod-fix.patch \
           file://021-nolibwrap.patch \
           file://022-add-close-on-exec-descriptors.patch \
          "

SRC_URI[md5sum] = "79a29fe9f79b2f3241d4915767b8c511"
SRC_URI[sha256sum] = "7eeaf3cf0b9d96167a5ba03bf1046e39b4585de1339a55b285e673c06ba415cb"

S = "${WORKDIR}/nfs-server-${PV}/"

inherit autotools

BBCLASSEXTEND = "native nativesdk"

CFLAGS = "-fPIE -fstack-protector-all"
LDFLAGS = "-pie"

EXTRA_OECONF = "--enable-ugid-dynamic \
                --enable-ugid-nis \
                --enable-host-access \
                --with-exports-uid=0 \
                --with-exports-gid=0 \
                --enable-mount-logging \
                --with-devtab=${DESTDIR}${base_prefix}/var/lib/nfs/devtab \
               "

do_configure_prepend () {
    # Remove pregenerated xdr functions. They use long
    # instead of u32, which produces incorrect code on
    # 64-bit architectures:
    rm -f *_xdr.c

    mv aclocal.m4 acinclude.m4
}

# This recipe is intended for -native and -nativesdk builds only,
# not target installs:
python __anonymous () {
    import re

    pn = bb.data.getVar("PN", d, 1)
    if not pn.endswith('-native') and not pn.endswith('-nativesdk'):
        raise bb.parse.SkipPackage("unfs-server is intended for native/nativesdk builds only")
}