You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
1.5 KiB
54 lines
1.5 KiB
# Copyright 1999-2010 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Id$
|
|
|
|
EAPI="3"
|
|
|
|
inherit eutils
|
|
|
|
UNI_PV=5.2.0
|
|
DESCRIPTION="Miscellaneous files"
|
|
HOMEPAGE="http://savannah.gnu.org/projects/miscfiles/"
|
|
# updated unicode data file from:
|
|
# http://www.unicode.org/Public/${UNI_PV}/ucd/UnicodeData.txt
|
|
SRC_URI="mirror://gnu/miscfiles/${P}.tar.gz
|
|
mirror://gentoo/UnicodeData-${UNI_PV}.txt.bz2"
|
|
|
|
LICENSE="GPL-2 unicode"
|
|
SLOT="0"
|
|
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~sparc-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x86-solaris"
|
|
IUSE="minimal"
|
|
# Collides with older versions/revisions
|
|
RDEPEND="!<sys-freebsd/freebsd-share-7.2-r1"
|
|
|
|
src_prepare() {
|
|
mv "${WORKDIR}"/UnicodeData-${UNI_PV}.txt unicode || die
|
|
epatch "${FILESDIR}"/miscfiles-1.3-Makefile.diff
|
|
}
|
|
|
|
src_install() {
|
|
emake install prefix="${ED}/usr" || die
|
|
dodoc NEWS ORIGIN README dict-README
|
|
rm -f "${ED}"/usr/share/dict/README
|
|
|
|
if use minimal ; then
|
|
cd "${ED}"/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 "${EPREFIX}"/usr/share/dict/* > /dev/null
|
|
eend $?
|
|
fi
|
|
}
|