summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Harder <radhermit@gentoo.org>2011-03-04 05:04:10 +0000
committerTim Harder <radhermit@gentoo.org>2011-03-04 05:04:10 +0000
commit14e9339c38bf5f7cceac215a64ce8969d6496698 (patch)
tree379522b80bed8190b9f0fd6c09a2f68f8862277a /net-dialup
parentVersion bump. Update to EAPI 4 and don't install empty documentation files. (diff)
downloadgentoo-2-14e9339c38bf5f7cceac215a64ce8969d6496698.tar.gz
gentoo-2-14e9339c38bf5f7cceac215a64ce8969d6496698.tar.bz2
gentoo-2-14e9339c38bf5f7cceac215a64ce8969d6496698.zip
Initial import.
(Portage version: 2.2.0_alpha26/cvs/Linux x86_64)
Diffstat (limited to 'net-dialup')
-rw-r--r--net-dialup/neocon/ChangeLog10
-rw-r--r--net-dialup/neocon/metadata.xml9
-rw-r--r--net-dialup/neocon/neocon-20110228.ebuild28
3 files changed, 47 insertions, 0 deletions
diff --git a/net-dialup/neocon/ChangeLog b/net-dialup/neocon/ChangeLog
new file mode 100644
index 000000000000..aa681ac4e094
--- /dev/null
+++ b/net-dialup/neocon/ChangeLog
@@ -0,0 +1,10 @@
+# ChangeLog for net-dialup/neocon
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-dialup/neocon/ChangeLog,v 1.1 2011/03/04 05:04:10 radhermit Exp $
+
+*neocon-20110228 (04 Mar 2011)
+
+ 04 Mar 2011; Tim Harder <radhermit@gentoo.org> +neocon-20110228.ebuild,
+ +metadata.xml:
+ Initial import.
+
diff --git a/net-dialup/neocon/metadata.xml b/net-dialup/neocon/metadata.xml
new file mode 100644
index 000000000000..0ce86a2b9b52
--- /dev/null
+++ b/net-dialup/neocon/metadata.xml
@@ -0,0 +1,9 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <herd>no-herd</herd>
+ <maintainer>
+ <email>radhermit@gentoo.org</email>
+ <name>Tim Harder</name>
+ </maintainer>
+</pkgmetadata>
diff --git a/net-dialup/neocon/neocon-20110228.ebuild b/net-dialup/neocon/neocon-20110228.ebuild
new file mode 100644
index 000000000000..014a10e51ea0
--- /dev/null
+++ b/net-dialup/neocon/neocon-20110228.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2011 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/net-dialup/neocon/neocon-20110228.ebuild,v 1.1 2011/03/04 05:04:10 radhermit Exp $
+
+EAPI=4
+
+inherit toolchain-funcs
+
+DESCRIPTION="A simple serial console utility that tries to open ttys repeatedly"
+HOMEPAGE="http://wiki.openmoko.org/wiki/NeoCon"
+SRC_URI="http://dev.gentoo.org/~radhermit/distfiles/${P}.tar.bz2"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND=""
+RDEPEND=""
+
+src_compile() {
+ emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}" all
+}
+
+src_install() {
+ dobin neocon
+ dodoc README
+}