summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKrzysztof Pawlik <nelchael@gentoo.org>2006-01-21 17:55:49 +0000
committerKrzysztof Pawlik <nelchael@gentoo.org>2006-01-21 17:55:49 +0000
commitcc30190e3510fcc195bec4563d3e5ebc04947680 (patch)
treeee877284c375a5586b955350393fee9c21aeb16b /x11-misc/xmbdfed/xmbdfed-4.5.ebuild
parentAdded ppc keyword. bug 119444 (diff)
downloadgentoo-2-cc30190e3510fcc195bec4563d3e5ebc04947680.tar.gz
gentoo-2-cc30190e3510fcc195bec4563d3e5ebc04947680.tar.bz2
gentoo-2-cc30190e3510fcc195bec4563d3e5ebc04947680.zip
Fixed DEPEND for modular X. Patch for gcc4.
(Portage version: 2.1_pre3-r1)
Diffstat (limited to 'x11-misc/xmbdfed/xmbdfed-4.5.ebuild')
-rw-r--r--x11-misc/xmbdfed/xmbdfed-4.5.ebuild54
1 files changed, 0 insertions, 54 deletions
diff --git a/x11-misc/xmbdfed/xmbdfed-4.5.ebuild b/x11-misc/xmbdfed/xmbdfed-4.5.ebuild
deleted file mode 100644
index 036f0ad6d30a..000000000000
--- a/x11-misc/xmbdfed/xmbdfed-4.5.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2004 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/xmbdfed/xmbdfed-4.5.ebuild,v 1.9 2004/06/24 22:42:06 agriffis Exp $
-
-inherit eutils
-
-DESCRIPTION="BDF font editor for X"
-SRC_URI="http://clr.nmsu.edu/~mleisher/${P}.tar.gz
- mirror://gentoo/${P}-gentoo.diff.bz2"
-HOMEPAGE="http://clr.nmsu.edu/~mleisher/xmbdfed.html"
-
-SLOT="0"
-LICENSE="as-is"
-KEYWORDS="x86"
-IUSE="truetype"
-
-DEPEND="virtual/x11
- >=x11-libs/openmotif-2.1.30
- truetype? ( =media-libs/freetype-1.3* )"
-
-# The xmbdfed-4.5-gentoo.diff includes patch 1 for version 4.5. The
-# author hasn't distributed a new numbered release yet, so I've
-# blended the patch in with a small include file fix needed for the
-# Gentoo install of freetype.
-src_unpack() {
- unpack ${A}
- cd ${S}
- epatch ${WORKDIR}/${P}-gentoo.diff
-}
-
-src_compile() {
- # There's no ./configure in xmbdfed, so perform the make by manually
- # specifying the correct options for Gentoo.
-
- local flags=""
- local incs="-I/usr/X11R6/include"
- local libs="-L/usr/X11R6/lib -lXm -lXpm -lXmu -lXt -lXext -lX11 -lSM -lICE"
-
- if use truetype ; then
- flags="FTYPE_DEFS=\"-DHAVE_FREETYPE\""
- incs="${incs} -I/usr/include/freetype"
- libs="${libs} -lttf"
- fi
-
- make CFLAGS="${CFLAGS}" ${flags} \
- INCS="${incs}" \
- LIBS="${libs}"
-}
-
-src_install() {
- dobin xmbdfed
- newman xmbdfed.man xmbdfed.1
- dodoc CHANGES COPYRIGHTS INSTALL README xmbdfedrc
-}