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 622991396D9 for ; Fri, 3 Nov 2017 13:26:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A3A06E0C7C; Fri, 3 Nov 2017 13:26:53 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 84CF7E0CA4 for ; Fri, 3 Nov 2017 13:26:53 +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 16523341788 for ; Fri, 3 Nov 2017 13:26:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9C4AA9385 for ; Fri, 3 Nov 2017 13:26:50 +0000 (UTC) From: "Michael Palimaka" 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 Palimaka" Message-ID: <1509715601.dfc2b22c43836c5d073b68b1a8dff320134fb868.kensington@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/pal/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-misc/pal/pal-0.4.3-r1.ebuild X-VCS-Directories: app-misc/pal/ X-VCS-Committer: kensington X-VCS-Committer-Name: Michael Palimaka X-VCS-Revision: dfc2b22c43836c5d073b68b1a8dff320134fb868 X-VCS-Branch: master Date: Fri, 3 Nov 2017 13:26:50 +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: 07144263-44b3-4766-a75e-7a5115e45ee8 X-Archives-Hash: 6a42b70e95bb62fc2e228718da590160 commit: dfc2b22c43836c5d073b68b1a8dff320134fb868 Author: Michael Palimaka gentoo org> AuthorDate: Fri Nov 3 13:19:18 2017 +0000 Commit: Michael Palimaka gentoo org> CommitDate: Fri Nov 3 13:26:41 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dfc2b22c app-misc/pal: remove 0.4.3-r1 Package-Manager: Portage-2.3.8, Repoman-2.3.4 app-misc/pal/pal-0.4.3-r1.ebuild | 54 ---------------------------------------- 1 file changed, 54 deletions(-) diff --git a/app-misc/pal/pal-0.4.3-r1.ebuild b/app-misc/pal/pal-0.4.3-r1.ebuild deleted file mode 100644 index 132f917792b..00000000000 --- a/app-misc/pal/pal-0.4.3-r1.ebuild +++ /dev/null @@ -1,54 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 -inherit eutils prefix toolchain-funcs - -DESCRIPTION="pal command-line calendar program" -HOMEPAGE="http://palcal.sourceforge.net/" -SRC_URI="mirror://sourceforge/palcal/${P}.tgz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ~hppa ppc x86 ~amd64-linux ~x86-linux ~x86-macos" -IUSE="nls" - -RDEPEND=" - >=dev-libs/glib-2.0 - nls? ( virtual/libintl ) - sys-libs/ncurses - sys-libs/readline -" -DEPEND=" - ${RDEPEND} - nls? ( sys-devel/gettext ) - virtual/pkgconfig -" - -S=${WORKDIR}/${P}/src - -src_prepare() { - epatch "${FILESDIR}"/${PV}-strip.patch - epatch "${FILESDIR}"/${PV}-ldflags.patch - epatch "${FILESDIR}"/${P}-pkg_config.patch - epatch "${FILESDIR}"/${P}-prefix.patch - - eprefixify Makefile.defs input.c Makefile - sed -i -e 's/ -o root//g' {.,convert}/Makefile || die - - tc-export PKG_CONFIG -} - -src_compile() { - emake CC="$(tc-getCC)" OPT="${CFLAGS}" LDOPT="${LDFLAGS}" -} - -src_install() { - emake DESTDIR="${D}" install-man install-bin install-share - - if use nls; then - emake DESTDIR="${D}" install-mo - fi - - dodoc "${WORKDIR}"/${P}/{ChangeLog,doc/example.css} -}