diff options
author | Nicola Vitale <nivit@FreeBSD.org> | 2014-06-10 02:45:13 +0000 |
---|---|---|
committer | Nicola Vitale <nivit@FreeBSD.org> | 2014-06-10 02:45:13 +0000 |
commit | bc6216d4078a69e089623190531c3c719361b4a4 (patch) | |
tree | 88c34076b3a6710071cc5d129c7fd378d50beceb /java/eclipse-pydev/files | |
parent | Stagify. (diff) |
- Update to 2.8.2
- Add support for stage dir
- Sort variables
- Remove post-install target
- Remove files/pkg-install.in
Release Notes: http://pydev.org/history_pydev.html
Notes
Notes:
svn path=/head/; revision=357241
Diffstat (limited to 'java/eclipse-pydev/files')
-rw-r--r-- | java/eclipse-pydev/files/pkg-install.in | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/java/eclipse-pydev/files/pkg-install.in b/java/eclipse-pydev/files/pkg-install.in deleted file mode 100644 index 3c5c2d73b759..000000000000 --- a/java/eclipse-pydev/files/pkg-install.in +++ /dev/null @@ -1,25 +0,0 @@ -#!/bin/sh - -if [ $# -ne 2 ]; then - echo "usage: $0 distname { POST-INSTALL }" >&2 - exit 1 -fi - -PATH="/bin:/sbin:/usr/bin:/usr/sbin" - -BUNDLES_INFO=%%BUNDLES_INFO%% -PLUGINDIR=%%PLUGINDIR%% -PREFIX=%%PREFIX%% - -if [ "$2" = "POST-INSTALL" ]; then - echo "===> Updating ${BUNDLES_INFO}" - for d in $(ls -1 ${PREFIX}/${PLUGINDIR}) - do - (echo "${d},../../${PLUGINDIR}/${d}/,4,false" | \ - sed -e 's/_\([0-9]\)/,\1/1' -e '/templates/d') >> ${BUNDLES_INFO} - done - sort ${BUNDLES_INFO} > ${BUNDLES_INFO}.sort && \ - mv ${BUNDLES_INFO}.sort ${BUNDLES_INFO} -fi - -exit 0 |