# Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/sys-apps/915resolution/915resolution-0.5.3.ebuild,v 1.1 2007/04/17 16:36:06 genstef Exp $ inherit eutils flag-o-matic DESCRIPTION="Utility to patch VBIOS of Intel 855 / 865 / 915 chipsets" HOMEPAGE="http://www.geocities.com/stomljen/" SRC_URI="http://www.geocities.com/stomljen/${P}.tar.gz" LICENSE="public-domain" SLOT="0" KEYWORDS="~x86-fbsd" IUSE="" DEPEND="" RDEPEND="" src_unpack() { unpack ${A} cd "${S}" epatch "${FILESDIR}/${P}-freebsd.patch" } src_compile() { filter-flags -O -O1 -O2 -O3 -Os emake clean emake CFLAGS="${CFLAGS}" || die "Compiliation failed." } src_install() { dosbin ${PN} newconfd "${FILESDIR}/confd" ${PN} newinitd "${FILESDIR}/initd-r1" ${PN} dodoc README.txt changes.log chipset_info.txt dump_bios } pkg_postinst() { elog elog "${PN} alters your video BIOS in a non-permanent way, this means" elog "that there is no risk of permanent damage to your video card, but" elog "it also means that it must be run at every boot. To set it up, " elog "edit /etc/conf.d/${PN} to add your configuration and type the" elog "following command to add it the your defautl runlevel:" elog elog " \"rc-update add ${PN} default\"" elog }