diff options
author | 2010-03-09 18:09:11 +0000 | |
---|---|---|
committer | 2010-03-09 18:09:11 +0000 | |
commit | 4e780b23a1f1270695139564f8463578b131c887 (patch) | |
tree | 023fd880a211bb9ce1e47f9a0170253e86a9683f /app-text/enscript | |
parent | Use system libcurl and fix building with libpng14 by Locke Shinseiko (Wizzleby). (diff) | |
download | gentoo-2-4e780b23a1f1270695139564f8463578b131c887.tar.gz gentoo-2-4e780b23a1f1270695139564f8463578b131c887.tar.bz2 gentoo-2-4e780b23a1f1270695139564f8463578b131c887.zip |
Version bump.
(Portage version: 2.2_rc66/cvs/Linux i686)
Diffstat (limited to 'app-text/enscript')
-rw-r--r-- | app-text/enscript/ChangeLog | 7 | ||||
-rw-r--r-- | app-text/enscript/enscript-1.6.5.1.ebuild | 51 |
2 files changed, 57 insertions, 1 deletions
diff --git a/app-text/enscript/ChangeLog b/app-text/enscript/ChangeLog index 92dd3b449268..fc8333563ad6 100644 --- a/app-text/enscript/ChangeLog +++ b/app-text/enscript/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-text/enscript # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/enscript/ChangeLog,v 1.58 2010/01/26 05:08:23 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/enscript/ChangeLog,v 1.59 2010/03/09 18:09:11 jer Exp $ + +*enscript-1.6.5.1 (09 Mar 2010) + + 09 Mar 2010; Jeroen Roovers <jer@gentoo.org> +enscript-1.6.5.1.ebuild: + Version bump. *enscript-1.6.5 (26 Jan 2010) diff --git a/app-text/enscript/enscript-1.6.5.1.ebuild b/app-text/enscript/enscript-1.6.5.1.ebuild new file mode 100644 index 000000000000..0271e817cad8 --- /dev/null +++ b/app-text/enscript/enscript-1.6.5.1.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/enscript/enscript-1.6.5.1.ebuild,v 1.1 2010/03/09 18:09:11 jer Exp $ + +EAPI="2" + +inherit eutils + +DESCRIPTION="powerful text-to-postscript converter" +SRC_URI="mirror://gnu/${PN}/${P}.tar.gz" +HOMEPAGE="http://www.gnu.org/software/enscript/enscript.html" + +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd" +SLOT="0" +LICENSE="GPL-3" +IUSE="nls ruby" + +DEPEND=" + sys-devel/flex + sys-devel/bison + nls? ( sys-devel/gettext ) +" +RDEPEND="nls? ( virtual/libintl )" + +src_prepare() { + epatch "${FILESDIR}"/enscript-1.6.3-language.patch + epatch "${FILESDIR}"/enscript-1.6.4-ebuild.st.patch + use ruby && epatch "${FILESDIR}"/enscript-1.6.2-ruby.patch +} + +src_configure() { + econf $(use_enable nls) +} + +src_install() { + emake DESTDIR="${D}" install || die "install failed" + + dodoc AUTHORS ChangeLog NEWS README* THANKS TODO || die "dodoc failed" + + insinto /usr/share/enscript/hl + doins "${FILESDIR}"/ebuild.st || die "doins ebuild.st failed" + + if use ruby ; then + insinto /usr/share/enscript/hl + doins "${FILESDIR}"/ruby.st || die "doins ruby.st failed" + fi +} + +pkg_postinst() { + elog "Now, customize /etc/enscript.cfg." +} |