In PostgreSQL 9.2 and above, to disconnect everything except your session from the database you are connected to:
SELECT pg_terminate_backend(procpid)
FROM pg_stat_activity
WHERE datname = current_database()
AND procpid <> pg_backend_pid();
In older versions it's the same, just change pid to procpid. To disconnect from a different database just chance current_database() to the name of the database you want to disconnect users from.
You may want to REVOKE the CONNECT right from users of the database before disconnecting users, otherwise users will just keep on reconnecting and you'll never get the chance to drop the DB. See this comment and the question it's associated with, How do I detach all other users from the database.
If you just want to disconnect idle users, see this question.