summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Johanson <latexer@gentoo.org>2004-03-08 03:28:15 +0000
committerPeter Johanson <latexer@gentoo.org>2004-03-08 03:28:15 +0000
commit05d7abc5cf582889d4a21a71bb5ae758d75ed778 (patch)
tree16b902ad2fda5601e7de89bbe68658919e1b2c83 /net-misc/xsupplicant
parentppc-development-sources-2.6.3_rc3-r1.ebuild stable on ppc64 (Manifest recommit) (diff)
downloadgentoo-2-05d7abc5cf582889d4a21a71bb5ae758d75ed778.tar.gz
gentoo-2-05d7abc5cf582889d4a21a71bb5ae758d75ed778.tar.bz2
gentoo-2-05d7abc5cf582889d4a21a71bb5ae758d75ed778.zip
Initial commit. Thanks to Pau Oliva <pau@eslack.org> for the ebuild. bug #34194
Diffstat (limited to 'net-misc/xsupplicant')
-rw-r--r--net-misc/xsupplicant/ChangeLog10
-rw-r--r--net-misc/xsupplicant/Manifest3
-rw-r--r--net-misc/xsupplicant/files/digest-xsupplicant-0.8b1
-rw-r--r--net-misc/xsupplicant/metadata.xml8
-rw-r--r--net-misc/xsupplicant/xsupplicant-0.8b.ebuild30
5 files changed, 52 insertions, 0 deletions
diff --git a/net-misc/xsupplicant/ChangeLog b/net-misc/xsupplicant/ChangeLog
new file mode 100644
index 000000000000..9c17d0069d08
--- /dev/null
+++ b/net-misc/xsupplicant/ChangeLog
@@ -0,0 +1,10 @@
+# ChangeLog for net-misc/xsupplicant
+# Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-misc/xsupplicant/ChangeLog,v 1.1 2004/03/08 03:28:15 latexer Exp $
+
+*xsupplicant-0.8b (07 Mar 2004)
+
+ 07 Mar 2004; Peter Johanson <latexer@gentoo.org> metadata.xml,
+ xsupplicant-0.8b.ebuild:
+ Initial import. Thanks to Pau Oliva <pau@eslack.org> for the ebuild. bug #34194
+
diff --git a/net-misc/xsupplicant/Manifest b/net-misc/xsupplicant/Manifest
new file mode 100644
index 000000000000..ba3048b48f95
--- /dev/null
+++ b/net-misc/xsupplicant/Manifest
@@ -0,0 +1,3 @@
+MD5 d38ea6db1f95b8f89643995791f51d12 xsupplicant-0.8b.ebuild 677
+MD5 db76d51212bff92212cb8dd316a0931d metadata.xml 222
+MD5 98df32cc0295a0acc372414a8a4b5c08 files/digest-xsupplicant-0.8b 68
diff --git a/net-misc/xsupplicant/files/digest-xsupplicant-0.8b b/net-misc/xsupplicant/files/digest-xsupplicant-0.8b
new file mode 100644
index 000000000000..cbc6ff2dbbd6
--- /dev/null
+++ b/net-misc/xsupplicant/files/digest-xsupplicant-0.8b
@@ -0,0 +1 @@
+MD5 ac40850192071017d2f04e7f7c180c1d xsupplicant-0.8b.tar.gz 345492
diff --git a/net-misc/xsupplicant/metadata.xml b/net-misc/xsupplicant/metadata.xml
new file mode 100644
index 000000000000..74809c964108
--- /dev/null
+++ b/net-misc/xsupplicant/metadata.xml
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+<herd>mobile</herd>
+<maintainer>
+ <email>latexer@gentoo.org</email>
+</maintainer>
+</pkgmetadata>
diff --git a/net-misc/xsupplicant/xsupplicant-0.8b.ebuild b/net-misc/xsupplicant/xsupplicant-0.8b.ebuild
new file mode 100644
index 000000000000..825aa7753821
--- /dev/null
+++ b/net-misc/xsupplicant/xsupplicant-0.8b.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2004 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+
+S="${WORKDIR}/${PN}"
+DESCRIPTION="Open Source Implementation of IEEE 802.1x"
+SRC_URI="mirror://sourceforge/open1x/${P}.tar.gz"
+HOMEPAGE="http://open1x.sourceforge.net"
+
+IUSE=""
+
+SLOT="0"
+LICENSE="GPL-2"
+KEYWORDS="~x86"
+
+
+DEPEND=">=dev-libs/openssl-0.9.7
+ >=net-libs/libpcap-0.7.1
+ >=dev-libs/libdnet-1.6"
+
+src_compile() {
+ econf || die "configure failed"
+ # does *NOT* like emake.
+ make || die "failed to compile"
+}
+
+src_install() {
+ make DESTDIR=${D} install || die "installation failed"
+ dodoc AUTHORS ChangeLog INSTALL NEWS README README.wireless_cards \
+ doc/README.certificates
+}