summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas K. Hüttel <dilfridge@gentoo.org>2013-10-27 11:34:17 +0000
committerAndreas K. Hüttel <dilfridge@gentoo.org>2013-10-27 11:34:17 +0000
commit38f12c744136bc0648e562791920e97f52641341 (patch)
treeda4729574d9f586a603d8611dee2ff86ad4384de /app-office
parentVersion bump (diff)
downloadgentoo-2-38f12c744136bc0648e562791920e97f52641341.tar.gz
gentoo-2-38f12c744136bc0648e562791920e97f52641341.tar.bz2
gentoo-2-38f12c744136bc0648e562791920e97f52641341.zip
Version bump
(Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key EBE6A336BE19039C!)
Diffstat (limited to 'app-office')
-rw-r--r--app-office/libreoffice-bin-debug/ChangeLog8
-rw-r--r--app-office/libreoffice-bin-debug/libreoffice-bin-debug-4.1.2.3.ebuild64
2 files changed, 71 insertions, 1 deletions
diff --git a/app-office/libreoffice-bin-debug/ChangeLog b/app-office/libreoffice-bin-debug/ChangeLog
index 3381e9503a95..867cbd87fe6a 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-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-office/libreoffice-bin-debug/ChangeLog,v 1.34 2013/07/28 22:54:31 dilfridge Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-office/libreoffice-bin-debug/ChangeLog,v 1.35 2013/10/27 11:34:17 dilfridge Exp $
+
+*libreoffice-bin-debug-4.1.2.3 (27 Oct 2013)
+
+ 27 Oct 2013; Andreas K. Huettel <dilfridge@gentoo.org>
+ +libreoffice-bin-debug-4.1.2.3.ebuild:
+ Version bump
28 Jul 2013; Andreas K. Huettel <dilfridge@gentoo.org>
-libreoffice-bin-debug-3.6.6.2.ebuild:
diff --git a/app-office/libreoffice-bin-debug/libreoffice-bin-debug-4.1.2.3.ebuild b/app-office/libreoffice-bin-debug/libreoffice-bin-debug-4.1.2.3.ebuild
new file mode 100644
index 000000000000..fa04c51653eb
--- /dev/null
+++ b/app-office/libreoffice-bin-debug/libreoffice-bin-debug-4.1.2.3.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-4.1.2.3.ebuild,v 1.1 2013/10/27 11:34:17 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
+}