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.
Package-Manager: Portage-2.3.28, Repoman-2.3.9
- Loading branch information
Showing
2 changed files
with
52 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 goffice-0.10.38.tar.xz 2373308 BLAKE2B f270233adbbf300ad41516b1ed988db0772b95940196a6ac92c3090f6e52bc47933bb6bb4c023d7137cbca42adfab17fc41b82042c2e9c0340a6cd84942874e5 SHA512 1d72e30ee0b9f322cd4114d0a024a99e6d9ff7efcaeb9ca40b5fffe94180c232f03935743c15b1c6170f8bfc04fea5bdcc4d12760643c66cffafefbaa562fd62 | ||
DIST goffice-0.10.40.tar.xz 2381416 BLAKE2B 24d1905e41e1eb57be53f8f7598776457a17707412e79f2e314e9d1bdbea97a406b1ec27ee628f7d50e22305cd41d900a588520d2995f8be61021ae9b7de60d7 SHA512 1756ab825afe0d4a6249c351b2713b5397827bf289d1c2af5a6a6ccc21797ff01d8b69c72d83c9d8b941d5c73ad03bbf63bd98e475828787d8bbf8d18ffd0ede |
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-2018 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI="6" | ||
GNOME2_LA_PUNT="yes" | ||
|
||
inherit gnome2 | ||
|
||
DESCRIPTION="A library of document-centric objects and utilities" | ||
HOMEPAGE="https://git.gnome.org/browse/goffice/" | ||
|
||
LICENSE="GPL-2" | ||
SLOT="0.10" | ||
KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~x64-solaris" | ||
IUSE="+introspection" | ||
|
||
# FIXME: add lasem to tree | ||
RDEPEND=" | ||
>=app-text/libspectre-0.2.6:= | ||
>=dev-libs/glib-2.38.0:2 | ||
dev-libs/libxslt | ||
>=gnome-base/librsvg-2.22:2 | ||
>=gnome-extra/libgsf-1.14.24:=[introspection?] | ||
>=dev-libs/libxml2-2.4.12:2 | ||
>=x11-libs/pango-1.24:= | ||
>=x11-libs/cairo-1.10:=[svg] | ||
x11-libs/libXext:= | ||
x11-libs/libXrender:= | ||
>=x11-libs/gdk-pixbuf-2.22:2 | ||
>=x11-libs/gtk+-3.20:3 | ||
introspection? ( | ||
>=dev-libs/gobject-introspection-1:= | ||
>=gnome-extra/libgsf-1.14.23:= ) | ||
" | ||
DEPEND="${RDEPEND} | ||
dev-lang/perl | ||
virtual/perl-Getopt-Long | ||
virtual/perl-IO-Compress | ||
virtual/perl-Compress-Raw-Zlib | ||
>=dev-util/gtk-doc-am-1.12 | ||
>=dev-util/intltool-0.35 | ||
virtual/pkgconfig | ||
" | ||
|
||
src_configure() { | ||
gnome2_src_configure \ | ||
--without-lasem \ | ||
--with-gtk \ | ||
--with-config-backend=gsettings \ | ||
$(use_enable introspection) | ||
} |