From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1NQmCa-0002zZ-BY for garchives@archives.gentoo.org; Fri, 01 Jan 2010 18:26:20 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 314BBE07A6; Fri, 1 Jan 2010 18:26:19 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id F3A66E07A6 for ; Fri, 1 Jan 2010 18:26:18 +0000 (UTC) Received: from stork.gentoo.org (stork.gentoo.org [64.127.104.133]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTP id 9E6591B400D for ; Fri, 1 Jan 2010 18:26:18 +0000 (UTC) Received: from ssuominen by stork.gentoo.org with local (Exim 4.69) (envelope-from ) id 1NQmCY-0003I7-1Z for gentoo-commits@lists.gentoo.org; Fri, 01 Jan 2010 18:26:18 +0000 From: "Samuli Suominen (ssuominen)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, ssuominen@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in app-misc/hilite: hilite-1.5.ebuild X-VCS-Repository: gentoo-x86 X-VCS-Files: hilite-1.5.ebuild X-VCS-Directories: app-misc/hilite X-VCS-Committer: ssuominen X-VCS-Committer-Name: Samuli Suominen Content-Type: text/plain; charset=utf8 Message-Id: Sender: Samuli Suominen Date: Fri, 01 Jan 2010 18:26:18 +0000 Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: a410308e-7cfe-4700-b8d0-e05df8e36d49 X-Archives-Hash: 84ea444e1b7e593f7245019916ef52ea ssuominen 10/01/01 18:26:18 Modified: hilite-1.5.ebuild Log: quoting, respect ldflags while at it (Portage version: 2.2_rc61/cvs/Linux x86_64) Revision Changes Path 1.15 app-misc/hilite/hilite-1.5.ebuild file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/hilite/hi= lite-1.5.ebuild?rev=3D1.15&view=3Dmarkup plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/hilite/hi= lite-1.5.ebuild?rev=3D1.15&content-type=3Dtext/plain diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/hilite/hi= lite-1.5.ebuild?r1=3D1.14&r2=3D1.15 Index: hilite-1.5.ebuild =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /var/cvsroot/gentoo-x86/app-misc/hilite/hilite-1.5.ebuild,v retrieving revision 1.14 retrieving revision 1.15 diff -u -r1.14 -r1.15 --- hilite-1.5.ebuild 26 Mar 2008 17:15:27 -0000 1.14 +++ hilite-1.5.ebuild 1 Jan 2010 18:26:17 -0000 1.15 @@ -1,6 +1,6 @@ -# Copyright 1999-2008 Gentoo Foundation +# Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/hilite/hilite-1.5.ebuild,v 1= .14 2008/03/26 17:15:27 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/hilite/hilite-1.5.ebuild,v 1= .15 2010/01/01 18:26:17 ssuominen Exp $ =20 inherit toolchain-funcs =20 @@ -8,24 +8,21 @@ SRC_URI=3D"mirror://gentoo/${P}.c" DESCRIPTION=3D"A utility which highlights stderr text in red" =20 -SLOT=3D"0" - LICENSE=3D"GPL-2" +SLOT=3D"0" KEYWORDS=3D"amd64 ~hppa ~ia64 mips ppc sparc x86" -S=3D${WORKDIR} - IUSE=3D"" -DEPEND=3D"" + +S=3D${WORKDIR} =20 src_unpack() { - cp ${DISTDIR}/${A} ${WORKDIR}/ + cp "${DISTDIR}"/${A} ${WORKDIR}/ } =20 src_compile() { - $(tc-getCC ) ${CFLAGS} -o ${PN} ${P}.c \ - || die "compile failed" + $(tc-getCC) ${LDFLAGS} ${CFLAGS} -o ${PN} ${P}.c || die } =20 src_install() { - dobin ${WORKDIR}/hilite + dobin hilite || die }