diff options
author | Daniel Black <dragonheart@gentoo.org> | 2004-12-03 21:48:44 +0000 |
---|---|---|
committer | Daniel Black <dragonheart@gentoo.org> | 2004-12-03 21:48:44 +0000 |
commit | 2e4e80045e4762123945e73373a90291b460f3e9 (patch) | |
tree | 95c26bd966905932269dfa3587c88305f7f256ef /dev-embedded/picp/picp-0.6.4.ebuild | |
parent | Make sure GCC_CONFIG is taken only from the selected profile. (Manifest recom... (diff) | |
download | gentoo-2-2e4e80045e4762123945e73373a90291b460f3e9.tar.gz gentoo-2-2e4e80045e4762123945e73373a90291b460f3e9.tar.bz2 gentoo-2-2e4e80045e4762123945e73373a90291b460f3e9.zip |
Initial import bug #69448
Diffstat (limited to 'dev-embedded/picp/picp-0.6.4.ebuild')
-rw-r--r-- | dev-embedded/picp/picp-0.6.4.ebuild | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/dev-embedded/picp/picp-0.6.4.ebuild b/dev-embedded/picp/picp-0.6.4.ebuild new file mode 100644 index 000000000000..a5a749311baf --- /dev/null +++ b/dev-embedded/picp/picp-0.6.4.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-embedded/picp/picp-0.6.4.ebuild,v 1.1 2004/12/03 21:48:43 dragonheart Exp $ + +inherit toolchain-funcs + +DESCRIPTION="A commandline interface to Microchip's PICSTART+ programmer." +HOMEPAGE="http://home.pacbell.net/theposts/picmicro/" +SRC_URI="http://home.pacbell.net/theposts/picmicro/${P}.tar.gz" +LICENSE="GPL-2" + +SLOT="0" +KEYWORDS="x86" +IUSE="" + +DEPEND="virtual/libc" + +src_compile() { + emake CC=$(tc-getCC) OPTIONS="${CFLAGS} -x c++" || die "emake failed" +} + +src_install() { + dodoc README HISTORY LICENSE.TXT NOTES PSCOMMANDS.TXT + dohtml PICPmanual.html + dobin picp +} |