diff options
author | 2007-12-08 18:04:31 +0000 | |
---|---|---|
committer | 2007-12-08 18:04:31 +0000 | |
commit | 94c31bfeb5845b8778750cb6037fdf9d07947c4c (patch) | |
tree | a9fc8cade241be1d1976f55bfa902e3c11709278 /sys-devel/sparse | |
parent | arm/s390/sh stable (diff) | |
download | gentoo-2-94c31bfeb5845b8778750cb6037fdf9d07947c4c.tar.gz gentoo-2-94c31bfeb5845b8778750cb6037fdf9d07947c4c.tar.bz2 gentoo-2-94c31bfeb5845b8778750cb6037fdf9d07947c4c.zip |
Version bump #201697 by Marcin Slusarz.
(Portage version: 2.1.4_rc4)
Diffstat (limited to 'sys-devel/sparse')
-rw-r--r-- | sys-devel/sparse/ChangeLog | 7 | ||||
-rw-r--r-- | sys-devel/sparse/files/digest-sparse-0.4.1 | 3 | ||||
-rw-r--r-- | sys-devel/sparse/sparse-0.4.1.ebuild | 32 |
3 files changed, 41 insertions, 1 deletions
diff --git a/sys-devel/sparse/ChangeLog b/sys-devel/sparse/ChangeLog index 96a809dc89d9..59d749bcf84f 100644 --- a/sys-devel/sparse/ChangeLog +++ b/sys-devel/sparse/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sys-devel/sparse # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/sparse/ChangeLog,v 1.15 2007/09/23 10:16:47 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-devel/sparse/ChangeLog,v 1.16 2007/12/08 18:04:30 vapier Exp $ + +*sparse-0.4.1 (08 Dec 2007) + + 08 Dec 2007; Mike Frysinger <vapier@gentoo.org> +sparse-0.4.1.ebuild: + Version bump #201697 by Marcin Slusarz. 23 Sep 2007; Raúl Porcel <armin76@gentoo.org> sparse-0.3-r1.ebuild: ia64 stable wrt #192849 diff --git a/sys-devel/sparse/files/digest-sparse-0.4.1 b/sys-devel/sparse/files/digest-sparse-0.4.1 new file mode 100644 index 000000000000..76bbb01c16da --- /dev/null +++ b/sys-devel/sparse/files/digest-sparse-0.4.1 @@ -0,0 +1,3 @@ +MD5 c41098155b4a63f731f765f4630cbef9 sparse-0.4.1.tar.gz 199352 +RMD160 f0fd342710d41b912a91c578c7d0f3bff7d4f4fe sparse-0.4.1.tar.gz 199352 +SHA256 cb950b012e83cbfb6cf9fecff01893bb28ba3b7f1df906657be43a88277ed3a2 sparse-0.4.1.tar.gz 199352 diff --git a/sys-devel/sparse/sparse-0.4.1.ebuild b/sys-devel/sparse/sparse-0.4.1.ebuild new file mode 100644 index 000000000000..c2ba999053ad --- /dev/null +++ b/sys-devel/sparse/sparse-0.4.1.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-devel/sparse/sparse-0.4.1.ebuild,v 1.1 2007/12/08 18:04:30 vapier Exp $ + +inherit eutils multilib flag-o-matic + +DESCRIPTION="C semantic parser" +HOMEPAGE="http://kernel.org/pub/linux/kernel/people/josh/sparse/" +SRC_URI="http://kernel.org/pub/linux/kernel/people/josh/sparse/dist/${P}.tar.gz" + +LICENSE="OSL-1.1" +SLOT="0" +KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~x86" +IUSE="" + +DEPEND="" +RDEPEND="" + +src_unpack() { + unpack ${A} + cd "${S}" + sed -i \ + -e '/^PREFIX=/s:=.*:=/usr:' \ + -e "/^LIBDIR=/s:/lib:/$(get_libdir):" \ + Makefile || die + append-flags -fno-strict-aliasing +} + +src_install() { + emake DESTDIR="${D}" install || die "make install failed" + dodoc FAQ README +} |