diff options
author | David Holm <dholm@gentoo.org> | 2004-09-11 12:19:05 +0000 |
---|---|---|
committer | David Holm <dholm@gentoo.org> | 2004-09-11 12:19:05 +0000 |
commit | 88bcd614de1830a9f9c8da630f16effbcf701dad (patch) | |
tree | ab2246bb3c50f556a6bf81681df4c2eb4c29b72d /app-arch | |
parent | initial release (Manifest recommit) (diff) | |
download | gentoo-2-88bcd614de1830a9f9c8da630f16effbcf701dad.tar.gz gentoo-2-88bcd614de1830a9f9c8da630f16effbcf701dad.tar.bz2 gentoo-2-88bcd614de1830a9f9c8da630f16effbcf701dad.zip |
Initial import
Diffstat (limited to 'app-arch')
-rw-r--r-- | app-arch/xdms/ChangeLog | 10 | ||||
-rw-r--r-- | app-arch/xdms/Manifest | 4 | ||||
-rw-r--r-- | app-arch/xdms/files/digest-xdms-1.3.1 | 1 | ||||
-rw-r--r-- | app-arch/xdms/metadata.xml | 16 | ||||
-rw-r--r-- | app-arch/xdms/xdms-1.3.1.ebuild | 27 |
5 files changed, 58 insertions, 0 deletions
diff --git a/app-arch/xdms/ChangeLog b/app-arch/xdms/ChangeLog new file mode 100644 index 000000000000..c7a24ede52e4 --- /dev/null +++ b/app-arch/xdms/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for app-arch/xdms +# Copyright 1999-2004 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-arch/xdms/ChangeLog,v 1.1 2004/09/11 12:19:05 dholm Exp $ + +*xdms-1.3.1 (11 Sep 2004) + + 11 Sep 2004; David Holm <dholm@gentoo.org> +xdms-1.3.1.ebuild: + Initial import. ebuild submitted by Heikki Orsila <heikki dot orsila at iki + dot fi> + diff --git a/app-arch/xdms/Manifest b/app-arch/xdms/Manifest new file mode 100644 index 000000000000..8cdfdfa64ea5 --- /dev/null +++ b/app-arch/xdms/Manifest @@ -0,0 +1,4 @@ +MD5 fbaef82ffe4464c8a0ade719e988e021 xdms-1.3.1.ebuild 613 +MD5 777abc60e1e32f1e183ce980273c75f8 metadata.xml 932 +MD5 9917f64560e8c89b3a7c995a9a3aa9da ChangeLog 295 +MD5 3ff40e5f63a3ce8b0c18f35af6ffa681 files/digest-xdms-1.3.1 61 diff --git a/app-arch/xdms/files/digest-xdms-1.3.1 b/app-arch/xdms/files/digest-xdms-1.3.1 new file mode 100644 index 000000000000..53121799ff82 --- /dev/null +++ b/app-arch/xdms/files/digest-xdms-1.3.1 @@ -0,0 +1 @@ +MD5 cba680961e6cffc855481d15442a71bc xdms-1.3.1.tar.gz 41258 diff --git a/app-arch/xdms/metadata.xml b/app-arch/xdms/metadata.xml new file mode 100644 index 000000000000..dd1434f4b8c5 --- /dev/null +++ b/app-arch/xdms/metadata.xml @@ -0,0 +1,16 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>no-herd</herd> +<maintainer> + <email>dholm@gentoo.org</email> + <name>David Holm</name> +</maintainer> +<longdescription> +Supports decompression of files compressed using all known DMS compression modes, including old and obsolete ones, and also encrypted files, for 100% compatibility. +Can test DMS files integrity, view file informations and show attached Banners and FILEID.DIZ . +Can generate standard disk images and compressed disk images, using gzip, if you want to store your files in ADF or ADZ formats. +Can extract the files contained inside the DMS archives, if the compressed disk is an AmigaDOS disk, using readdisk made by Bernd Schmidt. +Can process multiple files in batch with a single command, and also use stdin and stdout for input and output of data. +</longdescription> +</pkgmetadata> diff --git a/app-arch/xdms/xdms-1.3.1.ebuild b/app-arch/xdms/xdms-1.3.1.ebuild new file mode 100644 index 000000000000..52ae53460da8 --- /dev/null +++ b/app-arch/xdms/xdms-1.3.1.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-arch/xdms/xdms-1.3.1.ebuild,v 1.1 2004/09/11 12:19:05 dholm Exp $ + +inherit eutils + +DESCRIPTION="xDMS - Amiga DMS disk image decompressor" +HOMEPAGE="http://freshmeat.net/projects/xdms" +SRC_URI="http://ee.tut.fi/~heikki/xdms/${P}.tar.gz" + +LICENSE="public-domain" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~ppc" + +DEPEND="virtual/libc" + +src_compile() { + cd ${S} + ./configure --prefix=/usr --package-prefix="${D}" \ + || die "configure failed" + emake || die "emake failed" +} + +src_install() { + make install || die "make install failed" + dodoc COPYING xdms.txt ChangeLog.txt +} |