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/libvisio: 0.1.6 version bump
Package-Manager: Portage-2.3.13, Repoman-2.3.4
- Loading branch information
Showing
3 changed files
with
53 additions
and
1 deletion.
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 libvisio-0.1.5.tar.xz 504196 SHA256 430a067903660bb1b97daf4b045e408a1bb75ca45e615cf05fb1a4da65fc5a8c SHA512 094ab546f650840d52fc34c1b105eff139d2f6e4d5cab7c9c99f8387ece0d0c6b02ec1376b3281d56a901bac016c2a024bb708c065b8b5d9404104e6494b5fab WHIRLPOOL ee2c67f357a3cc907b78e3cb8c6001ff1da2529d61f691dbad634f15639ff22a72bbec7deae08166ccaa4acfb730a826d96b9f1567e1c7c830ded1dc130388f3 | ||
DIST libvisio-0.1.6.tar.xz 676396 SHA256 fe1002d3671d53c09bc65e47ec948ec7b67e6fb112ed1cd10966e211a8bb50f9 SHA512 58cee8cfe4205b2cad2f11dbe17882e57ebf0d10500116ca9d8d120e138f8eb0c65a5fea3bd7d2746bf8140377ee9deb34258597e028f9fdc8d21f270606cce1 WHIRLPOOL 8c7a33408ea8eeb476897f5b37097b58e394769ce449b7f29c916273f76c159187a9939777af9a5ef32abe9b9861f0fa46c8da3d7e4ee1ccaf69e436acd18d27 |
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,51 @@ | ||
# Copyright 1999-2017 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=6 | ||
|
||
EGIT_REPO_URI="https://anongit.freedesktop.org/git/libreoffice/libvisio.git" | ||
[[ ${PV} == 9999 ]] && inherit autotools git-r3 | ||
|
||
DESCRIPTION="Library parsing the visio documents" | ||
HOMEPAGE="https://wiki.documentfoundation.org/DLP/Libraries/libvisio" | ||
[[ ${PV} == 9999 ]] || SRC_URI="https://dev-www.libreoffice.org/src/libvisio/${P}.tar.xz" | ||
|
||
LICENSE="|| ( GPL-2+ LGPL-2.1 MPL-1.1 )" | ||
SLOT="0" | ||
[[ ${PV} == 9999 ]] || \ | ||
KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86" | ||
IUSE="doc static-libs test tools" | ||
|
||
RDEPEND=" | ||
dev-libs/icu:= | ||
dev-libs/librevenge | ||
dev-libs/libxml2 | ||
" | ||
DEPEND="${RDEPEND} | ||
dev-lang/perl | ||
dev-libs/boost | ||
dev-util/gperf | ||
sys-devel/libtool | ||
virtual/pkgconfig | ||
doc? ( app-doc/doxygen ) | ||
test? ( dev-util/cppunit ) | ||
" | ||
|
||
src_prepare() { | ||
default | ||
[[ -d m4 ]] || mkdir "m4" | ||
[[ ${PV} == 9999 ]] && eautoreconf | ||
} | ||
|
||
src_configure() { | ||
econf \ | ||
$(use_with doc docs) \ | ||
$(use_enable static-libs static) \ | ||
$(use_enable test tests) \ | ||
$(use_enable tools) | ||
} | ||
|
||
src_install() { | ||
default | ||
find "${D}" -name '*.la' -delete || die | ||
} |
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