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-gfx/feh/feh-1.12.ebuild

62 lines
1.3 KiB

# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/feh/feh-1.12.ebuild,v 1.8 2011/04/11 16:25:13 xarthisius Exp $
EAPI=2
inherit eutils toolchain-funcs
DESCRIPTION="A fast, lightweight imageviewer using imlib2"
HOMEPAGE="https://derf.homelinux.org/~derf/projects/feh/"
SRC_URI="http://www.chaosdorf.de/~derf/feh/${P}.tar.bz2"
LICENSE="as-is"
SLOT="0"
KEYWORDS="alpha amd64 ppc ppc64 sparc x86"
IUSE="test xinerama"
COMMON_DEPEND=">=media-libs/giblib-1.2.4
media-libs/imlib2
>=media-libs/libpng-1.4
x11-libs/libX11
xinerama? ( x11-libs/libXinerama )"
RDEPEND="${COMMON_DEPEND}
virtual/jpeg"
DEPEND="${COMMON_DEPEND}
x11-libs/libXt
x11-proto/xproto
test? ( >=dev-lang/perl-5.10
dev-perl/Test-Command )"
pkg_setup() {
fehopts=(
DESTDIR="${D}"
PREFIX=/usr
doc_dir='${main_dir}'/share/doc/${PF}
)
}
src_prepare() {
if ! use xinerama; then
sed -i -e '/^xinerama/d' config.mk || die
sed -i -e 's/curl\ xinerama/curl/' test/feh.t || die
fi
}
src_compile() {
tc-export CC
emake "${fehopts[@]}" || die
}
src_install() {
emake "${fehopts[@]}" install || die
prepalldocs
}
pkg_postinst(){
elog
elog "Default configuration path was moved to:"
elog "/home/<user>/.config/feh/themes. Please "
elog "update your configuration"
elog
}