From 8711c45675650211b9917cf51e9d3e2bdb449619 Mon Sep 17 00:00:00 2001 From: Larry Hajali Date: Wed, 12 May 2010 23:29:57 +0200 Subject: libraries/c-ares: Added to 12.2 repository --- libraries/c-ares/LICENSE | 10 ++++++ libraries/c-ares/README | 3 ++ libraries/c-ares/c-ares.SlackBuild | 74 ++++++++++++++++++++++++++++++++++++++ libraries/c-ares/c-ares.info | 8 +++++ libraries/c-ares/slack-desc | 19 ++++++++++ 5 files changed, 114 insertions(+) create mode 100644 libraries/c-ares/LICENSE create mode 100644 libraries/c-ares/README create mode 100644 libraries/c-ares/c-ares.SlackBuild create mode 100644 libraries/c-ares/c-ares.info create mode 100644 libraries/c-ares/slack-desc (limited to 'libraries/c-ares') diff --git a/libraries/c-ares/LICENSE b/libraries/c-ares/LICENSE new file mode 100644 index 0000000000..159adcfd3a --- /dev/null +++ b/libraries/c-ares/LICENSE @@ -0,0 +1,10 @@ +Copyright 1998 by the Massachusetts Institute of Technology. + +Permission to use, copy, modify, and distribute this software and its +documentation for any purpose and without fee is hereby granted, provided that +the above copyright notice appear in all copies and that both that copyright +notice and this permission notice appear in supporting documentation, and that +the name of M.I.T. not be used in advertising or publicity pertaining to +distribution of the software without specific, written prior permission. +M.I.T. makes no representations about the suitability of this software for any +purpose. It is provided "as is" without express or implied warranty. \ No newline at end of file diff --git a/libraries/c-ares/README b/libraries/c-ares/README new file mode 100644 index 0000000000..bf9bbb5c09 --- /dev/null +++ b/libraries/c-ares/README @@ -0,0 +1,3 @@ +c-ares is a C library that performs DNS requests and name resolves +asynchronously. c-ares is a fork of the original library named 'ares', +written by Greg Hudson at MIT. \ No newline at end of file diff --git a/libraries/c-ares/c-ares.SlackBuild b/libraries/c-ares/c-ares.SlackBuild new file mode 100644 index 0000000000..59e4a5f6b6 --- /dev/null +++ b/libraries/c-ares/c-ares.SlackBuild @@ -0,0 +1,74 @@ +#!/bin/sh + +# Slackware build script for c-ares + +# Written by Larry Hajali + +PRGNAM=c-ares +VERSION=${VERSION:-1.6.0} +ARCH=${ARCH:-i486} +BUILD=${BUILD:-2} +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" + LIBDIRSUFFIX="" +elif [ "$ARCH" = "i686" ]; then + SLKCFLAGS="-O2 -march=i686 -mtune=i686" + LIBDIRSUFFIX="" +elif [ "$ARCH" = "x86_64" ]; then + SLKCFLAGS="-O2 -fPIC" + LIBDIRSUFFIX="64" +fi + +set -e + +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 . \ + \( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \ + -exec chmod 755 {} \; -o \ + \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ + -exec chmod 644 {} \; + +CFLAGS="$SLKCFLAGS" \ +CXXFLAGS="$SLKCFLAGS" \ +./configure \ + --prefix=/usr \ + --libdir=/usr/lib${LIBDIRSUFFIX} \ + --mandir=/usr/man \ + --disable-static \ + --enable-shared \ + --disable-debug \ + --build=$ARCH-slackware-linux + +make +make install-strip DESTDIR=$PKG + +( 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 \ + AUTHORS CHANGES NEWS README* RELEASE* TODO \ + $PKG/usr/doc/$PRGNAM-$VERSION +cat $CWD/LICENSE > $PKG/usr/doc/$PRGNAM-$VERSION/LICENSE +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 diff --git a/libraries/c-ares/c-ares.info b/libraries/c-ares/c-ares.info new file mode 100644 index 0000000000..27f9e7a44a --- /dev/null +++ b/libraries/c-ares/c-ares.info @@ -0,0 +1,8 @@ +PRGNAM="c-ares" +VERSION="1.6.0" +HOMEPAGE="http://c-ares.haxx.se/" +DOWNLOAD="http://c-ares.haxx.se/c-ares-1.6.0.tar.gz" +MD5SUM="4503b0db3dd79d3c1f58d87722dbab46" +MAINTAINER="Larry Hajali" +EMAIL="larryhaja[at]gmail[dot]com" +APPROVED="dsomero" diff --git a/libraries/c-ares/slack-desc b/libraries/c-ares/slack-desc new file mode 100644 index 0000000000..ebad66b401 --- /dev/null +++ b/libraries/c-ares/slack-desc @@ -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------------------------------------------------------| +c-ares: c-ares (C library for DNS requests) +c-ares: +c-ares: c-ares is a C library that performs DNS requests and name resolves +c-ares: asynchronously. c-ares is a fork of the original library named 'ares', +c-ares: written by Greg Hudson at MIT. +c-ares: +c-ares: Homepage: http://c-ares.haxx.se/ +c-ares: +c-ares: +c-ares: +c-ares: -- cgit v1.2.3