summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Phillips <rphillips@gentoo.org>2002-06-18 21:11:40 +0000
committerRyan Phillips <rphillips@gentoo.org>2002-06-18 21:11:40 +0000
commitdb4e136c61c0bd572ff65cf2b068e058b93321c7 (patch)
treed6bc5e591264ad7efa08e0954124cc2f15b984ef /app-misc/read-edid
parentnew package. fixes #3154 (diff)
downloadgentoo-2-db4e136c61c0bd572ff65cf2b068e058b93321c7.tar.gz
gentoo-2-db4e136c61c0bd572ff65cf2b068e058b93321c7.tar.bz2
gentoo-2-db4e136c61c0bd572ff65cf2b068e058b93321c7.zip
New package. Fixes #3176
Diffstat (limited to 'app-misc/read-edid')
-rw-r--r--app-misc/read-edid/ChangeLog13
-rw-r--r--app-misc/read-edid/files/digest-read-edid-1.4.11
-rw-r--r--app-misc/read-edid/read-edid-1.4.1.ebuild24
3 files changed, 38 insertions, 0 deletions
diff --git a/app-misc/read-edid/ChangeLog b/app-misc/read-edid/ChangeLog
new file mode 100644
index 000000000000..a81879f695f9
--- /dev/null
+++ b/app-misc/read-edid/ChangeLog
@@ -0,0 +1,13 @@
+# ChangeLog for app-misc/read-edid
+# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL
+# $Header: /var/cvsroot/gentoo-x86/app-misc/read-edid/ChangeLog,v 1.1 2002/06/18 21:11:40 rphillips Exp $
+
+*read-edid-1.4.1 (18 Jun 2002)
+
+ 18 Jun 2002; Ryan Phillips <rphillips@gentoo.org> ChangeLog :
+
+ Added initial ChangeLog which should be updated whenever the package is
+ updated in any way. This changelog is targetted to users. This means that the
+ comments should well explained and written in clean English. The details about
+ writing correct changelogs are explained in the skel.ChangeLog file which you
+ can find in the root directory of the portage repository.
diff --git a/app-misc/read-edid/files/digest-read-edid-1.4.1 b/app-misc/read-edid/files/digest-read-edid-1.4.1
new file mode 100644
index 000000000000..20c4d087b7a6
--- /dev/null
+++ b/app-misc/read-edid/files/digest-read-edid-1.4.1
@@ -0,0 +1 @@
+MD5 9faaa21c991bb48a5ba989a1413aa326 read-edid-1.4.1.tar.gz 63883
diff --git a/app-misc/read-edid/read-edid-1.4.1.ebuild b/app-misc/read-edid/read-edid-1.4.1.ebuild
new file mode 100644
index 000000000000..aba68d03f0b6
--- /dev/null
+++ b/app-misc/read-edid/read-edid-1.4.1.ebuild
@@ -0,0 +1,24 @@
+# Copyright 1999-2002 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/app-misc/read-edid/read-edid-1.4.1.ebuild,v 1.1 2002/06/18 21:11:40 rphillips Exp $
+
+DESCRIPTION="Read edid is a program that can get information from a pnp monitor."
+HOMEPAGE="http://john.fremlin.de/programs/linux/read-edid/index.html"
+LICENSE=""
+DEPEND=""
+#RDEPEND=""
+SRC_URI="http://john.fremlin.de/programs/linux/read-edid/${P}.tar.gz"
+S=${WORKDIR}/${P}
+
+src_compile() {
+ ./configure \
+ --host=${CHOST} \
+ --prefix=/usr \
+ --infodir=/usr/share/info \
+ --mandir=/usr/share/man || die "./configure failed"
+ emake || die
+}
+
+src_install () {
+ make DESTDIR=${D} install || die
+}