summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas K. Hüttel <dilfridge@gentoo.org>2015-04-11 21:29:13 +0000
committerAndreas K. Hüttel <dilfridge@gentoo.org>2015-04-11 21:29:13 +0000
commitf30edba4965709adb2c795723702ac8244c0bb7f (patch)
tree9f7692be9a879645fc2daa63ff940ff7ac92298b /dev-cpp
parentRemove old (diff)
downloadgentoo-2-f30edba4965709adb2c795723702ac8244c0bb7f.tar.gz
gentoo-2-f30edba4965709adb2c795723702ac8244c0bb7f.tar.bz2
gentoo-2-f30edba4965709adb2c795723702ac8244c0bb7f.zip
Remove old
(Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 0B08240A96F66571)
Diffstat (limited to 'dev-cpp')
-rw-r--r--dev-cpp/libcmis/ChangeLog5
-rw-r--r--dev-cpp/libcmis/libcmis-0.4.1.ebuild70
2 files changed, 4 insertions, 71 deletions
diff --git a/dev-cpp/libcmis/ChangeLog b/dev-cpp/libcmis/ChangeLog
index 8bf334b3339c..7fd4c53cce37 100644
--- a/dev-cpp/libcmis/ChangeLog
+++ b/dev-cpp/libcmis/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for dev-cpp/libcmis
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-cpp/libcmis/ChangeLog,v 1.35 2015/04/09 07:22:05 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-cpp/libcmis/ChangeLog,v 1.36 2015/04/11 21:29:13 dilfridge Exp $
+
+ 11 Apr 2015; Andreas K. Huettel <dilfridge@gentoo.org> -libcmis-0.4.1.ebuild:
+ Remove old
09 Apr 2015; Agostino Sarubbo <ago@gentoo.org> libcmis-0.5.0.ebuild:
Stable for x86, wrt bug #545770
diff --git a/dev-cpp/libcmis/libcmis-0.4.1.ebuild b/dev-cpp/libcmis/libcmis-0.4.1.ebuild
deleted file mode 100644
index 00e4cf832700..000000000000
--- a/dev-cpp/libcmis/libcmis-0.4.1.ebuild
+++ /dev/null
@@ -1,70 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-cpp/libcmis/libcmis-0.4.1.ebuild,v 1.4 2014/12/28 21:28:58 dilfridge Exp $
-
-EAPI=5
-
-EGIT_REPO_URI="git://gitorious.org/libcmis/libcmis.git"
-[[ ${PV} == 9999 ]] && SCM_ECLASS="git-2"
-inherit eutils alternatives autotools ${SCM_ECLASS}
-unset SCM_ECLASS
-
-DESCRIPTION="C++ client library for the CMIS interface"
-HOMEPAGE="https://sourceforge.net/projects/libcmis/"
-[[ ${PV} == 9999 ]] || SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
-
-LICENSE="|| ( GPL-2 LGPL-2 MPL-1.1 )"
-SLOT="0.4"
-
-# Don't move KEYWORDS on the previous line or ekeyword won't work # 399061
-[[ ${PV} == 9999 ]] || \
-KEYWORDS="amd64 ~arm ~ppc x86 ~amd64-linux ~x86-linux"
-
-IUSE="static-libs man test"
-
-RDEPEND="
- !dev-cpp/libcmis:0
- !dev-cpp/libcmis:0.2
- !dev-cpp/libcmis:0.3
- !dev-cpp/libcmis:0.5
- dev-libs/boost:=
- dev-libs/libxml2
- net-misc/curl
-"
-DEPEND="${RDEPEND}
- virtual/pkgconfig
- man? (
- app-text/docbook2X
- dev-libs/libxslt
- )
- test? ( dev-util/cppunit )
-"
-
-src_prepare() {
- [[ ${PV} == 9999 ]] && eautoreconf
-}
-
-src_configure() {
- econf \
- --docdir="${EPREFIX}"/usr/share/doc/${PF} \
- --program-suffix=-${SLOT} \
- --disable-werror \
- $(use_with man) \
- $(use_enable static-libs static) \
- $(use_enable test tests) \
- --disable-long-tests \
- --enable-client
-}
-
-src_install() {
- default
- prune_libtool_files --all
-}
-
-pkg_postinst() {
- alternatives_auto_makesym /usr/bin/cmis-client "/usr/bin/cmis-client-[0-9].[0-9]"
-}
-
-pkg_postrm() {
- alternatives_auto_makesym /usr/bin/cmis-client "/usr/bin/cmis-client-[0-9].[0-9]"
-}