From 56bd759df1d0c750a065b8c845e93d5dfa6b549d Mon Sep 17 00:00:00 2001 From: "Robin H. Johnson" Date: Sat, 8 Aug 2015 13:49:04 -0700 Subject: proj/gentoo: Initial commit MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This commit represents a new era for Gentoo: Storing the gentoo-x86 tree in Git, as converted from CVS. This commit is the start of the NEW history. Any historical data is intended to be grafted onto this point. Creation process: 1. Take final CVS checkout snapshot 2. Remove ALL ChangeLog* files 3. Transform all Manifests to thin 4. Remove empty Manifests 5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$ 5.1. Do not touch files with -kb/-ko keyword flags. Signed-off-by: Robin H. Johnson X-Thanks: Alec Warner - did the GSoC 2006 migration tests X-Thanks: Robin H. Johnson - infra guy, herding this project X-Thanks: Nguyen Thai Ngoc Duy - Former Gentoo developer, wrote Git features for the migration X-Thanks: Brian Harring - wrote much python to improve cvs2svn X-Thanks: Rich Freeman - validation scripts X-Thanks: Patrick Lauer - Gentoo dev, running new 2014 work in migration X-Thanks: Michał Górny - scripts, QA, nagging X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed --- app-cdr/xbiso/Manifest | 1 + app-cdr/xbiso/files/xbiso-0.6.1-libs.patch | 21 +++++++++++++++++ app-cdr/xbiso/metadata.xml | 9 +++++++ app-cdr/xbiso/xbiso-0.6.1-r1.ebuild | 34 ++++++++++++++++++++++++++ app-cdr/xbiso/xbiso-0.6.1-r2.ebuild | 38 ++++++++++++++++++++++++++++++ app-cdr/xbiso/xbiso-0.6.1.ebuild | 27 +++++++++++++++++++++ 6 files changed, 130 insertions(+) create mode 100644 app-cdr/xbiso/Manifest create mode 100644 app-cdr/xbiso/files/xbiso-0.6.1-libs.patch create mode 100644 app-cdr/xbiso/metadata.xml create mode 100644 app-cdr/xbiso/xbiso-0.6.1-r1.ebuild create mode 100644 app-cdr/xbiso/xbiso-0.6.1-r2.ebuild create mode 100644 app-cdr/xbiso/xbiso-0.6.1.ebuild (limited to 'app-cdr/xbiso') diff --git a/app-cdr/xbiso/Manifest b/app-cdr/xbiso/Manifest new file mode 100644 index 000000000000..bf6bd404669c --- /dev/null +++ b/app-cdr/xbiso/Manifest @@ -0,0 +1 @@ +DIST xbiso-0.6.1.tar.gz 49698 SHA256 5d7a051e2dc3d7ff07ac75ce6e6625e7aaaed4ca439401275ce54e96dc531c92 SHA512 351b558c591c3a6c633fb07e081d57cf7ac8b15272ae19878f7d33a796567177aa4eb2fad64d71e6fd86ac18e1c25d30b52013a83ce5d44854f37ec893282fcc WHIRLPOOL f2cb7e644b087710b4ceb5c21c940396ce117be36861eb7e76943e3f9a02827f85072a04ad225514b931f75467cf910f0c957726ac996f09f7ca56748055fe80 diff --git a/app-cdr/xbiso/files/xbiso-0.6.1-libs.patch b/app-cdr/xbiso/files/xbiso-0.6.1-libs.patch new file mode 100644 index 000000000000..5b48ba674230 --- /dev/null +++ b/app-cdr/xbiso/files/xbiso-0.6.1-libs.patch @@ -0,0 +1,21 @@ +--- configure.in.orig 2014-12-02 18:56:23.000000000 +0300 ++++ configure.in 2014-12-02 19:09:46.724190436 +0300 +@@ -6,13 +6,13 @@ + + dnl Checks for libraries. + dnl Replace `main' with a function in -lftp: +-AC_CHECK_LIB(ftp, main,[LIBS="-DUSE_FTP -lftp"],AC_MSG_WARN([Warning libftp not found ftp features disabled])) + AC_CHECK_LIB(m, ceil,[LIBS="$LIBS -lm"],AC_MSG_ERROR([Error mlib is required])) +-AC_ARG_ENABLE(ftp, +-[ ++AC_ARG_ENABLE([ftp], ++ AS_HELP_STRING([--disable-ftp],[Disables all ftp features and libftp dependencies])) + +- --disable-ftp Disables all ftp features and libftp dependencies +-],[LIBS=""]) ++AS_IF([test "x$enable_ftp" != "xno"], [ ++ AC_SEARCH_LIBS([FtpInit],[ftp],[CPPFLAGS+="-DUSE_FTP"],AC_MSG_ERROR([libftp not found])) ++]) + + dnl Checks for header files. + AC_CONFIG_HEADERS([config.h:config.h.in]) diff --git a/app-cdr/xbiso/metadata.xml b/app-cdr/xbiso/metadata.xml new file mode 100644 index 000000000000..d580470d000b --- /dev/null +++ b/app-cdr/xbiso/metadata.xml @@ -0,0 +1,9 @@ + + + + media-optical + Tools for manipulating Xbox ISO images + + xbiso + + diff --git a/app-cdr/xbiso/xbiso-0.6.1-r1.ebuild b/app-cdr/xbiso/xbiso-0.6.1-r1.ebuild new file mode 100644 index 000000000000..b279998a84b9 --- /dev/null +++ b/app-cdr/xbiso/xbiso-0.6.1-r1.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=4 +inherit flag-o-matic + +DESCRIPTION="Xbox xdvdfs ISO extraction utility" +HOMEPAGE="http://sourceforge.net/projects/xbiso/" +SRC_URI="mirror://sourceforge/xbiso/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos" +IUSE="" + +RDEPEND="net-libs/ftplib" +DEPEND="${RDEPEND}" + +src_prepare() { + sed -i -e 's:C) $(CFLAGS):C) $(LDFLAGS) $(CFLAGS):' Makefile.in || die #337769 +} + +src_configure() { + # for this package, interix behaves the same as BSD + [[ ${CHOST} == *-interix* ]] && append-flags -D_BSD + + default +} + +src_install() { + dobin xbiso + dodoc CHANGELOG README +} diff --git a/app-cdr/xbiso/xbiso-0.6.1-r2.ebuild b/app-cdr/xbiso/xbiso-0.6.1-r2.ebuild new file mode 100644 index 000000000000..21fe5509de72 --- /dev/null +++ b/app-cdr/xbiso/xbiso-0.6.1-r2.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +inherit autotools eutils flag-o-matic + +DESCRIPTION="Xbox xdvdfs ISO extraction utility" +HOMEPAGE="http://sourceforge.net/projects/xbiso/" +SRC_URI="mirror://sourceforge/xbiso/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos" +IUSE="ftp" + +RDEPEND="ftp? (