summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatsuu Takuto <matsuu@gentoo.org>2009-01-02 23:39:36 +0000
committerMatsuu Takuto <matsuu@gentoo.org>2009-01-02 23:39:36 +0000
commita4c9010103ca96926c4374cbe85e62d694405b7c (patch)
treec2153578884c58312a15e71c027afabea330870f /media-fonts
parentMask packages that should only be used by crossdev. (diff)
downloadgentoo-2-a4c9010103ca96926c4374cbe85e62d694405b7c.tar.gz
gentoo-2-a4c9010103ca96926c4374cbe85e62d694405b7c.tar.bz2
gentoo-2-a4c9010103ca96926c4374cbe85e62d694405b7c.zip
Removed old revision.
(Portage version: 2.1.6.4/cvs/Linux 2.6.28-gentoo x86_64)
Diffstat (limited to 'media-fonts')
-rw-r--r--media-fonts/monafont/ChangeLog7
-rw-r--r--media-fonts/monafont/monafont-2.90-r1.ebuild71
2 files changed, 5 insertions, 73 deletions
diff --git a/media-fonts/monafont/ChangeLog b/media-fonts/monafont/ChangeLog
index 43899ebe7f04..cebdfa1840c0 100644
--- a/media-fonts/monafont/ChangeLog
+++ b/media-fonts/monafont/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for media-fonts/monafont
-# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-fonts/monafont/ChangeLog,v 1.33 2007/07/22 07:08:31 dirtyepic Exp $
+# Copyright 2000-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/media-fonts/monafont/ChangeLog,v 1.34 2009/01/02 23:39:36 matsuu Exp $
+
+ 02 Jan 2009; MATSUU Takuto <matsuu@gentoo.org> -monafont-2.90-r1.ebuild:
+ Removed old revision.
22 Jul 2007; Ryan Hill <dirtyepic@gentoo.org> monafont-2.90-r1.ebuild,
monafont-2.90-r2.ebuild:
diff --git a/media-fonts/monafont/monafont-2.90-r1.ebuild b/media-fonts/monafont/monafont-2.90-r1.ebuild
deleted file mode 100644
index 80f60a8006ae..000000000000
--- a/media-fonts/monafont/monafont-2.90-r1.ebuild
+++ /dev/null
@@ -1,71 +0,0 @@
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-fonts/monafont/monafont-2.90-r1.ebuild,v 1.13 2007/07/22 07:08:31 dirtyepic Exp $
-
-inherit font
-
-MY_P=${P/_/}
-
-DESCRIPTION="Japanese bitmap and TrueType fonts suitable for browsing 2ch"
-HOMEPAGE="http://monafont.sourceforge.net"
-SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.bz2
- truetype? ( mirror://sourceforge/${PN}/${PN}-ttf-${PV}.zip )"
-
-LICENSE="public-domain"
-SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 s390 sh sparc x86"
-IUSE="X truetype"
-
-RDEPEND=""
-DEPEND="${RDEPEND}
- x11-apps/bdftopcf
- dev-lang/perl
- >=sys-apps/sed-4
- app-arch/unzip"
-
-S="${WORKDIR}/${MY_P}"
-FONT_S="${WORKDIR}"
-FONT_SUFFIX="ttf"
-FONTDIR=/usr/share/fonts/${PN}
-
-src_unpack() {
- unpack ${A}
- sed -i -e 's:$(X11BINDIR)/mkdirhier:/bin/mkdir -p:' ${S}/Makefile
-}
-
-src_compile() {
- PERL_BADLANG=0 ; LC_CTYPE=C
- export PERL_BADLANG LC_CTYPE
- emake || die
-}
-
-src_install() {
- make install X11FONTDIR=${D}/${FONTDIR} || die
- mkfontdir ${D}/${FONTDIR}
- insinto ${FONTDIR}
- newins fonts.alias.mona fonts.alias
- dodoc README*
-
- if use truetype ; then
- DOCS=${WORKDIR}/README-ttf.txt
- font_src_install
- fi
-}
-
-pkg_postinst() {
- elog
- elog "You need to add following line into 'Section \"Files\"' in"
- elog "XF86Config and reboot X Window System, to use these fonts."
- elog
- elog "\tFontPath \"${FONTDIR}\""
- elog
-}
-
-pkg_postrm() {
- elog
- elog "You need to remove following line in 'Section \"Files\"' in"
- elog "XF86Config, to unmerge this package completely."
- elog
- elog "\tFontPath \"${FONTDIR}\""
- elog
-}