summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohannes Huber <johu@gentoo.org>2013-12-20 13:50:43 +0000
committerJohannes Huber <johu@gentoo.org>2013-12-20 13:50:43 +0000
commit2bcf7a221aaf4b4e2d45a51c995cab74d0a4a5ed (patch)
treebb46cf201c739aba9f3d310461b89df850ca25c0 /media-libs/gexiv2
parentclean up (diff)
downloadgentoo-2-2bcf7a221aaf4b4e2d45a51c995cab74d0a4a5ed.tar.gz
gentoo-2-2bcf7a221aaf4b4e2d45a51c995cab74d0a4a5ed.tar.bz2
gentoo-2-2bcf7a221aaf4b4e2d45a51c995cab74d0a4a5ed.zip
Remove old.
(Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key F3CFD2BD)
Diffstat (limited to 'media-libs/gexiv2')
-rw-r--r--media-libs/gexiv2/ChangeLog8
-rw-r--r--media-libs/gexiv2/files/gexiv2-0.2.1-new-exiv2.patch36
-rw-r--r--media-libs/gexiv2/gexiv2-0.1.0.ebuild33
-rw-r--r--media-libs/gexiv2/gexiv2-0.2.1.ebuild40
-rw-r--r--media-libs/gexiv2/gexiv2-0.3.1.ebuild36
-rw-r--r--media-libs/gexiv2/gexiv2-0.4.1.ebuild42
-rw-r--r--media-libs/gexiv2/gexiv2-0.6.0.ebuild52
7 files changed, 7 insertions, 240 deletions
diff --git a/media-libs/gexiv2/ChangeLog b/media-libs/gexiv2/ChangeLog
index 044056c06c44..9ad6ea2fdbdf 100644
--- a/media-libs/gexiv2/ChangeLog
+++ b/media-libs/gexiv2/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for media-libs/gexiv2
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/gexiv2/ChangeLog,v 1.26 2013/09/07 20:11:09 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/gexiv2/ChangeLog,v 1.27 2013/12/20 13:50:43 johu Exp $
+
+ 20 Dec 2013; Johannes Huber <johu@gentoo.org>
+ -files/gexiv2-0.2.1-new-exiv2.patch, -gexiv2-0.1.0.ebuild,
+ -gexiv2-0.2.1.ebuild, -gexiv2-0.3.1.ebuild, -gexiv2-0.4.1.ebuild,
+ -gexiv2-0.6.0.ebuild:
+ Remove old.
07 Sep 2013; Agostino Sarubbo <ago@gentoo.org> gexiv2-0.6.1.ebuild:
Stable for sparc, wrt bug #481934
diff --git a/media-libs/gexiv2/files/gexiv2-0.2.1-new-exiv2.patch b/media-libs/gexiv2/files/gexiv2-0.2.1-new-exiv2.patch
deleted file mode 100644
index e730ef110485..000000000000
--- a/media-libs/gexiv2/files/gexiv2-0.2.1-new-exiv2.patch
+++ /dev/null
@@ -1,36 +0,0 @@
-http://bugs.gentoo.org/349150
-
---- gexiv2/gexiv2-metadata-exif.cpp
-+++ gexiv2/gexiv2-metadata-exif.cpp
-@@ -235,10 +235,13 @@
- const gchar* gexiv2_metadata_get_exif_tag_label (const gchar* tag) {
- g_return_val_if_fail(tag != NULL, NULL);
-
-- Exiv2::ExifKey key(tag);
--
- try {
-+ Exiv2::ExifKey key(tag);
-+#if EXIV2_TEST_VERSION(0, 21, 0)
-+ return g_intern_string(key.tagLabel().c_str());
-+#else
- return Exiv2::ExifTags::tagLabel (key.tag (), key.ifdId ());
-+#endif
- } catch (Exiv2::Error& e) {
- LOG_ERROR(e);
- }
-@@ -249,10 +252,13 @@
- const gchar* gexiv2_metadata_get_exif_tag_description (const gchar* tag) {
- g_return_val_if_fail(tag != NULL, NULL);
-
-- Exiv2::ExifKey key(tag);
--
- try {
-+ Exiv2::ExifKey key(tag);
-+#if EXIV2_TEST_VERSION(0, 21, 0)
-+ return g_intern_string(key.tagDesc().c_str());
-+#else
- return Exiv2::ExifTags::tagDesc (key.tag (), key.ifdId ());
-+#endif
- } catch (Exiv2::Error& e) {
- LOG_ERROR(e);
- }
diff --git a/media-libs/gexiv2/gexiv2-0.1.0.ebuild b/media-libs/gexiv2/gexiv2-0.1.0.ebuild
deleted file mode 100644
index 628367129b1b..000000000000
--- a/media-libs/gexiv2/gexiv2-0.1.0.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/gexiv2/gexiv2-0.1.0.ebuild,v 1.3 2013/08/21 12:59:33 jlec Exp $
-
-EAPI="2"
-
-inherit versionator eutils gnome2
-
-MY_PV=$(get_version_component_range 1-2)
-
-DESCRIPTION="gexiv2 is a GObject-based wrapper around the Exiv2 library"
-HOMEPAGE="http://trac.yorba.org/wiki/gexiv2"
-SRC_URI="http://www.yorba.org/download/${PN}/${MY_PV}/lib${P}.tar.bz2"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND=">=media-gfx/exiv2-0.19
- <media-gfx/exiv2-0.21
- dev-libs/glib:2"
-DEPEND="${RDEPEND}"
-
-S="${WORKDIR}/lib${P}"
-
-src_prepare() {
- sed -e "s/libtool/libtool --tag=CC/" -i Makefile
-}
-
-src_install() {
- gnome2_src_install
-}
diff --git a/media-libs/gexiv2/gexiv2-0.2.1.ebuild b/media-libs/gexiv2/gexiv2-0.2.1.ebuild
deleted file mode 100644
index 46856068a1fa..000000000000
--- a/media-libs/gexiv2/gexiv2-0.2.1.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/gexiv2/gexiv2-0.2.1.ebuild,v 1.4 2013/08/21 12:59:33 jlec Exp $
-
-EAPI=2
-inherit versionator eutils multilib toolchain-funcs
-
-MY_PV=$(get_version_component_range 1-2)
-
-DESCRIPTION="gexiv2 is a GObject-based wrapper around the Exiv2 library"
-HOMEPAGE="http://trac.yorba.org/wiki/gexiv2"
-SRC_URI="http://www.yorba.org/download/${PN}/${MY_PV}/lib${P}.tar.bz2"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND=">=media-gfx/exiv2-0.19
- dev-libs/glib:2"
-DEPEND="${RDEPEND}
- virtual/pkgconfig"
-
-S=${WORKDIR}/lib${P}
-
-src_prepare() {
- epatch "${FILESDIR}"/${P}-new-exiv2.patch
-}
-
-src_configure() {
- tc-export CXX
- ./configure --prefix=/usr || die
-}
-
-src_install() {
- emake DESTDIR="${D}" LIB="$(get_libdir)" install || die
- dodoc AUTHORS NEWS README THANKS
-
- find "${D}" -name '*.la' -exec rm -f '{}' +
-}
diff --git a/media-libs/gexiv2/gexiv2-0.3.1.ebuild b/media-libs/gexiv2/gexiv2-0.3.1.ebuild
deleted file mode 100644
index b96dcb708df0..000000000000
--- a/media-libs/gexiv2/gexiv2-0.3.1.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/gexiv2/gexiv2-0.3.1.ebuild,v 1.3 2013/08/21 12:59:33 jlec Exp $
-
-EAPI=4
-inherit versionator multilib toolchain-funcs
-
-MY_PV=$(get_version_component_range 1-2)
-
-DESCRIPTION="gexiv2 is a GObject-based wrapper around the Exiv2 library"
-HOMEPAGE="http://trac.yorba.org/wiki/gexiv2"
-SRC_URI="http://www.yorba.org/download/${PN}/${MY_PV}/lib${P}.tar.bz2"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="static-libs"
-
-RDEPEND=">=media-gfx/exiv2-0.21
- dev-libs/glib:2"
-DEPEND="${RDEPEND}
- virtual/pkgconfig"
-
-S=${WORKDIR}/lib${P}
-
-src_configure() {
- tc-export CXX
- ./configure --prefix=/usr || die
-}
-
-src_install() {
- emake DESTDIR="${D}" LIB="$(get_libdir)" install
- dodoc AUTHORS NEWS README THANKS
-
- use static-libs || find "${D}" \( -name '*.a' -or -name '*.la' \) -delete
-}
diff --git a/media-libs/gexiv2/gexiv2-0.4.1.ebuild b/media-libs/gexiv2/gexiv2-0.4.1.ebuild
deleted file mode 100644
index e635d11cc5c0..000000000000
--- a/media-libs/gexiv2/gexiv2-0.4.1.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/gexiv2/gexiv2-0.4.1.ebuild,v 1.11 2013/08/21 12:59:33 jlec Exp $
-
-EAPI=4
-
-inherit versionator multilib toolchain-funcs
-
-MY_PV=$(get_version_component_range 1-2)
-
-DESCRIPTION="gexiv2 is a GObject-based wrapper around the Exiv2 library"
-HOMEPAGE="http://trac.yorba.org/wiki/gexiv2/"
-SRC_URI="http://www.yorba.org/download/${PN}/${MY_PV}/lib${P}.tar.bz2"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc x86"
-IUSE="static-libs"
-
-RDEPEND="
- dev-libs/glib:2
- >=media-gfx/exiv2-0.21"
-DEPEND="${RDEPEND}
- virtual/pkgconfig"
-
-S=${WORKDIR}/lib${P}
-
-src_prepare() {
- tc-export CXX
- sed -e 's:CFLAGS:CXXFLAGS:g' -i Makefile || die
-}
-
-src_configure() {
- ./configure --prefix=/usr || die
-}
-
-src_install() {
- emake DESTDIR="${D}" LIB="$(get_libdir)" install
- dodoc AUTHORS NEWS README THANKS
-
- use static-libs || find "${D}" \( -name '*.a' -or -name '*.la' \) -delete
-}
diff --git a/media-libs/gexiv2/gexiv2-0.6.0.ebuild b/media-libs/gexiv2/gexiv2-0.6.0.ebuild
deleted file mode 100644
index db8c53bc8500..000000000000
--- a/media-libs/gexiv2/gexiv2-0.6.0.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/gexiv2/gexiv2-0.6.0.ebuild,v 1.3 2013/08/21 12:59:33 jlec Exp $
-
-EAPI=5
-
-PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} )
-
-inherit eutils multilib python-r1 toolchain-funcs versionator
-
-MY_PV=$(get_version_component_range 1-2)
-
-DESCRIPTION="GObject-based wrapper around the Exiv2 library"
-HOMEPAGE="http://trac.yorba.org/wiki/gexiv2/"
-SRC_URI="http://www.yorba.org/download/${PN}/${MY_PV}/lib${PN}_${PV}.tar.xz"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
-IUSE="introspection static-libs"
-
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-RDEPEND="${PYTHON_DEPS}
- dev-libs/glib:2
- >=media-gfx/exiv2-0.21"
-DEPEND="${RDEPEND}
- virtual/pkgconfig"
-
-S=${WORKDIR}/lib${P}
-
-src_prepare() {
- tc-export CXX
- sed -e 's:CFLAGS:CXXFLAGS:g' -i Makefile || die
-}
-
-src_configure() {
- ./configure \
- --prefix=/usr \
- $(use_enable introspection) \
- || die
-}
-
-src_install() {
- emake DESTDIR="${D}" LIB="$(get_libdir)" install
- dodoc AUTHORS NEWS README THANKS
-
- python_moduleinto gi/overrides/
- python_foreach_impl python_domodule GExiv2.py
-
- use static-libs || find "${D}" \( -name '*.a' -or -name '*.la' \) -delete
-}