diff options
author | 2007-08-25 12:40:09 +0000 | |
---|---|---|
committer | 2007-08-25 12:40:09 +0000 | |
commit | 82b695665df195651855c18141494eb9e6293495 (patch) | |
tree | 8280ac6718eea58e9862d7993015ff9e574fce4f /sys-devel/sparse/sparse-9999.ebuild | |
parent | Do "emake versionclean" before dumping again. Add some die messages. (diff) | |
download | gentoo-2-82b695665df195651855c18141494eb9e6293495.tar.gz gentoo-2-82b695665df195651855c18141494eb9e6293495.tar.bz2 gentoo-2-82b695665df195651855c18141494eb9e6293495.zip |
Add live git ebuild.
(Portage version: 2.1.3.7)
Diffstat (limited to 'sys-devel/sparse/sparse-9999.ebuild')
-rw-r--r-- | sys-devel/sparse/sparse-9999.ebuild | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/sys-devel/sparse/sparse-9999.ebuild b/sys-devel/sparse/sparse-9999.ebuild new file mode 100644 index 000000000000..34a778a2bdef --- /dev/null +++ b/sys-devel/sparse/sparse-9999.ebuild @@ -0,0 +1,29 @@ +# 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-9999.ebuild,v 1.1 2007/08/25 12:40:09 vapier Exp $ + +EGIT_REPO_URI="git://git.kernel.org/pub/scm/devel/sparse/sparse.git" +inherit eutils multilib git + +DESCRIPTION="C semantic parser" +HOMEPAGE="http://kernel.org/pub/linux/kernel/people/josh/sparse/" +SRC_URI="" + +LICENSE="OSL-1.1" +SLOT="0" +KEYWORDS="" +IUSE="" + +DEPEND="" +RDEPEND="" + +src_unpack() { + git_src_unpack + cd "${S}" + sed -i '/^PREFIX=/s:=.*:=/usr:' Makefile +} + +src_install() { + emake DESTDIR="${D}" LIBDIR="/usr/$(get_libdir)" install || die "make install failed" + dodoc FAQ README +} |