* [gentoo-commits] gentoo-x86 commit in media-libs/libjpeg-turbo: ChangeLog libjpeg-turbo-1.1.90_p20120210.ebuild
@ 2012-02-10 11:25 Samuli Suominen (ssuominen)
0 siblings, 0 replies; 2+ messages in thread
From: Samuli Suominen (ssuominen) @ 2012-02-10 11:25 UTC (permalink / raw
To: gentoo-commits
ssuominen 12/02/10 11:25:43
Modified: ChangeLog
Added: libjpeg-turbo-1.1.90_p20120210.ebuild
Log:
New snapshot.
(Portage version: 2.2.0_alpha84/cvs/Linux x86_64)
Revision Changes Path
1.27 media-libs/libjpeg-turbo/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libjpeg-turbo/ChangeLog?rev=1.27&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libjpeg-turbo/ChangeLog?rev=1.27&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libjpeg-turbo/ChangeLog?r1=1.26&r2=1.27
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/libjpeg-turbo/ChangeLog,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -r1.26 -r1.27
--- ChangeLog 9 Feb 2012 20:16:19 -0000 1.26
+++ ChangeLog 10 Feb 2012 11:25:43 -0000 1.27
@@ -1,6 +1,12 @@
# ChangeLog for media-libs/libjpeg-turbo
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libjpeg-turbo/ChangeLog,v 1.26 2012/02/09 20:16:19 mattst88 Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libjpeg-turbo/ChangeLog,v 1.27 2012/02/10 11:25:43 ssuominen Exp $
+
+*libjpeg-turbo-1.1.90_p20120210 (10 Feb 2012)
+
+ 10 Feb 2012; Samuli Suominen <ssuominen@gentoo.org>
+ +libjpeg-turbo-1.1.90_p20120210.ebuild:
+ New snapshot.
09 Feb 2012; Matt Turner <mattst88@gentoo.org>
libjpeg-turbo-1.1.90_p20120129.ebuild:
1.1 media-libs/libjpeg-turbo/libjpeg-turbo-1.1.90_p20120210.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libjpeg-turbo/libjpeg-turbo-1.1.90_p20120210.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libjpeg-turbo/libjpeg-turbo-1.1.90_p20120210.ebuild?rev=1.1&content-type=text/plain
Index: libjpeg-turbo-1.1.90_p20120210.ebuild
===================================================================
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/libjpeg-turbo/libjpeg-turbo-1.1.90_p20120210.ebuild,v 1.1 2012/02/10 11:25:43 ssuominen Exp $
# http://libjpeg-turbo.svn.sourceforge.net/viewvc/libjpeg-turbo/branches/1.2.x/?view=tar
EAPI=4
unset _inherits
JPEG_ABI=8
if [[ ${PV} == *_p20* ]]; then
SRC_URI="http://dev.gentoo.org/~ssuominen/${P}.tar.xz"
_inherits=autotools
else
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
fi
inherit ${_inherits} java-pkg-opt-2 libtool toolchain-funcs
DESCRIPTION="MMX, SSE, and SSE2 SIMD accelerated JPEG library"
HOMEPAGE="http://libjpeg-turbo.virtualgl.org/ http://sourceforge.net/projects/libjpeg-turbo/"
SRC_URI="${SRC_URI}
mirror://debian/pool/main/libj/libjpeg${JPEG_ABI}/libjpeg${JPEG_ABI}_${JPEG_ABI}c-2.debian.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
IUSE="java static-libs"
ASM_DEPEND="|| ( dev-lang/nasm dev-lang/yasm )"
COMMON_DEPEND="!media-libs/jpeg:0"
RDEPEND="${COMMON_DEPEND}
java? ( >=virtual/jre-1.5 )"
DEPEND="${COMMON_DEPEND}
amd64? ( ${ASM_DEPEND} )
x86? ( ${ASM_DEPEND} )
amd64-linux? ( ${ASM_DEPEND} )
x86-linux? ( ${ASM_DEPEND} )
java? ( >=virtual/jdk-1.5 )"
DOCS="*.txt change.log example.c README"
src_prepare() {
if [[ -x ./configure ]]; then
elibtoolize
else
eautoreconf
fi
java-pkg-opt-2_src_prepare
}
src_configure() {
if use java; then
export JAVACFLAGS="$(java-pkg_javac-args)"
export JNI_CFLAGS="$(java-pkg_get-jni-cflags)"
fi
econf \
$(use_enable static-libs static) \
--with-jpeg${JPEG_ABI} \
$(use_with java)
}
src_compile() {
local _java_makeopts
use java && _java_makeopts="-j1"
emake ${_java_makeopts}
ebegin "Building exifautotran and jpegexiforient extra tools"
pushd ../debian/extra >/dev/null
emake CC="$(tc-getCC)" CFLAGS="${LDFLAGS} ${CFLAGS}"
popd >/dev/null
eend $?
}
src_test() {
emake test
}
src_install() {
default
find "${ED}"usr -name '*.la' -exec rm -f {} +
insinto /usr/share/doc/${PF}/html
doins -r doc/html/*
if use java; then
insinto /usr/share/doc/${PF}/html/java
doins -r java/doc/*
newdoc java/README README.java
rm -rf "${ED}"usr/classes
java-pkg_dojar java/turbojpeg.jar
fi
ebegin "Installing exifautotran and jpegexiforient extra tools"
pushd ../debian/extra >/dev/null
newdoc ../changelog changelog.debian
emake \
DESTDIR="${D}" prefix="${EPREFIX}"/usr \
INSTALL="install -m755" INSTALLDIR="install -d -m755" \
install
popd >/dev/null
eend $?
}
^ permalink raw reply [flat|nested] 2+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-libs/libjpeg-turbo: ChangeLog libjpeg-turbo-1.1.90_p20120210.ebuild
@ 2012-02-11 19:11 Samuli Suominen (ssuominen)
0 siblings, 0 replies; 2+ messages in thread
From: Samuli Suominen (ssuominen) @ 2012-02-11 19:11 UTC (permalink / raw
To: gentoo-commits
ssuominen 12/02/11 19:11:15
Modified: ChangeLog
Removed: libjpeg-turbo-1.1.90_p20120210.ebuild
Log:
old
(Portage version: 2.2.0_alpha85/cvs/Linux x86_64)
Revision Changes Path
1.30 media-libs/libjpeg-turbo/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libjpeg-turbo/ChangeLog?rev=1.30&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libjpeg-turbo/ChangeLog?rev=1.30&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libjpeg-turbo/ChangeLog?r1=1.29&r2=1.30
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/libjpeg-turbo/ChangeLog,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -r1.29 -r1.30
--- ChangeLog 11 Feb 2012 19:09:25 -0000 1.29
+++ ChangeLog 11 Feb 2012 19:11:15 -0000 1.30
@@ -1,6 +1,10 @@
# ChangeLog for media-libs/libjpeg-turbo
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libjpeg-turbo/ChangeLog,v 1.29 2012/02/11 19:09:25 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libjpeg-turbo/ChangeLog,v 1.30 2012/02/11 19:11:15 ssuominen Exp $
+
+ 11 Feb 2012; Samuli Suominen <ssuominen@gentoo.org>
+ -libjpeg-turbo-1.1.90_p20120210.ebuild:
+ old
*libjpeg-turbo-1.2.0 (11 Feb 2012)
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2012-02-11 19:11 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-02-11 19:11 [gentoo-commits] gentoo-x86 commit in media-libs/libjpeg-turbo: ChangeLog libjpeg-turbo-1.1.90_p20120210.ebuild Samuli Suominen (ssuominen)
-- strict thread matches above, loose matches on Subject: below --
2012-02-10 11:25 Samuli Suominen (ssuominen)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox