summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPacho Ramos <pacho@gentoo.org>2017-07-14 13:11:14 +0200
committerPacho Ramos <pacho@gentoo.org>2017-07-14 13:11:14 +0200
commit18dc6a2a1f1bef9bd29500c5ac672cc34c464dc5 (patch)
tree8e471f785bcc3b4f8397761c5d0fe49f25a6e719 /dev-lang/nqc/nqc-3.1_p6.ebuild
parentRemove hardmasked packages (diff)
downloadgentoo-18dc6a2a1f1bef9bd29500c5ac672cc34c464dc5.tar.gz
gentoo-18dc6a2a1f1bef9bd29500c5ac672cc34c464dc5.tar.bz2
gentoo-18dc6a2a1f1bef9bd29500c5ac672cc34c464dc5.zip
Remove hardmasked packages
Diffstat (limited to 'dev-lang/nqc/nqc-3.1_p6.ebuild')
-rw-r--r--dev-lang/nqc/nqc-3.1_p6.ebuild55
1 files changed, 0 insertions, 55 deletions
diff --git a/dev-lang/nqc/nqc-3.1_p6.ebuild b/dev-lang/nqc/nqc-3.1_p6.ebuild
deleted file mode 100644
index 0bbf6502dac0..000000000000
--- a/dev-lang/nqc/nqc-3.1_p6.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-
-inherit eutils toolchain-funcs
-
-DESCRIPTION="Not Quite C - C-like compiler for Lego Mindstorms"
-HOMEPAGE="http://bricxcc.sourceforge.net/nqc/"
-SRC_URI="http://bricxcc.sourceforge.net/nqc/release/${P/_p/.r}.tgz"
-
-LICENSE="MPL-1.0"
-SLOT="0"
-KEYWORDS="amd64 ppc x86"
-IUSE="usb"
-
-DEPEND="usb? ( dev-libs/legousbtower )"
-RDEPEND="${DEPEND}"
-
-S="${WORKDIR}"
-
-pkg_setup() {
- tc-export CXX
-}
-
-src_prepare() {
- epatch "${FILESDIR}"/${P}-{gcc-4.7,flags}.patch
-}
-
-src_configure() {
- if use usb; then
- sed -i Makefile -e 's|#.*USBOBJ =|USBOBJ =|g' || die "sed usb"
- fi
-}
-
-src_install() {
- dobin bin/*
- newman nqc-man-2.1r1-0.man 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
- echo
- elog "You have enabled USB support. To use usb on the"
- elog "command line use the -Susb command line option"
- else
- echo
- 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
-}