public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: mail-client/mail-notification/
@ 2015-10-10 23:44 Anthony G. Basile
  0 siblings, 0 replies; 6+ messages in thread
From: Anthony G. Basile @ 2015-10-10 23:44 UTC (permalink / raw
  To: gentoo-commits

commit:     d8e0dd16f3bc37a618e37117e24d5691f5d3a949
Author:     Anthony G. Basile <blueness <AT> gentoo <DOT> org>
AuthorDate: Sat Oct 10 23:50:24 2015 +0000
Commit:     Anthony G. Basile <blueness <AT> gentoo <DOT> org>
CommitDate: Sat Oct 10 23:50:24 2015 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d8e0dd16

mail-client/mail-notification: add libressl support

Package-Manager: portage-2.2.20.1

 .../mail-notification-5.4-r9.ebuild                | 115 +++++++++++++++++++++
 1 file changed, 115 insertions(+)

diff --git a/mail-client/mail-notification/mail-notification-5.4-r9.ebuild b/mail-client/mail-notification/mail-notification-5.4-r9.ebuild
new file mode 100644
index 0000000..6458da6
--- /dev/null
+++ b/mail-client/mail-notification/mail-notification-5.4-r9.ebuild
@@ -0,0 +1,115 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+GCONF_DEBUG="no"
+
+inherit gnome2 eutils multilib flag-o-matic toolchain-funcs
+
+DESCRIPTION="Status icon informing about new mail"
+HOMEPAGE="http://www.nongnu.org/mailnotify/ https://github.com/epienbroek/mail-notification"
+
+GIT_REVISION="eab5c13" # Same as Fedora
+SRC_URI="https://github.com/epienbroek/${PN}/tarball/${GIT_REVISION} -> ${PN}-${GIT_REVISION}.tar.gz"
+S="${WORKDIR}/epienbroek-${PN}-${GIT_REVISION}"
+
+KEYWORDS="~amd64 ~ppc ~sparc ~x86 ~x86-linux"
+SLOT="0"
+LICENSE="GPL-3"
+IUSE="+gnome-keyring libressl sasl +sound ssl sylpheed"
+
+LANGS="bg ca cs de es fr ja nl pl pt pt_BR ru sr sr@Latn sv"
+for lang in ${LANGS}; do
+	IUSE+=" linguas_${lang}"
+done
+
+# gmime is actually optional, but it's used by so much of the package
+# it's pointless making it optional. gnome-keyring is required for
+# several specific access methods, and thus linked to those USE flags
+# instead of adding a keyring USE flag.
+RDEPEND="
+	x11-libs/gtk+:3
+	>=dev-libs/glib-2.14:2
+	>=gnome-base/gconf-2.6
+	>=gnome-base/libgnomeui-2.14
+	dev-libs/dbus-glib
+	dev-libs/gmime:2.6
+	>=x11-libs/libnotify-0.4.1
+	gnome-keyring? ( gnome-base/libgnome-keyring )
+	ssl? (
+		!libressl? ( dev-libs/openssl:0 )
+		libressl? ( dev-libs/libressl )
+	)
+	sasl? ( >=dev-libs/cyrus-sasl-2 )
+	sound? ( media-libs/gstreamer:0.10 )
+	sylpheed? ( mail-client/sylpheed )
+"
+DEPEND="${RDEPEND}
+	app-text/scrollkeeper
+	dev-util/gob
+	sys-devel/gettext
+	virtual/pkgconfig
+	>=dev-util/intltool-0.35.0
+"
+# this now uses JB (the Jean-Yves Lefort's Build System) as a build system
+# instead of autotools, this is a little helper function that basically does
+# the same thing as use_enable
+use_var() {
+	echo "${2:-$1}=$(usex $1)"
+}
+
+src_prepare() {
+	sed -i	-e '/jb_rule_set_install_message/d' \
+		-e '/jb_rule_add_install_command/d' \
+		jbsrc/jb.c || die
+
+	# Ensure we never append -Werror
+	sed -i -e 's/ -Werror//' jb jbsrc/jb.c || die
+
+	# We are not Ubuntu, and this could be the cause of #215281
+	epatch "${FILESDIR}/${P}-remove-ubuntu-special-case.patch"
+
+	# Apply Fedora patches
+	# Fix gcc warning
+	epatch "${FILESDIR}/${PN}-jb-gcc-format.patch"
+	# Support aarch64
+	epatch "${FILESDIR}/${PN}-aarch64.patch"
+	# Fix build with latest libc
+	epatch "${FILESDIR}/${PN}-dont-link-against-bsd-compat.patch"
+}
+
+src_configure() {
+	set -- \
+	./jb configure destdir="${D}" prefix="${EPREFIX}/usr" libdir="${EPREFIX}/usr/$(get_libdir)" \
+		sysconfdir="${EPREFIX}/etc" localstatedir="${EPREFIX}/var" cc="$(tc-getCC)" \
+		cflags="${CFLAGS}" cppflags="${CXXFLAGS}" ldflags="${LDFLAGS}" \
+		scrollkeeper-dir="${EPREFIX}/var/lib/scrollkeeper" \
+		$(use_var gnome-keyring gmail) \
+		$(use_var gnome-keyring imap) \
+		$(use_var gnome-keyring pop3) \
+		$(use_var sasl) \
+		$(use_var ssl) \
+		$(use_var sylpheed)
+	echo "$@"
+	"$@" || die
+}
+
+src_compile() {
+	./jb build || die
+}
+
+src_install() {
+	GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL="1" ./jb install || die
+	dodoc NEWS README AUTHORS TODO TRANSLATING
+	rm -rf "${ED}/var/lib/scrollkeeper"
+
+	einfo "Cleaning up locales..."
+	for lang in ${LANGS}; do
+		use "linguas_${lang}" && {
+			einfo "- keeping ${lang}"
+			continue
+		}
+		rm -Rf "${D}"/usr/share/locale/"${lang}" || die
+	done
+}


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: mail-client/mail-notification/
@ 2016-11-04  9:40 Pacho Ramos
  0 siblings, 0 replies; 6+ messages in thread
From: Pacho Ramos @ 2016-11-04  9:40 UTC (permalink / raw
  To: gentoo-commits

commit:     70e86adf73324c4d3b078aa39da91c5f0a185483
Author:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Fri Nov  4 09:32:25 2016 +0000
Commit:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Fri Nov  4 09:40:26 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=70e86adf

mail-client/mail-notification: Drop old

Package-Manager: portage-2.3.2

 .../mail-notification-5.4-r9.ebuild                | 115 ---------------------
 1 file changed, 115 deletions(-)

diff --git a/mail-client/mail-notification/mail-notification-5.4-r9.ebuild b/mail-client/mail-notification/mail-notification-5.4-r9.ebuild
deleted file mode 100644
index 6458da6..00000000
--- a/mail-client/mail-notification/mail-notification-5.4-r9.ebuild
+++ /dev/null
@@ -1,115 +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 eutils multilib flag-o-matic toolchain-funcs
-
-DESCRIPTION="Status icon informing about new mail"
-HOMEPAGE="http://www.nongnu.org/mailnotify/ https://github.com/epienbroek/mail-notification"
-
-GIT_REVISION="eab5c13" # Same as Fedora
-SRC_URI="https://github.com/epienbroek/${PN}/tarball/${GIT_REVISION} -> ${PN}-${GIT_REVISION}.tar.gz"
-S="${WORKDIR}/epienbroek-${PN}-${GIT_REVISION}"
-
-KEYWORDS="~amd64 ~ppc ~sparc ~x86 ~x86-linux"
-SLOT="0"
-LICENSE="GPL-3"
-IUSE="+gnome-keyring libressl sasl +sound ssl sylpheed"
-
-LANGS="bg ca cs de es fr ja nl pl pt pt_BR ru sr sr@Latn sv"
-for lang in ${LANGS}; do
-	IUSE+=" linguas_${lang}"
-done
-
-# gmime is actually optional, but it's used by so much of the package
-# it's pointless making it optional. gnome-keyring is required for
-# several specific access methods, and thus linked to those USE flags
-# instead of adding a keyring USE flag.
-RDEPEND="
-	x11-libs/gtk+:3
-	>=dev-libs/glib-2.14:2
-	>=gnome-base/gconf-2.6
-	>=gnome-base/libgnomeui-2.14
-	dev-libs/dbus-glib
-	dev-libs/gmime:2.6
-	>=x11-libs/libnotify-0.4.1
-	gnome-keyring? ( gnome-base/libgnome-keyring )
-	ssl? (
-		!libressl? ( dev-libs/openssl:0 )
-		libressl? ( dev-libs/libressl )
-	)
-	sasl? ( >=dev-libs/cyrus-sasl-2 )
-	sound? ( media-libs/gstreamer:0.10 )
-	sylpheed? ( mail-client/sylpheed )
-"
-DEPEND="${RDEPEND}
-	app-text/scrollkeeper
-	dev-util/gob
-	sys-devel/gettext
-	virtual/pkgconfig
-	>=dev-util/intltool-0.35.0
-"
-# this now uses JB (the Jean-Yves Lefort's Build System) as a build system
-# instead of autotools, this is a little helper function that basically does
-# the same thing as use_enable
-use_var() {
-	echo "${2:-$1}=$(usex $1)"
-}
-
-src_prepare() {
-	sed -i	-e '/jb_rule_set_install_message/d' \
-		-e '/jb_rule_add_install_command/d' \
-		jbsrc/jb.c || die
-
-	# Ensure we never append -Werror
-	sed -i -e 's/ -Werror//' jb jbsrc/jb.c || die
-
-	# We are not Ubuntu, and this could be the cause of #215281
-	epatch "${FILESDIR}/${P}-remove-ubuntu-special-case.patch"
-
-	# Apply Fedora patches
-	# Fix gcc warning
-	epatch "${FILESDIR}/${PN}-jb-gcc-format.patch"
-	# Support aarch64
-	epatch "${FILESDIR}/${PN}-aarch64.patch"
-	# Fix build with latest libc
-	epatch "${FILESDIR}/${PN}-dont-link-against-bsd-compat.patch"
-}
-
-src_configure() {
-	set -- \
-	./jb configure destdir="${D}" prefix="${EPREFIX}/usr" libdir="${EPREFIX}/usr/$(get_libdir)" \
-		sysconfdir="${EPREFIX}/etc" localstatedir="${EPREFIX}/var" cc="$(tc-getCC)" \
-		cflags="${CFLAGS}" cppflags="${CXXFLAGS}" ldflags="${LDFLAGS}" \
-		scrollkeeper-dir="${EPREFIX}/var/lib/scrollkeeper" \
-		$(use_var gnome-keyring gmail) \
-		$(use_var gnome-keyring imap) \
-		$(use_var gnome-keyring pop3) \
-		$(use_var sasl) \
-		$(use_var ssl) \
-		$(use_var sylpheed)
-	echo "$@"
-	"$@" || die
-}
-
-src_compile() {
-	./jb build || die
-}
-
-src_install() {
-	GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL="1" ./jb install || die
-	dodoc NEWS README AUTHORS TODO TRANSLATING
-	rm -rf "${ED}/var/lib/scrollkeeper"
-
-	einfo "Cleaning up locales..."
-	for lang in ${LANGS}; do
-		use "linguas_${lang}" && {
-			einfo "- keeping ${lang}"
-			continue
-		}
-		rm -Rf "${D}"/usr/share/locale/"${lang}" || die
-	done
-}


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: mail-client/mail-notification/
@ 2016-11-04  9:40 Pacho Ramos
  0 siblings, 0 replies; 6+ messages in thread
From: Pacho Ramos @ 2016-11-04  9:40 UTC (permalink / raw
  To: gentoo-commits

commit:     e932cacb8588230013fac96ef32fead203aa30dd
Author:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Fri Nov  4 09:31:25 2016 +0000
Commit:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Fri Nov  4 09:40:24 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e932cacb

mail-client/mail-notification: Version bump following Fedora snapshots

Package-Manager: portage-2.3.2

 mail-client/mail-notification/Manifest             |   1 +
 .../mail-notification-5.4-r10.ebuild               | 114 +++++++++++++++++++++
 2 files changed, 115 insertions(+)

diff --git a/mail-client/mail-notification/Manifest b/mail-client/mail-notification/Manifest
index 5571e9a..cd19b8f 100644
--- a/mail-client/mail-notification/Manifest
+++ b/mail-client/mail-notification/Manifest
@@ -1 +1,2 @@
+DIST mail-notification-9ae8768.tar.gz 573948 SHA256 632c0b696f3f3878b497d65d944b1778ea379abcb4536fb6285c0035ae984db3 SHA512 57ddeb63816dd1db1b732dd13fedeb366e1d82f070feb3f9cf854a85a0e66ab2a60a92126fa57cdc338df699e304007dd84593ea1d6185b08c21a018e441629b WHIRLPOOL 3e11a7094bcb62c5384a13671e5bd96c27d230de20c130463520c6ac1b105b86e875dc9feb1b23dafd5579d9576483347a7bad5c18108efe3cccebdb68caaf87
 DIST mail-notification-eab5c13.tar.gz 569791 SHA256 12f79cfaa6f5bbfa68e2a5e8dca651cfe19ed017741c21bec5b3b91bccecffe6 SHA512 fe4b5c7b04fe24950fcff0796dbe27c0172e9e8c1b1229f18064ae3720d12a669803e08796ac61d64912847eaaccc451363d69cecd55995274c5a0b2705a78f1 WHIRLPOOL 480179b855b7b86cb80b750c14c034e2f52b280a4b1b6e6aeed3c64b722808c7bd0086e75a9a0423d71424ffa37b3752da2b170c3b7af13697b77cafaceabb25

diff --git a/mail-client/mail-notification/mail-notification-5.4-r10.ebuild b/mail-client/mail-notification/mail-notification-5.4-r10.ebuild
new file mode 100644
index 00000000..efb7556
--- /dev/null
+++ b/mail-client/mail-notification/mail-notification-5.4-r10.ebuild
@@ -0,0 +1,114 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+inherit gnome2 multilib flag-o-matic toolchain-funcs
+
+DESCRIPTION="Status icon informing about new mail"
+HOMEPAGE="http://www.nongnu.org/mailnotify/ https://github.com/epienbroek/mail-notification"
+
+GIT_REVISION="9ae8768" # Same as Fedora
+SRC_URI="https://github.com/epienbroek/${PN}/tarball/${GIT_REVISION} -> ${PN}-${GIT_REVISION}.tar.gz"
+S="${WORKDIR}/epienbroek-${PN}-${GIT_REVISION}"
+
+KEYWORDS="~amd64 ~ppc ~sparc ~x86 ~x86-linux"
+SLOT="0"
+LICENSE="GPL-3"
+IUSE="+gnome-keyring libressl sasl ssl sylpheed"
+
+LANGS="bg ca cs de es fr ja nl pl pt pt_BR ru sr sr@Latn sv"
+for lang in ${LANGS}; do
+	IUSE+=" linguas_${lang}"
+done
+
+# gmime is actually optional, but it's used by so much of the package
+# it's pointless making it optional. gnome-keyring is required for
+# several specific access methods, and thus linked to those USE flags
+# instead of adding a keyring USE flag.
+RDEPEND="
+	x11-libs/gtk+:3
+	>=dev-libs/glib-2.14:2
+	>=gnome-base/gconf-2.6
+	>=gnome-base/libgnomeui-2.14
+	dev-libs/dbus-glib
+	dev-libs/gmime:2.6
+	>=x11-libs/libnotify-0.4.1
+	gnome-keyring? ( gnome-base/libgnome-keyring )
+	ssl? (
+		!libressl? ( dev-libs/openssl:0= )
+		libressl? ( dev-libs/libressl:0= )
+	)
+	sasl? ( >=dev-libs/cyrus-sasl-2 )
+	sylpheed? ( mail-client/sylpheed )
+"
+DEPEND="${RDEPEND}
+	app-text/rarian
+	dev-util/gob
+	sys-devel/gettext
+	virtual/pkgconfig
+	>=dev-util/intltool-0.35.0
+"
+# this now uses JB (the Jean-Yves Lefort's Build System) as a build system
+# instead of autotools, this is a little helper function that basically does
+# the same thing as use_enable
+use_var() {
+	echo "${2:-$1}=$(usex $1)"
+}
+
+src_prepare() {
+	sed -i	-e '/jb_rule_set_install_message/d' \
+		-e '/jb_rule_add_install_command/d' \
+		jbsrc/jb.c || die
+
+	# Ensure we never append -Werror
+	sed -i -e 's/ -Werror//' jb jbsrc/jb.c || die
+
+	# We are not Ubuntu, and this could be the cause of #215281
+	eapply "${FILESDIR}/${P}-remove-ubuntu-special-case.patch"
+
+	# Apply Fedora patches
+	# Fix gcc warning
+	eapply "${FILESDIR}/${PN}-jb-gcc-format.patch"
+	# Support aarch64
+	eapply "${FILESDIR}/${PN}-aarch64.patch"
+	# Fix build with latest libc
+	eapply "${FILESDIR}/${PN}-dont-link-against-bsd-compat.patch"
+
+	gnome2_src_prepare
+}
+
+src_configure() {
+	set -- \
+	./jb configure destdir="${D}" prefix="${EPREFIX}/usr" libdir="${EPREFIX}/usr/$(get_libdir)" \
+		sysconfdir="${EPREFIX}/etc" localstatedir="${EPREFIX}/var" cc="$(tc-getCC)" \
+		cflags="${CFLAGS}" cppflags="${CXXFLAGS}" ldflags="${LDFLAGS}" \
+		scrollkeeper-dir="${EPREFIX}/var/lib/scrollkeeper" \
+		$(use_var gnome-keyring gmail) \
+		$(use_var gnome-keyring imap) \
+		$(use_var gnome-keyring pop3) \
+		$(use_var sasl) \
+		$(use_var ssl) \
+		$(use_var sylpheed)
+	echo "$@"
+	"$@" || die
+}
+
+src_compile() {
+	./jb build || die
+}
+
+src_install() {
+	GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL="1" ./jb install || die
+	einstalldocs
+	rm -rf "${ED}/var/lib/scrollkeeper"
+
+	einfo "Cleaning up locales..."
+	for lang in ${LANGS}; do
+		use "linguas_${lang}" && {
+			einfo "- keeping ${lang}"
+			continue
+		}
+		rm -Rf "${D}"/usr/share/locale/"${lang}" || die
+	done
+}


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: mail-client/mail-notification/
@ 2016-11-27 15:04 Pacho Ramos
  0 siblings, 0 replies; 6+ messages in thread
From: Pacho Ramos @ 2016-11-27 15:04 UTC (permalink / raw
  To: gentoo-commits

commit:     72f30b31577109f56955306b329a05add9e5e8b2
Author:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Sun Nov 27 14:59:05 2016 +0000
Commit:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Sun Nov 27 15:04:39 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=72f30b31

mail-client/mail-notification: amd64/x86 stable, bug #599424

Package-Manager: portage-2.3.2

 mail-client/mail-notification/mail-notification-5.4-r10.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/mail-client/mail-notification/mail-notification-5.4-r10.ebuild b/mail-client/mail-notification/mail-notification-5.4-r10.ebuild
index efb7556..7bfe255 100644
--- a/mail-client/mail-notification/mail-notification-5.4-r10.ebuild
+++ b/mail-client/mail-notification/mail-notification-5.4-r10.ebuild
@@ -12,7 +12,7 @@ GIT_REVISION="9ae8768" # Same as Fedora
 SRC_URI="https://github.com/epienbroek/${PN}/tarball/${GIT_REVISION} -> ${PN}-${GIT_REVISION}.tar.gz"
 S="${WORKDIR}/epienbroek-${PN}-${GIT_REVISION}"
 
-KEYWORDS="~amd64 ~ppc ~sparc ~x86 ~x86-linux"
+KEYWORDS="amd64 ~ppc ~sparc x86 ~x86-linux"
 SLOT="0"
 LICENSE="GPL-3"
 IUSE="+gnome-keyring libressl sasl ssl sylpheed"


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: mail-client/mail-notification/
@ 2016-11-27 15:04 Pacho Ramos
  0 siblings, 0 replies; 6+ messages in thread
From: Pacho Ramos @ 2016-11-27 15:04 UTC (permalink / raw
  To: gentoo-commits

commit:     0eec77dd905439081358c918d51970ebbdf9fab9
Author:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Sun Nov 27 15:00:04 2016 +0000
Commit:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Sun Nov 27 15:04:41 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0eec77dd

mail-client/mail-notification: Drop old

Package-Manager: portage-2.3.2

 mail-client/mail-notification/Manifest             |   1 -
 .../mail-notification-5.4-r8.ebuild                | 112 ---------------------
 2 files changed, 113 deletions(-)

diff --git a/mail-client/mail-notification/Manifest b/mail-client/mail-notification/Manifest
index cd19b8f..bb8c8a4 100644
--- a/mail-client/mail-notification/Manifest
+++ b/mail-client/mail-notification/Manifest
@@ -1,2 +1 @@
 DIST mail-notification-9ae8768.tar.gz 573948 SHA256 632c0b696f3f3878b497d65d944b1778ea379abcb4536fb6285c0035ae984db3 SHA512 57ddeb63816dd1db1b732dd13fedeb366e1d82f070feb3f9cf854a85a0e66ab2a60a92126fa57cdc338df699e304007dd84593ea1d6185b08c21a018e441629b WHIRLPOOL 3e11a7094bcb62c5384a13671e5bd96c27d230de20c130463520c6ac1b105b86e875dc9feb1b23dafd5579d9576483347a7bad5c18108efe3cccebdb68caaf87
-DIST mail-notification-eab5c13.tar.gz 569791 SHA256 12f79cfaa6f5bbfa68e2a5e8dca651cfe19ed017741c21bec5b3b91bccecffe6 SHA512 fe4b5c7b04fe24950fcff0796dbe27c0172e9e8c1b1229f18064ae3720d12a669803e08796ac61d64912847eaaccc451363d69cecd55995274c5a0b2705a78f1 WHIRLPOOL 480179b855b7b86cb80b750c14c034e2f52b280a4b1b6e6aeed3c64b722808c7bd0086e75a9a0423d71424ffa37b3752da2b170c3b7af13697b77cafaceabb25

diff --git a/mail-client/mail-notification/mail-notification-5.4-r8.ebuild b/mail-client/mail-notification/mail-notification-5.4-r8.ebuild
deleted file mode 100644
index 43bd96b..00000000
--- a/mail-client/mail-notification/mail-notification-5.4-r8.ebuild
+++ /dev/null
@@ -1,112 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-GCONF_DEBUG="no"
-
-inherit gnome2 eutils multilib flag-o-matic toolchain-funcs
-
-DESCRIPTION="Status icon informing about new mail"
-HOMEPAGE="http://www.nongnu.org/mailnotify/ https://github.com/epienbroek/mail-notification"
-
-GIT_REVISION="eab5c13" # Same as Fedora
-SRC_URI="https://github.com/epienbroek/${PN}/tarball/${GIT_REVISION} -> ${PN}-${GIT_REVISION}.tar.gz"
-S="${WORKDIR}/epienbroek-${PN}-${GIT_REVISION}"
-
-KEYWORDS="amd64 ~ppc ~sparc x86 ~x86-linux"
-SLOT="0"
-LICENSE="GPL-3"
-IUSE="+gnome-keyring sasl +sound ssl sylpheed"
-
-LANGS="bg ca cs de es fr ja nl pl pt pt_BR ru sr sr@Latn sv"
-for lang in ${LANGS}; do
-	IUSE+=" linguas_${lang}"
-done
-
-# gmime is actually optional, but it's used by so much of the package
-# it's pointless making it optional. gnome-keyring is required for
-# several specific access methods, and thus linked to those USE flags
-# instead of adding a keyring USE flag.
-RDEPEND="
-	x11-libs/gtk+:3
-	>=dev-libs/glib-2.14:2
-	>=gnome-base/gconf-2.6
-	>=gnome-base/libgnomeui-2.14
-	dev-libs/dbus-glib
-	dev-libs/gmime:2.6
-	>=x11-libs/libnotify-0.4.1
-	gnome-keyring? ( gnome-base/libgnome-keyring )
-	ssl? ( >=dev-libs/openssl-0.9.6 )
-	sasl? ( >=dev-libs/cyrus-sasl-2 )
-	sound? ( media-libs/gstreamer:0.10 )
-	sylpheed? ( mail-client/sylpheed )
-"
-DEPEND="${RDEPEND}
-	app-text/scrollkeeper
-	dev-util/gob
-	sys-devel/gettext
-	virtual/pkgconfig
-	>=dev-util/intltool-0.35.0
-"
-# this now uses JB (the Jean-Yves Lefort's Build System) as a build system
-# instead of autotools, this is a little helper function that basically does
-# the same thing as use_enable
-use_var() {
-	echo "${2:-$1}=$(usex $1)"
-}
-
-src_prepare() {
-	sed -i	-e '/jb_rule_set_install_message/d' \
-		-e '/jb_rule_add_install_command/d' \
-		jbsrc/jb.c || die
-
-	# Ensure we never append -Werror
-	sed -i -e 's/ -Werror//' jb jbsrc/jb.c || die
-
-	# We are not Ubuntu, and this could be the cause of #215281
-	epatch "${FILESDIR}/${P}-remove-ubuntu-special-case.patch"
-
-	# Apply Fedora patches
-	# Fix gcc warning
-	epatch "${FILESDIR}/${PN}-jb-gcc-format.patch"
-	# Support aarch64
-	epatch "${FILESDIR}/${PN}-aarch64.patch"
-	# Fix build with latest libc
-	epatch "${FILESDIR}/${PN}-dont-link-against-bsd-compat.patch"
-}
-
-src_configure() {
-	set -- \
-	./jb configure destdir="${D}" prefix="${EPREFIX}/usr" libdir="${EPREFIX}/usr/$(get_libdir)" \
-		sysconfdir="${EPREFIX}/etc" localstatedir="${EPREFIX}/var" cc="$(tc-getCC)" \
-		cflags="${CFLAGS}" cppflags="${CXXFLAGS}" ldflags="${LDFLAGS}" \
-		scrollkeeper-dir="${EPREFIX}/var/lib/scrollkeeper" \
-		$(use_var gnome-keyring gmail) \
-		$(use_var gnome-keyring imap) \
-		$(use_var gnome-keyring pop3) \
-		$(use_var sasl) \
-		$(use_var ssl) \
-		$(use_var sylpheed)
-	echo "$@"
-	"$@" || die
-}
-
-src_compile() {
-	./jb build || die
-}
-
-src_install() {
-	GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL="1" ./jb install || die
-	dodoc NEWS README AUTHORS TODO TRANSLATING
-	rm -rf "${ED}/var/lib/scrollkeeper"
-
-	einfo "Cleaning up locales..."
-	for lang in ${LANGS}; do
-		use "linguas_${lang}" && {
-			einfo "- keeping ${lang}"
-			continue
-		}
-		rm -Rf "${D}"/usr/share/locale/"${lang}" || die
-	done
-}


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: mail-client/mail-notification/
@ 2018-01-06 12:23 Ulrich Müller
  0 siblings, 0 replies; 6+ messages in thread
From: Ulrich Müller @ 2018-01-06 12:23 UTC (permalink / raw
  To: gentoo-commits

commit:     c7c68b0ef24b4a08e9ab2a2267aa3e4cd9e57f27
Author:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Sat Jan  6 12:06:18 2018 +0000
Commit:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Sat Jan  6 12:22:55 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c7c68b0e

mail-client/mail-notification: Remove linguas_* from IUSE.

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 .../mail-notification-5.4-r10.ebuild               | 23 +++++++++++-----------
 1 file changed, 11 insertions(+), 12 deletions(-)

diff --git a/mail-client/mail-notification/mail-notification-5.4-r10.ebuild b/mail-client/mail-notification/mail-notification-5.4-r10.ebuild
index 6a021824142..4c0b026eefa 100644
--- a/mail-client/mail-notification/mail-notification-5.4-r10.ebuild
+++ b/mail-client/mail-notification/mail-notification-5.4-r10.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
@@ -17,9 +17,6 @@ LICENSE="GPL-3"
 IUSE="+gnome-keyring libressl sasl ssl sylpheed"
 
 LANGS="bg ca cs de es fr ja nl pl pt pt_BR ru sr sr@Latn sv"
-for lang in ${LANGS}; do
-	IUSE+=" linguas_${lang}"
-done
 
 # gmime is actually optional, but it's used by so much of the package
 # it's pointless making it optional. gnome-keyring is required for
@@ -100,12 +97,14 @@ src_install() {
 	einstalldocs
 	rm -rf "${ED}/var/lib/scrollkeeper"
 
-	einfo "Cleaning up locales..."
-	for lang in ${LANGS}; do
-		use "linguas_${lang}" && {
-			einfo "- keeping ${lang}"
-			continue
-		}
-		rm -Rf "${D}"/usr/share/locale/"${lang}" || die
-	done
+	if [[ -n ${LINGUAS+set} ]]; then
+		einfo "Cleaning up locales..."
+		for lang in ${LANGS}; do
+			if has ${lang} ${LINGUAS}; then
+				einfo "- keeping ${lang}"
+			else
+				rm -Rf "${D}"/usr/share/locale/"${lang}" || die
+			fi
+		done
+	fi
 }


^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2018-01-06 12:23 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-11-27 15:04 [gentoo-commits] repo/gentoo:master commit in: mail-client/mail-notification/ Pacho Ramos
  -- strict thread matches above, loose matches on Subject: below --
2018-01-06 12:23 Ulrich Müller
2016-11-27 15:04 Pacho Ramos
2016-11-04  9:40 Pacho Ramos
2016-11-04  9:40 Pacho Ramos
2015-10-10 23:44 Anthony G. Basile

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox