Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Florian Franzmann (dcd075e20efb74722911fa6e6e82ed2a6965ed77)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Florian Franzmann <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Florian Franzmann (dcd075e20efb74722911fa6e6e82ed2a6965ed77)
  • Date: Thu, 4 Mar 2010 12:11:37 -0600

GIT changes to master grimoire by Florian Franzmann
<siflfran AT hawo.stw.uni-erlangen.de>:

ChangeLog | 4 ++++
libs/libnfc/DEPENDS | 14 ++++++++++++++
libs/libnfc/DETAILS | 30 ++++++++++++++++++++++++++++++
libs/libnfc/HISTORY | 3 +++
libs/libnfc/PREPARE | 6 ++++++
libs/libnfc/PRE_BUILD | 5 +++++
6 files changed, 62 insertions(+)

New commits:
commit dcd075e20efb74722911fa6e6e82ed2a6965ed77
Author: Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>
Commit: Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>

libs/libnfc: new spell, a library for communicating with RFID devices

diff --git a/ChangeLog b/ChangeLog
index ebfd7ca..390c672 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2010-03-04 Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>
+ * libs/libnfc: new spell, a library for communicating with RFID
+ devices
+
2010-03-01 Andraž "ruskie" Levstik <ruskie+f03a580f AT codemages.net>
* audio-libs/game-music-emu: new spell, game music emulator lib

diff --git a/libs/libnfc/DEPENDS b/libs/libnfc/DEPENDS
new file mode 100755
index 0000000..4793d5f
--- /dev/null
+++ b/libs/libnfc/DEPENDS
@@ -0,0 +1,14 @@
+depends ccid &&
+optional_depends libusb \
+ "--enable-libusb" \
+ "--disable-libusb" \
+ "for PN531USB and PN533USB support" &&
+optional_depends pcsc-lite \
+ "--enable-pcsc-lite" \
+ "--disable-pcsc-lite" \
+ "for ACR122 support" &&
+if [[ "$LIBNFC_SVN" == "y" ]]; then
+ depends automake &&
+ depends autoconf &&
+ depends libtool
+fi
diff --git a/libs/libnfc/DETAILS b/libs/libnfc/DETAILS
new file mode 100755
index 0000000..8b46385
--- /dev/null
+++ b/libs/libnfc/DETAILS
@@ -0,0 +1,30 @@
+ SPELL=libnfc
+if [[ "$LIBNFC_SVN" == "y" ]]; then
+ if [[ "$LIBNFC_SVN_AUTOUPDATE" == "y" ]]; then
+ VERSION=$(date +%Y%m%d)
+ else
+ VERSION=svn
+ fi
+ SOURCE=$SPELL-svn.tar.bz2
+ FORCE_DOWNLOAD=on
+SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-svn
+ SOURCE_URL[0]=svn_http://libnfc.googlecode.com/svn/trunk:libnfc
+ SOURCE_IGNORE=volatile
+else
+ VERSION=1.3.3
+ SOURCE="${SPELL}-${VERSION}.tar.gz"
+ SOURCE_URL[0]=http://${SPELL}.googlecode.com/files/${SOURCE}
+
SOURCE_HASH=sha512:7c6e9a26893d37e43f4e4d90ed21ed3857ed9e7869a169030daf7c90c7b27a428a9e1d8457f4aeb323caab24c7a9d9b59331e70a9b1316694449c81256199206
+SOURCE_DIRECTORY="${BUILD_DIRECTORY}/${SPELL}-${VERSION}"
+fi
+ WEB_SITE="http://www.libnfc.org";
+ LICENSE[0]=GPL
+ ENTERED=20100304
+ SHORT="a library for communicating with near field communication
devices (RFID)"
+cat << EOF
+libnfc is the first free NFC SDK and Programmers API released under the
+GNU Lesser General Public License. It provides complete transparency and
+royalty-free use for everyone. Since the RFID market is spoiled by
proprietary
+hard and software we want to contribute constructively by distributing a
+free library which can be used for various RFID and NFC applications.
+EOF
diff --git a/libs/libnfc/HISTORY b/libs/libnfc/HISTORY
new file mode 100644
index 0000000..861284a
--- /dev/null
+++ b/libs/libnfc/HISTORY
@@ -0,0 +1,3 @@
+2010-03-04 Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>
+ * DEPENDS, DETAILS, PRE_BUILD, PREPARE: spell created
+
diff --git a/libs/libnfc/PREPARE b/libs/libnfc/PREPARE
new file mode 100755
index 0000000..87cc771
--- /dev/null
+++ b/libs/libnfc/PREPARE
@@ -0,0 +1,6 @@
+config_query LIBNFC_SVN "Build SCM (subversion) version?" y &&
+
+if [ "$LIBNFC_SVN" == "y" ]; then
+ config_query LIBNFC_SVN_AUTOUPDATE \
+ "Automatically update on every system update?" n
+fi
diff --git a/libs/libnfc/PRE_BUILD b/libs/libnfc/PRE_BUILD
new file mode 100755
index 0000000..e50d31f
--- /dev/null
+++ b/libs/libnfc/PRE_BUILD
@@ -0,0 +1,5 @@
+default_pre_build &&
+if [[ "$LIBNFC_SVN" == "y" ]]; then
+ cd ${SOURCE_DIRECTORY} &&
+ NOCONFIGURE=yes ./autogen.sh
+fi



  • [SM-Commit] GIT changes to master grimoire by Florian Franzmann (dcd075e20efb74722911fa6e6e82ed2a6965ed77), Florian Franzmann, 03/04/2010

Archive powered by MHonArc 2.6.24.

Top of Page