summaryrefslogtreecommitdiffstats
path: root/audio/pd
diff options
context:
space:
mode:
author errordeveloper <errordeveloper[AT]gmail.com>2010-05-12 17:37:17 +0200
committer David Somero <xgizzmo@slackbuilds.org>2010-05-12 17:37:17 +0200
commitd9ba83d507acb753c747540097e247dd67a51489 (patch)
tree9b1622b634e25568675391d0d0338c15a8beb78b /audio/pd
parent8619b17687d1203d62bf4e5fdfe7788b18a067bb (diff)
downloadslackbuilds-d9ba83d507acb753c747540097e247dd67a51489.tar.gz
slackbuilds-d9ba83d507acb753c747540097e247dd67a51489.tar.xz
audio/pd: Updated for version 0.42.4
Diffstat (limited to 'audio/pd')
-rw-r--r--audio/pd/makefile.in.DESTDIR.diff58
-rw-r--r--audio/pd/pd.SlackBuild7
-rw-r--r--audio/pd/pd.info8
3 files changed, 6 insertions, 67 deletions
diff --git a/audio/pd/makefile.in.DESTDIR.diff b/audio/pd/makefile.in.DESTDIR.diff
deleted file mode 100644
index 681c8d453c..0000000000
--- a/audio/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/audio/pd/pd.SlackBuild b/audio/pd/pd.SlackBuild
index 81cbf40658..821f9c3d09 100644
--- a/audio/pd/pd.SlackBuild
+++ b/audio/pd/pd.SlackBuild
@@ -9,7 +9,7 @@
# No additional license terms
PRGNAM=pd
-SRC_VERSION=0.40-3
+SRC_VERSION=0.42-4
VERSION=$(echo $SRC_VERSION | tr - .)
ARCH=${ARCH:-i486}
BUILD=${BUILD:-1}
@@ -36,9 +36,6 @@ 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" \
@@ -52,7 +49,6 @@ cd src
--enable-setuid
make
make install \
- pddocdir=/usr/doc/$PRGNAM-$VERSION \
DESTDIR=$PKG
cd -
@@ -65,6 +61,7 @@ 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
+ln -s /usr/lib/pd/doc/ $PKG/usr/doc/$PRGNAM-$VERSION/docs
mkdir -p $PKG/install
cat $CWD/slack-desc > $PKG/install/slack-desc
diff --git a/audio/pd/pd.info b/audio/pd/pd.info
index b9e9e72dab..51254e1495 100644
--- a/audio/pd/pd.info
+++ b/audio/pd/pd.info
@@ -1,8 +1,8 @@
PRGNAM="pd"
-VERSION="0.40.3"
+VERSION="0.42.4"
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"
+DOWNLOAD="http://www-crca.ucsd.edu/~msp/Software/pd-0.42-4.src.tar.gz"
+MD5SUM="13a0a5eeeb7ebcda10f86cff2558a59f"
MAINTAINER="errordeveloper"
EMAIL="errordeveloper[AT]gmail.com"
-APPROVED="rworkman"
+APPROVED="dsomero"