From 709c4d66e0b107ca606941b988bad717c0b45d9b Mon Sep 17 00:00:00 2001 From: Denys Dmytriyenko Date: Tue, 17 Mar 2009 14:32:59 -0400 Subject: rename packages/ to recipes/ per earlier agreement See links below for more details: http://thread.gmane.org/gmane.comp.handhelds.openembedded/21326 http://thread.gmane.org/gmane.comp.handhelds.openembedded/21816 Signed-off-by: Denys Dmytriyenko Acked-by: Mike Westerhof Acked-by: Philip Balister Acked-by: Khem Raj Acked-by: Marcin Juszkiewicz Acked-by: Koen Kooi Acked-by: Frans Meulenbroeks --- recipes/vlan/vlan_1.8.bb | 25 +++++++++++++++++++++++++ recipes/vlan/vlan_1.9.bb | 24 ++++++++++++++++++++++++ 2 files changed, 49 insertions(+) create mode 100644 recipes/vlan/vlan_1.8.bb create mode 100644 recipes/vlan/vlan_1.9.bb (limited to 'recipes/vlan') diff --git a/recipes/vlan/vlan_1.8.bb b/recipes/vlan/vlan_1.8.bb new file mode 100644 index 0000000000..2b8d1d18a8 --- /dev/null +++ b/recipes/vlan/vlan_1.8.bb @@ -0,0 +1,25 @@ +DESCRIPTION = "802.1q vlan support program" +RRECOMMENDS = "kernel-module-8021q" +PR = "r2" + +S = "${WORKDIR}/vlan/" + +SRC_URI = "http://scry.wanfear.com/~greear/vlan/vlan.1.8.tar.gz \ + " + +inherit base + +CCFLAGS = "-g -D_GNU_SOURCE -Wall -I${STAGING_INCDIR}" +LDLIBS = "" + +do_compile() { + ${CC} ${CCFLAGS} -c vconfig.c + ${CC} ${CCFLAGS} ${LDFLAGS} -o vconfig vconfig.o ${LDLIBS} + ${STRIP} vconfig +} + +do_install() { + install -d "${D}/usr/sbin" + install -m 755 "${S}/vconfig" "${D}/usr/sbin/vconfig" +} + diff --git a/recipes/vlan/vlan_1.9.bb b/recipes/vlan/vlan_1.9.bb new file mode 100644 index 0000000000..3a10e898ab --- /dev/null +++ b/recipes/vlan/vlan_1.9.bb @@ -0,0 +1,24 @@ +DESCRIPTION = "802.1q vlan support program" +RRECOMMENDS = "kernel-module-8021q" +PR = "r0" + +S = "${WORKDIR}/vlan/" + +SRC_URI = "http://www.candelatech.com/~greear/vlan/vlan.${PV}.tar.gz \ + " + +inherit base + +CCFLAGS = "-g -D_GNU_SOURCE -Wall -I${STAGING_INCDIR}" +LDLIBS = "" + +do_compile() { + ${CC} ${CCFLAGS} -c vconfig.c + ${CC} ${CCFLAGS} ${LDFLAGS} -o vconfig vconfig.o ${LDLIBS} +} + +do_install() { + install -d "${D}${sbindir}" + install -m 755 "${S}/vconfig" "${D}${sbindir}/vconfig" +} + -- cgit 1.2.3-korg