diff options
author | Marcin Juszkiewicz <hrw@openedhand.com> | 2008-03-05 08:45:27 +0000 |
---|---|---|
committer | Marcin Juszkiewicz <hrw@openedhand.com> | 2008-03-05 08:45:27 +0000 |
commit | 952fa1e0a0469aa342e12d5c84b4b648f2e5b7ed (patch) | |
tree | a2084287ff7b9f4dc126091c6f1edf837b48c7d1 | |
parent | db497d9391212633ed93800cfc3ec771ec09de69 (diff) | |
download | openembedded-core-952fa1e0a0469aa342e12d5c84b4b648f2e5b7ed.tar.gz openembedded-core-952fa1e0a0469aa342e12d5c84b4b648f2e5b7ed.tar.bz2 openembedded-core-952fa1e0a0469aa342e12d5c84b4b648f2e5b7ed.zip |
mpfr: update to 2.3.1
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@3913 311d38ba-8fff-0310-9ca6-ca027cbcb966
-rw-r--r-- | meta/packages/mpfr/mpfr-native_2.3.1.bb (renamed from meta/packages/mpfr/mpfr-native_2.1.1.bb) | 0 | ||||
-rw-r--r-- | meta/packages/mpfr/mpfr.inc | 6 | ||||
-rw-r--r-- | meta/packages/mpfr/mpfr_2.1.1.bb | 19 | ||||
-rw-r--r-- | meta/packages/mpfr/mpfr_2.3.1.bb | 11 |
4 files changed, 17 insertions, 19 deletions
diff --git a/meta/packages/mpfr/mpfr-native_2.1.1.bb b/meta/packages/mpfr/mpfr-native_2.3.1.bb index 01ba37c8bf..01ba37c8bf 100644 --- a/meta/packages/mpfr/mpfr-native_2.1.1.bb +++ b/meta/packages/mpfr/mpfr-native_2.3.1.bb diff --git a/meta/packages/mpfr/mpfr.inc b/meta/packages/mpfr/mpfr.inc new file mode 100644 index 0000000000..cf898b62b6 --- /dev/null +++ b/meta/packages/mpfr/mpfr.inc @@ -0,0 +1,6 @@ +DESCRIPTION = "A C library for multiple-precision floating-point computations with exact rounding" +HOMEPAGE = "http://www.mpfr.org/" +LICENSE = "LGPL" +SECTION = "libs" + +inherit autotools diff --git a/meta/packages/mpfr/mpfr_2.1.1.bb b/meta/packages/mpfr/mpfr_2.1.1.bb deleted file mode 100644 index e0d1e9dbb3..0000000000 --- a/meta/packages/mpfr/mpfr_2.1.1.bb +++ /dev/null @@ -1,19 +0,0 @@ -DESCRIPTION = "A C library for multiple-precision floating-point computations with exact rounding" -LICENSE = "LGPL" -SECTION = "libs" -DEPENDS = "gmp" -PR = "r2" - -SRC_URI = "http://www.mpfr.org/mpfr-${PV}/mpfr-${PV}.tar.bz2" -S = "${WORKDIR}/mpfr-${PV}" - -inherit autotools - -do_stage() { - oe_runmake install prefix=${STAGING_DIR_HOST}${layout_prefix} \ - bindir=${STAGING_BINDIR} \ - includedir=${STAGING_INCDIR} \ - libdir=${STAGING_LIBDIR} \ - datadir=${STAGING_DATADIR} \ - infodir=${STAGING_DIR_HOST}${layout_infodir} -} diff --git a/meta/packages/mpfr/mpfr_2.3.1.bb b/meta/packages/mpfr/mpfr_2.3.1.bb new file mode 100644 index 0000000000..869c4227e2 --- /dev/null +++ b/meta/packages/mpfr/mpfr_2.3.1.bb @@ -0,0 +1,11 @@ +require mpfr.inc + +DEPENDS = "gmp" +PR = "r1" + +SRC_URI = "http://www.mpfr.org/mpfr-${PV}/mpfr-${PV}.tar.bz2" +S = "${WORKDIR}/mpfr-${PV}" + +do_stage() { + autotools_stage_all +} |