public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: net-im/ayttm/files/, profiles/, net-im/ayttm/
@ 2019-04-20  8:05 Michał Górny
  0 siblings, 0 replies; only message in thread
From: Michał Górny @ 2019-04-20  8:05 UTC (permalink / raw
  To: gentoo-commits

commit:     e775862469084fa316eb7864858275939c523571
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Apr 20 08:04:42 2019 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Apr 20 08:04:42 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e7758624

net-im/ayttm: Remove last-rited pkg

Closes: https://bugs.gentoo.org/676242
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 net-im/ayttm/Manifest                              |  1 -
 net-im/ayttm/ayttm-0.6.3-r1.ebuild                 | 63 ----------------------
 net-im/ayttm/files/ayttm-0.6.3-opt-webcam.patch    | 28 ----------
 .../ayttm/files/ayttm-0.6.3-opt-xscreensaver.patch | 16 ------
 net-im/ayttm/metadata.xml                          | 18 -------
 profiles/package.mask                              |  2 -
 6 files changed, 128 deletions(-)

diff --git a/net-im/ayttm/Manifest b/net-im/ayttm/Manifest
deleted file mode 100644
index 781aa412335..00000000000
--- a/net-im/ayttm/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST ayttm-0.6.3.tar.bz2 1377010 BLAKE2B 692bac07386783f98a4e873b93f8c2a088fb954f39613ec47d151433e59b578f532f80d47b6dc7caab789ea06024a4a82d0f0c8264963d19c076e1b524495b19 SHA512 8480b9e6b6e1c45a3cdd16d991ebf7e12c400d282243f5f44715ba20d4db4523a0343fe49016f7dba3e1a23d963eef52fbb0823c27aedec0db33457319138270

diff --git a/net-im/ayttm/ayttm-0.6.3-r1.ebuild b/net-im/ayttm/ayttm-0.6.3-r1.ebuild
deleted file mode 100644
index 2f183105a74..00000000000
--- a/net-im/ayttm/ayttm-0.6.3-r1.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit autotools eutils multilib
-
-DESCRIPTION="A multi-protocol instant messaging client"
-HOMEPAGE="http://ayttm.sourceforge.net/"
-SRC_URI="mirror://sourceforge/ayttm/${PV}/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="crypt icq irc xmpp lj msn nls oscar smtp xscreensaver yahoo"
-
-RDEPEND="app-text/enchant
-	dev-libs/glib:2
-	dev-libs/openssl:0=
-	virtual/libiconv
-	x11-libs/gdk-pixbuf
-	x11-libs/gtk+:2
-	x11-libs/libX11
-	x11-libs/libXpm
-	x11-libs/pango
-	crypt? ( app-crypt/gpgme )
-	xscreensaver? ( x11-libs/libXScrnSaver )
-	yahoo? ( net-libs/libyahoo2 )"
-DEPEND="${RDEPEND}
-	sys-devel/bison
-	sys-devel/flex
-	nls? ( sys-devel/gettext )"
-
-src_prepare() {
-	epatch "${FILESDIR}"/${P}-opt-xscreensaver.patch \
-		"${FILESDIR}"/${P}-opt-webcam.patch
-	eautoreconf
-}
-
-src_configure() {
-	econf \
-		$(use_enable crypt aycryption) \
-		--disable-esd \
-		$(use_enable icq) \
-		$(use_enable irc) \
-		$(use_enable xmpp jabber) \
-		$(use_enable lj) \
-		$(use_enable msn) \
-		$(use_enable nls) \
-		$(use_enable oscar) \
-		$(use_enable smtp) \
-		$(use_enable xscreensaver) \
-		$(use_enable yahoo) \
-		--disable-webcam \
-		--disable-arts \
-		--enable-posix-dlopen \
-		--disable-static
-}
-
-src_install() {
-	emake DESTDIR="${D}" install
-	dodoc AUTHORS ChangeLog README README.LINUX TODO
-	rm -f "${D}"/usr/$(get_libdir)/${PN}/*.la
-}

diff --git a/net-im/ayttm/files/ayttm-0.6.3-opt-webcam.patch b/net-im/ayttm/files/ayttm-0.6.3-opt-webcam.patch
deleted file mode 100644
index e805d90746d..00000000000
--- a/net-im/ayttm/files/ayttm-0.6.3-opt-webcam.patch
+++ /dev/null
@@ -1,28 +0,0 @@
-Make the building of the webcam-related plugins optional.
-
-Patch by Kevin McCarthy <signals@gentoo.org>
-
---- configure.ac
-+++ configure.ac
-@@ -436,6 +439,10 @@
- 		AC_MSG_WARN(You need gpgme to compile the aycryption module))
- fi
- 
-+if test "$enable_webcam" != no; then
-+	OPTIONAL_PLUG_DIR="$OPTIONAL_PLUG_DIR image_filter"
-+fi
-+
- ###########################################################################
- # End Optional Modules
- ###########################################################################
---- modules/Makefile.am
-+++ modules/Makefile.am
-@@ -1,7 +1,7 @@
- DIST_SUBDIRS = aim-oscar irc jabber msn2 yahoo2 smtp importers \
- livejournal utility aycryption smileys image_filter
- 
--SUBDIRS = @OPTIONAL_PLUG_DIR@ importers utility smileys image_filter
-+SUBDIRS = @OPTIONAL_PLUG_DIR@ importers utility smileys
- 
- # Gets rid of the datarootdir warning
- datarootdir=@datarootdir@

diff --git a/net-im/ayttm/files/ayttm-0.6.3-opt-xscreensaver.patch b/net-im/ayttm/files/ayttm-0.6.3-opt-xscreensaver.patch
deleted file mode 100644
index 7c6f09f5117..00000000000
--- a/net-im/ayttm/files/ayttm-0.6.3-opt-xscreensaver.patch
+++ /dev/null
@@ -1,16 +0,0 @@
-Add --enable-xscreensaver to configure for USE flag support
-
-Patch by Kevin McCarthy <signals@gentoo.org>
-
---- configure.ac
-+++ configure.ac
-@@ -316,6 +316,9 @@
- 	 #endif
- 	])
- 
-+AC_ARG_ENABLE(xscreensaver, AC_HELP_STRING([--enable-xscreensaver],
-+        [compile with X Screensaver]), [have_xss=$enableval], [have_xss=no] )
-+
- if test "$have_xss" = yes; then
- 	# Let's figure out what library it's in...
- 	

diff --git a/net-im/ayttm/metadata.xml b/net-im/ayttm/metadata.xml
deleted file mode 100644
index 5cbaca7524d..00000000000
--- a/net-im/ayttm/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-needed -->
-	<longdescription lang="en">
-		Ayttm is a multi-protocol instant messaging client with some novel features
-		such as the ability to connect to livejournal.com and the ability to send
-		short messages via RFC2821 SMTP.
-	</longdescription>
-	<use>
-		<flag name="irc">Enable Internet Relay Chat support</flag>
-		<flag name="lj">Enable livejournal.com support</flag>
-		<flag name="smtp">Adds support for sending messages via RFC2821 SMTP</flag>
-	</use>
-	<upstream>
-		<remote-id type="sourceforge">ayttm</remote-id>
-	</upstream>
-</pkgmetadata>

diff --git a/profiles/package.mask b/profiles/package.mask
index dbb9b426542..418e00da37a 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -617,7 +617,6 @@ x11-libs/hippo-canvas
 # net-analyzer/nodebrain: #674796, last commits in 2015
 # net-analyzer/postal: #677478, last release in 2012
 # net-ftp/netkit-ftpd: #676000, last rel in 2000, also #236290, #540330
-# net-im/ayttm: #676242, last commits in 2011 (+ one secfix in 2015)
 #
 # Removal in 30 days.
 app-crypt/keynote
@@ -632,7 +631,6 @@ net-analyzer/ffp
 net-analyzer/nodebrain
 net-analyzer/postal
 net-ftp/netkit-ftpd
-net-im/ayttm
 
 # Miroslav Šulc <fordfrog@gentoo.org> (19 Mar 2019)
 # Depends on >=virtual/{jdk,jre}-11 which is masked


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2019-04-20 23:22 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-04-20  8:05 [gentoo-commits] repo/gentoo:master commit in: net-im/ayttm/files/, profiles/, net-im/ayttm/ Michał Górny

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