summaryrefslogtreecommitdiffstats
path: root/enlightenment/enlightenment/rebuild_e17
diff options
context:
space:
mode:
authorLukc <lukc@upyum.com>2010-09-04 13:01:40 +0000
committerLukc <lukc@upyum.com>2010-09-04 13:01:40 +0000
commit5522f4b62e28a8569ba0f83d4ac777e170331b9c (patch)
treeaf45d9b37dd83d5d36253b485dfb640a5472b975 /enlightenment/enlightenment/rebuild_e17
parentcc1ea6f5e84793cc6635ab1e9fe6cdcb487e5b44 (diff)
downloadports-5522f4b62e28a8569ba0f83d4ac777e170331b9c.tar.gz
ports-5522f4b62e28a8569ba0f83d4ac777e170331b9c.tar.bz2
ports-5522f4b62e28a8569ba0f83d4ac777e170331b9c.tar.xz
ports-5522f4b62e28a8569ba0f83d4ac777e170331b9c.zip
Revert "Enlightenment added"
Reason: This is another repository, not a port. This reverts commit 5235aaa55be8516f3c78b5014930d6830614ee00.
Diffstat (limited to 'enlightenment/enlightenment/rebuild_e17')
-rwxr-xr-xenlightenment/enlightenment/rebuild_e1738
1 files changed, 0 insertions, 38 deletions
diff --git a/enlightenment/enlightenment/rebuild_e17 b/enlightenment/enlightenment/rebuild_e17
deleted file mode 100755
index 3e96cc8..0000000
--- a/enlightenment/enlightenment/rebuild_e17
+++ /dev/null
@@ -1,38 +0,0 @@
-#!/bin/bash
-#
-# Script available under the terms of the Nutritive licence.
-# (do what you want, as long as it and it's derivated are free)
-#
-# Script to help with enlightenment port rebuild
-#
-# Based on Victor Martinez's script, from Crux's e17 repository.
-#
-# An eselect module that do it a better way should arrive... a day. :)
-#+ Until this day, you can use this small script.
-#
-# I already tested it while Enlightenment was open. As long as you don't
-#+ segfault, it works. ;)
-#
-
-. /etc/pkg++.conf
-
-e17_packages=(eina embryo eet evas ecore efreet e_dbus edje enlightenment)
-
-prt-get remove ${e17_packages[@]}
-
-: ${PKGMK_PKGFILE:="Pkgfile"}
-
-if [[ -e "$PKGMK_PKGFILE" ]]; then
- cd ..
-fi
-
-for package in ${e17_packages[@]}; do
- (
- cd $package
- pkg++ -f $@
- pkg++ -f -us
- pkg++ -f -um
- pkg++ -f -uf
- ) || exit 1
-done
-