Note: Due to technical difficulties, the Archives are currently not up to date.
GMANE provides an alternative service for most mailing lists. c.f. bug 424647
List Archive: gentoo-commits
radhermit 12/02/03 07:13:32
Modified: ChangeLog
Added: feh-2.3.ebuild
Log:
Version bump.
(Portage version: 2.2.0_alpha84/cvs/Linux x86_64)
Revision Changes Path
1.98 media-gfx/feh/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/feh/ChangeLog?rev=1.98&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/feh/ChangeLog?rev=1.98&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/feh/ChangeLog?r1=1.97&r2=1.98
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-gfx/feh/ChangeLog,v
retrieving revision 1.97
retrieving revision 1.98
diff -u -r1.97 -r1.98
--- ChangeLog 19 Jan 2012 08:03:00 -0000 1.97
+++ ChangeLog 3 Feb 2012 07:13:32 -0000 1.98
@@ -1,6 +1,11 @@
# ChangeLog for media-gfx/feh
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-gfx/feh/ChangeLog,v 1.97 2012/01/19 08:03:00 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-gfx/feh/ChangeLog,v 1.98 2012/02/03 07:13:32 radhermit Exp $
+
+*feh-2.3 (03 Feb 2012)
+
+ 03 Feb 2012; Tim Harder <radhermit@g.o> +feh-2.3.ebuild:
+ Version bump.
19 Jan 2012; Samuli Suominen <ssuominen@g.o>
-files/feh-1.11.2-libpng15.patch, -feh-1.12.ebuild, -feh-2.0.ebuild,
1.1 media-gfx/feh/feh-2.3.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/feh/feh-2.3.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/feh/feh-2.3.ebuild?rev=1.1&content-type=text/plain
Index: feh-2.3.ebuild
===================================================================
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/feh/feh-2.3.ebuild,v 1.1 2012/02/03 07:13:32 radhermit Exp $
EAPI=4
inherit eutils toolchain-funcs
DESCRIPTION="A fast, lightweight imageviewer using imlib2"
HOMEPAGE="http://feh.finalrewind.org/"
SRC_URI="http://feh.finalrewind.org/${P}.tar.bz2"
LICENSE="as-is"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~ppc ~ppc64 ~sparc ~x86"
IUSE="debug curl test xinerama"
COMMON_DEPEND=">=media-libs/giblib-1.2.4
media-libs/imlib2
>=media-libs/libpng-1.2:0
x11-libs/libX11
curl? ( net-misc/curl )
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() {
use_feh() { usex $1 1 0; }
fehopts=(
DESTDIR="${D}"
PREFIX=/usr
doc_dir='${main_dir}'/share/doc/${PF}
example_dir='${main_dir}'/share/doc/${PF}/examples
debug=$(use_feh debug)
curl=$(use_feh curl)
xinerama=$(use_feh xinerama)
)
}
src_compile() {
tc-export CC
emake "${fehopts[@]}"
}
src_install() {
emake "${fehopts[@]}" install
}
|
|