summaryrefslogtreecommitdiffstats
path: root/ham/libax25
diff options
context:
space:
mode:
authorroot2006-04-24 09:03:08 -0500
committerroot2006-04-24 09:03:08 -0500
commit84d8b510ac289af0a43bfa9e110844af27a90196 (patch)
treed7093929b954dd2f71114bff270755e18f737eb1 /ham/libax25
initial commit from stable 0.3
Diffstat (limited to 'ham/libax25')
-rwxr-xr-xham/libax25/BUILD17
-rwxr-xr-xham/libax25/CONFIGURE8
-rwxr-xr-xham/libax25/DEPENDS1
-rwxr-xr-xham/libax25/DETAILS18
-rw-r--r--ham/libax25/HISTORY8
5 files changed, 52 insertions, 0 deletions
diff --git a/ham/libax25/BUILD b/ham/libax25/BUILD
new file mode 100755
index 0000000000..64f3152ee5
--- /dev/null
+++ b/ham/libax25/BUILD
@@ -0,0 +1,17 @@
+(
+
+ ./configure --prefix=/usr \
+ --sysconfdir=/etc \
+ --localstatedir=/var \
+ $OPTS &&
+ make &&
+ prepare_install &&
+ make install-strip &&
+
+ case $CONFIGS in
+ y|Y) make installconf ;;
+ esac
+
+) > $C_FIFO 2>&1
+
+
diff --git a/ham/libax25/CONFIGURE b/ham/libax25/CONFIGURE
new file mode 100755
index 0000000000..4a7ea5351c
--- /dev/null
+++ b/ham/libax25/CONFIGURE
@@ -0,0 +1,8 @@
+if ! grep -q "CONFIGS" $SPELL_CONFIG; then
+
+ if query "Install example config files?" y
+ then echo "CONFIGS=y" >> $SPELL_CONFIG
+ else echo "CONFIGS=n" >> $SPELL_CONFIG
+ fi
+
+fi
diff --git a/ham/libax25/DEPENDS b/ham/libax25/DEPENDS
new file mode 100755
index 0000000000..edcc61495a
--- /dev/null
+++ b/ham/libax25/DEPENDS
@@ -0,0 +1 @@
+depends libtool
diff --git a/ham/libax25/DETAILS b/ham/libax25/DETAILS
new file mode 100755
index 0000000000..d8201925e1
--- /dev/null
+++ b/ham/libax25/DETAILS
@@ -0,0 +1,18 @@
+ SPELL=libax25
+ VERSION=0.0.11
+ SOURCE=${SPELL}-$VERSION.tar.gz
+ SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION
+ SOURCE_URL[0]=${SOURCEFORGE_URL}/ax25/${SOURCE}
+ WEB_SITE=http://ax25.sourceforge.net/
+ ENTERED=20020731
+ UPDATED=20020731
+ LICENSE=GPL
+ MD5=fee2f08ca973c2df44c5390b9f051cec
+ SHORT="Libraries for AX.25"
+ MAINTAINER=afrayedknot@thefrayedknot.armory.com
+cat << EOF
+There is a library that can be used by other programs to do all the low
+level stuff that you need to talk to the kernel. The idea is that the
+API of the library stays the same as much as possible even if the kernel
+changes. It also allows things like name to address translation to occur.
+EOF
diff --git a/ham/libax25/HISTORY b/ham/libax25/HISTORY
new file mode 100644
index 0000000000..8297840ee4
--- /dev/null
+++ b/ham/libax25/HISTORY
@@ -0,0 +1,8 @@
+2003-06-27 Andrew Stitt <afrayedknot@thefrayedknot.armory.com>
+ * Version bump, added CONFIGURE support to ask about installing
+ config files before BUILD runs. (at the time of writting this spell
+ there was no clear support for this).
+
+2002-07-31 Andrew Stitt <afrayedknot@thefrayedknot.armory.com>
+ * Created this spell
+