Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 176858 - squirrelmail-1.4.9a-r1 config.sample.php not config.php.sample in secure_login
Summary: squirrelmail-1.4.9a-r1 config.sample.php not config.php.sample in secure_login
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: New packages (show other bugs)
Hardware: All Linux
: High trivial (vote)
Assignee: Jeremy Huddleston (RETIRED)
URL:
Whiteboard:
Keywords:
: 177151 (view as bug list)
Depends on:
Blocks:
 
Reported: 2007-05-02 22:52 UTC by Patrick Fourniols
Modified: 2007-05-21 18:07 UTC (History)
3 users (show)

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 Patrick Fourniols 2007-05-02 22:52:54 UTC
if ssl enabled ;) in secure_login plugin:
 mv config.php.sample... must be changed by mv config.sample.php... 


Reproducible: Always

Steps to Reproduce:
1.emerge squirrelmail
2.
3.

Actual Results:  
squirrelmail not installed

Expected Results:  
installed without any rename or ebuild change ;)
Comment 1 Attila Tóth 2007-05-03 17:44:36 UTC
Has anybody actually verified this ebuild with ssl use flag for successful installation?

Regards,
Dw.
Comment 2 Patrick Fourniols 2007-05-03 21:59:27 UTC
yes, work fine with ssl use flag and patched ebuild
Comment 3 Marcel van den Bosch 2007-05-04 14:47:24 UTC
I can't get it to install either with the ssl USE flag enabled.
Comment 4 Target 2007-05-05 10:47:44 UTC
verified does not emerge.
The ebuild attempts to move config.php in the show_ssl_link plugin, but the file is actually called config.php.sample.

* ebuild fault: file '/usr/share/webapps/squirrelmail/1.4.9a-r1/htdocs/plugins/show_ssl_link/config.php' not found
* Please report this as a bug at http://bugs.gentoo.org/
Comment 5 Patrick Fourniols 2007-05-05 21:45:01 UTC
 nano -w $(equery which squirrelmail)
then change 
        use ssl &&
                unpack secure_login-${SECURELOGIN_VER}.tar.gz &&
                mv secure_login/config.php.sample secure_login/config.php &&
                unpack show_ssl_link-${SHOWSSL_VER}.tar.gz &&
                mv show_ssl_link/config.php.sample show_ssl_link/config.php
by:

        use ssl &&
                unpack secure_login-${SECURELOGIN_VER}.tar.gz &&
                mv secure_login/config.sample.php secure_login/config.php &&
                unpack show_ssl_link-${SHOWSSL_VER}.tar.gz &&
                mv show_ssl_link/config.php.sample show_ssl_link/config.php

(look on the third line at config.php.sample changed by config.sample.php )
save the modified ebuild, then:
ebuild $(equery which squirrelmail) digest
emerge squirrelmail

if you do that squirrelmail will emerge smoothly ;)

Comment 6 Andrej Kacian (RETIRED) gentoo-dev 2007-05-06 18:27:47 UTC
Fixed in CVS. Thanks and sorry for that.
Comment 7 Jakub Moc (RETIRED) gentoo-dev 2007-05-21 18:07:28 UTC
*** Bug 177151 has been marked as a duplicate of this bug. ***