summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog3
-rwxr-xr-xdisplay/read-edid/DEPENDS1
-rwxr-xr-xdisplay/read-edid/DETAILS24
-rw-r--r--display/read-edid/HISTORY3
4 files changed, 31 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index d116a3ba9d..d99ec47b02 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,6 @@
+2009-09-04 Finn Haedicke <finn_haedicke@gmx.net>
+ * display/read-edid: new spell; display metadata extractor
+
2009-09-04 Treeve Jelbert <treeve@sourcemage.org>
* crypto/libp11: new spell, PKCS#11 library
diff --git a/display/read-edid/DEPENDS b/display/read-edid/DEPENDS
new file mode 100755
index 0000000000..b436583d56
--- /dev/null
+++ b/display/read-edid/DEPENDS
@@ -0,0 +1 @@
+depends libx86
diff --git a/display/read-edid/DETAILS b/display/read-edid/DETAILS
new file mode 100755
index 0000000000..c181cc9332
--- /dev/null
+++ b/display/read-edid/DETAILS
@@ -0,0 +1,24 @@
+ SPELL=read-edid
+ VERSION=2.0.0
+ SOURCE="${SPELL}-${VERSION}.tar.gz"
+ SOURCE_URL[0]=http://www.polypux.org/projects/${SPELL}/${SOURCE}
+ SOURCE_HASH=sha512:3503a9cff0009c407ca3fded9209f08e7f24755b0499c136a41e59a3479141ceef9f94c30a8b6125db1fdca6a47f62a74fd27101ccadaa7c9af337de310cd29f
+SOURCE_DIRECTORY="${BUILD_DIRECTORY}/${SPELL}-${VERSION}"
+ WEB_SITE="http://www.polypux.org/projects/read-edid/"
+ LICENSE[0]=GPL
+ ENTERED=20090904
+ SHORT="monitor EDID extractor tool"
+cat << EOF
+read-edid is a pair of tools (originally by John Fremlin) for reading the EDID
+from a monitor. It should work with most monitors made since 1996 (except for
+newer ones with 256-byte EDID's - WiP), assuming the video card supports the
+standard read commands (most do).read-edid is a set of two tools - get-edid,
+which gets the raw edid information from the monitor, and parse-edid, which
+turns the raw binary information into an XF86Config-compatible monitor section.
+
+As of read-edid version 2.0.0, the lrmi code has been replaced by libx86 code
+- same syntax, but allows for use on many more architectures. For powerpc,
+there is a /proc interface, /proc/device-tree/pci/{video-card}/EDID, which
+you can pipe to parse-edid. Some architectures, AFAIK, may be stuck with
+only parse-edid.
+EOF
diff --git a/display/read-edid/HISTORY b/display/read-edid/HISTORY
new file mode 100644
index 0000000000..cf38ba2fe4
--- /dev/null
+++ b/display/read-edid/HISTORY
@@ -0,0 +1,3 @@
+2009-09-04 Finn Haedicke <finn_haedicke@gmx.net>
+ * DEPENDS, DETAILS: spell created
+