summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2005-01-12 18:34:13 +0000
committerMike Frysinger <vapier@gentoo.org>2005-01-12 18:34:13 +0000
commit091cd90c429cbb5cdc79409a644337245f122cbb (patch)
treef47ed0f692111104e570df537702927d604e43d7 /sys-apps/miscfiles
parentstabilize (Manifest recommit) (diff)
downloadgentoo-2-091cd90c429cbb5cdc79409a644337245f122cbb.tar.gz
gentoo-2-091cd90c429cbb5cdc79409a644337245f122cbb.tar.bz2
gentoo-2-091cd90c429cbb5cdc79409a644337245f122cbb.zip
Version bump.
Diffstat (limited to 'sys-apps/miscfiles')
-rw-r--r--sys-apps/miscfiles/ChangeLog9
-rw-r--r--sys-apps/miscfiles/files/digest-miscfiles-1.4.21
-rw-r--r--sys-apps/miscfiles/miscfiles-1.3-r1.ebuild4
-rw-r--r--sys-apps/miscfiles/miscfiles-1.4.2.ebuild40
4 files changed, 50 insertions, 4 deletions
diff --git a/sys-apps/miscfiles/ChangeLog b/sys-apps/miscfiles/ChangeLog
index e745c5502620..d1ab81667151 100644
--- a/sys-apps/miscfiles/ChangeLog
+++ b/sys-apps/miscfiles/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for sys-apps/miscfiles
-# Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/miscfiles/ChangeLog,v 1.19 2004/09/23 05:47:31 robbat2 Exp $
+# Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/miscfiles/ChangeLog,v 1.20 2005/01/12 18:34:13 vapier Exp $
+
+*miscfiles-1.4.2 (12 Jan 2005)
+
+ 12 Jan 2005; Mike Frysinger <vapier@gentoo.org> +miscfiles-1.4.2.ebuild:
+ Version bump.
22 Sep 2004; Robin H. Johnson <robbat2@gentoo.org> miscfiles-1.3-r1.ebuild:
libc is NOT needed, come on people, this only installs textfiles...
diff --git a/sys-apps/miscfiles/files/digest-miscfiles-1.4.2 b/sys-apps/miscfiles/files/digest-miscfiles-1.4.2
new file mode 100644
index 000000000000..0e0baa0eb473
--- /dev/null
+++ b/sys-apps/miscfiles/files/digest-miscfiles-1.4.2
@@ -0,0 +1 @@
+MD5 04aa131278173731f40dd92e70cf7c4c miscfiles-1.4.2.tar.gz 1524786
diff --git a/sys-apps/miscfiles/miscfiles-1.3-r1.ebuild b/sys-apps/miscfiles/miscfiles-1.3-r1.ebuild
index 12ee1ce730ac..985183c6f4a8 100644
--- a/sys-apps/miscfiles/miscfiles-1.3-r1.ebuild
+++ b/sys-apps/miscfiles/miscfiles-1.3-r1.ebuild
@@ -1,6 +1,6 @@
-# Copyright 1999-2004 Gentoo Foundation
+# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/miscfiles/miscfiles-1.3-r1.ebuild,v 1.13 2004/11/12 21:16:55 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/miscfiles/miscfiles-1.3-r1.ebuild,v 1.14 2005/01/12 18:34:13 vapier Exp $
inherit eutils
diff --git a/sys-apps/miscfiles/miscfiles-1.4.2.ebuild b/sys-apps/miscfiles/miscfiles-1.4.2.ebuild
new file mode 100644
index 000000000000..31ac13424fe1
--- /dev/null
+++ b/sys-apps/miscfiles/miscfiles-1.4.2.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2005 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.1 2005/01/12 18:34:13 vapier Exp $
+
+inherit eutils
+
+DESCRIPTION="Miscellaneous files"
+HOMEPAGE="http://www.gnu.org/directory/miscfiles.html"
+SRC_URI="ftp://ftp.gnu.org/gnu/miscfiles/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
+IUSE="minimal"
+
+DEPEND=""
+RDEPEND=""
+
+src_unpack() {
+ unpack ${A}
+ cd "${S}"
+ epatch "${FILESDIR}"/miscfiles-1.3-Makefile.diff
+}
+
+src_install() {
+ make install prefix="${D}/usr" || die
+ dodoc GNU* NEWS ORIGIN README dict-README
+
+ if use minimal ; then
+ cd "${D}"/usr/share/dict
+ rm -f words extra.words README
+ 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
+}