diff options
author | Tim Harder <radhermit@gentoo.org> | 2013-04-06 23:53:35 +0000 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2013-04-06 23:53:35 +0000 |
commit | d98f93134fe7b460291c3ca2d44df0b3671aef44 (patch) | |
tree | 6f89d61e4aa988c1b3ff6417b5062956753e96b5 /net-dialup/minicom | |
parent | Version bump. (diff) | |
download | gentoo-2-d98f93134fe7b460291c3ca2d44df0b3671aef44.tar.gz gentoo-2-d98f93134fe7b460291c3ca2d44df0b3671aef44.tar.bz2 gentoo-2-d98f93134fe7b460291c3ca2d44df0b3671aef44.zip |
Version bump.
(Portage version: 2.2.0_alpha171/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
Diffstat (limited to 'net-dialup/minicom')
-rw-r--r-- | net-dialup/minicom/ChangeLog | 9 | ||||
-rw-r--r-- | net-dialup/minicom/minicom-2.6.2.ebuild | 52 |
2 files changed, 59 insertions, 2 deletions
diff --git a/net-dialup/minicom/ChangeLog b/net-dialup/minicom/ChangeLog index 43442c7fac14..d245b4715d8c 100644 --- a/net-dialup/minicom/ChangeLog +++ b/net-dialup/minicom/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-dialup/minicom -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-dialup/minicom/ChangeLog,v 1.99 2012/05/06 17:46:29 armin76 Exp $ +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-dialup/minicom/ChangeLog,v 1.100 2013/04/06 23:53:35 radhermit Exp $ + +*minicom-2.6.2 (06 Apr 2013) + + 06 Apr 2013; Tim Harder <radhermit@gentoo.org> +minicom-2.6.2.ebuild: + Version bump. 06 May 2012; Raúl Porcel <armin76@gentoo.org> minicom-2.6.ebuild: alpha/ia64/s390/sh/sparc stable wrt #409607 diff --git a/net-dialup/minicom/minicom-2.6.2.ebuild b/net-dialup/minicom/minicom-2.6.2.ebuild new file mode 100644 index 000000000000..792a9315b646 --- /dev/null +++ b/net-dialup/minicom/minicom-2.6.2.ebuild @@ -0,0 +1,52 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-dialup/minicom/minicom-2.6.2.ebuild,v 1.1 2013/04/06 23:53:35 radhermit Exp $ + +EAPI=5 + +inherit eutils + +STUPID_NUM="3869" + +DESCRIPTION="Serial Communication Program" +HOMEPAGE="http://alioth.debian.org/projects/minicom" +SRC_URI="http://alioth.debian.org/download.php/${STUPID_NUM}/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~ia64-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_}" + +src_prepare() { + epatch "${FILESDIR}"/${PN}-2.3-gentoo-runscript.patch +} + +src_configure() { + econf \ + --sysconfdir="${EPREFIX}"/etc/${PN} \ + $(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 +} |