diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2018-01-07 10:41:37 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2018-01-07 10:41:37 +0100 |
commit | 3a75708024b5e103eeffee41ef19ac9764b2182c (patch) | |
tree | 69bc0aa175db06b7fc2aa4857e6f61add11d9065 /app-text/libmspub | |
parent | app-text/libqxp: 0.0.1 version bump (diff) | |
download | gentoo-3a75708024b5e103eeffee41ef19ac9764b2182c.tar.gz gentoo-3a75708024b5e103eeffee41ef19ac9764b2182c.tar.bz2 gentoo-3a75708024b5e103eeffee41ef19ac9764b2182c.zip |
app-text/libmspub: 0.1.3 version bump
Package-Manager: Portage-2.3.19, Repoman-2.3.6
Diffstat (limited to 'app-text/libmspub')
-rw-r--r-- | app-text/libmspub/Manifest | 1 | ||||
-rw-r--r-- | app-text/libmspub/libmspub-0.1.3.ebuild | 50 | ||||
-rw-r--r-- | app-text/libmspub/libmspub-9999.ebuild | 4 |
3 files changed, 53 insertions, 2 deletions
diff --git a/app-text/libmspub/Manifest b/app-text/libmspub/Manifest index ccc0a1c9c57f..639d004b704b 100644 --- a/app-text/libmspub/Manifest +++ b/app-text/libmspub/Manifest @@ -1 +1,2 @@ DIST libmspub-0.1.2.tar.xz 345556 BLAKE2B a3b47fb188fc859abf54e3375514d31a1fafa21fb57fe0ac4a20013741a223a7011adf8ce7784b61346b49e9f4c0b6c353138dc12a5035f7bcc24576a508aa50 SHA512 c19025a2b887c33f5966b0972204ab2a8ae841b82df38eaf53c0cdc8f99d93cccab5e1c78143a79d5aef9c7a7387bd6f2cf34833a00861058e0e4687f48be714 +DIST libmspub-0.1.3.tar.xz 377716 BLAKE2B 6b6592f92523d009b1e6c8b1d24ae2efd36efd692cde53e221fcd701aca3246004d20aa8d584271ef6c75add4251e62c93c5a2896d1d3cc5e65f8389dc88ae65 SHA512 3d3680a732c84f7817cf079ae458f56e1eac14663014d48c29f54a6b4dfee887c2cc296a6d6e00d2e05329126414e6513cd7d1187c760ce952c72c27a7ccda46 diff --git a/app-text/libmspub/libmspub-0.1.3.ebuild b/app-text/libmspub/libmspub-0.1.3.ebuild new file mode 100644 index 000000000000..221a09a70251 --- /dev/null +++ b/app-text/libmspub/libmspub-0.1.3.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +EGIT_REPO_URI="https://anongit.freedesktop.org/git/libreoffice/libmspub.git" +[[ ${PV} == 9999 ]] && inherit autotools git-r3 + +DESCRIPTION="Library parsing Microsoft Publisher documents" +HOMEPAGE="https://wiki.documentfoundation.org/DLP/Libraries/libmspub" +[[ ${PV} == 9999 ]] || SRC_URI="https://dev-www.libreoffice.org/src/libmspub/${P}.tar.xz" + +LICENSE="LGPL-2.1" +SLOT="0" + +# Don't move KEYWORDS on the previous line or ekeyword won't work # 399061 +[[ ${PV} == 9999 ]] || \ +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86" + +IUSE="doc static-libs" + +RDEPEND=" + dev-libs/icu:= + dev-libs/librevenge + sys-libs/zlib +" +DEPEND="${RDEPEND} + dev-libs/boost + sys-devel/libtool + virtual/pkgconfig + doc? ( app-doc/doxygen ) +" + +src_prepare() { + default + [[ -d m4 ]] || mkdir "m4" + [[ ${PV} == 9999 ]] && eautoreconf +} + +src_configure() { + econf \ + --disable-werror \ + $(use_with doc docs) \ + $(use_enable static-libs static) +} + +src_install() { + default + find "${D}" -name '*.la' -delete || die +} diff --git a/app-text/libmspub/libmspub-9999.ebuild b/app-text/libmspub/libmspub-9999.ebuild index 83a7b70ff42b..221a09a70251 100644 --- a/app-text/libmspub/libmspub-9999.ebuild +++ b/app-text/libmspub/libmspub-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -15,7 +15,7 @@ SLOT="0" # Don't move KEYWORDS on the previous line or ekeyword won't work # 399061 [[ ${PV} == 9999 ]] || \ -KEYWORDS="~amd64 ~arm ~x86" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86" IUSE="doc static-libs" |