Gentoo Archives: gentoo-commits

From: "Bernard Cafarelli (voyageur)" <voyageur@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in gnustep-base/gnustep-make/files: gnustep-5.sh gnustep-5.csh
Date: Wed, 29 Jan 2014 14:48:37
Message-Id: 20140129144833.0FC242004E@flycatcher.gentoo.org
1 voyageur 14/01/29 14:48:32
2
3 Added: gnustep-5.sh gnustep-5.csh
4 Log:
5 Version bump. Remove gdnc autostart (#475048), force -j1 for doc compilation for now (#494096)
6
7 (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key C74525F2)
8
9 Revision Changes Path
10 1.1 gnustep-base/gnustep-make/files/gnustep-5.sh
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnustep-base/gnustep-make/files/gnustep-5.sh?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnustep-base/gnustep-make/files/gnustep-5.sh?rev=1.1&content-type=text/plain
14
15 Index: gnustep-5.sh
16 ===================================================================
17 #!/usr/bin/env sh
18 # Copyright 1999-2014 Gentoo Foundation
19 # Distributed under the terms of the GNU General Public License v2
20 # $Header: /var/cvsroot/gentoo-x86/gnustep-base/gnustep-make/files/gnustep-5.sh,v 1.1 2014/01/29 14:48:32 voyageur Exp $
21
22 # Test for an interactive shell
23 case $- in
24 *i*)
25 ;;
26 *)
27 return
28 ;;
29 esac
30
31 GNUSTEP_SYSTEM_TOOLS="@GENTOO_PORTAGE_EPREFIX@"/usr/bin
32
33 if [ -x ${GNUSTEP_SYSTEM_TOOLS}/make_services ]; then
34 ${GNUSTEP_SYSTEM_TOOLS}/make_services
35 fi
36
37
38
39 1.1 gnustep-base/gnustep-make/files/gnustep-5.csh
40
41 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnustep-base/gnustep-make/files/gnustep-5.csh?rev=1.1&view=markup
42 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnustep-base/gnustep-make/files/gnustep-5.csh?rev=1.1&content-type=text/plain
43
44 Index: gnustep-5.csh
45 ===================================================================
46 #!/usr/bin/env csh
47 # Copyright 1999-2014 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/gnustep-base/gnustep-make/files/gnustep-5.csh,v 1.1 2014/01/29 14:48:32 voyageur Exp $
50
51 # Test for an interactive shell
52 if ( $?prompt ) then
53 setenv GNUSTEP_SYSTEM_TOOLS "@GENTOO_PORTAGE_EPREFIX@"/usr/bin
54
55 if ( -x $GNUSTEP_SYSTEM_TOOLS/make_services ) then
56 $GNUSTEP_SYSTEM_TOOLS/make_services
57 endif
58 endif