blob: e419880f4dbbe8ea60a3d8dcb53c5530b473e147 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/x11-misc/baekmuk-fonts/baekmuk-fonts-2.0.ebuild,v 1.5 2002/08/05 09:38:55 seemant Exp $
S=${WORKDIR}/${P}
DESCRIPTION="Korean Baekmuk Font"
SRC_URI="ftp://ftp.nnongae.com/pub/gentoo/${P}.tar.gz"
HOMEPAGE="ftp://ftp.nnongae.com/pub/gentoo"
DEPEND="virtual/x11"
SLOT="0"
LICENSE="BAEKMUK"
KEYWORDS="x86"
src_install () {
dodir /usr/X11R6/lib/X11/fonts/baekmuk
dodir /usr/X11R6/lib/X11/fonts/baekmuk-ttf
mv ${S}/{*.pcf.gz,fonts.dir,fonts.alias} \
${D}/usr/X11R6/lib/X11/fonts/baekmuk/
mv ${S}/ttf/* ${D}/usr/X11R6/lib/X11/fonts/baekmuk-ttf/
dodoc COPYRIGHT COPYRIGHT.ks hconfig.ps
}
pkg_postinst() {
einfo "You HAVE TO add the path of Backmuk fonts in the /etc/X11/XF86Config"
ewarn "****************************************************************"
ewarn "* Section \"Files\" *"
ewarn "* FontPath \"/usr/X11R6/lib/X11/fonts/baekmuk/\" *"
ewarn "****************************************************************"
einfo "You should restart X server..."
}
|