summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Harder <radhermit@gentoo.org>2013-05-19 06:26:46 +0000
committerTim Harder <radhermit@gentoo.org>2013-05-19 06:26:46 +0000
commit9c1d8a5aedf2ed60d5be497437b7ea31655ef6dc (patch)
tree96e6c6c9f5dc2e57a838cb62979f80e0e481fcc3 /app-arch/pbzip2
parentRemove old. (diff)
downloadgentoo-2-9c1d8a5aedf2ed60d5be497437b7ea31655ef6dc.tar.gz
gentoo-2-9c1d8a5aedf2ed60d5be497437b7ea31655ef6dc.tar.bz2
gentoo-2-9c1d8a5aedf2ed60d5be497437b7ea31655ef6dc.zip
Remove old.
(Portage version: 2.2.0_alpha175/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
Diffstat (limited to 'app-arch/pbzip2')
-rw-r--r--app-arch/pbzip2/ChangeLog9
-rw-r--r--app-arch/pbzip2/files/pbzip2-1.1.0-makefile.patch57
-rw-r--r--app-arch/pbzip2/files/pbzip2-1.1.2-makefile.patch62
-rw-r--r--app-arch/pbzip2/pbzip2-1.1.5.ebuild40
-rw-r--r--app-arch/pbzip2/pbzip2-1.1.6.ebuild43
5 files changed, 7 insertions, 204 deletions
diff --git a/app-arch/pbzip2/ChangeLog b/app-arch/pbzip2/ChangeLog
index 2e80c549e0bc..daa03fa99777 100644
--- a/app-arch/pbzip2/ChangeLog
+++ b/app-arch/pbzip2/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for app-arch/pbzip2
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-arch/pbzip2/ChangeLog,v 1.118 2012/11/04 16:49:43 ulm Exp $
+# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-arch/pbzip2/ChangeLog,v 1.119 2013/05/19 06:26:45 radhermit Exp $
+
+ 19 May 2013; Tim Harder <radhermit@gentoo.org>
+ -files/pbzip2-1.1.0-makefile.patch, -files/pbzip2-1.1.2-makefile.patch,
+ -pbzip2-1.1.5.ebuild, -pbzip2-1.1.6.ebuild:
+ Remove old.
04 Nov 2012; Ulrich Müller <ulm@gentoo.org> pbzip2-1.1.5.ebuild,
pbzip2-1.1.6.ebuild, pbzip2-1.1.8.ebuild:
diff --git a/app-arch/pbzip2/files/pbzip2-1.1.0-makefile.patch b/app-arch/pbzip2/files/pbzip2-1.1.0-makefile.patch
deleted file mode 100644
index 81885e56ef33..000000000000
--- a/app-arch/pbzip2/files/pbzip2-1.1.0-makefile.patch
+++ /dev/null
@@ -1,57 +0,0 @@
---- Makefile.orig 2010-03-14 01:24:19.049620304 +0200
-+++ Makefile 2010-03-14 01:29:23.231630037 +0200
-@@ -2,8 +2,6 @@
- SHELL = /bin/sh
-
- # Compiler to use
--CC = g++
--CFLAGS = -O2
- #CFLAGS += -g -Wall
- #CFLAGS += -ansi
- #CFLAGS += -pedantic
-@@ -12,7 +10,7 @@
- # Comment out CFLAGS line below for compatability mode for 32bit file sizes
- # (less than 2GB) and systems that have compilers that treat int as 64bit
- # natively (ie: modern AIX)
--CFLAGS += -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64
-+CXXFLAGS += -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64
-
- # Uncomment CFLAGS line below if you want to compile pbzip2 without load
- # average support for systems that do not support it
-@@ -22,17 +20,17 @@
- #CFLAGS += -DPBZIP_DEBUG
-
- # Comment out CFLAGS line below to disable pthread semantics in code
--CFLAGS += -D_POSIX_PTHREAD_SEMANTICS
-+CXXFLAGS += -D_POSIX_PTHREAD_SEMANTICS
-
- # Comment out CFLAGS line below to disable Thread stack size customization
--CFLAGS += -DUSE_STACKSIZE_CUSTOMIZATION
-+CXXFLAGS += -DUSE_STACKSIZE_CUSTOMIZATION
-
- # On some compilers -pthreads
--CFLAGS += -pthread
-+CXXFLAGS += -pthread
-
- # External libraries
--LDFLAGS = -lbz2
--LDFLAGS += -lpthread
-+LIBS = -lbz2
-+LIBS += -lpthread
-
- # Where you want pbzip2 installed when you do 'make install'
- PREFIX = /usr
-@@ -41,11 +39,11 @@
-
- # Standard pbzip2 compile
- pbzip2: pbzip2.cpp BZ2StreamScanner.cpp
-- $(CC) $(CFLAGS) $^ -o pbzip2 $(LDFLAGS)
-+ $(CXX) $(CXXFLAGS) $(LDFLAGS) $^ $(LIBS) -o pbzip2
-
- # Choose this if you want to compile in a static version of the libbz2 library
- pbzip2-static: pbzip2.cpp BZ2StreamScanner.cpp libbz2.a
-- $(CC) $(CFLAGS) $^ -o pbzip2 -I. -L. $(LDFLAGS)
-+ $(CXX) $(CXXFLAGS) $(LDFLAGS) $^ $(LIBS) -o pbzip2 -I. -L.
-
- # Install the binary pbzip2 program and man page
- install: pbzip2
diff --git a/app-arch/pbzip2/files/pbzip2-1.1.2-makefile.patch b/app-arch/pbzip2/files/pbzip2-1.1.2-makefile.patch
deleted file mode 100644
index cc4cb2b15b72..000000000000
--- a/app-arch/pbzip2/files/pbzip2-1.1.2-makefile.patch
+++ /dev/null
@@ -1,62 +0,0 @@
---- Makefile.orig 2011-02-21 00:17:16.334746748 +0200
-+++ Makefile 2011-02-21 00:19:16.504881112 +0200
-@@ -2,8 +2,6 @@
- SHELL = /bin/sh
-
- # Compiler to use
--CC = g++
--CFLAGS = -O2
- #CFLAGS += -g -Wall
- #CFLAGS += -ansi
- #CFLAGS += -pedantic
-@@ -12,7 +10,7 @@
- # Comment out CFLAGS line below for compatability mode for 32bit file sizes
- # (less than 2GB) and systems that have compilers that treat int as 64bit
- # natively (ie: modern AIX)
--CFLAGS += -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64
-+CXXFLAGS += -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64
-
- # Uncomment CFLAGS line below if you want to compile pbzip2 without load
- # average support for systems that do not support it
-@@ -22,10 +20,10 @@
- #CFLAGS += -DPBZIP_DEBUG
-
- # Comment out CFLAGS line below to disable pthread semantics in code
--CFLAGS += -D_POSIX_PTHREAD_SEMANTICS
-+CXXFLAGS += -D_POSIX_PTHREAD_SEMANTICS
-
- # Comment out CFLAGS line below to disable Thread stack size customization
--CFLAGS += -DUSE_STACKSIZE_CUSTOMIZATION
-+CXXFLAGS += -DUSE_STACKSIZE_CUSTOMIZATION
-
- # Comment out CFLAGS line below to explicity set ignore trailing garbage
- # default behavior: 0 - disabled; 1 - enabled (ignore garbage by default)
-@@ -34,11 +32,11 @@
- #CFLAGS += -DIGNORE_TRAILING_GARBAGE=1
-
- # On some compilers -pthreads
--CFLAGS += -pthread
-+CXXFLAGS += -pthread
-
- # External libraries
--LDFLAGS = -lbz2
--LDFLAGS += -lpthread
-+LIBS = -lbz2
-+LIBS += -lpthread
-
- # Where you want pbzip2 installed when you do 'make install'
- PREFIX = /usr
-@@ -47,11 +45,11 @@
-
- # Standard pbzip2 compile
- pbzip2: pbzip2.cpp BZ2StreamScanner.cpp
-- $(CC) $(CFLAGS) $^ -o pbzip2 $(LDFLAGS)
-+ $(CXX) $(CPPFLAGS) $(CXXFLAGS) $(LDFLAGS) $^ $(LIBS) -o pbzip2
-
- # Choose this if you want to compile in a static version of the libbz2 library
- pbzip2-static: pbzip2.cpp BZ2StreamScanner.cpp libbz2.a
-- $(CC) $(CFLAGS) $^ -o pbzip2 -I. -L. $(LDFLAGS)
-+ $(CXX) $(CPPFLAGS) $(CXXFLAGS) $(LDFLAGS) $^ $(LIBS) -o pbzip2 -I. -L.
-
- # Install the binary pbzip2 program and man page
- install: pbzip2
diff --git a/app-arch/pbzip2/pbzip2-1.1.5.ebuild b/app-arch/pbzip2/pbzip2-1.1.5.ebuild
deleted file mode 100644
index d88ee687dfaa..000000000000
--- a/app-arch/pbzip2/pbzip2-1.1.5.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-arch/pbzip2/pbzip2-1.1.5.ebuild,v 1.10 2012/11/04 16:49:43 ulm Exp $
-
-EAPI=4
-
-inherit flag-o-matic eutils
-
-DESCRIPTION="Parallel bzip2 (de)compressor using libbz2"
-HOMEPAGE="http://compression.ca/pbzip2/"
-SRC_URI="http://compression.ca/${PN}/${P}.tar.gz"
-
-LICENSE="BZIP2"
-SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~x86-fbsd"
-IUSE="static symlink"
-
-DEPEND="app-arch/bzip2"
-RDEPEND="${DEPEND}
- symlink? ( !app-arch/lbzip2[symlink] )"
-
-src_prepare() {
- epatch "${FILESDIR}"/${PN}-1.1.2-makefile.patch
- tc-export CXX
- use static && append-ldflags -static
-}
-
-src_install() {
- dobin pbzip2 || die "Failed to install"
- dodoc AUTHORS ChangeLog README || die
- doman pbzip2.1 || die "Failed to install man page"
- dosym pbzip2 /usr/bin/pbunzip2
-
- if use symlink ; then
- local s
- for s in bzip2 bunzip2 bzcat ; do
- dosym pbzip2 /usr/bin/${s} || die
- done
- fi
-}
diff --git a/app-arch/pbzip2/pbzip2-1.1.6.ebuild b/app-arch/pbzip2/pbzip2-1.1.6.ebuild
deleted file mode 100644
index eb8ebe113108..000000000000
--- a/app-arch/pbzip2/pbzip2-1.1.6.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-arch/pbzip2/pbzip2-1.1.6.ebuild,v 1.5 2012/11/04 16:49:43 ulm Exp $
-
-EAPI=4
-
-inherit flag-o-matic eutils
-
-DESCRIPTION="Parallel bzip2 (de)compressor using libbz2"
-HOMEPAGE="http://compression.ca/pbzip2/"
-SRC_URI="http://compression.ca/${PN}/${P}.tar.gz"
-
-LICENSE="BZIP2"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos"
-IUSE="static symlink"
-
-LIB_DEPEND="app-arch/bzip2[static-libs(+)]"
-RDEPEND="
- !static? ( ${LIB_DEPEND//\[static-libs(+)]} )
- symlink? ( !app-arch/lbzip2[symlink] )"
-DEPEND="${RDEPEND}
- static? ( ${LIB_DEPEND} )"
-
-src_prepare() {
- epatch "${FILESDIR}"/${PN}-1.1.6-makefile.patch
- tc-export CXX
- use static && append-ldflags -static
-}
-
-src_install() {
- dobin pbzip2
- dodoc AUTHORS ChangeLog README
- doman pbzip2.1
- dosym pbzip2 /usr/bin/pbunzip2
-
- if use symlink ; then
- local s
- for s in bzip2 bunzip2 bzcat ; do
- dosym pbzip2 /usr/bin/${s}
- done
- fi
-}