mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-18 22:06:04 +01:00
libraries/gsnmp: Added to 12.0 repository
This commit is contained in:
parent
0fec11f79e
commit
948e73097c
4 changed files with 101 additions and 0 deletions
10
libraries/gsnmp/README
Normal file
10
libraries/gsnmp/README
Normal file
|
@ -0,0 +1,10 @@
|
|||
GSNMP an SNMP library written on top of glib and gnet.
|
||||
|
||||
The goal of the project is to provide an efficient, clean, portable
|
||||
implementation of an SNMP stack for management applications.
|
||||
|
||||
GSNMP was written by Juergen Schoenwaelder , though some parts of this
|
||||
package contain code originally written by Gregory McLean,
|
||||
Jochen Friedrich and Dirk Wisse.
|
||||
|
||||
This requires gnet, which is also available at SlackBuilds.org.
|
64
libraries/gsnmp/gsnmp.SlackBuild
Normal file
64
libraries/gsnmp/gsnmp.SlackBuild
Normal file
|
@ -0,0 +1,64 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Slackware build script for gsnmp
|
||||
# Written by Menno E. Duursma <druiloor@zonnet.nl>
|
||||
# Modified by Robby Workman <rworkman@slackbuilds.org>
|
||||
|
||||
PRGNAM=gsnmp
|
||||
VERSION=0.2.0
|
||||
ARCH=${ARCH:-i486}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
CWD=$(pwd)
|
||||
TMP=${TMP:-/tmp/SBo}
|
||||
PKG=$TMP/package-$PRGNAM
|
||||
OUTPUT=${OUTPUT:-/tmp}
|
||||
|
||||
if [ "$ARCH" = "i486" ]; then
|
||||
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
|
||||
elif [ "$ARCH" = "i686" ]; then
|
||||
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
|
||||
fi
|
||||
|
||||
set -e # Exit on most errors
|
||||
|
||||
rm -rf $PKG
|
||||
mkdir -p $TMP $PKG $OUTPUT
|
||||
cd $TMP
|
||||
rm -rf $PRGNAM-$VERSION
|
||||
tar xvf $CWD/$PRGNAM-$VERSION.tar.gz
|
||||
cd $PRGNAM-$VERSION
|
||||
chown -R root:root .
|
||||
find . -type d -exec chmod 755 {} \;
|
||||
find . -type f -exec chmod a-s,go-w {} \;
|
||||
|
||||
CFLAGS="$SLKCFLAGS" \
|
||||
CXXFLAGS="$SLKCFLAGS" \
|
||||
./configure \
|
||||
--prefix=/usr \
|
||||
--mandir=/usr/man \
|
||||
--disable-static
|
||||
|
||||
make
|
||||
make install DESTDIR=$PKG
|
||||
|
||||
( cd $PKG
|
||||
find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
|
||||
find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
|
||||
)
|
||||
|
||||
( cd $PKG/usr/man
|
||||
find . -type f -exec gzip -9 {} \;
|
||||
for i in $( find . -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done
|
||||
)
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a [A-Z][A-Z]* ChangeLog $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||||
|
||||
mkdir -p $PKG/install
|
||||
cat $CWD/slack-desc > $PKG/install/slack-desc
|
||||
|
||||
cd $PKG
|
||||
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.tgz
|
8
libraries/gsnmp/gsnmp.info
Normal file
8
libraries/gsnmp/gsnmp.info
Normal file
|
@ -0,0 +1,8 @@
|
|||
PRGNAM="gsnmp"
|
||||
VERSION="0.2.0"
|
||||
HOMEPAGE="https://trac.eecs.iu-bremen.de/projects/gsnmp/"
|
||||
DOWNLOAD="ftp://ftp.ibr.cs.tu-bs.de/local/gsnmp/gsnmp-0.2.0.tar.gz"
|
||||
MD5SUM="b29025d8aacb19fe5f8c03fc0dad25dd"
|
||||
MAINTAINER="Menno Duursma"
|
||||
EMAIL="druiloor@zonnet.nl"
|
||||
APPROVED="rworkman"
|
19
libraries/gsnmp/slack-desc
Normal file
19
libraries/gsnmp/slack-desc
Normal file
|
@ -0,0 +1,19 @@
|
|||
# HOW TO EDIT THIS FILE:
|
||||
# The "handy ruler" below makes it easier to edit a package description. Line
|
||||
# up the first '|' above the ':' following the base package name, and the '|'
|
||||
# on the right side marks the last column you can put a character in. You must
|
||||
# make exactly 11 lines for the formatting to be correct. It's also
|
||||
# customary to leave one space after the ':'.
|
||||
|
||||
|-----handy-ruler------------------------------------------------------|
|
||||
gsnmp: GSNMP (SNMP library written on top of glib and gnet)
|
||||
gsnmp:
|
||||
gsnmp: The goal of the project is to provide an efficient, clean, portable
|
||||
gsnmp: implementation of an SNMP stack for management applications.
|
||||
gsnmp:
|
||||
gsnmp:
|
||||
gsnmp:
|
||||
gsnmp:
|
||||
gsnmp:
|
||||
gsnmp:
|
||||
gsnmp:
|
Loading…
Reference in a new issue