#!/bin/sh
# This script is part of the eix project and distributed under the
# terms of the GNU General Public License v2.
#
# Author and Copyright (c):
#   Martin V\"ath <martin@mvath.de>
#
# This script calls eix with options appropriate for etcat emulation.
# (eix 0.36.9).
DEFAULT_IS_OR=true
DEFAULT_MATCH_ALGORITHM='exact'
DEFAULT_MATCH_FIELD='/ category/name name'
DEFAULT_FORMAT=normal
FORMAT='%{FORMAT_ETCAT}'
export DEFAULT_IS_OR DEFAULT_MATCH_ALGORITHM DEFAULT_MATCH_FIELD \
	DEFAULT_FORMAT FORMAT
exec eix --pure-packages ${1+"$@"}
