summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJaka Kranjc2007-05-17 22:14:17 +0200
committerJaka Kranjc2007-05-17 22:14:30 +0200
commit27503a87ce9b00cfd0f97f08019d121d17773c0c (patch)
tree6a737eb66b4e08cb8449cd5bd7e7ab67ec4f3100
parent2c8f43f4a6603f2f001b7e0c24036d7a1501e326 (diff)
libax25: convert to build api2 and fix man path
-rwxr-xr-xham/libax25/BUILD17
-rwxr-xr-xham/libax25/CONFIGURE9
-rwxr-xr-xham/libax25/DETAILS7
-rw-r--r--ham/libax25/HISTORY6
-rwxr-xr-xham/libax25/INSTALL4
5 files changed, 14 insertions, 29 deletions
diff --git a/ham/libax25/BUILD b/ham/libax25/BUILD
deleted file mode 100755
index 64f3152ee5..0000000000
--- a/ham/libax25/BUILD
+++ /dev/null
@@ -1,17 +0,0 @@
-(
-
- ./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
index 4a7ea5351c..ec110332a6 100755
--- a/ham/libax25/CONFIGURE
+++ b/ham/libax25/CONFIGURE
@@ -1,8 +1 @@
-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
+config_query CONFIGS "Install example config files?" n
diff --git a/ham/libax25/DETAILS b/ham/libax25/DETAILS
index 1bc51dc8f8..d02730c573 100755
--- a/ham/libax25/DETAILS
+++ b/ham/libax25/DETAILS
@@ -1,14 +1,13 @@
SPELL=libax25
VERSION=0.0.11
- SOURCE=${SPELL}-$VERSION.tar.gz
+ SOURCE=$SPELL-$VERSION.tar.gz
SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION
- SOURCE_URL[0]=${SOURCEFORGE_URL}/ax25/${SOURCE}
+ SOURCE_URL[0]=$SOURCEFORGE_URL/ax25/$SOURCE
WEB_SITE=http://ax25.sourceforge.net/
ENTERED=20020731
LICENSE=GPL
- SOURCE_HASH=sha512:c26e16659cc13e844a44a6978e89744eb0d3a2398c5e4cde5c84ec94fbaabe76d733e7b9da99087607edd0a4672c52689449548c5935ea59bc7bc5a24bf4ba6c
+ SOURCE_HASH=sha512:c26e16659cc13e844a44a6978e89744eb0d3a2398c5e4cde5c84ec94fbaabe76d733e7b9da99087607edd0a4672c52689449548c5935ea59bc7bc5a24bf4ba6c
KEYWORDS="ham"
- BUILD_API=1
SHORT="Libraries for AX.25"
cat << EOF
There is a library that can be used by other programs to do all the low
diff --git a/ham/libax25/HISTORY b/ham/libax25/HISTORY
index 1fdb2c9ea3..6a11717821 100644
--- a/ham/libax25/HISTORY
+++ b/ham/libax25/HISTORY
@@ -1,3 +1,9 @@
+2007-05-17 Jaka Kranjc <lynxlynxlynx@sourcemage.org>
+ * DETAILS: removed BUILD_API=1 and some cosmetic changes
+ * INSTALL: added some BUILD remnants
+ * BUILD: removed, spell converted to api2
+ * CONFIGURE: converted to config_query
+
2006-10-03 Juuso Alasuutari <iuso@sourcemage.org>
* DETAILS: [automated] Removed UPDATED.
diff --git a/ham/libax25/INSTALL b/ham/libax25/INSTALL
new file mode 100755
index 0000000000..5f060af039
--- /dev/null
+++ b/ham/libax25/INSTALL
@@ -0,0 +1,4 @@
+make install-strip &&
+if [[ $CONFIGS == y ]]; then
+ make installconf
+fi