blob: 5fd7255fedd09ab2498285f64e8158ed7a981f55 (
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
|
SECTION = "net"
PR = "r0"
LICENSE = "GPL"
DEPENDS = "cups db openssl libpam"
SRC_URI = "http://ovh.dl.sourceforge.net/sourceforge/netatalk/netatalk-${PV}.tar.gz \
file://netatalk-2.0.3-db43.patch;patch=1 \
file://netatalk-2.0.3-newerdb.patch;patch=1 \
file://netatalk-2.0.3-xfs.patch;patch=1 \
file://init \
"
INITSCRIPT_NAME = "atalk"
INITSCRIPT_PARAMS = "defaults 65"
inherit autotools update-rc.d
do_configure () {
autoreconf
ac_cv_header_rpcsvc_rquota_h=no LDFLAGS="-lpthread -L${STAGING_DIR}/${TARGET_SYS}/lib" ./configure \
--build=${BUILD_SYS} \
--host=${HOST_SYS} \
--target=${TARGET_SYS} \
--prefix=${prefix} \
--with-bdb=${STAGING_DIR}/${TARGET_SYS} \
--with-ssl-dir=${STAGING_DIR}/${TARGET_SYS} \
--without-shadow \
--sysconfdir=${sysconfdir} \
--disable-nls \
--disable-static \
--with-pam \
--mandir=${mandir}
cp ${STAGING_BINDIR_NATIVE}/${TARGET_SYS}-libtool ./${TARGET_SYS}-libtool
}
do_install_append() {
install -D -m 0755 ${WORKDIR}/init ${D}${sysconfdir}/init.d/atalk
}
|