Two options: either use "|" as an "OR" symbol and non-square brackets for grouping to avoid the "optional" context, or list competing usages on multiple lines
perl mysrc.pl {-a=<value of a> -b=<value of b> -c=<value of c>|-t=<value of t>}
perl mysrc.pl UseCaseOneOptions|UseCaseTwoOptions
UseCaseOneOptions: -a=<value of a> -b=<value of b> -c=<value of c>
UseCaseTwoOptions: -t=<value of t>
For REALLY complicated sets of options (think CVS), do what CVS does (no xterm at the moment, so below is a crude approximation from memory) - that is, the generic "help" message only lists all possible use cases, and to get help about option sets for each use case, you issue a per-use-case help command.
$ cvs --help
Usage: cvs <command> <per-command-options>
Please type "cvs command --help" to get help on specific command's options
Commands are:
cvs add
cvs commmit
cvs remove
...
$ cvs checkout --help
Usage: cvs checkout [-p] [-A] [-m message] [-M message_file] file_path
-m message: check-in comment
-M file: read check-in comment from this file
-p: non-sticky checkout. Print the file to STDOUT.
$ cvs diff --help
Usage: cvs diff [-r VER1] [-r VER2] [-w] file_path
-w: Ignore whitespace