Merge pull request #615 from ajeddeloh/remove-dev-libs

dev-libs/*: remove unused packages
This commit is contained in:
Andrew Jeddeloh 2017-11-10 14:32:04 -08:00 committed by GitHub
commit e39df391e6
78 changed files with 0 additions and 4972 deletions

View File

@ -1 +0,0 @@
DIST cryptopp561.zip 1069703 RMD160 a8a5b80c995c5d4ddafba228caf8866425212fbf SHA1 31dbb456c21f50865218c57b7eaf4c955a222ba1 SHA256 98e74d8cb17a38033354519ac8ba9c5d98a6dc00bf5d1ec3c533c2e8ec86f268

View File

@ -1,54 +0,0 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/crypto++/crypto++-5.6.1-r1.ebuild,v 1.6 2011/02/27 11:30:01 klausman Exp $
EAPI="3"
inherit eutils flag-o-matic multilib toolchain-funcs
DESCRIPTION="Crypto++ is a C++ class library of cryptographic schemes"
HOMEPAGE="http://cryptopp.com"
SRC_URI="mirror://sourceforge/cryptopp/cryptopp${PV//.}.zip"
LICENSE="cryptopp"
SLOT="0"
KEYWORDS="alpha amd64 hppa ppc ppc64 sparc x86"
IUSE=""
DEPEND="app-arch/unzip"
RDEPEND=""
S="${WORKDIR}"
src_prepare() {
epatch "${FILESDIR}/${P}-fix_build_system.patch" \
"${FILESDIR}/${P}-sunos.patch"
}
src_compile() {
# Higher optimizations cause problems.
replace-flags -O? -O1
filter-flags -fomit-frame-pointer
emake -f GNUmakefile CXX="$(tc-getCXX)" CXXFLAGS="${CXXFLAGS}" \
LIBDIR="$(get_libdir)" || die "emake failed"
}
src_test() {
# Ensure that all test vectors have Unix line endings.
local file
for file in TestVectors/*; do
edos2unix ${file}
done
if ! emake CXX="$(tc-getCXX)" CXXFLAGS="${CXXFLAGS}" test; then
eerror "Crypto++ self-tests failed."
eerror "Try to remove some optimization flags and reemerge Crypto++."
die "emake test failed"
fi
}
src_install() {
emake DESTDIR="${D}" LIBDIR="$(get_libdir)" install \
|| die "emake install failed"
}

View File

@ -1,57 +0,0 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/crypto++/crypto++-5.6.1-r3.ebuild,v 1.3 2012/11/04 19:41:44 c1pher Exp $
EAPI="3"
inherit eutils flag-o-matic multilib toolchain-funcs
DESCRIPTION="Crypto++ is a C++ class library of cryptographic schemes"
HOMEPAGE="http://cryptopp.com"
SRC_URI="mirror://sourceforge/cryptopp/cryptopp${PV//.}.zip"
LICENSE="cryptopp"
SLOT="0"
KEYWORDS="alpha amd64 hppa ppc ppc64 sparc x86"
IUSE=""
DEPEND="app-arch/unzip
sys-devel/libtool"
RDEPEND=""
S="${WORKDIR}"
src_prepare() {
epatch \
"${FILESDIR}"/${PF}-fix_build_system.patch \
"${FILESDIR}"/${P}-rijndael.patch \
"${FILESDIR}"/${P}-gcc-4.7.patch
}
src_compile() {
# Higher optimizations cause problems.
replace-flags -O? -O1
filter-flags -fomit-frame-pointer
emake -f GNUmakefile CXX="$(tc-getCXX)" CXXFLAGS="${CXXFLAGS}" \
LIBDIR="$(get_libdir)" || die "emake failed"
}
src_test() {
# Ensure that all test vectors have Unix line endings.
local file
for file in TestVectors/*; do
edos2unix ${file}
done
if ! emake CXX="$(tc-getCXX)" CXXFLAGS="${CXXFLAGS}" test; then
eerror "Crypto++ self-tests failed."
eerror "Try to remove some optimization flags and reemerge Crypto++."
die "emake test failed"
fi
}
src_install() {
emake DESTDIR="${D}" LIBDIR="$(get_libdir)" install \
|| die "emake install failed"
}

View File

@ -1,124 +0,0 @@
--- GNUmakefile
+++ GNUmakefile
@@ -1,3 +1,5 @@
+LIBTOOL = libtool
+LIBDIR = lib
CXXFLAGS = -DNDEBUG -g -O2
#CXXFLAGS = -g
# -fPIC is supported. Please report any breakage of -fPIC as a bug.
@@ -7,8 +9,9 @@
# LDFLAGS += -Wl,--gc-sections
ARFLAGS = -cr # ar needs the dash on OpenBSD
RANLIB = ranlib
-CP = cp
+LN_S = ln -s
MKDIR = mkdir
+INSTALL = install
EGREP = egrep
UNAME = $(shell uname)
ISX86 = $(shell uname -m | $(EGREP) -c "i.86|x86|i86|amd64")
@@ -120,46 +123,45 @@
SRCS = $(shell echo *.cpp)
endif
-OBJS = $(SRCS:.cpp=.o)
-# test.o needs to be after bench.o for cygwin 1.1.4 (possible ld bug?)
-TESTOBJS = bench.o bench2.o test.o validat1.o validat2.o validat3.o adhoc.o datatest.o regtest.o fipsalgt.o dlltest.o
+OBJS = $(SRCS:.cpp=.lo)
+# test.lo needs to be after bench.lo for cygwin 1.1.4 (possible ld bug?)
+TESTOBJS = bench.lo bench2.lo test.lo validat1.lo validat2.lo validat3.lo adhoc.lo datatest.lo regtest.lo fipsalgt.lo dlltest.lo
LIBOBJS = $(filter-out $(TESTOBJS),$(OBJS))
DLLSRCS = algebra.cpp algparam.cpp asn.cpp basecode.cpp cbcmac.cpp channels.cpp cryptlib.cpp des.cpp dessp.cpp dh.cpp dll.cpp dsa.cpp ec2n.cpp eccrypto.cpp ecp.cpp eprecomp.cpp files.cpp filters.cpp fips140.cpp fipstest.cpp gf2n.cpp gfpcrypt.cpp hex.cpp hmac.cpp integer.cpp iterhash.cpp misc.cpp modes.cpp modexppc.cpp mqueue.cpp nbtheory.cpp oaep.cpp osrng.cpp pch.cpp pkcspad.cpp pubkey.cpp queue.cpp randpool.cpp rdtables.cpp rijndael.cpp rng.cpp rsa.cpp sha.cpp simple.cpp skipjack.cpp strciphr.cpp trdlocal.cpp
-DLLOBJS = $(DLLSRCS:.cpp=.export.o)
-LIBIMPORTOBJS = $(LIBOBJS:.o=.import.o)
-TESTIMPORTOBJS = $(TESTOBJS:.o=.import.o)
-DLLTESTOBJS = dlltest.dllonly.o
+DLLOBJS = $(DLLSRCS:.cpp=.export.lo)
+LIBIMPORTOBJS = $(LIBOBJS:.lo=.import.lo)
+TESTIMPORTOBJS = $(TESTOBJS:.lo=.import.lo)
+DLLTESTOBJS = dlltest.dllonly.lo
-all: cryptest.exe
+all: libcrypto++.la
-test: cryptest.exe
- ./cryptest.exe v
+test: cryptest
+ ./cryptest v
clean:
- $(RM) cryptest.exe libcryptopp.a $(LIBOBJS) $(TESTOBJS) cryptopp.dll libcryptopp.dll.a libcryptopp.import.a cryptest.import.exe dlltest.exe $(DLLOBJS) $(LIBIMPORTOBJS) $(TESTIMPORTOBJS) $(DLLTESTOBJS)
+ $(RM) -f .libs cryptest libcrypto++.* libcryptopp.* $(LIBOBJS) $(TESTOBJS) cryptopp.dll cryptest.import dlltest $(DLLOBJS) $(LIBIMPORTOBJS) $(TESTIMPORTOBJS) $(DLLTESTOBJS)
install:
- $(MKDIR) -p $(PREFIX)/include/cryptopp $(PREFIX)/lib $(PREFIX)/bin
- $(CP) *.h $(PREFIX)/include/cryptopp
- $(CP) *.a $(PREFIX)/lib
- $(CP) *.so $(PREFIX)/lib
- $(CP) *.exe $(PREFIX)/bin
+ $(MKDIR) -p $(DESTDIR)$(PREFIX)/include/crypto++ $(DESTDIR)$(PREFIX)/$(LIBDIR)
+ $(INSTALL) -m 644 *.h $(DESTDIR)$(PREFIX)/include/crypto++
+ $(LN_S) crypto++ $(DESTDIR)$(PREFIX)/include/cryptopp
+ $(LIBTOOL) --mode=install $(INSTALL) libcrypto++.la $(DESTDIR)$(PREFIX)/$(LIBDIR)
+ $(LN_S) libcrypto++.a $(DESTDIR)$(PREFIX)/$(LIBDIR)/libcryptopp.a
+ $(LN_S) libcrypto++.so.0.0.0 $(DESTDIR)$(PREFIX)/$(LIBDIR)/libcryptopp.so
+ $(LN_S) libcrypto++.so.0.0.0 $(DESTDIR)$(PREFIX)/$(LIBDIR)/libcryptopp.so.0
+ $(LN_S) libcrypto++.so.0.0.0 $(DESTDIR)$(PREFIX)/$(LIBDIR)/libcryptopp.so.0.0.0
-libcryptopp.a: $(LIBOBJS)
- $(AR) $(ARFLAGS) $@ $(LIBOBJS)
- $(RANLIB) $@
-
-libcryptopp.so: $(LIBOBJS)
- $(CXX) -shared -o $@ $(LIBOBJS)
+libcrypto++.la: $(LIBOBJS)
+ $(LIBTOOL) --tag=CC --mode=link $(CXX) $(LDFLAGS) -rpath $(PREFIX)/$(LIBDIR) -o $@ $(LIBOBJS)
-cryptest.exe: libcryptopp.a $(TESTOBJS)
- $(CXX) -o $@ $(CXXFLAGS) $(TESTOBJS) -L. -lcryptopp $(LDFLAGS) $(LDLIBS)
+cryptest: libcrypto++.la $(TESTOBJS)
+ $(LIBTOOL) --tag=CC --mode=link $(CXX) $(LDFLAGS) -o $@ $(TESTOBJS) -L. -lcrypto++ $(LDLIBS)
nolib: $(OBJS) # makes it faster to test changes
- $(CXX) -o ct $(CXXFLAGS) $(OBJS) $(LDFLAGS) $(LDLIBS)
+ $(LIBTOOL) --tag=CC --mode=link $(CXX) -o ct $(LDFLAGS) $(OBJS) $(LDLIBS)
-dll: cryptest.import.exe dlltest.exe
+dll: cryptest.import dlltest
cryptopp.dll: $(DLLOBJS)
$(CXX) -shared -o $@ $(CXXFLAGS) $(DLLOBJS) $(LDFLAGS) $(LDLIBS) -Wl,--out-implib=libcryptopp.dll.a
@@ -168,10 +170,10 @@
$(AR) $(ARFLAGS) $@ $(LIBIMPORTOBJS)
$(RANLIB) $@
-cryptest.import.exe: cryptopp.dll libcryptopp.import.a $(TESTIMPORTOBJS)
+cryptest.import: cryptopp.dll libcryptopp.import.a $(TESTIMPORTOBJS)
$(CXX) -o $@ $(CXXFLAGS) $(TESTIMPORTOBJS) -L. -lcryptopp.dll -lcryptopp.import $(LDFLAGS) $(LDLIBS)
-dlltest.exe: cryptopp.dll $(DLLTESTOBJS)
+dlltest: cryptopp.dll $(DLLTESTOBJS)
$(CXX) -o $@ $(CXXFLAGS) $(DLLTESTOBJS) -L. -lcryptopp.dll $(LDFLAGS) $(LDLIBS)
adhoc.cpp: adhoc.cpp.proto
@@ -181,14 +183,14 @@
touch adhoc.cpp
endif
-%.dllonly.o : %.cpp
+%.dllonly.lo : %.cpp
$(CXX) $(CXXFLAGS) -DCRYPTOPP_DLL_ONLY -c $< -o $@
-%.import.o : %.cpp
+%.import.lo : %.cpp
$(CXX) $(CXXFLAGS) -DCRYPTOPP_IMPORTS -c $< -o $@
-%.export.o : %.cpp
+%.export.lo : %.cpp
$(CXX) $(CXXFLAGS) -DCRYPTOPP_EXPORTS -c $< -o $@
-%.o : %.cpp
- $(CXX) $(CXXFLAGS) -c $<
+%.lo : %.cpp
+ $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(CXXFLAGS) -c $<

View File

@ -1,120 +0,0 @@
https://bugs.gentoo.org/403197
http://sourceforge.net/apps/trac/cryptopp/ticket/14
http://sourceforge.net/apps/trac/cryptopp/attachment/ticket/14/gcc4.7.diff
diff --git a/algebra.cpp b/algebra.cpp
index 78c3947..d4bfc57 100644
--- a/algebra.cpp
+++ b/algebra.cpp
@@ -58,7 +58,7 @@ template <class T> const T& AbstractEuclideanDomain<T>::Gcd(const Element &a, co
Element g[3]={b, a};
unsigned int i0=0, i1=1, i2=2;
- while (!Equal(g[i1], this->Identity()))
+ while (!this->Equal(g[i1], this->Identity()))
{
g[i2] = Mod(g[i0], g[i1]);
unsigned int t = i0; i0 = i1; i1 = i2; i2 = t;
@@ -74,7 +74,7 @@ template <class T> const typename QuotientRing<T>::Element& QuotientRing<T>::Mul
Element y;
unsigned int i0=0, i1=1, i2=2;
- while (!Equal(g[i1], Identity()))
+ while (!this->Equal(g[i1], Identity()))
{
// y = g[i0] / g[i1];
// g[i2] = g[i0] % g[i1];
diff --git a/eccrypto.cpp b/eccrypto.cpp
index fd8462f..922104c 100644
--- a/eccrypto.cpp
+++ b/eccrypto.cpp
@@ -435,7 +435,7 @@ template <class EC> void DL_GroupParameters_EC<EC>::Initialize(const OID &oid)
StringSource ssG(param.g, true, new HexDecoder);
Element G;
bool result = GetCurve().DecodePoint(G, ssG, (size_t)ssG.MaxRetrievable());
- SetSubgroupGenerator(G);
+ this->SetSubgroupGenerator(G);
assert(result);
StringSource ssN(param.n, true, new HexDecoder);
@@ -591,7 +591,7 @@ bool DL_GroupParameters_EC<EC>::ValidateElement(unsigned int level, const Elemen
if (level >= 2 && pass)
{
const Integer &q = GetSubgroupOrder();
- Element gq = gpc ? gpc->Exponentiate(this->GetGroupPrecomputation(), q) : ExponentiateElement(g, q);
+ Element gq = gpc ? gpc->Exponentiate(this->GetGroupPrecomputation(), q) : this->ExponentiateElement(g, q);
pass = pass && IsIdentity(gq);
}
return pass;
@@ -629,7 +629,7 @@ void DL_PublicKey_EC<EC>::BERDecodePublicKey(BufferedTransformation &bt, bool pa
typename EC::Point P;
if (!this->GetGroupParameters().GetCurve().DecodePoint(P, bt, size))
BERDecodeError();
- SetPublicElement(P);
+ this->SetPublicElement(P);
}
template <class EC>
diff --git a/eccrypto.h b/eccrypto.h
index b359e03..3530455 100644
--- a/eccrypto.h
+++ b/eccrypto.h
@@ -43,7 +43,7 @@ public:
void Initialize(const EllipticCurve &ec, const Point &G, const Integer &n, const Integer &k = Integer::Zero())
{
this->m_groupPrecomputation.SetCurve(ec);
- SetSubgroupGenerator(G);
+ this->SetSubgroupGenerator(G);
m_n = n;
m_k = k;
}
@@ -145,9 +145,9 @@ public:
typedef typename EC::Point Element;
void Initialize(const DL_GroupParameters_EC<EC> &params, const Element &Q)
- {this->AccessGroupParameters() = params; SetPublicElement(Q);}
+ {this->AccessGroupParameters() = params; this->SetPublicElement(Q);}
void Initialize(const EC &ec, const Element &G, const Integer &n, const Element &Q)
- {this->AccessGroupParameters().Initialize(ec, G, n); SetPublicElement(Q);}
+ {this->AccessGroupParameters().Initialize(ec, G, n); this->SetPublicElement(Q);}
// X509PublicKey
void BERDecodePublicKey(BufferedTransformation &bt, bool parametersPresent, size_t size);
@@ -166,9 +166,9 @@ public:
void Initialize(const EC &ec, const Element &G, const Integer &n, const Integer &x)
{this->AccessGroupParameters().Initialize(ec, G, n); this->SetPrivateExponent(x);}
void Initialize(RandomNumberGenerator &rng, const DL_GroupParameters_EC<EC> &params)
- {GenerateRandom(rng, params);}
+ {this->GenerateRandom(rng, params);}
void Initialize(RandomNumberGenerator &rng, const EC &ec, const Element &G, const Integer &n)
- {GenerateRandom(rng, DL_GroupParameters_EC<EC>(ec, G, n));}
+ {this->GenerateRandom(rng, DL_GroupParameters_EC<EC>(ec, G, n));}
// PKCS8PrivateKey
void BERDecodePrivateKey(BufferedTransformation &bt, bool parametersPresent, size_t size);
diff --git a/panama.cpp b/panama.cpp
index 09b1708..a1a37d6 100644
--- a/panama.cpp
+++ b/panama.cpp
@@ -422,7 +422,7 @@ void PanamaHash<B>::TruncatedFinal(byte *hash, size_t size)
{
this->ThrowIfInvalidTruncatedSize(size);
- PadLastBlock(this->BLOCKSIZE, 0x01);
+ this->PadLastBlock(this->BLOCKSIZE, 0x01);
HashEndianCorrectedBlock(this->m_data);
diff --git a/secblock.h b/secblock.h
index 24b9fc0..40cce33 100644
--- a/secblock.h
+++ b/secblock.h
@@ -88,7 +88,7 @@ public:
pointer allocate(size_type n, const void * = NULL)
{
- CheckSize(n);
+ this->CheckSize(n);
if (n == 0)
return NULL;

View File

@ -1,152 +0,0 @@
--- GNUmakefile
+++ GNUmakefile
@@ -1,3 +1,5 @@
+LIBTOOL = libtool
+LIBDIR = lib
CXXFLAGS = -DNDEBUG -g -O2
#CXXFLAGS = -g
# -fPIC is supported. Please report any breakage of -fPIC as a bug.
@@ -7,8 +9,9 @@
# LDFLAGS += -Wl,--gc-sections
ARFLAGS = -cr # ar needs the dash on OpenBSD
RANLIB = ranlib
-CP = cp
+LN_S = ln -s
MKDIR = mkdir
+INSTALL = install
EGREP = egrep
UNAME = $(shell uname)
ISX86 = $(shell uname -m | $(EGREP) -c "i.86|x86|i86|amd64")
@@ -77,8 +80,11 @@
CXXFLAGS += -pipe
endif
+THREAD_LIBS =
+
ifeq ($(UNAME),Linux)
LDFLAGS += -pthread
+THREAD_LIBS += -lpthread
ifneq ($(shell uname -i | $(EGREP) -c "(_64|d64)"),0)
M32OR64 = -m64
endif
@@ -99,8 +105,6 @@
ifeq ($(UNAME),SunOS)
LDLIBS += -lnsl -lsocket
M32OR64 = -m$(shell isainfo -b)
-endif
-
ifneq ($(IS_SUN_CC),0) # override flags for CC Sun C++ compiler
CXXFLAGS = -DNDEBUG -O -g0 -native -template=no%extdef $(M32OR64)
LDFLAGS =
@@ -114,52 +118,52 @@
CXXFLAGS += -DCRYPTOPP_INCLUDE_VECTOR_CC
endif
endif
+endif
SRCS = $(wildcard *.cpp)
ifeq ($(SRCS),) # workaround wildcard function bug in GNU Make 3.77
SRCS = $(shell echo *.cpp)
endif
-OBJS = $(SRCS:.cpp=.o)
-# test.o needs to be after bench.o for cygwin 1.1.4 (possible ld bug?)
-TESTOBJS = bench.o bench2.o test.o validat1.o validat2.o validat3.o adhoc.o datatest.o regtest.o fipsalgt.o dlltest.o
+OBJS = $(SRCS:.cpp=.lo)
+# test.lo needs to be after bench.lo for cygwin 1.1.4 (possible ld bug?)
+TESTOBJS = bench.lo bench2.lo test.lo validat1.lo validat2.lo validat3.lo adhoc.lo datatest.lo regtest.lo fipsalgt.lo dlltest.lo
LIBOBJS = $(filter-out $(TESTOBJS),$(OBJS))
DLLSRCS = algebra.cpp algparam.cpp asn.cpp basecode.cpp cbcmac.cpp channels.cpp cryptlib.cpp des.cpp dessp.cpp dh.cpp dll.cpp dsa.cpp ec2n.cpp eccrypto.cpp ecp.cpp eprecomp.cpp files.cpp filters.cpp fips140.cpp fipstest.cpp gf2n.cpp gfpcrypt.cpp hex.cpp hmac.cpp integer.cpp iterhash.cpp misc.cpp modes.cpp modexppc.cpp mqueue.cpp nbtheory.cpp oaep.cpp osrng.cpp pch.cpp pkcspad.cpp pubkey.cpp queue.cpp randpool.cpp rdtables.cpp rijndael.cpp rng.cpp rsa.cpp sha.cpp simple.cpp skipjack.cpp strciphr.cpp trdlocal.cpp
-DLLOBJS = $(DLLSRCS:.cpp=.export.o)
-LIBIMPORTOBJS = $(LIBOBJS:.o=.import.o)
-TESTIMPORTOBJS = $(TESTOBJS:.o=.import.o)
-DLLTESTOBJS = dlltest.dllonly.o
+DLLOBJS = $(DLLSRCS:.cpp=.export.lo)
+LIBIMPORTOBJS = $(LIBOBJS:.lo=.import.lo)
+TESTIMPORTOBJS = $(TESTOBJS:.lo=.import.lo)
+DLLTESTOBJS = dlltest.dllonly.lo
-all: cryptest.exe
+all: libcrypto++.la
-test: cryptest.exe
- ./cryptest.exe v
+test: cryptest
+ ./cryptest v
clean:
- $(RM) cryptest.exe libcryptopp.a $(LIBOBJS) $(TESTOBJS) cryptopp.dll libcryptopp.dll.a libcryptopp.import.a cryptest.import.exe dlltest.exe $(DLLOBJS) $(LIBIMPORTOBJS) $(TESTIMPORTOBJS) $(DLLTESTOBJS)
+ $(RM) -f .libs cryptest libcrypto++.* libcryptopp.* $(LIBOBJS) $(TESTOBJS) cryptopp.dll cryptest.import dlltest $(DLLOBJS) $(LIBIMPORTOBJS) $(TESTIMPORTOBJS) $(DLLTESTOBJS)
install:
- $(MKDIR) -p $(PREFIX)/include/cryptopp $(PREFIX)/lib $(PREFIX)/bin
- $(CP) *.h $(PREFIX)/include/cryptopp
- $(CP) *.a $(PREFIX)/lib
- $(CP) *.so $(PREFIX)/lib
- $(CP) *.exe $(PREFIX)/bin
-
-libcryptopp.a: $(LIBOBJS)
- $(AR) $(ARFLAGS) $@ $(LIBOBJS)
- $(RANLIB) $@
+ $(MKDIR) -p $(DESTDIR)$(PREFIX)/include/crypto++ $(DESTDIR)$(PREFIX)/$(LIBDIR)
+ $(INSTALL) -m 644 *.h $(DESTDIR)$(PREFIX)/include/crypto++
+ $(LN_S) crypto++ $(DESTDIR)$(PREFIX)/include/cryptopp
+ $(LIBTOOL) --mode=install $(INSTALL) libcrypto++.la $(DESTDIR)$(PREFIX)/$(LIBDIR)
+ $(LN_S) libcrypto++.a $(DESTDIR)$(PREFIX)/$(LIBDIR)/libcryptopp.a
+ $(LN_S) libcrypto++.so.0.0.0 $(DESTDIR)$(PREFIX)/$(LIBDIR)/libcryptopp.so
+ $(LN_S) libcrypto++.so.0.0.0 $(DESTDIR)$(PREFIX)/$(LIBDIR)/libcryptopp.so.0
+ $(LN_S) libcrypto++.so.0.0.0 $(DESTDIR)$(PREFIX)/$(LIBDIR)/libcryptopp.so.0.0.0
-libcryptopp.so: $(LIBOBJS)
- $(CXX) -shared -o $@ $(LIBOBJS)
+libcrypto++.la: $(LIBOBJS)
+ $(LIBTOOL) --tag=CXX --mode=link $(CXX) $(LDFLAGS) -rpath $(PREFIX)/$(LIBDIR) -o $@ $(LIBOBJS) $(THREAD_LIBS)
-cryptest.exe: libcryptopp.a $(TESTOBJS)
- $(CXX) -o $@ $(CXXFLAGS) $(TESTOBJS) -L. -lcryptopp $(LDFLAGS) $(LDLIBS)
+cryptest: libcrypto++.la $(TESTOBJS)
+ $(LIBTOOL) --tag=CXX --mode=link $(CXX) $(LDFLAGS) -o $@ $(TESTOBJS) -L. -lcrypto++ $(LDLIBS) $(THREAD_LIBS)
nolib: $(OBJS) # makes it faster to test changes
- $(CXX) -o ct $(CXXFLAGS) $(OBJS) $(LDFLAGS) $(LDLIBS)
+ $(LIBTOOL) --tag=CXX --mode=link $(CXX) -o ct $(LDFLAGS) $(OBJS) $(LDLIBS) $(THREAD_LIBS)
-dll: cryptest.import.exe dlltest.exe
+dll: cryptest.import dlltest
cryptopp.dll: $(DLLOBJS)
$(CXX) -shared -o $@ $(CXXFLAGS) $(DLLOBJS) $(LDFLAGS) $(LDLIBS) -Wl,--out-implib=libcryptopp.dll.a
@@ -168,10 +172,10 @@
$(AR) $(ARFLAGS) $@ $(LIBIMPORTOBJS)
$(RANLIB) $@
-cryptest.import.exe: cryptopp.dll libcryptopp.import.a $(TESTIMPORTOBJS)
+cryptest.import: cryptopp.dll libcryptopp.import.a $(TESTIMPORTOBJS)
$(CXX) -o $@ $(CXXFLAGS) $(TESTIMPORTOBJS) -L. -lcryptopp.dll -lcryptopp.import $(LDFLAGS) $(LDLIBS)
-dlltest.exe: cryptopp.dll $(DLLTESTOBJS)
+dlltest: cryptopp.dll $(DLLTESTOBJS)
$(CXX) -o $@ $(CXXFLAGS) $(DLLTESTOBJS) -L. -lcryptopp.dll $(LDFLAGS) $(LDLIBS)
adhoc.cpp: adhoc.cpp.proto
@@ -181,14 +185,14 @@
touch adhoc.cpp
endif
-%.dllonly.o : %.cpp
+%.dllonly.lo : %.cpp
$(CXX) $(CXXFLAGS) -DCRYPTOPP_DLL_ONLY -c $< -o $@
-%.import.o : %.cpp
+%.import.lo : %.cpp
$(CXX) $(CXXFLAGS) -DCRYPTOPP_IMPORTS -c $< -o $@
-%.export.o : %.cpp
+%.export.lo : %.cpp
$(CXX) $(CXXFLAGS) -DCRYPTOPP_EXPORTS -c $< -o $@
-%.o : %.cpp
- $(CXX) $(CXXFLAGS) -c $<
+%.lo : %.cpp
+ $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(CXXFLAGS) -c $<

View File

@ -1,14 +0,0 @@
--- rijndael.cpp 2010-08-06 18:46:22.000000000 +0200
+++ rijndael.cpp2 2011-12-27 16:10:52.606933355 +0100
@@ -349,7 +349,11 @@
void Rijndael::Enc::ProcessAndXorBlock(const byte *inBlock, const byte *xorBlock, byte *outBlock) const
{
#if CRYPTOPP_BOOL_SSE2_ASM_AVAILABLE || defined(CRYPTOPP_X64_MASM_AVAILABLE) || CRYPTOPP_BOOL_AESNI_INTRINSICS_AVAILABLE
+#if CRYPTOPP_BOOL_SSE2_ASM_AVAILABLE || defined(CRYPTOPP_X64_MASM_AVAILABLE)
if (HasSSE2())
+#else
+ if (HasAESNI())
+#endif
{
Rijndael::Enc::AdvancedProcessBlocks(inBlock, xorBlock, outBlock, 16, 0);
return;

View File

@ -1,19 +0,0 @@
--- GNUmakefile.orig 2010-11-04 18:18:03.000000000 +0100
+++ GNUmakefile 2010-11-04 19:21:29.000000000 +0100
@@ -102,8 +102,6 @@
ifeq ($(UNAME),SunOS)
LDLIBS += -lnsl -lsocket
M32OR64 = -m$(shell isainfo -b)
-endif
-
ifneq ($(IS_SUN_CC),0) # override flags for CC Sun C++ compiler
CXXFLAGS = -DNDEBUG -O -g0 -native -template=no%extdef $(M32OR64)
LDFLAGS =
@@ -117,6 +115,7 @@
CXXFLAGS += -DCRYPTOPP_INCLUDE_VECTOR_CC
endif
endif
+endif
SRCS = $(wildcard *.cpp)
ifeq ($(SRCS),) # workaround wildcard function bug in GNU Make 3.77

View File

@ -1 +0,0 @@
DIST gc-7.2d.tar.gz 1263064 RMD160 e3e191de01cc0f5b3b2570842e897c11fcc8d96d SHA1 b43573800e27361da78f05a2e98394521cfa04fc SHA256 d9fe0ae8650d43746a48bfb394cab01a319f3809cee19f8ebd16aa985b511c5e

View File

@ -1,19 +0,0 @@
diff -u -r a//doc/Makefile.am b//doc/Makefile.am
--- a//doc/Makefile.am 2005-03-22 00:05:19.000000000 +0200
+++ b//doc/Makefile.am 2010-04-18 20:08:13.000000000 +0300
@@ -1,3 +1,3 @@
# installed documentation
#
-dist_pkgdata_DATA=COPYING LICENSING.txt README.txt COPYING README_stack.txt README_malloc.txt README_win32.txt
+dist_pkgdata_DATA=COPYING LICENSING.txt README.txt README_stack.txt README_malloc.txt README_win32.txt
diff -u -r a//src/atomic_ops/sysdeps/Makefile.am b//src/atomic_ops/sysdeps/Makefile.am
--- a//src/atomic_ops/sysdeps/Makefile.am 2005-09-28 02:53:16.000000000 +0300
+++ b//src/atomic_ops/sysdeps/Makefile.am 2010-04-18 20:04:03.000000000 +0300
@@ -25,7 +25,6 @@
README \
\
gcc/alpha.h gcc/arm.h gcc/x86.h \
- gcc/hppa.h gcc/ia64.h \
gcc/powerpc.h gcc/sparc.h \
gcc/hppa.h gcc/m68k.h gcc/s390.h \
gcc/ia64.h gcc/x86_64.h gcc/cris.h \

View File

@ -1,11 +0,0 @@
--- src/atomic_ops/sysdeps/gcc/powerpc.h 2006-03-29 09:49:14.000000000 +1100
+++ src/atomic_ops/sysdeps/gcc/powerpc.h 2007-08-27 10:51:00.000000000 +1000
@@ -72,7 +72,7 @@
/* registers. I always got "impossible constraint" when I */
/* tried the "y" constraint. */
__asm__ __volatile__ (
- "lwz %0,%1\n"
+ "lwz%X1 %0,%1\n"
"cmpw cr7,%0,%0\n"
"bne- cr7,1f\n"
"1: isync\n"

View File

@ -1,46 +0,0 @@
--- src/atomic_ops/sysdeps/gcc/powerpc.h.orig 2006-03-28 22:49:14.000000000 +0000
+++ src/atomic_ops/sysdeps/gcc/powerpc.h 2007-06-08 23:10:07.000000000 +0000
@@ -63,6 +63,8 @@
/* seems to be that a data dependent branch followed by an isync is */
/* cheaper. And the documentation is fairly explicit that this also */
/* has acquire semantics. */
+/* ppc64 uses ld not lwz */
+#if defined(__powerpc64__) || defined(__ppc64__) || defined(__64BIT__)
AO_INLINE AO_t
AO_load_acquire(volatile AO_t *addr)
{
@@ -72,7 +74,7 @@
/* registers. I always got "impossible constraint" when I */
/* tried the "y" constraint. */
__asm__ __volatile__ (
- "lwz %0,%1\n"
+ "ld %0,%1\n"
"cmpw cr7,%0,%0\n"
"bne- cr7,1f\n"
"1: isync\n"
@@ -80,7 +82,25 @@
: "m"(*addr) : "memory", "cc");
return result;
}
+#else
+AO_INLINE AO_t
+AO_load_acquire(volatile AO_t *addr)
+{
+ AO_t result;
+ /* FIXME: We should get gcc to allocate one of the condition */
+ /* registers. I always got "impossible constraint" when I */
+ /* tried the "y" constraint. */
+ __asm__ __volatile__ (
+ "lwz %0,%1\n"
+ "cmpw cr7,%0,%0\n"
+ "bne- cr7,1f\n"
+ "1: isync\n"
+ : "=r" (result)
+ : "m"(*addr) : "memory", "cc");
+ return result;
+}
+#endif
#define AO_HAVE_load_acquire
/* We explicitly specify store_release, since it relies */

View File

@ -1,59 +0,0 @@
--- libatomic_ops/src/atomic_ops.h
+++ libatomic_ops/src/atomic_ops.h
@@ -228,6 +228,10 @@
# if defined(__cris__) || defined(CRIS)
# include "atomic_ops/sysdeps/gcc/cris.h"
# endif
+# if defined(__sh__) || defined(SH4)
+# include "atomic_ops/sysdeps/gcc/sh.h"
+# define AO_CAN_EMUL_CAS
+# endif /* __sh__ */
#endif /* __GNUC__ && !AO_USE_PTHREAD_DEFS */
#if defined(__INTEL_COMPILER) && !defined(AO_USE_PTHREAD_DEFS)
only in patch2:
unchanged:
--- libatomic_ops/src/atomic_ops/sysdeps/Makefile.am
+++ libatomic_ops/src/atomic_ops/sysdeps/Makefile.am
@@ -29,6 +29,7 @@
gcc/powerpc.h gcc/sparc.h \
gcc/hppa.h gcc/m68k.h gcc/s390.h \
gcc/ia64.h gcc/x86_64.h gcc/cris.h \
+ gcc/sh.h \
\
icc/ia64.h \
\
--- libatomic_ops/src/atomic_ops/sysdeps/gcc/sh.h
+++ libatomic_ops/src/atomic_ops/sysdeps/gcc/sh.h
@@ -0,0 +1,31 @@
+/*
+ * Copyright (c) 2009 by Takashi YOSHII. All rights reserved.
+ *
+ * THIS MATERIAL IS PROVIDED AS IS, WITH ABSOLUTELY NO WARRANTY EXPRESSED
+ * OR IMPLIED. ANY USE IS AT YOUR OWN RISK.
+ *
+ * Permission is hereby granted to use or copy this program
+ * for any purpose, provided the above notices are retained on all copies.
+ * Permission to modify the code and to distribute modified code is granted,
+ * provided the above notices are retained, and a notice that the code was
+ * modified is included with the above copyright notice.
+ */
+
+#include "../all_atomic_load_store.h"
+#include "../ordered.h"
+
+/* sh has tas.b(byte) only */
+#include "../test_and_set_t_is_char.h"
+
+AO_INLINE AO_TS_VAL_t
+AO_test_and_set_full(volatile AO_TS_t *addr)
+{
+ int oldval;
+ __asm__ __volatile__(
+ "tas.b @%1; movt %0"
+ : "=r" (oldval)
+ : "r" (addr)
+ : "t", "memory");
+ return oldval? AO_TS_CLEAR : AO_TS_SET;
+}
+#define AO_HAVE_test_and_set_full

View File

@ -1,43 +0,0 @@
http://git.yoctoproject.org/cgit/cgit.cgi/poky/commit/?id=e3a384578f677c05d812d99c2c92aa13670bd06a
Upstream-Status: Pending
Remove the `q' suffix on x86-64 atomic instructions.
We don't need the `q' suffix on x86_64 atomic instructions for AO_t,
which is defined as "unsigned long". "unsigned long" is 32bit for x32
and 64bit for x86-64. The register operand in x86-64 atomic instructions
is sufficient to properly determine the register size.
Received this patch from H.J. Lu <hjl.tools@gmail.com>
Signed-Off-By: Nitin A Kamble <nitin.a.kamble@intel.com> 2011/12/02
--- libatomic_ops-1.2/src/atomic_ops/sysdeps/gcc/x86_64.h.x32 2005-09-28 17:16:38.000000000 -0700
+++ libatomic_ops-1.2/src/atomic_ops/sysdeps/gcc/x86_64.h 2011-12-02 09:29:54.265251875 -0800
@@ -60,7 +60,7 @@ AO_fetch_and_add_full (volatile AO_t *p,
{
AO_t result;
- __asm__ __volatile__ ("lock; xaddq %0, %1" :
+ __asm__ __volatile__ ("lock; xadd %0, %1" :
"=r" (result), "=m" (*p) : "0" (incr), "m" (*p)
: "memory");
return result;
@@ -111,7 +111,7 @@ AO_int_fetch_and_add_full (volatile unsi
AO_INLINE void
AO_or_full (volatile AO_t *p, AO_t incr)
{
- __asm__ __volatile__ ("lock; orq %1, %0" :
+ __asm__ __volatile__ ("lock; or %1, %0" :
"=m" (*p) : "r" (incr), "m" (*p) : "memory");
}
@@ -136,7 +136,7 @@ AO_compare_and_swap_full(volatile AO_t *
AO_t old, AO_t new_val)
{
char result;
- __asm__ __volatile__("lock; cmpxchgq %3, %0; setz %1"
+ __asm__ __volatile__("lock; cmpxchg %3, %0; setz %1"
: "=m"(*addr), "=q"(result)
: "m"(*addr), "r" (new_val), "a"(old) : "memory");
return (int) result;

View File

@ -1,43 +0,0 @@
http://git.yoctoproject.org/cgit/cgit.cgi/poky/commit/?id=e3a384578f677c05d812d99c2c92aa13670bd06a
Upstream-Status: Pending
Remove the `q' suffix on x86-64 atomic instructions.
We don't need the `q' suffix on x86_64 atomic instructions for AO_t,
which is defined as "unsigned long". "unsigned long" is 32bit for x32
and 64bit for x86-64. The register operand in x86-64 atomic instructions
is sufficient to properly determine the register size.
Received this patch from H.J. Lu <hjl.tools@gmail.com>
Signed-Off-By: Nitin A Kamble <nitin.a.kamble@intel.com> 2011/12/02
--- a/src/atomic_ops/sysdeps/gcc/x86_64.h
+++ b/src/atomic_ops/sysdeps/gcc/x86_64.h
@@ -56,7 +56,7 @@ AO_fetch_and_add_full (volatile AO_t *p,
{
AO_t result;
- __asm__ __volatile__ ("lock; xaddq %0, %1" :
+ __asm__ __volatile__ ("lock; xadd %0, %1" :
"=r" (result), "=m" (*p) : "0" (incr), "m" (*p)
: "memory");
return result;
@@ -106,7 +106,7 @@ AO_int_fetch_and_add_full (volatile unsi
AO_INLINE void
AO_or_full (volatile AO_t *p, AO_t incr)
{
- __asm__ __volatile__ ("lock; orq %1, %0" :
+ __asm__ __volatile__ ("lock; or %1, %0" :
"=m" (*p) : "r" (incr), "m" (*p) : "memory");
}
@@ -131,7 +131,7 @@ AO_compare_and_swap_full(volatile AO_t *
AO_t old, AO_t new_val)
{
char result;
- __asm__ __volatile__("lock; cmpxchgq %3, %0; setz %1"
+ __asm__ __volatile__("lock; cmpxchg %3, %0; setz %1"
: "=m"(*addr), "=q"(result)
: "m"(*addr), "r" (new_val), "a"(old) : "memory");
return (int) result;

View File

@ -1,46 +0,0 @@
Adopted from
http://git.yoctoproject.org/cgit/cgit.cgi/poky/commit/?id=e3a384578f677c05d812d99c2c92aa13670bd06a
Upstream-Status: Pending
Remove the `q' suffix on x86-64 atomic instructions.
We don't need the `q' suffix on x86_64 atomic instructions for AO_t,
which is defined as "unsigned long". "unsigned long" is 32bit for x32
and 64bit for x86-64. The register operand in x86-64 atomic instructions
is sufficient to properly determine the register size.
Received this patch from H.J. Lu <hjl.tools@gmail.com>
Signed-Off-By: Nitin A Kamble <nitin.a.kamble@intel.com> 2011/12/02
diff --git a/libatomic_ops/src/atomic_ops/sysdeps/gcc/x86_64.h b/libatomic_ops/src/atomic_ops/sysdeps/gcc/x86_64.h
index 0f68c1e..3bcde88 100644
--- a/libatomic_ops/src/atomic_ops/sysdeps/gcc/x86_64.h
+++ b/libatomic_ops/src/atomic_ops/sysdeps/gcc/x86_64.h
@@ -47,7 +47,7 @@ AO_fetch_and_add_full (volatile AO_t *p, AO_t incr)
{
AO_t result;
- __asm__ __volatile__ ("lock; xaddq %0, %1" :
+ __asm__ __volatile__ ("lock; xadd %0, %1" :
"=r" (result), "=m" (*p) : "0" (incr), "m" (*p)
: "memory");
return result;
@@ -93,7 +93,7 @@ AO_int_fetch_and_add_full (volatile unsigned int *p, unsigned int incr)
AO_INLINE void
AO_or_full (volatile AO_t *p, AO_t incr)
{
- __asm__ __volatile__ ("lock; orq %1, %0" :
+ __asm__ __volatile__ ("lock; or %1, %0" :
"=m" (*p) : "r" (incr), "m" (*p) : "memory");
}
#define AO_HAVE_or_full
@@ -123,7 +123,7 @@ AO_compare_and_swap_full(volatile AO_t *addr, AO_t old, AO_t new_val)
return (int)__sync_bool_compare_and_swap(addr, old, new_val);
# else
char result;
- __asm__ __volatile__("lock; cmpxchgq %3, %0; setz %1"
+ __asm__ __volatile__("lock; cmpxchg %3, %0; setz %1"
: "=m" (*addr), "=a" (result)
: "m" (*addr), "r" (new_val), "a" (old) : "memory");
return (int) result;

View File

@ -1,34 +0,0 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libatomic_ops/libatomic_ops-7.2d.ebuild,v 1.3 2012/12/16 16:31:21 ulm Exp $
EAPI=4
inherit toolchain-funcs
DESCRIPTION="Implementation for atomic memory update operations"
HOMEPAGE="http://www.hpl.hp.com/research/linux/atomic_ops/"
SRC_URI="http://www.hpl.hp.com/personal/Hans_Boehm/gc/gc_source/gc-${PV/_}.tar.gz"
LICENSE="MIT boehm-gc GPL-2+"
SLOT="0"
KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE=""
S=${WORKDIR}/gc-${PV/d}/libatomic_ops
src_prepare() {
sed -i \
-e "/^pkgdatadir/s:/.*:/doc/${PF}:" \
doc/Makefile.in || die
find -type f -exec touch -r . {} +
}
src_compile() {
emake AR="$(tc-getAR)"
}
src_install() {
default
find "${ED}" '(' -name COPYING -o -name LICENSING.txt ')' -delete
}

View File

@ -1,698 +0,0 @@
# ChangeLog for dev-libs/libburn
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libburn/ChangeLog,v 1.184 2014/09/13 23:27:18 billie Exp $
13 Sep 2014; Daniel Pielmeier <billie@gentoo.org> -libburn-1.3.6.ebuild:
Remove old.
10 Aug 2014; Sergei Trofimovich <slyfox@gentoo.org> libburn-1.3.4.ebuild,
libburn-1.3.6.ebuild, libburn-1.3.8.ebuild:
QA: drop trailing '.' from DESCRIPTION
*libburn-1.3.8 (05 Jul 2014)
05 Jul 2014; Daniel Pielmeier <billie@gentoo.org> +libburn-1.3.8.ebuild:
Version bump.
24 Mar 2014; Daniel Pielmeier <billie@gentoo.org> -libburn-1.3.2.ebuild:
Remove old.
23 Mar 2014; Agostino Sarubbo <ago@gentoo.org> libburn-1.3.4.ebuild:
Stable for sparc, wrt bug #502718
23 Mar 2014; Agostino Sarubbo <ago@gentoo.org> libburn-1.3.4.ebuild:
Stable for ppc64, wrt bug #502718
23 Mar 2014; Agostino Sarubbo <ago@gentoo.org> libburn-1.3.4.ebuild:
Stable for ppc, wrt bug #502718
19 Mar 2014; Agostino Sarubbo <ago@gentoo.org> libburn-1.3.4.ebuild:
Stable for alpha, wrt bug #502718
19 Mar 2014; Agostino Sarubbo <ago@gentoo.org> libburn-1.3.4.ebuild:
Stable for ia64, wrt bug #502718
14 Mar 2014; Daniel Pielmeier <billie@gentoo.org> libburn-1.3.4.ebuild,
libburn-1.3.6.ebuild, +files/libburn-1.3.6-buffer-overflow.patch:
Add patch to prevent a buffer overflow in libburn/write.c which may occur for
certain tracks when trying to burn a CD in TAO mode. Thanks to Richard
Goedeken for the report (bug #504488) and proposed patch. Additional thanks
go to upstream author Thomas Schmitt for his quick response regarding the
issue.
09 Mar 2014; Pawel Hajdan jr <phajdan.jr@gentoo.org> libburn-1.3.4.ebuild:
x86 stable wrt bug #502718
08 Mar 2014; Pacho Ramos <pacho@gentoo.org> libburn-1.3.4.ebuild:
amd64 stable, bug 502718
08 Mar 2014; Markus Meier <maekke@gentoo.org> libburn-1.3.4.ebuild:
arm stable, bug #502718
*libburn-1.3.6 (07 Mar 2014)
07 Mar 2014; Daniel Pielmeier <billie@gentoo.org> +libburn-1.3.6.ebuild:
Version bump.
05 Mar 2014; Jeroen Roovers <jer@gentoo.org> libburn-1.3.4.ebuild:
Stable for HPPA (bug #502718).
24 Jan 2014; Daniel Pielmeier <billie@gentoo.org> -libburn-1.3.0_p01.ebuild:
Remove old.
18 Jan 2014; Agostino Sarubbo <ago@gentoo.org> libburn-1.3.2.ebuild:
Stable for alpha, wrt bug #486322
15 Jan 2014; Agostino Sarubbo <ago@gentoo.org> libburn-1.3.2.ebuild:
Stable for ia64, wrt bug #486322
*libburn-1.3.4 (11 Jan 2014)
11 Jan 2014; Daniel Pielmeier <billie@gentoo.org> +libburn-1.3.4.ebuild:
Version bump.
23 Dec 2013; Agostino Sarubbo <ago@gentoo.org> libburn-1.3.2.ebuild:
Stable for sparc, wrt bug #486322
23 Dec 2013; Agostino Sarubbo <ago@gentoo.org> libburn-1.3.2.ebuild:
Stable for ppc, wrt bug #486322
22 Dec 2013; Agostino Sarubbo <ago@gentoo.org> libburn-1.3.2.ebuild:
Stable for ppc64, wrt bug #486322
20 Oct 2013; Markus Meier <maekke@gentoo.org> libburn-1.3.2.ebuild:
arm stable, bug #486322
09 Oct 2013; Jeroen Roovers <jer@gentoo.org> libburn-1.3.2.ebuild:
Stable for HPPA (bug #486322).
30 Sep 2013; Agostino Sarubbo <ago@gentoo.org> libburn-1.3.2.ebuild:
Stable for x86, wrt bug #486322
28 Sep 2013; Agostino Sarubbo <ago@gentoo.org> libburn-1.3.2.ebuild:
Stable for amd64, wrt bug #486322
*libburn-1.3.2 (06 Sep 2013)
06 Sep 2013; Daniel Pielmeier <billie@gentoo.org> +libburn-1.3.2.ebuild:
Version bump.
05 Jul 2013; Daniel Pielmeier <billie@gentoo.org> -libburn-1.2.8.ebuild:
Remove old.
04 Jul 2013; Agostino Sarubbo <ago@gentoo.org> libburn-1.3.0_p01.ebuild:
Stable for x86, wrt bug #472596
29 Jun 2013; Agostino Sarubbo <ago@gentoo.org> libburn-1.3.0_p01.ebuild:
Stable for sparc, wrt bug #472596
26 Jun 2013; Agostino Sarubbo <ago@gentoo.org> libburn-1.3.0_p01.ebuild:
Stable for ia64, wrt bug #472596
26 Jun 2013; Agostino Sarubbo <ago@gentoo.org> libburn-1.3.0_p01.ebuild:
Stable for alpha, wrt bug #472596
25 Jun 2013; Agostino Sarubbo <ago@gentoo.org> libburn-1.3.0_p01.ebuild:
Stable for ppc64, wrt bug #472596
24 Jun 2013; Agostino Sarubbo <ago@gentoo.org> libburn-1.3.0_p01.ebuild:
Stable for ppc, wrt bug #472596
20 Jun 2013; Daniel Pielmeier <billie@gentoo.org> libburn-1.3.0_p01.ebuild:
Add additional docs. Avoid using cd for doc installation.
18 Jun 2013; Chema Alonso <nimiux@gentoo.org> libburn-1.3.0_p01.ebuild:
Stable for amd64 wrt bug #472596
11 Jun 2013; Markus Meier <maekke@gentoo.org> libburn-1.3.0_p01.ebuild:
arm stable, bug #472596
09 Jun 2013; Jeroen Roovers <jer@gentoo.org> libburn-1.3.0_p01.ebuild:
Stable for HPPA (bug #472596).
07 Jun 2013; Daniel Pielmeier <billie@gentoo.org> -libburn-1.2.4.ebuild,
-libburn-1.3.0.ebuild:
Remove old.
*libburn-1.3.0_p01 (07 Jun 2013)
07 Jun 2013; Daniel Pielmeier <billie@gentoo.org> +libburn-1.3.0_p01.ebuild:
Version bump.
*libburn-1.3.0 (18 May 2013)
18 May 2013; Daniel Pielmeier <billie@gentoo.org> +libburn-1.3.0.ebuild:
Version bump.
26 Apr 2013; Agostino Sarubbo <ago@gentoo.org> libburn-1.2.8.ebuild:
Stable for sparc, wrt bug #461100
22 Apr 2013; Agostino Sarubbo <ago@gentoo.org> libburn-1.2.8.ebuild:
Stable for ppc, wrt bug #461100
22 Apr 2013; Agostino Sarubbo <ago@gentoo.org> libburn-1.2.8.ebuild:
Stable for ia64, wrt bug #461100
18 Apr 2013; Jeroen Roovers <jer@gentoo.org> libburn-1.2.8.ebuild:
Stable for HPPA (bug #461100).
18 Apr 2013; Agostino Sarubbo <ago@gentoo.org> libburn-1.2.8.ebuild:
Stable for alpha, wrt bug #461100
16 Apr 2013; Agostino Sarubbo <ago@gentoo.org> libburn-1.2.8.ebuild:
Stable for ppc64, wrt bug #461100
16 Apr 2013; Agostino Sarubbo <ago@gentoo.org> libburn-1.2.8.ebuild:
Stable for arm, wrt bug #461100
13 Apr 2013; Agostino Sarubbo <ago@gentoo.org> libburn-1.2.8.ebuild:
Stable for x86, wrt bug #461100
13 Apr 2013; Agostino Sarubbo <ago@gentoo.org> libburn-1.2.8.ebuild:
Stable for amd64, wrt bug #461100
12 Apr 2013; Daniel Pielmeier <billie@gentoo.org> -libburn-1.2.6.ebuild:
Remove old.
*libburn-1.2.8 (20 Mar 2013)
20 Mar 2013; Daniel Pielmeier <billie@gentoo.org> +libburn-1.2.8.ebuild:
Version bump.
*libburn-1.2.6 (17 Jan 2013)
17 Jan 2013; Daniel Pielmeier <billie@gentoo.org> +libburn-1.2.6.ebuild:
Version bump.
06 Jan 2013; Agostino Sarubbo <ago@gentoo.org> libburn-1.2.4.ebuild:
Add ~sparc, wrt bug #449220
01 Jan 2013; Agostino Sarubbo <ago@gentoo.org> libburn-1.2.4.ebuild:
Add ~ia64, wrt bug #449220
01 Oct 2012; Daniel Pielmeier <billie@gentoo.org> -libburn-1.0.0.ebuild:
Remove old.
30 Sep 2012; Raúl Porcel <armin76@gentoo.org> libburn-1.2.4.ebuild:
alpha stable wrt #433223
13 Sep 2012; Daniel Pielmeier <billie@gentoo.org> -libburn-1.1.8.ebuild,
-libburn-1.2.2.ebuild:
Remove old.
09 Sep 2012; Anthony G. Basile <blueness@gentoo.org> libburn-1.2.4.ebuild:
Stable ppc ppc64, bug #433223
08 Sep 2012; Anthony G. Basile <blueness@gentoo.org> libburn-1.2.4.ebuild:
Stable arm, bug #433223
07 Sep 2012; Johannes Huber <johu@gentoo.org> libburn-1.2.4.ebuild:
Stable for x86, wrt bug #433223
07 Sep 2012; Jeroen Roovers <jer@gentoo.org> libburn-1.2.4.ebuild:
Stable for HPPA (bug #433223).
07 Sep 2012; Agostino Sarubbo <ago@gentoo.org> libburn-1.2.4.ebuild:
Stable for amd64, wrt bug #433223
*libburn-1.2.4 (26 Jul 2012)
26 Jul 2012; Daniel Pielmeier <billie@gentoo.org> +libburn-1.2.4.ebuild:
Version bump.
10 Jul 2012; Brent Baude <ranger@gentoo.org> libburn-1.2.2.ebuild:
Marking libburn-1.2.2 ppc for bug 414159
15 May 2012; Jeroen Roovers <jer@gentoo.org> libburn-1.2.2.ebuild:
Stable for HPPA (bug #414159).
06 May 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org> libburn-1.2.2.ebuild:
x86 stable wrt bug #414159
06 May 2012; Daniel Pielmeier <billie@gentoo.org> -libburn-1.2.0.ebuild:
Remove old.
05 May 2012; Markus Meier <maekke@gentoo.org> libburn-1.2.2.ebuild:
arm stable, bug #414159
04 May 2012; Jeff Horelick <jdhore@gentoo.org> libburn-1.0.0.ebuild,
libburn-1.1.8.ebuild, libburn-1.2.0.ebuild, libburn-1.2.2.ebuild:
dev-util/pkgconfig -> virtual/pkgconfig
01 May 2012; Agostino Sarubbo <ago@gentoo.org> libburn-1.2.2.ebuild:
Stable for amd64, wrt bug #414159
*libburn-1.2.2 (07 Apr 2012)
07 Apr 2012; Daniel Pielmeier <billie@gentoo.org> +libburn-1.2.2.ebuild:
Version bump.
13 Mar 2012; Samuli Suominen <ssuominen@gentoo.org> libburn-1.1.8.ebuild:
ppc/ppc64/x86 stable wrt #400017
10 Mar 2012; Daniel Pielmeier <billie@gentoo.org> libburn-1.2.0.ebuild,
metadata.xml:
Introduce cdio use flag now that libcdio-0.83 is available.
08 Feb 2012; Markus Meier <maekke@gentoo.org> libburn-1.1.8.ebuild:
arm stable, bug #400017
08 Feb 2012; Jeroen Roovers <jer@gentoo.org> libburn-1.1.8.ebuild:
Stable for HPPA (bug #400017).
*libburn-1.2.0 (01 Feb 2012)
01 Feb 2012; Daniel Pielmeier <billie@gentoo.org> +libburn-1.2.0.ebuild:
Version bump.
27 Jan 2012; Agostino Sarubbo <ago@gentoo.org> libburn-1.1.8.ebuild:
Stable for amd64, wrt bug #400017
25 Jan 2012; Daniel Pielmeier <billie@gentoo.org> -libburn-1.1.6.ebuild:
Remove old.
*libburn-1.1.8 (21 Nov 2011)
21 Nov 2011; Daniel Pielmeier <billie@gentoo.org> -libburn-1.1.4.ebuild,
+libburn-1.1.8.ebuild:
Version bump. Remove old.
*libburn-1.1.6 (18 Oct 2011)
18 Oct 2011; Daniel Pielmeier <billie@gentoo.org> +libburn-1.1.6.ebuild:
Version bump.
*libburn-1.1.4 (08 Aug 2011)
08 Aug 2011; Daniel Pielmeier <billie@gentoo.org> -libburn-1.1.0.ebuild,
+libburn-1.1.4.ebuild:
Version bump. Remove old.
*libburn-1.1.0 (19 Jun 2011)
19 Jun 2011; Daniel Pielmeier <billie@gentoo.org> -libburn-1.0.6.ebuild,
+libburn-1.1.0.ebuild:
Version bump. Remove old.
11 Apr 2011; Daniel Pielmeier <billie@gentoo.org> -libburn-0.7.6-r1.ebuild,
-libburn-0.8.4.ebuild, -libburn-1.0.4.ebuild:
Remove old.
*libburn-1.0.6 (11 Apr 2011)
11 Apr 2011; Daniel Pielmeier <billie@gentoo.org> +libburn-1.0.6.ebuild:
Version bump. Switch to EAPI 4. Add static-libs USE flag.
23 Mar 2011; Kacper Kowalik <xarthisius@gentoo.org> libburn-1.0.0.ebuild:
ppc/ppc64 stable wrt #355097
13 Mar 2011; Markus Meier <maekke@gentoo.org> libburn-1.0.0.ebuild:
arm stable, bug #355097
*libburn-1.0.4 (10 Mar 2011)
10 Mar 2011; Daniel Pielmeier <billie@gentoo.org> -libburn-1.0.2.ebuild,
+libburn-1.0.4.ebuild:
Version bump. Remove old.
10 Mar 2011; Thomas Kahle <tomka@gentoo.org> libburn-1.0.0.ebuild:
x86 stable per bug 355097
08 Mar 2011; Tobias Klausmann <klausman@gentoo.org> libburn-1.0.0.ebuild:
Stable on alpha, bug #355097
*libburn-1.0.2 (06 Mar 2011)
06 Mar 2011; Daniel Pielmeier <billie@gentoo.org> +libburn-1.0.2.ebuild:
Version bump.
01 Mar 2011; Jeroen Roovers <jer@gentoo.org> libburn-1.0.0.ebuild:
Stable for HPPA (bug #355097).
21 Feb 2011; Markos Chandras <hwoarang@gentoo.org> libburn-1.0.0.ebuild:
Stable on amd64 wrt bug #355097
*libburn-1.0.0 (18 Jan 2011)
18 Jan 2011; Daniel Pielmeier <billie@gentoo.org> -libburn-0.9.0.ebuild,
-files/libburn-0.9.0-cflags.patch, +libburn-1.0.0.ebuild:
Version bump. Remove old.
*libburn-0.9.0 (14 Dec 2010)
14 Dec 2010; Daniel Pielmeier <billie@gentoo.org> -libburn-0.8.8.ebuild,
+libburn-0.9.0.ebuild, +files/libburn-0.9.0-cflags.patch:
Version bump. Remove old.
26 Oct 2010; Jeroen Roovers <jer@gentoo.org> libburn-0.8.4.ebuild:
Stable for PPC (bug #331093).
26 Oct 2010; Jeroen Roovers <jer@gentoo.org> libburn-0.8.4.ebuild:
Stable for HPPA (bug #331093).
*libburn-0.8.8 (22 Oct 2010)
22 Oct 2010; Daniel Pielmeier <billie@gentoo.org> -libburn-0.8.6.ebuild,
+libburn-0.8.8.ebuild:
Version bump. Remove old.
03 Oct 2010; Tobias Klausmann <klausman@gentoo.org> libburn-0.8.4.ebuild:
Stable on alpha, bug #331093
*libburn-0.8.6 (27 Sep 2010)
27 Sep 2010; Daniel Pielmeier <billie@gentoo.org> +libburn-0.8.6.ebuild:
Version bump.
20 Aug 2010; Samuli Suominen <ssuominen@gentoo.org> libburn-0.8.4.ebuild:
ppc64 stable wrt #331093
12 Aug 2010; Markus Meier <maekke@gentoo.org> libburn-0.7.6-r1.ebuild:
arm stable, bug #324165
06 Aug 2010; Christian Faulhammer <fauli@gentoo.org> libburn-0.8.4.ebuild:
stable x86, bug 331093
04 Aug 2010; Markos Chandras <hwoarang@gentoo.org> libburn-0.8.4.ebuild:
Stable on amd64 wrt bug #331093
12 Jul 2010; Daniel Pielmeier <billie@gentoo.org> -libburn-0.7.0.ebuild:
Remove old.
10 Jul 2010; Jeroen Roovers <jer@gentoo.org> libburn-0.7.6-r1.ebuild:
Stable for HPPA (bug #309053).
*libburn-0.8.4 (03 Jul 2010)
03 Jul 2010; Daniel Pielmeier <billie@gentoo.org> -libburn-0.8.2.ebuild,
+libburn-0.8.4.ebuild:
Version bump. Remove old.
*libburn-0.8.2 (11 Jun 2010)
11 Jun 2010; Daniel Pielmeier <billie@gentoo.org> -libburn-0.6.8.ebuild,
-libburn-0.7.8.ebuild, -libburn-0.8.0.ebuild, +libburn-0.8.2.ebuild:
Version bump. Remove old.
07 Jun 2010; Christoph Mende <angelos@gentoo.org> libburn-0.7.6-r1.ebuild:
amd64 stable (bug #309053)
30 May 2010; Raúl Porcel <armin76@gentoo.org> libburn-0.7.6-r1.ebuild:
alpha stable wrt #309053
22 May 2010; Raúl Porcel <armin76@gentoo.org> libburn-0.6.8.ebuild,
libburn-0.7.0.ebuild, libburn-0.7.6-r1.ebuild, libburn-0.7.8.ebuild,
libburn-0.8.0.ebuild:
Add ~arm
*libburn-0.8.0 (09 Apr 2010)
09 Apr 2010; Daniel Pielmeier <billie@gentoo.org> +libburn-0.8.0.ebuild:
Version bump.
30 Mar 2010; Pawel Hajdan jr <phajdan.jr@gentoo.org>
libburn-0.7.6-r1.ebuild:
x86 stable wrt bug #309053
23 Mar 2010; Brent Baude <ranger@gentoo.org> libburn-0.7.6-r1.ebuild:
Marking libburn-0.7.6-r1 ppc64 stable for bug 309053
15 Mar 2010; nixnut <nixnut@gentoo.org> libburn-0.7.6-r1.ebuild:
ppc stable #309053
*libburn-0.7.8 (11 Mar 2010)
11 Mar 2010; Daniel Pielmeier <billie@gentoo.org> -libburn-0.7.4.ebuild,
+libburn-0.7.8.ebuild:
Version bump. Remove old.
*libburn-0.7.6-r1 (25 Jan 2010)
25 Jan 2010; Tomáš Chvátal <scarabeus@gentoo.org>
-libburn-0.7.6.ebuild, +libburn-0.7.6-r1.ebuild:
Revbump and fix automagic handling of useflag (missing \)
*libburn-0.7.6 (23 Jan 2010)
23 Jan 2010; Daniel Pielmeier <billie@gentoo.org> +libburn-0.7.6.ebuild,
metadata.xml:
Version bump.
21 Jan 2010; Daniel Pielmeier <billie@gentoo.org> metadata.xml:
Add myself to maintainers.
20 Jan 2010; Daniel Pielmeier <billie@gentoo.org> -libburn-0.5.8.ebuild,
-libburn-0.7.2.ebuild, -libburn-0.7.2_p01.ebuild:
Remove old.
14 Jan 2010; Jeroen Roovers <jer@gentoo.org> libburn-0.7.0.ebuild:
Stable for HPPA (bug #287521).
*libburn-0.7.4 (09 Dec 2009)
09 Dec 2009; Daniel Pielmeier <billie@gentoo.org> +libburn-0.7.4.ebuild,
metadata.xml:
Version bump. Add additional docs.
09 Dec 2009; nixnut <nixnut@gentoo.org> libburn-0.7.0.ebuild:
ppc stable #287521
30 Nov 2009; Brent Baude <ranger@gentoo.org> libburn-0.6.8.ebuild:
Marking libburn-0.6.8 ppc64 for bug 282658
26 Nov 2009; Markus Meier <maekke@gentoo.org> libburn-0.7.0.ebuild:
amd64 stable, bug #287521
24 Nov 2009; Christian Faulhammer <fauli@gentoo.org> libburn-0.7.0.ebuild:
stable x86, bug 287521
24 Nov 2009; Tobias Klausmann <klausman@gentoo.org> libburn-0.7.0.ebuild:
Stable on alpha, bug #287521
*libburn-0.7.2_p01 (13 Nov 2009)
13 Nov 2009; Daniel Pielmeier <billie@gentoo.org>
+libburn-0.7.2_p01.ebuild:
Version bump.
*libburn-0.7.2 (13 Oct 2009)
13 Oct 2009; Pielmeier Daniel <billie@gentoo.org> +libburn-0.7.2.ebuild:
Version bump.
12 Oct 2009; Jeroen Roovers <jer@gentoo.org> libburn-0.6.8.ebuild:
Stable for HPPA (bug #282658).
28 Sep 2009; Olivier Crête <tester@gentoo.org> libburn-0.6.8.ebuild:
amd64 stable, bug #282658
27 Sep 2009; nixnut <nixnut@gentoo.org> libburn-0.6.8.ebuild:
ppc stable #282658
12 Sep 2009; Christian Faulhammer <fauli@gentoo.org> libburn-0.6.8.ebuild:
stable x86, bug 282658
*libburn-0.7.0 (02 Sep 2009)
02 Sep 2009; Pielmeier Daniel <billie@gentoo.org> +libburn-0.7.0.ebuild:
Version bump.
30 Aug 2009; Tobias Klausmann <klausman@gentoo.org> libburn-0.6.8.ebuild:
Stable on alpha, bug #282658
*libburn-0.6.8 (14 Jul 2009)
14 Jul 2009; Pielmeier Daniel <billie@gentoo.org> +libburn-0.6.8.ebuild:
Version bump.
04 Jul 2009; Pielmeier Daniel <billie@gentoo.org> -libburn-0.5.2.ebuild,
-libburn-0.6.0_p01.ebuild, -libburn-0.6.2.ebuild, -libburn-0.6.4.ebuild:
Remove old.
22 Jun 2009; Jeroen Roovers <jer@gentoo.org> libburn-0.6.6.ebuild:
Marked ~hppa (bug #268363).
*libburn-0.6.6 (13 May 2009)
13 May 2009; Peter Alfredsen <loki_val@gentoo.org> +libburn-0.6.6.ebuild:
Bump. Fixes for *bsd.
07 May 2009; Tobias Klausmann <klausman@gentoo.org> libburn-0.6.4.ebuild:
Keyworded on alpha, bug #268294
19 Mar 2009; Brent Baude <ranger@gentoo.org> libburn-0.5.8.ebuild:
Marking libburn-0.5.8 ppc for bug 254947
*libburn-0.6.4 (16 Mar 2009)
16 Mar 2009; Peter Alfredsen <loki_val@gentoo.org> +libburn-0.6.4.ebuild:
Bump
*libburn-0.6.2 (01 Mar 2009)
01 Mar 2009; Peter Alfredsen <loki_val@gentoo.org> +libburn-0.6.2.ebuild:
Bump, bug 260420. Thanks to Daniel Pielmeier (billie)
<daniel.pielmeier@googlemail.com>.
*libburn-0.6.0_p01 (01 Feb 2009)
01 Feb 2009; Peter Alfredsen <loki_val@gentoo.org>
+libburn-0.6.0_p01.ebuild:
Bump w.r.t. bug 254993. EAPI-2. Thanks to Daniel Pielmeier (billie)
<daniel.pielmeier@googlemail.com> for his patience :-)
26 Jan 2009; Brent Baude <ranger@gentoo.org> libburn-0.5.8.ebuild:
Marking libburn-0.5.8 ppc64 for bug 254947
23 Jan 2009; Markus Meier <maekke@gentoo.org> libburn-0.5.8.ebuild:
amd64/x86 stable, bug #254947
*libburn-0.5.8 (08 Dec 2008)
08 Dec 2008; <ssuominen@gentoo.org> +libburn-0.5.8.ebuild:
Version bump.
24 Nov 2008; Brent Baude <ranger@gentoo.org> libburn-0.5.2.ebuild:
Marking libburn-0.5.2 ppc64 for bug 245272
*libburn-0.5.6 (15 Nov 2008)
15 Nov 2008; Peter Alfredsen <loki_val@gentoo.org> +libburn-0.5.6.ebuild:
bumb
08 Nov 2008; nixnut <nixnut@gentoo.org> libburn-0.5.2.ebuild:
Stable on ppc wrt bug 245272
05 Nov 2008; Markus Meier <maekke@gentoo.org> libburn-0.5.2.ebuild:
amd64/x86 stable, bug #245272
*libburn-0.5.4 (19 Oct 2008)
19 Oct 2008; Peter Alfredsen <loki_val@gentoo.org> +libburn-0.5.4.ebuild:
Bump, bug 241526, thanks to Daniel Pielmeier
<daniel.pielmeier@googlemail.com>.
*libburn-0.5.2 (21 Aug 2008)
21 Aug 2008; Steve Dibb <beandog@gentoo.org> +libburn-0.5.2.ebuild:
Version bump
*libburn-0.5.0_p0 (22 Jul 2008)
22 Jul 2008; Peter Alfredsen <loki_val@gentoo.org>
+libburn-0.5.0_p0.ebuild:
Bump in re request by drac. Mainly a bug fix release.
02 Jul 2008; Brent Baude <ranger@gentoo.org> libburn-0.4.4.ebuild:
Marking libburn-0.4.4 ppc for bug 208920
21 Jun 2008; Markus Rothe <corsair@gentoo.org> libburn-0.4.4.ebuild:
Stable on ppc64; bug #298920
12 Jun 2008; Samuli Suominen <drac@gentoo.org> libburn-0.4.4.ebuild:
stable amd64, bug 208920
12 Jun 2008; Christian Faulhammer <opfer@gentoo.org> libburn-0.4.4.ebuild:
stable x86, bug 208920
*libburn-0.4.8_p0 (04 Jun 2008)
04 Jun 2008; Samuli Suominen <drac@gentoo.org> +libburn-0.4.8_p0.ebuild:
Version bump.
26 Apr 2008; nixnut <nixnut@gentoo.org> libburn-0.4.2.ebuild:
Stable on ppc wrt bug 209059
19 Apr 2008; Markus Rothe <corsair@gentoo.org> libburn-0.4.2.ebuild:
Stable on ppc64; bug #209059
18 Apr 2008; Markus Meier <maekke@gentoo.org> libburn-0.4.2.ebuild:
amd64/x86 stable, bug #209059
*libburn-0.4.4 (18 Apr 2008)
18 Apr 2008; Steve Dibb <beandog@gentoo.org> +libburn-0.4.4.ebuild:
Version bump, bug 218195
13 Apr 2008; Samuli Suominen <drac@gentoo.org> libburn-0.3.6.ebuild,
-libburn-0.4.0.ebuild, -libburn-0.4.0-r1.ebuild, libburn-0.4.2.ebuild:
Move pkgconfig from RDEPEND to DEPEND only, and remove unused versions.
*libburn-0.4.2 (25 Feb 2008)
25 Feb 2008; Steve Dibb <beandog@gentoo.org> +libburn-0.4.2.ebuild:
Version bump, bug 209790
*libburn-0.4.0-r1 (05 Jan 2008)
05 Jan 2008; Samuli Suominen <drac@gentoo.org> +libburn-0.4.0-r1.ebuild:
Symlink libburn-5.pc to libburn-1.pc for backwards compability, known issue
in upstream ticket #102.
*libburn-0.4.0 (16 Dec 2007)
16 Dec 2007; Lars Weiler <pylon@gentoo.org> -libburn-0.2.2.ebuild,
-libburn-0.2.6.1.ebuild, -libburn-0.3.0.1.ebuild, -libburn-0.3.2.ebuild,
-libburn-0.3.4.ebuild, -libburn-0.3.8.ebuild, +libburn-0.4.0.ebuild:
Version bump; bug #198338. Cleanup.
10 Oct 2007; Markus Rothe <corsair@gentoo.org> libburn-0.3.8.ebuild:
Added ~ppc64; bug #189993
*libburn-0.3.8 (11 Aug 2007)
11 Aug 2007; Steve Dibb <beandog@gentoo.org> +libburn-0.3.8.ebuild:
version bump, bug 188347
30 Jul 2007; Tobias Scherbaum <dertobi123@gentoo.org>
libburn-0.3.6.ebuild:
ppc stable, bug #185630
25 Jul 2007; Christian Faulhammer <opfer@gentoo.org> libburn-0.3.6.ebuild:
stable x86, bug 185630
19 Jul 2007; Christoph Mende <angelos@gentoo.org> libburn-0.3.6.ebuild:
Stable on amd64 wrt bug #185630
*libburn-0.3.6 (12 May 2007)
12 May 2007; Steve Dibb <beandog@gentoo.org> +libburn-0.3.6.ebuild:
Version bump, bug 177072
*libburn-0.3.4 (27 Apr 2007)
27 Apr 2007; Steve Dibb <beandog@gentoo.org> +libburn-0.3.4.ebuild:
Version bump, bug 172075
*libburn-0.3.2 (13 Feb 2007)
13 Feb 2007; Luis Medinas <metalgod@gentoo.org> +libburn-0.3.2.ebuild:
Version Bump.
*libburn-0.3.0.1 (31 Jan 2007)
31 Jan 2007; Steve Dibb <beandog@gentoo.org> +libburn-0.3.0.1.ebuild:
Version bump
15 Jan 2007; Luis Medinas <metalgod@gentoo.org> libburn-0.2.2.ebuild,
libburn-0.2.6.1.ebuild:
Update Homepage.
13 Jan 2007; nixnut <nixnut@gentoo.org> libburn-0.2.6.1.ebuild:
Added ~ppc wrt bug 156453
*libburn-0.2.6.1 (03 Dec 2006)
03 Dec 2006; Steve Dibb <beandog@gentoo.org> +libburn-0.2.6.1.ebuild:
Version bump, bug 156974
*libburn-0.2.2 (08 Oct 2006)
08 Oct 2006; Luis Medinas <metalgod@gentoo.org> metadata.xml,
+libburn-0.2.2.ebuild:
Version Bump. Closes bug #148942. Change metadata to media-optical herd only.
*libburn-0.2 (02 Sep 2005)
02 Sep 2005; Luis Medinas <metalgod@gentoo.org> +libburn-0.2.ebuild:
New Package.

View File

@ -1,17 +0,0 @@
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256
AUX libburn-1.3.6-buffer-overflow.patch 361 SHA256 2884d4b02e91d17d8ed82743d20936473276ec7b0c3cbaa8e57299c01d41c5ac SHA512 7f0963f27a5cb1a4de3c5151f806b81e559227585fc97424a8acd7e6d82531c1f2184c715373d1a52f90b716a66c91f0bf2824da7dfcce9c5c88b4c451750a23 WHIRLPOOL 4d20fbff55fe1191dcedc4296d92e9b73b27d00a0162dd3082c336e82ac2fe78f7a50093a38cbdaf805540a3bf191fb2d61f538a4ca7af543a16d036692253b5
DIST libburn-1.3.4.tar.gz 953939 SHA256 60244606ebf7d150a5498863e7b8fc695d80b39a4404741e8d601af3312da919 SHA512 070ef744831156db2c603395205ce51bc5db3517a88ec4485caea1c4165a3393d8cc019e06aa323e2cdd8624d2fbc874d30fda39e558a53fe4d35c05d98e0a62 WHIRLPOOL ea75fa703c0698f26752469a1836872a728855ebfbdb8d7a416e9f26aea719d81f165a7c719e91b8229f1a26521656c9b336021a352e29fbce5e0e60049dd18b
DIST libburn-1.3.8.tar.gz 967404 SHA256 46266bdd4b37ca9700a44bbd8dbfbf3526423ede25751fd2f0211b2b5ce29283 SHA512 4f279319b49bc5f5d42751fcab16bfe949e14e6e1018f9138bcc9f8e10a298ecf9795780d5f8807c5c2bf1cc0332f931b709f1fb5809f30abb8054297370f3c6 WHIRLPOOL a814ab1c88b70b03788d490c1d6f9305878613d529fdd58df65a13bc683cf2e6c4e877192f85ffca07474a866115a34ef3932e838097e88db08d73554ed2ad3c
EBUILD libburn-1.3.4.ebuild 1201 SHA256 abca260cd165d86667e1feeafc1d6dc6cd230ec96507441dfa09349672400211 SHA512 1122d16a5c2a64a2bf8db80e861482f2fa8831e206ad975fe5ca232cdc508115a79d1ffa649b82e6431d3f9c8bc52ecbeb1c474446eae49cf5e8db211896671f WHIRLPOOL 318726856b2884b1649812b33da7fec70ea7d04fb75f87e69ab249fc2698a56c865809368f4c621fe977cf2151b895a78fa594d1f6052f4035e0254de79b341e
EBUILD libburn-1.3.8.ebuild 1085 SHA256 e1bf9f2c1d9fd1c3786d85ad3b8360f0c84f7b0fd3ba757cfe8c5935aa08166b SHA512 7022c78958fd53b3392965af925baac1473550fda4a7302d2e3eedffc90684b4f1523ad951e86b1b4e8e530f04c68e2d21d803c043bcc38466658254dc584270 WHIRLPOOL 373fa9c6c33e6848c344d77e54f54103dc0d493bb89dd047fd81e3e7c8eb141f04236e7a38b5110eacf10cee91d83d1bd25d03854aa1c38b9f9a6b7874d2352d
MISC ChangeLog 22272 SHA256 770900d7b5f5404f6bcc976e0eeb4286c5640d7f62978afc4d2b7cce561b507a SHA512 85c9d7eb39e1097df90a5a6668bf105a24a0032078890df887e7b43ff4feeab0c7fdf9ba16363c38a3eb8ddc5ce24859cdf16e9c1f9295e48cbc98c726065207 WHIRLPOOL 49a942447e1bc82342c9225de59480ad7f8a236b77c311d48c2e999c0f46a3e7320434567fc98a761e38b095b9267953f78b73f02124b59d1a72a0de9b29f5ac
MISC metadata.xml 629 SHA256 502fdd223728e37befae660191953ce8ed417fd0e35a4955147756db47c7e900 SHA512 1f7916bf3c93706caf11cbf9b2e34625f012d64f44defbc7b563926bc599c20b501b4f6e6d9c4660022c31f87a4d26da50fa09764b628edc3f613971de824c8f WHIRLPOOL 6436e94c1271d6d18e97108df60e45d7f1cf9a9dfe6d9d1fa07c052125d2107e886bcf4202570b9220c9fe09dda45d554b20f2cb9c2b0b19271b192a27cecac4
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v2
iEYEAREIAAYFAlQU0t4ACgkQlcuUeyFa0U1WjgCg4ZUvPmb6s94rHu1iU1w1M0LZ
cNcAoLF5aZK+k1cU+trnCBBQ/z5UWn0T
=4M/E
-----END PGP SIGNATURE-----

View File

@ -1,11 +0,0 @@
Index: /libburn/trunk/libburn/write.c
===================================================================
--- /libburn/trunk/libburn/write.c (revision 5238)
+++ /libburn/trunk/libburn/write.c (revision 5281)
@@ -1102,5 +1102,5 @@
int i, tmp = 0, open_ended = 0, ret= 0, nwa, lba;
int sectors;
- char msg[80];
+ char msg[160];
d->rlba = -150;

View File

@ -1,47 +0,0 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libburn/libburn-1.3.4.ebuild,v 1.12 2014/08/10 20:34:53 slyfox Exp $
EAPI=5
inherit eutils
DESCRIPTION="Libburn is an open-source library for reading, mastering and writing optical discs"
HOMEPAGE="http://libburnia-project.org"
SRC_URI="http://files.libburnia-project.org/releases/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sparc x86"
IUSE="cdio debug static-libs track-src-odirect"
RDEPEND="cdio? ( >=dev-libs/libcdio-0.83 )"
DEPEND="$RDEPEND
virtual/pkgconfig"
src_prepare () {
epatch "${FILESDIR}/${PN}-1.3.6-buffer-overflow.patch"
}
src_configure() {
econf \
$(use_enable static-libs static) \
$(use_enable track-src-odirect) \
--enable-pkg-check-modules \
$(use_enable cdio libcdio) \
--disable-ldconfig-at-install \
$(use_enable debug)
}
src_install() {
default
dodoc CONTRIBUTORS doc/{comments,*.txt}
docinto cdrskin
dodoc cdrskin/{*.txt,README}
docinto cdrskin/html
dohtml cdrskin/cdrskin_eng.html
find "${D}" -name '*.la' -exec rm -rf '{}' '+' || die "la removal failed"
}

View File

@ -1,43 +0,0 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libburn/libburn-1.3.8.ebuild,v 1.2 2014/08/10 20:34:53 slyfox Exp $
EAPI=5
inherit eutils
DESCRIPTION="Libburn is an open-source library for reading, mastering and writing optical discs"
HOMEPAGE="http://libburnia-project.org"
SRC_URI="http://files.libburnia-project.org/releases/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
IUSE="cdio debug static-libs track-src-odirect"
RDEPEND="cdio? ( >=dev-libs/libcdio-0.83 )"
DEPEND="$RDEPEND
virtual/pkgconfig"
src_configure() {
econf \
$(use_enable static-libs static) \
$(use_enable track-src-odirect) \
--enable-pkg-check-modules \
$(use_enable cdio libcdio) \
--disable-ldconfig-at-install \
$(use_enable debug)
}
src_install() {
default
dodoc CONTRIBUTORS doc/{comments,*.txt}
docinto cdrskin
dodoc cdrskin/{*.txt,README}
docinto cdrskin/html
dohtml cdrskin/cdrskin_eng.html
prune_libtool_files --all
}

View File

@ -1,18 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<herd>media-optical</herd>
<maintainer>
<email>billie@gentoo.org</email>
<name>Daniel Pielmeier</name>
</maintainer>
<longdescription lang="en">
Libburn is an open-source library for reading, mastering and writing optical
discs.
</longdescription>
<use>
<flag name="track-src-odirect">Read track input with O_DIRECT (see man 2 open),
this may deliver a better write performance in some situations</flag>
<flag name="cdio">Enable EXPERIMENTAL use of libcdio as system adapter</flag>
</use>
</pkgmetadata>

View File

@ -1,594 +0,0 @@
# ChangeLog for dev-libs/libisoburn
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libisoburn/ChangeLog,v 1.144 2014/09/13 23:29:06 billie Exp $
13 Sep 2014; Daniel Pielmeier <billie@gentoo.org> -libisoburn-1.3.6.ebuild:
Remove old.
*libisoburn-1.3.8 (05 Jul 2014)
05 Jul 2014; Daniel Pielmeier <billie@gentoo.org> +libisoburn-1.3.8.ebuild:
Version bump.
24 Mar 2014; Daniel Pielmeier <billie@gentoo.org> -libisoburn-1.3.2.ebuild:
Remove old.
24 Mar 2014; Agostino Sarubbo <ago@gentoo.org> libisoburn-1.3.4.ebuild:
Stable for alpha, wrt bug #502718
23 Mar 2014; Agostino Sarubbo <ago@gentoo.org> libisoburn-1.3.4.ebuild:
Stable for ppc64, wrt bug #502718
23 Mar 2014; Agostino Sarubbo <ago@gentoo.org> libisoburn-1.3.4.ebuild:
Stable for ppc, wrt bug #502718
09 Mar 2014; Pawel Hajdan jr <phajdan.jr@gentoo.org> libisoburn-1.3.4.ebuild:
x86 stable wrt bug #502718
08 Mar 2014; Pacho Ramos <pacho@gentoo.org> libisoburn-1.3.4.ebuild:
amd64 stable, bug 502718
08 Mar 2014; Markus Meier <maekke@gentoo.org> libisoburn-1.3.4.ebuild:
arm stable, bug #502718
*libisoburn-1.3.6 (07 Mar 2014)
07 Mar 2014; Daniel Pielmeier <billie@gentoo.org> +libisoburn-1.3.6.ebuild:
Version bump.
05 Mar 2014; Jeroen Roovers <jer@gentoo.org> libisoburn-1.3.4.ebuild:
Stable for HPPA (bug #502718).
24 Jan 2014; Daniel Pielmeier <billie@gentoo.org> -libisoburn-1.3.0.ebuild:
Remove old.
18 Jan 2014; Agostino Sarubbo <ago@gentoo.org> libisoburn-1.3.2.ebuild:
Stable for alpha, wrt bug #486322
*libisoburn-1.3.4 (11 Jan 2014)
11 Jan 2014; Daniel Pielmeier <billie@gentoo.org> +libisoburn-1.3.4.ebuild:
Version bump.
23 Dec 2013; Agostino Sarubbo <ago@gentoo.org> libisoburn-1.3.2.ebuild:
Stable for ppc, wrt bug #486322
22 Dec 2013; Agostino Sarubbo <ago@gentoo.org> libisoburn-1.3.2.ebuild:
Stable for ppc64, wrt bug #486322
20 Oct 2013; Markus Meier <maekke@gentoo.org> libisoburn-1.3.2.ebuild:
arm stable, bug #486322
09 Oct 2013; Jeroen Roovers <jer@gentoo.org> libisoburn-1.3.2.ebuild:
Stable for HPPA (bug #486322).
30 Sep 2013; Agostino Sarubbo <ago@gentoo.org> libisoburn-1.3.2.ebuild:
Stable for x86, wrt bug #486322
28 Sep 2013; Agostino Sarubbo <ago@gentoo.org> libisoburn-1.3.2.ebuild:
Stable for amd64, wrt bug #486322
*libisoburn-1.3.2 (06 Sep 2013)
06 Sep 2013; Daniel Pielmeier <billie@gentoo.org> +libisoburn-1.3.2.ebuild:
Version bump.
05 Jul 2013; Daniel Pielmeier <billie@gentoo.org> -libisoburn-1.2.4.ebuild,
-libisoburn-1.2.8.ebuild:
Remove old.
04 Jul 2013; Agostino Sarubbo <ago@gentoo.org> libisoburn-1.3.0.ebuild:
Stable for x86, wrt bug #472596
26 Jun 2013; Agostino Sarubbo <ago@gentoo.org> libisoburn-1.3.0.ebuild:
Stable for alpha, wrt bug #472596
25 Jun 2013; Agostino Sarubbo <ago@gentoo.org> libisoburn-1.3.0.ebuild:
Stable for ppc64, wrt bug #472596
24 Jun 2013; Agostino Sarubbo <ago@gentoo.org> libisoburn-1.3.0.ebuild:
Stable for ppc, wrt bug #472596
20 Jun 2013; Daniel Pielmeier <billie@gentoo.org> libisoburn-1.3.0.ebuild:
Add additional docs. Avoid using cd for doc installation.
18 Jun 2013; Chema Alonso <nimiux@gentoo.org> libisoburn-1.3.0.ebuild:
Stable for amd64 wrt bug #472596
11 Jun 2013; Markus Meier <maekke@gentoo.org> libisoburn-1.3.0.ebuild:
arm stable, bug #472596
09 Jun 2013; Jeroen Roovers <jer@gentoo.org> libisoburn-1.3.0.ebuild:
Stable for HPPA (bug #472596).
07 Jun 2013; Daniel Pielmeier <billie@gentoo.org>
-libisoburn-1.2.8-r1.ebuild:
Remove old.
*libisoburn-1.3.0 (18 May 2013)
18 May 2013; Daniel Pielmeier <billie@gentoo.org> +libisoburn-1.3.0.ebuild:
Version bump.
22 Apr 2013; Agostino Sarubbo <ago@gentoo.org> libisoburn-1.2.8.ebuild:
Stable for ppc, wrt bug #461100
21 Apr 2013; Markus Meier <maekke@gentoo.org> libisoburn-1.2.8-r1.ebuild:
add ~arm, bug #452728
18 Apr 2013; Jeroen Roovers <jer@gentoo.org> libisoburn-1.2.8.ebuild:
Stable for HPPA (bug #461100).
18 Apr 2013; Agostino Sarubbo <ago@gentoo.org> libisoburn-1.2.8.ebuild:
Stable for alpha, wrt bug #461100
16 Apr 2013; Agostino Sarubbo <ago@gentoo.org> libisoburn-1.2.8.ebuild:
Stable for ppc64, wrt bug #461100
*libisoburn-1.2.8-r1 (15 Apr 2013)
15 Apr 2013; Daniel Pielmeier <billie@gentoo.org>
+libisoburn-1.2.8-r1.ebuild:
Works with all versions of tcl/tk of slot 0 without a need to rebuild.
13 Apr 2013; Agostino Sarubbo <ago@gentoo.org> libisoburn-1.2.8.ebuild:
Stable for x86, wrt bug #461100
13 Apr 2013; Agostino Sarubbo <ago@gentoo.org> libisoburn-1.2.8.ebuild:
Stable for amd64, wrt bug #461100
12 Apr 2013; Daniel Pielmeier <billie@gentoo.org> -libisoburn-1.2.6.ebuild:
Remove old.
*libisoburn-1.2.8 (20 Mar 2013)
20 Mar 2013; Daniel Pielmeier <billie@gentoo.org> +libisoburn-1.2.8.ebuild:
Version bump.
24 Jan 2013; Jeroen Roovers <jer@gentoo.org> libisoburn-1.2.6.ebuild:
Marked ~hppa (bug #452728).
*libisoburn-1.2.6 (17 Jan 2013)
17 Jan 2013; Daniel Pielmeier <billie@gentoo.org> +libisoburn-1.2.6.ebuild,
metadata.xml:
Version bump.
01 Oct 2012; Daniel Pielmeier <billie@gentoo.org> -libisoburn-1.0.0.ebuild:
Remove old.
30 Sep 2012; Raúl Porcel <armin76@gentoo.org> libisoburn-1.2.4.ebuild:
alpha stable wrt #433223
13 Sep 2012; Daniel Pielmeier <billie@gentoo.org> -libisoburn-1.1.8.ebuild,
-libisoburn-1.2.2.ebuild:
Remove old.
09 Sep 2012; Anthony G. Basile <blueness@gentoo.org> libisoburn-1.2.4.ebuild:
Stable ppc ppc64, bug #433223
08 Sep 2012; Anthony G. Basile <blueness@gentoo.org> libisoburn-1.2.4.ebuild:
Stable arm, bug #433223
07 Sep 2012; Johannes Huber <johu@gentoo.org> libisoburn-1.2.4.ebuild:
Stable for x86, wrt bug #433223
07 Sep 2012; Jeroen Roovers <jer@gentoo.org> libisoburn-1.2.4.ebuild:
Stable for HPPA (bug #433223).
07 Sep 2012; Agostino Sarubbo <ago@gentoo.org> libisoburn-1.2.4.ebuild:
Stable for amd64, wrt bug #433223
*libisoburn-1.2.4 (26 Jul 2012)
26 Jul 2012; Daniel Pielmeier <billie@gentoo.org> +libisoburn-1.2.4.ebuild:
Version bump.
10 Jul 2012; Brent Baude <ranger@gentoo.org> libisoburn-1.2.2.ebuild:
Marking libisoburn-1.2.2 ppc for bug 414159
15 May 2012; Jeroen Roovers <jer@gentoo.org> libisoburn-1.2.2.ebuild:
Stable for HPPA (bug #414159).
06 May 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org> libisoburn-1.2.2.ebuild:
x86 stable wrt bug #414159
06 May 2012; Daniel Pielmeier <billie@gentoo.org> -libisoburn-1.2.0.ebuild:
Remove old.
05 May 2012; Markus Meier <maekke@gentoo.org> libisoburn-1.2.2.ebuild:
arm stable, bug #414159
04 May 2012; Jeff Horelick <jdhore@gentoo.org> libisoburn-1.0.0.ebuild,
libisoburn-1.1.8.ebuild, libisoburn-1.2.0.ebuild, libisoburn-1.2.2.ebuild:
dev-util/pkgconfig -> virtual/pkgconfig
01 May 2012; Agostino Sarubbo <ago@gentoo.org> libisoburn-1.2.2.ebuild:
Stable for amd64, wrt bug #414159
*libisoburn-1.2.2 (07 Apr 2012)
07 Apr 2012; Daniel Pielmeier <billie@gentoo.org> +libisoburn-1.2.2.ebuild:
Version bump.
13 Mar 2012; Samuli Suominen <ssuominen@gentoo.org> libisoburn-1.1.8.ebuild:
ppc/ppc64/x86 stable wrt #400017
10 Mar 2012; Daniel Pielmeier <billie@gentoo.org> libisoburn-1.2.0.ebuild,
metadata.xml:
Introduce cdio use flag now that libcdio-0.83 is available.
08 Feb 2012; Markus Meier <maekke@gentoo.org> libisoburn-1.1.8.ebuild:
arm stable, bug #400017
08 Feb 2012; Jeroen Roovers <jer@gentoo.org> libisoburn-1.1.8.ebuild:
Stable for HPPA (bug #400017).
*libisoburn-1.2.0 (01 Feb 2012)
01 Feb 2012; Daniel Pielmeier <billie@gentoo.org> +libisoburn-1.2.0.ebuild:
Version bump.
27 Jan 2012; Agostino Sarubbo <ago@gentoo.org> libisoburn-1.1.8.ebuild:
Stable for amd64, wrt bug #400017
25 Jan 2012; Daniel Pielmeier <billie@gentoo.org> -libisoburn-1.1.6.ebuild:
Remove old.
*libisoburn-1.1.8 (21 Nov 2011)
21 Nov 2011; Daniel Pielmeier <billie@gentoo.org> -libisoburn-1.1.4.ebuild,
+libisoburn-1.1.8.ebuild:
Version bump. Remove old.
*libisoburn-1.1.6 (18 Oct 2011)
18 Oct 2011; Daniel Pielmeier <billie@gentoo.org> +libisoburn-1.1.6.ebuild:
Version bump.
*libisoburn-1.1.4 (08 Aug 2011)
08 Aug 2011; Daniel Pielmeier <billie@gentoo.org> -libisoburn-1.1.2.ebuild,
+libisoburn-1.1.4.ebuild:
Version bump. Remove old.
*libisoburn-1.1.2 (11 Jul 2011)
11 Jul 2011; Daniel Pielmeier <billie@gentoo.org> -libisoburn-1.1.0.ebuild,
+libisoburn-1.1.2.ebuild:
Version bump. Remove old.
*libisoburn-1.1.0 (19 Jun 2011)
19 Jun 2011; Daniel Pielmeier <billie@gentoo.org> -libisoburn-1.0.8.ebuild,
+libisoburn-1.1.0.ebuild:
Version bump. Remove old.
*libisoburn-1.0.8 (16 Apr 2011)
16 Apr 2011; Daniel Pielmeier <billie@gentoo.org> -libisoburn-1.0.6.ebuild,
+libisoburn-1.0.8.ebuild:
Version bump. Remove old
13 Apr 2011; Daniel Pielmeier <billie@gentoo.org> -libisoburn-0.6.0.ebuild:
Remove old.
13 Apr 2011; Markus Meier <maekke@gentoo.org> libisoburn-1.0.0.ebuild:
x86 stable, bug #355097
11 Apr 2011; Daniel Pielmeier <billie@gentoo.org> -libisoburn-0.5.0.ebuild,
-libisoburn-1.0.4.ebuild:
Remove old.
*libisoburn-1.0.6 (11 Apr 2011)
11 Apr 2011; Daniel Pielmeier <billie@gentoo.org> +libisoburn-1.0.6.ebuild:
Version bump. Switch to EAPI 4. Add static-libs USE flag.
23 Mar 2011; Kacper Kowalik <xarthisius@gentoo.org> libisoburn-1.0.0.ebuild:
ppc/ppc64 stable wrt #355097
13 Mar 2011; Markus Meier <maekke@gentoo.org> libisoburn-1.0.0.ebuild:
arm stable, bug #355097
*libisoburn-1.0.4 (10 Mar 2011)
10 Mar 2011; Daniel Pielmeier <billie@gentoo.org> -libisoburn-1.0.2.ebuild,
+libisoburn-1.0.4.ebuild:
Version bump. Remove old.
08 Mar 2011; Tobias Klausmann <klausman@gentoo.org> libisoburn-1.0.0.ebuild:
Stable on alpha, bug #355097
*libisoburn-1.0.2 (06 Mar 2011)
06 Mar 2011; Daniel Pielmeier <billie@gentoo.org> +libisoburn-1.0.2.ebuild:
Version bump.
01 Mar 2011; Jeroen Roovers <jer@gentoo.org> libisoburn-1.0.0.ebuild:
Stable for HPPA (bug #355097).
24 Feb 2011; Daniel Pielmeier <billie@gentoo.org> libisoburn-1.0.0.ebuild:
Raise required libburn and libisofs version.
21 Feb 2011; Markos Chandras <hwoarang@gentoo.org> libisoburn-1.0.0.ebuild:
Stable on amd64 wrt bug #355097
*libisoburn-1.0.0 (18 Jan 2011)
18 Jan 2011; Daniel Pielmeier <billie@gentoo.org> -libisoburn-0.6.6.ebuild,
-files/libisoburn-0.6.6-cflags.patch, +libisoburn-1.0.0.ebuild:
Version bump. Remove old.
*libisoburn-0.6.6 (14 Dec 2010)
14 Dec 2010; Daniel Pielmeier <billie@gentoo.org> -libisoburn-0.6.4.ebuild,
+libisoburn-0.6.6.ebuild, +files/libisoburn-0.6.6-cflags.patch:
Version bump. Remove old.
26 Oct 2010; Jeroen Roovers <jer@gentoo.org> libisoburn-0.6.0.ebuild:
Stable for PPC (bug #331093).
*libisoburn-0.6.4 (26 Oct 2010)
26 Oct 2010; Daniel Pielmeier <billie@gentoo.org>
-libisoburn-0.6.2.ebuild, +libisoburn-0.6.4.ebuild:
Version bump. Remove old.
26 Oct 2010; Jeroen Roovers <jer@gentoo.org> libisoburn-0.6.0.ebuild:
Stable for HPPA (bug #331093).
03 Oct 2010; Tobias Klausmann <klausman@gentoo.org>
libisoburn-0.6.0.ebuild:
Stable on alpha, bug #331093
*libisoburn-0.6.2 (27 Sep 2010)
27 Sep 2010; Daniel Pielmeier <billie@gentoo.org>
+libisoburn-0.6.2.ebuild:
Version bump.
20 Aug 2010; Samuli Suominen <ssuominen@gentoo.org>
libisoburn-0.6.0.ebuild:
ppc64 stable wrt #331093
12 Aug 2010; Markus Meier <maekke@gentoo.org> libisoburn-0.5.0.ebuild:
arm stable, bug #324165
06 Aug 2010; Christian Faulhammer <fauli@gentoo.org>
libisoburn-0.6.0.ebuild:
stable x86, bug 331093
05 Aug 2010; Markus Meier <maekke@gentoo.org> libisoburn-0.6.0.ebuild:
add ~arm, bug #331091
04 Aug 2010; Markos Chandras <hwoarang@gentoo.org>
libisoburn-0.6.0.ebuild:
Stable on amd64 wrt bug #331093
23 Jul 2010; Tobias Klausmann <klausman@gentoo.org>
libisoburn-0.6.0.ebuild:
Keyworded on alpha, bug #309049
10 Jul 2010; Jeroen Roovers <jer@gentoo.org> libisoburn-0.5.0.ebuild:
Stable for HPPA (bug #309053).
*libisoburn-0.6.0 (03 Jul 2010)
03 Jul 2010; Daniel Pielmeier <billie@gentoo.org>
-libisoburn-0.5.8.ebuild, +libisoburn-0.6.0.ebuild:
Version bump. Remove old.
*libisoburn-0.5.8 (14 Jun 2010)
14 Jun 2010; Daniel Pielmeier <billie@gentoo.org>
-libisoburn-0.3.0_p0.ebuild, -libisoburn-0.5.4.ebuild,
-libisoburn-0.5.6.ebuild, +libisoburn-0.5.8.ebuild:
Version bump. Remove old.
07 Jun 2010; Christoph Mende <angelos@gentoo.org> libisoburn-0.5.0.ebuild:
amd64 stable (bug #309053)
*libisoburn-0.5.6 (04 May 2010)
04 May 2010; Daniel Pielmeier <billie@gentoo.org>
+libisoburn-0.5.6.ebuild:
Version bump.
*libisoburn-0.5.4 (19 Apr 2010)
19 Apr 2010; Daniel Pielmeier <billie@gentoo.org>
-libisoburn-0.4.0_p01.ebuild, -libisoburn-0.4.8.ebuild,
-libisoburn-0.5.2.ebuild, +libisoburn-0.5.4.ebuild:
Version bump. Remove old.
*libisoburn-0.5.2 (30 Mar 2010)
30 Mar 2010; Daniel Pielmeier <billie@gentoo.org>
+libisoburn-0.5.2.ebuild:
Version bump.
30 Mar 2010; Pawel Hajdan jr <phajdan.jr@gentoo.org>
libisoburn-0.5.0.ebuild:
x86 stable wrt bug #309053
23 Mar 2010; Brent Baude <ranger@gentoo.org> libisoburn-0.5.0.ebuild:
Marking libisoburn-0.5.0 ppc64 stable for bug 309053
15 Mar 2010; nixnut <nixnut@gentoo.org> libisoburn-0.5.0.ebuild:
ppc stable #309053
*libisoburn-0.5.0 (23 Feb 2010)
23 Feb 2010; Daniel Pielmeier <billie@gentoo.org>
-libisoburn-0.4.6.ebuild, +libisoburn-0.5.0.ebuild:
Version bump. Remove old.
*libisoburn-0.4.8 (26 Jan 2010)
26 Jan 2010; Daniel Pielmeier <billie@gentoo.org>
+libisoburn-0.4.8.ebuild:
Version bump.
21 Jan 2010; Daniel Pielmeier <billie@gentoo.org> metadata.xml:
Add myself to maintainers.
20 Jan 2010; Daniel Pielmeier <billie@gentoo.org>
-libisoburn-0.4.2_p02.ebuild, -libisoburn-0.4.4_p00.ebuild:
Remove old.
09 Dec 2009; Daniel Pielmeier <billie@gentoo.org> metadata.xml:
Whitespace.
*libisoburn-0.4.6 (09 Dec 2009)
09 Dec 2009; Daniel Pielmeier <billie@gentoo.org>
+libisoburn-0.4.6.ebuild, metadata.xml:
Version bump. Add additional docs.
30 Nov 2009; Brent Baude <ranger@gentoo.org> libisoburn-0.4.0_p01.ebuild:
Marking libisoburn-0.4.0_p01 ppc64 for bug 282658
*libisoburn-0.4.4_p00 (04 Nov 2009)
04 Nov 2009; Pielmeier Daniel <billie@gentoo.org>
-libisoburn-0.4.2_p01.ebuild, +libisoburn-0.4.4_p00.ebuild:
Version bump. Remove old.
12 Oct 2009; Jeroen Roovers <jer@gentoo.org> libisoburn-0.4.0_p01.ebuild,
libisoburn-0.4.2_p01.ebuild, libisoburn-0.4.2_p02.ebuild:
Marked ~hppa (bug #282658).
*libisoburn-0.4.2_p02 (08 Oct 2009)
08 Oct 2009; Pielmeier Daniel <billie@gentoo.org>
-libisoburn-0.4.2.ebuild, +libisoburn-0.4.2_p02.ebuild:
Version bump. Remove old.
*libisoburn-0.4.2_p01 (27 Sep 2009)
27 Sep 2009; Pielmeier Daniel <billie@gentoo.org>
+libisoburn-0.4.2_p01.ebuild:
Version bump.
27 Sep 2009; nixnut <nixnut@gentoo.org> libisoburn-0.4.0_p01.ebuild:
ppc stable #282658
12 Sep 2009; Christian Faulhammer <fauli@gentoo.org>
libisoburn-0.4.0_p01.ebuild:
stable x86, bug 282658
*libisoburn-0.4.2 (02 Sep 2009)
02 Sep 2009; Pielmeier Daniel <billie@gentoo.org>
-libisoburn-0.4.0.ebuild, +libisoburn-0.4.2.ebuild:
Version bump. Remove old.
*libisoburn-0.4.0_p01 (20 Jul 2009)
20 Jul 2009; Pielmeier Daniel <billie@gentoo.org>
+libisoburn-0.4.0_p01.ebuild:
Version bump.
*libisoburn-0.4.0 (04 Jul 2009)
04 Jul 2009; Pielmeier Daniel <billie@gentoo.org>
-libisoburn-0.2.6_p0.ebuild, -libisoburn-0.3.2_p0.ebuild,
-libisoburn-0.3.4_p0.ebuild, -libisoburn-0.3.6_p0.ebuild,
+libisoburn-0.4.0.ebuild:
Version bump. Add some overdue use flags. Remove old.
*libisoburn-0.3.8 (27 Apr 2009)
27 Apr 2009; Peter Alfredsen <loki_val@gentoo.org>
+libisoburn-0.3.8.ebuild:
Bump. Thanks to Daniel Pielmeier for reminding me. Import some
plnn-handling bits from libburn to get rid of the ugly _pn versions.
19 Mar 2009; Brent Baude <ranger@gentoo.org> libisoburn-0.3.0_p0.ebuild:
Marking libisoburn-0.3.0_p0 ~ppc for bug 254947
*libisoburn-0.3.6_p0 (17 Mar 2009)
17 Mar 2009; Peter Alfredsen <loki_val@gentoo.org>
+libisoburn-0.3.6_p0.ebuild:
Bump
*libisoburn-0.3.4_p0 (01 Mar 2009)
01 Mar 2009; Peter Alfredsen <loki_val@gentoo.org>
+libisoburn-0.3.4_p0.ebuild:
Bump. Thanks to Daniel Pielmeier (billie)
<daniel.pielmeier@googlemail.com> for judicious use of prodding to unslack
me.
*libisoburn-0.3.2_p0 (01 Feb 2009)
01 Feb 2009; Peter Alfredsen <loki_val@gentoo.org>
+libisoburn-0.3.2_p0.ebuild:
Bump, bug 254991. EAPI-2. Thanks to Daniel Pielmeier (billie)
<daniel.pielmeier@googlemail.com>.
26 Jan 2009; Brent Baude <ranger@gentoo.org> libisoburn-0.3.0_p0.ebuild:
Marking libisoburn-0.3.0_p0 ppc64 for bug 254947
23 Jan 2009; Markus Meier <maekke@gentoo.org> libisoburn-0.3.0_p0.ebuild:
amd64/x86 stable, bug #254947
*libisoburn-0.3.0_p0 (02 Dec 2008)
02 Dec 2008; <ssuominen@gentoo.org> +libisoburn-0.3.0_p0.ebuild:
Version bump.
01 Dec 2008; Brent Baude <ranger@gentoo.org> libisoburn-0.2.8_p0.ebuild:
Marking libisoburn-0.2.8_p0 ~ppc64 for bug 245272
05 Nov 2008; Markus Meier <maekke@gentoo.org> libisoburn-0.2.6_p0.ebuild:
amd64/x86 stable, bug #245272
*libisoburn-0.2.8_p0 (19 Oct 2008)
19 Oct 2008; Peter Alfredsen <loki_val@gentoo.org>
+libisoburn-0.2.8_p0.ebuild:
Bump, bug 242364, thanks to Daniel Pielmeier
<daniel.pielmeier@googlemail.com>
*libisoburn-0.2.6_p0 (28 Sep 2008)
28 Sep 2008; Peter Alfredsen <loki_val@gentoo.org>
+libisoburn-0.2.6_p0.ebuild:
Bump
*libisoburn-0.2.4_p0 (06 Sep 2008)
06 Sep 2008; Peter Alfredsen <loki_val@gentoo.org>
-files/libisoburn-0.2.2_p0-destdir.patch, -libisoburn-0.2.2_p0.ebuild,
+libisoburn-0.2.4_p0.ebuild:
Bump
*libisoburn-0.2.2_p0 (23 Jul 2008)
23 Jul 2008; Peter Alfredsen <loki_val@gentoo.org>
+files/libisoburn-0.2.2_p0-destdir.patch, +libisoburn-0.2.2_p0.ebuild:
Bump per convo w/drac. Fix Makefile to install symlinks to DESTDIR.
*libisoburn-0.2.0_p0 (24 Jun 2008)
24 Jun 2008; Samuli Suominen <drac@gentoo.org>
-libisoburn-0.1.8_p0.ebuild, +libisoburn-0.2.0_p0.ebuild:
Version bump.
10 Jun 2008; Raúl Porcel <armin76@gentoo.org> libisoburn-0.1.8_p0.ebuild:
Add ~x86
*libisoburn-0.1.8_p0 (04 Jun 2008)
04 Jun 2008; Samuli Suominen <drac@gentoo.org>
+libisoburn-0.1.8_p0.ebuild:
Version bump.
*libisoburn-0.1.0 (25 Feb 2008)
25 Feb 2008; Steve Dibb <beandog@gentoo.org> +metadata.xml,
+libisoburn-0.1.0.ebuild:
Initial commit

View File

@ -1,16 +0,0 @@
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256
DIST libisoburn-1.3.4.tar.gz 1401299 SHA256 93da0f9361b2075da9a6151a919df53f6f0c939abecdebc29efe5da0be559046 SHA512 24866d2d116a2a5d352262f9c84c635289a89dc263629136d96c63479f2be29333186bde4a42c59d0f9cabd06d2c872c54beb61381efe0f4d13950a44950115d WHIRLPOOL 770279ae9edcbd4cb2979ef0295abeddd7d76ed546d0080c69e53ceb74efaa48087183b61b720c743533f51e7d5e66bc0901d59c03ef09a84314dab8edca18e9
DIST libisoburn-1.3.8.tar.gz 1429974 SHA256 b75c9a7f17faab5280ddc34ea6610c4e8bcf630762ee386d10bc52c4b50f6806 SHA512 369299e491a379e048038d8a46040feb628b6b9dfb6d6ffac01808b6814e6ca936bb7e4fe75f904ce755e9957011403a5d38bff9f37901086d284f5c1014deb7 WHIRLPOOL 3dc40ab34838bb3d79f0cbb08b16480106de16b2c8401859c52fa139eb8a555f4182402dacf51ee481ec8f490a33a2e09cfc4ec3ba63db9fc876854c80f4dd12
EBUILD libisoburn-1.3.4.ebuild 1917 SHA256 1a9eb40e6e24358663bdba2bef7e07778a60c3336e9cd5ebb444c2f680740733 SHA512 1af1125af928a662967bb6b9ae09f7f09003aed2875344b61462ca749aff0b33fd9f9f4309c89e853a27a3cc8b0fa66e0ba38830f6c03e0622114fd929792147 WHIRLPOOL d168702d73ea88cc5c8082c0cfff698c407f6a673b73891c7b9e9f1f929d947db23b9ebb21f5ea69a93fca09c57e85dc0605b68168a64414ffbe833aba008a54
EBUILD libisoburn-1.3.8.ebuild 2010 SHA256 da84244eaa36e40f85f45e7aeb9c7d16eaadcdab5d266ee4ffa87450eb6d3133 SHA512 5d9066a904358ebabaf8ce094f6cb9da2382c4dfb3782a1c13be43ed78fd655e0389430e41ebe448c984a77201cfddff5565584da24ebb08276d6785118ad2c7 WHIRLPOOL df2084e491a6ef165d8f41f364deb381e2916af0aa66236412a0b1a3f5ef0e826a6092bdee1e500ecf1115529a3af8d2a135846bffc43574735899950297ce61
MISC ChangeLog 18659 SHA256 94afc8c8c5083eef6de2b44e5dec990dbaa7a483fae6c43019b4523c9bd8e999 SHA512 ebbab1a7176074b7fa7f2e198e1dde21ece7d670501a57ef4352f38c8623e50776b24d939bc985716b87e4c2a3850065c5951e79b9a0fa15f8bee27f5e3bc681 WHIRLPOOL f9c09690ec3a415b08ccc19b97bc8438b68e0488ce9a2c66da4b1d40b3a31e6133a3c9f3f77218d7660b8dc13ba5bb4a92cf0f8baedd7204330f28412e79cf83
MISC metadata.xml 920 SHA256 dd04193904d1e651970030c922360233210781ca0d0eb47a35c91845d28c0520 SHA512 6bc3ee39e6dbf656fb4a40eeae50a9e588fbbb27a6697413e505ba9ec0029bc83d4bedbdac7de4c899248fb852394e40f0b9a6deec3592b3e9014e1d74fd8052 WHIRLPOOL dbb13dbe1f146f55e330e8da0e0e5efbb219c9c4dc013dd0e2d7a5b53804971fda93102697bd09077d83c5b5c104336d818dbf70bbd9b3ba1e10523e9c9a2a15
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v2
iEYEAREIAAYFAlQU00MACgkQlcuUeyFa0U3INwCeNbQOt+N8cZfHpur9/JGfGadZ
IJoAn02VargJtFoQJshkq7itSVYjTFr6
=k1FM
-----END PGP SIGNATURE-----

View File

@ -1,61 +0,0 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libisoburn/libisoburn-1.3.4.ebuild,v 1.8 2014/03/24 19:24:34 ago Exp $
EAPI=5
DESCRIPTION="Enables creation and expansion of ISO-9660 filesystems on all CD/DVD media supported by libburn"
HOMEPAGE="http://libburnia-project.org/"
SRC_URI="http://files.libburnia-project.org/releases/${P}.tar.gz"
LICENSE="GPL-2 GPL-3"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ppc ppc64 x86"
IUSE="acl cdio debug external-filters external-filters-setuid frontend-optional launch-frontend launch-frontend-setuid readline static-libs xattr zlib"
REQUIRED_USE="frontend-optional? ( || ( launch-frontend launch-frontend-setuid ) )"
RDEPEND=">=dev-libs/libburn-1.3.4
>=dev-libs/libisofs-1.3.4
readline? ( sys-libs/readline )
acl? ( virtual/acl )
xattr? ( sys-apps/attr )
zlib? ( sys-libs/zlib )
cdio? ( >=dev-libs/libcdio-0.83 )
launch-frontend? ( dev-lang/tcl:0 dev-lang/tk:0 )
launch-frontend-setuid? ( dev-lang/tcl:0 dev-lang/tk:0 )
frontend-optional? ( dev-tcltk/bwidget )"
DEPEND="${RDEPEND}
virtual/pkgconfig"
src_configure() {
econf \
$(use_enable static-libs static) \
$(use_enable readline libreadline) \
$(use_enable acl libacl) \
$(use_enable xattr) \
$(use_enable zlib) \
--disable-libjte \
$(use_enable cdio libcdio) \
$(use_enable external-filters) \
$(use_enable external-filters-setuid) \
$(use_enable launch-frontend) \
$(use_enable launch-frontend-setuid) \
--disable-ldconfig-at-install \
--enable-pkg-check-modules \
$(use_enable debug)
}
src_install() {
default
dodoc CONTRIBUTORS doc/{comments,*.wiki,startup_file.txt}
docinto frontend
dodoc frontend/README-tcltk
docinto xorriso
dodoc xorriso/{changelog.txt,README_gnu_xorriso}
docinto xorriso/html
find "${D}" -name '*.la' -exec rm -rf '{}' '+' || die "la removal failed"
}

View File

@ -1,66 +0,0 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libisoburn/libisoburn-1.3.8.ebuild,v 1.1 2014/07/05 17:47:52 billie Exp $
EAPI=5
inherit eutils
DESCRIPTION="Enables creation and expansion of ISO-9660 filesystems on all CD/DVD media supported by libburn"
HOMEPAGE="http://libburnia-project.org/"
SRC_URI="http://files.libburnia-project.org/releases/${P}.tar.gz"
LICENSE="GPL-2 GPL-3"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86"
IUSE="acl cdio debug external-filters external-filters-setuid frontend-optional
launch-frontend launch-frontend-setuid libedit readline static-libs xattr zlib"
REQUIRED_USE="frontend-optional? ( || ( launch-frontend launch-frontend-setuid ) )"
RDEPEND=">=dev-libs/libburn-1.3.8
>=dev-libs/libisofs-1.3.8
readline? ( sys-libs/readline )
!readline? ( libedit? ( dev-libs/libedit ) )
acl? ( virtual/acl )
xattr? ( sys-apps/attr )
zlib? ( sys-libs/zlib )
cdio? ( >=dev-libs/libcdio-0.83 )
launch-frontend? ( dev-lang/tcl:0 dev-lang/tk:0 )
launch-frontend-setuid? ( dev-lang/tcl:0 dev-lang/tk:0 )
frontend-optional? ( dev-tcltk/bwidget )"
DEPEND="${RDEPEND}
virtual/pkgconfig"
src_configure() {
econf \
$(use_enable static-libs static) \
$(use_enable readline libreadline) \
$(usex readline --disable-libedit $(use_enable libedit)) \
$(use_enable acl libacl) \
$(use_enable xattr) \
$(use_enable zlib) \
--disable-libjte \
$(use_enable cdio libcdio) \
$(use_enable external-filters) \
$(use_enable external-filters-setuid) \
$(use_enable launch-frontend) \
$(use_enable launch-frontend-setuid) \
--disable-ldconfig-at-install \
--enable-pkg-check-modules \
$(use_enable debug)
}
src_install() {
default
dodoc CONTRIBUTORS doc/{comments,*.wiki,startup_file.txt}
docinto frontend
dodoc frontend/README-tcltk
docinto xorriso
dodoc xorriso/{changelog.txt,README_gnu_xorriso}
docinto xorriso/html
prune_libtool_files --all
}

View File

@ -1,20 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<herd>media-optical</herd>
<maintainer>
<email>billie@gentoo.org</email>
<name>Daniel Pielmeier</name>
</maintainer>
<use>
<flag name='external-filters'>Allow the use of external processes as file content
filters (Note: this is a potential security risk)</flag>
<flag name='external-filters-setuid'>Also allow the use of external setuid
processes as file content filters (Note: this is a potential security
risk)</flag>
<flag name='launch-frontend'>Enable the tcl gui for xorriso</flag>
<flag name='launch-frontend-setuid'>Enable the tcl gui for xorriso under setuid</flag>
<flag name='frontend-optional'>Use <pkg>dev-tcltk/bwidget</pkg> which is not strictly required for the frontend</flag>
<flag name="cdio">Enable EXPERIMENTAL use of libcdio as system adapter</flag>
</use>
</pkgmetadata>

View File

@ -1,648 +0,0 @@
# ChangeLog for dev-libs/libisofs
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libisofs/ChangeLog,v 1.168 2014/09/13 23:28:17 billie Exp $
13 Sep 2014; Daniel Pielmeier <billie@gentoo.org> -libisofs-1.3.6.ebuild:
Remove old.
10 Aug 2014; Sergei Trofimovich <slyfox@gentoo.org> libisofs-1.3.4.ebuild,
libisofs-1.3.6.ebuild, libisofs-1.3.8.ebuild:
QA: drop trailing '.' from DESCRIPTION
*libisofs-1.3.8 (05 Jul 2014)
05 Jul 2014; Daniel Pielmeier <billie@gentoo.org> +libisofs-1.3.8.ebuild:
Version bump.
24 Mar 2014; Daniel Pielmeier <billie@gentoo.org> -libisofs-1.3.2.ebuild:
Remove old.
23 Mar 2014; Agostino Sarubbo <ago@gentoo.org> libisofs-1.3.4.ebuild:
Stable for sparc, wrt bug #502718
23 Mar 2014; Agostino Sarubbo <ago@gentoo.org> libisofs-1.3.4.ebuild:
Stable for ppc64, wrt bug #502718
23 Mar 2014; Agostino Sarubbo <ago@gentoo.org> libisofs-1.3.4.ebuild:
Stable for ppc, wrt bug #502718
19 Mar 2014; Agostino Sarubbo <ago@gentoo.org> libisofs-1.3.4.ebuild:
Stable for alpha, wrt bug #502718
19 Mar 2014; Agostino Sarubbo <ago@gentoo.org> libisofs-1.3.4.ebuild:
Stable for ia64, wrt bug #502718
09 Mar 2014; Pawel Hajdan jr <phajdan.jr@gentoo.org> libisofs-1.3.4.ebuild:
x86 stable wrt bug #502718
08 Mar 2014; Pacho Ramos <pacho@gentoo.org> libisofs-1.3.4.ebuild:
amd64 stable, bug 502718
08 Mar 2014; Markus Meier <maekke@gentoo.org> libisofs-1.3.4.ebuild:
arm stable, bug #502718
*libisofs-1.3.6 (07 Mar 2014)
07 Mar 2014; Daniel Pielmeier <billie@gentoo.org> +libisofs-1.3.6.ebuild:
Version bump.
05 Mar 2014; Jeroen Roovers <jer@gentoo.org> libisofs-1.3.4.ebuild:
Stable for HPPA (bug #502718).
24 Jan 2014; Daniel Pielmeier <billie@gentoo.org> -libisofs-1.3.0.ebuild:
Remove old.
18 Jan 2014; Agostino Sarubbo <ago@gentoo.org> libisofs-1.3.2.ebuild:
Stable for alpha, wrt bug #486322
15 Jan 2014; Agostino Sarubbo <ago@gentoo.org> libisofs-1.3.2.ebuild:
Stable for ia64, wrt bug #486322
*libisofs-1.3.4 (11 Jan 2014)
11 Jan 2014; Daniel Pielmeier <billie@gentoo.org> +libisofs-1.3.4.ebuild:
Version bump.
23 Dec 2013; Agostino Sarubbo <ago@gentoo.org> libisofs-1.3.2.ebuild:
Stable for sparc, wrt bug #486322
23 Dec 2013; Agostino Sarubbo <ago@gentoo.org> libisofs-1.3.2.ebuild:
Stable for ppc, wrt bug #486322
22 Dec 2013; Agostino Sarubbo <ago@gentoo.org> libisofs-1.3.2.ebuild:
Stable for ppc64, wrt bug #486322
20 Oct 2013; Markus Meier <maekke@gentoo.org> libisofs-1.3.2.ebuild:
arm stable, bug #486322
09 Oct 2013; Jeroen Roovers <jer@gentoo.org> libisofs-1.3.2.ebuild:
Stable for HPPA (bug #486322).
30 Sep 2013; Agostino Sarubbo <ago@gentoo.org> libisofs-1.3.2.ebuild:
Stable for x86, wrt bug #486322
28 Sep 2013; Agostino Sarubbo <ago@gentoo.org> libisofs-1.3.2.ebuild:
Stable for amd64, wrt bug #486322
*libisofs-1.3.2 (06 Sep 2013)
06 Sep 2013; Daniel Pielmeier <billie@gentoo.org> +libisofs-1.3.2.ebuild:
Version bump.
05 Jul 2013; Daniel Pielmeier <billie@gentoo.org> -libisofs-1.2.8.ebuild:
Remove old.
04 Jul 2013; Agostino Sarubbo <ago@gentoo.org> libisofs-1.3.0.ebuild:
Stable for x86, wrt bug #472596
29 Jun 2013; Agostino Sarubbo <ago@gentoo.org> libisofs-1.3.0.ebuild:
Stable for sparc, wrt bug #472596
26 Jun 2013; Agostino Sarubbo <ago@gentoo.org> libisofs-1.3.0.ebuild:
Stable for ia64, wrt bug #472596
26 Jun 2013; Agostino Sarubbo <ago@gentoo.org> libisofs-1.3.0.ebuild:
Stable for alpha, wrt bug #472596
25 Jun 2013; Agostino Sarubbo <ago@gentoo.org> libisofs-1.3.0.ebuild:
Stable for ppc64, wrt bug #472596
24 Jun 2013; Agostino Sarubbo <ago@gentoo.org> libisofs-1.3.0.ebuild:
Stable for ppc, wrt bug #472596
20 Jun 2013; Daniel Pielmeier <billie@gentoo.org> libisofs-1.3.0.ebuild:
Remove doc not existing in this version.
20 Jun 2013; Daniel Pielmeier <billie@gentoo.org> libisofs-1.3.0.ebuild:
Add additional docs.
18 Jun 2013; Chema Alonso <nimiux@gentoo.org> libisofs-1.3.0.ebuild:
Stable for amd64 wrt bug #472596
11 Jun 2013; Markus Meier <maekke@gentoo.org> libisofs-1.3.0.ebuild:
arm stable, bug #472596
09 Jun 2013; Jeroen Roovers <jer@gentoo.org> libisofs-1.3.0.ebuild:
Stable for HPPA (bug #472596).
07 Jun 2013; Daniel Pielmeier <billie@gentoo.org> -libisofs-1.2.4.ebuild:
Remove old.
*libisofs-1.3.0 (18 May 2013)
18 May 2013; Daniel Pielmeier <billie@gentoo.org> +libisofs-1.3.0.ebuild:
Version bump.
26 Apr 2013; Agostino Sarubbo <ago@gentoo.org> libisofs-1.2.8.ebuild:
Stable for sparc, wrt bug #461100
22 Apr 2013; Agostino Sarubbo <ago@gentoo.org> libisofs-1.2.8.ebuild:
Stable for ppc, wrt bug #461100
22 Apr 2013; Agostino Sarubbo <ago@gentoo.org> libisofs-1.2.8.ebuild:
Stable for ia64, wrt bug #461100
18 Apr 2013; Jeroen Roovers <jer@gentoo.org> libisofs-1.2.8.ebuild:
Stable for HPPA (bug #461100).
18 Apr 2013; Agostino Sarubbo <ago@gentoo.org> libisofs-1.2.8.ebuild:
Stable for alpha, wrt bug #461100
16 Apr 2013; Agostino Sarubbo <ago@gentoo.org> libisofs-1.2.8.ebuild:
Stable for ppc64, wrt bug #461100
16 Apr 2013; Agostino Sarubbo <ago@gentoo.org> libisofs-1.2.8.ebuild:
Stable for arm, wrt bug #461100
13 Apr 2013; Agostino Sarubbo <ago@gentoo.org> libisofs-1.2.8.ebuild:
Stable for x86, wrt bug #461100
13 Apr 2013; Agostino Sarubbo <ago@gentoo.org> libisofs-1.2.8.ebuild:
Stable for amd64, wrt bug #461100
12 Apr 2013; Daniel Pielmeier <billie@gentoo.org> -libisofs-1.2.6.ebuild:
Remove old.
*libisofs-1.2.8 (20 Mar 2013)
20 Mar 2013; Daniel Pielmeier <billie@gentoo.org> +libisofs-1.2.8.ebuild:
Version bump.
*libisofs-1.2.6 (17 Jan 2013)
17 Jan 2013; Daniel Pielmeier <billie@gentoo.org> +libisofs-1.2.6.ebuild:
Version bump.
06 Jan 2013; Agostino Sarubbo <ago@gentoo.org> libisofs-1.2.4.ebuild:
Add ~sparc, wrt bug #449220
01 Jan 2013; Agostino Sarubbo <ago@gentoo.org> libisofs-1.2.4.ebuild:
Add ~ia64, wrt bug #449220
01 Oct 2012; Daniel Pielmeier <billie@gentoo.org> -libisofs-1.0.0.ebuild:
Remove old.
30 Sep 2012; Raúl Porcel <armin76@gentoo.org> libisofs-1.2.4.ebuild:
alpha stable wrt #433223
13 Sep 2012; Daniel Pielmeier <billie@gentoo.org> -libisofs-1.1.6.ebuild,
-libisofs-1.2.2.ebuild:
Remove old.
09 Sep 2012; Anthony G. Basile <blueness@gentoo.org> libisofs-1.2.4.ebuild:
Stable ppc ppc64, bug #433223
08 Sep 2012; Anthony G. Basile <blueness@gentoo.org> libisofs-1.2.4.ebuild:
Stable arm, bug #433223
07 Sep 2012; Johannes Huber <johu@gentoo.org> libisofs-1.2.4.ebuild:
Stable for x86, wrt bug #433223
07 Sep 2012; Jeroen Roovers <jer@gentoo.org> libisofs-1.2.4.ebuild:
Stable for HPPA (bug #433223).
07 Sep 2012; Agostino Sarubbo <ago@gentoo.org> libisofs-1.2.4.ebuild:
Stable for amd64, wrt bug #433223
22 Aug 2012; Michael Weber <xmw@gentoo.org> libisofs-1.2.2.ebuild:
ppc stable (bug 414159).
*libisofs-1.2.4 (26 Jul 2012)
26 Jul 2012; Daniel Pielmeier <billie@gentoo.org> +libisofs-1.2.4.ebuild:
Version bump.
15 May 2012; Jeroen Roovers <jer@gentoo.org> libisofs-1.2.2.ebuild:
Stable for HPPA (bug #414159).
06 May 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org> libisofs-1.2.2.ebuild:
x86 stable wrt bug #414159
06 May 2012; Daniel Pielmeier <billie@gentoo.org> -libisofs-1.2.0.ebuild:
Remove old.
05 May 2012; Markus Meier <maekke@gentoo.org> libisofs-1.2.2.ebuild:
arm stable, bug #414159
04 May 2012; Jeff Horelick <jdhore@gentoo.org> libisofs-1.0.0.ebuild,
libisofs-1.1.6.ebuild, libisofs-1.2.0.ebuild, libisofs-1.2.2.ebuild:
dev-util/pkgconfig -> virtual/pkgconfig
01 May 2012; Agostino Sarubbo <ago@gentoo.org> libisofs-1.2.2.ebuild:
Stable for amd64, wrt bug #414159
*libisofs-1.2.2 (07 Apr 2012)
07 Apr 2012; Daniel Pielmeier <billie@gentoo.org> +libisofs-1.2.2.ebuild:
Version bump.
13 Mar 2012; Samuli Suominen <ssuominen@gentoo.org> libisofs-1.1.6.ebuild:
ppc/ppc64/x86 stable wrt #400017
08 Feb 2012; Markus Meier <maekke@gentoo.org> libisofs-1.1.6.ebuild:
arm stable, bug #400017
08 Feb 2012; Jeroen Roovers <jer@gentoo.org> libisofs-1.1.6.ebuild:
Stable for HPPA (bug #400017).
*libisofs-1.2.0 (01 Feb 2012)
01 Feb 2012; Daniel Pielmeier <billie@gentoo.org> +libisofs-1.2.0.ebuild:
Version bump.
27 Jan 2012; Agostino Sarubbo <ago@gentoo.org> libisofs-1.1.6.ebuild:
Stable for amd64, wrt bug #400017
25 Jan 2012; Daniel Pielmeier <billie@gentoo.org> -libisofs-1.1.4.ebuild:
Remove old.
*libisofs-1.1.6 (18 Oct 2011)
18 Oct 2011; Daniel Pielmeier <billie@gentoo.org> +libisofs-1.1.6.ebuild:
Version bump.
*libisofs-1.1.4 (08 Aug 2011)
08 Aug 2011; Daniel Pielmeier <billie@gentoo.org> -libisofs-1.1.2.ebuild,
+libisofs-1.1.4.ebuild:
Version bump. Remove old.
*libisofs-1.1.2 (11 Jul 2011)
11 Jul 2011; Daniel Pielmeier <billie@gentoo.org> -libisofs-1.1.0.ebuild,
+libisofs-1.1.2.ebuild:
Version bump. Remove old.
*libisofs-1.1.0 (19 Jun 2011)
19 Jun 2011; Daniel Pielmeier <billie@gentoo.org> -libisofs-1.0.8.ebuild,
+libisofs-1.1.0.ebuild:
Version bump. Remove old.
*libisofs-1.0.8 (18 May 2011)
18 May 2011; Daniel Pielmeier <billie@gentoo.org> -libisofs-1.0.6.ebuild,
+libisofs-1.0.8.ebuild:
Version bump. Remove old.
11 Apr 2011; Daniel Pielmeier <billie@gentoo.org> -libisofs-0.6.28.ebuild,
-libisofs-0.6.34.ebuild, -libisofs-1.0.4.ebuild:
Remove old.
*libisofs-1.0.6 (11 Apr 2011)
11 Apr 2011; Daniel Pielmeier <billie@gentoo.org> +libisofs-1.0.6.ebuild:
Version bump. Switch to EAPI 4. Add static-libs USE flag.
23 Mar 2011; Kacper Kowalik <xarthisius@gentoo.org> libisofs-1.0.0.ebuild:
ppc/ppc64 stable wrt #355097
13 Mar 2011; Markus Meier <maekke@gentoo.org> libisofs-1.0.0.ebuild:
arm stable, bug #355097
*libisofs-1.0.4 (10 Mar 2011)
10 Mar 2011; Daniel Pielmeier <billie@gentoo.org> -libisofs-1.0.2.ebuild,
+libisofs-1.0.4.ebuild:
Version bump. Remove old.
10 Mar 2011; Thomas Kahle <tomka@gentoo.org> libisofs-1.0.0.ebuild:
x86 stable per bug 355097
08 Mar 2011; Tobias Klausmann <klausman@gentoo.org> libisofs-1.0.0.ebuild:
Stable on alpha, bug #355097
*libisofs-1.0.2 (06 Mar 2011)
06 Mar 2011; Daniel Pielmeier <billie@gentoo.org> +libisofs-1.0.2.ebuild:
Version bump.
01 Mar 2011; Jeroen Roovers <jer@gentoo.org> libisofs-1.0.0.ebuild:
Stable for HPPA (bug #355097).
21 Feb 2011; Markos Chandras <hwoarang@gentoo.org> libisofs-1.0.0.ebuild:
Stable on amd64 wrt bug #355097
*libisofs-1.0.0 (18 Jan 2011)
18 Jan 2011; Daniel Pielmeier <billie@gentoo.org> -libisofs-0.6.40.ebuild,
-files/libisofs-0.6.40-cflags.patch, +libisofs-1.0.0.ebuild:
Version bump. Remove old.
*libisofs-0.6.40 (14 Dec 2010)
14 Dec 2010; Daniel Pielmeier <billie@gentoo.org> -libisofs-0.6.38.ebuild,
+libisofs-0.6.40.ebuild, +files/libisofs-0.6.40-cflags.patch, metadata.xml:
Version bump. Remove old.
26 Oct 2010; Jeroen Roovers <jer@gentoo.org> libisofs-0.6.34.ebuild:
Stable for PPC (bug #331093).
26 Oct 2010; Jeroen Roovers <jer@gentoo.org> libisofs-0.6.34.ebuild:
Stable for HPPA (bug #331093).
*libisofs-0.6.38 (23 Oct 2010)
23 Oct 2010; Daniel Pielmeier <billie@gentoo.org> -libisofs-0.6.36.ebuild,
+libisofs-0.6.38.ebuild:
Version bump. Remove old.
03 Oct 2010; Tobias Klausmann <klausman@gentoo.org>
libisofs-0.6.34.ebuild:
Stable on alpha, bug #331093
*libisofs-0.6.36 (27 Sep 2010)
27 Sep 2010; Daniel Pielmeier <billie@gentoo.org> +libisofs-0.6.36.ebuild:
Version bump.
20 Aug 2010; Samuli Suominen <ssuominen@gentoo.org>
libisofs-0.6.34.ebuild:
ppc64 stable wrt #331093
12 Aug 2010; Markus Meier <maekke@gentoo.org> libisofs-0.6.28.ebuild:
arm stable, bug #324165
06 Aug 2010; Christian Faulhammer <fauli@gentoo.org>
libisofs-0.6.34.ebuild:
stable x86, bug 331093
04 Aug 2010; Markos Chandras <hwoarang@gentoo.org> libisofs-0.6.34.ebuild:
Stable on amd64 wrt bug #331093
12 Jul 2010; Daniel Pielmeier <billie@gentoo.org> -libisofs-0.6.24.ebuild:
Remove old.
10 Jul 2010; Jeroen Roovers <jer@gentoo.org> libisofs-0.6.28.ebuild:
Stable for HPPA (bug #309053).
*libisofs-0.6.34 (03 Jul 2010)
03 Jul 2010; Daniel Pielmeier <billie@gentoo.org> -libisofs-0.6.30.ebuild,
-libisofs-0.6.32.ebuild, +libisofs-0.6.34.ebuild:
Version bump. Remove old.
07 Jun 2010; Christoph Mende <angelos@gentoo.org> libisofs-0.6.28.ebuild:
amd64 stable (bug #309053)
30 May 2010; Raúl Porcel <armin76@gentoo.org> libisofs-0.6.28.ebuild:
alpha stable wrt #309053
22 May 2010; Raúl Porcel <armin76@gentoo.org> libisofs-0.6.24.ebuild,
libisofs-0.6.28.ebuild, libisofs-0.6.30.ebuild, libisofs-0.6.32.ebuild:
Add ~arm
*libisofs-0.6.32 (04 May 2010)
04 May 2010; Daniel Pielmeier <billie@gentoo.org> +libisofs-0.6.32.ebuild:
Version bump.
*libisofs-0.6.30 (19 Apr 2010)
19 Apr 2010; Daniel Pielmeier <billie@gentoo.org>
-libisofs-0.6.20-r1.ebuild, -libisofs-0.6.26.ebuild,
+libisofs-0.6.30.ebuild:
Version bump. Remove old.
30 Mar 2010; Pawel Hajdan jr <phajdan.jr@gentoo.org>
libisofs-0.6.28.ebuild:
x86 stable wrt bug #309053
23 Mar 2010; Brent Baude <ranger@gentoo.org> libisofs-0.6.28.ebuild:
Marking libisofs-0.6.28 ppc64 stable for bug 309053
15 Mar 2010; nixnut <nixnut@gentoo.org> libisofs-0.6.28.ebuild:
ppc stable #309053
*libisofs-0.6.28 (10 Feb 2010)
10 Feb 2010; Daniel Pielmeier <billie@gentoo.org>
-libisofs-0.6.24-r1.ebuild, +libisofs-0.6.28.ebuild:
Version bump. Remove old.
21 Jan 2010; Daniel Pielmeier <billie@gentoo.org> metadata.xml:
Add myself to maintainers.
*libisofs-0.6.26 (20 Jan 2010)
20 Jan 2010; Daniel Pielmeier <billie@gentoo.org> -libisofs-0.6.12.ebuild,
-libisofs-0.6.22.ebuild, +libisofs-0.6.26.ebuild:
Version bump. Remove old.
14 Jan 2010; Jeroen Roovers <jer@gentoo.org> libisofs-0.6.24.ebuild:
Stable for HPPA (bug #287526).
09 Dec 2009; nixnut <nixnut@gentoo.org> libisofs-0.6.24.ebuild:
ppc stable #287526
*libisofs-0.6.24-r1 (09 Dec 2009)
09 Dec 2009; Daniel Pielmeier <billie@gentoo.org>
+libisofs-0.6.24-r1.ebuild:
Revision bump. Add additional docs. Remove tests, this will be re-added
for all libburnia tools if it works again.
30 Nov 2009; Brent Baude <ranger@gentoo.org> libisofs-0.6.20-r1.ebuild:
Marking libisofs-0.6.20-r1 ppc64 for bug 282658
26 Nov 2009; Markus Meier <maekke@gentoo.org> libisofs-0.6.24.ebuild:
amd64 stable, bug #287526
24 Nov 2009; Christian Faulhammer <fauli@gentoo.org>
libisofs-0.6.24.ebuild:
stable x86, bug 287526
24 Nov 2009; Tobias Klausmann <klausman@gentoo.org>
libisofs-0.6.24.ebuild:
Stable on alpha, bug #287526
12 Oct 2009; Jeroen Roovers <jer@gentoo.org> libisofs-0.6.20-r1.ebuild:
Stable for HPPA (bug #282658).
*libisofs-0.6.24 (08 Oct 2009)
08 Oct 2009; Pielmeier Daniel <billie@gentoo.org> +libisofs-0.6.24.ebuild:
Version bump.
28 Sep 2009; Olivier Crête <tester@gentoo.org> libisofs-0.6.20-r1.ebuild:
amd64 stable, bug #282658
27 Sep 2009; nixnut <nixnut@gentoo.org> libisofs-0.6.20-r1.ebuild:
ppc stable #282658
12 Sep 2009; Christian Faulhammer <fauli@gentoo.org>
libisofs-0.6.20-r1.ebuild:
stable x86, bug 282658
*libisofs-0.6.22 (02 Sep 2009)
02 Sep 2009; Pielmeier Daniel <billie@gentoo.org> +libisofs-0.6.22.ebuild:
Version bump.
30 Aug 2009; Tobias Klausmann <klausman@gentoo.org>
libisofs-0.6.20-r1.ebuild:
Stable on alpha, bug #282658
09 Jul 2009; Samuli Suominen <ssuominen@gentoo.org>
libisofs-0.6.20-r1.ebuild:
Remove extra acl and xattr deps wrt #276574, thanks to Darren Smith for
reporting.
*libisofs-0.6.20-r1 (04 Jul 2009)
04 Jul 2009; Pielmeier Daniel <billie@gentoo.org> -libisofs-0.6.8.ebuild,
-libisofs-0.6.14.ebuild, -libisofs-0.6.16.ebuild,
-libisofs-0.6.16-r1.ebuild, -libisofs-0.6.18.ebuild,
+libisofs-0.6.20-r1.ebuild:
Revision bump. Add some overdue use flags. Remove old.
22 Jun 2009; Jeroen Roovers <jer@gentoo.org> libisofs-0.6.18.ebuild,
libisofs-0.6.20.ebuild:
Marked ~hppa (bug #268363).
*libisofs-0.6.20 (18 Jun 2009)
18 Jun 2009; Pielmeier Daniel <billie@gentoo.org> +libisofs-0.6.20.ebuild:
Version bump.
07 May 2009; Tobias Klausmann <klausman@gentoo.org>
libisofs-0.6.18.ebuild:
Keyworded on alpha, bug #268294
*libisofs-0.6.18 (27 Apr 2009)
27 Apr 2009; Peter Alfredsen <loki_val@gentoo.org>
+libisofs-0.6.18.ebuild:
Good to bump w/out working tests per
http://libburnia-project.org/ticket/147#comment:4. Thanks to Daniel
Pielmeier for judicious use of the cattle-prod.
*libisofs-0.6.16-r1 (27 Apr 2009)
27 Apr 2009; Peter Alfredsen <loki_val@gentoo.org>
+libisofs-0.6.16-r1.ebuild:
Re-enable tests. This bump was supposed to have been for 0.6.18, but that
version fails tests, see http://libburnia-project.org/ticket/147
19 Mar 2009; Brent Baude <ranger@gentoo.org> libisofs-0.6.12.ebuild:
Marking libisofs-0.6.12 ppc for bug 254947
*libisofs-0.6.16 (16 Mar 2009)
16 Mar 2009; Peter Alfredsen <loki_val@gentoo.org>
+libisofs-0.6.16.ebuild:
Bump
16 Mar 2009; Peter Alfredsen <loki_val@gentoo.org> libisofs-0.6.14.ebuild:
Drop dep on libburn, no longer needed.
*libisofs-0.6.14 (01 Mar 2009)
01 Mar 2009; Peter Alfredsen <loki_val@gentoo.org>
+libisofs-0.6.14.ebuild:
Bump. Thanks to Daniel Pielmeier (billie)
<daniel.pielmeier@googlemail.com> for judicious use of prodding to unslack
me.
26 Jan 2009; Brent Baude <ranger@gentoo.org> libisofs-0.6.12.ebuild:
Marking libisofs-0.6.12 ppc64 for bug 254947
23 Jan 2009; Markus Meier <maekke@gentoo.org> libisofs-0.6.12.ebuild:
amd64/x86 stable, bug #254947
*libisofs-0.6.12 (26 Nov 2008)
26 Nov 2008; Steve Dibb <beandog@gentoo.org> +libisofs-0.6.12.ebuild:
Version bump
24 Nov 2008; Peter Alfredsen <loki_val@gentoo.org>
libisofs-0.6.10_p01.ebuild:
Prettyfi SRC_URI
*libisofs-0.6.10_p01 (24 Nov 2008)
24 Nov 2008; Peter Alfredsen <loki_val@gentoo.org>
+libisofs-0.6.10_p01.ebuild:
Bump, bug 248065. Thanks to billie (Daniel Pielmeier).
24 Nov 2008; Brent Baude <ranger@gentoo.org> libisofs-0.6.8.ebuild:
Marking libisofs-0.6.8 ppc64 for bug 245272
08 Nov 2008; nixnut <nixnut@gentoo.org> libisofs-0.6.8.ebuild:
Stable on ppc wrt bug 245272
05 Nov 2008; Markus Meier <maekke@gentoo.org> libisofs-0.6.8.ebuild:
amd64/x86 stable, bug #245272
*libisofs-0.6.10 (19 Oct 2008)
19 Oct 2008; Peter Alfredsen <loki_val@gentoo.org>
+libisofs-0.6.10.ebuild:
Bump, bug 241524, thanks to Daniel Pielmeier
<daniel.pielmeier@googlemail.com>.
*libisofs-0.6.8 (28 Sep 2008)
28 Sep 2008; Peter Alfredsen <loki_val@gentoo.org> +libisofs-0.6.8.ebuild:
Bump
02 Jul 2008; Brent Baude <ranger@gentoo.org> libisofs-0.6.2.1.ebuild:
Marking libisofs-0.6.2.1 ppc for bug 208920
21 Jun 2008; Markus Rothe <corsair@gentoo.org> libisofs-0.6.2.1.ebuild:
Stable on ppc64; bug #298920
12 Jun 2008; Samuli Suominen <drac@gentoo.org> libisofs-0.6.2.1.ebuild:
stable amd64, bug 208920
12 Jun 2008; Christian Faulhammer <opfer@gentoo.org>
libisofs-0.6.2.1.ebuild:
stable x86, bug 208920
*libisofs-0.6.6 (04 Jun 2008)
04 Jun 2008; Samuli Suominen <drac@gentoo.org> +libisofs-0.6.6.ebuild:
Version bump.
13 Apr 2008; Samuli Suominen <drac@gentoo.org> -libisofs-0.2.3.ebuild,
libisofs-0.2.4.ebuild, -libisofs-0.2.8.ebuild:
Move pkgconfig from RDEPEND to DEPEND only, and remove unused versions.
*libisofs-0.6.2.1 (25 Feb 2008)
25 Feb 2008; Steve Dibb <beandog@gentoo.org> +libisofs-0.6.2.1.ebuild:
Version bump
10 Oct 2007; Markus Rothe <corsair@gentoo.org> libisofs-0.2.8.ebuild:
Added ~ppc64; bug #189993
*libisofs-0.2.8 (24 Aug 2007)
24 Aug 2007; <metalgod@gentoo.org> +libisofs-0.2.8.ebuild:
Version Bump. Closes Bug #188351.
30 Jul 2007; Tobias Scherbaum <dertobi123@gentoo.org>
libisofs-0.2.4.ebuild:
ppc stable, bug #185630
25 Jul 2007; Christian Faulhammer <opfer@gentoo.org>
libisofs-0.2.4.ebuild:
stable x86, bug 185630
19 Jul 2007; Christoph Mende <angelos@gentoo.org> libisofs-0.2.4.ebuild:
Stable on amd64 wrt bug #185630
08 Apr 2007; Joseph Jezak <josejx@gentoo.org> libisofs-0.2.4.ebuild:
Marked ~ppc for bug #168560.
*libisofs-0.2.4 (15 Jan 2007)
15 Jan 2007; Luis Medinas <metalgod@gentoo.org> libisofs-0.2.3.ebuild,
+libisofs-0.2.4.ebuild:
Version Bump. Update Homepage and Download Source.
*libisofs-0.2.3 (13 Dec 2006)
13 Dec 2006; Steve Dibb <beandog@gentoo.org> +metadata.xml,
+libisofs-0.2.3.ebuild:
Initial import

View File

@ -1,16 +0,0 @@
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256
DIST libisofs-1.3.4.tar.gz 770418 SHA256 fd1b23cc855b2c62384106dffa5ae9e779ed9bce1702b9687b2b64bb623c19f4 SHA512 44df0017e29ebc31a0c84eedf107ead2bb287a51a7986a0ccee4bbbbc8ac87d8609905d3a3fe2a5956392cb4dc527ab931900d422434530ed67c8b467d5f30be WHIRLPOOL 58982f89e9d3cc6c16a3e8aba17aa408e3b02cff7c6eda6a399620383f152b4b6969ccc93100facfbdfb11119bbb82d1838882e8457c02df6463e5142eab9015
DIST libisofs-1.3.8.tar.gz 802154 SHA256 acd7bf42d5d1d5c277f4aad46e5b96229045a38a0fb7d43cfd7841ee3268fda5 SHA512 7e078a4070741d975234ac10ed6cd2a0366724e9fa440e7063c64f91a60c9454c6828e2b7737d6105f36067008495bfcba8327e56892ccb0962027dc78e251ce WHIRLPOOL 660f2cba77e8b83306fe4d40e34f0e94ecc18a8defd0375cadc84c0d964d6c868b2965329e51e3b5139c88e7cb20ee78f817004cb141e8be5528aa00a25d5647
EBUILD libisofs-1.3.4.ebuild 1080 SHA256 f29eb5d7408acf30f37c23fca8a69611e671ffa6e4ae3eadba68bd890dec6b4f SHA512 2244a3fb0bbe9f0b67de43a3e9f1d9366b992bf982191682d0fc8f4ad7edaad7d7ba9be1e6941493a15463e129c729145e71060a7c118ae06845f275b8d50dfd WHIRLPOOL b73a0a0a7e6ac66665e4d15769cd731b8631b722642c2611eeef79b07b7835867b32fc7b06b09574dee5ae10b621394a57a9342d29e1d37d40734b7d789b8430
EBUILD libisofs-1.3.8.ebuild 1056 SHA256 bae4c26a683807b9f562c6649b2f53c8d60fe64177b88c8878e36baa827fa937 SHA512 10acaec88d1f0419babc853a7abea58907c04423c157b4ea92deffd736dc46e0de2e0d5047ab0a413540e300689254c79017c31d6bc87c1b82d769e02f200933 WHIRLPOOL 95b9f3596f7b1601cbc9ac3fae2044708401b789b13bbb4a64cac2c3f0562ee6022e965188edad1e6353d905be83a145bdc87b2806287eb39388b15ecadf8b1a
MISC ChangeLog 20619 SHA256 fb6d931a1c2a5ade061c902f6196052e663a1c1a4c8ce045f1db914d3b326f43 SHA512 c982362552937b75108b17fae6dd1e28d28b23036f20a28d85c3e208372ffcba0fc7ba45473254238c5db2a288ad6cf72b121a8f5917d06551cac91b452975be WHIRLPOOL 237f0f27323cbb7899c2a8a08ad5fecde28577f09b07b8981543c5e1212085c62caeb8458a4e4debdb91f6477bc5f9278b986c6d4cad3fc0e36e159f976be128
MISC metadata.xml 333 SHA256 e4dc4e40be3d5cfb10be7e8f17e58a63b64ebc81749c2d29a41e3ba067a30a48 SHA512 159a70f888b820ef65230d6a354caa3d4aa08cf5af3abb6b8c0c539bbe687e840c749b1c39ef24750373760789701b6e6eaba8eb5d141d4a470a135af846ae6a WHIRLPOOL 0d340264f20c936e354d5a3a89158dfb9fffe3fc159f3fca8c4f8c66d0b2e3d1c3279009ddb5166e0878aecd5ae08f06a04894941f1eee880c8ebf5a4c161866
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v2
iEYEAREIAAYFAlQU0xIACgkQlcuUeyFa0U0dxACfRVFB1DzMcpxpWYnDbylvTTIE
tm0An2nDzxBLtCQydIsuz102X4suF7e9
=d+/L
-----END PGP SIGNATURE-----

View File

@ -1,40 +0,0 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libisofs/libisofs-1.3.4.ebuild,v 1.11 2014/08/10 20:35:55 slyfox Exp $
EAPI=5
DESCRIPTION="libisofs is an open-source library for reading, mastering and writing optical discs"
HOMEPAGE="http://libburnia-project.org/"
SRC_URI="http://files.libburnia-project.org/releases/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sparc x86"
IUSE="acl debug static-libs verbose-debug xattr zlib"
RDEPEND="acl? ( virtual/acl )
xattr? ( sys-apps/attr )
zlib? ( sys-libs/zlib )"
DEPEND="${RDEPEND}
virtual/pkgconfig"
src_configure() {
econf \
$(use_enable static-libs static) \
$(use_enable debug) \
$(use_enable verbose-debug) \
$(use_enable acl libacl) \
$(use_enable xattr) \
$(use_enable zlib) \
--disable-libjte \
--disable-ldconfig-at-install
}
src_install() {
default
dodoc Roadmap doc/{*.txt,Tutorial}
find "${D}" -name '*.la' -exec rm -rf '{}' '+' || die "la removal failed"
}

View File

@ -1,42 +0,0 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libisofs/libisofs-1.3.8.ebuild,v 1.2 2014/08/10 20:35:55 slyfox Exp $
EAPI=5
inherit eutils
DESCRIPTION="libisofs is an open-source library for reading, mastering and writing optical discs"
HOMEPAGE="http://libburnia-project.org/"
SRC_URI="http://files.libburnia-project.org/releases/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
IUSE="acl debug static-libs verbose-debug xattr zlib"
RDEPEND="acl? ( virtual/acl )
xattr? ( sys-apps/attr )
zlib? ( sys-libs/zlib )"
DEPEND="${RDEPEND}
virtual/pkgconfig"
src_configure() {
econf \
$(use_enable static-libs static) \
$(use_enable debug) \
$(use_enable verbose-debug) \
$(use_enable acl libacl) \
$(use_enable xattr) \
$(use_enable zlib) \
--disable-libjte \
--disable-ldconfig-at-install
}
src_install() {
default
dodoc Roadmap doc/{*.txt,Tutorial}
prune_libtool_files --all
}

View File

@ -1,12 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<herd>media-optical</herd>
<maintainer>
<email>billie@gentoo.org</email>
<name>Daniel Pielmeier</name>
</maintainer>
<use>
<flag name='verbose-debug'>Enable verbose debug messages</flag>
</use>
</pkgmetadata>

View File

@ -1 +0,0 @@
DIST libotf-0.9.8.tar.gz 389377 RMD160 d378376d6f22df3724536bb1405e79d2d14f25bb SHA1 3c9304d77073b60f362fb301bb981ab6a55f663e SHA256 a3a3396b3d368750249ffb060cddcfd6b919c79efcf01c2086913e137230fdb0

View File

@ -1,40 +0,0 @@
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libotf/libotf-0.9.8.ebuild,v 1.11 2009/07/22 15:17:22 armin76 Exp $
WANT_AUTOMAKE=latest
WANT_AUTOCONF=latest
inherit autotools
DESCRIPTION="Library for handling OpenType fonts (OTF)"
HOMEPAGE="http://www.m17n.org/libotf/"
SRC_URI="http://www.m17n.org/libotf/${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sh sparc x86"
IUSE="X"
RDEPEND=">=media-libs/freetype-2.1
X? (
x11-libs/libXaw
x11-libs/libICE
)"
DEPEND="${RDEPEND}
>=sys-apps/sed-4
dev-util/pkgconfig"
src_unpack() {
unpack ${A}
cd "${S}"
use X || sed -i -e '/^bin_PROGRAMS/s/otfview//' example/Makefile.am || die
use X || eautoreconf
}
src_install() {
emake DESTDIR="${D}" install || die
dodoc AUTHORS NEWS README ChangeLog
}

View File

@ -1,209 +0,0 @@
# ChangeLog for dev-libs/libusb-compat
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libusb-compat/ChangeLog,v 1.54 2014/06/18 19:15:33 mgorny Exp $
18 Jun 2014; Michał Górny <mgorny@gentoo.org> libusb-compat-0.1.5-r2.ebuild,
libusb-compat-0.1.5-r3.ebuild:
Update dependencies to require guaranteed EAPI=5 or multilib ebuilds, bug
#513718.
09 Jun 2014; Mike Frysinger <vapier@gentoo.org> libusb-compat-0.1.5-r2.ebuild:
Mark arm64/m68k/s390/sh stable.
09 Jun 2014; Mike Frysinger <vapier@gentoo.org> libusb-compat-0.1.5-r3.ebuild:
Add arm64 love.
*libusb-compat-0.1.5-r3 (21 May 2014)
21 May 2014; Michał Górny <mgorny@gentoo.org> +libusb-compat-0.1.5-r3.ebuild:
Add libusb-config to MULTILIB_CHOST_TOOLS.
04 Mar 2014; Samuli Suominen <ssuominen@gentoo.org>
-libusb-compat-0.1.4.ebuild, -libusb-compat-0.1.5-r1.ebuild,
-libusb-compat-0.1.5.ebuild:
old
15 Jan 2014; Agostino Sarubbo <ago@gentoo.org> libusb-compat-0.1.5-r2.ebuild:
Stable for x86, wrt bug #488708
15 Jan 2014; Agostino Sarubbo <ago@gentoo.org> libusb-compat-0.1.5-r2.ebuild:
Stable for sparc, wrt bug #488708
15 Jan 2014; Agostino Sarubbo <ago@gentoo.org> libusb-compat-0.1.5-r2.ebuild:
Stable for ppc, wrt bug #488708
15 Jan 2014; Agostino Sarubbo <ago@gentoo.org> libusb-compat-0.1.5-r2.ebuild:
Stable for ia64, wrt bug #488708
03 Jan 2014; Chema Alonso <nimiux@gentoo.org> libusb-compat-0.1.5-r2.ebuild:
Stable for amd64 wrt bug #488708
22 Dec 2013; Agostino Sarubbo <ago@gentoo.org> libusb-compat-0.1.5-r2.ebuild:
Stable for ppc64, wrt bug #488708
27 Nov 2013; Markus Meier <maekke@gentoo.org> libusb-compat-0.1.5-r2.ebuild:
arm stable, bug #488708
13 Nov 2013; Matt Turner <mattst88@gentoo.org> libusb-compat-0.1.5-r2.ebuild:
alpha stable, bug 488708.
24 Oct 2013; Jeroen Roovers <jer@gentoo.org> libusb-compat-0.1.5-r2.ebuild:
Stable for HPPA (bug #488708).
13 Oct 2013; Michał Górny <mgorny@gentoo.org> libusb-compat-0.1.5-r2.ebuild:
Explicitly call einstalldocs in multilib_src_install_all() to accomodate bug
#483304.
08 Aug 2013; Samuli Suominen <ssuominen@gentoo.org>
libusb-compat-0.1.5-r2.ebuild:
Block revision of emul-linux-x86-baselibs that dropped the colliding files.
07 Aug 2013; Samuli Suominen <ssuominen@gentoo.org>
libusb-compat-0.1.5-r2.ebuild:
Insert missing MULTILIB_USEDEP to the virtual/libusb:1 dependency.
*libusb-compat-0.1.5-r2 (07 Aug 2013)
07 Aug 2013; Samuli Suominen <ssuominen@gentoo.org>
+libusb-compat-0.1.5-r2.ebuild:
Conversion to multilib-minimal.eclass.
*libusb-compat-0.1.5-r1 (01 Aug 2013)
01 Aug 2013; Samuli Suominen <ssuominen@gentoo.org>
+libusb-compat-0.1.5-r1.ebuild:
Move the shared library to / for hid2hci binary from net-wireless/bluez wrt
#478878 by Alexis Ballier
02 Jul 2013; Agostino Sarubbo <ago@gentoo.org> libusb-compat-0.1.5.ebuild:
Stable for sh, wrt bug #474168
30 Jun 2013; Agostino Sarubbo <ago@gentoo.org> libusb-compat-0.1.5.ebuild:
Stable for s390, wrt bug #474168
29 Jun 2013; Agostino Sarubbo <ago@gentoo.org> libusb-compat-0.1.5.ebuild:
Stable for sparc, wrt bug #474168
26 Jun 2013; Agostino Sarubbo <ago@gentoo.org> libusb-compat-0.1.5.ebuild:
Stable for arm, wrt bug #474168
26 Jun 2013; Agostino Sarubbo <ago@gentoo.org> libusb-compat-0.1.5.ebuild:
Stable for ia64, wrt bug #474168
26 Jun 2013; Agostino Sarubbo <ago@gentoo.org> libusb-compat-0.1.5.ebuild:
Stable for alpha, wrt bug #474168
25 Jun 2013; Agostino Sarubbo <ago@gentoo.org> libusb-compat-0.1.5.ebuild:
Stable for amd64, wrt bug #474168
25 Jun 2013; Agostino Sarubbo <ago@gentoo.org> libusb-compat-0.1.5.ebuild:
Stable for x86, wrt bug #474168
25 Jun 2013; Agostino Sarubbo <ago@gentoo.org> libusb-compat-0.1.5.ebuild:
Stable for ppc64, wrt bug #474168
24 Jun 2013; Agostino Sarubbo <ago@gentoo.org> libusb-compat-0.1.5.ebuild:
Stable for ppc, wrt bug #474168
23 Jun 2013; Jeroen Roovers <jer@gentoo.org> libusb-compat-0.1.5.ebuild:
Stable for HPPA (bug #474168).
05 Jun 2013; Samuli Suominen <ssuominen@gentoo.org> metadata.xml:
Peter Stuge from libusb upstream is sharing ebuild maintenance by his own
request.
*libusb-compat-0.1.5 (21 May 2013)
21 May 2013; Samuli Suominen <ssuominen@gentoo.org>
+libusb-compat-0.1.5.ebuild:
Version bump.
27 Apr 2013; Fabian Groffen <grobian@gentoo.org> libusb-compat-0.1.4.ebuild:
Marked ~{ppc,x64}-macos, ~amd64-linux
18 Nov 2012; Robin H. Johnson <robbat2@gentoo.org> metadata.xml:
Drop duplication of myself as a maintainer where there is a herd.
25 Sep 2012; Samuli Suominen <ssuominen@gentoo.org>
libusb-compat-0.1.4.ebuild, -files/libusb-0.1-libusbx.patch:
Remove now unnecessary patch that was used only for <dev-libs/libusbx-1.0.13.
21 Jul 2012; Samuli Suominen <ssuominen@gentoo.org>
libusb-compat-0.1.4.ebuild, files/libusb-0.1-libusbx.patch:
Only apply -libusbx.patch for dev-libs/libusbx < 1.0.13 because upstream has
different solution in git.
01 Jul 2012; Samuli Suominen <ssuominen@gentoo.org>
libusb-compat-0.1.4.ebuild:
Use prune_libtool_files() from eutils.eclass
01 Jul 2012; Samuli Suominen <ssuominen@gentoo.org>
libusb-compat-0.1.4.ebuild, +files/libusb-0.1-libusbx.patch:
Don't redefine usbi_log_level because libusbx is now defining it wrt #423135
by Jeroen Dekien
17 Jun 2012; Raúl Porcel <armin76@gentoo.org> libusb-compat-0.1.4.ebuild:
alpha/ia64/m68k/s390/sh/sparc stable wrt #417135
28 May 2012; Markus Meier <maekke@gentoo.org> libusb-compat-0.1.4.ebuild:
arm stable, bug #417135
24 May 2012; Jeroen Roovers <jer@gentoo.org> libusb-compat-0.1.4.ebuild:
Stable for HPPA (bug #417135).
24 May 2012; Samuli Suominen <ssuominen@gentoo.org>
libusb-compat-0.1.4.ebuild:
ppc/ppc64 stable wrt #417135
22 May 2012; Jeff Horelick <jdhore@gentoo.org> libusb-compat-0.1.4.ebuild:
marked x86 per bug 417135
22 May 2012; Agostino Sarubbo <ago@gentoo.org> libusb-compat-0.1.4.ebuild:
Stable for amd64, wrt bug #417135
22 May 2012; Samuli Suominen <ssuominen@gentoo.org>
-libusb-compat-0.1.0.ebuild, -libusb-compat-0.1.3.ebuild:
old
22 May 2012; Samuli Suominen <ssuominen@gentoo.org>
libusb-compat-0.1.0.ebuild, libusb-compat-0.1.3.ebuild,
libusb-compat-0.1.4.ebuild:
Use virtual/libusb instead of dev-libs/libusb.
*libusb-compat-0.1.4 (07 May 2012)
07 May 2012; Samuli Suominen <ssuominen@gentoo.org>
+libusb-compat-0.1.4.ebuild:
Version bump.
04 May 2012; Jeff Horelick <jdhore@gentoo.org> libusb-compat-0.1.0.ebuild,
libusb-compat-0.1.3.ebuild:
dev-util/pkgconfig -> virtual/pkgconfig
28 Sep 2011; Samuli Suominen <ssuominen@gentoo.org>
libusb-compat-0.1.3.ebuild:
USE="static-libs" and remove useless libtool file.
20 Jan 2010; Jonathan Callen <abcd@gentoo.org> libusb-compat-0.1.3.ebuild:
Keyword ~x86-linux
*libusb-compat-0.1.3 (11 Nov 2009)
11 Nov 2009; Robin H. Johnson <robbat2@gentoo.org>
+libusb-compat-0.1.3.ebuild, +files/libusb-0.1-ansi.patch:
Version bump and include ANSI compat patch from Debian per bug #273752.
15 May 2009; Robin H. Johnson <robbat2@gentoo.org>
libusb-compat-0.1.0.ebuild:
Block libusb-0 from being installed concurrently with libusb-compat.
14 May 2009; Robin H. Johnson <robbat2@gentoo.org>
libusb-compat-0.1.0.ebuild:
Use slot dependancy rather than version.
*libusb-compat-0.1.0 (14 May 2009)
14 May 2009; Robin H. Johnson <robbat2@gentoo.org>
+libusb-compat-0.1.0.ebuild, +metadata.xml:
Bug #247687: libusb-compat support to enable old libusb-using apps with
the new libusb-1 series. Ebuild by Tiziano Müller <dev-zero@gentoo.org>.

View File

@ -1,28 +0,0 @@
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256
AUX libusb-0.1-ansi.patch 4461 SHA256 c54c0d3866ac9842d6a04618267d97186268305966441a3e104af507db0f9a51 SHA512 0256487ce4916e74154b18c9f57d88dc31344d0d047e70e7a0231c066747779e1455a422483f4d4ba182b57bd2be5038c9f091a8e0cef326128fee51efc04eb1 WHIRLPOOL 8d7c79eed6c460c30c2677fc83186f7e3e80e805a2cb8c81c2e7bd8b1c752154243457fc82dc3bd35360b2ab10cabe4a1b1f816a6957e5139469e312e2c6a6c4
DIST libusb-compat-0.1.5.tar.bz2 276769 SHA256 404ef4b6b324be79ac1bfb3d839eac860fbc929e6acb1ef88793a6ea328bc55a SHA512 fe63bd1c65e67588a83ebfdd329025ecf75f33f877fb80dd83eb528df057efb591e010416027f9054294504562299166e8e2811a7681fa1967a03baae9b88857 WHIRLPOOL 2f84934c28980bee9e8ca69d284303cdbaf4cb72cee02108825bd7366bfff7f6365db5ffee8de024eb85dee571eccc47acea6a25d6835f0fefb0ad8a77d05045
EBUILD libusb-compat-0.1.5-r2.ebuild 1425 SHA256 1c98a0436aaef2288f541e7cb89d169413bdf1164d0d1a5f928a9c5c1cacbfc0 SHA512 7b803f319d41161166b000538e8400fb8e213bad5fa66ef6e38fbf901b0f99fbef6082df4fc6c7b578b5c77bb5fab5c71b6a7dc50228b58768b82a4a3fdb2b1f WHIRLPOOL 5fa5c740207ccfc650e23670ce71eecbe61c926ac3aaec2e2105eac0cf0337ff9e2505608323a8ba4bc8b55a7dc373cb6ae8161b5569fefe9742651db3332be6
EBUILD libusb-compat-0.1.5-r3.ebuild 1487 SHA256 b9e37e1ad9057b8eb3e7018ca20189b3c9cb4fbccbe8a8a082037f3ad4f4cae1 SHA512 f992525d13557752749300d9647fe6d4f0686a4b58c90fec36b49024f1beba2cb56abc627c48b37da7c1bb473c35cd4a6dbd759b80222f32df5aa9b46cf186b1 WHIRLPOOL 42a8d30086597c174d9d043d44c59558adb3bfc1c4c64ba569d6e86e437f984eb35de20c46245b14328721aaddec9b4fb2c99518154813ac304ad02eb2376d8e
MISC ChangeLog 7744 SHA256 40fa702d046d09787890246b2d0c94c56fc7984cc0f8c6253498747419224f6e SHA512 700f89fdcdc21097c33040aeaa38fb4a7dc6e41035862da18093348e45a7e9ea302fc2298e7dcdef08b75a36ef69c3262f00c6e98b97bed971918dc661c9e307 WHIRLPOOL 2cb6bcb94a05ab7a37f76f599ed947db4bc9d7d632d8fee64773b7999d65afbe437f629bbf76c349106d924d2d9f615a95ba709a54bac8df8a0812228794750b
MISC metadata.xml 285 SHA256 8f3e4e1f792ef6a6f383ae0aac1627db7f536ff880da423bca1113cea6d06773 SHA512 10fc61b3654c9aee6e9ba9702cf6630928921d2670248b9e1356d417b205dabc959e3672eda071f5fa734b3a001992cecd514a920b6e37376db943266683e75d WHIRLPOOL e26de64dba56ea85587b9e7348a1be056f78a2e2f9f91ffb5faef242b7ced82496b40fe672b18c33491f40a124161ca47af0e80219ebe39a8b24e86557c36db1
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v2
iQJ8BAEBCABmBQJToeVYXxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w
ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQ2REJCMDdDQzRGMERBRDA2RUEwQUZFNDFC
MDdBMUFFQUVGQjQ0NjRFAAoJELB6GurvtEZOMlkQAK8kHy+3CDMHdRE51etvv7aj
fSKo5aIx1DB1jm/2avm6xT+d7uR9D13AdvGVWcMBEW4c7w8jWOugZs9uCc/QTour
8y7uWcIH2u3OnSH8913G0S5uJ+4VoUC0yDCznqbpEjRR1ly02CNc0gTX3QWVVpUc
h0zwgFX2JT754voLGj2fleHEV5X2uThX6sl3QLUj6jeh8afbhwet6tYfLJIVqLW7
A8qeoPf8Ddg6SmPhCuWtoE5ctrxfupwkTSX9dgwpeze/vItH8blCKADTd0k7Wii7
QU8Yjnxi9dEbzskbpeeCJJBKZwsm2JeQIIieeo8n3d3gVPy4M4Hvvl3XPw1/Yf8Z
VnA6U1JPEs/LO7J8yZ6mHA2PzGsFQRxRHS97r1YqOOkL86qmUGC4ezY0np25sQo4
Gah8Ov/WZIu1Q1vPgN3VfHCbsHYBTyQRjLz+bFN5XD6lobbmqGkmVHyODskClqqP
gVyystvOwxaynZUPf1zbqKLJkmpWmp9mWqnScVoOC0ZO7IhTlrYpSxM9qSYH9aA+
9AKc2KfCzrIgOGlegT9JL9EO2G4qNFGBK0FVNOpJ5y19T0P61Mb+ade351fay+kH
WHYnkfJqd6Q79r8uozIvSNOnXiBk6y5PjUru4ksHKM/T83iK6hRe/VnoxyCKZDmj
EE5FX9xuQAHl+IAPkYbW
=yN0J
-----END PGP SIGNATURE-----

View File

@ -1,190 +0,0 @@
diff --git a/libusb/usb.h b/libusb/usb.h
index b7af749..c9726ed 100644
--- a/libusb/usb.h
+++ b/libusb/usb.h
@@ -27,8 +27,10 @@
#include <unistd.h>
#include <stdlib.h>
+#include <stdint.h>
#include <limits.h>
+#include <sys/param.h>
#include <dirent.h>
/*
@@ -78,40 +80,40 @@
/* All standard descriptors have these 2 fields in common */
struct usb_descriptor_header {
- u_int8_t bLength;
- u_int8_t bDescriptorType;
+ uint8_t bLength;
+ uint8_t bDescriptorType;
};
/* String descriptor */
struct usb_string_descriptor {
- u_int8_t bLength;
- u_int8_t bDescriptorType;
- u_int16_t wData[1];
+ uint8_t bLength;
+ uint8_t bDescriptorType;
+ uint16_t wData[1];
};
/* HID descriptor */
struct usb_hid_descriptor {
- u_int8_t bLength;
- u_int8_t bDescriptorType;
- u_int16_t bcdHID;
- u_int8_t bCountryCode;
- u_int8_t bNumDescriptors;
- /* u_int8_t bReportDescriptorType; */
- /* u_int16_t wDescriptorLength; */
+ uint8_t bLength;
+ uint8_t bDescriptorType;
+ uint16_t bcdHID;
+ uint8_t bCountryCode;
+ uint8_t bNumDescriptors;
+ /* uint8_t bReportDescriptorType; */
+ /* uint16_t wDescriptorLength; */
/* ... */
};
/* Endpoint descriptor */
#define USB_MAXENDPOINTS 32
struct usb_endpoint_descriptor {
- u_int8_t bLength;
- u_int8_t bDescriptorType;
- u_int8_t bEndpointAddress;
- u_int8_t bmAttributes;
- u_int16_t wMaxPacketSize;
- u_int8_t bInterval;
- u_int8_t bRefresh;
- u_int8_t bSynchAddress;
+ uint8_t bLength;
+ uint8_t bDescriptorType;
+ uint8_t bEndpointAddress;
+ uint8_t bmAttributes;
+ uint16_t wMaxPacketSize;
+ uint8_t bInterval;
+ uint8_t bRefresh;
+ uint8_t bSynchAddress;
unsigned char *extra; /* Extra descriptors */
int extralen;
@@ -129,15 +131,15 @@ struct usb_endpoint_descriptor {
/* Interface descriptor */
#define USB_MAXINTERFACES 32
struct usb_interface_descriptor {
- u_int8_t bLength;
- u_int8_t bDescriptorType;
- u_int8_t bInterfaceNumber;
- u_int8_t bAlternateSetting;
- u_int8_t bNumEndpoints;
- u_int8_t bInterfaceClass;
- u_int8_t bInterfaceSubClass;
- u_int8_t bInterfaceProtocol;
- u_int8_t iInterface;
+ uint8_t bLength;
+ uint8_t bDescriptorType;
+ uint8_t bInterfaceNumber;
+ uint8_t bAlternateSetting;
+ uint8_t bNumEndpoints;
+ uint8_t bInterfaceClass;
+ uint8_t bInterfaceSubClass;
+ uint8_t bInterfaceProtocol;
+ uint8_t iInterface;
struct usb_endpoint_descriptor *endpoint;
@@ -155,14 +157,14 @@ struct usb_interface {
/* Configuration descriptor information.. */
#define USB_MAXCONFIG 8
struct usb_config_descriptor {
- u_int8_t bLength;
- u_int8_t bDescriptorType;
- u_int16_t wTotalLength;
- u_int8_t bNumInterfaces;
- u_int8_t bConfigurationValue;
- u_int8_t iConfiguration;
- u_int8_t bmAttributes;
- u_int8_t MaxPower;
+ uint8_t bLength;
+ uint8_t bDescriptorType;
+ uint16_t wTotalLength;
+ uint8_t bNumInterfaces;
+ uint8_t bConfigurationValue;
+ uint8_t iConfiguration;
+ uint8_t bmAttributes;
+ uint8_t MaxPower;
struct usb_interface *interface;
@@ -172,28 +174,28 @@ struct usb_config_descriptor {
/* Device descriptor */
struct usb_device_descriptor {
- u_int8_t bLength;
- u_int8_t bDescriptorType;
- u_int16_t bcdUSB;
- u_int8_t bDeviceClass;
- u_int8_t bDeviceSubClass;
- u_int8_t bDeviceProtocol;
- u_int8_t bMaxPacketSize0;
- u_int16_t idVendor;
- u_int16_t idProduct;
- u_int16_t bcdDevice;
- u_int8_t iManufacturer;
- u_int8_t iProduct;
- u_int8_t iSerialNumber;
- u_int8_t bNumConfigurations;
+ uint8_t bLength;
+ uint8_t bDescriptorType;
+ uint16_t bcdUSB;
+ uint8_t bDeviceClass;
+ uint8_t bDeviceSubClass;
+ uint8_t bDeviceProtocol;
+ uint8_t bMaxPacketSize0;
+ uint16_t idVendor;
+ uint16_t idProduct;
+ uint16_t bcdDevice;
+ uint8_t iManufacturer;
+ uint8_t iProduct;
+ uint8_t iSerialNumber;
+ uint8_t bNumConfigurations;
};
struct usb_ctrl_setup {
- u_int8_t bRequestType;
- u_int8_t bRequest;
- u_int16_t wValue;
- u_int16_t wIndex;
- u_int16_t wLength;
+ uint8_t bRequestType;
+ uint8_t bRequest;
+ uint16_t wValue;
+ uint16_t wIndex;
+ uint16_t wLength;
};
/*
@@ -254,7 +256,7 @@ struct usb_device {
void *dev; /* Darwin support */
- u_int8_t devnum;
+ uint8_t devnum;
unsigned char num_children;
struct usb_device **children;
@@ -266,7 +268,7 @@ struct usb_bus {
char dirname[PATH_MAX + 1];
struct usb_device *devices;
- u_int32_t location;
+ uint32_t location;
struct usb_device *root_dev;
};

View File

@ -1,53 +0,0 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libusb-compat/libusb-compat-0.1.5-r2.ebuild,v 1.15 2014/06/18 19:15:33 mgorny Exp $
EAPI=5
inherit eutils toolchain-funcs multilib-minimal
DESCRIPTION="Userspace access to USB devices (libusb-0.1 compat wrapper)"
HOMEPAGE="http://libusb.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN/-compat}/${P}.tar.bz2"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
IUSE="debug examples static-libs"
RDEPEND=">=virtual/libusb-1-r1:1[${MULTILIB_USEDEP}]
!dev-libs/libusb:0
abi_x86_32? (
!<=app-emulation/emul-linux-x86-baselibs-20130224-r7
!app-emulation/emul-linux-x86-baselibs[-abi_x86_32(-)]
)"
DEPEND="${RDEPEND}
virtual/pkgconfig"
DOCS="AUTHORS ChangeLog NEWS README"
src_prepare() {
epatch "${FILESDIR}"/${PN/-compat}-0.1-ansi.patch
}
multilib_src_configure() {
ECONF_SOURCE=${S} \
econf \
$(use_enable static-libs static) \
$(use_enable debug debug-log)
}
multilib_src_install() {
emake DESTDIR="${D}" install
multilib_is_native_abi && gen_usr_ldscript -a usb
}
multilib_src_install_all() {
prune_libtool_files
einstalldocs
if use examples; then
insinto /usr/share/doc/${PF}/examples
doins examples/*.c
fi
}

View File

@ -1,57 +0,0 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libusb-compat/libusb-compat-0.1.5-r3.ebuild,v 1.3 2014/06/18 19:15:33 mgorny Exp $
EAPI=5
inherit eutils toolchain-funcs multilib-minimal
DESCRIPTION="Userspace access to USB devices (libusb-0.1 compat wrapper)"
HOMEPAGE="http://libusb.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN/-compat}/${P}.tar.bz2"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
IUSE="debug examples static-libs"
RDEPEND=">=virtual/libusb-1-r1:1[${MULTILIB_USEDEP}]
!dev-libs/libusb:0
abi_x86_32? (
!<=app-emulation/emul-linux-x86-baselibs-20130224-r7
!app-emulation/emul-linux-x86-baselibs[-abi_x86_32(-)]
)"
DEPEND="${RDEPEND}
virtual/pkgconfig"
DOCS="AUTHORS ChangeLog NEWS README"
src_prepare() {
epatch "${FILESDIR}"/${PN/-compat}-0.1-ansi.patch
}
MULTILIB_CHOST_TOOLS=(
/usr/bin/libusb-config
)
multilib_src_configure() {
ECONF_SOURCE=${S} \
econf \
$(use_enable static-libs static) \
$(use_enable debug debug-log)
}
multilib_src_install() {
emake DESTDIR="${D}" install
multilib_is_native_abi && gen_usr_ldscript -a usb
}
multilib_src_install_all() {
prune_libtool_files
einstalldocs
if use examples; then
insinto /usr/share/doc/${PF}/examples
doins examples/*.c
fi
}

View File

@ -1,10 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<herd>base-system</herd>
<herd>proxy-maintainers</herd>
<maintainer>
<email>peter@stuge.se</email>
<name>Peter Stuge</name>
</maintainer>
</pkgmetadata>

View File

@ -1,11 +0,0 @@
AUX newt-0.52.13-gold.patch 431 SHA256 6383e6b9cbda8f7e9d4c9b111341bcbce279334e50d4907839dca088cb143b47 SHA512 0773f904f6201c779464c4cdfba3c988432cebf1ce408eda4ff3abcbcc1922dc5d54549b7c9ea3eaa4b5aace3a2f4bbe160ce449e98a9d66893019857af2d5e2 WHIRLPOOL b94790a0cdc2b2bd7d05dbb4764d76a273b6ae11d50665dece1796bb7d9d35825ea5274d571b1c55d592c2b66eb5fad36737eb76fdc30152f2a0cbdfa75a4175
AUX newt-0.52.14-tcl.patch 3269 SHA256 2cc900ddb3b24536235ab1b2704227c0a6bdbb268e4ceb1b3a89fe65575556a8 SHA512 6074f53b4070f4d8c7e1f4dfc4de7c549ac63a4af4bae70a3ebc3ebb03bd588923e8a952ffd93139041f5454318958a50a8ca8b0ecd98fb5d2ebde74b42aa313 WHIRLPOOL 763747ff06ee9c7ad42d184393686a472f036f3d1d1be534cc3e95d70796629eb5017a83e6c972fbf5c4e32e48b4eb9751944a12c23238d47eac73e37798e9d2
AUX newt-0.52.15-makefile.patch 403 SHA256 7d889a8cc30151c65edb6a2471a3a253be3e3e8d73a91e62e746e79f5f86f43b SHA512 146430581aa1811ac2f5aa03f6da6f193afda153eb3c3efd8576631f591f3671f05d9479182f593faedc79be17fc91852641259df93faa1231d3eda5e9dfd73d WHIRLPOOL f06df0e50f342b8bd157856ec7005910a7807770886e3043c347a6d212fc7ff7417dff658e9d8b677ac0e4d150a6184d42bb00bafb4abc1b0dbc589e346433a1
AUX newt-0.52.15-snack.patch 797 SHA256 18b7ffc641866ae50c686eac293c93bf47ba16208cfc83ce91ee3fe8dc5e4582 SHA512 3a7a706c74307d5fc1d10ef0ec64f2d6cc086630b5620ffc3a679770adde65212fe0b5fb9529dea43565f0c8d40bc57a8b8fd67b106ab2279be8f8a9bde1c56b WHIRLPOOL c5b8d3f97e89d1bed0ced0300cb82c48077ff701dbc0184e2c914c08f4bb39ab8c17847de6baa0304fa8dbfb7d694968f8ea8c0acb162d22b8b9346b2697ae4a
DIST newt-0.52.15.tar.gz 183171 SHA256 7a6151923e7a8a950f9a8a21668a5780d09b0f35f9d76a7ec606c71c35a0e241 SHA512 f93798e8e9e33b4bc1bbb6039d94ccdf55be76a0e0f918eb32a241fe527ea61121a8fc35ccd699e3f6202eb367ba4b4025b30264bd9b0face7c16782f113051e WHIRLPOOL 3b23d149964bb63b6c1de2f84c7d8eaac4ecb004698135e41afd0e3ca2702f8687f9ca46a4bc10c2d4a372b9b10e7dd792a6d56deee59e2f30f942776f6d625b
DIST newt-0.52.18.tar.gz 180425 SHA256 771b0e634ede56ae6a6acd910728bb5832ac13ddb0d1d27919d2498dab70c91e SHA512 223b4fba9568d7ddddd9292f52d5e556a24403642d1dac97b58c8ede698bc182ce7d5afd31df2cb1c5b8a8850529b50ce71d8ad84856be8d42fad0f1a33a48f8 WHIRLPOOL e4ca7b572579834df0f73f1bd65a19be48e186f253ac2e82713a0e5ed902ca1fcb8cec88da508519e6a0e88efcac77fbaa0000525bb7659264849322bc3c1c55
EBUILD newt-0.52.15.ebuild 2027 SHA256 26e8de4caabb410150f98d4643bc093c57138785957ae38f0a6e41782f11a016 SHA512 3936acacd773e0d4fca2052f5eb581bd8cbec14ece1f44c40c18a52b2b205398b1ccef7dfbe50cd6fe73bfdf2361ecbdc6e84756c89c43728081a6b14185d851 WHIRLPOOL 91c86e9988615ebfb9221a07c6fb3ef23f3dbab62466f27eede87fbdb6011b625aeccd19ce4b43c7c10035d4e891cb8fce538cafc38fb7a7c6f5a3a5006c9774
EBUILD newt-0.52.18.ebuild 1964 SHA256 12434c2228572c3ac316c8aa4ebf7eab8554c295b9306458efe61ef4f74785bf SHA512 55961c54ede0379f42530892d39b768ad0f794060234e91e1c4dcf6a0e100b2656ba6980ee1116818ad1f198255eea3901d719afca0119142238235f91c02f2f WHIRLPOOL dcfb59a609650881265900d91194c0776833e91b782fdd70e998d3e655a04b6e33ee4604c6aab5ef5cb64c623862a722bda7d96317f64dca6f24a5dd6bcffb5f
MISC ChangeLog 2357 SHA256 a1e72f4ddeae0bab9392582dfd2db05e393ab09e1ecad729c6406901fd2b0592 SHA512 1277091252dd8339294b523299bc51b70f49652dd283b09f093667e9aec5328a2c1859fab32f7e29f3cef418ea990c32982a15110a6589100b83c6e348f26167 WHIRLPOOL 7bdef2d448f9009400b4eb29b4b9eed837a80499abf728cb5985b23a78d7ee357c978a0a3b948a2f160c806b0112800d359e762de820235ab982061754f7ee38
MISC ChangeLog-2015 14685 SHA256 9e807dc1357f6054883e0a68a0799b1a22f2951de5eaa96e62121731004d72fa SHA512 706a7eb68b5df858c879a36efdafeddc0996261bdc656485770fb3111ae071f5073c48bfd142247da9850d870edfdf1f8fd4b025ab50082e974648595b2d64cb WHIRLPOOL 3892094cdbd88e6c978050c044d17c1496a1169130c4baad5a77164ce7326ee49cfc62ea4ce16a2465200affc97bcefda10e1509d6a0c40e633eda0062f03ce5
MISC metadata.xml 220 SHA256 e57daab425a1f8cdce53445e733d7349fb8923b1aa2a6b12c3ebba1412b8b593 SHA512 92d5a05e3acc3e5910f8f0948c3cb31126a5aec7042421c0aed7b4721bd1fc83b819814a1772fe7ad0ddea4e0e9f485bae74cfea2c116dbca13994b05854da91 WHIRLPOOL c715af52eb1b44b0ece00769636aa99f5e34ffc89940948d9b5120960158cc76249515e25fb56f47c368b0cf38756cfb5e9824b9074c4fbd587ee1c52aad2ebe

View File

@ -1,12 +0,0 @@
--- configure.ac~ 2011-11-09 23:50:21.000000000 +0900
+++ configure.ac 2011-11-09 23:54:54.139482817 +0900
@@ -19,7 +19,8 @@
AC_MSG_CHECKING([for GNU ld])
LD=`$CC -print-prog-name=ld 2>&5`
-if test `$LD -v 2>&1 | $ac_cv_path_GREP -c "GNU ld"` = 0; then
+if test `$LD -v 2>&1 | $ac_cv_path_GREP -c "GNU ld"` = 0 -a \
+ test `$LD -v 2>&1 | $ac_cv_path_GREP -c "GNU gold"` = 0; then
# Not
GNU_LD=""
AC_MSG_RESULT([no])

View File

@ -1,108 +0,0 @@
diff --git a/whiptcl.c b/whiptcl.c
index 8688780..7219911 100644
--- a/whiptcl.c
+++ b/whiptcl.c
@@ -137,45 +137,45 @@ static int wtCmd(ClientData clientData, Tcl_Interp * interp, int argc,
if (arg < -1) {
/* this could buffer oveflow, bug we're not setuid so I don't care */
- interp->result = malloc(200);
- interp->freeProc = TCL_DYNAMIC;
- sprintf(interp->result, "%s: %s\n",
+ char *tmp = malloc(200);
+ sprintf(tmp, "%s: %s\n",
poptBadOption(optCon, POPT_BADOPTION_NOALIAS),
poptStrerror(arg));
+ Tcl_SetResult(interp, tmp, TCL_DYNAMIC);
return TCL_ERROR;
}
if (mode == MODE_NONE) {
- interp->result = "no dialog mode was specified";
+ Tcl_SetResultString(interp, "no dialog mode was specified");
return TCL_ERROR;
} else if (rc) {
- interp->result = "multiple modes were specified";
+ Tcl_SetResultString(interp, "multiple modes were specified");
return TCL_ERROR;
}
if (!(text = poptGetArg(optCon))) {
- interp->result = "missing text parameter";
+ Tcl_SetResultString(interp, "missing text parameter");
return TCL_ERROR;
}
if (!(nextArg = poptGetArg(optCon))) {
- interp->result = "height missing";
+ Tcl_SetResultString(interp, "height missing");
return TCL_ERROR;
}
height = strtoul(nextArg, &end, 10);
if (*end) {
- interp->result = "height is not a number";
+ Tcl_SetResultString(interp, "height is not a number");
return TCL_ERROR;
}
if (!(nextArg = poptGetArg(optCon))) {
- interp->result = "width missing";
+ Tcl_SetResultString(interp, "width missing");
return TCL_ERROR;
}
width = strtoul(nextArg, &end, 10);
if (*end) {
- interp->result = "width is not a number";
+ Tcl_SetResultString(interp, "width is not a number");
return TCL_ERROR;
}
@@ -196,33 +196,30 @@ static int wtCmd(ClientData clientData, Tcl_Interp * interp, int argc,
case MODE_YESNO:
rc = messageBox(text, height, width, MSGBOX_YESNO, flags);
if (rc == DLG_OKAY)
- interp->result = "yes";
+ Tcl_SetResultString(interp, "yes");
else
- interp->result = "no";
+ Tcl_SetResultString(interp, "no");
if (rc == DLG_ERROR) rc = 0;
break;
case MODE_INPUTBOX:
rc = inputBox(text, height, width, optCon, flags, &result);
if (rc ==DLG_OKAY) {
- interp->result = result;
- interp->freeProc = TCL_DYNAMIC;
+ Tcl_SetResult(interp, result, TCL_DYNAMIC);
}
break;
case MODE_MENU:
rc = listBox(text, height, width, optCon, flags, default_item, &result);
if (rc==DLG_OKAY) {
- interp->result = result;
- interp->freeProc = TCL_DYNAMIC;
+ Tcl_SetResult(interp, result, TCL_DYNAMIC);
}
break;
case MODE_RADIOLIST:
rc = checkList(text, height, width, optCon, 1, flags, &selections);
if (rc==DLG_OKAY) {
- interp->result = selections[0];
- interp->freeProc = TCL_DYNAMIC;
+ Tcl_SetResult(interp, selections[0], TCL_DYNAMIC);
free(selections);
}
@@ -247,7 +244,7 @@ static int wtCmd(ClientData clientData, Tcl_Interp * interp, int argc,
newtPopWindow();
if (rc == DLG_ERROR) {
- interp->result = "bad paramter for whiptcl dialog box";
+ Tcl_SetResultString(interp, "bad paramter for whiptcl dialog box");
return TCL_ERROR;
}

View File

@ -1,13 +0,0 @@
diff --git a/Makefile.in b/Makefile.in
index 4ae284b..cd5c4a7 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -127,7 +127,7 @@ $(LIBNEWTSH): $(SHAREDDIR) $(SHAREDOBJS)
ln -fs $(LIBNEWTSONAME) libnewt.so
ln -fs $(LIBNEWTSH) $(LIBNEWTSONAME)
-$(SHAREDDIR)/%.o : %.c
+$(SHAREDDIR)/%.o : %.c $(SHAREDDIR)
$(CC) $(SHCFLAGS) -c $(CFLAGS) $(CPPFLAGS) -o $@ $<
install: $(LIBNEWT) install-sh whiptail

View File

@ -1,13 +0,0 @@
diff --git a/Makefile.in b/Makefile.in
index 75764e1..ca95bb6 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -90,7 +90,7 @@ _snackmodule.so: snackmodule.c $(LIBNEWTSH)
PLDFLAGS=`$$pyconfig --ldflags`; \
PLFLAGS=`$$pyconfig --libs`; \
echo $(CC) $(SHCFLAGS) $(CPPFLAGS) $$PIFLAGS $$PCFLAGS -c -o $$ver/snackmodule.o snackmodule.c; \
- $(CC) $(SHCFLAGS) $(CPPFLAGS) $$PIFLAGS $$PCFLAGS -c -o $$ver/snackmodule.o snackmodule.c; \
+ $(CC) $(SHCFLAGS) $(CFLAGS) $(CPPFLAGS) $$PIFLAGS $$PCFLAGS -c -o $$ver/snackmodule.o snackmodule.c; \
echo $(CC) --shared $$PLDFLAGS $$PLFLAGS $(LDFLAGS) -o $$ver/_snackmodule.so $$ver/snackmodule.o -L. -lnewt $(LIBS); \
$(CC) --shared $$PLDFLAGS $$PLFLAGS $(LDFLAGS) -o $$ver/_snackmodule.so $$ver/snackmodule.o -L. -lnewt $(LIBS); \
done || :

View File

@ -1,7 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>naota@gentoo.org</email>
</maintainer>
</pkgmetadata>

View File

@ -1,89 +0,0 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI="5"
PYTHON_COMPAT=( python2_7 )
inherit python-r1 eutils multilib autotools toolchain-funcs
DESCRIPTION="Redhat's Newt windowing toolkit development files"
HOMEPAGE="https://fedorahosted.org/newt/"
SRC_URI="https://fedorahosted.org/releases/n/e/newt/${P}.tar.gz"
LICENSE="LGPL-2"
SLOT="0"
KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 sparc x86 ~x86-fbsd"
IUSE="gpm tcl nls"
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
RDEPEND="${PYTHON_DEPS}
>=dev-libs/popt-1.6
=sys-libs/slang-2*
elibc_uclibc? ( sys-libs/ncurses )
gpm? ( sys-libs/gpm )
tcl? ( >=dev-lang/tcl-8.5:0 )
"
DEPEND="${RDEPEND}"
src_prepare() {
# bug 73850
if use elibc_uclibc; then
sed -i -e 's:-lslang:-lslang -lncurses:g' Makefile.in || die
fi
sed -i Makefile.in \
-e 's|-ltcl8.4|-ltcl|g' \
-e 's|$(SHCFLAGS) -o|$(LDFLAGS) &|g' \
-e 's|-g -o|$(CFLAGS) $(LDFLAGS) -o|g' \
-e 's|-shared -o|$(CFLAGS) $(LDFLAGS) &|g' \
-e 's|instroot|DESTDIR|g' \
-e 's| make | $(MAKE) |g' \
-e "s| ar | $(tc-getAR) |g" \
|| die "sed Makefile.in"
local langs=""
if [ -n "${LINGUAS}" ]; then
for lang in ${LINGUAS}; do
test -r po/${lang}.po && langs="${langs} ${lang}.po"
done
sed -i po/Makefile \
-e "/^CATALOGS = /cCATALOGS = ${langs}" \
|| die "sed po/Makefile"
fi
epatch "${FILESDIR}"/${PN}-0.52.13-gold.patch \
"${FILESDIR}"/${PN}-0.52.15-snack.patch \
"${FILESDIR}"/${PN}-0.52.14-tcl.patch \
"${FILESDIR}"/${PN}-0.52.15-makefile.patch
eautoreconf
}
src_configure() {
econf \
PYTHONVERS="${PYTHON}" \
$(use_with gpm gpm-support) \
$(use_with tcl) \
$(use_enable nls)
}
src_compile() {
building() {
emake PYTHONVERS="${EPYTHON}"
}
python_foreach_impl building
}
src_install() {
installit() {
emake \
DESTDIR="${D}" \
PYTHONVERS="${EPYTHON}" \
install
python_optimize
}
python_foreach_impl installit
dodoc peanuts.py popcorn.py tutorial.sgml
doman whiptail.1
}

View File

@ -1,87 +0,0 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI="5"
PYTHON_COMPAT=( python2_7 )
inherit python-r1 eutils multilib autotools toolchain-funcs
DESCRIPTION="Redhat's Newt windowing toolkit development files"
HOMEPAGE="https://fedorahosted.org/newt/"
SRC_URI="https://fedorahosted.org/releases/n/e/newt/${P}.tar.gz"
LICENSE="LGPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
IUSE="gpm tcl nls"
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
RDEPEND="${PYTHON_DEPS}
>=dev-libs/popt-1.6
=sys-libs/slang-2*
elibc_uclibc? ( sys-libs/ncurses )
gpm? ( sys-libs/gpm )
tcl? ( >=dev-lang/tcl-8.5:0 )
"
DEPEND="${RDEPEND}"
src_prepare() {
# bug 73850
if use elibc_uclibc; then
sed -i -e 's:-lslang:-lslang -lncurses:g' Makefile.in || die
fi
sed -i Makefile.in \
-e 's|$(SHCFLAGS) -o|$(LDFLAGS) &|g' \
-e 's|-g -o|$(CFLAGS) $(LDFLAGS) -o|g' \
-e 's|-shared -o|$(CFLAGS) $(LDFLAGS) &|g' \
-e 's|instroot|DESTDIR|g' \
-e 's| make | $(MAKE) |g' \
-e "s| ar | $(tc-getAR) |g" \
|| die "sed Makefile.in"
local langs=""
if [ -n "${LINGUAS}" ]; then
for lang in ${LINGUAS}; do
test -r po/${lang}.po && langs="${langs} ${lang}.po"
done
sed -i po/Makefile \
-e "/^CATALOGS = /cCATALOGS = ${langs}" \
|| die "sed po/Makefile"
fi
epatch "${FILESDIR}"/${PN}-0.52.13-gold.patch \
"${FILESDIR}"/${PN}-0.52.14-tcl.patch \
"${FILESDIR}"/${PN}-0.52.15-makefile.patch
eautoreconf
}
src_configure() {
econf \
PYTHONVERS="${PYTHON}" \
$(use_with gpm gpm-support) \
$(use_with tcl) \
$(use_enable nls)
}
src_compile() {
building() {
emake PYTHONVERS="${EPYTHON}"
}
python_foreach_impl building
}
src_install() {
installit() {
emake \
DESTDIR="${D}" \
PYTHONVERS="${EPYTHON}" \
install
python_optimize
}
python_foreach_impl installit
dodoc peanuts.py popcorn.py tutorial.sgml
doman whiptail.1
}

View File

@ -1,134 +0,0 @@
# ChangeLog for dev-libs/opencryptoki
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/opencryptoki/ChangeLog,v 1.24 2012/12/15 21:25:32 alonbl Exp $
*opencryptoki-2.4.2 (15 Dec 2012)
15 Dec 2012; Alon Bar-Lev <alonbl@gentoo.org>
+files/opencryptoki-2.4.2-destdir.patch, +opencryptoki-2.4.2.ebuild:
Version bump
06 Jun 2012; Zac Medico <zmedico@gentoo.org> opencryptoki-2.3.3-r5.ebuild:
inherit user for enewgroup
14 May 2012; Mike Frysinger <vapier@gentoo.org> opencryptoki-2.3.3-r5.ebuild:
Add arm love for ChromiumOS.
14 Apr 2011; Diego E. Pettenò <flameeyes@gentoo.org>
opencryptoki-2.3.3-r5.ebuild:
Fix install of pkcs11 symlink.
*opencryptoki-2.3.3-r5 (14 Apr 2011)
14 Apr 2011; Diego E. Pettenò <flameeyes@gentoo.org>
-opencryptoki-2.3.3-r4.ebuild, +opencryptoki-2.3.3-r5.ebuild:
Another try at having a proper init script.
*opencryptoki-2.3.3-r4 (12 Apr 2011)
12 Apr 2011; Diego E. Pettenò <flameeyes@gentoo.org>
-opencryptoki-2.3.3-r3.ebuild, +opencryptoki-2.3.3-r4.ebuild:
Revision bump; fix init script.
*opencryptoki-2.3.3-r3 (31 Jan 2011)
31 Jan 2011; Diego E. Pettenò <flameeyes@gentoo.org>
-opencryptoki-2.3.3-r2.ebuild, +opencryptoki-2.3.3-r3.ebuild:
Remove compatibility symlink (we don't have software needing them in
Portage), and move libopencryptoki to the linkers' search path instead of
changing those paths.
21 Jan 2011; Diego E. Pettenò <flameeyes@gentoo.org>
-opencryptoki-2.3.2.ebuild, opencryptoki-2.3.3-r2.ebuild:
Remove old version; delete .la files as they are unneeded.
20 Jan 2011; Diego E. Pettenò <flameeyes@gentoo.org>
opencryptoki-2.3.3-r2.ebuild:
Fix build with USE=-tpm.
15 Jan 2011; Diego E. Pettenò <flameeyes@gentoo.org>
opencryptoki-2.3.3-r2.ebuild:
Fix format string warnings as the code could be security-sensitive.
15 Jan 2011; Diego E. Pettenò <flameeyes@gentoo.org>
opencryptoki-2.3.3-r2.ebuild:
Fix build with USE=debug enabled.
*opencryptoki-2.3.3-r2 (15 Jan 2011)
15 Jan 2011; Diego E. Pettenò <flameeyes@gentoo.org>
-opencryptoki-2.3.3-r1.ebuild, +opencryptoki-2.3.3-r2.ebuild:
Revision bump: avoid /var/lib/lib directory prefix (thanks to frank Swiderski
for reportign); disable CCA token so that the whole package is under CPL-0.5
(and also it seems to be limited to s390 hardware).
*opencryptoki-2.3.3-r1 (14 Jan 2011)
14 Jan 2011; Diego E. Pettenò <flameeyes@gentoo.org>
-opencryptoki-2.3.3.ebuild, +opencryptoki-2.3.3-r1.ebuild:
Missed one patch from the Chromium project; also solve implicit declarations,
and restrict tests with an explanation on why.
*opencryptoki-2.3.3 (13 Jan 2011)
13 Jan 2011; Diego E. Pettenò <flameeyes@gentoo.org>
+opencryptoki-2.3.3.ebuild:
Version bump; some of the patches have been merged in but we still have two
to apply until next version.
07 Jan 2011; Diego E. Pettenò <flameeyes@gentoo.org>
-files/opencryptoki-2.2.4.1-tpm_util.c.patch,
-files/opencryptoki-2.2.8-remove_openlog.patch,
-files/opencryptoki-2.2.8-remove_recursive_chmod.patch,
-files/opencryptoki-2.2.8-steal_shmem.patch, opencryptoki-2.3.2.ebuild,
-files/opencryptoki-2.3.2-build.patch:
Move the patches out of the tree in a backports tarball. The backports are
maintained in a git repository that more easily syncs up with upstream.
01 Dec 2010; Diego E. Pettenò <flameeyes@gentoo.org>
opencryptoki-2.3.2.ebuild, files/pkcsslotd.init.2:
Make it a use, not need, dependency as you might not have tpm hardware.
*opencryptoki-2.3.2 (01 Dec 2010)
01 Dec 2010; Diego E. Pettenò <flameeyes@gentoo.org>
-opencryptoki-2.2.4.1.ebuild, -opencryptoki-2.2.8.ebuild,
+files/opencryptoki-2.2.8-remove_openlog.patch,
+files/opencryptoki-2.2.8-remove_recursive_chmod.patch,
+files/opencryptoki-2.2.8-steal_shmem.patch, +opencryptoki-2.3.2.ebuild,
+files/opencryptoki-2.3.2-build.patch, +files/pkcsslotd.init.2,
-files/pkcsslotd.init, metadata.xml:
Version bump, rewrite ebuild to actually make sense and work, with the help
of the one to be found in chromiumos-overlay. Many thanks to Nathan Williams
and Chris Masone for their fixes and the patches. Drop all the previous
ebuilds and the previous init script as they are totally broken by design.
*opencryptoki-2.2.8 (28 Jun 2009)
28 Jun 2009; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
+opencryptoki-2.2.8.ebuild:
Version bump.
06 Aug 2008; Ulrich Mueller <ulm@gentoo.org> metadata.xml:
Add USE flag description to metadata wrt GLEP 56.
10 Nov 2007; Alon Bar-Lev <alonbl@gentoo.org>
-opencryptoki-2.2.4-r1.ebuild, opencryptoki-2.2.4.1.ebuild:
Cleanups
29 Aug 2007; Christian Heim <phreak@gentoo.org> metadata.xml:
Removing kaiowas from metadata due to his retirement (see #61930 for
reference).
*opencryptoki-2.2.4.1 (25 Mar 2007)
25 Mar 2007; Petre Rodan <kaiowas@gentoo.org>
+files/opencryptoki-2.2.4.1-tpm_util.c.patch,
+opencryptoki-2.2.4.1.ebuild:
version bump
*opencryptoki-2.2.4-r1 (03 Jun 2006)
03 Jun 2006; Petre Rodan <kaiowas@gentoo.org> +files/pkcsslotd.init,
+metadata.xml, +opencryptoki-2.2.4-r1.ebuild:
initial commit

View File

@ -1,9 +0,0 @@
AUX opencryptoki-2.4.2-destdir.patch 688 SHA256 b6fcf826c3ec12cb0544f869016c9821d3f56739b1b59ff438f0b87cb1245d61 SHA512 2f1059d71b5cd0da4f7126ffe7789abbe528600817c2a2dc3b318d4154800e924e5703a9b31c66731dfc15814f1b1727b420b23be1e4240d60f3fcb6c86de330 WHIRLPOOL 5f54f24136e2ca419c5c5ee553a24aa1086b1cd76a2a048dd290efd7317defe11f942f70589da146e9b3b37483fab3f14677be6d11c0eb2c55b37136959f6021
AUX pkcsslotd.init.2 663 SHA256 80c2e13cb0e9255fa3fc13977c4d1c73a10be4740a50959b8d487d328a1e1192 SHA512 f7da05fa2fe5d4632ea78a5f54d6c671ee96923ff5711c637b6e0895b20bb605576439438a547ef0fbeaf8eccf8290c113586a88229172be15bff18858965409 WHIRLPOOL 61de41ae5dae26cac477029779659494904e90bc340e488bf189c70cda66e8d3fb0710a3e9682ee0feed6bd093fb302a2ae6f9006cd7da38777431ff8450afed
DIST opencryptoki-2.3.3-backports-3.tar.bz2 5972 SHA256 fb913dbb5c2b0d87067d9738892b2a4c4a7c192d6335cc0bae2a7083e913aa74 SHA512 bff2b1cd907d814a61296a99eaa5cdcb983355def8022ec09620048415e66b5feea425cba2d19b9f023073165969e981358dc6e406b1bc62f1e00f49e91ef943 WHIRLPOOL c77b1aa0268043d31b3d9d9d53d6416d9d8af5fbb29b07f498aaed61807c1848961b046192ca7eab227f055ba829c13bfa2696d016795b4df71e467c2a0185cc
DIST opencryptoki-2.3.3.tar.bz2 694854 SHA256 7ccae6350a7043c2abade1eb1517edb987f13e98584dd28733172e8d36600aa2 SHA512 2c7ea2f689daba92ec178198dc1a3ffbc4812f4547a574b86cc8b69ada4e3aefb2613d4d291829d81b97d91d5d3fbe1735bd9b3f99db415ddcb4ca03863ddc4a WHIRLPOOL 3a955b464ea44c1dc50ce9869bbc48ced2a3962ef533491aa53956cccbca1fcf9411ffcccd1839384e7f3ba87368dba4c8c415f283139169391224a1f4cf5092
DIST opencryptoki-2.4.2.tar.gz 1083876 SHA256 0bfbcf956fec078af12c34cd447c6274a5e7e886335c3b8b81106d20ccefa0d9 SHA512 2f760968cec7f15f7de38f0c74e0444d75d1a247d1efd9fc17a17ac5f2bcc4fd283def49d46baeea0c5adb6e19236993b4e8937f0e32162bcc7dbac8066144b9 WHIRLPOOL d7df0db3450d33c3e28be0031b48f22d89387f12f35ca868f593f82a87abb9eea89f28be43fb4ce3b17dee6e1d226fc08586320fbce4e0bf7d57db871d3cd76c
EBUILD opencryptoki-2.3.3-r5.ebuild 3627 SHA256 d7ebe5f519375f3789137e241851f96116ae6ecc374807dc07b87e9f72343930 SHA512 dd323fb20bf486ecbd6e7de5db56fbfc286aae7aa30bda2017bd8ecd4df01d4da32138707fe4c84898d2911cc1c45957c14bd25985c1322d7571caeded2cd261 WHIRLPOOL 231cf8ce9e22c2e09455465692f8b53dc356c34dbcf1f8a4aecf6df892b821d788575d27d171a17e29d3a9ae91cafe728b1f361365db846c113d0bb5900d312d
EBUILD opencryptoki-2.4.2.ebuild 3236 SHA256 9a9b779cf84668ddaf6838f8cf1bcf30d42c0a81163fb84abdd0e122e3350c8c SHA512 6fccc3fccc918c51c18a0c6b0727b5d76f4d926c8b6296a81fd6eb98af0a514826ae92edc7318cf19351127507fc52582fc3201a541e87f3674435e9878109e0 WHIRLPOOL 828925560acaec77ff58dcd0d015e474fdcd00d39b527279f8d35a6a5aa4a794c08843cc7ebecc50ab6c59e773d30f87eba0dd7974f74e515c48b425049583d3
MISC ChangeLog 5228 SHA256 182bd4e75f4e44b6f5b0f0933963994206eb73fc19882b21989a2c318a3c9366 SHA512 b8e8ac70bd3f1c381cb31e33e1534f835ca33dc4395e35c38bcf90f330a7e137f3d86cf134abc006b89464e138b35aa081ebd1f04d2b85fb160faa20eafd4a65 WHIRLPOOL d8ecface2e9060a8795a675071f67711f6db9eadd4dd2891ce2993729ac3429d67f1a043675c4ce951a5960a312f8453e61af5ecf4d6081c642b923b5ac9180d
MISC metadata.xml 303 SHA256 6f37596c4a13d63dcbfe0b13494aacf994e803dbdf3190d1545f9fd8b355cead SHA512 0baa0b541224eb841eb8e768fb8972e40d8d6791451f9396c4897ffbf1e593de6c626b8b90517400288476bb2fca22f8a6cf1410a6e5468255139b27249f7d80 WHIRLPOOL b5e72ed8ea3c1b04d47257a6b39f04d41da4a5afc25ab2138c62946d5ef28908821af559020cb933d1fd725661bb3f297f153ada45485beb2dd195e1c5b99d0e

View File

@ -1,26 +0,0 @@
From fcc24176398ab2f40c33ebc686c2f803782af8d6 Mon Sep 17 00:00:00 2001
From: Alon Bar-Lev <alon.barlev@gmail.com>
Date: Sat, 15 Dec 2012 22:13:56 +0200
Subject: [PATCH] Always use DESTDIR when installing
---
usr/Makefile.am | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/usr/Makefile.am b/usr/Makefile.am
index bced120..20352d5 100644
--- a/usr/Makefile.am
+++ b/usr/Makefile.am
@@ -5,6 +5,6 @@ endif
SUBDIRS = lib $(DAEMONDIRS)
install-data-hook:
- $(MKDIR_P) $(lockdir)
- $(CHGRP) pkcs11 $(lockdir)
- $(CHMOD) 0770 $(lockdir)
+ $(MKDIR_P) $(DESTDIR)$(lockdir)
+ $(CHGRP) pkcs11 $(DESTDIR)$(lockdir)
+ $(CHMOD) 0770 $(DESTDIR)$(lockdir)
--
1.7.8.6

View File

@ -1,27 +0,0 @@
#!/sbin/runscript
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
depend() {
need localmount
# Optional services (see ebuild)
use tcsd
}
start() {
# detect available tokens and set up
# /var/lib/opencryptoki/pk_config_data
ebegin "Preparing pkcs configuration"
/usr/sbin/pkcs11_startup
ebegin "Starting pkcsslotd"
start-stop-daemon --start --exec /usr/sbin/pkcsslotd --pidfile /var/run/pkcsslotd.pid
eend $? "Check your logs to see why startup failed"
}
stop() {
ebegin "Stopping pkcsslotd"
start-stop-daemon --stop --exec /usr/sbin/pkcsslotd --pidfile /var/run/pkcsslotd.pid
eend $?
}

View File

@ -1,10 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<herd>crypto</herd>
<use>
<flag name='tpm'>
Enable support for Trusted Platform Module (TPM) using <pkg>app-crypt/trousers</pkg>
</flag>
</use>
</pkgmetadata>

View File

@ -1,110 +0,0 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/opencryptoki/opencryptoki-2.3.3-r5.ebuild,v 1.4 2012/06/06 03:43:03 zmedico Exp $
EAPI="2"
# backports are maintained as tags on Diego's repository on gitorious:
# http://gitorious.org/~flameeyes/opencryptoki/flameeyess-opencryptoki
BACKPORTS=3
inherit autotools eutils multilib flag-o-matic user
DESCRIPTION="PKCS#11 provider cryptographic hardware"
HOMEPAGE="http://sourceforge.net/projects/opencryptoki"
SRC_URI="mirror://sourceforge/opencryptoki/${P}.tar.bz2
${BACKPORTS:+
http://dev.gentoo.org/~flameeyes/${PN}/${P}-backports-${BACKPORTS}.tar.bz2}"
# Upstream is looking into relicensing it into CPL-1.0 entirely; the CCA
# token sources are under CPL-1.0 already.
LICENSE="CPL-0.5"
SLOT="0"
KEYWORDS="~amd64 ~arm ~x86"
RDEPEND="tpm? ( app-crypt/trousers )
dev-libs/openssl"
DEPEND="${RDEPEND}"
IUSE="+tpm debug"
# tests right now basically don't exist; the only available thing would
# test against an installed copy and would kill a running pcscd, all
# things that we're not interested to.
RESTRICT=test
pkg_setup() {
enewgroup pkcs11
}
src_prepare() {
[[ -n ${BACKPORTS} ]] && \
EPATCH_MULTI_MSG="Applying backports patches #${BACKPORTS} ..." \
EPATCH_FORCE=yes EPATCH_SUFFIX="patch" EPATCH_SOURCE="${S}/patches" \
epatch
eautoreconf
}
src_configure() {
# package uses ${localstatedir}/lib as the default path, so if we
# leave it to econf, it'll create /var/lib/lib.
# Since upstream by default seem to enable any possible token, even
# when they don't seem to be used, we limit ourselves to the
# software emulation token (swtok) and if the user enabled the tpm
# USE flag, tpmtok. The rest of the tokens seem to be hardware- or
# software-dependent even when they build fine without their
# requirements, but until somebody asks for those, I'd rather not
# enable them.
# We don't use --enable-debug because that tinkers with the CFLAGS
# and we don't want that. Instead we append -DDEBUG which enables
# debug information.
use debug && append-flags -DDEBUG
econf \
--localstatedir=/var \
--enable-fast-install \
--disable-dependency-tracking \
--disable-debug \
--enable-daemon \
--enable-library \
--disable-icatok \
--enable-swtok \
$(use_enable tpm tpmtok) \
--disable-aeptok \
--disable-bcomtok \
--disable-ccatok \
--disable-crtok \
--disable-icctok \
--disable-pkcscca_migrate
}
src_install() {
emake install DESTDIR="${D}" || die "emake install failed"
# Install libopencryptoki in the standard directory for libraries.
mv "${D}"/usr/$(get_libdir)/opencryptoki/libopencryptoki.so* "${D}"/usr/$(get_libdir) || die
rm "${D}"/usr/$(get_libdir)/pkcs11/libopencryptoki.so
dosym ../libopencryptoki.so /usr/$(get_libdir)/pkcs11/libopencryptoki.so
# Remove compatibility symlinks as we _never_ required those and
# they seem unused even upstream.
find "${D}" -name 'PKCS11_*' -delete
# doesn't use libltdl; only dlopen()-based interfaces
find "${D}" -name '*.la' -delete
# We replace their ld.so and init files (mostly designed for RedHat
# as far as I can tell) with our own replacements.
rm -rf "${D}"/etc/ld.so.conf.d "${D}"/etc/rc.d
# make sure that we don't modify the init script if the USE flags
# are enabled for the needed services.
cp "${FILESDIR}"/pkcsslotd.init.2 "${T}"/pkcsslotd.init
use tpm || sed -i -e '/use tcsd/d' "${T}"/pkcsslotd.init
newinitd "${T}/pkcsslotd.init" pkcsslotd
dodoc README AUTHORS FAQ TODO doc/openCryptoki-HOWTO.pdf || die
}

View File

@ -1,100 +0,0 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/opencryptoki/opencryptoki-2.4.2.ebuild,v 1.1 2012/12/15 21:25:32 alonbl Exp $
EAPI="2"
inherit autotools eutils multilib flag-o-matic user
DESCRIPTION="PKCS#11 provider cryptographic hardware"
HOMEPAGE="http://sourceforge.net/projects/opencryptoki"
SRC_URI="mirror://sourceforge/opencryptoki/${P}.tar.gz"
# Upstream is looking into relicensing it into CPL-1.0 entirely; the CCA
# token sources are under CPL-1.0 already.
LICENSE="CPL-0.5"
SLOT="0"
KEYWORDS="~amd64 ~arm ~x86"
RDEPEND="tpm? ( app-crypt/trousers )
dev-libs/openssl"
DEPEND="${RDEPEND}"
IUSE="+tpm debug"
# tests right now basically don't exist; the only available thing would
# test against an installed copy and would kill a running pcscd, all
# things that we're not interested to.
RESTRICT=test
pkg_setup() {
enewgroup pkcs11
}
src_prepare() {
epatch "${FILESDIR}/${P}-destdir.patch"
eautoreconf
}
src_configure() {
# package uses ${localstatedir}/lib as the default path, so if we
# leave it to econf, it'll create /var/lib/lib.
# Since upstream by default seem to enable any possible token, even
# when they don't seem to be used, we limit ourselves to the
# software emulation token (swtok) and if the user enabled the tpm
# USE flag, tpmtok. The rest of the tokens seem to be hardware- or
# software-dependent even when they build fine without their
# requirements, but until somebody asks for those, I'd rather not
# enable them.
# We don't use --enable-debug because that tinkers with the CFLAGS
# and we don't want that. Instead we append -DDEBUG which enables
# debug information.
use debug && append-flags -DDEBUG
econf \
--localstatedir=/var \
--enable-fast-install \
--disable-dependency-tracking \
--disable-debug \
--enable-daemon \
--enable-library \
--disable-icatok \
--enable-swtok \
$(use_enable tpm tpmtok) \
--disable-aeptok \
--disable-bcomtok \
--disable-ccatok \
--disable-crtok \
--disable-icctok \
--disable-pkcscca_migrate
}
src_install() {
emake install DESTDIR="${D}" || die "emake install failed"
# Install libopencryptoki in the standard directory for libraries.
mv "${D}"/usr/$(get_libdir)/opencryptoki/libopencryptoki.so* "${D}"/usr/$(get_libdir) || die
rm "${D}"/usr/$(get_libdir)/pkcs11/libopencryptoki.so
dosym ../libopencryptoki.so /usr/$(get_libdir)/pkcs11/libopencryptoki.so
# Remove compatibility symlinks as we _never_ required those and
# they seem unused even upstream.
find "${D}" -name 'PKCS11_*' -delete
# doesn't use libltdl; only dlopen()-based interfaces
find "${D}" -name '*.la' -delete
# We replace their ld.so and init files (mostly designed for RedHat
# as far as I can tell) with our own replacements.
rm -rf "${D}"/etc/ld.so.conf.d "${D}"/etc/rc.d
# make sure that we don't modify the init script if the USE flags
# are enabled for the needed services.
cp "${FILESDIR}"/pkcsslotd.init.2 "${T}"/pkcsslotd.init
use tpm || sed -i -e '/use tcsd/d' "${T}"/pkcsslotd.init
newinitd "${T}/pkcsslotd.init" pkcsslotd
dodoc README AUTHORS FAQ TODO doc/openCryptoki-HOWTO.pdf || die
}

View File

@ -1 +0,0 @@
DIST opensc-0.12.2.tar.gz 1738553 RMD160 45504135db05fd404a357ebd8bea047c5c8604dc SHA1 8c34be52eb94025eb181c02b466223901bef744c SHA256 50e7371c0f45a3ed887098b712554905e3ef639d4dfca5ac90b8af5f69f1e675

View File

@ -1,38 +0,0 @@
--- src/pkcs11/Makefile.am 2011-05-17 13:07:00.000000000 -0400
+++ Makefile.am.new 2011-07-07 10:03:28.399185928 -0400
@@ -14,9 +14,10 @@
mechanism.c openssl.c framework-pkcs15.c \
framework-pkcs15init.c debug.c opensc-pkcs11.exports \
pkcs11-display.c pkcs11-display.h
-OPENSC_PKCS11_LIBS = $(OPTIONAL_OPENSSL_LIBS) $(PTHREAD_LIBS) $(LTLIB_LIBS) \
+OPENSC_PKCS11_LIBS = \
$(top_builddir)/src/common/libcompat.la \
- $(top_builddir)/src/libopensc/libopensc.la
+ $(top_builddir)/src/libopensc/libopensc.la \
+ $(OPTIONAL_OPENSSL_LIBS) $(PTHREAD_LIBS) $(LTLIB_LIBS)
opensc_pkcs11_la_SOURCES = $(OPENSC_PKCS11_SRC) $(OPENSC_PKCS11_INC) hack-disabled.c
opensc_pkcs11_la_LIBADD = $(OPENSC_PKCS11_LIBS)
@@ -31,7 +32,7 @@
-module -shared -avoid-version -no-undefined
pkcs11_spy_la_SOURCES = pkcs11-spy.c pkcs11-display.c pkcs11-display.h pkcs11-spy.exports
-pkcs11_spy_la_LIBADD = $(OPTIONAL_OPENSSL_LIBS) $(LTLIB_LIBS) $(top_builddir)/src/common/libpkcs11.la
+pkcs11_spy_la_LIBADD = $(top_builddir)/src/common/libpkcs11.la $(OPTIONAL_OPENSSL_LIBS) $(LTLIB_LIBS)
pkcs11_spy_la_LDFLAGS = $(AM_LDFLAGS) \
-export-symbols "$(srcdir)/pkcs11-spy.exports" \
-module -shared -avoid-version -no-undefined
--- src/tools/Makefile.am 2011-05-17 13:07:00.000000000 -0400
+++ Makefile.am.new 2011-07-07 10:06:08.710185925 -0400
@@ -24,8 +24,9 @@
pkcs15_tool_SOURCES = pkcs15-tool.c util.c
pkcs15_tool_LDADD = $(OPTIONAL_OPENSSL_LIBS)
pkcs11_tool_SOURCES = pkcs11-tool.c util.c
-pkcs11_tool_LDADD = $(OPTIONAL_OPENSSL_LIBS) $(LTLIB_LIBS) \
- $(top_builddir)/src/common/libpkcs11.la
+pkcs11_tool_LDADD = \
+ $(top_builddir)/src/common/libpkcs11.la \
+ $(OPTIONAL_OPENSSL_LIBS) $(LTLIB_LIBS)
pkcs15_crypt_SOURCES = pkcs15-crypt.c util.c
pkcs15_crypt_LDADD = $(OPTIONAL_OPENSSL_LIBS)
cryptoflex_tool_SOURCES = cryptoflex-tool.c util.c

View File

@ -1,42 +0,0 @@
From 1b896582a0cd74854f99e08854554807a8f1f764 Mon Sep 17 00:00:00 2001
From: Mike Frysinger <vapier@gentoo.org>
Date: Tue, 22 May 2012 14:12:23 -0400
Subject: [PATCH] link against -ldl when -lltdl is not available
If ltdl isn't found, the code will use dlopen if it's available.
But it won't link to -ldl which can cause link errors like so:
CCLD opensc-tool
../../src/libopensc/.libs/libopensc.so: error: undefined reference to 'dlopen'
../../src/libopensc/.libs/libopensc.so: error: undefined reference to 'dlsym'
../../src/libopensc/.libs/libopensc.so: error: undefined reference to 'dlerror'
../../src/libopensc/.libs/libopensc.so: error: undefined reference to 'dlclose'
collect2: ld returned 1 exit status
make[3]: *** [opensc-tool] Error 1
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
---
configure.ac | 7 +++++++
1 files changed, 7 insertions(+), 0 deletions(-)
diff --git a/configure.ac b/configure.ac
index 2751f0f..123aeb1 100644
--- a/configure.ac
+++ b/configure.ac
@@ -277,6 +277,13 @@ if test -z "${LTLIB_LIBS}"; then
[LTLIB_LIBS="-lltdl"]
)
fi
+if test -z "${LTLIB_LIBS}"; then
+ AC_CHECK_LIB(
+ [dl],
+ [dlopen],
+ [LTLIB_LIBS="-ldl"]
+ )
+fi
saved_CFLAGS="${CFLAGS}"
CFLAGS="${CFLAGS} ${LTLIB_CFLAGS}"
--
1.7.8.6

View File

@ -1,64 +0,0 @@
From 9e62ac20a1dc39e001875e57067ab7fa2389ae73 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Diego=20Elio=20Petten=C3=B2?= <flameeyes@flameeyes.eu>
Date: Sun, 13 May 2012 14:55:35 -0700
Subject: [PATCH] build: fix parallel install by creating directory in the
rule
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Relying on the rule that creates the directory is a bad idea to be
parallel safe.
Signed-off-by: Diego Elio Pettenò <flameeyes@flameeyes.eu>
---
etc/Makefile.am | 4 ++--
src/pkcs11/Makefile.am | 7 ++++---
2 files changed, 6 insertions(+), 5 deletions(-)
diff --git a/etc/Makefile.am b/etc/Makefile.am
index 0ef546f..478a7bb 100644
--- a/etc/Makefile.am
+++ b/etc/Makefile.am
@@ -18,8 +18,8 @@ opensc.conf: opensc.conf.in force
-e 's|@DEFAULT_PCSC_PROVIDER[@]|$(DEFAULT_PCSC_PROVIDER)|g' \
< $< > $@
-sysconf_DATA=#required in order to create dir
-install-exec-hook: install-sysconfDATA opensc.conf
+install-exec-hook: opensc.conf
+ $(mkdir_p) "$(DESTDIR)$(sysconfdir)"
if [ -f "$(DESTDIR)$(sysconfdir)/opensc.conf" ]; then \
$(INSTALL_DATA) opensc.conf "$(DESTDIR)$(sysconfdir)/opensc.conf.new"; \
else \
diff --git a/src/pkcs11/Makefile.am b/src/pkcs11/Makefile.am
index ba5e70d..742c5fb 100644
--- a/src/pkcs11/Makefile.am
+++ b/src/pkcs11/Makefile.am
@@ -52,19 +52,20 @@ pkcs11-jar: jar-dir
-k"testcert" jar-dir
if WIN32
-install-exec-hook: install-pkcs11DATA
+install-exec-hook:
+ $(mkdir_p) "$(DESTDIR)$(libdir)"
for l in opensc-pkcs11.dll onepin-opensc-pkcs11.dll pkcs11-spy.dll; do \
mv "$(DESTDIR)$(libdir)/$$l" "$(DESTDIR)$(bindir)/$$l"; \
done
else
# see http://wiki.cacert.org/wiki/Pkcs11TaskForce
-pkcs11_DATA = #This will create the directory
if CYGWIN
PKCS11_SUFFIX=.dll
else
PKCS11_SUFFIX=.so
endif
-install-exec-hook: install-pkcs11DATA
+install-exec-hook:
+ $(mkdir_p) "$(DESTDIR)$(pkcs11dir)"
for l in opensc-pkcs11$(PKCS11_SUFFIX) onepin-opensc-pkcs11$(PKCS11_SUFFIX) pkcs11-spy$(PKCS11_SUFFIX); do \
rm -f "$(DESTDIR)$(pkcs11dir)/$$l"; \
$(LN_S) ../$$l "$(DESTDIR)$(pkcs11dir)/$$l"; \
--
1.7.8.6

View File

@ -1,72 +0,0 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/opensc/opensc-0.12.2-r1.ebuild,v 1.1 2012/05/22 18:27:34 vapier Exp $
EAPI="4"
inherit eutils autotools
DESCRIPTION="Libraries and applications to access smartcards"
HOMEPAGE="http://www.opensc-project.org/opensc/"
SRC_URI="http://www.opensc-project.org/files/${PN}/${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ppc ppc64 s390 sh sparc x86"
IUSE="doc libtool +pcsc-lite openct readline ssl zlib"
RDEPEND="libtool? ( sys-devel/libtool )
zlib? ( sys-libs/zlib )
readline? ( sys-libs/readline )
ssl? ( dev-libs/openssl )
openct? ( >=dev-libs/openct-0.5.0 )
pcsc-lite? ( >=sys-apps/pcsc-lite-1.3.0 )"
DEPEND="${RDEPEND}
virtual/pkgconfig
app-text/docbook-xsl-stylesheets
dev-libs/libxslt"
REQUIRED_USE="
pcsc-lite? ( !openct )
openct? ( !pcsc-lite )"
src_prepare() {
epatch "${FILESDIR}"/${PN}-0.12.1-crossbuild.patch
epatch "${FILESDIR}"/${P}-parallelinstall.patch
epatch "${FILESDIR}"/${P}-dl.patch
eautoreconf
}
src_configure() {
# disable everything, enable selectively
local myconf="--disable-pcsc --disable-openct --disable-ctapi"
if use pcsc-lite; then
myconf+=" --enable-pcsc"
elif use openct; then
myconf+=" --enable-openct"
else
myconf+=" --enable-ctapi"
fi
# the configure script prefers libtool's libltdl over
# the native system's dlopen ... so we have to manually
# control the behavior to something a bit more sane
export ac_cv_header_ltdl_h=$(usex libtool) \
ac_cv_lib_ltdl_lt_dlopen=$(usex libtool)
econf \
--docdir="/usr/share/doc/${PF}" \
--htmldir='$(docdir)/html' \
--disable-static \
$(use_enable doc) \
$(use_enable openct) \
$(use_enable readline) \
$(use_enable zlib) \
${myconf}
}
src_install() {
default
find "${ED}"/usr -name '*.la' -delete
}

View File

@ -1,11 +0,0 @@
DEFINED_PHASES=compile install prepare test
DEPEND=app-arch/unzip
DESCRIPTION=Crypto++ is a C++ class library of cryptographic schemes
EAPI=3
HOMEPAGE=http://cryptopp.com
KEYWORDS=alpha amd64 hppa ppc ppc64 sparc x86
LICENSE=cryptopp
SLOT=0
SRC_URI=mirror://sourceforge/cryptopp/cryptopp561.zip
_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e toolchain-funcs 185a06792159ca143528e7010368e8af
_md5_=06b107390b1b4ffdf5b8f2cdffbb1b1f

View File

@ -1,11 +0,0 @@
DEFINED_PHASES=compile install prepare test
DEPEND=app-arch/unzip sys-devel/libtool
DESCRIPTION=Crypto++ is a C++ class library of cryptographic schemes
EAPI=3
HOMEPAGE=http://cryptopp.com
KEYWORDS=alpha amd64 hppa ppc ppc64 sparc x86
LICENSE=cryptopp
SLOT=0
SRC_URI=mirror://sourceforge/cryptopp/cryptopp561.zip
_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e toolchain-funcs 185a06792159ca143528e7010368e8af
_md5_=8cecf72710522233188cfbddd8935a22

View File

@ -1,10 +0,0 @@
DEFINED_PHASES=compile install prepare
DESCRIPTION=Implementation for atomic memory update operations
EAPI=4
HOMEPAGE=http://www.hpl.hp.com/research/linux/atomic_ops/
KEYWORDS=~alpha amd64 arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris
LICENSE=MIT boehm-gc GPL-2+
SLOT=0
SRC_URI=http://www.hpl.hp.com/personal/Hans_Boehm/gc/gc_source/gc-7.2d.tar.gz
_eclasses_=multilib 97f470f374f2e94ccab04a2fb21d811e toolchain-funcs 185a06792159ca143528e7010368e8af
_md5_=04b557753b83ad4b2c35e72fb8ded5f3

View File

@ -1,13 +0,0 @@
DEFINED_PHASES=configure install prepare
DEPEND=cdio? ( >=dev-libs/libcdio-0.83 ) virtual/pkgconfig
DESCRIPTION=Libburn is an open-source library for reading, mastering and writing optical discs
EAPI=5
HOMEPAGE=http://libburnia-project.org
IUSE=cdio debug static-libs track-src-odirect
KEYWORDS=alpha amd64 arm hppa ia64 ppc ppc64 sparc x86
LICENSE=GPL-2
RDEPEND=cdio? ( >=dev-libs/libcdio-0.83 )
SLOT=0
SRC_URI=http://files.libburnia-project.org/releases/libburn-1.3.4.tar.gz
_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e toolchain-funcs 185a06792159ca143528e7010368e8af
_md5_=1f6d5cf417c357d6e4b98493fe3c673c

View File

@ -1,13 +0,0 @@
DEFINED_PHASES=configure install
DEPEND=cdio? ( >=dev-libs/libcdio-0.83 ) virtual/pkgconfig
DESCRIPTION=Libburn is an open-source library for reading, mastering and writing optical discs
EAPI=5
HOMEPAGE=http://libburnia-project.org
IUSE=cdio debug static-libs track-src-odirect
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86
LICENSE=GPL-2
RDEPEND=cdio? ( >=dev-libs/libcdio-0.83 )
SLOT=0
SRC_URI=http://files.libburnia-project.org/releases/libburn-1.3.8.tar.gz
_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e toolchain-funcs 185a06792159ca143528e7010368e8af
_md5_=91ec2bd196c9a1b8b280bff5e0c0bddd

View File

@ -1,13 +0,0 @@
DEFINED_PHASES=configure install
DEPEND=>=dev-libs/libburn-1.3.4 >=dev-libs/libisofs-1.3.4 readline? ( sys-libs/readline ) acl? ( virtual/acl ) xattr? ( sys-apps/attr ) zlib? ( sys-libs/zlib ) cdio? ( >=dev-libs/libcdio-0.83 ) launch-frontend? ( dev-lang/tcl:0 dev-lang/tk:0 ) launch-frontend-setuid? ( dev-lang/tcl:0 dev-lang/tk:0 ) frontend-optional? ( dev-tcltk/bwidget ) virtual/pkgconfig
DESCRIPTION=Enables creation and expansion of ISO-9660 filesystems on all CD/DVD media supported by libburn
EAPI=5
HOMEPAGE=http://libburnia-project.org/
IUSE=acl cdio debug external-filters external-filters-setuid frontend-optional launch-frontend launch-frontend-setuid readline static-libs xattr zlib
KEYWORDS=alpha amd64 arm hppa ppc ppc64 x86
LICENSE=GPL-2 GPL-3
RDEPEND=>=dev-libs/libburn-1.3.4 >=dev-libs/libisofs-1.3.4 readline? ( sys-libs/readline ) acl? ( virtual/acl ) xattr? ( sys-apps/attr ) zlib? ( sys-libs/zlib ) cdio? ( >=dev-libs/libcdio-0.83 ) launch-frontend? ( dev-lang/tcl:0 dev-lang/tk:0 ) launch-frontend-setuid? ( dev-lang/tcl:0 dev-lang/tk:0 ) frontend-optional? ( dev-tcltk/bwidget )
REQUIRED_USE=frontend-optional? ( || ( launch-frontend launch-frontend-setuid ) )
SLOT=0
SRC_URI=http://files.libburnia-project.org/releases/libisoburn-1.3.4.tar.gz
_md5_=07e602aa8aa1e34378d3014d0c199a93

View File

@ -1,14 +0,0 @@
DEFINED_PHASES=configure install
DEPEND=>=dev-libs/libburn-1.3.8 >=dev-libs/libisofs-1.3.8 readline? ( sys-libs/readline ) !readline? ( libedit? ( dev-libs/libedit ) ) acl? ( virtual/acl ) xattr? ( sys-apps/attr ) zlib? ( sys-libs/zlib ) cdio? ( >=dev-libs/libcdio-0.83 ) launch-frontend? ( dev-lang/tcl:0 dev-lang/tk:0 ) launch-frontend-setuid? ( dev-lang/tcl:0 dev-lang/tk:0 ) frontend-optional? ( dev-tcltk/bwidget ) virtual/pkgconfig
DESCRIPTION=Enables creation and expansion of ISO-9660 filesystems on all CD/DVD media supported by libburn
EAPI=5
HOMEPAGE=http://libburnia-project.org/
IUSE=acl cdio debug external-filters external-filters-setuid frontend-optional launch-frontend launch-frontend-setuid libedit readline static-libs xattr zlib
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86
LICENSE=GPL-2 GPL-3
RDEPEND=>=dev-libs/libburn-1.3.8 >=dev-libs/libisofs-1.3.8 readline? ( sys-libs/readline ) !readline? ( libedit? ( dev-libs/libedit ) ) acl? ( virtual/acl ) xattr? ( sys-apps/attr ) zlib? ( sys-libs/zlib ) cdio? ( >=dev-libs/libcdio-0.83 ) launch-frontend? ( dev-lang/tcl:0 dev-lang/tk:0 ) launch-frontend-setuid? ( dev-lang/tcl:0 dev-lang/tk:0 ) frontend-optional? ( dev-tcltk/bwidget )
REQUIRED_USE=frontend-optional? ( || ( launch-frontend launch-frontend-setuid ) )
SLOT=0
SRC_URI=http://files.libburnia-project.org/releases/libisoburn-1.3.8.tar.gz
_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e toolchain-funcs 185a06792159ca143528e7010368e8af
_md5_=d64827e42c3f455fddb3c9c76a36b195

View File

@ -1,12 +0,0 @@
DEFINED_PHASES=configure install
DEPEND=acl? ( virtual/acl ) xattr? ( sys-apps/attr ) zlib? ( sys-libs/zlib ) virtual/pkgconfig
DESCRIPTION=libisofs is an open-source library for reading, mastering and writing optical discs
EAPI=5
HOMEPAGE=http://libburnia-project.org/
IUSE=acl debug static-libs verbose-debug xattr zlib
KEYWORDS=alpha amd64 arm hppa ia64 ppc ppc64 sparc x86
LICENSE=GPL-2
RDEPEND=acl? ( virtual/acl ) xattr? ( sys-apps/attr ) zlib? ( sys-libs/zlib )
SLOT=0
SRC_URI=http://files.libburnia-project.org/releases/libisofs-1.3.4.tar.gz
_md5_=7bb886005ba07466248d693508bd4e1c

View File

@ -1,13 +0,0 @@
DEFINED_PHASES=configure install
DEPEND=acl? ( virtual/acl ) xattr? ( sys-apps/attr ) zlib? ( sys-libs/zlib ) virtual/pkgconfig
DESCRIPTION=libisofs is an open-source library for reading, mastering and writing optical discs
EAPI=5
HOMEPAGE=http://libburnia-project.org/
IUSE=acl debug static-libs verbose-debug xattr zlib
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86
LICENSE=GPL-2
RDEPEND=acl? ( virtual/acl ) xattr? ( sys-apps/attr ) zlib? ( sys-libs/zlib )
SLOT=0
SRC_URI=http://files.libburnia-project.org/releases/libisofs-1.3.8.tar.gz
_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e toolchain-funcs 185a06792159ca143528e7010368e8af
_md5_=706509db90836bf2226a27e6a0a75d0b

View File

@ -1,13 +0,0 @@
DEFINED_PHASES=install unpack
DEPEND=>=media-libs/freetype-2.1 X? ( x11-libs/libXaw x11-libs/libICE ) >=sys-apps/sed-4 dev-util/pkgconfig >=app-portage/elt-patches-20170422 !<sys-devel/gettext-0.18.1.1-r3 || ( >=sys-devel/automake-1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4
DESCRIPTION=Library for handling OpenType fonts (OTF)
EAPI=0
HOMEPAGE=http://www.m17n.org/libotf/
IUSE=X
KEYWORDS=alpha amd64 arm hppa ia64 ppc ppc64 sh sparc x86
LICENSE=LGPL-2.1
RDEPEND=>=media-libs/freetype-2.1 X? ( x11-libs/libXaw x11-libs/libICE )
SLOT=0
SRC_URI=http://www.m17n.org/libotf/libotf-0.9.8.tar.gz
_eclasses_=autotools dc412f38566b91012efd58b9c203e6c3 libtool 0081a71a261724730ec4c248494f044d multilib 97f470f374f2e94ccab04a2fb21d811e toolchain-funcs 185a06792159ca143528e7010368e8af
_md5_=f3f1be0a6fa3c9efb0a3f4a72f7b4a2a

View File

@ -1,13 +0,0 @@
DEFINED_PHASES=compile configure install prepare test
DEPEND=>=virtual/libusb-1-r1:1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] !dev-libs/libusb:0 abi_x86_32? ( !<=app-emulation/emul-linux-x86-baselibs-20130224-r7 !app-emulation/emul-linux-x86-baselibs[-abi_x86_32(-)] ) virtual/pkgconfig
DESCRIPTION=Userspace access to USB devices (libusb-0.1 compat wrapper)
EAPI=5
HOMEPAGE=http://libusb.sourceforge.net/
IUSE=debug examples static-libs abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_ppc_32 abi_ppc_64 abi_s390_32 abi_s390_64
KEYWORDS=alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos
LICENSE=LGPL-2.1
RDEPEND=>=virtual/libusb-1-r1:1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] !dev-libs/libusb:0 abi_x86_32? ( !<=app-emulation/emul-linux-x86-baselibs-20130224-r7 !app-emulation/emul-linux-x86-baselibs[-abi_x86_32(-)] )
SLOT=0
SRC_URI=mirror://sourceforge/libusb/libusb-compat-0.1.5.tar.bz2
_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 ltprune 2770eed66a9b8ef944714cd0e968182e multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e multilib-build eed53a6313267c9fbcd35fc384bd0087 multilib-minimal 9139c3a57e077cb8e0d0f73ceb080b89 toolchain-funcs 185a06792159ca143528e7010368e8af
_md5_=d07544fc43d69412a5bb8cfb69ab4287

View File

@ -1,13 +0,0 @@
DEFINED_PHASES=compile configure install prepare test
DEPEND=>=virtual/libusb-1-r1:1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] !dev-libs/libusb:0 abi_x86_32? ( !<=app-emulation/emul-linux-x86-baselibs-20130224-r7 !app-emulation/emul-linux-x86-baselibs[-abi_x86_32(-)] ) virtual/pkgconfig
DESCRIPTION=Userspace access to USB devices (libusb-0.1 compat wrapper)
EAPI=5
HOMEPAGE=http://libusb.sourceforge.net/
IUSE=debug examples static-libs abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_ppc_32 abi_ppc_64 abi_s390_32 abi_s390_64
KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos
LICENSE=LGPL-2.1
RDEPEND=>=virtual/libusb-1-r1:1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] !dev-libs/libusb:0 abi_x86_32? ( !<=app-emulation/emul-linux-x86-baselibs-20130224-r7 !app-emulation/emul-linux-x86-baselibs[-abi_x86_32(-)] )
SLOT=0
SRC_URI=mirror://sourceforge/libusb/libusb-compat-0.1.5.tar.bz2
_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 ltprune 2770eed66a9b8ef944714cd0e968182e multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e multilib-build eed53a6313267c9fbcd35fc384bd0087 multilib-minimal 9139c3a57e077cb8e0d0f73ceb080b89 toolchain-funcs 185a06792159ca143528e7010368e8af
_md5_=f9993e2d95c66c1f619e35d5d8d59344

View File

@ -1,14 +0,0 @@
DEFINED_PHASES=compile configure install prepare
DEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-libs/popt-1.6 =sys-libs/slang-2* elibc_uclibc? ( sys-libs/ncurses ) gpm? ( sys-libs/gpm ) tcl? ( >=dev-lang/tcl-8.5:0 ) >=app-portage/elt-patches-20170422 !<sys-devel/gettext-0.18.1.1-r3 || ( >=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4
DESCRIPTION=Redhat's Newt windowing toolkit development files
EAPI=5
HOMEPAGE=https://fedorahosted.org/newt/
IUSE=gpm tcl nls python_targets_python2_7
KEYWORDS=alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 sparc x86 ~x86-fbsd
LICENSE=LGPL-2
RDEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-libs/popt-1.6 =sys-libs/slang-2* elibc_uclibc? ( sys-libs/ncurses ) gpm? ( sys-libs/gpm ) tcl? ( >=dev-lang/tcl-8.5:0 )
REQUIRED_USE=|| ( python_targets_python2_7 )
SLOT=0
SRC_URI=https://fedorahosted.org/releases/n/e/newt/newt-0.52.15.tar.gz
_eclasses_=autotools dc412f38566b91012efd58b9c203e6c3 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 libtool 0081a71a261724730ec4c248494f044d ltprune 2770eed66a9b8ef944714cd0e968182e multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e python-r1 e9350ec46bb5c9f3504b4fbe8b8d8987 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d toolchain-funcs 185a06792159ca143528e7010368e8af
_md5_=f03887f5ff80fbc74943d4bfcd2bf1d4

View File

@ -1,14 +0,0 @@
DEFINED_PHASES=compile configure install prepare
DEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-libs/popt-1.6 =sys-libs/slang-2* elibc_uclibc? ( sys-libs/ncurses ) gpm? ( sys-libs/gpm ) tcl? ( >=dev-lang/tcl-8.5:0 ) >=app-portage/elt-patches-20170422 !<sys-devel/gettext-0.18.1.1-r3 || ( >=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4
DESCRIPTION=Redhat's Newt windowing toolkit development files
EAPI=5
HOMEPAGE=https://fedorahosted.org/newt/
IUSE=gpm tcl nls python_targets_python2_7
KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd
LICENSE=LGPL-2
RDEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-libs/popt-1.6 =sys-libs/slang-2* elibc_uclibc? ( sys-libs/ncurses ) gpm? ( sys-libs/gpm ) tcl? ( >=dev-lang/tcl-8.5:0 )
REQUIRED_USE=|| ( python_targets_python2_7 )
SLOT=0
SRC_URI=https://fedorahosted.org/releases/n/e/newt/newt-0.52.18.tar.gz
_eclasses_=autotools dc412f38566b91012efd58b9c203e6c3 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 libtool 0081a71a261724730ec4c248494f044d ltprune 2770eed66a9b8ef944714cd0e968182e multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e python-r1 e9350ec46bb5c9f3504b4fbe8b8d8987 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d toolchain-funcs 185a06792159ca143528e7010368e8af
_md5_=4db88009a1481bcc78b8237b9133c67a

View File

@ -1,14 +0,0 @@
DEFINED_PHASES=configure install prepare setup
DEPEND=tpm? ( app-crypt/trousers ) dev-libs/openssl >=app-portage/elt-patches-20170422 !<sys-devel/gettext-0.18.1.1-r3 || ( >=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4
DESCRIPTION=PKCS#11 provider cryptographic hardware
EAPI=2
HOMEPAGE=http://sourceforge.net/projects/opencryptoki
IUSE=+tpm debug
KEYWORDS=~amd64 ~arm ~x86
LICENSE=CPL-0.5
RDEPEND=tpm? ( app-crypt/trousers ) dev-libs/openssl
RESTRICT=test
SLOT=0
SRC_URI=mirror://sourceforge/opencryptoki/opencryptoki-2.3.3.tar.bz2 http://dev.gentoo.org/~flameeyes/opencryptoki/opencryptoki-2.3.3-backports-3.tar.bz2
_eclasses_=autotools dc412f38566b91012efd58b9c203e6c3 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 libtool 0081a71a261724730ec4c248494f044d ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e toolchain-funcs 185a06792159ca143528e7010368e8af user e4b567c44272a719fabf53f0f885d3f7
_md5_=31df884580d6cceebc6ee77cc4ad8d3e

View File

@ -1,14 +0,0 @@
DEFINED_PHASES=configure install prepare setup
DEPEND=tpm? ( app-crypt/trousers ) dev-libs/openssl >=app-portage/elt-patches-20170422 !<sys-devel/gettext-0.18.1.1-r3 || ( >=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4
DESCRIPTION=PKCS#11 provider cryptographic hardware
EAPI=2
HOMEPAGE=http://sourceforge.net/projects/opencryptoki
IUSE=+tpm debug
KEYWORDS=~amd64 ~arm ~x86
LICENSE=CPL-0.5
RDEPEND=tpm? ( app-crypt/trousers ) dev-libs/openssl
RESTRICT=test
SLOT=0
SRC_URI=mirror://sourceforge/opencryptoki/opencryptoki-2.4.2.tar.gz
_eclasses_=autotools dc412f38566b91012efd58b9c203e6c3 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 flag-o-matic 2274fcc1e7ef6affaff5bcd636275417 libtool 0081a71a261724730ec4c248494f044d ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e toolchain-funcs 185a06792159ca143528e7010368e8af user e4b567c44272a719fabf53f0f885d3f7
_md5_=aa69182b25f69a856692a63ec36ffad8

View File

@ -1,14 +0,0 @@
DEFINED_PHASES=configure install prepare
DEPEND=libtool? ( sys-devel/libtool ) zlib? ( sys-libs/zlib ) readline? ( sys-libs/readline ) ssl? ( dev-libs/openssl ) openct? ( >=dev-libs/openct-0.5.0 ) pcsc-lite? ( >=sys-apps/pcsc-lite-1.3.0 ) virtual/pkgconfig app-text/docbook-xsl-stylesheets dev-libs/libxslt >=app-portage/elt-patches-20170422 !<sys-devel/gettext-0.18.1.1-r3 || ( >=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4
DESCRIPTION=Libraries and applications to access smartcards
EAPI=4
HOMEPAGE=http://www.opensc-project.org/opensc/
IUSE=doc libtool +pcsc-lite openct readline ssl zlib
KEYWORDS=alpha amd64 arm hppa ia64 m68k ppc ppc64 s390 sh sparc x86
LICENSE=LGPL-2.1
RDEPEND=libtool? ( sys-devel/libtool ) zlib? ( sys-libs/zlib ) readline? ( sys-libs/readline ) ssl? ( dev-libs/openssl ) openct? ( >=dev-libs/openct-0.5.0 ) pcsc-lite? ( >=sys-apps/pcsc-lite-1.3.0 )
REQUIRED_USE=pcsc-lite? ( !openct ) openct? ( !pcsc-lite )
SLOT=0
SRC_URI=http://www.opensc-project.org/files/opensc/opensc-0.12.2.tar.gz
_eclasses_=autotools dc412f38566b91012efd58b9c203e6c3 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 227b041a120d309fdefbebb3b8c1dfa9 libtool 0081a71a261724730ec4c248494f044d ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e toolchain-funcs 185a06792159ca143528e7010368e8af
_md5_=1188bfbde2fa06d0361d6868e5d23c39