diff options
author | Tim Ansell <mithro@mithis.com> | 2004-09-23 18:24:13 +0000 |
---|---|---|
committer | Tim Ansell <mithro@mithis.com> | 2004-09-23 18:24:13 +0000 |
commit | 7d885ceaf8df77be4d7c6deb79e7d3c49902458c (patch) | |
tree | dea5a4b12b57eadbf7fbf77687fc2b8519b3021e | |
parent | c5ab5e5e63fcc6c8b6d235a5c2bfee8251564ee7 (diff) |
Merge http://openembedded.bkbits.net:8080/packages
into mithis.com:/cc/packages
2004/09/24 03:52:40+09:30 mithis.com!mithro
Samba now builds smbmount needed because busybox doesn't support samba's mountdata
2004/09/24 03:50:33+09:30 mithis.com!mithro
DEPENDS = readline
SRC_URI := "http://samba.mirror.ac.uk/samba/ftp/samba-${PV}.tar.gz \
file://${FILESDIR}/configure.patch;patch=1"
S := ${WORKDIR}/${P}/source
PACKAGES =+ "libsmbclient libsmbclient-dev "
FILES_libsmbclient = "${libdir}/libsmbclient.so.*"
FILES_libsmbclient-dev = "${libdir}/libsmbclient.so ${includedir}"
inherit autotools
EXTRA_OECONF='--disable-cups --with-readline=${STAGING_LIBDIR}/.. \
--without-ads --without-automount --with-smbmount'
do_configure_prepend () {
./script/mkversion.sh
if [ ! -e acinclude.m4 ]; then
cat aclocal.m4 > acinclude.m4
fi
}
do_install_append() {
mv ${D}${libdir}/libsmbclient.so ${D}${libdir}/libsmbclient.so.0
ln -sf libsmbclient.so.0 ${D}${libdir}/libsmbclient.so
rm -f ${D}${bindir}/*.old
rm -f ${D}${sbindir}/*.old
}
do_stage() {
install -m 0644 include/libsmbclient.h ${STAGING_INCDIR}
oe_libinstall -C bin -a -so libsmbclient ${STAGING_LIBDIR}
}
BKrev: 415314cdvI01YLoue_fhH8eWM6d0dw
-rw-r--r-- | mplayer/mplayer-1.0pre3try2/Makefile.patch | 0 | ||||
-rw-r--r-- | mplayer/mplayer-1.0pre3try2/zlib.patch | 0 | ||||
-rw-r--r-- | mplayer/mplayer_1.0pre3try2.oe | 0 | ||||
-rw-r--r-- | samba/samba_3.0.5.oe | 32 |
4 files changed, 32 insertions, 0 deletions
diff --git a/mplayer/mplayer-1.0pre3try2/Makefile.patch b/mplayer/mplayer-1.0pre3try2/Makefile.patch new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/mplayer/mplayer-1.0pre3try2/Makefile.patch diff --git a/mplayer/mplayer-1.0pre3try2/zlib.patch b/mplayer/mplayer-1.0pre3try2/zlib.patch new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/mplayer/mplayer-1.0pre3try2/zlib.patch diff --git a/mplayer/mplayer_1.0pre3try2.oe b/mplayer/mplayer_1.0pre3try2.oe new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/mplayer/mplayer_1.0pre3try2.oe diff --git a/samba/samba_3.0.5.oe b/samba/samba_3.0.5.oe index e69de29bb2..15375b484b 100644 --- a/samba/samba_3.0.5.oe +++ b/samba/samba_3.0.5.oe @@ -0,0 +1,32 @@ +DEPENDS = readline + +SRC_URI := "http://samba.mirror.ac.uk/samba/ftp/samba-${PV}.tar.gz \ + file://${FILESDIR}/configure.patch;patch=1" +S := ${WORKDIR}/${P}/source + +PACKAGES =+ "libsmbclient libsmbclient-dev " +FILES_libsmbclient = "${libdir}/libsmbclient.so.*" +FILES_libsmbclient-dev = "${libdir}/libsmbclient.so ${includedir}" + +inherit autotools + +EXTRA_OECONF='--disable-cups --with-readline=${STAGING_LIBDIR}/.. \ + --without-ads --without-automount --with-smbmount' +do_configure_prepend () { + ./script/mkversion.sh + if [ ! -e acinclude.m4 ]; then + cat aclocal.m4 > acinclude.m4 + fi +} + +do_install_append() { + mv ${D}${libdir}/libsmbclient.so ${D}${libdir}/libsmbclient.so.0 + ln -sf libsmbclient.so.0 ${D}${libdir}/libsmbclient.so + rm -f ${D}${bindir}/*.old + rm -f ${D}${sbindir}/*.old +} + +do_stage() { + install -m 0644 include/libsmbclient.h ${STAGING_INCDIR} + oe_libinstall -C bin -a -so libsmbclient ${STAGING_LIBDIR} +} |