forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
media-libs/libpagemaker: Version bump to 0.0.3
Package-Manager: portage-2.2.28
- Loading branch information
Showing
2 changed files
with
38 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
DIST libpagemaker-0.0.2.tar.xz 279396 SHA256 cdbdf86605773339caab6477ff694a95a90aaa4d45bb6cdb59e4a7f76c91ef17 SHA512 70dcac28c862b0d713a356cc27f1da4ab08e91886942e0c2d2265acf9ce1d596266aadd49d5e23f9da4a4d1b3e1a97272aadcc5721af4daa84e38bc499752ac7 WHIRLPOOL 5f6dcb92e8322414c57873a8bbbef4771531cd2135e269afff4478d38f9cf6522dded71ff81928cb3e3ec675aca6fc3b3cdad61c43ed0da5ee2bc1308bf38f38 | ||
DIST libpagemaker-0.0.3.tar.xz 292960 SHA256 d896dc55dafd84ee3441e0ca497b810809f9eea44805a495c3843412309036d6 SHA512 f9a5cb8b2cdfaf550002d5d078eb79537ed29614a2433f8d41101f1e35e9536cbb324c1d96328d21e2d2e0f21ff58d807813e51f8c660b199843fc8710ae29e0 WHIRLPOOL 83890bb7f2609056697abd23803eda841181853dc1e5db17a711823273b96f480bb6ae622729b64efbd5826a519e7ca59bdf4c63c03da349b45e59c3a0d89848 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
# Copyright 1999-2016 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
# $Id$ | ||
|
||
EAPI=5 | ||
|
||
AUTOTOOLS_AUTORECONF=true | ||
|
||
inherit autotools-utils | ||
|
||
DESCRIPTION="C++ Library that parses the file format of Aldus/Adobe PageMaker documents." | ||
HOMEPAGE="https://wiki.documentfoundation.org/DLP/Libraries/libpagemaker" | ||
SRC_URI="http://dev-www.libreoffice.org/src/${PN}/${P}.tar.xz" | ||
|
||
LICENSE="MPL-2.0" | ||
SLOT="0" | ||
KEYWORDS="~amd64 ~arm ~x86 ~amd64-linux ~x86-linux" | ||
IUSE="debug doc tools static-libs" | ||
|
||
RDEPEND=" | ||
dev-libs/librevenge | ||
" | ||
DEPEND="${RDEPEND} | ||
>=dev-libs/boost-1.47 | ||
virtual/pkgconfig | ||
doc? ( app-doc/doxygen ) | ||
" | ||
|
||
src_configure() { | ||
local myeconfargs=( | ||
--docdir="${EPREFIX}/usr/share/doc/${PF}" | ||
--disable-werror | ||
$(use_enable tools) | ||
$(use_with doc docs) | ||
) | ||
autotools-utils_src_configure | ||
} |