45 lines
1.2 KiB
Bash
45 lines
1.2 KiB
Bash
# Copyright 1999-2014 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-r1.ebuild,v 1.7 2014/01/15 09:37:35 ago Exp $
|
|
|
|
EAPI=5
|
|
|
|
AUTOTOOLS_AUTORECONF=1
|
|
|
|
inherit autotools-multilib
|
|
|
|
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 ~amd64-fbsd ~x86-fbsd"
|
|
IUSE="X"
|
|
|
|
RDEPEND="X? (
|
|
x11-libs/libX11[${MULTILIB_USEDEP}]
|
|
x11-libs/libXxf86dga[${MULTILIB_USEDEP}]
|
|
)"
|
|
DEPEND="${RDEPEND}
|
|
kernel_linux? ( >=sys-kernel/linux-headers-2.6.11 )"
|
|
|
|
PATCHES=(
|
|
"${FILESDIR}"/${PN}-0.9.0-linux26-headers.patch
|
|
"${FILESDIR}"/${P}-configure-cpuid-pic.patch
|
|
"${FILESDIR}"/${P}-libtool_1.5_compat.patch
|
|
)
|
|
|
|
DOCS=( ChangeLog ChangeLog.1999 FAQ NEWS README )
|
|
|
|
MULTILIB_WRAPPED_HEADERS=( /usr/include/ggi/system.h )
|
|
|
|
src_prepare() {
|
|
rm -f acinclude.m4 m4/libtool.m4 m4/lt*.m4
|
|
AT_M4DIR=m4 autotools-multilib_src_prepare
|
|
}
|
|
|
|
src_configure() {
|
|
local myeconfargs=( $(use_with X x) $(use_enable X x) )
|
|
autotools-multilib_src_configure
|
|
}
|