diff options
author | Philip M. Gollucci <pgollucci@FreeBSD.org> | 2010-01-11 21:11:43 +0000 |
---|---|---|
committer | Philip M. Gollucci <pgollucci@FreeBSD.org> | 2010-01-11 21:11:43 +0000 |
commit | 4f01d882c1983e9fc4cc82701b418e2145e8445c (patch) | |
tree | 9cf8afbed958c4c5d4a070d40487e07f58c911af /graphics | |
parent | - mark BROKEN for ruby 1.9 (diff) |
* Update to 1.08
* Switch to scons
* Add a MASTER_SITE
* Submitter is now MAINTAINER
PR: ports/142414
Submitted by: Rob Farmer <rfarmer@predatorlabs.net>
Notes
Notes:
svn path=/head/; revision=247629
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/lcdtest/files/patch-SConstruct | 11 | ||||
-rw-r--r-- | graphics/lcdtest/files/patch-src-SConscript | 11 |
2 files changed, 22 insertions, 0 deletions
diff --git a/graphics/lcdtest/files/patch-SConstruct b/graphics/lcdtest/files/patch-SConstruct new file mode 100644 index 000000000000..78de12269d03 --- /dev/null +++ b/graphics/lcdtest/files/patch-SConstruct @@ -0,0 +1,11 @@ +--- SConstruct.orig 2007-06-05 16:38:23.000000000 -0700 ++++ SConstruct 2009-10-26 14:22:35.000000000 -0700 +@@ -50,7 +50,7 @@ + # Cache options + #----------------------------------------------------------------------------- + +-env = Environment (options = opts) ++env = Environment (**ARGUMENTS) + opts.Update (env) + opts.Save (conf_file, env) + diff --git a/graphics/lcdtest/files/patch-src-SConscript b/graphics/lcdtest/files/patch-src-SConscript new file mode 100644 index 000000000000..5be25705a62d --- /dev/null +++ b/graphics/lcdtest/files/patch-src-SConscript @@ -0,0 +1,11 @@ +--- src/SConscript.orig 2009-10-26 15:30:35.000000000 -0700 ++++ src/SConscript 2009-10-26 15:30:53.000000000 -0700 +@@ -40,7 +40,7 @@ + src_suffix = '.ppm') + + env.Append (BUILDERS = { 'PPM2C': PPM2C }, +- PPM2CCOM = "ppmtoxpm -name `basename $SOURCE .ppm`_xpm $SOURCE | sed 's/static //;s/black/#000000/;s/magenta/#FF00FF/;s/#E40808/#009900/' >$TARGET") ++ PPM2CCOM = "ppmtoxpm -name `basename $SOURCE .ppm`_xpm $SOURCE -hexonly | sed 's/static //;s/black/#000000/;s/magenta/#FF00FF/;s/#E40808/#009900/' >$TARGET") + + env.PNG2PNM (target = 'help_font.ppm', + source = help_font_png) |