summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRaúl Porcel <armin76@gentoo.org>2008-03-12 22:05:03 +0000
committerRaúl Porcel <armin76@gentoo.org>2008-03-12 22:05:03 +0000
commit1d71873fc13cfca408e14a097217fdd275a279d3 (patch)
tree8d1f946c0f150b11ead86e1eb66ccf488fc6f219 /app-misc
parentFix init script naming (diff)
downloadgentoo-2-1d71873fc13cfca408e14a097217fdd275a279d3.tar.gz
gentoo-2-1d71873fc13cfca408e14a097217fdd275a279d3.tar.bz2
gentoo-2-1d71873fc13cfca408e14a097217fdd275a279d3.zip
ia64 stable
(Portage version: 2.1.4.4)
Diffstat (limited to 'app-misc')
-rw-r--r--app-misc/figlet/ChangeLog8
-rw-r--r--app-misc/figlet/figlet-222.ebuild6
-rw-r--r--app-misc/figlet/files/figlet-221-gentoo.diff37
3 files changed, 9 insertions, 42 deletions
diff --git a/app-misc/figlet/ChangeLog b/app-misc/figlet/ChangeLog
index fd551ca6cc04..d72937810ad1 100644
--- a/app-misc/figlet/ChangeLog
+++ b/app-misc/figlet/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for app-misc/figlet
-# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/figlet/ChangeLog,v 1.31 2007/07/20 16:10:55 drac Exp $
+# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-misc/figlet/ChangeLog,v 1.32 2008/03/12 22:05:03 armin76 Exp $
+
+ 12 Mar 2008; Raúl Porcel <armin76@gentoo.org>
+ -files/figlet-221-gentoo.diff, figlet-222.ebuild:
+ ia64 stable
20 Jul 2007; Samuli Suominen <drac@gentoo.org> figlet-222.ebuild:
Keyword for ~arm, armin76 made me.
diff --git a/app-misc/figlet/figlet-222.ebuild b/app-misc/figlet/figlet-222.ebuild
index 0d0b10fa0923..01be065e0155 100644
--- a/app-misc/figlet/figlet-222.ebuild
+++ b/app-misc/figlet/figlet-222.ebuild
@@ -1,6 +1,6 @@
-# Copyright 1999-2007 Gentoo Foundation
+# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/figlet/figlet-222.ebuild,v 1.12 2007/07/23 02:41:27 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-misc/figlet/figlet-222.ebuild,v 1.13 2008/03/12 22:05:03 armin76 Exp $
inherit eutils bash-completion
@@ -16,7 +16,7 @@ SRC_URI="ftp://ftp.figlet.org/pub/figlet/program/unix/${MY_P}.tar.gz
LICENSE="AFL-2.1"
SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ~ia64 mips ppc ppc64 sparc x86 ~x86-fbsd"
+KEYWORDS="alpha amd64 arm hppa ia64 mips ppc ppc64 sparc x86 ~x86-fbsd"
IUSE=""
DEPEND=""
diff --git a/app-misc/figlet/files/figlet-221-gentoo.diff b/app-misc/figlet/files/figlet-221-gentoo.diff
deleted file mode 100644
index a7f18879deaa..000000000000
--- a/app-misc/figlet/files/figlet-221-gentoo.diff
+++ /dev/null
@@ -1,37 +0,0 @@
---- Makefile.org 2003-07-17 23:56:17.000000000 +0200
-+++ Makefile 2003-07-17 23:57:57.000000000 +0200
-@@ -15,21 +15,29 @@
- CFLAGS = -g
-
- # Where the executables should be put
--DESTDIR = /usr/local/bin
-+ifndef DESTDIR
-+ DESTDIR = /usr/bin
-+endif
-
- # Where the man page should be put
--MANDIR = /usr/local/man/man6
-+ifndef MANDIR
-+ MANDIR = /usr/share/man/man6
-+endif
-
- # Where figlet will search first for fonts (the ".flf" files).
--DEFAULTFONTDIR = /usr/local/share/figlet
-+ifndef DEFAULTFONTDIR
-+ DEFAULTFONTDIR = /usr/share/figlet
-+endif
- # Use this definition if you can't put things in /usr/local/share/figlet
--DEFAULTFONTDIR = fonts
-+#DEFAULTFONTDIR = fonts
-
- # The filename of the font to be used if no other is specified
- # (standard.flf is recommended, but any other can be used).
- # This font file should reside in the directory specified by
- # DEFAULTFONTDIR.
--DEFAULTFONTFILE = standard.flf
-+ifndef DEFAULTFONTFILE
-+ DEFAULTFONTFILE = standard.flf
-+endif
-
- ##
- ## END OF CONFIGURATION SECTION