You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/media-libs/libggimisc/libggimisc-2.2.2.ebuild

33 lines
767 B

# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
DESCRIPTION="Library for General Graphics Interface"
HOMEPAGE="http://www.ggi-project.org"
SRC_URI="mirror://sourceforge/ggi/${P}.src.tar.bz2"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 ~x86"
IUSE="fbcon svga"
RDEPEND=">=media-libs/libggi-2.2.2
svga? ( media-libs/svgalib )"
DEPEND="${RDEPEND}"
src_compile() {
econf --disable-x --without-x \
$(use_enable svga svgalib) \
$(use_enable fbcon fbdev)
emake || die "emake failed."
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed."
dodoc ChangeLog README TODO doc/*.txt
}
pkg_postinst() {
elog "X extension for ${PN} has been temporarily disabled for this release."
}