1

initial commit

This commit is contained in:
2011-09-07 21:52:54 +04:00
commit a875af6b67
122 changed files with 6256 additions and 0 deletions
app-emulation/qemu
app-pda/synce-librtfcomp
app-portage/findcruft
dev-libs/ace
games-action
games-arcade/mars-bin
games-emulation
games-strategy/hedgewars
kde-base/kdeplasma-addons
kde-misc/ihatethecashew
media-libs/sdl-net
net-firewall
net-ftp/tftp-hpa
net-misc
profiles
sets.conf
sets
sys-devel/spl
sys-fs/zfs
x11-drivers/nvidia-drivers
x11-libs/libxcb
x11-misc

@ -0,0 +1,3 @@
AUX sdl-net-1.2.7-ipv6-new.patch 37622 RMD160 46f6051ae637412fbdea404f3f5131ccf7f29f89 SHA1 b2204efb22d22c20d5424b5605199e1e431d124a SHA256 746da9f0aff50dccbae079898693d9835f4ebfd6e2b1bf13fb20b7d3eeb37a9e
DIST SDL_net-1.2.7.tar.gz 373866 RMD160 5c95cf28f35ceb796188323666b92cafa60fba25 SHA1 b46c7e3221621cc34fec1238f1b5f0ce8972274d SHA256 2ce7c84e62ff8117b9f205758bcce68ea603e08bc9d6936ded343735b8b77c53
EBUILD sdl-net-1.2.7-r9999.ebuild 1434 RMD160 d11f19ab90544f03f0133130d6f6597c3982c4d3 SHA1 16b61c9a1a00b4b0bf861030e70b6be6f7c7c5a0 SHA256 1c60f2b941cffb9031b33ba970dd95972e467bb63a9de750bae7e0d66b7bfba1

File diff suppressed because it is too large Load Diff

@ -0,0 +1,50 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/sdl-net/sdl-net-1.2.7.ebuild,v 1.13 2010/07/27 00:52:41 mr_bones_ Exp $
# Pinkbyte: needed for eautoreconf, epatch
inherit autotools eutils
#
EAPI=2
MY_P=${P/sdl-/SDL_}
DESCRIPTION="Simple Direct Media Layer Network Support Library"
HOMEPAGE="http://www.libsdl.org/projects/SDL_net/index.html"
SRC_URI="http://www.libsdl.org/projects/SDL_net/release/${MY_P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
IUSE="ipv6 static-libs"
DEPEND=">=media-libs/libsdl-1.2.5"
S=${WORKDIR}/${MY_P}
src_prepare() {
# Pinkbyte: patch for IPv6
use ipv6 && epatch "${FILESDIR}/${P}-ipv6-new.patch"
# epatch "${FILESDIR}/1-additional-sdlnet-tcp.patch"
# epatch "${FILESDIR}/2-additional-revert-chat-cpp.patch"
# epatch "${FILESDIR}/3-sdlnet-h.patch"
# epatch "${FILESDIR}/4-sdlnet-c.patch"
eautoreconf
}
src_configure() {
econf \
--disable-dependency-tracking \
$(use_enable static-libs static) \
$(use_enable ipv6)
}
src_install() {
emake DESTDIR="${D}" install || die "make install failed"
dodoc CHANGES README
if ! use static-libs ; then
find "${D}" -type f -name '*.la' -exec rm {} + \
|| die "la removal failed"
fi
}