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 | bb3d462029ab3095c15903808f2d9a229df9c3b4 (patch) | |
tree | 0b6999472b543e791a538c8cddb0435486ae6182 /app-misc/nomad-tool | |
parent | New package, ~x86 masked. Closes #22896. (diff) | |
download | historical-bb3d462029ab3095c15903808f2d9a229df9c3b4.tar.gz historical-bb3d462029ab3095c15903808f2d9a229df9c3b4.tar.bz2 historical-bb3d462029ab3095c15903808f2d9a229df9c3b4.zip |
New package, ~x86 masked. Closes #22896.
Diffstat (limited to 'app-misc/nomad-tool')
-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 |
3 files changed, 39 insertions, 1 deletions
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 +} + |