summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2010-11-17 08:14:48 +0000
committerMike Frysinger <vapier@gentoo.org>2010-11-17 08:14:48 +0000
commit9ea8a2a30f08ed0d68e1720375fa0bf948c8ad0c (patch)
tree682fa769dd095eaf6437f8c52183e92c0a23820d /sys-apps/miscfiles/miscfiles-1.4.2.ebuild
parentMissing || die on configure. Thx maekke. (diff)
downloadgentoo-2-9ea8a2a30f08ed0d68e1720375fa0bf948c8ad0c.tar.gz
gentoo-2-9ea8a2a30f08ed0d68e1720375fa0bf948c8ad0c.tar.bz2
gentoo-2-9ea8a2a30f08ed0d68e1720375fa0bf948c8ad0c.zip
old
Diffstat (limited to 'sys-apps/miscfiles/miscfiles-1.4.2.ebuild')
-rw-r--r--sys-apps/miscfiles/miscfiles-1.4.2.ebuild46
1 files changed, 0 insertions, 46 deletions
diff --git a/sys-apps/miscfiles/miscfiles-1.4.2.ebuild b/sys-apps/miscfiles/miscfiles-1.4.2.ebuild
deleted file mode 100644
index b0b861fcc27a..000000000000
--- a/sys-apps/miscfiles/miscfiles-1.4.2.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/miscfiles/miscfiles-1.4.2.ebuild,v 1.10 2010/10/08 02:10:47 leio Exp $
-
-inherit eutils
-
-DESCRIPTION="Miscellaneous files"
-HOMEPAGE="http://savannah.gnu.org/projects/miscfiles/"
-SRC_URI="mirror://gnu/miscfiles/${P}.tar.gz"
-
-LICENSE="GPL-2 unicode"
-SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
-IUSE="minimal"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- epatch "${FILESDIR}"/miscfiles-1.3-Makefile.diff
-}
-
-src_install() {
- emake install prefix="${D}/usr" || die
- dodoc GNU* NEWS ORIGIN README dict-README
- rm -f "${D}"/usr/share/dict/README
-
- if use minimal ; then
- cd "${D}"/usr/share/dict
- rm -f words extra.words
- gzip -9 *
- ln -s web2.gz words
- ln -s web2a.gz extra.words
- ln -s connectives{.gz,}
- ln -s propernames{.gz,}
- cd ..
- rm -r misc rfc
- fi
-}
-
-pkg_postinst() {
- if [[ ${ROOT} == "/" ]] && type -P create-cracklib-dict >/dev/null ; then
- ebegin "Regenerating cracklib dictionary"
- create-cracklib-dict /usr/share/dict/* > /dev/null
- eend $?
- fi
-}