summaryrefslogtreecommitdiff
path: root/bin/xpak
blob: 1a0743773de90535e5a189c958698ea3588fbfc4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/python -O
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$

import sys, os
if len(sys.argv)!=3:
	print "xpak: expecting three arguments."
	sys.exit(1)

sys.path.insert(0, os.environ.get("PORTAGE_PYM_PATH", "/usr/lib/portage/pym"))

import xpak
xpak.xpak(sys.argv[1],sys.argv[2])