diff options
author | Heinz Wiesinger <pprkut@slackbuilds.org> | 2010-05-11 20:30:54 +0200 |
---|---|---|
committer | Heinz Wiesinger <pprkut@slackbuilds.org> | 2010-05-11 20:30:54 +0200 |
commit | 5a1630a1a380f9db51b773e411549cd275e1a385 (patch) | |
tree | 7caf0861cc626e7476e0d7473dda7130812d9713 /multimedia | |
parent | b5ec065f64180edee4af1e1df2cecf648d6c1259 (diff) | |
download | slackbuilds-5a1630a1a380f9db51b773e411549cd275e1a385.tar.gz |
audio/pd: Moved from multimedia
Diffstat (limited to 'multimedia')
-rw-r--r-- | multimedia/pd/README | 7 | ||||
-rw-r--r-- | multimedia/pd/makefile.in.DESTDIR.diff | 58 | ||||
-rw-r--r-- | multimedia/pd/pd.SlackBuild | 73 | ||||
-rw-r--r-- | multimedia/pd/pd.info | 8 | ||||
-rw-r--r-- | multimedia/pd/slack-desc | 19 |
5 files changed, 0 insertions, 165 deletions
diff --git a/multimedia/pd/README b/multimedia/pd/README deleted file mode 100644 index ad275db8ce..0000000000 --- a/multimedia/pd/README +++ /dev/null @@ -1,7 +0,0 @@ -pd - Pure Data, by Miller Puckette - -pd is a real-time audio synthesis/processing package. -It is one of the "MUSIC N" family members, open source -(BSD style) successor of the MAX branch. This package -contains just the core of Pd, more external objetcs have -been written, many of them are in the CVS at SourceForge. diff --git a/multimedia/pd/makefile.in.DESTDIR.diff b/multimedia/pd/makefile.in.DESTDIR.diff deleted file mode 100644 index 681c8d453c..0000000000 --- a/multimedia/pd/makefile.in.DESTDIR.diff +++ /dev/null @@ -1,58 +0,0 @@ -Patch to make pd honor DESTDIR completely. -Permission is granted to use this patch as you see fit. - -- Robby Workman <rworkman@slackbuilds.org> - - ---- pd-0.40-3/src/makefile.in.orig 2007-12-10 23:49:08.977673553 -0600 -+++ pd-0.40-3/src/makefile.in 2007-12-10 23:49:37.421067260 -0600 -@@ -145,31 +145,31 @@ - - BINARYMODE=@binarymode@ - --ABOUT_FILE=$(pddocdir)/1.manual/1.introduction.txt -+ABOUT_FILE=$(DESTDIR)/$(pddocdir)/1.manual/1.introduction.txt - install: all -- install -d $(libpdbindir) -- install $(BIN_DIR)/$(GUINAME) $(libpdbindir)/$(GUINAME) -- install $(BIN_DIR)/pd-watchdog $(libpdbindir)/pd-watchdog -- install -m644 $(BIN_DIR)/pd.tk $(libpdbindir)/pd.tk -+ install -d $(DESTDIR)/$(libpdbindir) -+ install $(BIN_DIR)/$(GUINAME) $(DESTDIR)/$(libpdbindir)/$(GUINAME) -+ install $(BIN_DIR)/pd-watchdog $(DESTDIR)/$(libpdbindir)/pd-watchdog -+ install -m644 $(BIN_DIR)/pd.tk $(DESTDIR)/$(libpdbindir)/pd.tk - install -d $(DESTDIR)$(bindir) - install $(BINARYMODE) $(PDEXEC) $(DESTDIR)$(bindir)/pd - install -m755 $(BIN_DIR)/pdsend $(DESTDIR)$(bindir)/pdsend - install -m755 $(BIN_DIR)/pdreceive $(DESTDIR)$(bindir)/pdreceive - for dir in $(shell ls -1 ../doc | grep -v CVS); do \ - echo "installing $$dir"; \ -- install -d $(pddocdir)/$$dir ; \ -- install -p ../doc/$$dir/*.* $(pddocdir)/$$dir ; \ -+ install -d $(DESTDIR)/$(pddocdir)/$$dir ; \ -+ install -p ../doc/$$dir/*.* $(DESTDIR)/$(pddocdir)/$$dir ; \ - done - for dir in $(shell ls -1 ../doc/7.stuff | grep -v CVS); do \ - echo "installing 7.stuff/$$dir"; \ -- install -d $(pddocdir)/7.stuff/$$dir ; \ -- install -p ../doc/7.stuff/$$dir/*.* $(pddocdir)/7.stuff/$$dir ; \ -+ install -d $(DESTDIR)/$(pddocdir)/7.stuff/$$dir ; \ -+ install -p ../doc/7.stuff/$$dir/*.* $(DESTDIR)/$(pddocdir)/7.stuff/$$dir ; \ - done - mv $(ABOUT_FILE) $(ABOUT_FILE).tmp - cat $(ABOUT_FILE).tmp | sed 's|PD_VERSION|Pd version $(PD_VERSION)|' \ - > $(ABOUT_FILE) - rm $(ABOUT_FILE).tmp -- cp -pr ../extra $(libpddir)/ -+ cp -pr ../extra $(DESTDIR)/$(libpddir)/ - rm -f $(libpddir)/extra/*/*.o - install -d $(DESTDIR)$(includedir) - install -m644 m_pd.h $(DESTDIR)$(includedir)/m_pd.h -@@ -212,7 +212,7 @@ - $(CC) $(CPPFLAGS) -M $(SRC) > makefile.dependencies - - uninstall: -- rm -f -r $(libpddir) -+ rm -f -r $(DESTDIR)/$(libpddir) - rm -f $(DESTDIR)$(bindir)/pd - rm -f $(DESTDIR)$(bindir)/pdsend - rm -f $(DESTDIR)$(bindir)/pdreceive diff --git a/multimedia/pd/pd.SlackBuild b/multimedia/pd/pd.SlackBuild deleted file mode 100644 index 81cbf40658..0000000000 --- a/multimedia/pd/pd.SlackBuild +++ /dev/null @@ -1,73 +0,0 @@ -#!/bin/sh - -# Slackware build script for Pure Data - -# Written by ilya .d <errordeveloper-AT-gmail-DOT-com> -# Modified by Robby Workman <rworkman@slackbuilds.org> with minor stuff: -# -fix makefile patch to use DESTDIR correctly -# -miscellanous script tweaks -# No additional license terms - -PRGNAM=pd -SRC_VERSION=0.40-3 -VERSION=$(echo $SRC_VERSION | tr - .) -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 - -rm -rf $PKG -mkdir -p $TMP $PKG $OUTPUT -cd $TMP -rm -rf $PRGNAM-$VERSION -tar xvf $CWD/$PRGNAM-$SRC_VERSION.src.tar.gz -cd $PRGNAM-$SRC_VERSION -chown -R root:root . -chmod -R u+w,go+r-w,a-s . - -# Fix DESTDIR support in the makefile source -patch -p1 < $CWD/makefile.in.DESTDIR.diff - -cd src - CFLAGS="$SLKCFLAGS" \ - CXXFLAGS="$SLKCFLAGS" \ - ./configure \ - --prefix=/usr \ - --libdir=/usr/lib \ - --sysconfdir=/etc \ - --datadir=/usr/share/pd \ - --localstatedir=/var \ - --enable-alsa \ - --enable-setuid - make - make install \ - pddocdir=/usr/doc/$PRGNAM-$VERSION \ - DESTDIR=$PKG -cd - - -( 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 -) - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a INSTALL.txt README.txt LICENSE.txt src/CHANGELOG.txt \ - $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 diff --git a/multimedia/pd/pd.info b/multimedia/pd/pd.info deleted file mode 100644 index b9e9e72dab..0000000000 --- a/multimedia/pd/pd.info +++ /dev/null @@ -1,8 +0,0 @@ -PRGNAM="pd" -VERSION="0.40.3" -HOMEPAGE="http://www-crca.ucsd.edu/~msp/software.html" -DOWNLOAD="http://www-crca.ucsd.edu/~msp/Software/pd-0.40-3.src.tar.gz" -MD5SUM="76212ab15736eec89d8745e73ab954a3" -MAINTAINER="errordeveloper" -EMAIL="errordeveloper[AT]gmail.com" -APPROVED="rworkman" diff --git a/multimedia/pd/slack-desc b/multimedia/pd/slack-desc deleted file mode 100644 index 572f89f12f..0000000000 --- a/multimedia/pd/slack-desc +++ /dev/null @@ -1,19 +0,0 @@ -# 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------------------------------------------------------| -pd: pd (Pure Data, by Miller Puckette) -pd: -pd: pd is a real-time audio synthesis/processing package. -pd: It is one of the "MUSIC N" family members, open source -pd: (BSD style) successor of the MAX branch. This package -pd: contains just the core of Pd, more external objetcs have -pd: been written, many of them are in the CVS at SourceForge. -pd: -pd: Community resource: http://puredata.info -pd: -pd: |