| 1 | # Copyright 1999-2003 Gentoo Technologies, Inc. |
1 | # Copyright 1999-2003 Gentoo Technologies, Inc. |
| 2 | # Distributed under the terms of the GNU General Public License v2 |
2 | # Distributed under the terms of the GNU General Public License v2 |
| 3 | # $Header: /var/cvsroot/gentoo-x86/eclass/eutils.eclass,v 1.36 2003/06/25 03:53:29 vapier Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/eutils.eclass,v 1.41 2003/07/14 04:47:17 vapier Exp $ |
| 4 | # |
4 | # |
| 5 | # Author: Martin Schlemmer <azarah@gentoo.org> |
5 | # Author: Martin Schlemmer <azarah@gentoo.org> |
| 6 | # |
6 | # |
| 7 | # This eclass is for general purpose functions that most ebuilds |
7 | # This eclass is for general purpose functions that most ebuilds |
| 8 | # have to implement themselves. |
8 | # have to implement themselves. |
| … | |
… | |
| 565 | export SANDBOX_ON="${oldsandbox}" |
565 | export SANDBOX_ON="${oldsandbox}" |
| 566 | |
566 | |
| 567 | if [ ! -e ${ehome} ] && [ ! -e ${D}/${ehome} ] ; then |
567 | if [ ! -e ${ehome} ] && [ ! -e ${D}/${ehome} ] ; then |
| 568 | einfo " - Creating ${ehome} in ${D}" |
568 | einfo " - Creating ${ehome} in ${D}" |
| 569 | dodir ${ehome} |
569 | dodir ${ehome} |
| 570 | fperms ${euser} ${ehome} |
570 | fowners ${euser} ${ehome} |
|
|
571 | fperms 755 ${ehome} |
| 571 | fi |
572 | fi |
| 572 | } |
573 | } |
| 573 | |
574 | |
| 574 | # Simplify/standardize adding groups to the system |
575 | # Simplify/standardize adding groups to the system |
| 575 | # vapier@gentoo.org |
576 | # vapier@gentoo.org |
| … | |
… | |
| 636 | edos2unix() { |
637 | edos2unix() { |
| 637 | for f in $@ ; do |
638 | for f in $@ ; do |
| 638 | cp ${f} ${T}/edos2unix |
639 | cp ${f} ${T}/edos2unix |
| 639 | sed 's/\r$//' ${T}/edos2unix > ${f} |
640 | sed 's/\r$//' ${T}/edos2unix > ${f} |
| 640 | done |
641 | done |
|
|
642 | } |
|
|
643 | |
|
|
644 | # Make a desktop file ! |
|
|
645 | # Great for making those icons in kde/gnome startmenu ! |
|
|
646 | # Amaze your friends ! Get the women ! Join today ! |
|
|
647 | # gnome2 /usr/share/applications |
|
|
648 | # gnome1 /usr/share/gnome/apps/ |
|
|
649 | # KDE ${KDEDIR}/share/applnk /usr/share/applnk |
|
|
650 | # |
|
|
651 | # make_desktop_entry(<binary>, [name], [icon], [type], [path]) |
|
|
652 | # |
|
|
653 | # binary: what binary does the app run with ? |
|
|
654 | # name: the name that will show up in the menu |
|
|
655 | # icon: give your little like a pretty little icon ... |
|
|
656 | # this can be relative (to /usr/share/pixmaps) or |
|
|
657 | # a full path to an icon |
|
|
658 | # type: what kind of application is this ? for categories: |
|
|
659 | # http://www.freedesktop.org/standards/menu/draft/menu-spec/menu-spec.html |
|
|
660 | # path: if your app needs to startup in a specific dir |
|
|
661 | make_desktop_entry() { |
|
|
662 | [ -z "$1" ] && eerror "You must specify the executable" && return 1 |
|
|
663 | |
|
|
664 | local exec=${1} |
|
|
665 | local name=${2:-${PN}} |
|
|
666 | local icon=${3:-${PN}.png} |
|
|
667 | local type=${4} |
|
|
668 | local path=${5:-${GAMES_PREFIX}} |
|
|
669 | if [ -z "${type}" ] ; then |
|
|
670 | case ${CATEGORY} in |
|
|
671 | app-emulation) type=Emulator ;; |
|
|
672 | app-games) type=Game ;; |
|
|
673 | *) type="" ;; |
|
|
674 | esac |
|
|
675 | fi |
|
|
676 | local desktop=${T}/${exec}.desktop |
|
|
677 | |
|
|
678 | echo "[Desktop Entry] |
|
|
679 | Encoding=UTF-8 |
|
|
680 | Version=0.9.2 |
|
|
681 | Name=${name} |
|
|
682 | Type=Application |
|
|
683 | Comment=${DESCRIPTION} |
|
|
684 | Exec=${exec} |
|
|
685 | Path=${path} |
|
|
686 | Icon=${icon} |
|
|
687 | Categories=Application;${type};" > ${desktop} |
|
|
688 | |
|
|
689 | if [ -d /usr/share/applications ] ; then |
|
|
690 | insinto /usr/share/applications |
|
|
691 | doins ${desktop} |
|
|
692 | fi |
|
|
693 | |
|
|
694 | #if [ -d /usr/share/gnome/apps ] ; then |
|
|
695 | # insinto /usr/share/gnome/apps/Games |
|
|
696 | # doins ${desktop} |
|
|
697 | #fi |
|
|
698 | |
|
|
699 | #if [ ! -z "`ls /usr/kde/* 2>/dev/null`" ] ; then |
|
|
700 | # for ver in /usr/kde/* ; do |
|
|
701 | # insinto ${ver}/share/applnk/Games |
|
|
702 | # doins ${desktop} |
|
|
703 | # done |
|
|
704 | #fi |
|
|
705 | |
|
|
706 | if [ -d /usr/share/applnk ] ; then |
|
|
707 | insinto /usr/share/applnk/${type} |
|
|
708 | doins ${desktop} |
|
|
709 | fi |
|
|
710 | |
|
|
711 | return 0 |
| 641 | } |
712 | } |
| 642 | |
713 | |
| 643 | # new convenience patch wrapper function to eventually replace epatch(), |
714 | # new convenience patch wrapper function to eventually replace epatch(), |
| 644 | # $PATCHES, $PATCHES1, src_unpack:patch, src_unpack:autopatch and |
715 | # $PATCHES, $PATCHES1, src_unpack:patch, src_unpack:autopatch and |
| 645 | # /usr/bin/patch |
716 | # /usr/bin/patch |
| … | |
… | |
| 755 | eend $? |
826 | eend $? |
| 756 | |
827 | |
| 757 | done |
828 | done |
| 758 | |
829 | |
| 759 | } |
830 | } |
|
|
831 | |
|
|
832 | # Unpack those pesky makeself generated files ... |
|
|
833 | # They're shell scripts with the binary package tagged onto |
|
|
834 | # the end of the archive. Loki utilized the format as does |
|
|
835 | # many other game companies. |
|
|
836 | # |
|
|
837 | # Usage: unpack_makeself [file to unpack] [offset] |
|
|
838 | # - If the file is not specified then unpack will utilize ${A}. |
|
|
839 | # - If the offset is not specified then we will attempt to extract |
|
|
840 | # the proper offset from the script itself. |
|
|
841 | unpack_makeself() { |
|
|
842 | local src=$1 |
|
|
843 | local skip=$2 |
|
|
844 | |
|
|
845 | [ -z "${src}" ] && src=${A} |
|
|
846 | [ -e ./${src} ] \ |
|
|
847 | && src=${PWD}/${src} \ |
|
|
848 | || src=${DISTDIR}/${src} |
|
|
849 | local shrtsrc=`basename ${src}` |
|
|
850 | echo ">>> Unpacking ${shrtsrc} to ${PWD}" |
|
|
851 | if [ -z "${skip}" ] ; then |
|
|
852 | local ver="`grep -a '#.*Makeself' ${src} | awk '{print $NF}'`" |
|
|
853 | local skip=0 |
|
|
854 | case ${ver} in |
|
|
855 | 1.5.*) # tested 1.5.{3,4,5} ... guessing 1.5.x series is same |
|
|
856 | skip=`grep -a ^skip= ${src} | cut -d= -f2` |
|
|
857 | ;; |
|
|
858 | 2.0|2.0.1) |
|
|
859 | skip=`grep -a ^$'\t'tail ${src} | awk '{print $2}' | cut -b2-` |
|
|
860 | ;; |
|
|
861 | 2.1.1) |
|
|
862 | skip=`grep -a ^offset= ${src} | awk '{print $2}' | cut -b2-` |
|
|
863 | let skip="skip + 1" |
|
|
864 | ;; |
|
|
865 | *) |
|
|
866 | eerror "I'm sorry, but I was unable to support the Makeself file." |
|
|
867 | eerror "The version I detected was '${ver}'." |
|
|
868 | eerror "Please file a bug about the file ${shrtsrc} at" |
|
|
869 | eerror "http://bugs.gentoo.org/ so that support can be added." |
|
|
870 | die "makeself version '${ver}' not supported" |
|
|
871 | ;; |
|
|
872 | esac |
|
|
873 | debug-print "Detected Makeself version ${ver} ... using ${skip} as offset" |
|
|
874 | fi |
|
|
875 | |
|
|
876 | # we do this because otherwise a failure in gzip will cause 0 bytes to be sent |
|
|
877 | # to tar which will make tar not extract anything and exit with 0 |
|
|
878 | local out="`tail +${skip} ${src} | gzip -cd | tar -x --no-same-owner -v -f -`" |
|
|
879 | [ -z "${out}" ] && die "failure unpacking makeself ${shrtsrc} ('${ver}' +${skip})" |
|
|
880 | } |