diff options
Diffstat (limited to 'app-text')
-rw-r--r-- | app-text/u2ps/ChangeLog | 11 | ||||
-rw-r--r-- | app-text/u2ps/Manifest | 5 | ||||
-rw-r--r-- | app-text/u2ps/metadata.xml | 9 | ||||
-rw-r--r-- | app-text/u2ps/u2ps-0.8.1.ebuild | 45 |
4 files changed, 0 insertions, 70 deletions
diff --git a/app-text/u2ps/ChangeLog b/app-text/u2ps/ChangeLog deleted file mode 100644 index 273ba088c..000000000 --- a/app-text/u2ps/ChangeLog +++ /dev/null @@ -1,11 +0,0 @@ -# ChangeLog for app-text/u2ps -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: $ - - 07 Sep 2010; Markos Chandras <hwoarang@gentoo.org> +Manifest: - Add missing manifest - - 29 Aug 2010; Jure Varlec (exzombie) <jure.varlec@gmail.com> - +u2ps-0.8.1.ebuild, +metadata.xml: - New ebuild for bug #335117. Thanks to hwoarang and Nikoli. - diff --git a/app-text/u2ps/Manifest b/app-text/u2ps/Manifest deleted file mode 100644 index 07337b40b..000000000 --- a/app-text/u2ps/Manifest +++ /dev/null @@ -1,5 +0,0 @@ -DIST u2ps-0.8.1.tar.gz 109891 RMD160 7202199d1297f7a33c19ff6448b8271725f808d4 SHA1 08d5590b1160c8c3556c28bf5db0b98a35dfa58b SHA256 67fc9324d1a8e8e89659bebf00c15c886e74802356109ce395d2715399d1b56f -DIST u2ps-full-0.8.1.tar.gz 5496100 RMD160 193a83877f061cbde8f501b5ed5651cacb3f2c79 SHA1 fe7e6a6cc4d724f1097ec38d9a5e25cfbb1cb030 SHA256 fd69fd1297d73558ff1c74355f44ccec6cdbcf145c271ab4a4d4f066a88f2d86 -EBUILD u2ps-0.8.1.ebuild 1036 RMD160 62ac0283d5bdc6786f8c5b8c9eb34b4b9473f9d5 SHA1 8c8ed5d379d88f70245cd08f8aa8bce784d2b167 SHA256 5eb54aa628953216bc3b54214e85c6e1022e7aa6c24d82af0301f2e7d025cfc5 -MISC ChangeLog 363 RMD160 748b7879e95112c676d22a06dbd24a93e5a0498a SHA1 3ae6c3f08114313f2301c6f7baa0a2d4870c87a8 SHA256 c61d8438ab0f238e91855ec05a184245457df181ea254711cc72a2142bcc001c -MISC metadata.xml 325 RMD160 1c71478d7b80ef59a47cdc848444c7cd12108a1f SHA1 795f8cb2da45ed64d28d8db138555aef0c9d164f SHA256 842f364cad5edb89c9d67dff4887fa2a6be1f28abf576f6912c9d22de79421f6 diff --git a/app-text/u2ps/metadata.xml b/app-text/u2ps/metadata.xml deleted file mode 100644 index cdfc6a83f..000000000 --- a/app-text/u2ps/metadata.xml +++ /dev/null @@ -1,9 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <herd>no-herd</herd> - <maintainer><email>maintainer-wanted@gentoo.org</email></maintainer> - <use> - <flag name='fonts'>Install a more complete set of unicode fonts</flag> - </use> -</pkgmetadata> diff --git a/app-text/u2ps/u2ps-0.8.1.ebuild b/app-text/u2ps/u2ps-0.8.1.ebuild deleted file mode 100644 index 5eb0613cc..000000000 --- a/app-text/u2ps/u2ps-0.8.1.ebuild +++ /dev/null @@ -1,45 +0,0 @@ -# Copyright 1999-2010 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: $ - -EAPI=2 - -DESCRIPTION="A text to PostScript converter like a2ps, but supports UTF-8" -HOMEPAGE="http://u2ps.berlios.de/" -SRC_URI="!fonts? ( mirror://berlios/${PN}/${P}.tar.gz ) - fonts? ( mirror://berlios/${PN}/${PN}-full-${PV}.tar.gz )" - -LICENSE="GPL-3 GPL-3-with-font-exception free-noncomm" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="fonts" - -DEPEND=" - >=dev-lang/perl-5.6 - dev-perl/Text-CharWidth - app-text/ghostscript-gpl -" -RDEPEND="${DEPEND}" - -use fonts && S="${WORKDIR}/${PN}-full-${PV}" - -src_configure() { - ./configure \ - --prefix=/usr \ - --datadir=/usr/share \ - --mandir=/usr/share/man \ - --with-perl=/usr/bin/perl \ - --with-gs=/usr/bin/gs \ - || die 'configure failed' -} - -src_compile() { - emake || die 'make failed' - emake man || die 'make man failed' -} - -src_install() { - emake install DESTDIR="${D}" || die 'install failed' - dodoc README DESIGN || die 'dodoc failed' - doman man/u2ps.1 || die 'doman failed' -} |