diff options
author | Brandon Low <lostlogic@gentoo.org> | 2002-10-23 18:07:04 +0000 |
---|---|---|
committer | Brandon Low <lostlogic@gentoo.org> | 2002-10-23 18:07:04 +0000 |
commit | 1edbffc1c2b6980fe3634326ade200b9063aa0fc (patch) | |
tree | 3c43bda2b604733cf8d052b48614b07fdbb9ecb7 /sys-apps/mtx | |
parent | Initial ebuild #7462 (diff) | |
download | gentoo-2-1edbffc1c2b6980fe3634326ade200b9063aa0fc.tar.gz gentoo-2-1edbffc1c2b6980fe3634326ade200b9063aa0fc.tar.bz2 gentoo-2-1edbffc1c2b6980fe3634326ade200b9063aa0fc.zip |
new package, bugs 8860 7207 3960
Diffstat (limited to 'sys-apps/mtx')
-rw-r--r-- | sys-apps/mtx/ChangeLog | 14 | ||||
-rw-r--r-- | sys-apps/mtx/files/digest-mtx-1.2.17 | 1 | ||||
-rw-r--r-- | sys-apps/mtx/mtx-1.2.17.ebuild | 29 |
3 files changed, 44 insertions, 0 deletions
diff --git a/sys-apps/mtx/ChangeLog b/sys-apps/mtx/ChangeLog new file mode 100644 index 000000000000..1d1755b31757 --- /dev/null +++ b/sys-apps/mtx/ChangeLog @@ -0,0 +1,14 @@ +# ChangeLog for sys-apps/mtx +# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/mtx/ChangeLog,v 1.1 2002/10/23 18:07:04 lostlogic Exp $ + +*mtx-1.2.17 (23 Oct 2002) + + 23 Oct 2002; Brandon Low <lostlogic@gentoo.org> mtx-1.2.17.ebuild: + + New package submission, resolves bugs 3960 7207 8861 based on ebuilds + by: Josh Timmons <josh@developerx.com> + Alexander Holler <holler@ahsoftware.de> + Andrew Glen-Young <andy@metropolis.co.za> + Russell Adams <rladams@kelsey-seybold.com> + I hope that one of them will keep it up-to-date for me :) diff --git a/sys-apps/mtx/files/digest-mtx-1.2.17 b/sys-apps/mtx/files/digest-mtx-1.2.17 new file mode 100644 index 000000000000..1ab2dd87617a --- /dev/null +++ b/sys-apps/mtx/files/digest-mtx-1.2.17 @@ -0,0 +1 @@ +MD5 d60f7b003edc6f9d34753b8f6c447515 mtx-1.2.17rel.tar.gz 159071 diff --git a/sys-apps/mtx/mtx-1.2.17.ebuild b/sys-apps/mtx/mtx-1.2.17.ebuild new file mode 100644 index 000000000000..392c90b2c9f0 --- /dev/null +++ b/sys-apps/mtx/mtx-1.2.17.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# /space/gentoo/cvsroot/gentoo-x86/skel.ebuild,v 1.8 2002/05/30 01:54:49 sandymac Exp + +IUSE="" + +DESCRIPTION="Utilities for controlling SCSI media changers and tape drives" +HOMEPAGE="http://mtx.sourceforge.net" +LICENSE="GPL" +DEPEND="virtual/glibc" +SRC_URI="mirror://sourceforge/${PN}/${P}rel.tar.gz" +S=${WORKDIR}/${P} +KEYWORDS="~x86" +SLOT="0" + +src_unpack() { + unpack ${A} + mv ${P}rel ${S} +} + +src_compile() { + econf || die "Configure failed" + emake || die "Make failed" +} + +src_install () { + dodoc CHANGES COMPATIBILITY FAQ README LICENSE TODO mtxl.README.html + einstall || die "Install failed" +} |