Exheredludis/paludis/set_file.se
Mike Kelly 8f0a81f559 Use /usr/bin/env bash instead of /bin/bash for the shebang of shell scripts.
This should make things run more nicely on systems like FreeBSD, where
bash isn't installed in /bin.
2008-07-09 01:17:08 -04:00

39 lines
834 B
Bash

#!/usr/bin/env bash
# vim: set sw=4 sts=4 et ft=sh :
make_enum_SetFileType()
{
prefix sft
key sft_paludis_conf "A Paludis style .conf file"
key sft_paludis_bash "A Paludis style .bash file"
key sft_simple "A simple line-based file"
doxygen_comment << "END"
/**
* The type of a SetFile.
*
* \see SetFile
* \ingroup g_repository
*/
END
}
make_enum_SetFileSetOperatorMode()
{
prefix sfsmo
key sfsmo_natural "Do not change operators"
key sfsmo_star "Change operators to * and make set names end in *"
doxygen_comment << "END"
/**
* Whether to change operators and set name suffixes.
*
* \see SetFile
* \ingroup g_repository
*/
END
}