diff options
-rw-r--r-- | espgs/espgs-native_7.07.1rc1.oe | 2 | ||||
-rw-r--r-- | espgs/espgs_7.07.1rc1.oe | 2 | ||||
-rw-r--r-- | gnuplot/gnuplot_4.0.0.oe | 2 | ||||
-rw-r--r-- | ntop/ntop_3.0.oe | 34 |
4 files changed, 37 insertions, 3 deletions
diff --git a/espgs/espgs-native_7.07.1rc1.oe b/espgs/espgs-native_7.07.1rc1.oe index 7af9fe8e62..6498cd4d11 100644 --- a/espgs/espgs-native_7.07.1rc1.oe +++ b/espgs/espgs-native_7.07.1rc1.oe @@ -1,4 +1,4 @@ -SECTION = "unknwon" +SECTION = "unknown" include espgs_${PV}.oe inherit native FILESDIR = "${@os.path.dirname(oe.data.getVar('FILE',d,1))}/espgs-${PV}" diff --git a/espgs/espgs_7.07.1rc1.oe b/espgs/espgs_7.07.1rc1.oe index 974e3f7cc1..03b6ac16eb 100644 --- a/espgs/espgs_7.07.1rc1.oe +++ b/espgs/espgs_7.07.1rc1.oe @@ -1,4 +1,4 @@ -SECTION = "unknwon" +SECTION = "unknown" DEPENDS = "jpeg zlib libpng espgs-native" SRC_URI = "ftp://ftp.easysw.com/pub/ghostscript/espgs-${PV}-source.tar.bz2" diff --git a/gnuplot/gnuplot_4.0.0.oe b/gnuplot/gnuplot_4.0.0.oe index 61ec334ca2..752c958d6f 100644 --- a/gnuplot/gnuplot_4.0.0.oe +++ b/gnuplot/gnuplot_4.0.0.oe @@ -1,6 +1,6 @@ DESCRIPTION = "Gnuplot is a portable command-line driven interactive datafile \ (text or binary) and function plotting utility." -SECTION = "scientific" +SECTION = "x11/utils" PRIORITY = "optional" MAINTAINER = "Chris Larson <kergoth@handhelds.org>" DEPENDS = "x11 libpng gd readline" diff --git a/ntop/ntop_3.0.oe b/ntop/ntop_3.0.oe index e69de29bb2..704f9236b2 100644 --- a/ntop/ntop_3.0.oe +++ b/ntop/ntop_3.0.oe @@ -0,0 +1,34 @@ +DESCRIPTION = "ntop is network top" +SECTION = "console/network" +PRIORITY = "optional" +DEPENDS = "gdbm zlib libpcap libpng gd" + +SRC_URI = "${SOURCEFORGE_MIRROR}/ntop/ntop-${PV}.tgz \ + file://${FILESDIR}/autotools.patch;patch=1 \ + file://${FILESDIR}/plugins.patch;patch=1" + +inherit autotools + +EXTRA_OECONF += " --without-ssl \ + --with-gd-lib=${STAGING_LIBDIR} \ + --with-gd-include=${STAGING_INCDIR} \ + --with-zlib-lib=${STAGING_LIBDIR} \ + --with-zlib-include=${STAGING_INCDIR} \ + --with-pcap-lib=${STAGING_LIBDIR} \ + --with-pcap-include=${STAGING_INCDIR} \ + --with-libpng-lib=${STAGING_LIBDIR} \ + --with-libpng-include=${STAGING_INCDIR} \ + --with-gdbm-lib=${STAGING_LIBDIR} \ + --with-gdbm-include=${STAGING_INCDIR}" + +FILES_ntop_append = " ${libdir}/ntop/plugins/*.so ${libdir}/libntop-*.so \ + ${libdir}/libntopreport-*.so" +FILES_${PN}-dev = "${includedir} ${libdir}/libntop.so ${libdir}/libntopreport.so \ + ${libdir}/libntop.a ${libdir}/libntopreport.a ${libdir}/*.la" + +do_configure () { + if [ ! -e acinclude.m4 ]; then + mv acinclude.m4.ntop acinclude.m4 + fi + autotools_do_configure +} |