mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-06-09 14:44:11 +02:00
bump copyright of touched ebuilds to 2024 Signed-off-by: Lucio Sauer <watermanpaint@posteo.net> Signed-off-by: Michał Górny <mgorny@gentoo.org>
36 lines
872 B
Bash
36 lines
872 B
Bash
# Copyright 1999-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
DESCRIPTION="Adds support for some special graphical target features"
|
|
HOMEPAGE="https://ibiblio.org/ggicore/packages/libggimisc.html"
|
|
SRC_URI="https://downloads.sourceforge.net/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}"
|
|
|
|
DOCS=( ChangeLog README TODO doc/ggimisc.txt doc/libggimisc{,-functions,-libraries}.txt
|
|
doc/retrace.txt )
|
|
|
|
src_configure() {
|
|
econf --disable-x --without-x \
|
|
$(use_enable svga svgalib) \
|
|
$(use_enable fbcon fbdev) \
|
|
--disable-static
|
|
}
|
|
|
|
src_install() {
|
|
default
|
|
find "${D}" -name '*.la' -delete || die
|
|
}
|
|
|
|
pkg_postinst() {
|
|
elog "X extension for ${PN} has been temporarily disabled for this release."
|
|
}
|