diff options
author | Jose Alberto Suarez Lopez <bass@gentoo.org> | 2002-05-20 22:56:46 +0000 |
---|---|---|
committer | Jose Alberto Suarez Lopez <bass@gentoo.org> | 2002-05-20 22:56:46 +0000 |
commit | 43921385cfedd8972e21d1cf6e433cbb9e619f1c (patch) | |
tree | d1936f03f4c0a7d89af27bd50c88d34d3dd5507b /app-arch/guitar/guitar-0.1.4.ebuild | |
parent | ferite ebuild (bug #2323) per user request (diff) | |
download | historical-43921385cfedd8972e21d1cf6e433cbb9e619f1c.tar.gz historical-43921385cfedd8972e21d1cf6e433cbb9e619f1c.tar.bz2 historical-43921385cfedd8972e21d1cf6e433cbb9e619f1c.zip |
first realse of guitar, gnome USE don't work's yet
Diffstat (limited to 'app-arch/guitar/guitar-0.1.4.ebuild')
-rw-r--r-- | app-arch/guitar/guitar-0.1.4.ebuild | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/app-arch/guitar/guitar-0.1.4.ebuild b/app-arch/guitar/guitar-0.1.4.ebuild new file mode 100644 index 000000000000..64eaa72e6b67 --- /dev/null +++ b/app-arch/guitar/guitar-0.1.4.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author: José Alberto Suárez López <bass@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/app-arch/guitar/guitar-0.1.4.ebuild,v 1.1 2002/05/20 22:56:46 bass Exp $ + + +MY_P=guiTAR-${PV} +S=${WORKDIR}/${MY_P} +DESCRIPTION="Extraction tool, supports the tar, tar.Z, tar.gz, tar.bz2, lha, +lzh, rar, arj, zip, and slp formats." +SRC_URI="http://artemis.efes.net/disq/${PN}/${MY_P}.tar.gz" +HOMEPAGE="http://artemis.efes.net/disq/guitar/" + +LICENSE="GPL-2" + +DEPEND="x11-libs/gtk+ + sys-apps/tar + sys-apps/bzip2 + app-arch/rar + app-arch/unrar + sys-apps/gzip + app-arch/zip + app-arch/unzip" + +src_compile() { + + local myconf + + use gnome || myconf="${myconf} --disable-gnome" + + econf ${myconf} || die + emake || die +} + +src_install() { + + einstall || die +} |