Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=ce7a19e49caeed74546514e269f70658f3e27863

commit ce7a19e49caeed74546514e269f70658f3e27863
Author: James Buren <[email protected]>
Date:   Tue Sep 11 00:52:00 2012 -0500

gnustep.sh: remove now useless schema

diff --git a/source/include/gnustep.sh b/source/include/gnustep.sh
deleted file mode 100644
index c7069e7..0000000
--- a/source/include/gnustep.sh
+++ /dev/null
@@ -1,93 +0,0 @@
-#!/bin/sh
-
-###
-# = gnustep.sh(3)
-# Priyank Gosalia <[email protected]>
-#
-# == NAME
-# gnustep.sh - for Frugalware
-#
-# == SYNOPSIS
-# Common schema for GNUstep packages.
-#
-# == EXAMPLE
-# --------------------------------------------------
-# pkgname=gnustep-make
-# pkgver=2.0.6
-# pkgrel=1
-# pkgdesc="The GNUstep make utilities"
-# archs=('i686' 'x86_64')
-# Finclude gnustep
-# sha1sums=('86eab53a01b16dee695002dd22981b55a16cc085')
-# --------------------------------------------------
-#
-# == OPTIONS
-# * _F_gnustep_name (defaults to $pkgname): if you want to use a custom package
-# name (for example the upstream name contains uppercase letters) then use this
-# to declare the real name
-
-###
-
-if [ -z $_F_gnustep_name ] ; then
-       _F_gnustep_name=$pkgname
-fi
-
-if [ -z $_F_gnustep_category ] ; then
-       _F_gnustep_category="core"
-fi
-
-_F_archive_name=$_F_gnustep_name
-
-_F_GNUSTEP_BASE="/usr/lib/GNUstep"
-_F_GNUSTEP_LOCAL="$_F_GNUSTEP_BASE/Local/Library"
-_F_GNUSTEP_SYSTEM="$_F_GNUSTEP_BASE/System/Library"
-
-###
-# == OVERWRITTEN VARIABLES
-# * url
-# * groups
-# * up2date
-# * makedepends
-# * depends
-# * groups
-# * source()
-###
-
-Fprefix="/usr/lib/GNUstep"
-makedepends=('gcc-objc' 'libffi')
-depends=('gnustep-make>=2.6.1' 'libobjc>=4.4.0-6')
-groups=('gnustep-extra')
-url="http://www.gnustep.org/";
-dlurl="http://ftpmain.gnustep.org/pub/gnustep/$_F_gnustep_category/";
-up2date="lynx -dump $url/resources/downloads.php | grep 
'${_F_gnustep_name}-\(.*\).tar.gz' | head -n1 | Flasttar"
-source=($dlurl/${_F_gnustep_name}-${pkgver}.tar.gz)
-
-###
-# == APPENDED VARIABLES
-# * scriptlet to options()
-###
-options=(${options[@]} 'scriptlet')
-
-Fgnustep_init()
-{
-       Fmessage "sourcing /etc/profile.d/GNUstep.sh"
-       if [ ! $_F_gnustep_name == "gnustep-make" ]; then
-               source /etc/profile.d/GNUstep.sh || Fdie
-       fi
-       Fprefix="/usr/lib/GNUstep"
-       Fconfopts="--prefix=$Fprefix"
-}
-
-Fgnustep_build()
-{
-       Fgnustep_init
-       Fconf
-       make || Fdie
-       make DESTDIR=$Fdestdir install || Fdie
-}
-
-build()
-{
-       Fgnustep_build
-}
-
_______________________________________________
Frugalware-git mailing list
[email protected]
http://frugalware.org/mailman/listinfo/frugalware-git

Reply via email to