From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 79A3B139694 for ; Sun, 26 Mar 2017 18:01:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 98A6421C038; Sun, 26 Mar 2017 18:00:59 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 7590D21C038 for ; Sun, 26 Mar 2017 18:00:59 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 97FA4341665 for ; Sun, 26 Mar 2017 18:00:58 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DAF1170B7 for ; Sun, 26 Mar 2017 18:00:56 +0000 (UTC) From: "Michael Orlitzky" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Orlitzky" Message-ID: <1490551190.cb78e0314d0ef33c18a861c11683f09f99cbf7c0.mjo@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-wm/wmii/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-wm/wmii/wmii-3.9.2-r4.ebuild X-VCS-Directories: x11-wm/wmii/ X-VCS-Committer: mjo X-VCS-Committer-Name: Michael Orlitzky X-VCS-Revision: cb78e0314d0ef33c18a861c11683f09f99cbf7c0 X-VCS-Branch: master Date: Sun, 26 Mar 2017 18:00:56 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: eaeadf36-8ad9-4400-9a2b-24672901cc06 X-Archives-Hash: 833d985b2c53bf91b41c4e90ab9566f8 commit: cb78e0314d0ef33c18a861c11683f09f99cbf7c0 Author: Michael Orlitzky gentoo org> AuthorDate: Sun Mar 26 17:59:50 2017 +0000 Commit: Michael Orlitzky gentoo org> CommitDate: Sun Mar 26 17:59:50 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cb78e031 x11-wm/wmii: remove unused version 3.9.2-r4. Package-Manager: Portage-2.3.3, Repoman-2.3.1 x11-wm/wmii/wmii-3.9.2-r4.ebuild | 78 ---------------------------------------- 1 file changed, 78 deletions(-) diff --git a/x11-wm/wmii/wmii-3.9.2-r4.ebuild b/x11-wm/wmii/wmii-3.9.2-r4.ebuild deleted file mode 100644 index 711b7877335..00000000000 --- a/x11-wm/wmii/wmii-3.9.2-r4.ebuild +++ /dev/null @@ -1,78 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 -inherit flag-o-matic multilib toolchain-funcs - -MY_P=wmii+ixp-${PV} - -DESCRIPTION="A dynamic window manager for X11" -HOMEPAGE="http://wmii.suckless.org/" -SRC_URI="http://dl.suckless.org/wmii/${MY_P}.tbz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~x86 ~x86-fbsd" -IUSE="" - -COMMON_DEPEND=" - >=sys-libs/libixp-0.5_p20110208-r3 - x11-libs/libXft - x11-libs/libXext - x11-libs/libXrandr - x11-libs/libXrender - x11-libs/libX11 - x11-libs/libXinerama - >=media-libs/freetype-2 -" -RDEPEND="${COMMON_DEPEND} - x11-apps/xmessage - x11-apps/xsetroot - media-fonts/font-misc-misc -" -DEPEND="${COMMON_DEPEND} - virtual/pkgconfig -" - -S=${WORKDIR}/${MY_P} - -# Force dynamic linking, bug #273332 -MAKEOPTS="${MAKEOPTS} STATIC= -j1" - -src_prepare() { - mywmiiconf=( - PREFIX=/usr - DOC=/usr/share/doc/${PF} - ETC=/etc - LIBDIR=/usr/$(get_libdir) - CC="$(tc-getCC) -c" - LD="$(tc-getCC)" - AR="$(tc-getAR) crs" - DESTDIR="${D}" - LIBIXP=/usr/$(get_libdir)/libixp.so - ) - - # punt internal copy of sys-libs/libixp #323037 - rm -f include/ixp{,_srvutil}.h || die - sed -i -e '/libixp/d' Makefile || die - - sed -i -e "/BINSH \!=/d" mk/hdr.mk || die #335083 - sed -i -e 's/-lXext/& -lXrender -lX11/' cmd/Makefile || die #369115 -} - -src_compile() { - append-flags -I/usr/include/freetype2 - emake "${mywmiiconf[@]}" -} - -src_install() { - emake "${mywmiiconf[@]}" install - dodoc NEWS NOTES README TODO - - echo wmii > "${T}"/wmii - exeinto /etc/X11/Sessions - doexe "${T}"/wmii - - insinto /usr/share/xsessions - doins "${FILESDIR}"/${PN}.desktop -}