diff options
author | Tim Harder <radhermit@gentoo.org> | 2013-03-05 05:21:45 +0000 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2013-03-05 05:21:45 +0000 |
commit | 3181f3a9ac72d14827d9183bf149b76d016c73ab (patch) | |
tree | 63e9e6b6ba31fb31f086dcec09d4d6e6f3f603bd /dev-libs/protobuf | |
parent | Fix BITS value to make things work on 32bit architectures too (diff) | |
download | gentoo-2-3181f3a9ac72d14827d9183bf149b76d016c73ab.tar.gz gentoo-2-3181f3a9ac72d14827d9183bf149b76d016c73ab.tar.bz2 gentoo-2-3181f3a9ac72d14827d9183bf149b76d016c73ab.zip |
Version bump. Migrate to distutils-r1 and add subslot.
(Portage version: 2.2.0_alpha165/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
Diffstat (limited to 'dev-libs/protobuf')
-rw-r--r-- | dev-libs/protobuf/ChangeLog | 7 | ||||
-rw-r--r-- | dev-libs/protobuf/protobuf-2.5.0.ebuild | 114 |
2 files changed, 120 insertions, 1 deletions
diff --git a/dev-libs/protobuf/ChangeLog b/dev-libs/protobuf/ChangeLog index d0bda4a675dc..021e8ef528ae 100644 --- a/dev-libs/protobuf/ChangeLog +++ b/dev-libs/protobuf/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-libs/protobuf # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/protobuf/ChangeLog,v 1.41 2013/02/19 03:39:19 zmedico Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/protobuf/ChangeLog,v 1.42 2013/03/05 05:21:45 radhermit Exp $ + +*protobuf-2.5.0 (05 Mar 2013) + + 05 Mar 2013; Tim Harder <radhermit@gentoo.org> +protobuf-2.5.0.ebuild: + Version bump. Migrate to distutils-r1 and add subslot. 19 Feb 2013; Zac Medico <zmedico@gentoo.org> protobuf-2.4.1.ebuild: Add ~arm-linux keyword. diff --git a/dev-libs/protobuf/protobuf-2.5.0.ebuild b/dev-libs/protobuf/protobuf-2.5.0.ebuild new file mode 100644 index 000000000000..704d51ba6051 --- /dev/null +++ b/dev-libs/protobuf/protobuf-2.5.0.ebuild @@ -0,0 +1,114 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/protobuf/protobuf-2.5.0.ebuild,v 1.1 2013/03/05 05:21:45 radhermit Exp $ + +EAPI=5 +JAVA_PKG_IUSE="source" +PYTHON_COMPAT=( python{2_5,2_6,2_7} ) + +inherit autotools eutils distutils-r1 java-pkg-opt-2 elisp-common + +DESCRIPTION="Google's Protocol Buffers -- an efficient method of encoding structured data" +HOMEPAGE="http://code.google.com/p/protobuf/" +SRC_URI="http://protobuf.googlecode.com/files/${P}.tar.bz2" + +LICENSE="Apache-2.0" +SLOT="0/8" # subslot = soname major version +KEYWORDS="~amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~x86 ~amd64-linux ~arm-linux ~x64-macos ~x86-linux" +IUSE="emacs examples java python static-libs vim-syntax" + +DEPEND="java? ( >=virtual/jdk-1.5 ) + emacs? ( virtual/emacs )" +RDEPEND="java? ( >=virtual/jre-1.5 ) + emacs? ( virtual/emacs )" + +src_prepare() { + epatch "${FILESDIR}"/${PN}-2.3.0-asneeded-2.patch + eautoreconf + + if use python; then + cd python && distutils-r1_src_prepare + fi +} + +src_configure() { + econf \ + $(use_enable static-libs static) +} + +src_compile() { + default + + if use python; then + einfo "Compiling Python library ..." + pushd python >/dev/null + distutils-r1_src_compile + popd >/dev/null + fi + + if use java; then + einfo "Compiling Java library ..." + src/protoc --java_out=java/src/main/java --proto_path=src src/google/protobuf/descriptor.proto + mkdir java/build + pushd java/src/main/java >/dev/null + ejavac -d ../../../build $(find . -name '*.java') || die "java compilation failed" + popd >/dev/null + jar cf ${PN}.jar -C java/build . || die "jar failed" + fi + + if use emacs; then + elisp-compile "${S}"/editors/protobuf-mode.el + fi +} + +src_test() { + emake check + + if use python; then + pushd python >/dev/null + distutils-r1_src_test + popd >/dev/null + fi +} + +src_install() { + emake DESTDIR="${D}" install + dodoc CHANGES.txt CONTRIBUTORS.txt README.txt + prune_libtool_files + + if use python; then + pushd python >/dev/null + distutils-r1_src_install + popd >/dev/null + fi + + if use java; then + java-pkg_dojar ${PN}.jar + use source && java-pkg_dosrc java/src/main/java/* + fi + + if use vim-syntax; then + insinto /usr/share/vim/vimfiles/syntax + doins editors/proto.vim + insinto /usr/share/vim/vimfiles/ftdetect/ + doins "${FILESDIR}"/proto.vim + fi + + if use emacs; then + elisp-install ${PN} editors/protobuf-mode.el* + elisp-site-file-install "${FILESDIR}"/70${PN}-gentoo.el + fi + + if use examples; then + dodoc -r examples + docompress -x /usr/share/doc/${PF}/examples + fi +} + +pkg_postinst() { + use emacs && elisp-site-regen +} + +pkg_postrm() { + use emacs && elisp-site-regen +} |