diff options
author | Andreas K. Hüttel <dilfridge@gentoo.org> | 2013-05-20 20:19:49 +0000 |
---|---|---|
committer | Andreas K. Hüttel <dilfridge@gentoo.org> | 2013-05-20 20:19:49 +0000 |
commit | 2a97088446d436a55a004ba0ae60490ceaaa1edc (patch) | |
tree | bbd861249e6f2b3c2c0007f1e4afbe123d39f58c /app-office/libreoffice-bin-debug | |
parent | Version bump (diff) | |
download | gentoo-2-2a97088446d436a55a004ba0ae60490ceaaa1edc.tar.gz gentoo-2-2a97088446d436a55a004ba0ae60490ceaaa1edc.tar.bz2 gentoo-2-2a97088446d436a55a004ba0ae60490ceaaa1edc.zip |
Version bump
(Portage version: 2.2.0_alpha175/cvs/Linux x86_64, signed Manifest commit with key EBE6A336BE19039C!)
Diffstat (limited to 'app-office/libreoffice-bin-debug')
-rw-r--r-- | app-office/libreoffice-bin-debug/ChangeLog | 10 | ||||
-rw-r--r-- | app-office/libreoffice-bin-debug/libreoffice-bin-debug-3.6.6.2.ebuild | 64 |
2 files changed, 72 insertions, 2 deletions
diff --git a/app-office/libreoffice-bin-debug/ChangeLog b/app-office/libreoffice-bin-debug/ChangeLog index 415cd8f7660a..7e5e3f1f1a9a 100644 --- a/app-office/libreoffice-bin-debug/ChangeLog +++ b/app-office/libreoffice-bin-debug/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for app-office/libreoffice-bin-debug -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-office/libreoffice-bin-debug/ChangeLog,v 1.26 2012/12/20 11:12:24 scarabeus Exp $ +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-office/libreoffice-bin-debug/ChangeLog,v 1.27 2013/05/20 20:19:49 dilfridge Exp $ + +*libreoffice-bin-debug-3.6.6.2 (20 May 2013) + + 20 May 2013; Andreas K. Huettel <dilfridge@gentoo.org> + +libreoffice-bin-debug-3.6.6.2.ebuild: + Version bump 20 Dec 2012; Tomáš Chvátal <scarabeus@gentoo.org> -libreoffice-bin-debug-3.5.5.3.ebuild, -libreoffice-bin-debug-3.6.3.2.ebuild: diff --git a/app-office/libreoffice-bin-debug/libreoffice-bin-debug-3.6.6.2.ebuild b/app-office/libreoffice-bin-debug/libreoffice-bin-debug-3.6.6.2.ebuild new file mode 100644 index 000000000000..4ee7d1bda0bd --- /dev/null +++ b/app-office/libreoffice-bin-debug/libreoffice-bin-debug-3.6.6.2.ebuild @@ -0,0 +1,64 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-office/libreoffice-bin-debug/libreoffice-bin-debug-3.6.6.2.ebuild,v 1.1 2013/05/20 20:19:49 dilfridge Exp $ + +EAPI=5 + +BASE_AMD64_URI="mirror://gentoo/amd64-debug-" +BASE_X86_URI="mirror://gentoo/x86-debug-" + +DESCRIPTION="LibreOffice, a full office productivity suite. Binary package, debug info." +HOMEPAGE="http://www.libreoffice.org" +SRC_URI_AMD64=" + kde? ( + !java? ( ${BASE_AMD64_URI}${PN/-bin-debug}-kde-${PVR}.tar.xz ) + java? ( ${BASE_AMD64_URI}${PN/-bin-debug}-kde-java-${PVR}.tar.xz ) + ) + gnome? ( + !java? ( ${BASE_AMD64_URI}${PN/-bin-debug}-gnome-${PVR}.tar.xz ) + java? ( ${BASE_AMD64_URI}${PN/-bin-debug}-gnome-java-${PVR}.tar.xz ) + ) + !kde? ( !gnome? ( + !java? ( ${BASE_AMD64_URI}${PN/-bin-debug}-base-${PVR}.tar.xz ) + java? ( ${BASE_AMD64_URI}${PN/-bin-debug}-base-java-${PVR}.tar.xz ) + ) ) +" +SRC_URI_X86=" + kde? ( + !java? ( ${BASE_X86_URI}${PN/-bin-debug}-kde-${PVR}.tar.xz ) + java? ( ${BASE_X86_URI}${PN/-bin-debug}-kde-java-${PVR}.tar.xz ) + ) + gnome? ( + !java? ( ${BASE_X86_URI}${PN/-bin-debug}-gnome-${PVR}.tar.xz ) + java? ( ${BASE_X86_URI}${PN/-bin-debug}-gnome-java-${PVR}.tar.xz ) + ) + !kde? ( !gnome? ( + !java? ( ${BASE_X86_URI}${PN/-bin-debug}-base-${PVR}.tar.xz ) + java? ( ${BASE_X86_URI}${PN/-bin-debug}-base-java-${PVR}.tar.xz ) + ) ) +" + +SRC_URI=" + amd64? ( ${SRC_URI_AMD64} ) + x86? ( ${SRC_URI_X86} ) +" + +IUSE="gnome java kde" +LICENSE="LGPL-3" +SLOT="0" +KEYWORDS="-* ~amd64 ~x86" + +RDEPEND="=app-office/${PN/-debug}-${PVR}[gnome=,java=,kde=]" + +RESTRICT="test strip" + +S="${WORKDIR}" + +src_configure() { :; } + +src_compile() { :; } + +src_install() { + dodir /usr + cp -aR "${S}"/usr/* "${ED}"/usr/ || die +} |