You could look into creating custom tasks that encapsulate the conditional logic. This is pretty easy using <scriptdef> (and even easier with Java 6 and its built-in Javascript interpreter) as you don't need to compile a separate artifact and deal with the resulting classpath mess.
You said you're not a pro, however. Though creating custom tasks isn't hard it does require some experience.
Others have suggested gradle. I'm interested in gradle too, but the industry does still favor Ant and Maven. Depending on the constraints of your project (or company), sometimes you do have to go with the flow.
While ant-contrib is a possible solution, as far as I can tell it's a dead project--it hasn't been updated in years. Some of the tools it adds are simply obsolete, even dangerous, with more recent versions of Ant. And I find conditional code in XML disgusting to read.
Instead, take a look at Flaka, which provides an expression language add-on to Ant that, in addition to many other things, Flaka allows you to do conditional logic far beyond what you can do in pure Ant.