diff options
author | 2012-12-02 16:29:49 +0000 | |
---|---|---|
committer | 2012-12-02 16:29:49 +0000 | |
commit | 19eaa4505972fbdf56a4f7f5b3c00007a5f8fce8 (patch) | |
tree | 8a1569a5f206e2fc8b03d917c7b3c708eeb4f18e /media-gfx/fbida | |
parent | Clean up old revisions. EAPI bump stable due to pending eclass changes and sl... (diff) | |
download | gentoo-2-19eaa4505972fbdf56a4f7f5b3c00007a5f8fce8.tar.gz gentoo-2-19eaa4505972fbdf56a4f7f5b3c00007a5f8fce8.tar.bz2 gentoo-2-19eaa4505972fbdf56a4f7f5b3c00007a5f8fce8.zip |
Version bump.
(Portage version: 2.2.0_alpha143/cvs/Linux x86_64, signed Manifest commit with key A792A613)
Diffstat (limited to 'media-gfx/fbida')
-rw-r--r-- | media-gfx/fbida/ChangeLog | 7 | ||||
-rw-r--r-- | media-gfx/fbida/fbida-2.09.ebuild | 101 |
2 files changed, 107 insertions, 1 deletions
diff --git a/media-gfx/fbida/ChangeLog b/media-gfx/fbida/ChangeLog index 9311f8efc334..7c8ced01b586 100644 --- a/media-gfx/fbida/ChangeLog +++ b/media-gfx/fbida/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-gfx/fbida # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/fbida/ChangeLog,v 1.91 2012/10/24 19:10:30 ulm Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-gfx/fbida/ChangeLog,v 1.92 2012/12/02 16:29:49 jer Exp $ + +*fbida-2.09 (02 Dec 2012) + + 02 Dec 2012; Jeroen Roovers <jer@gentoo.org> +fbida-2.09.ebuild: + Version bump. 24 Oct 2012; Ulrich Müller <ulm@gentoo.org> fbida-2.08.ebuild: Update dependency after package move from x11-libs/openmotif to diff --git a/media-gfx/fbida/fbida-2.09.ebuild b/media-gfx/fbida/fbida-2.09.ebuild new file mode 100644 index 000000000000..327404e7e5f8 --- /dev/null +++ b/media-gfx/fbida/fbida-2.09.ebuild @@ -0,0 +1,101 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/fbida/fbida-2.09.ebuild,v 1.1 2012/12/02 16:29:49 jer Exp $ + +EAPI=2 + +inherit eutils toolchain-funcs + +DESCRIPTION="Image viewers for the framebuffer console (fbi) and X11 (ida)." +HOMEPAGE="http://linux.bytesex.org/fbida/" +SRC_URI="http://dl.bytesex.org/releases/${PN}/${P}.tar.gz + mirror://gentoo/ida.png.bz2" #370901 +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~sh ~sparc ~x86" +IUSE="curl fbcon gif imagemagick lirc pdf png scanner tiff X" + +RDEPEND="png? ( media-libs/libpng ) + gif? ( media-libs/giflib ) + pdf? ( app-text/ghostscript-gpl media-libs/tiff ) + tiff? ( media-libs/tiff ) + curl? ( net-misc/curl ) + lirc? ( app-misc/lirc ) + imagemagick? ( || ( media-gfx/imagemagick + media-gfx/graphicsmagick[imagemagick] ) ) + scanner? ( media-gfx/sane-backends ) + X? ( x11-libs/libX11 + x11-libs/libXt + x11-libs/libXpm + >=x11-libs/motif-2.3:0 + ) + !media-gfx/fbi + virtual/jpeg + media-libs/libexif + >=media-libs/freetype-2.0 + >=media-libs/fontconfig-2.2 + virtual/ttf-fonts" + +DEPEND="${RDEPEND} + X? ( x11-proto/xextproto x11-proto/xproto )" + +src_prepare() { + sed -e 's/DGifOpenFileName,ungif/DGifOpenFileName,gif/' \ + -e 's/-lungif/-lgif/' -i "${S}/GNUmakefile" + + if [[ `gcc-major-version` -lt 4 ]]; then + sed -e 's/-Wno-pointer-sign//' -i "${S}/GNUmakefile" + fi + + epatch "${FILESDIR}"/ida-desktop.patch + epatch "${FILESDIR}"/fbida-2.08-posix-make.patch +} + +src_configure() { + # Let autoconf do its job and then fix things to build fbida + # according to our specifications + emake Make.config || die + + set_feat() { + local useflag=${1} + local config=${2} + + local option="yes" + if ! use ${useflag}; then + option="no" + fi + + sed -e "s/${config}.*/${config} := ${option}/" -i "${S}/Make.config" + } + + set_feat fbcon HAVE_LINUX_FB_H + set_feat X HAVE_MOTIF + set_feat tiff HAVE_LIBTIFF + + # The 'pdf' flag forces the use of libtiff. + set_feat pdf HAVE_LIBTIFF + set_feat png HAVE_LIBPNG + set_feat gif HAVE_LIBUNGIF + set_feat lirc HAVE_LIBLIRC + set_feat curl HAVE_LIBCURL + set_feat scanner HAVE_LIBSANE + set_feat imagemagick HAVE_LIBMAGICK +} + +src_install() { + make \ + DESTDIR="${D}" \ + STRIP="" \ + prefix=/usr \ + install || die + dodoc README + + if ! use pdf; then + rm -f "${D}"/usr/bin/fbgs "${D}"/usr/share/man/man1/fbgs.1 + fi + + if use X ; then + doicon "${WORKDIR}"/ida.png + domenu desktop/ida.desktop + fi +} |