summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarkos Chandras <hwoarang@gentoo.org>2010-06-05 09:56:10 +0000
committerMarkos Chandras <hwoarang@gentoo.org>2010-06-05 09:56:10 +0000
commit19a1ca77f985e41cbb326661d8bb191e1ca45438 (patch)
tree950342194d69f8c4c5a611713cc0d8628f800e51 /x11-misc/read-edid
parentx86 stable wrt bug #319505 (diff)
downloadgentoo-2-19a1ca77f985e41cbb326661d8bb191e1ca45438.tar.gz
gentoo-2-19a1ca77f985e41cbb326661d8bb191e1ca45438.tar.bz2
gentoo-2-19a1ca77f985e41cbb326661d8bb191e1ca45438.zip
Change binary installation path wrt bug #283322
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'x11-misc/read-edid')
-rw-r--r--x11-misc/read-edid/ChangeLog10
-rw-r--r--x11-misc/read-edid/read-edid-2.0.0-r1.ebuild27
2 files changed, 35 insertions, 2 deletions
diff --git a/x11-misc/read-edid/ChangeLog b/x11-misc/read-edid/ChangeLog
index 2b6567169b5b..af3f38be4627 100644
--- a/x11-misc/read-edid/ChangeLog
+++ b/x11-misc/read-edid/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for x11-misc/read-edid
-# Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/read-edid/ChangeLog,v 1.22 2009/03/21 21:50:13 nelchael Exp $
+# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/read-edid/ChangeLog,v 1.23 2010/06/05 09:56:10 hwoarang Exp $
+
+*read-edid-2.0.0-r1 (05 Jun 2010)
+
+ 05 Jun 2010; Markos Chandras <hwoarang@gentoo.org>
+ +read-edid-2.0.0-r1.ebuild:
+ Change binary installation path wrt bug #283322
21 Mar 2009; Krzysiek Pawlik <nelchael@gentoo.org>
-files/read-edid-arch.patch, -read-edid-1.4.1-r1.ebuild:
diff --git a/x11-misc/read-edid/read-edid-2.0.0-r1.ebuild b/x11-misc/read-edid/read-edid-2.0.0-r1.ebuild
new file mode 100644
index 000000000000..2d92934827f9
--- /dev/null
+++ b/x11-misc/read-edid/read-edid-2.0.0-r1.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-2010 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/read-edid/read-edid-2.0.0-r1.ebuild,v 1.1 2010/06/05 09:56:10 hwoarang Exp $
+
+DESCRIPTION="Program that can get information from a PnP monitor"
+HOMEPAGE="http://www.polypux.org/projects/read-edid/"
+SRC_URI="http://www.polypux.org/projects/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="-* ~amd64 ~x86"
+IUSE=""
+DEPEND=">=dev-libs/libx86-1.1"
+RDEPEND="$DEPEND"
+
+src_compile() {
+ econf --mandir=/usr/share/man || die "configure failed"
+ emake || die "make failed"
+}
+
+src_install() {
+ emake DESTDIR="${D}" install || die "emake install failed"
+ # as per bug #283322
+ dobin parse-edid || die "failed to install parse-edid binary"
+ rm "${D}"/usr/sbin/parse-edid
+ dodoc AUTHORS ChangeLog NEWS README
+}