diff options
author | Tomas Chvatal <scarabeus@gentoo.org> | 2012-01-25 12:22:36 +0000 |
---|---|---|
committer | Tomas Chvatal <scarabeus@gentoo.org> | 2012-01-25 12:22:36 +0000 |
commit | 7a9e8d1c816b9bcc05e9973c4a106373dee63864 (patch) | |
tree | 0123963218f5b50223705c342ee48658c6caaaf5 | |
parent | Version bump to latest, drop older. (diff) | |
download | gentoo-2-7a9e8d1c816b9bcc05e9973c4a106373dee63864.tar.gz gentoo-2-7a9e8d1c816b9bcc05e9973c4a106373dee63864.tar.bz2 gentoo-2-7a9e8d1c816b9bcc05e9973c4a106373dee63864.zip |
Version bump to latest.
(Portage version: 2.2.0_alpha84/cvs/Linux x86_64)
-rw-r--r-- | media-libs/sampleicc/ChangeLog | 7 | ||||
-rw-r--r-- | media-libs/sampleicc/sampleicc-1.6.6.ebuild | 29 |
2 files changed, 35 insertions, 1 deletions
diff --git a/media-libs/sampleicc/ChangeLog b/media-libs/sampleicc/ChangeLog index e1c522482cee..e7fda84ae7a8 100644 --- a/media-libs/sampleicc/ChangeLog +++ b/media-libs/sampleicc/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-libs/sampleicc # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/sampleicc/ChangeLog,v 1.3 2012/01/16 11:57:03 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/sampleicc/ChangeLog,v 1.4 2012/01/25 12:22:36 scarabeus Exp $ + +*sampleicc-1.6.6 (25 Jan 2012) + + 25 Jan 2012; Tomáš Chvátal <scarabeus@gentoo.org> +sampleicc-1.6.6.ebuild: + Version bump to latest. 16 Jan 2012; Agostino Sarubbo <ago@gentoo.org> sampleicc-1.6.4.ebuild: Stable for amd64, wrt bug #398521 diff --git a/media-libs/sampleicc/sampleicc-1.6.6.ebuild b/media-libs/sampleicc/sampleicc-1.6.6.ebuild new file mode 100644 index 000000000000..e5dc95670295 --- /dev/null +++ b/media-libs/sampleicc/sampleicc-1.6.6.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-libs/sampleicc/sampleicc-1.6.6.ebuild,v 1.1 2012/01/25 12:22:36 scarabeus Exp $ + +EAPI=4 + +DESCRIPTION="C++ library for reading, writing, manipulating, and applying ICC profiles" +HOMEPAGE="http://sampleicc.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/SampleICC-${PV}.tar.gz" + +LICENSE="BSD-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux" +IUSE="static-libs" + +DEPEND="media-libs/tiff" +RDEPEND="${DEPEND}" + +S=${WORKDIR}/SampleICC-${PV} + +src_configure() { + econf \ + $(use_enable static-libs static) +} + +src_install() { + default + find "${ED}" -name '*.la' -exec rm -f {} + +} |