| Submitter | Olivier Schonken |
|---|---|
| Date | March 3, 2013, 9:43 p.m. |
| Message ID | <1362346984-20701-1-git-send-email-olivier.schonken@gmail.com> |
| Download | mbox | patch |
| Permalink | /patch/224571/ |
| State | Superseded |
| Headers | show |
Comments
Dear Olivier Schonken, On Sun, 3 Mar 2013 23:43:04 +0200, Olivier Schonken wrote: > Little CMS intends to be an OPEN SOURCE small-footprint color management engine, > with special focus on accuracy and performance. > > Signed-off-by: Olivier Schonken <olivier.schonken@gmail.com> Acked-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> (visual inspection only). I have only one very minor nit, that I think doesn't prevent the patch from being applied. > diff --git a/package/lcms2/Config.in b/package/lcms2/Config.in > new file mode 100644 > index 0000000..d648d24 > --- /dev/null > +++ b/package/lcms2/Config.in > @@ -0,0 +1,12 @@ > +config BR2_PACKAGE_LCMS2 > + bool "lcms2" > + help > + Little Color Management Software > + Little CMS intends to be an OPEN SOURCE small-footprint color > + management engine, with special focus on accuracy and performance. > + It uses the International Color Consortium standard (ICC), which is > + the modern standard when regarding to color management. > + > + http://www.littlecms.com/ > + > + One two many empty newline. Best regards, Thomas
Patch
diff --git a/package/Config.in b/package/Config.in index 646dd68..b88afd0 100644 --- a/package/Config.in +++ b/package/Config.in @@ -421,6 +421,7 @@ source "package/gtk2-engines/Config.in" source "package/gtk2-themes/Config.in" source "package/imlib2/Config.in" source "package/jpeg/Config.in" +source "package/lcms2/Config.in" source "package/libart/Config.in" source "package/libdmtx/Config.in" source "package/libdrm/Config.in" diff --git a/package/lcms2/Config.in b/package/lcms2/Config.in new file mode 100644 index 0000000..d648d24 --- /dev/null +++ b/package/lcms2/Config.in @@ -0,0 +1,12 @@ +config BR2_PACKAGE_LCMS2 + bool "lcms2" + help + Little Color Management Software + Little CMS intends to be an OPEN SOURCE small-footprint color + management engine, with special focus on accuracy and performance. + It uses the International Color Consortium standard (ICC), which is + the modern standard when regarding to color management. + + http://www.littlecms.com/ + + diff --git a/package/lcms2/lcms2.mk b/package/lcms2/lcms2.mk new file mode 100644 index 0000000..239fcac --- /dev/null +++ b/package/lcms2/lcms2.mk @@ -0,0 +1,13 @@ +############################################################# +# +# lcms2 +# +############################################################# + +LCMS2_VERSION = 2.4 +LCMS2_SITE = http://downloads.sourceforge.net/LCMS2/LCMS2/ + +LCMS2_DEPENDENCIES = host-lcms2 + +$(eval $(autotools-package)) +$(eval $(host-autotools-package))
Little CMS intends to be an OPEN SOURCE small-footprint color management engine, with special focus on accuracy and performance. Signed-off-by: Olivier Schonken <olivier.schonken@gmail.com> --- package/Config.in | 1 + package/lcms2/Config.in | 12 ++++++++++++ package/lcms2/lcms2.mk | 13 +++++++++++++ 3 files changed, 26 insertions(+) create mode 100644 package/lcms2/Config.in create mode 100644 package/lcms2/lcms2.mk