diff options
author | Martin Lefebvre <dadexter@gmail.com> | 2010-05-11 14:05:50 +0200 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2010-05-11 14:05:50 +0200 |
commit | ac82954665edda529b341ca9aede9390c40d6102 (patch) | |
tree | b8b00c21064dee5f36c8d6ea5523a5df958419ce /development | |
parent | fa2330dc2d7a08a16f8a658c251807527bdb1932 (diff) | |
download | slackbuilds-ac82954665edda529b341ca9aede9390c40d6102.tar.gz |
development/cpan2tgz: Initial import
Diffstat (limited to 'development')
-rw-r--r-- | development/cpan2tgz/README | 2 | ||||
-rw-r--r-- | development/cpan2tgz/buildslackpkg.diff | 46 | ||||
-rw-r--r-- | development/cpan2tgz/cpan2tgz.SlackBuild | 63 | ||||
-rw-r--r-- | development/cpan2tgz/cpan2tgz.info | 8 |
4 files changed, 119 insertions, 0 deletions
diff --git a/development/cpan2tgz/README b/development/cpan2tgz/README new file mode 100644 index 0000000000..a7b6fb4206 --- /dev/null +++ b/development/cpan2tgz/README @@ -0,0 +1,2 @@ +cpan2tgz is an utility to create Slackware packages from CPAN Perl +module distributions. It was created by the author of slapt-get. diff --git a/development/cpan2tgz/buildslackpkg.diff b/development/cpan2tgz/buildslackpkg.diff new file mode 100644 index 0000000000..acdc08215c --- /dev/null +++ b/development/cpan2tgz/buildslackpkg.diff @@ -0,0 +1,46 @@ +--- cpan2tgz-0.6/buildslackpkg.sh.orig 2006-08-23 15:51:09.546266236 -0500 ++++ cpan2tgz-0.6/buildslackpkg.sh 2006-08-23 16:02:48.273371442 -0500 +@@ -1,8 +1,11 @@ + #!/bin/sh + +-DESTINATION=/tmp/$$ ++PKG=/tmp/SBo/package-cpan2tgz ++OUTPUT=/tmp ++DESTINATION=$PKG + VERSION=`grep VERSION cpan2tgz |awk '{print $4}'|cut -f2 -d\"` + PKGNAME=cpan2tgz ++TAG=_SBo + + perl Makefile.PL + make +@@ -32,11 +35,8 @@ + if [ -d ./usr/share/man ]; then + mv ./usr/share/man ./usr + fi +- if [ -d ./usr/bin ]; then +- chown -R root.bin ./usr/bin +- chmod 755 ./usr/bin/* +- fi + chmod 644 ./usr/man/man?/* ++ gzip -9 ./usr/man/man?/* + rmdir ./usr/share + mkdir install + +@@ -51,8 +51,6 @@ + rm $PERLLOCALPOD + fi + +- echo "perl" > ./install/slack-required +- + cat >./install/slack-desc <<EOF + # HOW TO EDIT THIS FILE: + # The "handy ruler" below makes it easier to edit a package description. Line +@@ -73,7 +71,7 @@ + ${PKGNAME}: http://software.jaos.org/ + ${PKGNAME}: + EOF +- makepkg -l y -c n /usr/src/${PKGNAME}-${VERSION}-noarch-1.tgz ++ makepkg -l y -c n ${OUTPUT}/${PKGNAME}-${VERSION}-noarch-1$TAG.tgz + ) + + make distclean diff --git a/development/cpan2tgz/cpan2tgz.SlackBuild b/development/cpan2tgz/cpan2tgz.SlackBuild new file mode 100644 index 0000000000..7087854494 --- /dev/null +++ b/development/cpan2tgz/cpan2tgz.SlackBuild @@ -0,0 +1,63 @@ +#!/bin/sh + +# Slackware build script for cpan.tgz + +# Copyright 2006 Martin Lefebvre <dadexter@gmail.com> +# All rights reserved. +# +# Redistribution and use of this script, with or without modification, is +# permitted provided that the following conditions are met: +# +# 1. Redistributions of this script must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# +# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ''AS IS'' AND ANY EXPRESS OR IMPLIED +# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO +# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; +# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, +# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR +# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF +# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +# Modifed by the SlackBuilds.org project + +# Requirements +# CPAN (obviously) +# Perl (duh) +# Getopt::Long (can be installed using cpan2tgz) + +######################################################################## +# # +# !!!- IMPORTANT NOTE - THIS MEANS YOU -!!! # +# # +# The following variables are mostly a reference. The real magic is # +# done in buildslackpkg.diff. If you want to change something # +# like the BUILD variable, you should do that here and in there. # +# # +######################################################################## + +PRGNAM=cpan2tgz +VERSION=0.6 +ARCH=noarch +BUILD=1 +TAG=_SBo +CWD=`pwd` +TMP=${TMP:-/tmp/SBo} + +set -e + +# CFLAGS are not used here, as the arch is 'noarch' + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP || exit 1 +rm -rf $PRGNAM-$VERSION +tar -xzvf $CWD/$PRGNAM-$VERSION.tar.gz || exit 1 + +cat ${CWD}/buildslackpkg.diff | patch -p0 || exit 1 +cd $PRGNAM-$VERSION + +./buildslackpkg.sh diff --git a/development/cpan2tgz/cpan2tgz.info b/development/cpan2tgz/cpan2tgz.info new file mode 100644 index 0000000000..dbacf88c2a --- /dev/null +++ b/development/cpan2tgz/cpan2tgz.info @@ -0,0 +1,8 @@ +PRGNAM="cpan2tgz" +VERSION="0.6" +HOMEPAGE="http://software.jaos.org" +DOWNLOAD="http://software.jaos.org/source/cpan2tgz/cpan2tgz-0.6.tar.gz" +MD5SUM="6fbecc80d3146b11259fad8c6189d387" +MAINTAINER="Martin Lefebvre" +EMAIL="dadexter@gmail.com" +APPROVED="robw810,Alan_Hicks" |