summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Elio Pettenò <flameeyes@gentoo.org>2006-03-07 14:06:43 +0000
committerDiego Elio Pettenò <flameeyes@gentoo.org>2006-03-07 14:06:43 +0000
commit47ad58a520a965bfa6c255976305cffd5e76adae (patch)
tree48a94d54c433cdd6ef18de30ca213ce7ede80d87 /media-sound/cvoicecontrol
parentDrop virtual/libc dependency. Respect CC and LDFLAGS, don't strip binaries un... (diff)
downloadhistorical-47ad58a520a965bfa6c255976305cffd5e76adae.tar.gz
historical-47ad58a520a965bfa6c255976305cffd5e76adae.tar.bz2
historical-47ad58a520a965bfa6c255976305cffd5e76adae.zip
Drop virtual/libc dependency. Use sed -i -e.
Package-Manager: portage-2.1_pre5-r4
Diffstat (limited to 'media-sound/cvoicecontrol')
-rw-r--r--media-sound/cvoicecontrol/ChangeLog8
-rw-r--r--media-sound/cvoicecontrol/Manifest10
-rw-r--r--media-sound/cvoicecontrol/cvoicecontrol-0.9_alpha.ebuild12
3 files changed, 21 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/Manifest b/media-sound/cvoicecontrol/Manifest
index 025ac49f71e9..a9aaa0ffbffa 100644
--- a/media-sound/cvoicecontrol/Manifest
+++ b/media-sound/cvoicecontrol/Manifest
@@ -1,3 +1,6 @@
+-----BEGIN PGP SIGNED MESSAGE-----
+Hash: SHA1
+
MD5 9d43621af3692d68291bb07adf5d0c10 ChangeLog 1604
RMD160 8380b22424b816f3c8de243b0eb78fcee8936ab2 ChangeLog 1604
SHA256 8a2e7a15eb4e3392eae32354e83325f644706226de58cdfa3ff40aa0350c1b92 ChangeLog 1604
@@ -13,3 +16,10 @@ SHA256 8304d989ae99b86a164b8158038781ca27286f1e9287e4e5fd6d6e4626be97cf files/di
MD5 a1eaeb2ae801daeb712c90c060e922dc metadata.xml 158
RMD160 6842e2189a50bd8a98e84802c38180ac1421c00e metadata.xml 158
SHA256 dfb5b47e6836db39fb187301dfcff1c2605e91d13d21db160806a563d8c75f9b metadata.xml 158
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1.4.2.1 (GNU/Linux)
+
+iD8DBQFEDZOAAiZjviIA2XgRAuRaAKCFXQ2qiCehS+c9qQE2T2ct/4UkXACg3dUJ
+1okJY+tc3/kGEGlAL8GwGMc=
+=1Izy
+-----END PGP SIGNATURE-----
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
}