diff options
author | 2005-07-31 16:24:12 +0000 | |
---|---|---|
committer | 2005-07-31 16:24:12 +0000 | |
commit | d159ab75e8158e61002b0bf4b83e06035415e6fd (patch) | |
tree | 83d888426481f0208112347c9685a5f81a1ae533 /app-arch/deb2targz/deb2targz-1.ebuild | |
parent | Fixed 2.1.2 (diff) | |
download | gentoo-2-d159ab75e8158e61002b0bf4b83e06035415e6fd.tar.gz gentoo-2-d159ab75e8158e61002b0bf4b83e06035415e6fd.tar.bz2 gentoo-2-d159ab75e8158e61002b0bf4b83e06035415e6fd.zip |
Initial commit, ebuild by me.
(Portage version: 2.0.51.22-r2)
Diffstat (limited to 'app-arch/deb2targz/deb2targz-1.ebuild')
-rw-r--r-- | app-arch/deb2targz/deb2targz-1.ebuild | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/app-arch/deb2targz/deb2targz-1.ebuild b/app-arch/deb2targz/deb2targz-1.ebuild new file mode 100644 index 000000000000..d651e3d89e77 --- /dev/null +++ b/app-arch/deb2targz/deb2targz-1.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-arch/deb2targz/deb2targz-1.ebuild,v 1.1 2005/07/31 16:24:12 chainsaw Exp $ + +DESCRIPTION="Convert a .deb file to a .tar.gz archive" +HOMEPAGE="http://www.miketaylor.org.uk/tech/deb/" +SRC_URI="http://www.miketaylor.org.uk/tech/deb/${PN}" + +LICENSE="as-is" +SLOT="0" +KEYWORDS="~x86" +IUSE="" + +DEPEND="virtual/libc" +RDEPEND="${DEPEND} + dev-lang/perl" + +S=${WORKDIR} + +src_unpack() { + cp ${DISTDIR}/${PN} ${S} +} + +src_install() { + dobin ${PN} +} |