diff options
author | Donny Davies <woodchip@gentoo.org> | 2003-06-22 19:43:12 +0000 |
---|---|---|
committer | Donny Davies <woodchip@gentoo.org> | 2003-06-22 19:43:12 +0000 |
commit | afcfedcbad672d6d5fe9f9968572e2f09bd7653d (patch) | |
tree | 086cd8b4637e795bbb3abd341ac50ed4dad66b02 /app-arch | |
parent | Close #22854. (diff) | |
download | gentoo-2-afcfedcbad672d6d5fe9f9968572e2f09bd7653d.tar.gz gentoo-2-afcfedcbad672d6d5fe9f9968572e2f09bd7653d.tar.bz2 gentoo-2-afcfedcbad672d6d5fe9f9968572e2f09bd7653d.zip |
Close #22854.
Diffstat (limited to 'app-arch')
-rw-r--r-- | app-arch/mt-st/ChangeLog | 19 | ||||
-rw-r--r-- | app-arch/mt-st/Manifest | 4 | ||||
-rw-r--r-- | app-arch/mt-st/files/digest-mt-st-0.7-r1 | 1 | ||||
-rw-r--r-- | app-arch/mt-st/mt-st-0.7-r1.ebuild | 30 |
4 files changed, 39 insertions, 15 deletions
diff --git a/app-arch/mt-st/ChangeLog b/app-arch/mt-st/ChangeLog index c389662262f5..3a1ecb8b4db1 100644 --- a/app-arch/mt-st/ChangeLog +++ b/app-arch/mt-st/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-arch/mt-st # Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-arch/mt-st/ChangeLog,v 1.7 2003/03/25 14:06:06 gmsoft Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-arch/mt-st/ChangeLog,v 1.8 2003/06/22 19:43:03 woodchip Exp $ + +*mt-st-0.7-r1 (22 Jun 2003) + + 22 Jun 2003; Donny Davies <woodchip@gentoo.org> mt-st-0.7-r1.ebuild: + Close #22854; add some doc files. 06 Dec 2002; Rodney Rees <manson@gentoo.org> : changed sparc ~sparc keywords @@ -10,19 +15,7 @@ Added hppa to KEYWORDS. 14 Aug 2002; Pieter Van den Abeele <pvdabeel@gentoo.org> : - Added ppc keyword 12 Apr 2002; Donny Davies <woodchip@gentoo.org> : - Update to latest available release. - -*mt-st-0.6 (1 Feb 2002) - - 1 Feb 2002; G.Bevin <gbevin@gentoo.org> ChangeLog : - - Added initial ChangeLog which should be updated whenever the package is - updated in any way. This changelog is targetted to users. This means that the - comments should well explained and written in clean English. The details about - writing correct changelogs are explained in the skel.ChangeLog file which you - can find in the root directory of the portage repository. diff --git a/app-arch/mt-st/Manifest b/app-arch/mt-st/Manifest index d6eec59d035f..d22de455cb37 100644 --- a/app-arch/mt-st/Manifest +++ b/app-arch/mt-st/Manifest @@ -1,6 +1,6 @@ -MD5 e7f6892f30a8cd2496f125b7d997cc8c ChangeLog 1041 +MD5 a03f2cd24dfe65aed82e439c1d9e5ed9 ChangeLog 720 MD5 40e6864af0efa756bbe610442f0e4f2d mt-st-0.6.ebuild 709 -MD5 03cac28f8cf128e9da11fd0f4be171f0 mt-st-0.7-r1.ebuild 773 +MD5 f7c58aa8b62846a3387862ce58b70c7f mt-st-0.7-r1.ebuild 777 MD5 b3090e2b889c3dd9d2c270a06ae2469c mt-st-0.7.ebuild 725 MD5 6a81aa6195840ec61f8fdfc81f476f03 files/digest-mt-st-0.6 60 MD5 97eb21a50a993a5e783cb7964d288978 files/digest-mt-st-0.7 60 diff --git a/app-arch/mt-st/files/digest-mt-st-0.7-r1 b/app-arch/mt-st/files/digest-mt-st-0.7-r1 new file mode 100644 index 000000000000..36a6f6cc8f18 --- /dev/null +++ b/app-arch/mt-st/files/digest-mt-st-0.7-r1 @@ -0,0 +1 @@ +MD5 3e1cb5a09dc73c6e54089e2056f9ff55 mt-st-0.7.tar.gz 35529 diff --git a/app-arch/mt-st/mt-st-0.7-r1.ebuild b/app-arch/mt-st/mt-st-0.7-r1.ebuild new file mode 100644 index 000000000000..f11ef5d8ca1c --- /dev/null +++ b/app-arch/mt-st/mt-st-0.7-r1.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-arch/mt-st/mt-st-0.7-r1.ebuild,v 1.1 2003/06/22 19:43:03 woodchip Exp $ + +DESCRIPTION="Enhanced mt command for Linux, supporting Linux 2.4 ioctls" +HOMEPAGE="http://www.gnu.org/software/tar/" + +S=${WORKDIR}/${P} +SRC_URI="http://www.ibiblio.org/pub/linux/system/backup/${P}.tar.gz" +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="x86 ppc sparc alpha hppa" +DEPEND="virtual/glibc" + +src_unpack() { + unpack ${A} || die + cd ${S} || die + cp Makefile Makefile.orig + sed -e "s:-O2:${CFLAGS}:g" Makefile.orig > Makefile +} + +src_compile() { + emake || die +} + +src_install() { + dosbin mt stinit + doman mt.1 stinit.8 + dodoc README* stinit.def.examples +} |