aboutsummaryrefslogtreecommitdiff
path: root/packages
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2008-05-10 18:54:22 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2008-05-10 18:54:22 +0000
commit177fa2d8ad04f93ae5411d5c3a8c715cf5ea4534 (patch)
tree688f3e89b57c6edb55bb5b6c8ac816da1c59576d /packages
parent7af7b50ff3e1cebb484eb7d0d241bfb34b0212cb (diff)
fixed up Debian packages so that they now installed properly into /usr rather than /usr/local. The tarballs still install into /usr/local. Also limited the dpkg commands to machines that have dpkg-deb installed. Also, tweaked /usr/share/pd to be write-all so that people can install their own stuff there.
svn path=/trunk/; revision=9778
Diffstat (limited to 'packages')
-rw-r--r--packages/Makefile.buildlayout6
-rwxr-xr-xpackages/linux_make/Makefile59
2 files changed, 35 insertions, 30 deletions
diff --git a/packages/Makefile.buildlayout b/packages/Makefile.buildlayout
index 7f2c3a31..dd4a00e6 100644
--- a/packages/Makefile.buildlayout
+++ b/packages/Makefile.buildlayout
@@ -68,6 +68,12 @@ endif
ifeq ($(UNAME_MACHINE),ppc)
ARCH = powerpc
endif
+# if machine has dpkg-deb, build a Debian package
+ifeq ($(shell test -x /usr/bin/dpkg-deb && echo YES),YES)
+ PACKAGE_TYPE = deb
+else
+ PACKAGE_TYPE = tarbz2
+endif
#==============================================================================#
#
diff --git a/packages/linux_make/Makefile b/packages/linux_make/Makefile
index bc10f849..b5fd680b 100755
--- a/packages/linux_make/Makefile
+++ b/packages/linux_make/Makefile
@@ -4,19 +4,21 @@
CWD := $(shell pwd)
-DESTDIR = $(CWD)/build/
+DESTDIR = $(CWD)/build
cvs_root_dir := $(shell cd $(CWD)/../.. && pwd)
BUILDLAYOUT_DIR = $(cvs_root_dir)/packages
+include $(BUILDLAYOUT_DIR)/Makefile.buildlayout
# for command-line UNIX versions, you need to install Pd into the same
# directory as $(prefix) otherwise Pd won't be able to find extra, doc, etc.
-prefix = /usr/local
-
-# generates the dependencies for all externals and pd itself
-PACKAGE_DEPENDS := $(shell find $(DESTDIR) \( -name "*.pd_linux" -or -name pd-gui -or -wholename \*bin/pd \) -print0 | xargs -0 dpkg-shlibdeps -O | cut -b1-15 --complement )
-
-include $(BUILDLAYOUT_DIR)/Makefile.buildlayout
+ifeq ($(PACKAGE_TYPE),deb)
+ prefix = /usr
+ # generates the dependencies for all externals and pd itself
+ PACKAGE_DEPENDS := $(shell find $(DESTDIR) \( -name "*.pd_linux" -or -name pd-gui -or -wholename \*bin/pd \) -print0 | xargs -0 dpkg-shlibdeps -O | cut -b1-15 --complement )
+else
+ prefix = /usr/local
+endif
TARGET_PLATFORM := $(shell uname -m)
ifeq ($(TARGET_PLATFORM),i686)
@@ -61,18 +63,21 @@ install:
#
#==============================================================================#
-# if machine has dpkg-deb, build a Debian package
-DPKG := $(shell test -x /usr/bin/dpkg-deb && echo YES)
-ifeq ($(DPKG),YES)
- package: deb
-else
- package: tarbz2
-endif
+package: $(PACKAGE_TYPE)
PACKAGE_NAME = Pd-$(PD_VERSION)
-DEB_BUILD_ARCH := $(shell dpkg-architecture -qDEB_BUILD_ARCH)
-DEB_PD_VERSION := $(shell echo $(PD_VERSION) | sed 's|\(.*\)-extended-\(.*\)|\1cvs\2-1|')
+
+tarbz2: installer_makefile installer_readme
+ install -p $(packages_src)/linux_make/default.pdsettings $(libpddir)
+ mv $(DESTDIR)$(prefix) $(DESTDIR)$(PACKAGE_NAME)
+ cd $(DESTDIR) && \
+ tar cjf $(PACKAGE_NAME).tar.bz2 $(PACKAGE_NAME)
+ mv $(DESTDIR)$(PACKAGE_NAME) $(DESTDIR)$(prefix)
+
+
+deb: DEB_BUILD_ARCH := $(shell dpkg-architecture -qDEB_BUILD_ARCH)
+deb: DEB_PD_VERSION := $(shell echo $(PD_VERSION) | sed 's|\(.*\)-extended-\(.*\)|\1cvs\2-1|')
deb: $(bindir)
# GNOME menu support
install -d $(DESTDIR)/usr/share/icons/hicolor/128x128/apps
@@ -96,33 +101,26 @@ deb: $(bindir)
ln -s $(prefix)/lib/pd/default.pdsettings \
$(DESTDIR)/etc/pd-extended/default.pdsettings
install -p $(packages_src)/linux_make/default.pdsettings $(libpddir)
-# folder to install libs into
- install -d -m0775 $(DESTDIR)/usr/share/pd
+# globla folder for user installed files
+ install -d -m0777 $(DESTDIR)/usr/share/pd
# emacs mode for .pd files
install -d $(DESTDIR)/usr/share/emacs/site-lisp/
install -p $(scripts_src)/pd-mode.el $(DESTDIR)/usr/share/emacs/site-lisp/
# Pd-related scripts
install -p $(scripts_src)/pd-diff $(bindir)
install -p $(scripts_src)/config-switcher.sh $(bindir)
-# set build architecture and version for the package
- sed -i 's|^Version:.*|Version: $(DEB_PD_VERSION)|' \
- $(packages_src)/linux_make/debian/control
- sed -i 's|^Architecture:.*|Architecture: $(DEB_BUILD_ARCH)|' \
- $(packages_src)/linux_make/debian/control
# debian packaging
test -d $(DESTDIR)/DEBIAN || mkdir -p $(DESTDIR)/DEBIAN
cp $(packages_src)/linux_make/debian/control $(DESTDIR)/DEBIAN
+# set build architecture and version for the package
+ sed -i 's|^Version:.*|Version: $(DEB_PD_VERSION)|' \
+ $(DESTDIR)/DEBIAN/control
+ sed -i 's|^Architecture:.*|Architecture: $(DEB_BUILD_ARCH)|' \
+ $(DESTDIR)/DEBIAN/control
# add auto-generated dependencies
sed -i 's!^\(Depends:.*\)!\1 $(PACKAGE_DEPENDS)!' $(DESTDIR)/DEBIAN/control
fakeroot dpkg-deb --build $(DESTDIR) $(packages_src)/linux_make/$(PACKAGE_NAME).deb
-tarbz2: installer_makefile installer_readme
- install -p $(packages_src)/linux_make/default.pdsettings $(libpddir)
- mv $(DESTDIR)$(prefix) $(DESTDIR)$(PACKAGE_NAME)
- cd $(DESTDIR) && \
- tar cjf $(PACKAGE_NAME).tar.bz2 $(PACKAGE_NAME)
- mv $(DESTDIR)$(PACKAGE_NAME) $(DESTDIR)$(prefix)
-
INSTALLER_README_FILE = $(DESTDIR)$(prefix)/README.txt
installer_readme:
@@ -186,6 +184,7 @@ test_locations:
@echo "PD-EXTENDED_VERSION: $(PD-EXTENDED_VERSION)"
@echo "CWD $(CWD)"
@echo "DESTDIR $(DESTDIR)"
+ @echo "PACKAGE_TYPE $(PACKAGE_TYPE)"
@echo "PREFIX $(prefix)"
@echo "BINDIR $(bindir)"
@echo "LIBDIR $(libdir)"