Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 141345 - gnome-volume-manager-1.5.15-r3 configure script error
Summary: gnome-volume-manager-1.5.15-r3 configure script error
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: [OLD] GNOME (show other bugs)
Hardware: All Linux
: High normal (vote)
Assignee: Gentoo Linux Gnome Desktop Team
URL: http://bugzilla.gnome.org/show_bug.cg...
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2006-07-21 16:11 UTC by Brant Gurganus
Modified: 2007-03-04 23:27 UTC (History)
0 users

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Brant Gurganus 2006-07-21 16:11:54 UTC
While it seems to build and install fine, the configure script being used or generated for gnome-volume-manager has an error in it.

checking whether to enable debugging... no
checking whether to enable run-time multiuser checks... no
./configure: line 6335: directory: command not found
checking for i686-pc-linux-gnu-pkg-config... no
checking for pkg-config... /usr/bin/pkg-config
checking pkg-config is at least version 0.9.0... yes

Without Gentoo patches, the error is:

checking whether to enable debugging... yes
checking whether to enable run-time multiuser checks... yes
./configure: line 5414: directory: command not found
checking for pkg-config... /usr/bin/pkg-config
checking pkg-config is at least version 0.9.0... yes

It appears that the AC_ACTION_IF_NOT_GIVEN parameter of AC_ARG_WITH in configure.in is wrong upstream. I am not sure, but I think the block:
dnl Directory to check for console ownership
AC_ARG_WITH(console-auth-dir,AS_HELP_STRING([--with-console-auth-dir=[dirname]]),,[directory to check for console ownership])
if ! test -z "$with_console_auth_dir"; then
	GVM_CONSOLE_AUTH_DIR=$with_console_auth_dir
else
	GVM_CONSOLE_AUTH_DIR=/var/run/console/
fi

should be:

dnl Directory to check for console ownership
AC_ARG_WITH(console-auth-dir,AS_HELP_STRING([--with-console-auth-dir=[dirname]]),[GVM_CONSOLE_AUTH_DIR=$with_console_auth_dir],[GVM_CONSOLE_AUTH_DIR=/var/run/console/])

If somebody else agrees with that assessment and doesn't want to create a patch, I'll create one to attach here and submit upstream.
Comment 1 foser (RETIRED) gentoo-dev 2006-08-14 07:45:16 UTC
Looks like a correct fix to me.
Comment 2 Luis Medinas (RETIRED) gentoo-dev 2006-11-14 18:08:20 UTC
Hi Brant... is there a bug open upstream ? Can you please give the url ? I think this problem hasn't changed on cvs head.
Comment 4 Rémi Cardona (RETIRED) gentoo-dev 2007-03-04 23:27:25 UTC
There are newer version of gvm available in portage. If this bug still happens with those, don't hesitate to reopen this bug and to update the summary.

Thanks :)