diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2002-07-25 14:47:35 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2002-07-25 14:47:35 +0000 |
commit | b2a98c724a3b34e85eceda1dd39ae53999a5cf04 (patch) | |
tree | 79e4d9cccff113d6562a3196d3ffc5c42556946b /app-arch/ncompress | |
parent | added public domain non-license (diff) | |
download | gentoo-2-b2a98c724a3b34e85eceda1dd39ae53999a5cf04.tar.gz gentoo-2-b2a98c724a3b34e85eceda1dd39ae53999a5cf04.tar.bz2 gentoo-2-b2a98c724a3b34e85eceda1dd39ae53999a5cf04.zip |
repoman'd
Diffstat (limited to 'app-arch/ncompress')
-rw-r--r-- | app-arch/ncompress/ncompress-4.2.4.ebuild | 24 |
1 files changed, 11 insertions, 13 deletions
diff --git a/app-arch/ncompress/ncompress-4.2.4.ebuild b/app-arch/ncompress/ncompress-4.2.4.ebuild index f43d1ea37449..04d1472cd476 100644 --- a/app-arch/ncompress/ncompress-4.2.4.ebuild +++ b/app-arch/ncompress/ncompress-4.2.4.ebuild @@ -1,26 +1,24 @@ -# Copyright 1999-2000 Gentoo Technologies, Inc. +# Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/app-arch/ncompress/ncompress-4.2.4.ebuild,v 1.4 2002/07/17 20:44:57 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-arch/ncompress/ncompress-4.2.4.ebuild,v 1.5 2002/07/25 14:47:35 seemant Exp $ S=${WORKDIR}/${P} DESCRIPTION="Another uncompressor for compatibility" SRC_URI="ftp://ftp.leo.org/pub/comp/os/unix/linux/sunsite/utils/compress/${P}.tar.gz" +HOMEPAGE="ftp://ftp.leo.org/pub/comp/os/unix/linux/sunsite/utils/compress/" + SLOT="0" -HOMEPAGE="http://" +LICENSE="public-domain" KEYWORDS="x86 ppc" src_compile() { - - cd ${S} - sed -e "s:options= :options= ${CFLAGS} :" Makefile.def > Makefile - make || die - + cd ${S} + sed -e "s:options= :options= ${CFLAGS} :" Makefile.def > Makefile + make || die } src_install () { - - dobin compress - dosym compress /usr/bin/uncompress - doman compress.1 + dobin compress + dosym compress /usr/bin/uncompress + doman compress.1 } - |