diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2006-03-07 14:06:43 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2006-03-07 14:06:43 +0000 |
commit | 745e34089cb845c1fea3b38dcfdf4ecbcf6279f6 (patch) | |
tree | 7090b18d23d9828f95666a8d99f2d94960d42820 /media-sound/cvoicecontrol | |
parent | Drop virtual/libc dependency. Respect CC and LDFLAGS, don't strip binaries un... (diff) | |
download | gentoo-2-745e34089cb845c1fea3b38dcfdf4ecbcf6279f6.tar.gz gentoo-2-745e34089cb845c1fea3b38dcfdf4ecbcf6279f6.tar.bz2 gentoo-2-745e34089cb845c1fea3b38dcfdf4ecbcf6279f6.zip |
Drop virtual/libc dependency. Use sed -i -e.
(Portage version: 2.1_pre5-r4)
Diffstat (limited to 'media-sound/cvoicecontrol')
-rw-r--r-- | media-sound/cvoicecontrol/ChangeLog | 8 | ||||
-rw-r--r-- | media-sound/cvoicecontrol/cvoicecontrol-0.9_alpha.ebuild | 12 |
2 files changed, 11 insertions, 9 deletions
diff --git a/media-sound/cvoicecontrol/ChangeLog b/media-sound/cvoicecontrol/ChangeLog index 99e987946eae..ad7220212416 100644 --- a/media-sound/cvoicecontrol/ChangeLog +++ b/media-sound/cvoicecontrol/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for media-sound/cvoicecontrol -# Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/cvoicecontrol/ChangeLog,v 1.12 2005/08/07 12:55:38 hansmi Exp $ +# Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/cvoicecontrol/ChangeLog,v 1.13 2006/03/07 14:06:42 flameeyes Exp $ + + 07 Mar 2006; Diego Pettenò <flameeyes@gentoo.org> + cvoicecontrol-0.9_alpha.ebuild: + Drop virtual/libc dependency. Use sed -i -e. 07 Aug 2005; Michael Hanselmann <hansmi@gentoo.org> cvoicecontrol-0.9_alpha.ebuild: diff --git a/media-sound/cvoicecontrol/cvoicecontrol-0.9_alpha.ebuild b/media-sound/cvoicecontrol/cvoicecontrol-0.9_alpha.ebuild index 6c163ced5140..b3780ca2f9bf 100644 --- a/media-sound/cvoicecontrol/cvoicecontrol-0.9_alpha.ebuild +++ b/media-sound/cvoicecontrol/cvoicecontrol-0.9_alpha.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2005 Gentoo Foundation +# Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/cvoicecontrol/cvoicecontrol-0.9_alpha.ebuild,v 1.15 2005/08/07 12:55:38 hansmi Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/cvoicecontrol/cvoicecontrol-0.9_alpha.ebuild,v 1.16 2006/03/07 14:06:43 flameeyes Exp $ IUSE="" @@ -13,8 +13,6 @@ DESCRIPTION="Console based speech recognition system" HOMEPAGE="http://www.kiecza.net/daniel/linux/" SRC_URI="http://www.kiecza.net/daniel/linux/${MY_P}.tar.bz2" -DEPEND="virtual/libc" - SLOT="0" LICENSE="GPL-2" @@ -23,16 +21,16 @@ KEYWORDS="amd64 ppc sparc x86" src_unpack() { unpack ${A} - epatch ${FILESDIR}/${P}-gentoo.diff + epatch "${FILESDIR}/${P}-gentoo.diff" #remove "docs" from SUBDIRS in Makefile.in #Makefile will try to install few html files directly under the /usr #much easier to do with dohtml cd ${S}/cvoicecontrol/ - sed -i "s:SUBDIRS = docs:#SUBDIRS = docs:" Makefile.in + sed -i -e "s:SUBDIRS = docs:#SUBDIRS = docs:" Makefile.in cd ${S} - sed -i "s/install-data-am: install-data-local/install-data-am:/" Makefile.in + sed -i -e "s/install-data-am: install-data-local/install-data-am:/" Makefile.in } |