Gentoo Archives: gentoo-commits

From: Fabian Groffen <grobian@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/portage:prefix commit in: /
Date: Fri, 14 Jan 2022 10:40:38
Message-Id: 1642156817.4220da1565d996547bd8bb50ee0aa0fb404da120.grobian@gentoo
1 commit: 4220da1565d996547bd8bb50ee0aa0fb404da120
2 Author: Fabian Groffen <grobian <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jan 14 10:40:17 2022 +0000
4 Commit: Fabian Groffen <grobian <AT> gentoo <DOT> org>
5 CommitDate: Fri Jan 14 10:40:17 2022 +0000
6 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=4220da15
7
8 configure.ac: ran autoupdate
9
10 Signed-off-by: Fabian Groffen <grobian <AT> gentoo.org>
11
12 configure.ac | 15 +++++++--------
13 1 file changed, 7 insertions(+), 8 deletions(-)
14
15 diff --git a/configure.ac b/configure.ac
16 index 9083824eb..9def5210c 100644
17 --- a/configure.ac
18 +++ b/configure.ac
19 @@ -1,7 +1,7 @@
20 dnl Process this file with autoconf to produce a configure script.
21 -AC_INIT(portage-prefix, @version@, prefix@g.o)
22 +AC_INIT([portage-prefix],[@version@],[prefix@g.o])
23
24 -AC_PREREQ([2.61])
25 +AC_PREREQ([2.71])
26
27 case "${prefix}" in
28 '') AC_MSG_ERROR([bad value ${prefix} for --prefix, must not be empty]) ;;
29 @@ -46,7 +46,7 @@ GENTOO_PATH_GNUPROG(PORTAGE_XARGS, [xargs])
30 GENTOO_PATH_GNUPROG(PORTAGE_GREP, [grep])
31
32 AC_ARG_WITH(portage-user,
33 -AC_HELP_STRING([--with-portage-user=myuser],[use user 'myuser' as portage owner (default portage)]),
34 +AS_HELP_STRING([--with-portage-user=myuser],[use user 'myuser' as portage owner (default portage)]),
35 [case "${withval}" in
36 ""|yes) AC_MSG_ERROR(bad value ${withval} for --with-portage-user);;
37 *) portageuser="${withval}";;
38 @@ -54,7 +54,7 @@ esac],
39 [portageuser="portage"])
40
41 AC_ARG_WITH(portage-group,
42 -AC_HELP_STRING([--with-portage-group=mygroup],[use group 'mygroup' as portage users group (default portage)]),
43 +AS_HELP_STRING([--with-portage-group=mygroup],[use group 'mygroup' as portage users group (default portage)]),
44 [case "${withval}" in
45 ""|yes) AC_MSG_ERROR(bad value ${withval} for --with-portage-group);;
46 *) portagegroup="${withval}";;
47 @@ -62,7 +62,7 @@ esac],
48 [portagegroup="portage"])
49
50 AC_ARG_WITH(root-user,
51 -AC_HELP_STRING([--with-root-user=myuser],[uses 'myuser' as owner of installed files (default is portage-user)]),
52 +AS_HELP_STRING([--with-root-user=myuser],[uses 'myuser' as owner of installed files (default is portage-user)]),
53 [case "${withval}" in
54 ""|yes) AC_MSG_ERROR(bad value ${withval} for --with-root-user);;
55 *) rootuser="${withval}";;
56 @@ -88,8 +88,7 @@ else
57 fi
58
59 AC_ARG_WITH(offset-prefix,
60 -AC_HELP_STRING([--with-offset-prefix],
61 - [specify the installation prefix for all packages, defaults to an empty string]),
62 +AS_HELP_STRING([--with-offset-prefix],[specify the installation prefix for all packages, defaults to an empty string]),
63 [PORTAGE_EPREFIX=$withval],
64 [PORTAGE_EPREFIX=''])
65
66 @@ -99,7 +98,7 @@ then
67 fi
68
69 AC_ARG_WITH(extra-path,
70 -AC_HELP_STRING([--with-extra-path], [specify additional PATHs available to the portage build environment (use with care)]),
71 +AS_HELP_STRING([--with-extra-path],[specify additional PATHs available to the portage build environment (use with care)]),
72 [EXTRA_PATH="$withval"],
73 [EXTRA_PATH=""])