diff options
Diffstat (limited to 'gnome-extra')
38 files changed, 0 insertions, 1724 deletions
diff --git a/gnome-extra/evolution-data-server/Manifest b/gnome-extra/evolution-data-server/Manifest deleted file mode 100644 index 9d452fc1..00000000 --- a/gnome-extra/evolution-data-server/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST evolution-data-server-3.32.1.tar.xz 4580500 BLAKE2B b644c3b86359e22f631c9db3999cdc82247f4b74c2772c73ab1fe496d3d28306525a64f9bab336b407de6485c455100f1d09918de5479df2f8e7e9a7a2cc4bd5 SHA512 bbaf9f1eca40b02978df155a64bbc8da94d56e2e4f4602905784f7974a1622ce0798d1d6ee75a560a4082fb1f8d1b621a2c1dccb0056715345273a265abea96d diff --git a/gnome-extra/evolution-data-server/evolution-data-server-3.32.1.ebuild b/gnome-extra/evolution-data-server/evolution-data-server-3.32.1.ebuild deleted file mode 100644 index 3526183c..00000000 --- a/gnome-extra/evolution-data-server/evolution-data-server-3.32.1.ebuild +++ /dev/null @@ -1,152 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -PYTHON_COMPAT=( python2_7 python3_{5,6} pypy ) -VALA_USE_DEPEND="vapigen" - -inherit cmake-utils db-use flag-o-matic gnome2 python-any-r1 systemd vala virtualx - -DESCRIPTION="Evolution groupware backend" -HOMEPAGE="https://wiki.gnome.org/Apps/Evolution" - -# Note: explicitly "|| ( LGPL-2 LGPL-3 )", not "LGPL-2+". -LICENSE="|| ( LGPL-2 LGPL-3 ) BSD Sleepycat" -SLOT="0/62" # subslot = libcamel-1.2 soname version - -IUSE="berkdb +gnome-online-accounts +gtk gtk-doc +introspection ipv6 ldap kerberos oauth vala +weather" -REQUIRED_USE="vala? ( introspection )" - -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~x86-solaris" - -# gdata-0.17.7 soft required for new gdata_feed_get_next_page_token API to handle more than 100 google tasks -# berkdb needed only for migrating old addressbook data from <3.13 versions, bug #519512 -# >=libical-3.0.2 present at build-time ensures less memory usage by calendar backend -gdata_depend=">=dev-libs/libgdata-0.17.7:=" -RDEPEND=" - >=app-crypt/gcr-3.4 - >=app-crypt/libsecret-0.5[crypt] - >=dev-db/sqlite-3.7.17:= - >=dev-libs/glib-2.46:2 - >=dev-libs/libical-3.0.2:= - >=dev-libs/libxml2-2 - >=dev-libs/nspr-4.4:= - >=dev-libs/nss-3.9:= - >=net-libs/libsoup-2.42:2.4 - - dev-libs/icu:= - sys-libs/zlib:= - virtual/libiconv - - berkdb? ( >=sys-libs/db-4:= ) - gtk? ( - >=app-crypt/gcr-3.4[gtk] - >=x11-libs/gtk+-3.10:3 - >=media-libs/libcanberra-0.25[gtk3] - ) - oauth? ( - >=dev-libs/json-glib-1.0.4 - >=net-libs/webkit-gtk-2.11.91:4 - ${gdata_depend} - ) - gnome-online-accounts? ( - >=net-libs/gnome-online-accounts-3.8:= - ${gdata_depend} ) - introspection? ( >=dev-libs/gobject-introspection-0.9.12:= ) - kerberos? ( virtual/krb5:= ) - ldap? ( >=net-nds/openldap-2:= ) - weather? ( >=dev-libs/libgweather-3.10:2= ) -" -DEPEND="${RDEPEND} - ${PYTHON_DEPS} - dev-util/gdbus-codegen - dev-util/glib-utils - dev-util/gperf - gtk-doc? ( >=dev-util/gtk-doc-1.14 ) - >=dev-util/intltool-0.35.5 - >=sys-devel/gettext-0.18.3 - virtual/pkgconfig - vala? ( $(vala_depend) ) -" - -# Some tests fail due to missing locales. -# Also, dbus tests are flaky, bugs #397975 #501834 -# It looks like a nightmare to disable those for now. -RESTRICT="test !test? ( test )" - -pkg_setup() { - python-any-r1_pkg_setup -} - -# global scope PATCHES or DOCS array mustn't be used due to double default_src_prepare call -src_prepare() { - use vala && vala_src_prepare - cmake-utils_src_prepare - gnome2_src_prepare - - # Make CMakeLists versioned vala enabled - sed -e "s;\(find_program(VALAC\) valac);\1 ${VALAC});" \ - -e "s;\(find_program(VAPIGEN\) vapigen);\1 ${VAPIGEN});" \ - -i "${S}"/CMakeLists.txt || die -} - -src_configure() { - # /usr/include/db.h is always db-1 on FreeBSD - # so include the right dir in CPPFLAGS - use berkdb && append-cppflags "-I$(db_includedir)" - - local google_enable - if use oauth || use gnome-online-accounts; then - google_enable="ON" - else - google_enable="OFF" - fi - - # phonenumber does not exist in tree - local mycmakeargs=( - -DSYSCONF_INSTALL_DIR="${EPREFIX}"/etc - -DENABLE_GTK_DOC=$(usex gtk-doc) - -DWITH_PRIVATE_DOCS=$(usex gtk-doc) - -DENABLE_SCHEMAS_COMPILE=OFF - -DENABLE_INTROSPECTION=$(usex introspection) - -DWITH_KRB5=$(usex kerberos) - -DWITH_KRB5_INCLUDES=$(usex kerberos "${EPREFIX}"/usr "") - -DWITH_KRB5_LIBS=$(usex kerberos "${EPREFIX}"/usr/$(get_libdir) "") - -DWITH_OPENLDAP=$(usex ldap) - -DWITH_PHONENUMBER=OFF - -DENABLE_SMIME=ON - -DENABLE_GTK=$(usex gtk) - -DENABLE_CANBERRA=$(usex gtk) - -DENABLE_OAUTH2=$(usex oauth) - -DENABLE_EXAMPLES=OFF - -DENABLE_GOA=$(usex gnome-online-accounts) - -DENABLE_UOA=OFF - -DWITH_LIBDB=$(usex berkdb "${EPREFIX}"/usr OFF) - # ENABLE_BACKTRACES requires libdwarf ? - -DENABLE_IPV6=$(usex ipv6) - -DENABLE_WEATHER=$(usex weather) - -DENABLE_GOOGLE=${google_enable} - -DENABLE_LARGEFILE=ON - -DENABLE_VALA_BINDINGS=$(usex vala) - ) - - cmake-utils_src_configure -} - -src_compile() { - cmake-utils_src_compile -} - -src_test() { - virtx cmake-utils_src_test -} - -src_install() { - cmake-utils_src_install - - if use ldap; then - insinto /etc/openldap/schema - doins "${FILESDIR}"/calentry.schema - dosym ../../../usr/share/${PN}/evolutionperson.schema /etc/openldap/schema/evolutionperson.schema - fi -} diff --git a/gnome-extra/evolution-data-server/evolution-data-server-9999.ebuild b/gnome-extra/evolution-data-server/evolution-data-server-9999.ebuild deleted file mode 100644 index 93293d35..00000000 --- a/gnome-extra/evolution-data-server/evolution-data-server-9999.ebuild +++ /dev/null @@ -1,148 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -GNOME2_LA_PUNT="yes" -PYTHON_COMPAT=( python2_7 python3_{4,5,6} pypy ) -VALA_USE_DEPEND="vapigen" - -inherit cmake-utils db-use flag-o-matic gnome2 python-any-r1 systemd vala virtualx -if [[ ${PV} = 9999 ]]; then - inherit gnome2-live -fi - -DESCRIPTION="Evolution groupware backend" -HOMEPAGE="https://wiki.gnome.org/Apps/Evolution" - -# Note: explicitly "|| ( LGPL-2 LGPL-3 )", not "LGPL-2+". -LICENSE="|| ( LGPL-2 LGPL-3 ) BSD Sleepycat" -SLOT="0/60" # subslot = libcamel-1.2 soname version - -IUSE="berkdb +gnome-online-accounts +gtk gtk-doc google +introspection ipv6 ldap kerberos vala +weather" -REQUIRED_USE="vala? ( introspection )" - -if [[ ${PV} != 9999 ]]; then - KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~x86-solaris" -fi - -# sys-libs/db is only required for migrating from <3.13 versions -# gdata-0.17.7 soft required for new gdata_feed_get_next_page_token API to handle more than 100 google tasks -# berkdb needed only for migrating old calendar data, bug #519512 -gdata_depend=">=dev-libs/libgdata-0.17.7:=" -RDEPEND=" - >=app-crypt/gcr-3.4 - >=app-crypt/libsecret-0.5[crypt] - >=dev-db/sqlite-3.7.17:= - >=dev-libs/glib-2.46:2 - >=dev-libs/libical-2.0:= - >=dev-libs/libxml2-2 - >=dev-libs/nspr-4.4:= - >=dev-libs/nss-3.9:= - >=net-libs/libsoup-2.42:2.4 - - dev-libs/icu:= - sys-libs/zlib:= - virtual/libiconv - - berkdb? ( >=sys-libs/db-4:= ) - gtk? ( - >=app-crypt/gcr-3.4[gtk] - >=x11-libs/gtk+-3.10:3 - ) - google? ( - >=dev-libs/json-glib-1.0.4 - >=net-libs/webkit-gtk-2.11.91:4 - ${gdata_depend} - ) - gnome-online-accounts? ( - >=net-libs/gnome-online-accounts-3.8:= - ${gdata_depend} ) - introspection? ( >=dev-libs/gobject-introspection-0.9.12:= ) - kerberos? ( virtual/krb5:= ) - ldap? ( >=net-nds/openldap-2:= ) - weather? ( >=dev-libs/libgweather-3.10:2= ) -" -DEPEND="${RDEPEND} - ${PYTHON_DEPS} - dev-util/gdbus-codegen - dev-util/glib-utils - dev-util/gperf - gtk-doc? ( >=dev-util/gtk-doc-1.14 ) - >=dev-util/intltool-0.35.5 - >=sys-devel/gettext-0.18.3 - virtual/pkgconfig - vala? ( $(vala_depend) ) -" - -pkg_setup() { - python-any-r1_pkg_setup -} - -src_prepare() { - use vala && vala_src_prepare - gnome2_src_prepare - - # Make CMakeLists versioned vala enabled - sed -e "s;\(find_program(VALAC\) valac);\1 ${VALAC});" \ - -e "s;\(find_program(VAPIGEN\) vapigen);\1 ${VAPIGEN});" \ - -i "${S}"/CMakeLists.txt || die -} - -src_configure() { - # /usr/include/db.h is always db-1 on FreeBSD - # so include the right dir in CPPFLAGS - use berkdb && append-cppflags "-I$(db_includedir)" - - local google_auth_enable - if use google || use gnome-online-accounts; then - google_auth_enable="ON" - else - google_auth_enable="OFF" - fi - - # phonenumber does not exist in tree - local mycmakeargs=( - -DENABLE_GTK_DOC=$(usex gtk-doc) - -DWITH_PRIVATE_DOCS=$(usex gtk-doc) - -DENABLE_SCHEMAS_COMPILE=OFF - -DENABLE_INTROSPECTION=$(usex introspection) - -DWITH_KRB5=$(usex kerberos) - -DWITH_KRB5_INCLUDES=$(usex kerberos "${EPREFIX}"/usr "") - -DWITH_KRB5_LIBS=$(usex kerberos "${EPREFIX}"/usr/$(get_libdir) "") - -DWITH_OPENLDAP=$(usex ldap) - -DWITH_PHONENUMBER=OFF - -DENABLE_SMIME=ON - -DENABLE_GTK=$(usex gtk) - -DENABLE_GOOGLE_AUTH=${google_auth_enable} - -DENABLE_EXAMPLES=OFF - -DENABLE_GOA=$(usex gnome-online-accounts) - -DENABLE_UOA=OFF - -DWITH_LIBDB=$(usex berkdb "${EPREFIX}"/usr OFF) - # ENABLE_BACKTRACES requires libdwarf ? - -DENABLE_IPV6=$(usex ipv6) - -DENABLE_WEATHER=$(usex weather) - -DENABLE_GOOGLE=$(usex google) - -DENABLE_LARGEFILE=ON - -DENABLE_VALA_BINDINGS=$(usex vala) - ) - - cmake-utils_src_configure -} - -src_compile() { - cmake-utils_src_compile -} - -src_test() { - virtx cmake-utils_src_test -} - -src_install() { - cmake-utils_src_install - - if use ldap; then - insinto /etc/openldap/schema - doins "${FILESDIR}"/calentry.schema - dosym ../../../usr/share/${PN}/evolutionperson.schema /etc/openldap/schema/evolutionperson.schema - fi -} diff --git a/gnome-extra/evolution-data-server/files/calentry.schema b/gnome-extra/evolution-data-server/files/calentry.schema deleted file mode 100644 index bc79da27..00000000 --- a/gnome-extra/evolution-data-server/files/calentry.schema +++ /dev/null @@ -1,108 +0,0 @@ -# RFC2739 calEntry schema for OpenLDAP 2.x - -# -# From https://bugs.gentoo.org/show_bug.cgi?id=83988 -# Please notify us of updated revisions by submitting a bug report at bugs.gentoo.org -# - -# Version of RFC 2739 schema translated by Terrelle Shaw -# (xytek@xytek.org) # Nov. 7, 2002 # Modifications by Peter Marschall -# <peter.marschall@adpm.de> # Nov. 9, 2002 - -# Notes: -# * RFC2739 seems to be a bit sloppy about attribute type and -# objectclass definitions syntax and also about attribute syntax -# and matching rules. -# (It even counts the attributes in the calEntry objectclass wrong ;-) -# * The following changes have been applied to correct the schema -# - added description to each attributetype definition -# - changed SYNTAX from 'IA5String' to corresponding OID -# to make matching rules and syntax consistent -# - replaced illegal keyword SUBSTRING by SUBSTR -# - changed SUBSTR from caseIgnoreIA5Match to caseIgnoreIA5SubstringsMatch -# - removed illegal keyword MULTI-VALUE -# - added keyword SINGLE-VALUE where appropriate -# - removed USAGE since cwuserApplications is the default -# - added description to the objectclass defintion -# - corrected typo in objectclass definition -# - added the attributetypes defined but not used to the objectclass - - -# 2.4.4.1 calCalURI -attributetype ( 1.2.840.113556.1.4.478 - NAME 'calCalURI' - DESC 'URI to a snapshot of the users entire default calendar' - EQUALITY caseIgnoreIA5Match - SUBSTR caseIgnoreIA5SubstringsMatch - SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 - SINGLE-VALUE ) - -# 2.4.4.2 calFBURL -attributetype ( 1.2.840.113556.1.4.479 - NAME 'calFBURL' - DESC 'URI to the users default free/busy time data' - EQUALITY caseIgnoreIA5Match - SUBSTR caseIgnoreIA5SubstringsMatch - SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 - SINGLE-VALUE ) - -# 2.4.4.3 calCAPURI -attributetype ( 1.2.840.113556.1.4.480 - NAME 'calCAPURI' - DESC 'URI used to communicate with the users calendar' - EQUALITY caseIgnoreIA5Match - SUBSTR caseIgnoreIA5SubstringsMatch - SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 - SINGLE-VALUE ) - -# 2.4.4.4 calCalAdrURI -attributetype ( 1.2.840.113556.1.4.481 - NAME 'calCalAdrURI' - DESC 'URI to which event requests should be sent for the user' - EQUALITY caseIgnoreIA5Match - SUBSTR caseIgnoreIA5SubstringsMatch - SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 - SINGLE-VALUE ) - -# 2.4.4.5 calOtherCalURIs -attributetype ( 1.2.840.113556.1.4.482 - NAME 'calOtherCalURIs' - DESC 'URIs to snapshots of non-default calendars belonging to the user' - EQUALITY caseIgnoreIA5Match - SUBSTR caseIgnoreIA5SubstringsMatch - SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 ) - -# 2.4.4.6 calOtherFBURLs -attributetype ( 1.2.840.113556.1.4.483 - NAME 'calOtherFBURLs' - DESC 'URIs to non-default free/busy data belonging to the user' - EQUALITY caseIgnoreIA5Match - SUBSTR caseIgnoreIA5SubstringsMatch - SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 ) - -# 2.4.4.7 calOtherCAPURIs -attributetype ( 1.2.840.113556.1.4.484 - NAME 'calOtherCAPURIs' - DESC 'URIs to non-default calendars belonging to the user' - EQUALITY caseIgnoreIA5Match - SUBSTR caseIgnoreIA5SubstringsMatch - SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 ) - -# 2.4.4.8 calOtherCalAdrURIs -attributetype ( 1.2.840.113556.1.4.485 - NAME 'calOtherCalAdrURIs' - DESC 'URIs of destinations for event requests to non-default calendars' - EQUALITY caseIgnoreIA5Match - SUBSTR caseIgnoreIA5SubstringsMatch - SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 ) - -# 2.4.3.1 calEntry -objectclass ( 1.2.840.113556.1.5.87 - NAME 'calEntry' - DESC 'Calendering and free/busy information' - SUP top AUXILIARY - MAY ( calCalURI $ calFBURL $ calCAPURI $ calCalAdrURI $ - calOtherCAPURIs $ calOtherCalURIs $ calOtherFBURLs $ - calOtherCalAdrURIs ) ) - -# EOF diff --git a/gnome-extra/evolution-data-server/metadata.xml b/gnome-extra/evolution-data-server/metadata.xml deleted file mode 100644 index b33a2633..00000000 --- a/gnome-extra/evolution-data-server/metadata.xml +++ /dev/null @@ -1,18 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer type="project"> - <email>gnome@gentoo.org</email> - <name>Gentoo GNOME Desktop</name> - </maintainer> - <use> - <flag name="berkdb"><pkg>sys-libs/db</pkg> support needed to migrate old (pre-3.13 evolution versions) addressbook data</flag> - <flag name="gnome-online-accounts">Enable <pkg>net-libs/gnome-online-accounts</pkg> based Google authentication support</flag> - <flag name="google">Enable internal Google authentication support. If gnome-online-accounts is enabled and used, this is not necessary, - but both can be supported at the same time with different setup at runtime</flag> - <flag name="oauth">Enable internal OAuth2 authentication support for Google and Outlook.com. - If gnome-online-accounts is enabled and used, this is not necessary, - but both can be supported at the same time with different setup at runtime</flag> - <flag name="weather">Enable optional weather calendar support</flag> - </use> -</pkgmetadata> diff --git a/gnome-extra/evolution-ews/evolution-ews-9999.ebuild b/gnome-extra/evolution-ews/evolution-ews-9999.ebuild deleted file mode 100644 index ec1e7956..00000000 --- a/gnome-extra/evolution-ews/evolution-ews-9999.ebuild +++ /dev/null @@ -1,47 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI="5" -GCONF_DEBUG="no" - -inherit gnome2 -if [[ ${PV} = 9999 ]]; then - inherit gnome2-live -fi - -DESCRIPTION="Evolution module for connecting to Microsoft Exchange Web Services" -HOMEPAGE="https://wiki.gnome.org/Apps/Evolution" - -LICENSE="LGPL-2.1" -SLOT="0" -if [[ ${PV} = 9999 ]]; then - KEYWORDS="" -else - KEYWORDS="~amd64 ~x86" -fi -IUSE="test" - -RDEPEND=" - dev-db/sqlite:3= - >=dev-libs/glib-2.40:2 - dev-libs/libical:0= - >=dev-libs/libxml2-2 - >=gnome-extra/evolution-data-server-${PV}:0= - >=mail-client/evolution-${PV}:2.0 - >=net-libs/libsoup-2.42:2.4 - >=x11-libs/gtk+-3:3 -" -DEPEND="${RDEPEND} - >=dev-util/gtk-doc-am-1.9 - >=dev-util/intltool-0.35.5 - virtual/pkgconfig - test? ( net-libs/uhttpmock ) -" - -src_configure() { - # We don't have libmspack, needing internal lzx - gnome2_src_configure \ - --with-internal-lzx \ - $(use_enable test tests) -} diff --git a/gnome-extra/evolution-ews/metadata.xml b/gnome-extra/evolution-ews/metadata.xml deleted file mode 100644 index 39980802..00000000 --- a/gnome-extra/evolution-ews/metadata.xml +++ /dev/null @@ -1,8 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> -<maintainer type="project"> - <email>gnome@gentoo.org</email> - <name>Gentoo GNOME Desktop</name> -</maintainer> -</pkgmetadata> diff --git a/gnome-extra/evolution-exchange/evolution-exchange-9999.ebuild b/gnome-extra/evolution-exchange/evolution-exchange-9999.ebuild deleted file mode 100644 index ca169c59..00000000 --- a/gnome-extra/evolution-exchange/evolution-exchange-9999.ebuild +++ /dev/null @@ -1,58 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI="5" -GCONF_DEBUG="yes" -GNOME2_LA_PUNT="yes" - -inherit gnome2 -if [[ ${PV} = 9999 ]]; then - inherit gnome2-live -fi - -DESCRIPTION="Evolution module for connecting to Microsoft Exchange" -HOMEPAGE="http://projects.gnome.org/evolution/" -LICENSE="GPL-2" - -SLOT="2.0" -IUSE="debug static" -if [[ ${PV} = 9999 ]]; then - KEYWORDS="" - IUSE="${IUSE} doc" -else - KEYWORDS="~amd64 ~x86" -fi - -RDEPEND=" - >=mail-client/evolution-${PV}:2.0 - >=gnome-extra/evolution-data-server-${PV}[ldap,kerberos] - >=dev-libs/glib-2.28:2 - >=x11-libs/gtk+-3.0:3 - >=gnome-base/gconf-2:2 - >=dev-libs/libical-0.43 - dev-libs/libxml2:2 - net-libs/libsoup:2.4 - >=net-nds/openldap-2.1.30-r2 - virtual/krb5 -" -DEPEND="${RDEPEND} - >=dev-util/gtk-doc-am-1.9 - >=dev-util/intltool-0.40 - virtual/pkgconfig -" - -if [[ ${PV} = 9999 ]]; then - DEPEND="${DEPEND} - doc? ( >=dev-util/gtk-doc-1.9 )" -fi - -src_configure() { - DOCS="AUTHORS ChangeLog NEWS README" - gnome2_src_configure \ - --with-krb5="${EPREFIX}"/usr \ - --with-openldap \ - --disable-static \ - $(use_enable debug e2k-debug) \ - $(use_with static static-ldap) -} diff --git a/gnome-extra/evolution-exchange/metadata.xml b/gnome-extra/evolution-exchange/metadata.xml deleted file mode 100644 index 39980802..00000000 --- a/gnome-extra/evolution-exchange/metadata.xml +++ /dev/null @@ -1,8 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> -<maintainer type="project"> - <email>gnome@gentoo.org</email> - <name>Gentoo GNOME Desktop</name> -</maintainer> -</pkgmetadata> diff --git a/gnome-extra/evolution-kolab/evolution-kolab-9999.ebuild b/gnome-extra/evolution-kolab/evolution-kolab-9999.ebuild deleted file mode 100644 index a3a8ceec..00000000 --- a/gnome-extra/evolution-kolab/evolution-kolab-9999.ebuild +++ /dev/null @@ -1,72 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI="5" -GCONF_DEBUG="no" -GNOME2_LA_PUNT="yes" - -inherit autotools eutils gnome2 -if [[ ${PV} = 9999 ]]; then - inherit gnome2-live -fi - -DESCRIPTION="Evolution module for connecting to Kolab groupware servers" -HOMEPAGE="https://live.gnome.org/Evolution/Kolab" - -LICENSE="LGPL-2.1" -SLOT="0" -if [[ ${PV} = 9999 ]]; then - KEYWORDS="" -else - KEYWORDS="~amd64" -fi -IUSE="" # kerberos (does nothing useful for now) - -RDEPEND=">=mail-client/evolution-${PV}:2.0 - >=gnome-extra/evolution-data-server-${PV} - >=dev-db/sqlite-3.7:3 - >=dev-libs/glib-2.32:2 - >=dev-libs/libical-0.44 - dev-libs/libxml2 - dev-libs/nss - >=gnome-base/gconf-2:2 - >=net-misc/curl-7.19[ssl] - >=x11-libs/gtk+-3.2:3 -" -DEPEND="${RDEPEND} - dev-util/gperf - >=dev-util/gtk-doc-am-1.14 - >=dev-util/intltool-0.35.5 - sys-devel/gettext - virtual/pkgconfig -" -# doc? ( -# app-text/docbook-xml-dtd:4.3 -# >=dev-util/gtk-doc-1.14 ) -# eautoreconf needs gtk-doc-am - -RESTRICT="test" # test suite is non-functional - -src_prepare() { - G2CONF="${G2CONF} --without-krb5" # --with-krb5 does nothing useful - - # We do not want to install a "hello world" program. - epatch "${FILESDIR}/${PN}-3.4.3-no-hello-world.patch" - - # Disable test suite: parts fail, other parts require connection to a live - # kolab server, plus it installs test executables to /usr/bin - epatch "${FILESDIR}/${PN}-3.5.5-no-tests.patch" - - # Strip stupid cflags - sed -e 's/\(ADD_CFLAGS=.*\) -pedantic/\1/' \ - -i configure.ac configure || die - - [[ ${PV} = 9999 ]] || eautoreconf - gnome2_src_prepare -} - -src_install() { - gnome2_src_install - rm -rv "${ED}usr/doc" || die "rm failed" -} diff --git a/gnome-extra/evolution-kolab/files/evolution-kolab-3.4.3-no-hello-world.patch b/gnome-extra/evolution-kolab/files/evolution-kolab-3.4.3-no-hello-world.patch deleted file mode 100644 index 06ffeea5..00000000 --- a/gnome-extra/evolution-kolab/files/evolution-kolab-3.4.3-no-hello-world.patch +++ /dev/null @@ -1,27 +0,0 @@ -From 2a75e25ce2abbacd3c37f0a6ebd51e55d9f358d2 Mon Sep 17 00:00:00 2001 -From: Alexandre Rostovtsev <tetromino@gentoo.org> -Date: Mon, 13 Aug 2012 01:37:42 -0400 -Subject: [PATCH 1/2] Do not build 'Hello World' program - ---- - src/Makefile.am | 4 ---- - 1 files changed, 0 insertions(+), 4 deletions(-) - -diff --git a/src/Makefile.am b/src/Makefile.am -index 49b56fe..8188a11 100644 ---- a/src/Makefile.am -+++ b/src/Makefile.am -@@ -10,10 +10,6 @@ SUBDIRS = \ - eplugin \ - tests - --bin_PROGRAMS = evolution_kolab -- --evolution_kolab_SOURCES = \ -- main.c - - AM_CPPFLAGS = \ - -DPACKAGE_LOCALE_DIR=\"$(localedir)\" \ --- -1.7.8.6 - diff --git a/gnome-extra/evolution-kolab/files/evolution-kolab-3.5.5-no-tests.patch b/gnome-extra/evolution-kolab/files/evolution-kolab-3.5.5-no-tests.patch deleted file mode 100644 index bbefccd4..00000000 --- a/gnome-extra/evolution-kolab/files/evolution-kolab-3.5.5-no-tests.patch +++ /dev/null @@ -1,51 +0,0 @@ -From f0e43e8a098da3291d5870f55688faf7865ab775 Mon Sep 17 00:00:00 2001 -From: Alexandre Rostovtsev <tetromino@gentoo.org> -Date: Mon, 13 Aug 2012 01:40:01 -0400 -Subject: [PATCH] Disable test suite - ---- - configure.ac | 1 - - src/Makefile.am | 3 +-- - src/libekolabconv/Makefile.am | 2 +- - 3 files changed, 2 insertions(+), 4 deletions(-) - -diff --git a/configure.ac b/configure.ac -index 2f8f72b..bdb4a2e 100644 ---- a/configure.ac -+++ b/configure.ac -@@ -76,7 +76,6 @@ PKG_CHECK_MODULES(GTK, gtk+-3.0) - PKG_CHECK_MODULES(SOUP, libsoup-2.4 libsoup-gnome-2.4) - PKG_CHECK_MODULES(CURL, libcurl) - PKG_CHECK_MODULES(ICAL, libical) --PKG_CHECK_MODULES(GMIME, gmime-2.4,,[PKG_CHECK_MODULES(GMIME, gmime-2.6)]) dnl TODO make tests optional - PKG_CHECK_MODULES(EVOLUTION, evolution-mail-3.0 libebook-1.2 libecal-1.2) - - dnl *********** -diff --git a/src/Makefile.am b/src/Makefile.am -index 2bf873e..5c7e7c4 100644 ---- a/src/Makefile.am -+++ b/src/Makefile.am -@@ -9,8 +9,7 @@ SUBDIRS = \ - calendar \ - collection \ - configuration \ -- eplugin \ -- tests -+ eplugin - - - AM_CPPFLAGS = \ -diff --git a/src/libekolabconv/Makefile.am b/src/libekolabconv/Makefile.am -index 2de4832..dbb6411 100644 ---- a/src/libekolabconv/Makefile.am -+++ b/src/libekolabconv/Makefile.am -@@ -1,5 +1,5 @@ - ## Process this file with automake to produce Makefile.in - --SUBDIRS = main test -+SUBDIRS = main - - -include $(top_srcdir)/git.mk --- -1.7.8.6 - diff --git a/gnome-extra/evolution-kolab/metadata.xml b/gnome-extra/evolution-kolab/metadata.xml deleted file mode 100644 index 39980802..00000000 --- a/gnome-extra/evolution-kolab/metadata.xml +++ /dev/null @@ -1,8 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> -<maintainer type="project"> - <email>gnome@gentoo.org</email> - <name>Gentoo GNOME Desktop</name> -</maintainer> -</pkgmetadata> diff --git a/gnome-extra/gnome-boxes/gnome-boxes-9999.ebuild b/gnome-extra/gnome-boxes/gnome-boxes-9999.ebuild deleted file mode 100644 index 83c5a0c0..00000000 --- a/gnome-extra/gnome-boxes/gnome-boxes-9999.ebuild +++ /dev/null @@ -1,123 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -VALA_USE_DEPEND="vapigen" -VALA_MIN_API_VERSION="0.36" - -inherit gnome.org gnome2-utils linux-info meson readme.gentoo-r1 vala xdg -if [[ ${PV} = 9999 ]]; then - inherit git-r3 - SRC_URI="" - EGIT_REPO_URI="https://gitlab.gnome.org/GNOME/${GNOME_ORG_MODULE}" -fi - -DESCRIPTION="Simple GNOME 3 application to access remote or virtual systems" -HOMEPAGE="https://wiki.gnome.org/Apps/Boxes" - -LICENSE="LGPL-2+ CC-BY-2.0" -SLOT="0" -IUSE="rdp" -if [[ ${PV} != 9999 ]]; then - KEYWORDS="~amd64" # qemu-kvm[spice] is 64bit-only -fi - -# FIXME: ovirt is not available in tree; though it seems the gnome-boxes ovirt broker is too buggy atm anyways (would need rest[vala] as well) -# FIXME: qemu probably needs to depend on spice[smartcard] directly with USE=spice -# FIXME: Check over libvirt USE=libvirtd,qemu and the smartcard/usbredir requirements -# Technically vala itself still ships a libsoup vapi, but that may change, and it should be better to use the .vapi from the same libsoup version -# gtk-vnc raised due to missing vala bindings in earlier ebuilds -COMMON_DEPEND=" - >=app-arch/libarchive-3:= - >=dev-libs/glib-2.52:2 - >=dev-libs/gobject-introspection-1.54:= - >=x11-libs/gtk+-3.22.20:3[introspection] - >=net-libs/gtk-vnc-0.8.0-r1[gtk3(+),vala] - >=sys-libs/libosinfo-1.1.0[vala] - app-crypt/libsecret[vala] - >=net-libs/libsoup-2.44:2.4[vala] - virtual/libusb:1 - >=app-emulation/libvirt-glib-0.2.3[vala] - >=dev-libs/libxml2-2.7.8:2 - >=net-misc/spice-gtk-0.32[gtk3(+),smartcard,usbredir,vala] - app-misc/tracker:0/2.0 - net-libs/webkit-gtk:4 - >=virtual/libgudev-165:= - rdp? ( net-misc/freerdp:= ) -" -DEPEND="${COMMON_DEPEND} - $(vala_depend) - dev-libs/appstream-glib - dev-util/itstool - >=sys-devel/gettext-0.19.8 - virtual/pkgconfig -" -# These are called via exec(): -# sys-fs/mtools mcopy for unattended file copying for files that libarchive doesn't support -# virtual/cdrtools mkisofs is needed for unattended installer secondary disk image creation -# app-emulation/libguestfs virt-sysprep is used for VM cloing, if not there, it logs debug and doesn't function -# sys-apps/policycoreutils restorecon is used for checking selinux context -# app-emulation/libvirt virsh used for various checks (and we need the library anyways) -# sys-auth/polkit used for making all libvirt system disks readable via "pkexec chmod a+r" that aren't already readable to the user (libvirt system importer) -# app-emulation/qemu qemu-img used to convert image to QCOW2 format during copy -RDEPEND="${COMMON_DEPEND} - >=app-misc/tracker-miners-2[iso] - app-emulation/spice[smartcard] - >=app-emulation/libvirt-0.9.3[libvirtd,qemu] - >=app-emulation/qemu-1.3.1[spice,smartcard,usbredir] - sys-fs/mtools - virtual/cdrtools - sys-auth/polkit -" - -DISABLE_AUTOFORMATTING="yes" -DOC_CONTENTS="Before running gnome-boxes for local VMs, you will need to load the KVM modules. -If you have an Intel Processor, run: -# modprobe kvm-intel - -If you have an AMD Processor, run: -# modprobe kvm-amd" - -pkg_pretend() { - linux-info_get_any_version - - if linux_config_exists; then - if ! { linux_chkconfig_present KVM_AMD || \ - linux_chkconfig_present KVM_INTEL; }; then - ewarn "You need KVM support in your kernel to use GNOME Boxes local VM support!" - fi - fi -} - -src_prepare() { - xdg_src_prepare - vala_src_prepare -} - -src_configure() { - local emesonargs=( - -Ddistributor_name=Gentoo - -Dovirt=false - $(meson_use rdp) - -Dinstalled_tests=false - -Dflatpak=false - -Dprofile=default - ) - meson_src_configure -} - -src_install() { - meson_src_install - readme.gentoo_create_doc -} - -pkg_postinst() { - xdg_pkg_postinst - gnome2_schemas_update - readme.gentoo_print_elog -} - -pkg_postrm() { - xdg_pkg_postrm - gnome2_schemas_update -} diff --git a/gnome-extra/gnome-boxes/metadata.xml b/gnome-extra/gnome-boxes/metadata.xml deleted file mode 100644 index 996e7cac..00000000 --- a/gnome-extra/gnome-boxes/metadata.xml +++ /dev/null @@ -1,8 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer type="project"> - <email>gnome@gentoo.org</email> - <name>Gentoo GNOME Desktop</name> - </maintainer> -</pkgmetadata> diff --git a/gnome-extra/gnome-color-manager/files/9999-remove-unwanted-check.patch b/gnome-extra/gnome-color-manager/files/9999-remove-unwanted-check.patch deleted file mode 100644 index b3113474..00000000 --- a/gnome-extra/gnome-color-manager/files/9999-remove-unwanted-check.patch +++ /dev/null @@ -1,24 +0,0 @@ -From 534eed4f8664c9f263d666ed78144c37dc05bf90 Mon Sep 17 00:00:00 2001 -From: Gilles Dartiguelongue <eva@gentoo.org> -Date: Sun, 27 May 2018 19:27:51 +0200 -Subject: [PATCH] Fix unwanted exiv check in packagekit option handling - ---- - meson.build | 1 - - 1 file changed, 1 deletion(-) - -diff --git a/meson.build b/meson.build -index 9e179fb..08a0f79 100644 ---- a/meson.build -+++ b/meson.build -@@ -108,7 +108,6 @@ if get_option('exiv') - endif - - if get_option('packagekit') -- libexiv = dependency('exiv2') - conf.set('HAVE_PACKAGEKIT', '1') - endif - --- -2.17.0 - diff --git a/gnome-extra/gnome-color-manager/gnome-color-manager-9999.ebuild b/gnome-extra/gnome-color-manager/gnome-color-manager-9999.ebuild deleted file mode 100644 index 0c190077..00000000 --- a/gnome-extra/gnome-color-manager/gnome-color-manager-9999.ebuild +++ /dev/null @@ -1,84 +0,0 @@ -# Copyright 1999-2018 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -inherit git-r3 gnome.org gnome2-utils meson virtualx xdg - -DESCRIPTION="Color profile manager for the GNOME desktop" -HOMEPAGE="https://git.gnome.org/browse/gnome-color-manager" -SRC_URI="" -EGIT_MODULE="https://git.gnome.org/gnome-color-manager" - -LICENSE="GPL-2+" -SLOT="0" -KEYWORDS="" -IUSE="packagekit raw test" - -# Need gtk+-3.3.8 for https://bugzilla.gnome.org/show_bug.cgi?id=673331 -# vte could be made optional -RDEPEND=" - >=dev-libs/glib-2.31.10:2 - >=media-libs/lcms-2.2:2 - >=media-libs/libcanberra-0.10[gtk3] - media-libs/libexif - media-libs/tiff:0= - - >=x11-libs/gtk+-3.3.8:3 - >=x11-libs/vte-0.25.1:2.91 - >=x11-misc/colord-1.3.1:0= - >=x11-libs/colord-gtk-0.1.20 - - packagekit? ( app-admin/packagekit-base ) - raw? ( media-gfx/exiv2:0= ) -" -# docbook-sgml-{utils,dtd:4.1} needed to generate man pages -DEPEND="${RDEPEND} - app-text/docbook-sgml-dtd:4.1 - app-text/docbook-sgml-utils - dev-libs/appstream-glib - dev-util/itstool - >=sys-devel/gettext-0.19.8 - virtual/pkgconfig -" - -PATCHES=( - # https://bugzilla.gnome.org/show_bug.cgi?id=796428 - "${FILESDIR}"/9999-remove-unwanted-check.patch -) - -src_prepare() { - xdg_src_prepare - - # Fix hard-coded package name - # https://gitlab.gnome.org/GNOME/gnome-color-manager/issues/3 - sed 's:argyllcms:media-gfx/argyllcms:' src/gcm-utils.h || die -} - -src_configure() { - # Always enable tests since they are check_PROGRAMS anyway - local emesonargs=( - $(meson_use raw exiv) - $(meson_use packagekit) - $(meson_use test tests) - ) - meson_src_configure -} - -src_test() { - virtx meson_src_test -} - -pkg_postinst() { - xdg_pkg_postinst - gnome2_icon_cache_update - - if ! has_version media-gfx/argyllcms ; then - elog "If you want to do display or scanner calibration, you will need to" - elog "install media-gfx/argyllcms" - fi -} - -pkg_postrm() { - xdg_pkg_postrm - gnome2_icon_cache_update -} diff --git a/gnome-extra/gnome-color-manager/metadata.xml b/gnome-extra/gnome-color-manager/metadata.xml deleted file mode 100644 index 69685396..00000000 --- a/gnome-extra/gnome-color-manager/metadata.xml +++ /dev/null @@ -1,12 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer type="project"> - <email>gnome@gentoo.org</email> - <name>Gentoo GNOME Desktop</name> - </maintainer> - <use> - <flag name="packagekit">Enable support for the distro-neutral package - manager GUI <pkg>app-admin/packagekit</pkg></flag> - </use> -</pkgmetadata> diff --git a/gnome-extra/gnome-contacts/gnome-contacts-9999.ebuild b/gnome-extra/gnome-contacts/gnome-contacts-9999.ebuild deleted file mode 100644 index 871df7cb..00000000 --- a/gnome-extra/gnome-contacts/gnome-contacts-9999.ebuild +++ /dev/null @@ -1,76 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit gnome.org gnome2-utils meson vala xdg - -DESCRIPTION="GNOME contact management application" -HOMEPAGE="https://wiki.gnome.org/Design/Apps/Contacts" - -LICENSE="GPL-2+" -SLOT="0" -IUSE="telepathy v4l" -if [[ ${PV} = 9999 ]]; then - inherit git-r3 - SRC_URI="" - EGIT_REPO_URI="https://gitlab.gnome.org/GNOME/gnome-contacts.git" -else - KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86" -fi - -VALA_DEPEND=" - $(vala_depend) - >=dev-libs/gobject-introspection-1.54 - dev-libs/folks[vala(+)] - net-libs/gnome-online-accounts[vala] - gnome-extra/evolution-data-server[vala] - net-libs/telepathy-glib[vala] -" -# Configure is wrong; it needs cheese-3.5.91, not 3.3.91 -RDEPEND=" - >=gnome-extra/evolution-data-server-3.13.90:=[gnome-online-accounts] - >=dev-libs/folks-0.11.4:=[eds,telepathy?] - >=dev-libs/glib-2.44:2 - >=dev-libs/libgee-0.10:0.8 - >=gnome-base/gnome-desktop-3.0:3= - net-libs/gnome-online-accounts:= - >=x11-libs/gtk+-3.22:3 - v4l? ( >=media-video/cheese-3.5.91:= ) - telepathy? ( >=net-libs/telepathy-glib-0.22 ) -" -DEPEND="${RDEPEND} - ${VALA_DEPEND} - app-text/docbook-xml-dtd:4.2 - app-text/docbook-xsl-stylesheets - dev-libs/appstream-glib - dev-libs/libxml2:2 - dev-libs/libxslt - >=sys-devel/gettext-0.19.8 - virtual/pkgconfig -" - -src_prepare() { - xdg_src_prepare - vala_src_prepare -} - -src_configure() { - local emesonargs=( - $(meson_use v4l cheese) - $(meson_use telepathy) - -Dmanpage=true - -Ddocs=false - ) - meson_src_configure -} - -pkg_postinst() { - xdg_pkg_postinst - gnome2_schemas_update -} - -pkg_postrm() { - xdg_pkg_postrm - gnome2_schemas_update -} diff --git a/gnome-extra/gnome-contacts/metadata.xml b/gnome-extra/gnome-contacts/metadata.xml deleted file mode 100644 index 03d1d32c..00000000 --- a/gnome-extra/gnome-contacts/metadata.xml +++ /dev/null @@ -1,11 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> -<maintainer type="project"> - <email>gnome@gentoo.org</email> - <name>Gentoo GNOME Desktop</name> -</maintainer> -<use> - <flag name="telepathy">Start chat from contact details</flag> -</use> -</pkgmetadata> diff --git a/gnome-extra/gnome-documents/Manifest b/gnome-extra/gnome-documents/Manifest deleted file mode 100644 index 85e6c2ae..00000000 --- a/gnome-extra/gnome-documents/Manifest +++ /dev/null @@ -1,2 +0,0 @@ -DIST gnome-documents-3.28.2.tar.xz 4800076 BLAKE2B d40486e14d29592116e0c7ba2fe6e521175eae146b0b07e025094478d83c5d8ef2d0eb2a07cf19d32b22c7d7e8c258af784329a4f896a6f7a71de4adbacacfcf SHA512 6babcc8f34b5eec3cbe049a871c74d1080b6ca29c2e2197e656c4c59c302e7aba32171e707a0c625e772a08e61697e4c958ce3fc48d6404ea71ebbdb9793a6cc -DIST gnome-documents-3.30.0.tar.xz 4776064 BLAKE2B 378716bfd80d614ebe6166dc845a3cccf8f827cbfec0f3f1bd90e6521336bf1ea8a7a72000b589cf6359b22d623e9728a81c165b95cc4ab85691907f2aa09680 SHA512 6f1a67b7e7170f9e082340ae40b26ccfa4f5503326a7e5a46bfa391b8a092ffbd12d756dcfcf423d3d6d0308e43e08c133b38bd23b672a797e6e6171e394669e diff --git a/gnome-extra/gnome-documents/gnome-documents-3.28.2.ebuild b/gnome-extra/gnome-documents/gnome-documents-3.28.2.ebuild deleted file mode 100644 index c33e6f5b..00000000 --- a/gnome-extra/gnome-documents/gnome-documents-3.28.2.ebuild +++ /dev/null @@ -1,70 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -inherit gnome.org gnome2-utils meson xdg - -DESCRIPTION="A document manager application for GNOME" -HOMEPAGE="https://wiki.gnome.org/Apps/Documents" - -LICENSE="GPL-2+" -SLOT="0" -IUSE="" -KEYWORDS="~amd64 ~x86" - -# cairo-1.14 for cairo_surface_set_device_scale check and usage -COMMON_DEPEND=" - >=dev-libs/gjs-1.48 - >=app-text/evince-3.13.3[introspection] - >=dev-libs/glib-2.39.3:2 - gnome-base/gnome-desktop:3=[introspection] - >=dev-libs/gobject-introspection-1.31.6:= - >=x11-libs/gtk+-3.22.15:3[introspection] - >=net-libs/libsoup-2.41.3:2.4 - >=app-misc/tracker-2:= - >=net-libs/webkit-gtk-2.6:4[introspection] - - >=dev-libs/libgdata-0.13.3:=[crypt,gnome-online-accounts,introspection] - >=app-text/libgepub-0.6[introspection] - >=net-libs/gnome-online-accounts-3.2.0[introspection] - >=net-libs/libzapojit-0.0.2[introspection] - - >=x11-libs/cairo-1.14 -" -RDEPEND="${COMMON_DEPEND} - >=app-misc/tracker-miners-2 - net-misc/gnome-online-miners - sys-apps/dbus - x11-themes/adwaita-icon-theme -" -DEPEND="${COMMON_DEPEND} - dev-libs/appstream-glib - app-text/docbook-xml-dtd:4.2 - app-text/docbook-xsl-stylesheets - dev-libs/libxml2:2 - x11-libs/gdk-pixbuf:2 - dev-libs/libxslt - >=sys-devel/gettext-0.19.8 - dev-util/itstool - virtual/pkgconfig -" - -src_configure() { - local emesonargs=( - -Ddocumentation=true - -Dgetting_started=false - ) - meson_src_configure -} - -pkg_postinst() { - xdg_pkg_postinst - gnome2_schemas_update - gnome2_icon_cache_update -} - -pkg_postrm() { - xdg_pkg_postrm - gnome2_schemas_update - gnome2_icon_cache_update -} diff --git a/gnome-extra/gnome-documents/gnome-documents-3.30.0.ebuild b/gnome-extra/gnome-documents/gnome-documents-3.30.0.ebuild deleted file mode 100644 index c33e6f5b..00000000 --- a/gnome-extra/gnome-documents/gnome-documents-3.30.0.ebuild +++ /dev/null @@ -1,70 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -inherit gnome.org gnome2-utils meson xdg - -DESCRIPTION="A document manager application for GNOME" -HOMEPAGE="https://wiki.gnome.org/Apps/Documents" - -LICENSE="GPL-2+" -SLOT="0" -IUSE="" -KEYWORDS="~amd64 ~x86" - -# cairo-1.14 for cairo_surface_set_device_scale check and usage -COMMON_DEPEND=" - >=dev-libs/gjs-1.48 - >=app-text/evince-3.13.3[introspection] - >=dev-libs/glib-2.39.3:2 - gnome-base/gnome-desktop:3=[introspection] - >=dev-libs/gobject-introspection-1.31.6:= - >=x11-libs/gtk+-3.22.15:3[introspection] - >=net-libs/libsoup-2.41.3:2.4 - >=app-misc/tracker-2:= - >=net-libs/webkit-gtk-2.6:4[introspection] - - >=dev-libs/libgdata-0.13.3:=[crypt,gnome-online-accounts,introspection] - >=app-text/libgepub-0.6[introspection] - >=net-libs/gnome-online-accounts-3.2.0[introspection] - >=net-libs/libzapojit-0.0.2[introspection] - - >=x11-libs/cairo-1.14 -" -RDEPEND="${COMMON_DEPEND} - >=app-misc/tracker-miners-2 - net-misc/gnome-online-miners - sys-apps/dbus - x11-themes/adwaita-icon-theme -" -DEPEND="${COMMON_DEPEND} - dev-libs/appstream-glib - app-text/docbook-xml-dtd:4.2 - app-text/docbook-xsl-stylesheets - dev-libs/libxml2:2 - x11-libs/gdk-pixbuf:2 - dev-libs/libxslt - >=sys-devel/gettext-0.19.8 - dev-util/itstool - virtual/pkgconfig -" - -src_configure() { - local emesonargs=( - -Ddocumentation=true - -Dgetting_started=false - ) - meson_src_configure -} - -pkg_postinst() { - xdg_pkg_postinst - gnome2_schemas_update - gnome2_icon_cache_update -} - -pkg_postrm() { - xdg_pkg_postrm - gnome2_schemas_update - gnome2_icon_cache_update -} diff --git a/gnome-extra/gnome-documents/gnome-documents-9999.ebuild b/gnome-extra/gnome-documents/gnome-documents-9999.ebuild deleted file mode 100644 index 275d3393..00000000 --- a/gnome-extra/gnome-documents/gnome-documents-9999.ebuild +++ /dev/null @@ -1,79 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -inherit gnome.org gnome2-utils meson xdg -if [[ ${PV} = 9999 ]]; then - inherit git-r3 - SRC_URI="" - EGIT_REPO_URI="https://gitlab.gnome.org/GNOME/${GNOME_ORG_MODULE}" -fi - -DESCRIPTION="A document manager application for GNOME" -HOMEPAGE="https://wiki.gnome.org/Apps/Documents" - -LICENSE="GPL-2+" -SLOT="0" -IUSE="" -if [[ ${PV} = 9999 ]]; then - KEYWORDS="" -else - KEYWORDS="~amd64 ~x86" -fi - -# cairo-1.14 for cairo_surface_set_device_scale check and usage -COMMON_DEPEND=" - >=dev-libs/gjs-1.48 - >=app-text/evince-3.13.3[introspection] - >=dev-libs/glib-2.39.3:2 - gnome-base/gnome-desktop:3=[introspection] - >=dev-libs/gobject-introspection-1.31.6:= - >=x11-libs/gtk+-3.22.15:3[introspection] - >=net-libs/libsoup-2.41.3:2.4 - >=app-misc/tracker-2:= - >=net-libs/webkit-gtk-2.6:4[introspection] - - >=dev-libs/libgdata-0.13.3:=[crypt,gnome-online-accounts,introspection] - >=app-text/libgepub-0.6[introspection] - >=net-libs/gnome-online-accounts-3.2.0[introspection] - >=net-libs/libzapojit-0.0.2[introspection] - - >=x11-libs/cairo-1.14 -" -RDEPEND="${COMMON_DEPEND} - >=app-misc/tracker-miners-2 - net-misc/gnome-online-miners - sys-apps/dbus - x11-themes/adwaita-icon-theme -" -DEPEND="${COMMON_DEPEND} - dev-libs/appstream-glib - app-text/docbook-xml-dtd:4.2 - app-text/docbook-xsl-stylesheets - dev-libs/libxml2:2 - x11-libs/gdk-pixbuf:2 - dev-libs/libxslt - >=sys-devel/gettext-0.19.8 - dev-util/itstool - virtual/pkgconfig -" - -src_configure() { - local emesonargs=( - -Ddocumentation=true - -Dgetting_started=false - ) - meson_src_configure -} - -pkg_postinst() { - xdg_pkg_postinst - gnome2_schemas_update - gnome2_icon_cache_update -} - -pkg_postrm() { - xdg_pkg_postrm - gnome2_schemas_update - gnome2_icon_cache_update -} diff --git a/gnome-extra/gnome-documents/metadata.xml b/gnome-extra/gnome-documents/metadata.xml deleted file mode 100644 index 39980802..00000000 --- a/gnome-extra/gnome-documents/metadata.xml +++ /dev/null @@ -1,8 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> -<maintainer type="project"> - <email>gnome@gentoo.org</email> - <name>Gentoo GNOME Desktop</name> -</maintainer> -</pkgmetadata> diff --git a/gnome-extra/gnome-power-manager/gnome-power-manager-9999.ebuild b/gnome-extra/gnome-power-manager/gnome-power-manager-9999.ebuild deleted file mode 100644 index 5e7df4b6..00000000 --- a/gnome-extra/gnome-power-manager/gnome-power-manager-9999.ebuild +++ /dev/null @@ -1,67 +0,0 @@ -# Copyright 1999-2018 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -inherit gnome.org gnome2-utils meson virtualx xdg - -if [[ ${PV} = 9999 ]]; then - SRC_URI="" - EGIT_REPO_URI="https://gitlab.gnome.org/GNOME/gnome-power-manager.git" - inherit git-r3 -fi - -DESCRIPTION="GNOME power management service" -HOMEPAGE="https://projects.gnome.org/gnome-power-manager/" - -LICENSE="GPL-2" -SLOT="0" -IUSE="test" -if [[ ${PV} = 9999 ]]; then - KEYWORDS="" -else - KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd" -fi - -COMMON_DEPEND=" - >=dev-libs/glib-2.45.8:2 - >=x11-libs/gtk+-3.3.8:3 - >=x11-libs/cairo-1 - >=sys-power/upower-0.99:= -" -RDEPEND="${COMMON_DEPEND} - x11-themes/adwaita-icon-theme -" -DEPEND="${COMMON_DEPEND} - app-text/docbook-sgml-dtd:4.1 - app-text/docbook-sgml-utils - >=sys-devel/gettext-0.19.7 - x11-base/xorg-proto - virtual/pkgconfig - test? ( sys-apps/dbus ) -" - -# docbook-sgml-utils and docbook-sgml-dtd-4.1 used for creating man pages -# (files under ${S}/man). - -src_configure() { - local emesonargs=( - $(meson_use test enable-tests) - ) - meson_src_configure -} - -src_test() { - virtx meson_src_test -} - -pkg_postinst() { - xdg_pkg_postinst - gnome2_schemas_update - gnome2_icon_cache_update -} - -pkg_postrm() { - xdg_pkg_postrm - gnome2_schemas_update - gnome2_icon_cache_update -} diff --git a/gnome-extra/gnome-power-manager/metadata.xml b/gnome-extra/gnome-power-manager/metadata.xml deleted file mode 100644 index 8b88d420..00000000 --- a/gnome-extra/gnome-power-manager/metadata.xml +++ /dev/null @@ -1,12 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer type="project"> - <email>gnome@gentoo.org</email> - <name>Gentoo GNOME Desktop</name> - </maintainer> - <longdescription lang="en"> - Power Manager daemon for the GNOME desktop environment that makes it - easy to manage your laptop or desktop system. - </longdescription> -</pkgmetadata> diff --git a/gnome-extra/gnome-recipes/Manifest b/gnome-extra/gnome-recipes/Manifest deleted file mode 100644 index 1806769e..00000000 --- a/gnome-extra/gnome-recipes/Manifest +++ /dev/null @@ -1,23 +0,0 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA256 - -DIST gnome-recipes-2.0.2.tar.xz 18057316 BLAKE2B 0a3766ff2c73bebfcacb6a0b9a98a385482e922c7e01d54c73382d150d697bc81d9124bff3b51ac457da52abd79bb5090d2f7eebc359175754d6f2e51c228070 SHA512 478daab92caa8bb265307de864601c95d504ef9bf13990dd2bf5a2c85e87f90b996bd191e907d809341cc4335fee0f2f55e626964d5372bd6c7c7168f51e6eed ------BEGIN PGP SIGNATURE----- -Version: GnuPG v2 - -iQKTBAEBCAB9FiEEhjiDzgE0H6m8d3Z/4FucaN0bWf0FAltOSYZfFIAAAAAALgAo -aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldDg2 -Mzg4M0NFMDEzNDFGQTlCQzc3NzY3RkUwNUI5QzY4REQxQjU5RkQACgkQ4FucaN0b -Wf0eMg/+LIRXvVvsr60IiR1ycDnx/+53NCi8RoJT0rnSYCPQU9IrfUC/HNAoXoEJ -3sXUKuApYYj/iaZspfo09W8P5Mm90lFhpJoEhezbr74aoxzROfTCOkAzQYD8M/YR -twI1eIWVSm7AEYYbc6l0XJBhXgWdVAr89yJFkIUizd0sCS2qeLjHKE2TvzLxK50h -KA7Fz8nkxM0GXIb3NzTz67AHlsmDvOMhK5Sdl75XYe2G7K1+Rx48r8ZM/2+ZBmfI -EFgdBWrAkaz7Ckj8M297N5ngwS6t2imdWKevcdfWlwvC9T5/I1uZJ25rGFz8w1tX -Wtfd1/d0lawjSsCJ/XMgJM/Ng6AtyoFJDmFYDUk1sbpBpM8EBdSds5ceS219I/ud -clROCgCyyL96XLt/7Q1O3IQl0QKL9mlW4Nvlx5Kol4/i4YwKF7SwX7KG04nanIUD -EYuLUb8WubMGjWrbhGudOFiHNE78ggehlWgDhTaZjiyvjZ3kMYzn1srrKtfbAxAD -SDT1tlPCiKV7vqFzmBTAsYUz+0/lqT+mmKHC3CfCJn7QnL/xTleMCrQ8RZkTirkT -XFCxj/fGV8eSAMG9/cb4Q3YDk4VpQCSL//9XVFCf8aSI7tHejykO2w4pp62Xm+wo -d/xmpWg+AIquBopxoizbv18xIVXlUUzAYZBsx33/7ifDa4/dKzc= -=5ksu ------END PGP SIGNATURE----- diff --git a/gnome-extra/gnome-recipes/gnome-recipes-2.0.2.ebuild b/gnome-extra/gnome-recipes/gnome-recipes-2.0.2.ebuild deleted file mode 100644 index a76a1ae7..00000000 --- a/gnome-extra/gnome-recipes/gnome-recipes-2.0.2.ebuild +++ /dev/null @@ -1,51 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit gnome2-utils gnome.org meson xdg - -DESCRIPTION="Cooking recipe application" -HOMEPAGE="https://wiki.gnome.org/Apps/Recipes" - -LICENSE="GPL-3+" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="archive spell" - -RDEPEND=" - dev-libs/glib:2 - media-libs/libcanberra - net-libs/libsoup:2.4 - >=x11-libs/gtk+-3.22:3 - >=dev-libs/json-glib-1 - >=net-libs/rest-0.7 - net-libs/gnome-online-accounts - archive? ( app-arch/gnome-autoar ) - spell? ( >=app-text/gspell-1 ) -" -DEPEND="${RDEPEND} - virtual/pkgconfig -" - -src_configure() { - local emesonargs=( - -Denable-autoar=$(usex archive yes no) - -Denable-gspell=$(usex spell yes no) - -Denable-canberra=yes - ) - - meson_src_configure -} - -pkg_postinst() { - gnome2_schemas_update - gnome2_icon_cache_update - xdg_pkg_postinst -} - -pkg_postrm() { - gnome2_schemas_update - gnome2_icon_cache_update - xdg_pkg_postrm -} diff --git a/gnome-extra/gnome-recipes/metadata.xml b/gnome-extra/gnome-recipes/metadata.xml deleted file mode 100644 index 767f96d9..00000000 --- a/gnome-extra/gnome-recipes/metadata.xml +++ /dev/null @@ -1,11 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer type="project"> - <email>gnome@gentoo.org</email> - <name>Gentoo GNOME Desktop</name> - </maintainer> - <use> - <flag name="archive">Enable archive support using app-arch/libarchive</flag> - </use> -</pkgmetadata> diff --git a/gnome-extra/gnome-search-tool/gnome-search-tool-9999.ebuild b/gnome-extra/gnome-search-tool/gnome-search-tool-9999.ebuild deleted file mode 100644 index 18d7f910..00000000 --- a/gnome-extra/gnome-search-tool/gnome-search-tool-9999.ebuild +++ /dev/null @@ -1,54 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI="5" -GCONF_DEBUG="no" -GNOME2_LA_PUNT="yes" - -inherit gnome2 -if [[ ${PV} = 9999 ]]; then - inherit gnome2-live -fi - -DESCRIPTION="Search tool for GNOME 3" -HOMEPAGE="https://live.gnome.org/GnomeUtils" - -LICENSE="GPL-2 FDL-1.1" -SLOT="0" -IUSE="" -if [[ ${PV} = 9999 ]]; then - KEYWORDS="" -else - KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux" -fi - -COMMON_DEPEND=" - dev-libs/atk - >=dev-libs/glib-2.30:2 - sys-apps/grep - x11-libs/gdk-pixbuf - >=x11-libs/gtk+-3:3 - x11-libs/libICE - x11-libs/libSM -" -RDEPEND="${COMMON_DEPEND} - sys-apps/findutils - || ( sys-apps/mlocate sys-freebsd/freebsd-ubin ) - !<gnome-extra/gnome-utils-3.4 -" -# ${PN} was part of gnome-utils before 3.4 -DEPEND="${COMMON_DEPEND} - >=dev-util/intltool-0.40 - >=sys-devel/gettext-0.17 - virtual/pkgconfig -" - -if [[ ${PV} = 9999 ]]; then - DEPEND="${DEPEND} app-text/yelp-tools" -fi - -src_configure() { - [[ ${PV} != 9999 ]] && G2CONF="${G2CONF} ITSTOOL=$(type -P true)" - gnome2_src_configure -} diff --git a/gnome-extra/gnome-search-tool/metadata.xml b/gnome-extra/gnome-search-tool/metadata.xml deleted file mode 100644 index 39980802..00000000 --- a/gnome-extra/gnome-search-tool/metadata.xml +++ /dev/null @@ -1,8 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> -<maintainer type="project"> - <email>gnome@gentoo.org</email> - <name>Gentoo GNOME Desktop</name> -</maintainer> -</pkgmetadata> diff --git a/gnome-extra/gnome-shell-extensions-system-monitor/gnome-shell-extensions-system-monitor-9999.ebuild b/gnome-extra/gnome-shell-extensions-system-monitor/gnome-shell-extensions-system-monitor-9999.ebuild deleted file mode 100644 index c4613623..00000000 --- a/gnome-extra/gnome-shell-extensions-system-monitor/gnome-shell-extensions-system-monitor-9999.ebuild +++ /dev/null @@ -1,75 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI="5" -GCONF_DEBUG="no" - -EGIT_REPO_URI="git://github.com/paradoxxxzero/gnome-shell-system-monitor-applet" - -inherit eutils gnome2-utils gnome2-live - -DESCRIPTION="System monitor extension for GNOME Shell" -HOMEPAGE="https://github.com/paradoxxxzero/gnome-shell-system-monitor-applet" - -LICENSE="GPL-2" -SLOT="0" -IUSE="" -KEYWORDS="" #"~amd64 ~x86" - -COMMON_DEPEND=" - >=dev-libs/glib-2.26 - app-eselect/eselect-gnome-shell-extensions -" -RDEPEND="${COMMON_DEPEND} - gnome-base/gnome-shell - gnome-base/libgtop[introspection] - media-libs/clutter:1.0[introspection] - net-misc/networkmanager[introspection] - x11-libs/gtk+:3[introspection] -" -DEPEND="${COMMON_DEPEND} - >=dev-util/intltool-0.26 - sys-devel/gettext - virtual/pkgconfig - gnome-base/gnome-common -" - -src_prepare() { :; } - -src_configure() { :; } - -src_compile() { - local locale - for locale in ${LINGUAS} - do - [[ ! -d po/${locale} ]] && continue - mkdir -p locale/${locale}/LC_MESSAGES - msgfmt po/${locale}/system-monitor.po -o locale/${locale}/LC_MESSAGES/system-monitor.mo || die - done -} - -src_install() { - insinto /usr/share/gnome-shell/extensions/system-monitor@paradoxxx.zero.gmail.com - doins system-monitor@paradoxxx.zero.gmail.com/*.{css,js,json} - - insinto /usr/share - doins -r "${S}"/locale - - insinto /usr/share/glib-2.0/schemas - doins system-monitor@paradoxxx.zero.gmail.com/schemas/*.gschema.xml -} - -pkg_postinst() { - gnome2_pkg_postinst - - einfo "Updating list of installed extensions" - eselect gnome-shell-extensions update || die - elog - elog "Installed extensions installed are initially disabled by default." - elog "To change the system default and enable some extensions, you can use" - elog "# eselect gnome-shell-extensions" - elog "Alternatively, you can use the org.gnome.shell disabled-extensions" - elog "gsettings key to change the disabled extension list per-user." - elog -} diff --git a/gnome-extra/gnome-shell-extensions-system-monitor/metadata.xml b/gnome-extra/gnome-shell-extensions-system-monitor/metadata.xml deleted file mode 100644 index 39980802..00000000 --- a/gnome-extra/gnome-shell-extensions-system-monitor/metadata.xml +++ /dev/null @@ -1,8 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> -<maintainer type="project"> - <email>gnome@gentoo.org</email> - <name>Gentoo GNOME Desktop</name> -</maintainer> -</pkgmetadata> diff --git a/gnome-extra/gtkhtml/gtkhtml-9999.ebuild b/gnome-extra/gtkhtml/gtkhtml-9999.ebuild deleted file mode 100644 index b946387c..00000000 --- a/gnome-extra/gtkhtml/gtkhtml-9999.ebuild +++ /dev/null @@ -1,61 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI="5" -GCONF_DEBUG="no" - -inherit gnome2 -[[ ${PV} = 9999 ]] && inherit gnome2-live - -DESCRIPTION="Lightweight HTML rendering/printing/editing engine" -HOMEPAGE="https://git.gnome.org/browse/gtkhtml" - -LICENSE="GPL-2+ LGPL-2+" -SLOT="4.0" -if [[ ${PV} = 9999 ]]; then - KEYWORDS="" -else - KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux" -fi -IUSE="" - -# orbit is referenced in configure, but is not used anywhere else -RDEPEND=" - >=x11-libs/gtk+-3.2:3 - >=x11-libs/cairo-1.10:= - x11-libs/pango - >=app-text/enchant-1.1.7:= - gnome-base/gsettings-desktop-schemas - >=app-text/iso-codes-0.49 - >=net-libs/libsoup-2.26.0:2.4 -" -DEPEND="${RDEPEND} - x11-base/xorg-proto - sys-devel/gettext - >=dev-util/intltool-0.40.0 - virtual/pkgconfig -" - -src_prepare() { - # Reason? - ELTCONF="--reverse-deps" - - # Regenerate marshallers for <glib-2.31 compatibility - if [[ ${PV} != 9999 ]]; then - rm -v components/editor/gtkhtml-spell-marshal.{c,h} \ - components/editor/gtkhtml-editor-marshal.{c,h} || die - fi - gnome2_src_prepare -} - -src_configure() { - gnome2_src_configure --disable-static -} - -src_install() { - gnome2_src_install - - # Don't collide with 3.14 slot - mv "${ED}"/usr/bin/gtkhtml-editor-test{,-${SLOT}} || die -} diff --git a/gnome-extra/gtkhtml/metadata.xml b/gnome-extra/gtkhtml/metadata.xml deleted file mode 100644 index 39980802..00000000 --- a/gnome-extra/gtkhtml/metadata.xml +++ /dev/null @@ -1,8 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> -<maintainer type="project"> - <email>gnome@gentoo.org</email> - <name>Gentoo GNOME Desktop</name> -</maintainer> -</pkgmetadata> diff --git a/gnome-extra/seahorse-nautilus/metadata.xml b/gnome-extra/seahorse-nautilus/metadata.xml deleted file mode 100644 index 39980802..00000000 --- a/gnome-extra/seahorse-nautilus/metadata.xml +++ /dev/null @@ -1,8 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> -<maintainer type="project"> - <email>gnome@gentoo.org</email> - <name>Gentoo GNOME Desktop</name> -</maintainer> -</pkgmetadata> diff --git a/gnome-extra/seahorse-nautilus/seahorse-nautilus-9999.ebuild b/gnome-extra/seahorse-nautilus/seahorse-nautilus-9999.ebuild deleted file mode 100644 index 6a0c792c..00000000 --- a/gnome-extra/seahorse-nautilus/seahorse-nautilus-9999.ebuild +++ /dev/null @@ -1,65 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI="5" -GCONF_DEBUG="no" # --disable-debug disables all assertions -GNOME2_LA_PUNT="yes" - -inherit gnome2 -if [[ ${PV} = 9999 ]]; then - inherit gnome2-live -fi - -DESCRIPTION="Nautilus extension for encrypting and decrypting files with GnuPG" -HOMEPAGE="https://wiki.gnome.org/action/show/Apps/Seahorse" - -LICENSE="GPL-2" -SLOT="0" -if [[ ${PV} = 9999 ]]; then - KEYWORDS="" -else - KEYWORDS="~amd64 ~x86" -fi -IUSE="" - -COMMON_DEPEND=" - >=app-crypt/gpgme-1.0.0 - >=app-crypt/gcr-3.4 - >=dev-libs/dbus-glib-0.35 - >=dev-libs/glib-2.28:2 - gnome-base/gnome-keyring - >=gnome-base/nautilus-3 - x11-libs/gtk+:3 - >=x11-libs/libcryptui-3.9.90 - >=x11-libs/libnotify-0.3:= - || ( - =app-crypt/gnupg-1.4* - =app-crypt/gnupg-2.0* ) -" -# seahorse-nautilus was formerly part of seahorse-plugins -RDEPEND="${COMMON_DEPEND} - !app-crypt/seahorse-plugins[nautilus] -" -DEPEND="${COMMON_DEPEND} - >=dev-util/intltool-0.35 - virtual/pkgconfig -" - -src_prepare() { - # Do not let configure mangle CFLAGS - sed -e '/^[ \t]*CFLAGS="$CFLAGS \(-g\|-O0\)/d' -i configure.ac configure || - die "sed failed" - - # Fix icon location, upstream bug #719763 - sed -i 's/pixmaps\/seahorse-plugins\/48x48/pixmaps\/cryptui\/48x48/' \ - tool/seahorse-notification.c || die - - gnome2_src_prepare -} - -src_configure() { - gnome2_src_configure \ - --disable-gpg-check \ - --enable-libnotify -} |