summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Holm <dholm@gentoo.org>2003-09-01 12:20:41 +0000
committerDavid Holm <dholm@gentoo.org>2003-09-01 12:20:41 +0000
commitc8c052aa9199c800da810440c2168124006e8285 (patch)
tree000e24dfdb6812b98466c98548a7c58709346c5a /sys-apps/amiga-fdisk/amiga-fdisk-0.04.ebuild
parentAdded amiga-fdisk, required on Pegasos. (diff)
downloadgentoo-2-c8c052aa9199c800da810440c2168124006e8285.tar.gz
gentoo-2-c8c052aa9199c800da810440c2168124006e8285.tar.bz2
gentoo-2-c8c052aa9199c800da810440c2168124006e8285.zip
Added amiga-fdisk, required on Pegasos.
Diffstat (limited to 'sys-apps/amiga-fdisk/amiga-fdisk-0.04.ebuild')
-rw-r--r--sys-apps/amiga-fdisk/amiga-fdisk-0.04.ebuild32
1 files changed, 32 insertions, 0 deletions
diff --git a/sys-apps/amiga-fdisk/amiga-fdisk-0.04.ebuild b/sys-apps/amiga-fdisk/amiga-fdisk-0.04.ebuild
new file mode 100644
index 000000000000..6a9b59687c9f
--- /dev/null
+++ b/sys-apps/amiga-fdisk/amiga-fdisk-0.04.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2003 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License, v2 or later
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/amiga-fdisk/amiga-fdisk-0.04.ebuild,v 1.1 2003/09/01 12:20:26 dholm Exp $
+
+S="${WORKDIR}/${P}"
+DESCRIPTION="Amiga disklabel partitioning utility."
+SRC_URI="http://www.freiburg.linux.de/~stepan/bin/${P}.tar.gz"
+HOMEPAGE="http://www.freiburg.linux.de/~stepan/projects/"
+LICENSE="LGPL-2"
+DEPEND="sys-libs/libreadline
+ sys-libs/libtermcap-compat"
+
+IUSE=""
+SLOT="0"
+KEYWORDS="~ppc"
+
+src_unpack() {
+ unpack ${A}
+ cd ${S}
+ sed -i -e "s/-lreadline/-lreadline -ltermcap/" Makefile
+}
+
+src_compile() {
+ emake || die
+}
+
+src_install () {
+ dobin amiga-fdisk
+ doman amiga-fdisk.8
+
+ dodoc ChangeLog COPYING README ToDo
+}