summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAgostino Sarubbo <ago@gentoo.org>2012-05-10 15:47:47 +0000
committerAgostino Sarubbo <ago@gentoo.org>2012-05-10 15:47:47 +0000
commitfefca8c54b62bc67c400bc3414ad4af1809d221c (patch)
tree6cb1330e94047b9f274a7d7d6fc96cc3f3add158 /dev-lang/nqc
parentRemove old (diff)
downloadgentoo-2-fefca8c54b62bc67c400bc3414ad4af1809d221c.tar.gz
gentoo-2-fefca8c54b62bc67c400bc3414ad4af1809d221c.tar.bz2
gentoo-2-fefca8c54b62bc67c400bc3414ad4af1809d221c.zip
Remove old
(Portage version: 2.1.10.49/cvs/Linux x86_64)
Diffstat (limited to 'dev-lang/nqc')
-rw-r--r--dev-lang/nqc/ChangeLog7
-rw-r--r--dev-lang/nqc/nqc-3.1_p4.ebuild52
2 files changed, 5 insertions, 54 deletions
diff --git a/dev-lang/nqc/ChangeLog b/dev-lang/nqc/ChangeLog
index 574d2a297f50..5c51906f9f0b 100644
--- a/dev-lang/nqc/ChangeLog
+++ b/dev-lang/nqc/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for dev-lang/nqc
-# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/nqc/ChangeLog,v 1.18 2011/01/10 15:59:24 jer Exp $
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/nqc/ChangeLog,v 1.19 2012/05/10 15:47:47 ago Exp $
+
+ 10 May 2012; Agostino Sarubbo <ago@gentoo.org> -nqc-3.1_p4.ebuild:
+ Remove old
10 Jan 2011; Jeroen Roovers <jer@gentoo.org> nqc-3.1_p6.ebuild:
Fix a && b || die error (bug #351028).
diff --git a/dev-lang/nqc/nqc-3.1_p4.ebuild b/dev-lang/nqc/nqc-3.1_p4.ebuild
deleted file mode 100644
index d30e96d37ac2..000000000000
--- a/dev-lang/nqc/nqc-3.1_p4.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/nqc/nqc-3.1_p4.ebuild,v 1.5 2010/12/30 18:42:58 jer Exp $
-
-inherit eutils
-
-DESCRIPTION="Not Quite C - C-like compiler for Lego Mindstorms"
-SRC_URI="http://bricxcc.sourceforge.net/nqc/release/${P/_p/.r}.tgz"
-HOMEPAGE="http://bricxcc.sourceforge.net/nqc/"
-
-S=${WORKDIR}/${P/_p/.r}
-
-SLOT="0"
-LICENSE="MPL-1.0"
-KEYWORDS="~amd64 ~ppc ~x86"
-IUSE="usb"
-
-DEPEND="usb? ( dev-libs/legousbtower )"
-
-src_compile()
-{
- if use usb; then
- epatch "${FILESDIR}"/${P}-usb.patch
- fi
- if use amd64; then
- epatch "${FILESDIR}"/${P}-amd64.patch
- fi
- sed -i -e 's/PREFIX?\=\/usr\/local/PREFIX?\=\/usr/' Makefile
- emake || die
-}
-
-src_install() {
- dobin bin/*
- mv nqc-man-2.1r1-0.man nqc.1
- doman nqc.1
- dodoc history.txt readme.txt scout.txt test.nqc
-}
-
-pkg_postinst() {
- elog "To change the default serial name for nqc (/dev/ttyS0) set"
- elog "the environment variable RCX_PORT or use the nqc command line"
- elog "option -S to specify your serial port."
- if use usb; then
- elog
- elog "You have enabled USB support. To use usb on the"
- elog "command line use the -Susb command line option"
- else
- elog
- elog "You have not enabled usb support and will be unable"
- elog "to use the usb IR tower. To enable USB use the usb use flag"
- fi
-}