diff options
author | Samuli Suominen <drac@gentoo.org> | 2007-03-30 19:21:52 +0000 |
---|---|---|
committer | Samuli Suominen <drac@gentoo.org> | 2007-03-30 19:21:52 +0000 |
commit | 97d7e9fe2a26e5a3f7ce71919b1a008d3cb26dc4 (patch) | |
tree | 53c833cc5997b8a6b57c572df145ad7685ad9e49 /media-libs/libgii/libgii-1.0.2.ebuild | |
parent | Dropped ppc-macos keyword, see you in prefix (diff) | |
download | gentoo-2-97d7e9fe2a26e5a3f7ce71919b1a008d3cb26dc4.tar.gz gentoo-2-97d7e9fe2a26e5a3f7ce71919b1a008d3cb26dc4.tar.bz2 gentoo-2-97d7e9fe2a26e5a3f7ce71919b1a008d3cb26dc4.zip |
Version bump for bug 140362.
(Portage version: 2.1.2.3)
Diffstat (limited to 'media-libs/libgii/libgii-1.0.2.ebuild')
-rw-r--r-- | media-libs/libgii/libgii-1.0.2.ebuild | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/media-libs/libgii/libgii-1.0.2.ebuild b/media-libs/libgii/libgii-1.0.2.ebuild new file mode 100644 index 000000000000..91ad3e7cafc3 --- /dev/null +++ b/media-libs/libgii/libgii-1.0.2.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libgii/libgii-1.0.2.ebuild,v 1.1 2007/03/30 19:21:52 drac Exp $ + +inherit autotools eutils + +DESCRIPTION="Fast and safe graphics and drivers for about any graphics card to the Linux kernel (sometimes)" +HOMEPAGE="http://www.ggi-project.org" +SRC_URI="mirror://sourceforge/ggi/${P}.src.tar.bz2" + +LICENSE="LGPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" +IUSE="X" + +RDEPEND="X? ( x11-libs/libX11 ) + >=sys-kernel/linux-headers-2.6.11" +DEPEND="${RDEPEND}" + +src_unpack() { + unpack ${A} + cd "${S}" + epatch "${FILESDIR}"/${PN}-0.9.0-linux26-headers.patch + # Modify configure check that tries to compile the cpuid instruction + # to work on hardened compiler. Modified acinclude.m4. + epatch "${FILESDIR}"/${P}-configure-cpuid-pic.patch + # Since acinclude.m4 is modified, need to autoreconf. + eautoreconf +} + +src_compile() { + econf $(use_with X x) $(use_enable X x) + emake || die "emake failed." +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed." + dodoc ChangeLog* FAQ NEWS README +} |