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 832B1139694 for ; Sun, 5 Mar 2017 20:02:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AADB921C06C; Sun, 5 Mar 2017 20:02:35 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 7CA4321C06C for ; Sun, 5 Mar 2017 20:02:30 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0B1943417B1 for ; Sun, 5 Mar 2017 20:02:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9EE0F5D91 for ; Sun, 5 Mar 2017 20:02:27 +0000 (UTC) From: "Robin H. Johnson" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Robin H. Johnson" Message-ID: <1488744141.4cc9827ebd8e7c50e8ca0cd2449e4894a7acb88f.robbat2@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-dialup/minicom/files/, net-dialup/minicom/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-dialup/minicom/files/minicom-2.7-lockdir.patch net-dialup/minicom/minicom-2.7-r1.ebuild X-VCS-Directories: net-dialup/minicom/ net-dialup/minicom/files/ X-VCS-Committer: robbat2 X-VCS-Committer-Name: Robin H. Johnson X-VCS-Revision: 4cc9827ebd8e7c50e8ca0cd2449e4894a7acb88f X-VCS-Branch: master Date: Sun, 5 Mar 2017 20:02:27 +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: 4d524a37-2c16-4324-90b9-65d989345b64 X-Archives-Hash: db37f9b3912cdc3c760dad2dd89ef62d commit: 4cc9827ebd8e7c50e8ca0cd2449e4894a7acb88f Author: Robin H. Johnson gentoo org> AuthorDate: Sun Mar 5 19:48:41 2017 +0000 Commit: Robin H. Johnson gentoo org> CommitDate: Sun Mar 5 20:02:21 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4cc9827e net-dialup/minicom: Force lockdir to /var/lock Upstream uses automagic detection of the first existing directory of: /etc/locks /var/lock /usr/spool/locks /var/spool/locks /var/spool/lock /usr/spool/uucp /var/spool/uucp /var/run While many of these will exist in a live system, that was not a safe assumption during a chrooted package build, such as stage building. The init system is responsible for creating /var/lock, so force the lockdir to that. Package-Manager: portage-2.3.3 Signed-off-by: Robin H. Johnson gentoo.org> net-dialup/minicom/files/minicom-2.7-lockdir.patch | 14 +++++ net-dialup/minicom/minicom-2.7-r1.ebuild | 59 ++++++++++++++++++++++ 2 files changed, 73 insertions(+) diff --git a/net-dialup/minicom/files/minicom-2.7-lockdir.patch b/net-dialup/minicom/files/minicom-2.7-lockdir.patch new file mode 100644 index 00000000000..acbdcbe902b --- /dev/null +++ b/net-dialup/minicom/files/minicom-2.7-lockdir.patch @@ -0,0 +1,14 @@ +--- minicom-2.7.orig/configure.in 2013-12-31 07:14:09.000000000 -0800 ++++ minicom-2.7/configure.in 2017-03-05 11:25:01.379020326 -0800 +@@ -217,7 +217,10 @@ + + if test "x$UUCPLOCK" != x + then +- if test -d $UUCPLOCK ++ dnl If a lock directory was manually specified, do not test it actually ++ dnl exists, as that might not be true during a chroot build, and the ++ dnl packager is responsible for making sure it exists at runtime. ++ if true + then + AC_MSG_RESULT($UUCPLOCK) + AC_DEFINE_UNQUOTED(UUCPLOCK, "$UUCPLOCK", [Lock directory]) diff --git a/net-dialup/minicom/minicom-2.7-r1.ebuild b/net-dialup/minicom/minicom-2.7-r1.ebuild new file mode 100644 index 00000000000..fece4e19b3e --- /dev/null +++ b/net-dialup/minicom/minicom-2.7-r1.ebuild @@ -0,0 +1,59 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +inherit eutils autotools + +STUPID_NUM="3977" +DESCRIPTION="Serial Communication Program" +HOMEPAGE="http://alioth.debian.org/projects/minicom" +SRC_URI="https://alioth.debian.org/frs/download.php/file/${STUPID_NUM}/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux" +IUSE="nls" + +COMMON_DEPEND="sys-libs/ncurses:=" +DEPEND="${COMMON_DEPEND} + nls? ( sys-devel/gettext )" +RDEPEND="${COMMON_DEPEND} + net-dialup/lrzsz" + +DOCS="AUTHORS ChangeLog NEWS README doc/minicom.FAQ" + +# Supported languages and translated documentation +# Be sure all languages are prefixed with a single space! +MY_AVAILABLE_LINGUAS=" cs da de es fi fr hu id ja nb pl pt_BR ro ru rw sv vi zh_TW" +IUSE="${IUSE} ${MY_AVAILABLE_LINGUAS// / linguas_}" + +PATCHES=( + "${FILESDIR}"/${PN}-2.3-gentoo-runscript.patch + "${FILESDIR}"/${PN}-2.7-lockdir.patch +) + +src_prepare() { + default + mv "${S}"/configure.{in,ac} + eautoreconf +} + +src_configure() { + # Lockdir must exist if not manually specified. + # /var/lock is created by openrc. + LOCKDIR=/var/lock + econf \ + --sysconfdir="${EPREFIX}"/etc/${PN} \ + --enable-lock-dir="${LOCKDIR}" \ + $(use_enable nls) +} + +src_install() { + default + insinto /etc/minicom + doins "${FILESDIR}"/minirc.dfl +} + +pkg_preinst() { + [[ -s ${EROOT}/etc/minicom/minirc.dfl ]] && rm -f "${ED}"/etc/minicom/minirc.dfl +}