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/minicom/minicom-2.5.ebuild | |
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/minicom/minicom-2.5.ebuild')
-rw-r--r-- | net-dialup/minicom/minicom-2.5.ebuild | 52 |
1 files changed, 52 insertions, 0 deletions
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 +} |