diff options
author | 2012-06-05 15:40:51 +0000 | |
---|---|---|
committer | 2012-06-05 15:40:51 +0000 | |
commit | 501ea58657fdea73e44bc72d65849507f1b55df1 (patch) | |
tree | 9515ea020c27b7bec7f56815385c50272c3f4ec0 /dev-cpp/libcmis | |
parent | Initial commit of libh2o, a lightweight library for properties of water and s... (diff) | |
download | gentoo-2-501ea58657fdea73e44bc72d65849507f1b55df1.tar.gz gentoo-2-501ea58657fdea73e44bc72d65849507f1b55df1.tar.bz2 gentoo-2-501ea58657fdea73e44bc72d65849507f1b55df1.zip |
Version bump for the 3.6.
(Portage version: 2.2.0_alpha110/cvs/Linux x86_64)
Diffstat (limited to 'dev-cpp/libcmis')
-rw-r--r-- | dev-cpp/libcmis/ChangeLog | 8 | ||||
-rw-r--r-- | dev-cpp/libcmis/files/libcmis-0.2.2-docbook.patch | 27 | ||||
-rw-r--r-- | dev-cpp/libcmis/libcmis-0.2.2.ebuild | 50 |
3 files changed, 84 insertions, 1 deletions
diff --git a/dev-cpp/libcmis/ChangeLog b/dev-cpp/libcmis/ChangeLog index 008479e5d30d..acb05da8727e 100644 --- a/dev-cpp/libcmis/ChangeLog +++ b/dev-cpp/libcmis/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-cpp/libcmis # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-cpp/libcmis/ChangeLog,v 1.8 2012/04/26 07:04:57 scarabeus Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-cpp/libcmis/ChangeLog,v 1.9 2012/06/05 15:40:51 scarabeus Exp $ + +*libcmis-0.2.2 (05 Jun 2012) + + 05 Jun 2012; Tomáš Chvátal <scarabeus@gentoo.org> + +files/libcmis-0.2.2-docbook.patch, +libcmis-0.2.2.ebuild: + Version bump for the 3.6. 26 Apr 2012; Tomáš Chvátal <scarabeus@gentoo.org> libcmis-0.1.0.ebuild: ppc stable wrt bug#411449. diff --git a/dev-cpp/libcmis/files/libcmis-0.2.2-docbook.patch b/dev-cpp/libcmis/files/libcmis-0.2.2-docbook.patch new file mode 100644 index 000000000000..2454ec56a06e --- /dev/null +++ b/dev-cpp/libcmis/files/libcmis-0.2.2-docbook.patch @@ -0,0 +1,27 @@ +diff --git a/Makefile.am b/Makefile.am +index 624adef..ed6adff 100644 +--- a/Makefile.am ++++ b/Makefile.am +@@ -1,4 +1,4 @@ +-SUBDIRS = src doc ++SUBDIRS = src + ACLOCAL_AMFLAGS = -I m4 + + pcfiles = libcmis-@LIBCMIS_API_VERSION@.pc +diff --git a/configure.ac b/configure.ac +index b0c94cc..9d6aedc 100644 +--- a/configure.ac ++++ b/configure.ac +@@ -44,12 +44,6 @@ AC_PROG_MAKE_SET + AC_PROG_LIBTOOL + AC_LIBTOOL_WIN32_DLL + +-# TODO Check for docbook-to-man +-AC_CHECK_PROG(DOCBOOK2X,[docbook-to-man],[docbook2X]) +-if test "x$DOCBOOK2X" = "x"; then +- AC_MSG_ERROR([docbook-to-man is missing. Install docbook2X package.]) +-fi +- + AC_ARG_ENABLE([werror], + [AS_HELP_STRING([--disable-werror], [Treat all warnings as errors, usefull for development])], + [enable_werror="$enableval"], diff --git a/dev-cpp/libcmis/libcmis-0.2.2.ebuild b/dev-cpp/libcmis/libcmis-0.2.2.ebuild new file mode 100644 index 000000000000..6a23b94f78cb --- /dev/null +++ b/dev-cpp/libcmis/libcmis-0.2.2.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-cpp/libcmis/libcmis-0.2.2.ebuild,v 1.1 2012/06/05 15:40:51 scarabeus Exp $ + +EAPI=4 + +EGIT_REPO_URI="git://gitorious.org/libcmis/libcmis.git" +[[ ${PV} == 9999 ]] && SCM_ECLASS="git-2" +inherit eutils 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" +[[ ${PV} == 9999 ]] || KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +IUSE="static-libs test" + +RDEPEND=" + dev-libs/boost + dev-libs/libxml2 + net-misc/curl +" +DEPEND="${RDEPEND} + test? ( dev-util/cppunit ) +" + +# It fetches the apache chemistry webapp and then try to run some magic on it +RESTRICT="test" + +src_prepare() { + # docbook2X everyitme for one manpage, nope nope + epatch "${FILESDIR}/${PN}-0.2.2-docbook.patch" + eautoreconf +} + +src_configure() { + econf \ + --disable-werror \ + $(use_enable static-libs static) \ + $(use_enable test tests) \ + --enable-client +} + +src_install() { + default + find "${ED}" -name '*.la' -exec rm -f {} + +} |