diff options
author | John J. Ellis <jje@gentoo.org> | 2003-07-19 04:18:43 +0000 |
---|---|---|
committer | John J. Ellis <jje@gentoo.org> | 2003-07-19 04:18:43 +0000 |
commit | b4fc1d7491367acbebc4a85a9b7f9e047f08b149 (patch) | |
tree | 60a6ff22e7270d6f65ad2293986640d0fbf74477 /app-misc | |
parent | New package, ~x86 masked. Closes #22896. (diff) | |
download | gentoo-2-b4fc1d7491367acbebc4a85a9b7f9e047f08b149.tar.gz gentoo-2-b4fc1d7491367acbebc4a85a9b7f9e047f08b149.tar.bz2 gentoo-2-b4fc1d7491367acbebc4a85a9b7f9e047f08b149.zip |
New package, ~x86 masked. Closes #22896.
Diffstat (limited to 'app-misc')
-rw-r--r-- | app-misc/nomad-tool/ChangeLog | 12 | ||||
-rw-r--r-- | app-misc/nomad-tool/Manifest | 3 | ||||
-rw-r--r-- | app-misc/nomad-tool/files/digest-nomad-tool-1.3 | 1 | ||||
-rw-r--r-- | app-misc/nomad-tool/nomad-tool-1.3.ebuild | 36 |
4 files changed, 51 insertions, 1 deletions
diff --git a/app-misc/nomad-tool/ChangeLog b/app-misc/nomad-tool/ChangeLog new file mode 100644 index 000000000000..11ea7ab575fc --- /dev/null +++ b/app-misc/nomad-tool/ChangeLog @@ -0,0 +1,12 @@ +# ChangeLog for app-misc/nomad-tool +# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-misc/nomad-tool/ChangeLog,v 1.1 2003/07/19 04:18:36 jje Exp $ + +*nomad-tool-1.3 (19 Jul 2003) + + 19 Jul 2003; jje <jje@gentoo.org> nomad-tool-1.3.ebuild: + Initial revsion. Going to stay masked until i hear from a few people that it + actually works. I have no device to test with. + + Submitted by: Ian Turner <imt@cc.gatech.edu> + diff --git a/app-misc/nomad-tool/Manifest b/app-misc/nomad-tool/Manifest index acfec84e868e..eaebdd886d86 100644 --- a/app-misc/nomad-tool/Manifest +++ b/app-misc/nomad-tool/Manifest @@ -1,2 +1,3 @@ -MD5 b33b73b89e42ab52ebbd63f18bcb8ae4 nomad-tool-1.3.ebuild 610 +MD5 7f7c030dcdfa93fab02788bb6db3bde6 nomad-tool-1.3.ebuild 712 +MD5 1ef11c517f289078e93f133f078cfd9c ChangeLog 486 MD5 e220f28c55204d26f5013a689708df83 files/digest-nomad-tool-1.3 65 diff --git a/app-misc/nomad-tool/files/digest-nomad-tool-1.3 b/app-misc/nomad-tool/files/digest-nomad-tool-1.3 new file mode 100644 index 000000000000..7511624c9264 --- /dev/null +++ b/app-misc/nomad-tool/files/digest-nomad-tool-1.3 @@ -0,0 +1 @@ +MD5 8f490f58f88969ba12edba641e48920e nomad-tool-1.3.tar.gz 29409 diff --git a/app-misc/nomad-tool/nomad-tool-1.3.ebuild b/app-misc/nomad-tool/nomad-tool-1.3.ebuild new file mode 100644 index 000000000000..3de03235400e --- /dev/null +++ b/app-misc/nomad-tool/nomad-tool-1.3.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-misc/nomad-tool/nomad-tool-1.3.ebuild,v 1.1 2003/07/19 04:18:36 jje Exp $ + +DESCRIPTION="Controls the Nomad II MG and IIc portable MP3 players" +HOMEPAGE="http://www.swiss.ai.mit.edu/~cph/nomad.php" +SRC_URI="http://www.swiss.ai.mit.edu/~cph/nomad/${P}.tar.gz" + +SLOT="0" +KEYWORDS="~x86" +LICENSE="GPL-2" +IUSE="" + +DEPEND="" + +src_unpack() { + unpack ${A} +} + +src_compile() { + cd ${WORKDIR} + make PREFIX="/usr" || die + +} + +src_install() { + cd ${WORKDIR} + dobin nomad-tool + dolib nomad-open + doman nomad-tool.1 +} + +pkg_postinst() { + chmod 4755 /usr/lib/nomad-open +} + |