diff options
author | Tim Harder <radhermit@gentoo.org> | 2011-02-03 21:27:39 +0000 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2011-02-03 21:27:39 +0000 |
commit | 1bfc3677eaf9e81e374cb9f1b9f213de42150f71 (patch) | |
tree | 5de8a43feaa8375f759c4959f909e3b1dacca403 /net-dialup | |
parent | Fix dependencies (diff) | |
download | gentoo-2-1bfc3677eaf9e81e374cb9f1b9f213de42150f71.tar.gz gentoo-2-1bfc3677eaf9e81e374cb9f1b9f213de42150f71.tar.bz2 gentoo-2-1bfc3677eaf9e81e374cb9f1b9f213de42150f71.zip |
Version bump. Update to EAPI 4 and add myself as maintainer.
(Portage version: 2.2.0_alpha19/cvs/Linux x86_64)
Diffstat (limited to 'net-dialup')
-rw-r--r-- | net-dialup/minicom/ChangeLog | 10 | ||||
-rw-r--r-- | net-dialup/minicom/metadata.xml | 10 | ||||
-rw-r--r-- | net-dialup/minicom/minicom-2.5.ebuild | 52 |
3 files changed, 68 insertions, 4 deletions
diff --git a/net-dialup/minicom/ChangeLog b/net-dialup/minicom/ChangeLog index f82339466eca..780bdf28abc6 100644 --- a/net-dialup/minicom/ChangeLog +++ b/net-dialup/minicom/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for net-dialup/minicom -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-dialup/minicom/ChangeLog,v 1.80 2010/05/23 18:35:59 armin76 Exp $ +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-dialup/minicom/ChangeLog,v 1.81 2011/02/03 21:27:39 radhermit Exp $ + +*minicom-2.5 (03 Feb 2011) + + 03 Feb 2011; Tim Harder <radhermit@gentoo.org> +minicom-2.5.ebuild, + metadata.xml: + Version bump. Update to EAPI 4 and add myself as maintainer. 23 May 2010; Raúl Porcel <armin76@gentoo.org> minicom-2.4.ebuild: alpha/arm/ia64/s390/sh/sparc stable wrt #317703 diff --git a/net-dialup/minicom/metadata.xml b/net-dialup/minicom/metadata.xml index ecce0d728cee..860bc36c5544 100644 --- a/net-dialup/minicom/metadata.xml +++ b/net-dialup/minicom/metadata.xml @@ -2,6 +2,12 @@ <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> <pkgmetadata> <herd>net-dialup</herd> - <longdescription>Minicom is a menu driven communications program. It emulates ANSI and VT102 terminals. -It has a dialing directory and auto zmodem download.</longdescription> + <maintainer> + <email>radhermit@gentoo.org</email> + <name>Tim Harder</name> + </maintainer> + <longdescription lang="en"> + Minicom is a menu driven communications program. It emulates ANSI and VT102 + terminals. It has a dialing directory and auto zmodem download. + </longdescription> </pkgmetadata> diff --git a/net-dialup/minicom/minicom-2.5.ebuild b/net-dialup/minicom/minicom-2.5.ebuild new file mode 100644 index 000000000000..a0d27ebe8056 --- /dev/null +++ b/net-dialup/minicom/minicom-2.5.ebuild @@ -0,0 +1,52 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-dialup/minicom/minicom-2.5.ebuild,v 1.1 2011/02/03 21:27:39 radhermit Exp $ + +EAPI="4" + +inherit eutils + +STUPID_NUM="3487" + +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 ~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_src_install + insinto /etc/minicom + doins "${FILESDIR}"/minirc.dfl +} + +pkg_preinst() { + [[ -s ${EROOT}/etc/minicom/minirc.dfl ]] \ + && rm -f "${ED}"/etc/minicom/minirc.dfl +} |