diff options
author | Philip Balister <philip@balister.org> | 2007-07-26 15:50:04 +0000 |
---|---|---|
committer | Philip Balister <philip@balister.org> | 2007-07-26 15:50:04 +0000 |
commit | 4e2dba920549b2881b2c69e1d4746f997dcb4336 (patch) | |
tree | d848f4ddde2cfd5a2e04eeaf5ccb1e60f2f10859 /packages/gnuradio | |
parent | 73f379bfe6a14336fb79e00225180c225e60c33a (diff) |
gnuradio_svn.bb : First pass at adding support for GNU Radio. Still needs
debugging.
Diffstat (limited to 'packages/gnuradio')
-rw-r--r-- | packages/gnuradio/.mtn2git_empty | 0 | ||||
-rw-r--r-- | packages/gnuradio/gnuradio_svn.bb | 21 |
2 files changed, 21 insertions, 0 deletions
diff --git a/packages/gnuradio/.mtn2git_empty b/packages/gnuradio/.mtn2git_empty new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/packages/gnuradio/.mtn2git_empty diff --git a/packages/gnuradio/gnuradio_svn.bb b/packages/gnuradio/gnuradio_svn.bb new file mode 100644 index 0000000000..1e313b0b6c --- /dev/null +++ b/packages/gnuradio/gnuradio_svn.bb @@ -0,0 +1,21 @@ +DESCRIPTION = "GNU Radio" +SECTION = "apps" +PRIORITY = "optional" +LICENSE = "GPL" +DEPENDS = "fftw python boost cppunit sdcc-native swig swig-native" +RDEPENDS = "fftw python swig" +PR = "r0" + +SRC_URI = "svn://gnuradio.org/svn/gnuradio;module=trunk;proto=http" + +inherit autotools pkgconfig + +S="${WORKDIR}/trunk" + +CXXFLAGS_powerpc += "-lstdc++" + +export BUILD_SYS := "${BUILD_SYS}" +export HOST_SYS := "${HOST_SYS}" + +EXTRA_OECONF = "--disable-gr-atsc --disable-gr-video-sdl" + |