summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Popov <pinkbyte@gentoo.org>2014-12-04 07:44:46 +0000
committerSergey Popov <pinkbyte@gentoo.org>2014-12-04 07:44:46 +0000
commitc632e8e470a6269e9bd561ad7257e47c22ee1f44 (patch)
tree9de685830f6d04118790f01193dc9946d3cd9916 /net-dialup
parentFix build with jpeg-9 Bug #527508 (diff)
downloadgentoo-2-c632e8e470a6269e9bd561ad7257e47c22ee1f44.tar.gz
gentoo-2-c632e8e470a6269e9bd561ad7257e47c22ee1f44.tar.bz2
gentoo-2-c632e8e470a6269e9bd561ad7257e47c22ee1f44.zip
Revision bump: EAPI 5, epatch_user, replace einstall with default src_install phase function call, wrt bug #521582, install some configuration examples
(Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0x1F357D42)
Diffstat (limited to 'net-dialup')
-rw-r--r--net-dialup/fbgetty/ChangeLog10
-rw-r--r--net-dialup/fbgetty/fbgetty-0.1.698-r1.ebuild29
2 files changed, 37 insertions, 2 deletions
diff --git a/net-dialup/fbgetty/ChangeLog b/net-dialup/fbgetty/ChangeLog
index 3490ee404a46..775de3a7ddde 100644
--- a/net-dialup/fbgetty/ChangeLog
+++ b/net-dialup/fbgetty/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for net-dialup/fbgetty
-# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-dialup/fbgetty/ChangeLog,v 1.9 2007/10/27 08:40:57 mrness Exp $
+# Copyright 2000-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-dialup/fbgetty/ChangeLog,v 1.10 2014/12/04 07:44:46 pinkbyte Exp $
+
+*fbgetty-0.1.698-r1 (04 Dec 2014)
+
+ 04 Dec 2014; Sergey Popov <pinkbyte@gentoo.org> +fbgetty-0.1.698-r1.ebuild:
+ Revision bump: EAPI 5, epatch_user, replace einstall with default src_install
+ phase function call, wrt bug #521582, install some configuration examples
27 Oct 2007; Alin Năstac <mrness@gentoo.org>
+files/fbgetty-0.1.698-gcc41.patch, fbgetty-0.1.698.ebuild:
diff --git a/net-dialup/fbgetty/fbgetty-0.1.698-r1.ebuild b/net-dialup/fbgetty/fbgetty-0.1.698-r1.ebuild
new file mode 100644
index 000000000000..339b39aa32ea
--- /dev/null
+++ b/net-dialup/fbgetty/fbgetty-0.1.698-r1.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/net-dialup/fbgetty/fbgetty-0.1.698-r1.ebuild,v 1.1 2014/12/04 07:44:46 pinkbyte Exp $
+
+EAPI=5
+
+inherit eutils
+
+DESCRIPTION="An extended getty for the framebuffer console"
+HOMEPAGE="http://projects.meuh.org/fbgetty/"
+SRC_URI="http://projects.meuh.org/${PN}/downloads/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86"
+
+src_prepare() {
+ epatch "${FILESDIR}/${P}-gcc41.patch"
+
+ epatch_user
+}
+
+src_install() {
+ default
+
+ docompress -x "/usr/share/doc/${PF}/examples"
+ insinto "/usr/share/doc/${PF}/examples"
+ doins examples/{issue.*,inittab.*}
+}