From 7cb2fb21a4baecbdb37ae53f797926398021e954 Mon Sep 17 00:00:00 2001 From: Michael Weber Date: Tue, 24 Aug 2010 23:09:22 +0000 Subject: app-text/mupdf moved to tree svn path=/sunrise/; revision=11241 --- app-text/mupdf/ChangeLog | 27 ---------- app-text/mupdf/Manifest | 5 -- app-text/mupdf/files/mupdf-0.6-buildsystem.patch | 51 ------------------- app-text/mupdf/metadata.xml | 6 --- app-text/mupdf/mupdf-0.6.ebuild | 65 ------------------------ 5 files changed, 154 deletions(-) delete mode 100644 app-text/mupdf/ChangeLog delete mode 100644 app-text/mupdf/Manifest delete mode 100644 app-text/mupdf/files/mupdf-0.6-buildsystem.patch delete mode 100644 app-text/mupdf/metadata.xml delete mode 100644 app-text/mupdf/mupdf-0.6.ebuild (limited to 'app-text/mupdf') diff --git a/app-text/mupdf/ChangeLog b/app-text/mupdf/ChangeLog deleted file mode 100644 index a33e2e8fd..000000000 --- a/app-text/mupdf/ChangeLog +++ /dev/null @@ -1,27 +0,0 @@ -# ChangeLog for app-text/mupdf -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: $ - - 05 Jun 2010; Michael Weber (xmw) +mupdf-0.6.ebuild, - +files/mupdf-0.6-buildsystem.patch, -mupdf-1170.ebuild, - -files/mupdf-1170-buildsystem.patch: - Version bump, cleaned up the CFLAGS situation in the build system. - - 02 Jun 2010; Michael Weber (xmw) -mupdf-940.ebuild, - +mupdf-1170.ebuild, +files/mupdf-1170-buildsystem.patch: - Version bump. ftjam build system replaced by Makefile - - 29 Apr 2010; Michael Weber (xmw) mupdf-940.ebuild: - HOMEPAGE and SRC_URI updated - - 16 Apr 2010; Thomas Sachau (Tommy[D]) mupdf-940.ebuild: - Define my_param var and make it local in the same line, drop empty var - - 14 Apr 2010; Markos Chandras metadata.xml: - Fix metadata.xml file - - 13 Apr 2010; Michael Weber (xmw) +mupdf-940.ebuild, - +metadata.xml: - New Ebuild for bug 280469, thanks to Manu Wächter for the - inital ebuild. - diff --git a/app-text/mupdf/Manifest b/app-text/mupdf/Manifest deleted file mode 100644 index b1520039c..000000000 --- a/app-text/mupdf/Manifest +++ /dev/null @@ -1,5 +0,0 @@ -AUX mupdf-0.6-buildsystem.patch 1446 RMD160 dbc139d01e47658a2339b6b8b65fe9fa8bfd9870 SHA1 0f4d9b7b47a24590623ef606ffbd6b878b2327a0 SHA256 bf6c539e530fe30f0bfb4c1c3f0e916d07ac18f035764e5afaf6b280c900b06f -DIST mupdf-0.6-source.tar.gz 3607245 RMD160 50b1ed1c3c07613a1dbb19cfe63cb47d4f2ae2fe SHA1 dd501da6f50c686c6d519fe6ae7c951d2e2d7e1c SHA256 6f87c4f113ee9e0f4bdfd3a316ef44052edc4febc8f7b531c4a3f44ffe149605 -EBUILD mupdf-0.6.ebuild 1469 RMD160 599be1f9fe355c0e2088a58121786ade7b0242d1 SHA1 deed5087824b81622626fe7da3566f7ff5ec5a95 SHA256 859abf89c34ee282bf62fe2e94226e395a09b414f6adaf9d39c76f7b68f221f5 -MISC ChangeLog 1049 RMD160 3df28ef58476e7c1b74eb6658fefbad9fab39e94 SHA1 9a83cec7979a5a81fee048387029e8ab09c87f86 SHA256 7cfc8000e4df13c7183d1cf354f74796ab1459aad504de924b5888ae7d79bacb -MISC metadata.xml 229 RMD160 f0f6417bec31ce8baba6d476664f7210c8c84c98 SHA1 e5f94f5caadc6f843fc90bb7959570cd503676fd SHA256 3b08fca3c878bdfc4e7639f477dd542d55a4ab5dce39a475e82633071d13eb3f diff --git a/app-text/mupdf/files/mupdf-0.6-buildsystem.patch b/app-text/mupdf/files/mupdf-0.6-buildsystem.patch deleted file mode 100644 index 56086726e..000000000 --- a/app-text/mupdf/files/mupdf-0.6-buildsystem.patch +++ /dev/null @@ -1,51 +0,0 @@ -Michael Weber Jun 5th 2010 - Possibility to pass /usr/lib64 on multilib/64bit systems. - Dropped the hard compiler options for compartibility on older chips. - ---- Makefile 2010-06-05 16:38:48.000000000 +0200 -+++ Makefile 2010-06-05 16:41:43.000000000 +0200 -@@ -7,6 +7,7 @@ - - build ?= debug - prefix ?= /usr/local -+libprefix ?= $(prefix)/lib - - OBJDIR := build/$(build) - GENDIR := build/generated -@@ -314,8 +315,8 @@ - rm -rf build - - install: $(DIRS) $(APPS) $(MUPDF_LIB) -- install -d $(prefix)/bin $(prefix)/lib $(prefix)/include -+ install -d $(prefix)/bin $(libprefix) $(prefix)/include - install $(APPS) $(prefix)/bin -- install $(MUPDF_LIB) $(prefix)/lib -+ install $(MUPDF_LIB) $(libprefix) - install $(MUPDF_HDR) $(prefix)/include - ---- Makerules 2010-06-05 16:38:48.000000000 +0200 -+++ Makerules 2010-06-05 16:49:44.000000000 +0200 -@@ -4,8 +4,8 @@ - OS := $(OS:MINGW%=MINGW) - - LIBS := -ljbig2dec -lopenjpeg -ljpeg -lz -lm --CFLAGS := -Wall --std=gnu99 -Ifitz -Imupdf $(THIRD_INCS) --LDFLAGS = -+CFLAGS += -Wall --std=gnu99 -Ifitz -Imupdf $(THIRD_INCS) -+LDFLAGS += - CC = cc - LD = $(CC) - AR = ar -@@ -23,10 +23,10 @@ - CFLAGS += `pkg-config --cflags freetype2` - LDFLAGS += `pkg-config --libs freetype2` - endif --X11LIBS = -lX11 -lXext -+X11LIBS = `pkg-config --libs x11 xext` - PDFVIEW_EXE = $(X11VIEW_EXE) - ifeq "$(build)" "release" --CFLAGS += -mmmx -ftree-vectorize -msse -msse2 -march=k8 -DARCH_X86 -+CFLAGS += - ARCH_SRC = archx86.c - endif - endif diff --git a/app-text/mupdf/metadata.xml b/app-text/mupdf/metadata.xml deleted file mode 100644 index e6233b5dc..000000000 --- a/app-text/mupdf/metadata.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - -no-herd -maintainer-wanted@gentoo.org - diff --git a/app-text/mupdf/mupdf-0.6.ebuild b/app-text/mupdf/mupdf-0.6.ebuild deleted file mode 100644 index d0546bb7d..000000000 --- a/app-text/mupdf/mupdf-0.6.ebuild +++ /dev/null @@ -1,65 +0,0 @@ -# Copyright 1999-2010 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: $ - -EAPI=2 - -inherit eutils flag-o-matic multilib toolchain-funcs - -DESCRIPTION="a lightweight PDF viewer and toolkit written in portable C" -HOMEPAGE="http://mupdf.com/" -SRC_URI="http://${PN}.com/download/source/${P}-source.tar.gz - http://xmw.de/mirror/${PN}/${P}-source.tar.gz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="X" - -S=${WORKDIR}/${PN} - -RDEPEND="media-libs/freetype:2 - media-libs/jbig2dec - media-libs/jpeg - media-libs/openjpeg - X? ( x11-libs/libX11 - x11-libs/libXext )" -DEPEND="${RDEPEND} - dev-util/pkgconfig" - -src_prepare() { - epatch "${FILESDIR}"/${P}-buildsystem.patch -} - -src_compile() { - use x86 && append-cflags -DARCH_X86 - use amd64 && append-cflags -DARCH_X86_64 - - my_pdfexe= - use X || my_pdfexe="PDFVIEW_EXE=" - - emake build=release ${my_pdfexe} CC="$(tc-getCC)" || die -} - -src_install() { - emake build=release ${my_pdfexe} prefix="${D}usr" \ - libprefix="${D}usr/$(get_libdir)" install || die - - insinto /usr/$(get_libdir)/pkgconfig - doins debian/mupdf.pc || die - - if use X ; then - domenu debian/mupdf.desktop || die - doicon debian/mupdf.xpm || die - doman debian/mupdf.1 || die - fi - doman debian/pdf{clean,draw,show}.1 || die - dodoc README || die - - # avoid collision with app-text/poppler-utils - mv "${D}"usr/bin/pdfinfo "${D}"usr/bin/mupdf_pdfinfo || die -} - -pkg_postinst() { - elog "pdfinfo was renamed to mupdf_pdfinfo" -} -- cgit v1.2.3-65-gdbad