diff options
author | Chris Larson <clarson@kergoth.com> | 2004-12-07 22:05:47 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2004-12-07 22:05:47 +0000 |
commit | a780643c4b6aa11e1a36965a69df7116477c7b4c (patch) | |
tree | 17e81e77bde19931facf9b30fa5b5981df796071 /net-snmp | |
parent | 88cce8db7ebf88ab9da2366a2ac21a5a723340b8 (diff) |
Merge oe-devel@oe-devel.bkbits.net:packages.bb
into handhelds.org:/home/kergoth/code/packages.bb
2004/12/07 04:58:25-06:00 ti.com!kergoth
More updates per the core rename.
2004/12/07 04:46:51-06:00 ti.com!kergoth
Update soundtracker per the core rename.
2004/12/07 04:44:14-06:00 ti.com!kergoth
Merge
2004/12/07 04:42:38-06:00 ti.com!kergoth
Updates per the recent rename of the oe core from 'oe' to 'bitbake'.
BKrev: 41b6293b91LRHSxMOt6WnrZVAdLbFw
Diffstat (limited to 'net-snmp')
-rw-r--r-- | net-snmp/net-snmp_5.1.2.bb | 0 | ||||
-rw-r--r-- | net-snmp/net-snmp_5.1.2.oe | 56 |
2 files changed, 0 insertions, 56 deletions
diff --git a/net-snmp/net-snmp_5.1.2.bb b/net-snmp/net-snmp_5.1.2.bb new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/net-snmp/net-snmp_5.1.2.bb diff --git a/net-snmp/net-snmp_5.1.2.oe b/net-snmp/net-snmp_5.1.2.oe deleted file mode 100644 index 1ee66edda5..0000000000 --- a/net-snmp/net-snmp_5.1.2.oe +++ /dev/null @@ -1,56 +0,0 @@ -DESCRIPTION = "Various tools relating to the Simple Network Management Protocol" -HOMEPAGE = "http://www.net-snmp.org/" -LICENSE = "BSD" -MAINTAINER = "Bruno Randolf <bruno.randolf@4g-systems.biz>" -DEPENDS = "openssl" -SRC_URI = "${SOURCEFORGE_MIRROR}/net-snmp/net-snmp-${PV}.tar.gz \ - file://init \ - file://snmpd.conf \ - file://snmptrapd.conf" - -inherit autotools - -EXTRA_OECONF = "--enable-shared --disable-manuals" -EXTRA_OECONF_mipsel += "--with-endianness=little" - -EXTRA_OEMAKE = "INSTALL_PREFIX=${D}" - -do_configure() { - oe_runconf -} - -do_install_append() { - install -d ${D}/${sysconfdir}/snmp - install -d ${D}/${sysconfdir}/init.d - install -m 755 ${WORKDIR}/init ${D}/${sysconfdir}/init.d/snmpd - install -m 644 ${WORKDIR}/snmpd.conf ${D}/${sysconfdir}/snmp/ - install -m 644 ${WORKDIR}/snmptrapd.conf ${D}/${sysconfdir}/snmp/ -} - -PACKAGES = "net-snmp-doc net-snmp-dev net-snmp-libs net-snmp-mibs net-snmp-server net-snmp-client" -FILES_net-snmp-libs = "${libdir}" -FILES_net-snmp-mibs = "${datadir}/snmp/mibs" -FILES_net-snmp-server = "${sbindir} ${sysconfdir}" -FILES_net-snmp-client = "${bindir} ${datadir}/snmp/" -RDEPENDS_net-snmp-server += "net-snmp-mibs" -RDEPENDS_net-snmp-client += "net-snmp-mibs" - -pkg_postinst_net-snmp-server() { -if test "x$D" != "x"; then - D="-r $D" -else - D="-s" -fi -update-rc.d $D snmpd defaults -} - -pkg_postrm_net-snmp-server() { -if test "x$D" != "x"; then - D="-r $D" -else - /etc/init.d/snmpd stop -fi -update-rc.d $D snmpd remove -} - -CONFFILES_${PN}_nylon = "${sysconfdir}/snmp/snmpd.conf ${sysconfdir}/snmp/snmptrapd.conf" |