diff options
author | Nick Hadaway <raker@gentoo.org> | 2003-07-15 08:08:12 +0000 |
---|---|---|
committer | Nick Hadaway <raker@gentoo.org> | 2003-07-15 08:08:12 +0000 |
commit | 6b79fb34af2a0ddf7452ff54ed6fdb94048dc288 (patch) | |
tree | 1be1c80d5f3d9dba7c65000ec21cb6d183de4727 /eclass/gnustep.eclass | |
parent | Removing old files. (diff) | |
download | historical-6b79fb34af2a0ddf7452ff54ed6fdb94048dc288.tar.gz historical-6b79fb34af2a0ddf7452ff54ed6fdb94048dc288.tar.bz2 historical-6b79fb34af2a0ddf7452ff54ed6fdb94048dc288.zip |
Got rid of egnustepmake and changed egnustepmake2 to egnustepmake
Diffstat (limited to 'eclass/gnustep.eclass')
-rw-r--r-- | eclass/gnustep.eclass | 54 |
1 files changed, 0 insertions, 54 deletions
diff --git a/eclass/gnustep.eclass b/eclass/gnustep.eclass index 39a1a5aa68c8..af2e139793cd 100644 --- a/eclass/gnustep.eclass +++ b/eclass/gnustep.eclass @@ -37,60 +37,6 @@ egnustepmake() { cd ${S} - if [ -f /usr/GNUstep/System/Makefiles/GNUstep.sh ] ; then - . /usr/GNUstep/System/Makefiles/GNUstep.sh - else - die "gnustep-make not installed!" - fi - - mkdir -p $TMP/fakehome/GNUstep - - if [ -x configure ] ; then - if [ -z "$*" ] ; then - econf \ - HOME=$TMP/fakehome \ - GNUSTEP_USER_ROOT=$TMP/fakehome/GNUstep \ - || die "configure failed" - else - econf \ - HOME=$TMP/fakehome \ - GNUSTEP_USER_ROOT=$TMP/fakehome/GNUstep \ - $* || die "configure failed (options: $*)" - fi - fi - - if [ ! "${GNUSTEPBACK_XFT}" -eq 2 ] ; then - if [ "${PN}" = "gnustep-back" ] ; then - if [ ! -f "/usr/X11R6/include/X11/Xft1/Xft.h" ]; then - sed "s,^#define HAVE_XFT.*,#undef HAVE_XFT,g" config.h > config.h.new - sed "s,^#define HAVE_UTF8.*,#undef HAVE_UTF8,g" config.h.new > config.h - sed "s,^WITH_XFT=.*,WITH_XFT=no," config.make > config.make.new - sed "s,-lXft,," config.make.new > config.make - fi - fi - fi - - if [ -f ./[mM]akefile -o -f ./GNUmakefile ] ; then - make \ - HOME=$TMP/fakehome \ - GNUSTEP_USER_ROOT=$TMP/fakehome/GNUstep \ - || die "emake failed" - else - die "no Makefile found" - fi - return 0 -} - -# This was added for gnustep-guile and will provide an alternate -# easier-to-swallow configure for gnustep programs that fail w/egnustepmake -egnustepmake2() { - getsourcedir - - addwrite ~/GNUstep/Defaults/.GNUstepDefaults.lck - addpredict ~/GNUstep - - cd ${S} - unset CFLAGS unset CC |