diff options
author | Sergey Popov <pinkbyte@gentoo.org> | 2013-03-07 10:55:14 +0000 |
---|---|---|
committer | Sergey Popov <pinkbyte@gentoo.org> | 2013-03-07 10:55:14 +0000 |
commit | 05f449d3f6702e1d5380ed0d7406501bd3b34ea8 (patch) | |
tree | b25f3605a7fed6aa499458ea3594153f0cca292b /net-dialup/cutecom | |
parent | Version bump, bring back USE='readpcap' (diff) | |
download | gentoo-2-05f449d3f6702e1d5380ed0d7406501bd3b34ea8.tar.gz gentoo-2-05f449d3f6702e1d5380ed0d7406501bd3b34ea8.tar.bz2 gentoo-2-05f449d3f6702e1d5380ed0d7406501bd3b34ea8.zip |
Revision bump: EAPI 5, install desktop file properly, wrt bug #299268. Drop old revision
(Portage version: 2.2.0_alpha165/cvs/Linux x86_64, signed Manifest commit with key 0x1F357D42)
Diffstat (limited to 'net-dialup/cutecom')
-rw-r--r-- | net-dialup/cutecom/ChangeLog | 9 | ||||
-rw-r--r-- | net-dialup/cutecom/cutecom-0.22.0-r1.ebuild (renamed from net-dialup/cutecom/cutecom-0.22.0.ebuild) | 24 |
2 files changed, 29 insertions, 4 deletions
diff --git a/net-dialup/cutecom/ChangeLog b/net-dialup/cutecom/ChangeLog index 3daa932f8f7d..d4a19927653a 100644 --- a/net-dialup/cutecom/ChangeLog +++ b/net-dialup/cutecom/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for net-dialup/cutecom # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-dialup/cutecom/ChangeLog,v 1.27 2013/03/02 22:47:24 hwoarang Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-dialup/cutecom/ChangeLog,v 1.28 2013/03/07 10:55:14 pinkbyte Exp $ + +*cutecom-0.22.0-r1 (07 Mar 2013) + + 07 Mar 2013; Sergey Popov <pinkbyte@gentoo.org> -cutecom-0.22.0.ebuild, + +cutecom-0.22.0-r1.ebuild: + Revision bump: EAPI 5, install desktop file properly, wrt bug #299268. Drop + old revision 02 Mar 2013; Markos Chandras <hwoarang@gentoo.org> cutecom-0.20.0-r1.ebuild, cutecom-0.22.0.ebuild: diff --git a/net-dialup/cutecom/cutecom-0.22.0.ebuild b/net-dialup/cutecom/cutecom-0.22.0-r1.ebuild index e527abaccec5..d0dddae8dac5 100644 --- a/net-dialup/cutecom/cutecom-0.22.0.ebuild +++ b/net-dialup/cutecom/cutecom-0.22.0-r1.ebuild @@ -1,10 +1,10 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-dialup/cutecom/cutecom-0.22.0.ebuild,v 1.3 2013/03/02 22:47:24 hwoarang Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-dialup/cutecom/cutecom-0.22.0-r1.ebuild,v 1.1 2013/03/07 10:55:14 pinkbyte Exp $ -EAPI=2 +EAPI=5 -inherit eutils cmake-utils +inherit cmake-utils DESCRIPTION="CuteCom is a serial terminal, like minicom, written in qt" HOMEPAGE="http://cutecom.sourceforge.net" @@ -20,3 +20,21 @@ DEPEND="dev-qt/qtcore:4 dev-qt/qt3support:4" RDEPEND="${DEPEND} net-dialup/lrzsz" + +src_prepare() { + sed -i \ + -e '/Path/d' \ + -e '/TerminalOptions/d' \ + -e '/BinaryPattern/d' \ + -e '/Terminal/s/0/false/' \ + ${PN}.desktop || die 'sed on desktop file failed' + + cmake-utils_src_prepare +} + +src_install() { + cmake-utils_src_install + + # desktop icon does not installed by cmake without KDE3 + domenu ${PN}.desktop +} |