diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2006-03-18 01:27:05 +0000 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2006-03-18 01:27:05 +0000 |
commit | 4ff6212d823f712e411023e6131935fdb758dc76 (patch) | |
tree | 5727ba24e9b8aadc6ec15f6403ac740186efe24c /app-admin/cancd/cancd-0.1.0-r1.ebuild | |
parent | Version bumo, closes bug #115973, by Karol Jurak <karol.jurak at gmail.com>. ... (diff) | |
download | historical-4ff6212d823f712e411023e6131935fdb758dc76.tar.gz historical-4ff6212d823f712e411023e6131935fdb758dc76.tar.bz2 historical-4ff6212d823f712e411023e6131935fdb758dc76.zip |
Clean up upstream code slightly, so it works better.
Package-Manager: portage-2.1_pre6-r3
Diffstat (limited to 'app-admin/cancd/cancd-0.1.0-r1.ebuild')
-rw-r--r-- | app-admin/cancd/cancd-0.1.0-r1.ebuild | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/app-admin/cancd/cancd-0.1.0-r1.ebuild b/app-admin/cancd/cancd-0.1.0-r1.ebuild index 17570b703c92..cb70b49631fb 100644 --- a/app-admin/cancd/cancd-0.1.0-r1.ebuild +++ b/app-admin/cancd/cancd-0.1.0-r1.ebuild @@ -1,6 +1,8 @@ -# 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/app-admin/cancd/cancd-0.1.0-r1.ebuild,v 1.1 2005/11/15 19:27:35 robbat2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-admin/cancd/cancd-0.1.0-r1.ebuild,v 1.2 2006/03/18 01:27:05 robbat2 Exp $ + +inherit eutils DESCRIPTION="This is the CA NetConsole Daemon, a daemon to receive output from the Linux netconsole driver." @@ -15,10 +17,11 @@ RDEPEND="${DEPEND}" src_unpack() { unpack ${A} + epatch ${FILESDIR}/${P}-c-cleanup.patch # slight makefile cleanup sed -i.orig \ -e '/^CFLAGS/s,-g,,' \ - -e '/^CFLAGS/s,-O2,,' \ + -e '/^CFLAGS/s,-O2,-Wall -W -Wextra -Wundef -Wendif-labels -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Wsign-compare -Waggregate-return -Wstrict-prototypes -Wredundant-decls -Wunreachable-code -Wlong-long,' \ -e '/rm cancd cancd.o/s,rm,rm -f,' \ ${S}/Makefile } |