summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Harder <radhermit@gentoo.org>2012-08-04 19:57:23 +0000
committerTim Harder <radhermit@gentoo.org>2012-08-04 19:57:23 +0000
commit7fbc4e8d66d6b9d415126852befbb58530da6f54 (patch)
treeadf6a2529b276ffad986d4954e5f7891fd7f5ae4 /media-libs/libzen
parentRemove old. (diff)
downloadgentoo-2-7fbc4e8d66d6b9d415126852befbb58530da6f54.tar.gz
gentoo-2-7fbc4e8d66d6b9d415126852befbb58530da6f54.tar.bz2
gentoo-2-7fbc4e8d66d6b9d415126852befbb58530da6f54.zip
Remove old.
(Portage version: 2.2.0_alpha120/cvs/Linux x86_64)
Diffstat (limited to 'media-libs/libzen')
-rw-r--r--media-libs/libzen/ChangeLog6
-rw-r--r--media-libs/libzen/files/libzen-0.4.21-no-tinyxml.patch14
-rw-r--r--media-libs/libzen/libzen-0.4.26.ebuild61
3 files changed, 5 insertions, 76 deletions
diff --git a/media-libs/libzen/ChangeLog b/media-libs/libzen/ChangeLog
index 356c60a4f736..d88ba6607068 100644
--- a/media-libs/libzen/ChangeLog
+++ b/media-libs/libzen/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for media-libs/libzen
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libzen/ChangeLog,v 1.47 2012/08/04 10:50:52 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libzen/ChangeLog,v 1.48 2012/08/04 19:57:23 radhermit Exp $
+
+ 04 Aug 2012; Tim Harder <radhermit@gentoo.org>
+ -files/libzen-0.4.21-no-tinyxml.patch, -libzen-0.4.26.ebuild:
+ Remove old.
04 Aug 2012; Agostino Sarubbo <ago@gentoo.org> libzen-0.4.27.ebuild:
Stable for amd64, wrt bug #427592
diff --git a/media-libs/libzen/files/libzen-0.4.21-no-tinyxml.patch b/media-libs/libzen/files/libzen-0.4.21-no-tinyxml.patch
deleted file mode 100644
index c891c4b38bd1..000000000000
--- a/media-libs/libzen/files/libzen-0.4.21-no-tinyxml.patch
+++ /dev/null
@@ -1,14 +0,0 @@
---- ZenLib/Project/GNU/Library/Makefile.am.orig
-+++ ZenLib/Project/GNU/Library/Makefile.am
-@@ -24,10 +24,7 @@
- ../../../Source/ZenLib/Format/Http/Http_Cookies.cpp \
- ../../../Source/ZenLib/Format/Http/Http_Handler.cpp \
- ../../../Source/ZenLib/Format/Http/Http_Request.cpp \
-- ../../../Source/ZenLib/Format/Http/Http_Utils.cpp \
-- ../../../Source/ZenLib/TinyXml/tinyxml.cpp \
-- ../../../Source/ZenLib/TinyXml/tinyxmlerror.cpp \
-- ../../../Source/ZenLib/TinyXml/tinyxmlparser.cpp
-+ ../../../Source/ZenLib/Format/Http/Http_Utils.cpp
-
- libzen_la_LDFLAGS = -no-undefined -version-info 0:0:0
-
diff --git a/media-libs/libzen/libzen-0.4.26.ebuild b/media-libs/libzen/libzen-0.4.26.ebuild
deleted file mode 100644
index a7092731c755..000000000000
--- a/media-libs/libzen/libzen-0.4.26.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libzen/libzen-0.4.26.ebuild,v 1.4 2012/06/18 06:33:04 jdhore Exp $
-
-EAPI="4"
-
-inherit autotools multilib
-
-MY_PN="ZenLib"
-DESCRIPTION="Shared library for libmediainfo and mediainfo"
-HOMEPAGE="http://sourceforge.net/projects/zenlib"
-SRC_URI="mirror://sourceforge/zenlib/${MY_PN}%20-%20Sources/${PV}/${PN}_${PV}.tar.bz2"
-
-LICENSE="as-is ZLIB"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="doc static-libs"
-
-DEPEND="doc? ( app-doc/doxygen )"
-
-S="${WORKDIR}/${MY_PN}/Project/GNU/Library"
-
-src_prepare() {
- sed -i -e "s:-O2::" configure.ac
- eautoreconf
-}
-
-src_configure() {
- econf \
- --enable-unicode \
- --enable-shared \
- $(use_enable static-libs static)
-}
-
-src_compile() {
- default
-
- if use doc ; then
- cd "${WORKDIR}"/${MY_PN}/Source/Doc
- doxygen Doxyfile || die
- fi
-}
-
-src_install() {
- default
-
- insinto /usr/$(get_libdir)/pkgconfig
- doins ${PN}.pc
-
- for x in ./ Format/Html Format/Http HTTP_Client ; do
- insinto /usr/include/${MY_PN}/${x}
- doins "${WORKDIR}"/${MY_PN}/Source/${MY_PN}/${x}/*.h
- done
-
- dodoc "${WORKDIR}"/${MY_PN}/History.txt
- if use doc ; then
- dohtml "${WORKDIR}"/${MY_PN}/Doc/*
- fi
-
- find "${ED}" -name '*.la' -exec rm -f {} +
-}