diff options
author | Ryan Phillips <rphillips@gentoo.org> | 2002-06-18 21:11:40 +0000 |
---|---|---|
committer | Ryan Phillips <rphillips@gentoo.org> | 2002-06-18 21:11:40 +0000 |
commit | db4e136c61c0bd572ff65cf2b068e058b93321c7 (patch) | |
tree | d6bc5e591264ad7efa08e0954124cc2f15b984ef | |
parent | new package. fixes #3154 (diff) | |
download | gentoo-2-db4e136c61c0bd572ff65cf2b068e058b93321c7.tar.gz gentoo-2-db4e136c61c0bd572ff65cf2b068e058b93321c7.tar.bz2 gentoo-2-db4e136c61c0bd572ff65cf2b068e058b93321c7.zip |
New package. Fixes #3176
-rw-r--r-- | app-misc/read-edid/ChangeLog | 13 | ||||
-rw-r--r-- | app-misc/read-edid/files/digest-read-edid-1.4.1 | 1 | ||||
-rw-r--r-- | app-misc/read-edid/read-edid-1.4.1.ebuild | 24 |
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 +} |