Sync with portage [Thu Aug 23 10:53:07 MSK 2012].

This commit is contained in:
root 2012-08-23 10:53:12 +04:00
parent 39eb93d29a
commit 09bd5be71f
207 changed files with 2630 additions and 1729 deletions

View file

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/haskell-updater/haskell-updater-1.2.0.6.ebuild,v 1.1 2012/07/08 18:13:13 slyfox Exp $
# $Header: /var/cvsroot/gentoo-x86/app-admin/haskell-updater/haskell-updater-1.2.0.6.ebuild,v 1.2 2012/08/22 18:31:30 grobian Exp $
EAPI=4
@ -13,7 +13,7 @@ SRC_URI="http://hackage.haskell.org/packages/archive/${PN}/${PV}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~ppc-macos ~x86-macos ~sparc-solaris ~x86-solaris" # Add keywords as those archs have a binpkg
KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris" # Add keywords as those archs have a binpkg
IUSE=""
DEPEND=">=dev-lang/ghc-6.12.1"

View file

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-editors/elvis/elvis-2.2.0-r4.ebuild,v 1.4 2012/08/06 21:21:49 ranger Exp $
# $Header: /var/cvsroot/gentoo-x86/app-editors/elvis/elvis-2.2.0-r4.ebuild,v 1.5 2012/08/22 23:01:52 xmw Exp $
EAPI="3"
@ -14,7 +14,7 @@ SRC_URI="ftp://ftp.cs.pdx.edu/pub/elvis/${PN}-${MY_PV}.tar.gz"
LICENSE="Artistic"
SLOT="0"
KEYWORDS="~alpha amd64 ~ppc ppc64 ~sparc x86 ~x86-interix ~ppc-macos ~x86-macos ~m68k-mint ~sparc-solaris"
KEYWORDS="~alpha amd64 ppc ppc64 ~sparc x86 ~x86-interix ~ppc-macos ~x86-macos ~m68k-mint ~sparc-solaris"
IUSE="X"
DEPEND=">=sys-libs/ncurses-5.2

View file

@ -0,0 +1,127 @@
--- a/Config.kmk 2012-08-22 10:44:28.280834966 -0400
+++ b/Config.kmk 2012-08-22 10:44:35.990837245 -0400
@@ -2126,6 +2126,7 @@
$(APPEND) '$@' 'VBOX_GCC_Wno-variadic-macros ?= $(call VBOX_GCC_CHECK_CXX,-Wno-variadic-macros,)'
$(APPEND) '$@' 'VBOX_GCC_fdiagnostics-show-option ?= $(call VBOX_GCC_CHECK_CC,-fdiagnostics-show-option,)'
$(APPEND) '$@' 'VBOX_GCC_fno-stack-protector ?= $(call VBOX_GCC_CHECK_CC,-fno-stack-protector,)'
+ $(APPEND) '$@' 'VBOX_GCC_nopie ?= $(call VBOX_GCC_CHECK_CC,-nopie,)'
# Produce code optimized for the most common IA32/AMD64/EM64T processors. Introduced with gcc version 4.2.
$(APPEND) '$@' 'VBOX_GCC_mtune-generic ?= $(call VBOX_GCC_CHECK_CC,-mtune=generic,)'
$(APPEND) '$@' 'VBOX_LD_as_needed ?= $(call VBOX_GCC_CHECK_LD,--as-needed,)'
@@ -2643,8 +2644,8 @@
ifeq ($(VBOX_LDR_FMT32),elf)
TEMPLATE_VBoxRc_TOOL = $(VBOX_GCC32_TOOL)
- TEMPLATE_VBoxRc_CXXFLAGS = -nostdinc -g -pipe $(VBOX_GCC_WERR) $(VBOX_GCC_PEDANTIC_CXX) $(VBOX_GCC32_Wno-variadic-macros) -fno-exceptions $(VBOX_GCC_GC_OPT) $(VBOX_GCC_GC_FP) -mno-sse -mno-mmx -mno-sse2 -mno-3dnow -fno-strict-aliasing $(VBOX_GCC_fno-stack-protector) $(VBOX_GCC_fvisibility-hidden) $(VBOX_GCC_fvisibility-inlines-hidden) -fno-rtti
- TEMPLATE_VBoxRc_CFLAGS = -nostdinc -g -pipe $(VBOX_GCC_WERR) $(VBOX_GCC_PEDANTIC_C) $(VBOX_GCC32_Wno-variadic-macros) -fno-exceptions $(VBOX_GCC_GC_OPT) $(VBOX_GCC_GC_FP) -mno-sse -mno-mmx -mno-sse2 -mno-3dnow -fno-strict-aliasing $(VBOX_GCC_fno-stack-protector) $(VBOX_GCC_fvisibility-hidden)
+ TEMPLATE_VBoxRc_CXXFLAGS = -nostdinc -g -pipe $(VBOX_GCC_WERR) $(VBOX_GCC_PEDANTIC_CXX) $(VBOX_GCC32_Wno-variadic-macros) -fno-exceptions $(VBOX_GCC_GC_OPT) $(VBOX_GCC_GC_FP) -mno-sse -mno-mmx -mno-sse2 -mno-3dnow -fno-strict-aliasing $(VBOX_GCC_fno-stack-protector) $(VBOX_GCC_nopie) $(VBOX_GCC_fvisibility-hidden) $(VBOX_GCC_fvisibility-inlines-hidden) -fno-rtti
+ TEMPLATE_VBoxRc_CFLAGS = -nostdinc -g -pipe $(VBOX_GCC_WERR) $(VBOX_GCC_PEDANTIC_C) $(VBOX_GCC32_Wno-variadic-macros) -fno-exceptions $(VBOX_GCC_GC_OPT) $(VBOX_GCC_GC_FP) -mno-sse -mno-mmx -mno-sse2 -mno-3dnow -fno-strict-aliasing $(VBOX_GCC_fno-stack-protector) $(VBOX_GCC_nopie) $(VBOX_GCC_fvisibility-hidden)
ifeq ($(KBUILD_TARGET),solaris)
TEMPLATE_VBoxRc_LDFLAGS = -r
else
@@ -2704,9 +2705,9 @@
endif
ifeq ($(VBOX_LDR_FMT32),elf)
- TEMPLATE_VBoxRcExe_CFLAGS = $(filter-out -nostdinc,$(TEMPLATE_VBoxRc_CFLAGS)) -O0
- TEMPLATE_VBoxRcExe_CXXFLAGS = $(filter-out -nostdinc,$(TEMPLATE_VBoxRc_CXXFLAGS)) -O0
- TEMPLATE_VBoxRcExe_LDFLAGS = -g
+ TEMPLATE_VBoxRcExe_CFLAGS = $(filter-out -nostdinc,$(TEMPLATE_VBoxRc_CFLAGS)) -O0 $(VBOX_GCC_nopie)
+ TEMPLATE_VBoxRcExe_CXXFLAGS = $(filter-out -nostdinc,$(TEMPLATE_VBoxRc_CXXFLAGS)) -O0 $(VBOX_GCC_nopie)
+ TEMPLATE_VBoxRcExe_LDFLAGS = -g $(VBOX_GCC_nopie)
TEMPLATE_VBoxRcExe_LDFLAGS.dbgopt = -g
TEMPLATE_VBoxRcExe_LDFLAGS.strict = -g
TEMPLATE_VBoxRcExe_LDFLAGS.release = -g
@@ -2768,8 +2769,8 @@
ifeq ($(VBOX_LDR_FMT),elf)
TEMPLATE_VBoxR0_TOOL = $(VBOX_GCC_TOOL)
-TEMPLATE_VBoxR0_CFLAGS = -nostdinc -g -pipe $(VBOX_GCC_WERR) $(VBOX_GCC_PEDANTIC_C) $(VBOX_GCC_Wno-variadic-macros) $(VBOX_GCC_R0_OPT) $(VBOX_GCC_R0_FP) -fno-strict-aliasing -fno-exceptions $(VBOX_GCC_fno-stack-protector) $(VBOX_GCC_fvisibility-hidden) -std=gnu99
-TEMPLATE_VBoxR0_CXXFLAGS = -nostdinc -g -pipe $(VBOX_GCC_WERR) $(VBOX_GCC_PEDANTIC_CXX) $(VBOX_GCC_Wno-variadic-macros) $(VBOX_GCC_R0_OPT) $(VBOX_GCC_R0_FP) -fno-strict-aliasing -fno-exceptions $(VBOX_GCC_fno-stack-protector) $(VBOX_GCC_fvisibility-inlines-hidden) $(VBOX_GCC_fvisibility-hidden) -fno-rtti
+TEMPLATE_VBoxR0_CFLAGS = -nostdinc -g -pipe $(VBOX_GCC_WERR) $(VBOX_GCC_PEDANTIC_C) $(VBOX_GCC_Wno-variadic-macros) $(VBOX_GCC_R0_OPT) $(VBOX_GCC_R0_FP) -fno-strict-aliasing -fno-exceptions $(VBOX_GCC_fno-stack-protector) $(VBOX_GCC_nopie) $(VBOX_GCC_fvisibility-hidden) -std=gnu99
+TEMPLATE_VBoxR0_CXXFLAGS = -nostdinc -g -pipe $(VBOX_GCC_WERR) $(VBOX_GCC_PEDANTIC_CXX) $(VBOX_GCC_Wno-variadic-macros) $(VBOX_GCC_R0_OPT) $(VBOX_GCC_R0_FP) -fno-strict-aliasing -fno-exceptions $(VBOX_GCC_fno-stack-protector) $(VBOX_GCC_nopie) $(VBOX_GCC_fvisibility-inlines-hidden) $(VBOX_GCC_fvisibility-hidden) -fno-rtti
TEMPLATE_VBoxR0_CFLAGS.amd64 = -m64 -mno-red-zone -mcmodel=kernel -mno-sse -mno-mmx -mno-sse2 -mno-3dnow -fno-asynchronous-unwind-tables -ffreestanding
TEMPLATE_VBoxR0_CXXFLAGS.amd64 = -m64 -mno-red-zone -mcmodel=kernel -mno-sse -mno-mmx -mno-sse2 -mno-3dnow -fno-asynchronous-unwind-tables
ifeq ($(KBUILD_TARGET),solaris)
@@ -2794,12 +2795,12 @@
TEMPLATE_VBoxR0_DEFS += $(VBOX_DARWIN_DEF_SDK_DEFS)
TEMPLATE_VBoxR0_CXXFLAGS = $(VBOX_DARWIN_DEF_SDK_CXXFLAGS) -nostdinc -g -pipe $(VBOX_GCC_WERR) $(VBOX_GCC_PEDANTIC_CXX) $(VBOX_GCC_Wno-variadic-macros) \
-fno-common -msoft-float -static -fno-rtti -fno-exceptions $(VBOX_GCC_R0_OPT) $(VBOX_GCC_R0_FP) -fno-strict-aliasing \
- -mno-sse -mno-mmx -mno-sse2 -mno-3dnow $(VBOX_GCC_fno-stack-protector)
+ -mno-sse -mno-mmx -mno-sse2 -mno-3dnow $(VBOX_GCC_fno-stack-protector) $(VBOX_GCC_nopie)
TEMPLATE_VBoxR0_CXXFLAGS.amd64 = -m64 -mno-red-zone -mno-sse3 -mno-sse4 -mno-sse4.1 -mno-sse4.2 -mno-sse4a -fno-unwind-tables
TEMPLATE_VBoxR0_CXXFLAGS.x86 = -m32
TEMPLATE_VBoxR0_CFLAGS = $(VBOX_DARWIN_DEF_SDK_CFLAGS) -nostdinc -g -pipe $(VBOX_GCC_WERR) $(VBOX_GCC_PEDANTIC_C) $(VBOX_GCC_Wno-variadic-macros) \
-fno-common -msoft-float -static -fno-exceptions $(VBOX_GCC_R0_OPT) $(VBOX_GCC_R0_FP) -fno-strict-aliasing \
- -mno-sse -mno-mmx -mno-sse2 -mno-3dnow $(VBOX_GCC_fno-stack-protector)
+ -mno-sse -mno-mmx -mno-sse2 -mno-3dnow $(VBOX_GCC_fno-stack-protector) $(VBOX_GCC_nopie)
TEMPLATE_VBoxR0_CFLAGS.amd64 = -m64 -mno-red-zone -mno-sse3 -mno-sse4 -mno-sse4.1 -mno-sse4.2 -mno-sse4a -fno-unwind-tables
TEMPLATE_VBoxR0_CFLAGS.x86 = -m32
TEMPLATE_VBoxR0_LDFLAGS = $(VBOX_DARWIN_DEF_SDK_LDFLAGS) -nostdlib
@@ -2861,7 +2862,7 @@
TEMPLATE_VBOXR0DRV_INCS = $(VBOX_LINUX_INCS)
TEMPLATE_VBOXR0DRV_CFLAGS = -nostdinc -iwithprefix include $(VBOX_LINUX_INCLUDE) \
$(VBOX_GCC_WARN) -Wstrict-prototypes $(VBOX_GCC_Wno-pointer-sign) -Wno-sign-compare \
- $(VBOX_GCC_fno-stack-protector) $(VBOX_GCC_R0_OPT) $(VBOX_GCC_R0_FP) -fno-strict-aliasing -fno-common -Werror-implicit-function-declaration
+ $(VBOX_GCC_fno-stack-protector) $(VBOX_GCC_nopie) $(VBOX_GCC_R0_OPT) $(VBOX_GCC_R0_FP) -fno-strict-aliasing -fno-common -Werror-implicit-function-declaration
TEMPLATE_VBOXR0DRV_CFLAGS.x86 = -mpreferred-stack-boundary=2 -msoft-float
TEMPLATE_VBOXR0DRV_CFLAGS.amd64 = -m64 -mno-red-zone -mcmodel=kernel -mno-sse -mno-mmx -mno-sse2 -mno-3dnow \
-fno-reorder-blocks -ffreestanding -fno-asynchronous-unwind-tables -funit-at-a-time \
@@ -2985,7 +2986,7 @@
-Wstrict-prototypes -Wmissing-prototypes -Wstrict-prototypes -Wnested-externs \
-Wimplicit-function-declaration -Werror-implicit-function-declaration \
-O2 -fformat-extensions -ffreestanding -fno-strict-aliasing -fno-common -finline-limit=8000 \
- $(VBOX_GCC_fno-stack-protector) $(VBOX_GCC_R0_OPT) $(VBOX_GCC_R0_FP) \
+ $(VBOX_GCC_fno-stack-protector) $(VBOX_GCC_nopie) $(VBOX_GCC_R0_OPT) $(VBOX_GCC_R0_FP) \
-nostdinc -std=c99
TEMPLATE_VBOXR0DRV_CFLAGS.x86 = -m32 -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2
TEMPLATE_VBOXR0DRV_CFLAGS.amd64 = -m64 --param inline-unit-growth=100 --param large-function-growth=1000 \
@@ -2994,7 +2995,7 @@
TEMPLATE_VBOXR0DRV_CXXFLAGS = -fno-exceptions -fno-rtti \
$(VBOX_GCC_WARN) -Wpointer-arith -Winline \
-O2 -fno-format-extensions -fno-strict-aliasing -fno-common -finline-limit=8000 \
- $(VBOX_GCC_fno-stack-protector) $(VBOX_GCC_R0_OPT) $(VBOX_GCC_R0_FP) \
+ $(VBOX_GCC_fno-stack-protector) $(VBOX_GCC_nopie) $(VBOX_GCC_R0_OPT) $(VBOX_GCC_R0_FP) \
-nostdinc
TEMPLATE_VBOXR0DRV_CXXFLAGS.x86 = $(TEMPLATE_VBOXR0DRV_CFLAGS.x86)
TEMPLATE_VBOXR0DRV_CXXFLAGS.amd64 = $(TEMPLATE_VBOXR0DRV_CFLAGS.amd64)
@@ -3546,8 +3547,8 @@
TEMPLATE_VBOXNOCRTGCC_TOOL = $(VBOX_GCC_TOOL)
TEMPLATE_VBOXNOCRTGCC_ASTOOL = $(VBOX_ASTOOL)
TEMPLATE_VBOXNOCRTGCC_ASFLAGS = $(VBOX_ASFLAGS)
- TEMPLATE_VBOXNOCRTGCC_CFLAGS += $(VBOX_GCC_fno-stack-protector)
- TEMPLATE_VBOXNOCRTGCC_CXXFLAGS += $(VBOX_GCC_fno-stack-protector)
+ TEMPLATE_VBOXNOCRTGCC_CFLAGS += $(VBOX_GCC_fno-stack-protector) $(VBOX_GCC_nopie)
+ TEMPLATE_VBOXNOCRTGCC_CXXFLAGS += $(VBOX_GCC_fno-stack-protector) $(VBOX_GCC_nopie)
ifeq ($(KBUILD_TARGET_ARCH),amd64)
# in 64-bit mode we'll build a sys-module (VBoxREM2).
if1of ($(KBUILD_TARGET), darwin solaris)
@@ -4392,7 +4393,7 @@
TEMPLATE_VBOXLNXHOSTR3EXE_ASFLAGS = $(VBOX_ASFLAGS)
TEMPLATE_VBOXLNXHOSTR3EXE_DLLSUFF = .so
TEMPLATE_VBOXLNXHOSTR3EXE_DEFS = IN_RING3 $(ARCH_BITS_DEFS)
-TEMPLATE_VBOXLNXHOSTR3EXE_CXXFLAGS = -g -pipe $(VBOX_GCC_PEDANTIC_CXX) $(VBOX_GCC_fno-stack-protector)
+TEMPLATE_VBOXLNXHOSTR3EXE_CXXFLAGS = -g -pipe $(VBOX_GCC_PEDANTIC_CXX) $(VBOX_GCC_fno-stack-protector) $(VBOX_GCC_nopie)
TEMPLATE_VBOXLNXHOSTR3EXE_CXXFLAGS.debug = -fno-inline
TEMPLATE_VBOXLNXHOSTR3EXE_CXXFLAGS.release = -O2 -fno-omit-frame-pointer -fno-strict-aliasing
TEMPLATE_VBOXLNXHOSTR3EXE_CXXFLAGS.profile = $(TEMPLATE_VBOXLNXHOSTR3EXE_CXXFLAGS.release)
@@ -4401,7 +4402,7 @@
TEMPLATE_VBOXLNXHOSTR3EXE_CFLAGS.debug = $(TEMPLATE_VBOXLNXHOSTR3EXE_CXXFLAGS.debug)
TEMPLATE_VBOXLNXHOSTR3EXE_CFLAGS.profile = $(TEMPLATE_VBOXLNXHOSTR3EXE_CXXFLAGS.profile)
TEMPLATE_VBOXLNXHOSTR3EXE_CFLAGS.kprofile = $(TEMPLATE_VBOXLNXHOSTR3EXE_CXXFLAGS.kprofile)
-TEMPLATE_VBOXLNXHOSTR3EXE_CFLAGS = -g -pipe $(VBOX_GCC_PEDANTIC_C) $(VBOX_GCC_fno-stack-protector)
+TEMPLATE_VBOXLNXHOSTR3EXE_CFLAGS = -g -pipe $(VBOX_GCC_PEDANTIC_C) $(VBOX_GCC_fno-stack-protector) $(VBOX_GCC_nopie)
TEMPLATE_VBOXLNXHOSTR3EXE_LIBS = pthread m rt dl
TEMPLATE_VBOXLNXHOSTR3LIB = Template for linux host libraries.
@@ -4528,8 +4529,8 @@
TEMPLATE_VBOXGUESTR3XF86MOD_LDFLAGS.x86 = -m elf_i386
TEMPLATE_VBOXGUESTR3XF86MOD_LDFLAGS.amd64 = -Wl,-O1 -Wl,--as-needed -m elf_x86_64
endif
-TEMPLATE_VBOXGUESTR3XF86MOD_CFLAGS = $(TEMPLATE_VBOXGUESTR3EXE_CFLAGS) -fno-merge-constants -std=c99 $(VBOX_GCC_fno-stack-protector) -ffreestanding
-TEMPLATE_VBOXGUESTR3XF86MOD_CXXFLAGS= $(TEMPLATE_VBOXGUESTR3EXE_CXXFLAGS) -fno-merge-constants $(VBOX_GCC_fno-stack-protector) -ffreestanding
+TEMPLATE_VBOXGUESTR3XF86MOD_CFLAGS = $(TEMPLATE_VBOXGUESTR3EXE_CFLAGS) -fno-merge-constants -std=c99 $(VBOX_GCC_fno-stack-protector) $(VBOX_GCC_nopie) -ffreestanding
+TEMPLATE_VBOXGUESTR3XF86MOD_CXXFLAGS= $(TEMPLATE_VBOXGUESTR3EXE_CXXFLAGS) -fno-merge-constants $(VBOX_GCC_fno-stack-protector) $(VBOX_GCC_nopie) -ffreestanding
TEMPLATE_VBOXGUESTR3XF86MOD_SYSSUFF = .o
TEMPLATE_VBOXGUESTR3XF86MOD_LIBS = \
$(VBOX_LIB_VBGL_R3_XFREE86)

View file

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emulation/virtualbox/virtualbox-4.1.12.ebuild,v 1.6 2012/08/21 09:19:11 polynomial-c Exp $
# $Header: /var/cvsroot/gentoo-x86/app-emulation/virtualbox/virtualbox-4.1.12.ebuild,v 1.7 2012/08/22 21:15:58 polynomial-c Exp $
EAPI=4
@ -176,7 +176,7 @@ src_prepare() {
# Fix compile error on hardened bug 339914 (disable PIE)
if gcc-specs-pie ; then
epatch "${FILESDIR}"/virtualbox_nopie.patch
epatch "${FILESDIR}"/${PN}-4.1.8-nopie.patch
fi
}

View file

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emulation/virtualbox/virtualbox-4.1.18.ebuild,v 1.3 2012/08/21 09:19:11 polynomial-c Exp $
# $Header: /var/cvsroot/gentoo-x86/app-emulation/virtualbox/virtualbox-4.1.18.ebuild,v 1.4 2012/08/22 21:15:58 polynomial-c Exp $
EAPI=4
@ -176,7 +176,7 @@ src_prepare() {
# Fix compile error on hardened bug 339914 (disable PIE)
if gcc-specs-pie ; then
epatch "${FILESDIR}"/virtualbox_nopie.patch
epatch "${FILESDIR}"/${PN}-4.1.8-nopie.patch
fi
}

View file

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emulation/virtualbox/virtualbox-4.1.20-r1.ebuild,v 1.1 2012/08/22 11:37:28 polynomial-c Exp $
# $Header: /var/cvsroot/gentoo-x86/app-emulation/virtualbox/virtualbox-4.1.20-r1.ebuild,v 1.2 2012/08/22 21:15:58 polynomial-c Exp $
EAPI=4
@ -176,7 +176,7 @@ src_prepare() {
# Fix compile error on hardened bug 339914 (disable PIE)
if gcc-specs-pie ; then
epatch "${FILESDIR}"/virtualbox_nopie.patch
epatch "${FILESDIR}"/${PN}-4.1.20-nopie.patch
fi
}

View file

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/vifm/vifm-0.7.2.ebuild,v 1.2 2012/08/12 17:41:42 ago Exp $
# $Header: /var/cvsroot/gentoo-x86/app-misc/vifm/vifm-0.7.2.ebuild,v 1.3 2012/08/22 22:57:25 xmw Exp $
EAPI=4
inherit base
@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/vifm/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~ppc ~s390 ~x86"
KEYWORDS="amd64 ppc ~s390 ~x86"
IUSE="+compatibility +extended-keys +magic vim-plugin vim-syntax"
DEPEND="

View file

@ -1 +1,2 @@
DIST calcurse-2.9.2.tar.gz 517071 SHA256 e116c52fb82a051b38950bdbdb3f9df99fce2713c64d3eda1de236bacba28a55 SHA512 1b8136535ca72dc4f42f60d16a9f11f51aa899659feb01aef621bc0ec9997a81444ce9465c269b4e8da848c89a54dac8f6a3e59982e74e3223950b666576c5bf WHIRLPOOL ce351c6fa54f0f6e824154ef4dec512b34f45ba2a8282ca2e1de3867dc2806357468cbeb41c75de92ef684eb8cc1a2762bb84cd66a2a720c8b4046d9eb1337d3
DIST calcurse-3.0.0.tar.gz 682545 SHA256 8a633120a8da250bce11d746a98c9aac3309235a3acdf19d001ab36e62cacdfa SHA512 cd4defff719635469216d9edb592cbd22b845be74eeb060ca51a93f1c0fb3fb297857ef29464c77f2aa6571eac24249901dbab77845332d82217986e4fb8d7ff WHIRLPOOL fec1147e9e7883ef909168cbb52b94da00f36251fd13dfc1cb0626e33886ce0ee754a52c9526bccec4149d014466ffa950bca906b31c01084bd2ee809b421855

View file

@ -0,0 +1,25 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-office/calcurse/calcurse-3.0.0.ebuild,v 1.1 2012/08/23 02:18:35 jer Exp $
EAPI=4
inherit eutils
DESCRIPTION="a text-based personal organizer"
HOMEPAGE="http://calcurse.org"
SRC_URI="http://calcurse.org/files/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="linguas_en linguas_fr linguas_de linguas_es linguas_nl linguas_ru"
CC_LINGUAS="de en es fr nl pt_BR ru"
for lingua in ${CC_LINGUAS}; do
IUSE+=" linguas_${lingua}"
done
RDEPEND="sys-libs/ncurses"
DEPEND="${RDEPEND}
test? ( sys-libs/libfaketime )"
DOCS=( AUTHORS NEWS README TODO )

View file

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-portage/gentoolkit/gentoolkit-0.3.0.6-r3.ebuild,v 1.9 2012/07/29 00:06:33 jmorgan Exp $
# $Header: /var/cvsroot/gentoo-x86/app-portage/gentoolkit/gentoolkit-0.3.0.6-r3.ebuild,v 1.10 2012/08/22 19:15:40 darkside Exp $
EAPI="3"
SUPPORT_PYTHON_ABIS="1"
@ -70,8 +70,7 @@ src_install() {
if use prefix; then
elog "The revdep-rebuild command is removed, the preserve-libs"
elog "feature of portage will handle issues."
rm "${ED}"/usr/bin/revdep-rebuild
rm "${ED}"/usr/bin/revdep-rebuild.py
rm "${ED}"/usr/bin/revdep-rebuild*
rm "${ED}"/usr/share/man/man1/revdep-rebuild.1
rm -rf "${ED}"/etc/revdep-rebuild
rm -rf "${ED}"/var

View file

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-portage/gentoolkit/gentoolkit-9999.ebuild,v 1.21 2012/05/11 17:38:12 mgorny Exp $
# $Header: /var/cvsroot/gentoo-x86/app-portage/gentoolkit/gentoolkit-9999.ebuild,v 1.22 2012/08/22 19:15:40 darkside Exp $
EAPI="3"
SUPPORT_PYTHON_ABIS="1"
@ -68,8 +68,7 @@ src_install() {
if use prefix; then
elog "The revdep-rebuild command is removed, the preserve-libs"
elog "feature of portage will handle issues."
rm "${ED}"/usr/bin/revdep-rebuild
rm "${ED}"/usr/bin/revdep-rebuild.sh
rm "${ED}"/usr/bin/revdep-rebuild*
rm "${ED}"/usr/share/man/man1/revdep-rebuild.1
rm -rf "${ED}"/etc/revdep-rebuild
rm -rf "${ED}"/var

View file

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-shells/bash/bash-4.2_p37.ebuild,v 1.5 2012/08/20 02:46:57 jer Exp $
# $Header: /var/cvsroot/gentoo-x86/app-shells/bash/bash-4.2_p37.ebuild,v 1.6 2012/08/23 01:17:53 vapier Exp $
EAPI="1"
@ -151,8 +151,20 @@ src_install() {
newins "${FILESDIR}"/dot-${f} .${f}
done
sed -i -e "s:#${USERLAND}#@::" "${D}"/etc/skel/.bashrc "${D}"/etc/bash/bashrc
sed -i -e '/#@/d' "${D}"/etc/skel/.bashrc "${D}"/etc/bash/bashrc
local sed_args=(
-e "s:#${USERLAND}#@::"
-e '/#@/d'
)
if ! use readline ; then
sed_args+=( #432338
-e '/^shopt -s histappend/s:^:#:'
-e 's:use_color=true:use_color=false:'
)
fi
sed -i \
"${sed_args[@]}" \
"${D}"/etc/skel/.bashrc \
"${D}"/etc/bash/bashrc || die
if use plugins ; then
exeinto /usr/$(get_libdir)/bash

View file

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/qpdf/qpdf-3.0.1.ebuild,v 1.1 2012/08/19 07:01:40 radhermit Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/qpdf/qpdf-3.0.1.ebuild,v 1.2 2012/08/23 00:13:26 jer Exp $
EAPI="4"
@ -10,7 +10,7 @@ SRC_URI="mirror://sourceforge/qpdf/${P}.tar.gz"
LICENSE="Artistic-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
KEYWORDS="~amd64 ~hppa ~x86"
IUSE="doc examples static-libs test"
RDEPEND="dev-libs/libpcre

View file

@ -1,2 +1,3 @@
DIST tokyocabinet-1.4.46.tar.gz 1002423 SHA256 0eaaa3305cb67bd0555d228b28d842db6c6dc928dced9ad852980d82a7d933a3 SHA512 bdec41a9dc4f73421d1f304fe1c9d814b18450e1bf2b6de7d484145e7598484b08b00450eccda32b3ce03a418380e3323932c518a9994142ce6db39008eb11d6 WHIRLPOOL f79c09b6a93ae48c69b35b95b622f7c2ac4854f34ccd90a052a7bd969663833dec4ff05134fb6ee88176961761a506d9577d4d7a175bb839759a2247d9da7aa8
DIST tokyocabinet-1.4.47.tar.gz 1002443 SHA256 a456193bac4843c0f0caa877b828c8d99dc44495511df10e1b00acf81c538594 SHA512 ccc90e2fba39a0507125a696c58ed6519b8a503e3a7433e7b34440cdccba75f6573ff8c4e3917e54c96171d459d1fb7d44afad7606d3833415fdfc63a9302a89 WHIRLPOOL 782e5dc7634581380a3088efb9c6544765d76a35a9399dd65235ba4e6c7306d13be3c7622adf5fa9577021d0ae65b22df6bbc975bf965b25052360716d43b1e2
DIST tokyocabinet-1.4.48.tar.gz 1000485 SHA256 a003f47c39a91e22d76bc4fe68b9b3de0f38851b160bbb1ca07a4f6441de1f90 SHA512 b9995c838e713c13f781ab41062caefeb5c613f696dab08039f992f6860413d60a513114b83468cafdf7fc5b5e51ab880226972465d532f873f2a55f615e1440 WHIRLPOOL 90d47ac8858e5f4c198418c48118c0142e5bd04156088075eb0450cbc1aa7c70dde3206624c52710c46bb1a307675d536ba0d15e5ac8f4680aaf56691dd8a58e

View file

@ -0,0 +1,56 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-db/tokyocabinet/tokyocabinet-1.4.48.ebuild,v 1.1 2012/08/23 04:23:59 patrick Exp $
EAPI="2"
inherit eutils autotools
DESCRIPTION="A library of routines for managing a database"
HOMEPAGE="http://fallabs.com/tokyocabinet/"
SRC_URI="${HOMEPAGE}${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris"
IUSE="debug doc examples"
DEPEND="sys-libs/zlib
app-arch/bzip2"
RDEPEND="${DEPEND}"
src_prepare() {
epatch "${FILESDIR}/fix_rpath.patch"
sed -i \
-e "/ldconfig/d" \
-e "/DATADIR/d" Makefile.in || die
# cflags fix - remove -O2 at end of line and -fomit-frame-pointer
sed -i -e 's/-O3"$/"/' configure.in || die
sed -i -e 's/-fomit-frame-pointer//' configure.in || die
# flag only works on x86 derivatives, remove everywhere else
if ! use x86 && ! use amd64; then sed -i -e 's/ -minline-all-stringops//' configure.in; fi
eautoreconf
}
src_configure() {
# we use the "fastest" target without the -O3
econf $(use_enable debug) --enable-off64 --enable-fastest
}
src_install() {
emake DESTDIR="${D}" install || die "Install failed"
if use examples; then
insinto /usr/share/${PF}/example
doins example/* || die "Install failed"
fi
if use doc; then
insinto /usr/share/doc/${PF}
doins -r doc/* || die "Install failed"
fi
}
src_test() {
emake -j1 check || die "Tests failed"
}

View file

@ -1,3 +1,4 @@
DIST parrot-4.4.0.tar.bz2 4324058 SHA256 348ce13fc136afc74a7b50b094f64d8cb00f83f0cd3d59acc6fa4e63c824fa4d SHA512 da7659ac62a86df9004dd789255570547afa19ae045515bf8bb4eafb00fe2615b353b3f597108d18b68c7f513cfcf4359c2fe656c917b97f12977e01342b100c WHIRLPOOL 9e2a1dee83539d4a2e9509d5ce0d93ec36f81954436cd29be26bf3a4e9671f1b5994cd1ab7d993e1250a5112806b20c8bf939fa2f0ee3cbb8cd5b4e0f2650ab9
DIST parrot-4.5.0.tar.bz2 4331710 SHA256 74996076eb9dbe0f2442e0ae9c0cb5c3e9d5f49a266368eee01f4ab30c6d2808 SHA512 ea468823db32f54cb4314b34fff87da1d4e62aa278c73fdb265ce8af0b0f048fd22426108dad355c086b2ef26509b9df36960d9f13a2553392ef69618322a449 WHIRLPOOL 111ddc48e47803d94b8d9d9415c3e965bb8534279ea3461fd6d5d874b485ea887136d1120de69eb73ccda2892a1363453db9acb445082203f937e78b273d8dfc
DIST parrot-4.6.0.tar.bz2 4331714 SHA256 31d48e348eab418d5d9d9f9bb24d628763ff90c608d21b1944c227b6938a69d1 SHA512 dd715e4f66aaa739353b5a43a79047d234247f0d1d727d3f73e80358000dc933e32d706f40a27d57127c7728683c5aa8bc851aa2ceb80f9e25008360d20efba0 WHIRLPOOL bc12b26c7cb5158adc066ec5f6e00ea0ef49d16bab24f0fec6e28c104ac3b30016bd3892485fbdb2b52e1bb8866db3aefad7d4d2bec70025c76abc0c5d6fce30
DIST parrot-4.7.0.tar.bz2 4333224 SHA256 4360ac3dffafffaa00bce561c1329df8ad134019f76930cf24e7a875a4422a90 SHA512 d67d9fb097b3a47c1220aa1548c37a2dd63c925f4fd9e18efa258a23917df8d6c37f6fc0ff6439f5164700d8eae9c699cb21dc9d0e2a41213be8be7232abe244 WHIRLPOOL ce22ac06fa1d015d9208805785613d5f73f8f03121bf3afbe4d7e3fa606a34f361d68513a9d7b6ebaaff8b7c0e1d664486c4dcbb9c705098ba8095221781ac1f

View file

@ -0,0 +1,83 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lang/parrot/parrot-4.7.0.ebuild,v 1.1 2012/08/23 03:23:04 patrick Exp $
EAPI=3
inherit eutils multilib
DESCRIPTION="Virtual machine designed to efficiently compile and execute bytecode for dynamic languages"
HOMEPAGE="http://www.parrot.org/"
SRC_URI="ftp://ftp.parrot.org/pub/parrot/releases/devel/${PV}/${P}.tar.bz2"
LICENSE="Artistic-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
IUSE="opengl nls doc examples gdbm gmp ssl +unicode pcre"
RDEPEND="sys-libs/readline
opengl? ( media-libs/freeglut )
nls? ( sys-devel/gettext )
unicode? ( >=dev-libs/icu-2.6 )
gdbm? ( >=sys-libs/gdbm-1.8.3-r1 )
gmp? ( >=dev-libs/gmp-4.1.4 )
ssl? ( dev-libs/openssl )
pcre? ( dev-libs/libpcre )"
DEPEND="dev-lang/perl[doc?]
${RDEPEND}"
src_prepare() {
# Fix for #404195 - pcre detection is wonky
sed -i 's:libpcre.so.0:libpcre.so.1:' runtime/parrot/library/pcre.pir || die "Couldn't fix pcre location"
}
src_configure() {
myconf="--disable-rpath"
use unicode || myconf+=" --without-icu"
use ssl || myconf+=" --without-crypto"
use gdbm || myconf+=" --without-gdbm"
use nls || myconf+=" --without-gettext"
use gmp || myconf+=" --without-gmp"
use opengl || myconf+=" --without-opengl"
use pcre || myconf+=" --without-pcre"
perl Configure.pl \
--ccflags="${CFLAGS}" \
--linkflags="${LDFLAGS}" \
--prefix="${EPREFIX}"/usr \
--libdir="${EPREFIX}"/usr/$(get_libdir) \
--mandir="${EPREFIX}"/usr/share/man \
--sysconfdir="${EPREFIX}"/etc \
--sharedstatedir="${EPREFIX}"/var/lib/parrot \
$myconf || die
}
src_compile() {
export LD_LIBRARY_PATH=${LD_LIBRARY_PATH:+$LD_LIBRARY_PATH:}"${S}"/blib/lib
# occasionally dies in parallel make
emake -j1 || die
if use doc ; then
emake -j1 html || die
fi
}
src_test() {
emake -j1 test || die
}
src_install() {
emake -j1 install-dev DESTDIR="${D}" DOC_DIR="${EPREFIX}/usr/share/doc/${PF}" || die
dodoc CREDITS DONORS.pod PBC_COMPAT PLATFORMS RESPONSIBLE_PARTIES TODO || die
if use examples; then
insinto "/usr/share/doc/${PF}/examples"
doins -r examples/* || die
fi
if use doc; then
insinto "/usr/share/doc/${PF}/editor"
doins -r editor || die
cd docs/html
dohtml -r developer.html DONORS.pod.html index.html ops.html parrotbug.html pdds.html \
pmc.html tools.html docs src tools || die
fi
}

View file

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lisp/ecls/ecls-12.7.1.ebuild,v 1.1 2012/08/05 04:00:15 grozin Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-lisp/ecls/ecls-12.7.1.ebuild,v 1.2 2012/08/23 04:32:11 ottxor Exp $
EAPI=4
@ -13,7 +13,7 @@ SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
LICENSE="BSD LGPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
KEYWORDS="~amd64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux"
IUSE="debug emacs gengc precisegc threads +unicode X"
RDEPEND="dev-libs/gmp

View file

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ml/camlimages/camlimages-4.0.1.ebuild,v 1.3 2012/07/24 10:50:03 johu Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-ml/camlimages/camlimages-4.0.1.ebuild,v 1.4 2012/08/22 23:54:41 xmw Exp $
EAPI=4
@ -12,7 +12,7 @@ SRC_URI="http://bitbucket.org/camlspotter/camlimages/get/v4.0.1.tar.bz2 -> ${P}.
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~ppc x86"
KEYWORDS="~amd64 ppc x86"
IUSE="doc gif gtk jpeg png postscript tiff truetype X xpm zlib"
RDEPEND=">=dev-lang/ocaml-3.10.2[X?,ocamlopt]

View file

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/traits/traits-4.1.0.ebuild,v 1.3 2012/06/01 13:02:22 ago Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-python/traits/traits-4.1.0.ebuild,v 1.4 2012/08/22 23:04:01 xmw Exp $
EAPI=4
@ -16,7 +16,7 @@ SRC_URI="http://www.enthought.com/repo/ETS/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="amd64 ~ppc ~ppc64 ~x86"
KEYWORDS="amd64 ppc ~ppc64 ~x86"
IUSE="doc examples test"
RDEPEND="dev-python/numpy"

View file

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/insight/insight-6.8.1.ebuild,v 1.6 2012/07/29 16:27:39 armin76 Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-util/insight/insight-6.8.1.ebuild,v 1.7 2012/08/22 23:23:16 xmw Exp $
EAPI=4
@ -15,7 +15,7 @@ SRC_URI="ftp://sources.redhat.com/pub/${PN}/releases/${MY_P}a.tar.bz2
LICENSE="GPL-2 LGPL-2"
SLOT="0"
KEYWORDS="amd64 ~ppc x86"
KEYWORDS="amd64 ppc x86"
IUSE="nls"
RDEPEND="

View file

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/omake/omake-0.9.8.6.0_rc1.ebuild,v 1.2 2012/07/10 22:30:37 johu Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-util/omake/omake-0.9.8.6.0_rc1.ebuild,v 1.3 2012/08/22 23:49:11 xmw Exp $
EAPI=2
inherit toolchain-funcs multilib versionator eutils
@ -13,7 +13,7 @@ SRC_URI="http://omake.metaprl.org/downloads/${PN}-${MY_PV}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc x86"
KEYWORDS="~amd64 ppc x86"
IUSE="doc fam ncurses +ocamlopt readline"
DEPEND=">=dev-lang/ocaml-3.10.2[ocamlopt?]
ncurses? ( >=sys-libs/ncurses-5.3 )

View file

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/weka/weka-3.6.6-r1.ebuild,v 1.3 2012/08/03 13:58:08 ago Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-util/weka/weka-3.6.6-r1.ebuild,v 1.4 2012/08/23 05:46:36 xmw Exp $
EAPI="3"
@ -14,7 +14,7 @@ SRC_URI="mirror://sourceforge/${PN}/${MY_P}.zip"
HOMEPAGE="http://www.cs.waikato.ac.nz/ml/weka/"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="amd64 ~ppc x86"
KEYWORDS="amd64 ppc x86"
DEPEND=">=virtual/jdk-1.5
app-arch/unzip
>=dev-java/javacup-0.11a_beta20060608:0"

View file

@ -10,7 +10,7 @@
# --export-all --- Exports all repositories
# --port=XXXX --- Starts in port XXXX instead of 9418
#
GITDAEMON_OPTS="--syslog /var/git"
GITDAEMON_OPTS="--syslog --base-path=/var/git"
# To run an anonymous git safely, the following user should be able to only
# read your Git repositories. It should not able able to write to anywhere on

View file

@ -0,0 +1,523 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-vcs/git/git-1.7.12-r2.ebuild,v 1.1 2012/08/23 05:38:18 robbat2 Exp $
EAPI=4
GENTOO_DEPEND_ON_PERL=no
# bug #329479: git-remote-testgit is not multiple-version aware
PYTHON_DEPEND="python? 2"
[[ ${PV} == *9999 ]] && SCM="git-2"
EGIT_REPO_URI="git://git.kernel.org/pub/scm/git/git.git"
inherit toolchain-funcs eutils elisp-common perl-module bash-completion-r1 python ${SCM}
MY_PV="${PV/_rc/.rc}"
MY_P="${PN}-${MY_PV}"
DOC_VER=${MY_PV}
DESCRIPTION="GIT - the stupid content tracker, the revision control system heavily used by the Linux kernel team"
HOMEPAGE="http://www.git-scm.com/"
if [[ ${PV} != *9999 ]]; then
SRC_URI_SUFFIX="gz"
SRC_URI_GOOG="http://git-core.googlecode.com/files"
SRC_URI_KORG="mirror://kernel/software/scm/git"
SRC_URI="${SRC_URI_GOOG}/${MY_P}.tar.${SRC_URI_SUFFIX}
${SRC_URI_KORG}/${MY_P}.tar.${SRC_URI_SUFFIX}
${SRC_URI_GOOG}/${PN}-manpages-${DOC_VER}.tar.${SRC_URI_SUFFIX}
${SRC_URI_KORG}/${PN}-manpages-${DOC_VER}.tar.${SRC_URI_SUFFIX}
doc? (
${SRC_URI_KORG}/${PN}-htmldocs-${DOC_VER}.tar.${SRC_URI_SUFFIX}
${SRC_URI_GOOG}/${PN}-htmldocs-${DOC_VER}.tar.${SRC_URI_SUFFIX}
)"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~ia64-hpux ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
else
SRC_URI=""
KEYWORDS=""
fi
LICENSE="GPL-2"
SLOT="0"
IUSE="+blksha1 +curl cgi doc emacs +gpg gtk +iconv +nls +pcre +perl +python ppcsha1 tk +threads +webdav xinetd cvs subversion test"
# Common to both DEPEND and RDEPEND
CDEPEND="
dev-libs/openssl
sys-libs/zlib
pcre? ( dev-libs/libpcre )
perl? ( dev-lang/perl[-build] )
tk? ( dev-lang/tk )
curl? (
net-misc/curl
webdav? ( dev-libs/expat )
)
emacs? ( virtual/emacs )"
RDEPEND="${CDEPEND}
gpg? ( app-crypt/gnupg )
perl? ( dev-perl/Error
dev-perl/Net-SMTP-SSL
dev-perl/Authen-SASL
cgi? ( virtual/perl-CGI app-text/highlight )
cvs? ( >=dev-vcs/cvsps-2.1 dev-perl/DBI dev-perl/DBD-SQLite )
subversion? ( dev-vcs/subversion[-dso,perl] dev-perl/libwww-perl dev-perl/TermReadKey )
)
python? ( gtk?
(
>=dev-python/pygtk-2.8
dev-python/pygtksourceview:2
) )"
# This is how info docs are created with Git:
# .txt/asciidoc --(asciidoc)---------> .xml/docbook
# .xml/docbook --(docbook2texi.pl)--> .texi
# .texi --(makeinfo)---------> .info
DEPEND="${CDEPEND}
app-arch/cpio
doc? (
app-text/asciidoc
app-text/docbook2X
sys-apps/texinfo
)
test? (
app-crypt/gnupg
)"
# Live ebuild builds man pages and HTML docs, additionally
if [[ ${PV} == *9999 ]]; then
DEPEND="${DEPEND}
app-text/asciidoc
app-text/xmlto"
fi
SITEFILE=50${PN}-gentoo.el
S="${WORKDIR}/${MY_P}"
REQUIRED_USE="
cgi? ( perl )
cvs? ( perl )
subversion? ( perl )
webdav? ( curl )
"
pkg_setup() {
if use subversion && has_version dev-vcs/subversion && built_with_use --missing false dev-vcs/subversion dso ; then
ewarn "Per Gentoo bugs #223747, #238586, when subversion is built"
ewarn "with USE=dso, there may be weird crashes in git-svn. You"
ewarn "have been warned."
fi
if use python ; then
python_set_active_version 2
python_pkg_setup
fi
}
# This is needed because for some obscure reasons future calls to make don't
# pick up these exports if we export them in src_unpack()
exportmakeopts() {
local myopts
if use blksha1 ; then
myopts="${myopts} BLK_SHA1=YesPlease"
elif use ppcsha1 ; then
myopts="${myopts} PPC_SHA1=YesPlease"
fi
if use curl ; then
use webdav || myopts="${myopts} NO_EXPAT=YesPlease"
else
myopts="${myopts} NO_CURL=YesPlease"
fi
# broken assumptions, because of broken build system ...
myopts="${myopts} NO_FINK=YesPlease NO_DARWIN_PORTS=YesPlease"
myopts="${myopts} INSTALL=install TAR=tar"
myopts="${myopts} SHELL_PATH=${EPREFIX}/bin/sh"
myopts="${myopts} SANE_TOOL_PATH="
myopts="${myopts} OLD_ICONV="
myopts="${myopts} NO_EXTERNAL_GREP="
# can't define this to null, since the entire makefile depends on it
sed -i -e '/\/usr\/local/s/BASIC_/#BASIC_/' Makefile
use iconv \
|| myopts="${myopts} NO_ICONV=YesPlease"
use nls \
|| myopts="${myopts} NO_GETTEXT=YesPlease"
use tk \
|| myopts="${myopts} NO_TCLTK=YesPlease"
use pcre \
&& myopts="${myopts} USE_LIBPCRE=yes"
use perl \
&& myopts="${myopts} INSTALLDIRS=vendor" \
|| myopts="${myopts} NO_PERL=YesPlease"
use python \
|| myopts="${myopts} NO_PYTHON=YesPlease"
use subversion \
|| myopts="${myopts} NO_SVN_TESTS=YesPlease"
use threads \
&& myopts="${myopts} THREADED_DELTA_SEARCH=YesPlease"
use cvs \
|| myopts="${myopts} NO_CVS=YesPlease"
# Disabled until ~m68k-mint can be keyworded again
# if [[ ${CHOST} == *-mint* ]] ; then
# myopts="${myopts} NO_MMAP=YesPlease"
# myopts="${myopts} NO_IPV6=YesPlease"
# myopts="${myopts} NO_STRLCPY=YesPlease"
# myopts="${myopts} NO_MEMMEM=YesPlease"
# myopts="${myopts} NO_MKDTEMP=YesPlease"
# myopts="${myopts} NO_MKSTEMPS=YesPlease"
# fi
if [[ ${CHOST} == ia64-*-hpux* ]]; then
myopts="${myopts} NO_NSEC=YesPlease"
fi
if [[ ${CHOST} == *-*-aix* ]]; then
myopts="${myopts} NO_FNMATCH_CASEFOLD=YesPlease"
fi
has_version '>=app-text/asciidoc-8.0' \
&& myopts="${myopts} ASCIIDOC8=YesPlease"
myopts="${myopts} ASCIIDOC_NO_ROFF=YesPlease"
# Bug 290465:
# builtin-fetch-pack.c:816: error: 'struct stat' has no member named 'st_mtim'
[[ "${CHOST}" == *-uclibc* ]] && \
myopts="${myopts} NO_NSEC=YesPlease"
export MY_MAKEOPTS="${myopts}"
}
src_unpack() {
if [[ ${PV} != *9999 ]]; then
unpack ${MY_P}.tar.${SRC_URI_SUFFIX}
cd "${S}"
unpack ${PN}-manpages-${DOC_VER}.tar.${SRC_URI_SUFFIX}
use doc && \
cd "${S}"/Documentation && \
unpack ${PN}-htmldocs-${DOC_VER}.tar.${SRC_URI_SUFFIX}
cd "${S}"
else
git-2_src_unpack
cd "${S}"
#cp "${FILESDIR}"/GIT-VERSION-GEN .
fi
}
src_prepare() {
# bug #418431 - stated for upstream 1.7.13. Developed by Michael Schwern,
# funded as a bounty by the Gentoo Foundation.
epatch "${FILESDIR}"/git-1.7.12-git-svn-backport.patch
# bug #350330 - automagic CVS when we don't want it is bad.
epatch "${FILESDIR}"/git-1.7.12-optional-cvs.patch
sed -i \
-e 's:^\(CFLAGS =\).*$:\1 $(OPTCFLAGS) -Wall:' \
-e 's:^\(LDFLAGS =\).*$:\1 $(OPTLDFLAGS):' \
-e 's:^\(CC = \).*$:\1$(OPTCC):' \
-e 's:^\(AR = \).*$:\1$(OPTAR):' \
-e "s:\(PYTHON_PATH = \)\(.*\)$:\1${EPREFIX}\2:" \
-e "s:\(PERL_PATH = \)\(.*\)$:\1${EPREFIX}\2:" \
Makefile || die "sed failed"
# Never install the private copy of Error.pm (bug #296310)
sed -i \
-e '/private-Error.pm/s,^,#,' \
perl/Makefile.PL
# Fix docbook2texi command
sed -i 's/DOCBOOK2X_TEXI=docbook2x-texi/DOCBOOK2X_TEXI=docbook2texi.pl/' \
Documentation/Makefile || die "sed failed"
}
git_emake() {
# bug #326625: PERL_PATH, PERL_MM_OPT
# bug #320647: PYTHON_PATH
PYTHON_PATH=""
use python && PYTHON_PATH="$(PYTHON -a)"
emake ${MY_MAKEOPTS} \
DESTDIR="${D}" \
OPTCFLAGS="${CFLAGS}" \
OPTLDFLAGS="${LDFLAGS}" \
OPTCC="$(tc-getCC)" \
OPTAR="$(tc-getAR)" \
prefix="${EPREFIX}"/usr \
htmldir="${EPREFIX}"/usr/share/doc/${PF}/html \
sysconfdir="${EPREFIX}"/etc \
PYTHON_PATH="${PYTHON_PATH}" \
PERL_MM_OPT="" \
GIT_TEST_OPTS="--no-color" \
"$@"
# This is the fix for bug #326625, but it also causes breakage, see bug
# #352693.
# PERL_PATH="${EPREFIX}/usr/bin/env perl" \
}
src_configure() {
exportmakeopts
}
src_compile() {
if use perl ; then
git_emake perl/PM.stamp || die "emake perl/PM.stamp failed"
git_emake perl/perl.mak || die "emake perl/perl.mak failed"
fi
git_emake || die "emake failed"
if use emacs ; then
elisp-compile contrib/emacs/git{,-blame}.el \
|| die "emacs modules failed"
fi
if use perl && use cgi ; then
git_emake \
gitweb/gitweb.cgi \
|| die "emake gitweb/gitweb.cgi failed"
fi
if [[ ${CHOST} == *-darwin* ]]; then
cd "${S}"/contrib/credential/osxkeychain || die "cd credential/osxkeychain"
git_emake || die "email credential-osxkeychain"
fi
cd "${S}"/Documentation
if [[ ${PV} == *9999 ]] ; then
git_emake man \
|| die "emake man failed"
if use doc ; then
git_emake info html \
|| die "emake info html failed"
fi
else
if use doc ; then
git_emake info \
|| die "emake info html failed"
fi
fi
}
src_install() {
git_emake \
install || \
die "make install failed"
if [[ ${CHOST} == *-darwin* ]]; then
dobin contrib/credential/osxkeychain/git-credential-osxkeychain
fi
# Depending on the tarball and manual rebuild of the documentation, the
# manpages may exist in either OR both of these directories.
find man?/*.[157] >/dev/null 2>&1 && doman man?/*.[157]
find Documentation/*.[157] >/dev/null 2>&1 && doman Documentation/*.[157]
dodoc README Documentation/{SubmittingPatches,CodingGuidelines}
use doc && dodir /usr/share/doc/${PF}/html
for d in / /howto/ /technical/ ; do
docinto ${d}
dodoc Documentation${d}*.txt
use doc && dohtml -p ${d} Documentation${d}*.html
done
docinto /
# Upstream does not ship this pre-built :-(
use doc && doinfo Documentation/{git,gitman}.info
newbashcomp contrib/completion/git-completion.bash ${PN}
newbashcomp contrib/completion/git-prompt.sh ${PN}-prompt
if use emacs ; then
elisp-install ${PN} contrib/emacs/git.{el,elc} || die
elisp-install ${PN} contrib/emacs/git-blame.{el,elc} || die
#elisp-install ${PN}/compat contrib/emacs/vc-git.{el,elc} || die
# don't add automatically to the load-path, so the sitefile
# can do a conditional loading
touch "${ED}${SITELISP}/${PN}/compat/.nosearch"
elisp-site-file-install "${FILESDIR}"/${SITEFILE} || die
fi
if use python && use gtk ; then
dobin "${S}"/contrib/gitview/gitview
python_convert_shebangs ${PYTHON_ABI} "${ED}"/usr/bin/gitview
dodoc "${S}"/contrib/gitview/gitview.txt
fi
#dobin contrib/fast-import/git-p4 # Moved upstream
#dodoc contrib/fast-import/git-p4.txt # Moved upstream
newbin contrib/fast-import/import-tars.perl import-tars
newbin contrib/git-resurrect.sh git-resurrect
dodir /usr/share/${PN}/contrib
# The following are excluded:
# completion - installed above
# emacs - installed above
# examples - these are stuff that is not used in Git anymore actually
# gitview - installed above
# p4import - excluded because fast-import has a better one
# patches - stuff the Git guys made to go upstream to other places
# svnimport - use git-svn
# thunderbird-patch-inline - fixes thunderbird
for i in \
blameview buildsystems ciabot continuous convert-objects fast-import \
hg-to-git hooks remotes2config.sh remotes2config.sh rerere-train.sh \
stats svn-fe vim workdir \
; do
cp -rf \
"${S}"/contrib/${i} \
"${ED}"/usr/share/${PN}/contrib \
|| die "Failed contrib ${i}"
done
if use perl && use cgi ; then
# We used to install in /usr/share/${PN}/gitweb
# but upstream installs in /usr/share/gitweb
# so we will install a symlink and use their location for compat with other
# distros
dosym /usr/share/gitweb /usr/share/${PN}/gitweb
# INSTALL discusses configuration issues, not just installation
docinto /
newdoc "${S}"/gitweb/INSTALL INSTALL.gitweb
newdoc "${S}"/gitweb/README README.gitweb
find "${ED}"/usr/lib64/perl5/ \
-name .packlist \
-exec rm \{\} \;
else
rm -rf "${ED}"/usr/share/gitweb
fi
if ! use subversion ; then
rm -f "${ED}"/usr/libexec/git-core/git-svn \
"${ED}"/usr/share/man/man1/git-svn.1*
fi
if use xinetd ; then
insinto /etc/xinetd.d
newins "${FILESDIR}"/git-daemon.xinetd git-daemon
fi
newinitd "${FILESDIR}"/git-daemon.initd git-daemon
newconfd "${FILESDIR}"/git-daemon.confd git-daemon
fixlocalpod
}
src_test() {
local disabled=""
local tests_cvs="t9200-git-cvsexportcommit.sh \
t9400-git-cvsserver-server.sh \
t9401-git-cvsserver-crlf.sh \
t9600-cvsimport.sh \
t9601-cvsimport-vendor-branch.sh \
t9602-cvsimport-branches-tags.sh \
t9603-cvsimport-patchsets.sh"
local tests_perl="t5502-quickfetch.sh \
t5512-ls-remote.sh \
t5520-pull.sh"
# Bug #225601 - t0004 is not suitable for root perm
# Bug #219839 - t1004 is not suitable for root perm
# t0001-init.sh - check for init notices EPERM* fails
local tests_nonroot="t0001-init.sh \
t0004-unwritable.sh \
t0070-fundamental.sh \
t1004-read-tree-m-u-wf.sh \
t3700-add.sh \
t7300-clean.sh"
# t9100 still fails with symlinks in SVN 1.7
local test_svn="t9100-git-svn-basic.sh"
# Unzip is used only for the testcase code, not by any normal parts of Git.
if ! has_version app-arch/unzip ; then
einfo "Disabling tar-tree tests"
disabled="${disabled} t5000-tar-tree.sh"
fi
cvs=0
use cvs && let cvs=$cvs+1
if [[ ${EUID} -eq 0 ]]; then
if [[ $cvs -eq 1 ]]; then
ewarn "Skipping CVS tests because CVS does not work as root!"
ewarn "You should retest with FEATURES=userpriv!"
disabled="${disabled} ${tests_cvs}"
fi
einfo "Skipping other tests that require being non-root"
disabled="${disabled} ${tests_nonroot}"
else
[[ $cvs -gt 0 ]] && \
has_version dev-vcs/cvs && \
let cvs=$cvs+1
[[ $cvs -gt 1 ]] && \
built_with_use dev-vcs/cvs server && \
let cvs=$cvs+1
if [[ $cvs -lt 3 ]]; then
einfo "Disabling CVS tests (needs dev-vcs/cvs[USE=server])"
disabled="${disabled} ${tests_cvs}"
fi
fi
if ! use perl ; then
einfo "Disabling tests that need Perl"
disabled="${disabled} ${tests_perl}"
fi
einfo "Disabling tests that fail with SVN 1.7"
disabled="${disabled} ${test_svn}"
# Reset all previously disabled tests
cd "${S}/t"
for i in *.sh.DISABLED ; do
[[ -f "${i}" ]] && mv -f "${i}" "${i%.DISABLED}"
done
einfo "Disabled tests:"
for i in ${disabled} ; do
[[ -f "${i}" ]] && mv -f "${i}" "${i}.DISABLED" && einfo "Disabled $i"
done
# Avoid the test system removing the results because we want them ourselves
sed -e '/^[[:space:]]*$(MAKE) clean/s,^,#,g' \
-i "${S}"/t/Makefile
# Clean old results first, must always run
cd "${S}/t"
nonfatal git_emake clean
# Now run the tests, keep going if we hit an error, and don't terminate on
# failure
cd "${S}"
einfo "Start test run"
#MAKEOPTS=-j1
nonfatal git_emake --keep-going test
rc=$?
# Display nice results, now print the results
cd "${S}/t"
nonfatal git_emake aggregate-results
# And bail if there was a problem
[ $rc -eq 0 ] || die "tests failed. Please file a bug."
}
showpkgdeps() {
local pkg=$1
shift
elog " $(printf "%-17s:" ${pkg}) ${@}"
}
pkg_postinst() {
use emacs && elisp-site-regen
use python && python_mod_optimize git_remote_helpers
einfo "Please read /usr/share/bash-completion/git for Git bash completion"
elog "These additional scripts need some dependencies:"
echo
showpkgdeps git-quiltimport "dev-util/quilt"
showpkgdeps git-instaweb \
"|| ( www-servers/lighttpd www-servers/apache )"
echo
}
pkg_postrm() {
use emacs && elisp-site-regen
use python && python_mod_cleanup git_remote_helpers
}

View file

@ -1,2 +1,2 @@
DIST hgview-1.2.1.tar.gz 99673 SHA256 a80fc2e53ddc715d74e3d9ff0bdb57890e7989364f06c40bab65aaf0d797d974 SHA512 4284ff60a2c8b5c1cbe458a53c7a7209fd23801e16427a5c8039095e2b7523e5cddbdeff23c69818524e5467af720944c1d67d95918be06801d456c560486a4b WHIRLPOOL 9f4f4d3c799651df9f584e96dac8c1faa31aea3097b0000f0ba3dea49f16e048f753635bfdc6b84b0248ba11767e09a006253ee338622c89918efa641a522077
DIST hgview-1.5.0.tar.gz 220706 SHA256 411c7a795616263d16a4f9178c0c50f9078f047d1e601d80e035d36c565d7715 SHA512 f20e570389929e359efe3d2787ad32f4f0a3253181ce492ab6cac7a3980c582d22322f7d6e4936e547cf979de5d9e063629c6f5306a8593db6a5a09365ee8c42 WHIRLPOOL a951bd896a4dda152d20db73f7b5febd7af7cc6405191c8f1a5a155ff27c2c8ba95e4911c9b565b5c4018dd28d32ee14c9563a67ca0e8ba4e2e3445d09a17a66
DIST hgview-1.6.2.tar.gz 161731 SHA256 7ff7c2bf92dbe40a1520ef8944ed25467895d3c503e7aef8a73c3103e7da7fa0 SHA512 2905dde38a3b329a926e0f96bbac723319a11a19add800e58afabec53e3d8925398ccb78f4c53fb5b32a3d2d9238dc69a132908c706ff1bf2bfd5ec4d21db43f WHIRLPOOL c26d3ad0c7ac1e907f1d254aef1b777c7c300d39021a23c8badb4490192355c92d97aa1f57438a644573cb2c30f1694abe84664330cbd79c81b8b5b760ff13b5

View file

@ -1,8 +1,9 @@
# Copyright 1999-2011 Gentoo Foundation
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-vcs/hgview/hgview-1.2.1.ebuild,v 1.2 2011/03/26 21:11:12 arfrever Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-vcs/hgview/hgview-1.6.2.ebuild,v 1.1 2012/08/23 01:05:34 pesa Exp $
EAPI=4
EAPI="3"
PYTHON_DEPEND="2:2.5"
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS="2.4 3.* *-jython"
@ -10,7 +11,7 @@ RESTRICT_PYTHON_ABIS="2.4 3.* *-jython"
inherit distutils
DESCRIPTION="PyQt4-based Mercurial log navigator"
HOMEPAGE="http://www.logilab.org/project/hgview http://pypi.python.org/pypi/hgview"
HOMEPAGE="http://www.logilab.org/project/hgview"
SRC_URI="http://ftp.logilab.org/pub/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
@ -33,8 +34,8 @@ src_prepare() {
# Fix mercurial extension install path.
if ! use doc; then
sed -e '/make -C doc/d' -i setup.py || die "sed failed"
sed -e '/share\/man\/man1/,+1 d' -i hgviewlib/__pkginfo__.py || die "sed failed"
sed -e '/make -C doc/d' -i setup.py || die
sed -e '/share\/man\/man1/,+1 d' -i hgviewlib/__pkginfo__.py || die
fi
}
@ -42,6 +43,6 @@ src_install() {
distutils_src_install
# Install the mercurial extension config.
insinto /etc/mercurial/hgrc.d || die "insinto failed"
doins "${FILESDIR}/hgview.rc" || die "doins failed"
insinto /etc/mercurial/hgrc.d
doins "${FILESDIR}"/hgview.rc
}

View file

@ -3,4 +3,3 @@
<pkgmetadata>
<herd>qt</herd>
</pkgmetadata>

View file

@ -0,0 +1,44 @@
--- subversion/trunk/subversion/libsvn_auth_kwallet/kwallet.cpp 2012/03/21 18:22:15 1303489
+++ subversion/trunk/subversion/libsvn_auth_kwallet/kwallet.cpp 2012/06/03 18:54:26 1345740
@@ -60,6 +60,9 @@
/* KWallet simple provider, puts passwords in KWallet */
/*-----------------------------------------------------------------------*/
+static int q_argc = 1;
+static char q_argv0[] = "svn"; // Build non-const char * from string constant
+static char *q_argv[] = { q_argv0 };
static const char *
get_application_name(apr_hash_t *parameters,
@@ -212,12 +215,11 @@
QCoreApplication *app;
if (! qApp)
{
- int argc = 1;
- app = new QCoreApplication(argc, (char *[1]) {(char *) "svn"});
+ int argc = q_argc;
+ app = new QCoreApplication(argc, q_argv);
}
- KCmdLineArgs::init(1,
- (char *[1]) {(char *) "svn"},
+ KCmdLineArgs::init(q_argc, q_argv,
get_application_name(parameters, pool),
"subversion",
ki18n(get_application_name(parameters, pool)),
@@ -289,12 +291,11 @@
QCoreApplication *app;
if (! qApp)
{
- int argc = 1;
- app = new QCoreApplication(argc, (char *[1]) {(char *) "svn"});
+ int argc = q_argc;
+ app = new QCoreApplication(argc, q_argv);
}
- KCmdLineArgs::init(1,
- (char *[1]) {(char *) "svn"},
+ KCmdLineArgs::init(q_argc, q_argv,
get_application_name(parameters, pool),
"subversion",
ki18n(get_application_name(parameters, pool)),

View file

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-vcs/subversion/subversion-1.7.6.ebuild,v 1.2 2012/08/21 20:53:41 tommy Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-vcs/subversion/subversion-1.7.6.ebuild,v 1.3 2012/08/22 20:33:10 tommy Exp $
EAPI="3"
SUPPORT_PYTHON_ABIS="1"
@ -109,7 +109,8 @@ src_prepare() {
"${FILESDIR}"/${PN}-1.5.6-aix-dso.patch \
"${FILESDIR}"/${PN}-1.6.3-hpux-dso.patch \
"${FILESDIR}"/${PN}-fix-parallel-build-support-for-perl-bindings.patch \
"${FILESDIR}"/${P}-revert-mod_dontdothat-move.patch
"${FILESDIR}"/${P}-revert-mod_dontdothat-move.patch \
"${FILESDIR}"/${P}-kwallet.patch
fperms +x build/transform_libtool_scripts.sh

View file

@ -1,2 +1,2 @@
DIST extremetuxracer-0.4.tar.gz 28749072 RMD160 69a1433e7fef2e8b0eeb27c17002ef3d74dc0a44 SHA1 db5e55b5780dc2578d8c80d0ce48354b99bb53cf SHA256 5e4057f90e6854e774f251f189b0e676cfd7e2f15779c75544c9ac5b8e30273d
DIST extremetuxracer-0.5beta.tar.gz 43524138 RMD160 6f3bf00f792a765063cb97f691df82369157fcca SHA1 8c86186fa633b77d70722e84ab5a441ff0550452 SHA256 ba7fa156361cc6015ad2a1563ec7f05cdbf701f75177795562b528ebb44ba911
DIST extremetuxracer-0.4.tar.gz 28749072 SHA256 5e4057f90e6854e774f251f189b0e676cfd7e2f15779c75544c9ac5b8e30273d
DIST extremetuxracer-0.5beta.tar.gz 43524138 SHA256 ba7fa156361cc6015ad2a1563ec7f05cdbf701f75177795562b528ebb44ba911

View file

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-action/extreme-tuxracer/extreme-tuxracer-0.4.ebuild,v 1.8 2012/05/03 03:02:34 jdhore Exp $
# $Header: /var/cvsroot/gentoo-x86/games-action/extreme-tuxracer/extreme-tuxracer-0.4.ebuild,v 1.9 2012/08/22 18:55:03 mr_bones_ Exp $
EAPI=2
inherit eutils games
@ -18,7 +18,7 @@ RDEPEND="virtual/opengl
dev-lang/tcl
virtual/glu
media-libs/libsdl[X]
media-libs/sdl-mixer[mikmod]
media-libs/sdl-mixer[mod]
>=media-libs/freetype-2
media-libs/libpng
x11-libs/libXmu

View file

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-action/extreme-tuxracer/extreme-tuxracer-0.5_beta.ebuild,v 1.5 2012/05/03 03:02:34 jdhore Exp $
# $Header: /var/cvsroot/gentoo-x86/games-action/extreme-tuxracer/extreme-tuxracer-0.5_beta.ebuild,v 1.6 2012/08/22 18:55:03 mr_bones_ Exp $
EAPI=2
inherit eutils games
@ -18,7 +18,7 @@ RDEPEND="virtual/opengl
virtual/glu
dev-lang/tcl
media-libs/libsdl[X,audio,video]
media-libs/sdl-mixer[mikmod,vorbis]
media-libs/sdl-mixer[mod,vorbis]
media-libs/freetype:2
media-libs/libpng
x11-libs/libXmu

View file

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-engines/gargoyle/gargoyle-2011.1.ebuild,v 1.5 2012/08/22 16:29:24 hasufell Exp $
# $Header: /var/cvsroot/gentoo-x86/games-engines/gargoyle/gargoyle-2011.1.ebuild,v 1.6 2012/08/22 18:05:11 ago Exp $
# Regarding licenses: libgarglk is licensed under the GPLv2. Bundled
# interpreters are licensed under GPLv2, BSD or MIT license, except:
@ -18,7 +18,7 @@ SRC_URI="http://garglk.googlecode.com/files/${P}-sources.zip"
LICENSE="BSD GPL-2 MIT Hugo Glulxe"
SLOT="0"
KEYWORDS="~amd64 ~x86"
KEYWORDS="amd64 ~x86"
IUSE=""
RDEPEND="

View file

@ -1,4 +1,4 @@
DIST nautilus-dropbox-0.6.9.tar.bz2 351131 RMD160 116eedc009dd34a51a34909f4093537ebcb060d4 SHA1 bad6402183b2ed1190ecb8faec2eccaf9ae3e821 SHA256 f1c16c0a485884a5600121a168d4617dc4b47842b22524007f5e2b116b1701f6
DIST nautilus-dropbox-0.7.0.tar.bz2 353719 RMD160 48dbf2ff6859e7a1aae7726aa48bf1752e671351 SHA1 1b6764b15cfca95a49771b3fd4ed64062b94085c SHA256 4fe171760c897c0ab4166cea70f8587623f72c616ef66ea7d81565b702322daa
DIST nautilus-dropbox-0.7.1.tar.bz2 353942 RMD160 19e1ad4f628915254996c11639027b1c51aa034d SHA1 efeea06f5b80de82acf7f7dd9913f1520fbf74a6 SHA256 87effa9c89d27f36350628bdd42fad4a4e013af3f8e42e4761790ff4ecd09770
DIST nautilus-dropbox-1.4.0.tar.bz2 353988 RMD160 0bdad36dfd4730fe3b96882acbcd7d553a64a221 SHA1 0b929a0afe8fb24b9f3cee37082572133d860cd6 SHA256 3412554d31a4a819a45edcb96bb1ab071a3e2d781817b90a14df8010137cb802
DIST nautilus-dropbox-0.6.9.tar.bz2 351131 SHA256 f1c16c0a485884a5600121a168d4617dc4b47842b22524007f5e2b116b1701f6
DIST nautilus-dropbox-0.7.0.tar.bz2 353719 SHA256 4fe171760c897c0ab4166cea70f8587623f72c616ef66ea7d81565b702322daa
DIST nautilus-dropbox-0.7.1.tar.bz2 353942 SHA256 87effa9c89d27f36350628bdd42fad4a4e013af3f8e42e4761790ff4ecd09770
DIST nautilus-dropbox-1.4.0.tar.bz2 353988 SHA256 3412554d31a4a819a45edcb96bb1ab071a3e2d781817b90a14df8010137cb802

View file

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/gnome-extra/nautilus-dropbox/nautilus-dropbox-1.4.0.ebuild,v 1.2 2012/06/07 22:22:02 zmedico Exp $
# $Header: /var/cvsroot/gentoo-x86/gnome-extra/nautilus-dropbox/nautilus-dropbox-1.4.0.ebuild,v 1.3 2012/08/23 03:16:47 ottxor Exp $
EAPI="3"
PYTHON_DEPEND="2"
@ -44,8 +44,8 @@ src_prepare() {
python_convert_shebangs 2 dropbox.in
# use sysem dropbox
sed -e "s|~/[.]dropbox-dist|/opt/dropbox|" \
-e 's|\(DROPBOXD_PATH = \).*|\1"/opt/dropbox/dropboxd"|' \
sed -e "s|~/[.]dropbox-dist|${EPREFIX}/opt/dropbox|" \
-e "s|\(DROPBOXD_PATH = \).*|\1\"${EPREFIX}/opt/dropbox/dropboxd\"|" \
-i dropbox.in || die
# us system rst2man
epatch "${FILESDIR}"/${PN}-0.7.0-system-rst2man.patch

View file

@ -1,2 +1,3 @@
DIST print-manager-0.1.0-cups16.patch.bz2 7067 SHA256 4eed86676a5afff10b567cb7852fe970bdf7314df2d2295f3be93098a0943ae5 SHA512 48d7ac752cf7832742d81459fa78568aa523faa447f9cfe7edf8e3327fd71700dad24139ff146173cdc612f6f6b831334d34303d6c34e3c1c9a710726b88038e WHIRLPOOL db51c9e5c69c2e566f115411e4902aec3932a12c0e499897f90e09be3c4b962bd22693b0ab1a71e385c61fe77450d80a4c2d2a8ce7a992c47f89dceb48fbf08a
DIST print-manager-0.1.0.tar.bz2 96482 SHA256 6a8161692c05411cd700a73ef8bace592235475a5b636aeaff2825a0b69e1c8e SHA512 0c45d7041f4038e412dfe3e1ad726a01ae37963a23ea430e4f7278e55e8f317bb99286ff1d01f2cb84b7ecde7b781e498dad6a0b584cb82be4ceae44f78dbfb5 WHIRLPOOL c0de62cc90d3eed834b4974c2afe916eb336ae4c8f8ae1457c6e1607c10a3513ad4e4b4071543ac0d8fb78840e9767c3e873f12c6b61335e3d3604fb46ae4dd2
DIST print-manager-0.2.0.tar.bz2 118988 SHA256 691afe46ce9c623a414289650e3f8cb8f806278a3eecb5fd5e43890b6a4b6ee5 SHA512 d16e270fc4502a1c0a32bff3034b4783e61191100519bb6d8a6994a089d92dee0268e7b06bae5cda129fc143c98245d0803a1f81b0e247874b045a3d645ae41e WHIRLPOOL c15359d461fe3bc4f81e9243456e96b917e73c77180f803b23da88e37a57f4ea30329d16e9cd54b59fe91f573a56db9801cc7f97e858f532df681b4ff5655cac

View file

@ -0,0 +1,27 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/kde-misc/print-manager/print-manager-0.2.0.ebuild,v 1.1 2012/08/22 22:07:07 dilfridge Exp $
EAPI=4
KDE_LINGUAS="cs da de et hu km nl pl pt pt_BR sk sv uk"
inherit kde4-base
DESCRIPTION="Manage print jobs and printers in KDE"
HOMEPAGE="https://projects.kde.org/projects/playground/base/print-manager"
[[ "${PV}" != "9999" ]] && SRC_URI="mirror://kde/stable/${PN}/${PV}/src/${P}.tar.bz2"
LICENSE="GPL-2"
KEYWORDS="~amd64 ~x86"
SLOT="4"
IUSE="debug"
RDEPEND="
>=net-print/cups-1.6.0[dbus]
"
DEPEND="${RDEPEND}"
src_configure() {
mycmakeargs=( -DCUPS_1_6=ON )
kde4-base_src_configure
}

View file

@ -1,6 +1,6 @@
Copyright and License
This document is copyright © 2001, 2002, 2004, 2006-2007, 2010 Ravenbrook Limited. All rights reserved. This is an open source license. Contact Ravenbrook for commercial licensing options.
This document is copyright © 2001, 2002, 2004, 2006-2007, 2010 Ravenbrook Limited. All rights reserved. This is an open source license. Contact Ravenbrook for commercial licensing options.
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
@ -13,4 +13,4 @@ modules it contains. It does not include source code for modules or files that t
This software is provided by the copyright holders and contributors "as is" and any express or implied warranties, including, but not limited to, the implied warranties of merchantability, fitness for a particular purpose, or
non-infringement, are disclaimed. In no event shall the copyright holders and contributors be liable for any direct, indirect, incidental, special, exemplary, or consequential damages (including, but not limited to, procurement
of substitute goods or services; loss of use, data, or profits; or business interruption) however caused and on any theory of liability, whether in contract, strict liability, or tort (including negligence or otherwise) arising
in any way out of the use of this software, even if advised of the possibility of such damage.
in any way out of the use of this software, even if advised of the possibility of such damage.

View file

@ -1,7 +1,3 @@
DIST ASSP_1.8.5.9-Install.zip 750552 SHA256 f468d8cd0003280ff089efd438c0516f928f772fd9cc0e6d522866a21492ccb1
DIST ASSP_1.9.1.3-Install.zip 763977 SHA256 cd436cd72b6886e9e6c86e7dc5cdaf708d8ff0e40cf4c06f57827b27b683ce02
DIST ASSP_1.9.2.0-Install.zip 839038 SHA256 65bdad2405011430fe373a8cefcb006d77f1c5d4842fbefd7b81aeb11cd4254e SHA512 a921465f6da976a39b797dafe86016d48759015698725bcbe4a1c280eac9b2bfacb87f25511bb7d42af9eedabac6a918841d5051d345d57aef989cae559c5eb0 WHIRLPOOL 875326790663e7053e3b57d40215a351e6352aee5b68f0820264ba5c5851c6fe9e037fc676e31f648d25322f6ed92b29769b798da18ea1f508f0b8e7a882081a
DIST ASSP_1.9.3.5-Install.zip 862341 SHA256 28ba8f1d665db883a8364f269251453659617876bc6d889b8c58d7b233f44735 SHA512 2ca35e9c221ad5835f9769ac6ab62f86b503cfbfd9c5e22f6eee7d6c0fd236b1979d6c1fd6a87472d83add1aa78d470bfea923ff337935b2eadb5237f116def9 WHIRLPOOL e11b6896046908d325be365ad5c46386d68f52f1b67d3571a0b41237ebb78bd9843510f6d445ec82459862d22fd2e0289e7cb4876d68f8129115780aa05aa7a1
DIST ASSP_1.9.3.6-Install.zip 862688 SHA256 ace76aa09a005e863a6b5313dce176501b5929c3103e09b2eafe0131092f9a70 SHA512 82d4633a2f82f31c0970512416e33a602b0ce243a4f86dcd643d22992d440c9e0570c351e468f847cda77e3235f7ab8860e605312c7c6197180ad5e90e9dc2d8 WHIRLPOOL d715dbda30b7add68d2c8d94032c9286dd2ae710e05d2c01936b0b8f1e86c6f22071be73c1347fc193efe271753f4946319cc4a004e21cdf284a45124e4f2a3d
DIST ASSP_1.9.3.7-Install.zip 863327 SHA256 28ef08ce26f745ca2ae4d58e06b022a33f8f4cf18eaa2981ea95f5f577975f0d SHA512 38bf7464265c8fac22641a65e93f7c5ca0b121b5acc958bb0714b277d0bc7f71fe73c2317b5737c53f9e532c575b3df881ae995a08fac7719312df9969c95a73 WHIRLPOOL 2a2b35b359d55a3c167207df62371da51247878ed4cb7128ba75c1a4d74e781234c6c937879219c4f778fd596f3cfbd897f64d2713f1ac0e5c8a8c2641360409
DIST ASSP_1.9.3.9-Install.zip 863847 SHA256 563eecfc6be4d4de323d57903cdf62814c657877efbfb6e3ab3dc99711e5182c SHA512 0f0e4db4e59fc944340c713e9184c467a6851f957603c5c3f32a279f9a3d26708fa0401fb7d7c97679e7dae88119d96289f78eaa285252e3091d63ece90371cf WHIRLPOOL a8b2e3e495c4f51ca2857d1103fc625c1b30bee33f05d2753f5816d370c46d25cf253889867c808b08d98b0ee52a9eb661c234d3cf26143ce541fa9c97185e6a
DIST ASSP_1.9.4.0-Install.zip 866260 SHA256 965489c475794e25a7ecf03aae2027b80e9fe2e324638aead4cf219acbe7e160 SHA512 71fafff6b2e8d03b7b1d0915671373e033577dc643682c2134b305da7b8b4cafbe097744247b4d9a59620d547b639f70e8676126f103175c9ed8f2d1e628acfa WHIRLPOOL e862b3d5a6ead965ff1e9c50ebef9ae6252a220a312d3d5dbac463b9e8dcf041d49e8bf601528fbb89ff3f9cb4e5cefee4fca4f044abf8eea4f9a3f5ec56b566

View file

@ -1,178 +0,0 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/mail-filter/assp/assp-1.9.1.3.ebuild,v 1.2 2012/06/04 23:37:01 zmedico Exp $
inherit eutils user
DESCRIPTION="Anti-Spam SMTP Proxy written in Perl."
HOMEPAGE="http://assp.sourceforge.net/"
MY_PN=ASSP_${PV}-Install
SRC_URI="mirror://sourceforge/${PN}/${MY_PN}.zip"
LICENSE="GPL-2"
SLOT="0"
# this is a pre-release, so no keywords for now
KEYWORDS=""
IUSE="ipv6 ldap sasl spf srs ssl syslog"
DEPEND="app-arch/unzip"
RDEPEND="dev-lang/perl
dev-perl/Net-DNS
dev-perl/File-ReadBackwards
virtual/perl-IO-Compress
dev-perl/Email-MIME
dev-perl/Email-Send
dev-perl/Email-Valid
dev-perl/libwww-perl
dev-perl/mime-construct
dev-perl/Net-CIDR-Lite
virtual/perl-Digest-MD5
virtual/perl-Time-HiRes
ipv6? ( dev-perl/IO-Socket-INET6 )
sasl? ( dev-perl/Authen-SASL )
spf? ( dev-perl/Mail-SPF )
srs? ( dev-perl/Mail-SRS )
ssl? ( dev-perl/IO-Socket-SSL )
syslog? ( perl-core/Sys-Syslog )
ldap? ( dev-perl/perl-ldap )"
S=${WORKDIR}/${MY_PN}/ASSP
pkg_setup() {
enewgroup assp
enewuser assp -1 -1 /dev/null assp
}
src_unpack() {
unpack ${A}
cd "${S}"
local FILES="
assp.pl
rebuildspamdb.pl
stat.pl
"
# just being safe
for file in ${FILES}; do
edos2unix ${file}
done
# portable changes via sed vs patch
sed -i -e 's|file:files/|file:/etc/assp/|' \
-e 's|$base/images|/usr/share/assp/images|' \
-e 's|logs/maillog.txt|/var/log/assp/maillog.txt|' \
-e 's|PID File'\'',40,textinput,'\''pid'\''|PID File'\'',40,textinput,'\''asspd.pid'\''|' \
-e 's|Daemon\*\*'\'',0,checkbox,0|Daemon\*\*'\'',0,checkbox,1|' \
-e 's|UID\*\*'\'',20,textinput,'\'''\''|UID\*\*'\'',20,textinput,'\''assp'\''|' \
-e 's|GID\*\*'\'',20,textinput,'\'''\''|GID\*\*'\'',20,textinput,'\''assp'\''|' \
-e 's|popFileEditor'\('\\'\''pb/pbdb\.\([^\.]*\)\.db\\'\'',|popFileEditor(\\'\''/var/lib/assp/pb/pbdb.\1.db\\'\'',|g' \
-e 's|$base/assp.cfg|/etc/assp/assp.cfg|g' \
-e 's|$base/$pidfile|/var/run/assp/asspd.pid|' \
-e 's|mkdir "$base/$logdir",0700 if $logdir;||' \
-e 's|mkdir "$base/$logdir",0700;||' \
-e 's|$base/$logfile|$logfile|' \
-e 's|$base/$logdir|$logdir|' \
-e 's|"maillog.log"|"/var/log/assp/maillog.log"|' \
-e 's|-d "$base/logs" or mkdir "$base/logs",0700;||' \
-e 's|-d "$base/notes" or mkdir "$base/notes",0700;||' \
-e 's|-d "$base/docs" or mkdir "$base/docs",0777;||' \
-e 's|$base/$archivelogfile|$archivelogfile|' \
-e 's|"$base/$file",$sub,"$this|"/etc/assp/$file",$sub,"$this|' \
-e 's|"$base/$file",'\'''\'',"$this|"/etc/assp/$file",'\'''\'',"$this|' \
-e 's|my $fil=$1; $fil="$base/$fil" if $fil!~/^\\Q$base\\E/i;|my $fil=$1;|' \
-e 's|$fil="$base/$fil" if $fil!~/^\\Q$base\\E/i;|$fil="/etc/assp/$fil" if $fil!~/^\\/etc\\/assp\\/\|\\/var\\/lib\\/assp\\/\/i;|' \
-e 's|$fil="$base/$fil" if $fil!~/^((\[a-z\]:)?\[\\/\\\\\]\|\\Q$base\\E)/;||' \
-e 's|if ($fil !~ /^\\Q$base\\E/i) {|if ($fil !~ /^\\/usr\\/share\\/assp\\//i) {|' \
-e 's|$fil = "$base/$fil";|$fil = "/usr/share/assp/$fil";|' \
-e 's|Q$base\\E|Q\\/etc\\/assp\\/\\E|' \
-e 's|$fil="$base/$fil"|$fil="/etc/assp/$fil"|' \
-e 's|$base/$bf|/etc/assp/$bf|g' \
-e 's|rebuildrun.txt|/var/lib/assp/rebuildrun.txt|' \
assp.pl || die
# sed rebuildspamdb.pl
sed -i -e 's|assp.cfg|/etc/assp/assp.cfg|' \
-e 's|} && "$Config{base}/$Config{logfile}" \|\| '\''maillog.txt'\'';|};|' \
-e 's|tmaxtick('\''rebuild'\'');|tmaxtick('\''/var/lib/assp/rebuild'\'');|' \
-e 's|goodhosts|/var/lib/assp/goodhosts|g' \
-e 's|rebuildrun.txt|/var/lib/assp/rebuildrun.txt|' \
-e 's|$base/$DropList|$DropList|' \
-e 's|&fixPath($base) . "/|"|' \
-e 's|= "/var/lib/assp/rebuildrun.txt";|= "/var/lib/assp/rebuildrun.txt";\n $RebuildLog = "/var/lib/assp/rebuild.log";|' \
-e 's|"$base//|"/|g' \
rebuildspamdb.pl || die
# remove windows stuff
rm "${S}/addservice.pl" || die "Could not remove ${S}/addservice.pl"
rm -f "${S}/Win32-quickstart-guide.txt" || die "Could not remove ${S}/Win32-quickstart-guide.txt"
}
src_install() {
# Configuration directory
dodir /etc/assp/notes
insinto /etc/assp
# Installs files that are used by assp for black/gray lists,
# and domain country lookup. To be changed by admin as needed.
doins files/*.txt || die
fowners assp:assp /etc/assp -R
fperms 770 /etc/assp /etc/assp/notes
# Setup directories for mail to be stored for filter
keepdir /var/lib/assp/spam /var/lib/assp/notspam
keepdir /var/lib/assp/errors/spam /var/lib/assp/errors/notspam
# Logs directory
keepdir /var/log/assp
fowners assp:assp -R /var/log/assp
fperms 770 /var/log/assp
# Install the app
exeinto /usr/share/assp
doexe *.pl *.sh || die
insinto /usr/share/assp
doins -r images/ || die
# Lock down the files/data
fowners assp:assp -R /usr/share/assp
fperms 770 /usr/share/assp
# Data storage
fowners assp:assp -R /var/lib/assp
fperms 770 /var/lib/assp
# PID directory
dodir /var/run/assp
keepdir /var/run/assp
fowners assp:assp -R /var/run/assp
fperms 770 /var/run/assp
# Install the init.d script to listen
newinitd "${FILESDIR}/asspd.init" asspd
dohtml docs/*.htm || die "Failed to install html docs"
}
pkg_postinst() {
elog
elog "To configure ASSP, start /etc/init.d/asspd then point"
elog "your browser to http://localhost:55555"
elog "Username: admin Password: nospam4me (CHANGE ASAP!)"
elog
elog "File permissions have been set to use assp:assp"
elog "with mode 770 on directories. When you configure"
elog "ASSP, make sure and use the user assp."
elog
elog "Don't change any path related options."
elog
elog "See the on-line docs for a complete tutorial."
elog "http://assp.sourceforge.net/docs.html"
elog
elog "If upgrading, please update your old config to set both"
elog "redre.txt and nodelay.txt path of /etc/assp. There are"
elog "also many new options that you should review."
elog
}

View file

@ -1,178 +0,0 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/mail-filter/assp/assp-1.9.2.0.ebuild,v 1.2 2012/06/04 23:37:01 zmedico Exp $
inherit eutils user
DESCRIPTION="Anti-Spam SMTP Proxy written in Perl."
HOMEPAGE="http://assp.sourceforge.net/"
MY_PN=ASSP_${PV}-Install
SRC_URI="mirror://sourceforge/${PN}/${MY_PN}.zip"
LICENSE="GPL-2"
SLOT="0"
# this is a pre-release, so no keywords for now
KEYWORDS=""
IUSE="ipv6 ldap sasl spf srs ssl syslog"
DEPEND="app-arch/unzip"
RDEPEND="dev-lang/perl
dev-perl/Net-DNS
dev-perl/File-ReadBackwards
virtual/perl-IO-Compress
dev-perl/Email-MIME
dev-perl/Email-Send
dev-perl/Email-Valid
dev-perl/libwww-perl
dev-perl/mime-construct
dev-perl/Net-CIDR-Lite
virtual/perl-Digest-MD5
virtual/perl-Time-HiRes
ipv6? ( dev-perl/IO-Socket-INET6 )
sasl? ( dev-perl/Authen-SASL )
spf? ( dev-perl/Mail-SPF )
srs? ( dev-perl/Mail-SRS )
ssl? ( dev-perl/IO-Socket-SSL )
syslog? ( perl-core/Sys-Syslog )
ldap? ( dev-perl/perl-ldap )"
S=${WORKDIR}/${MY_PN}/ASSP
pkg_setup() {
enewgroup assp
enewuser assp -1 -1 /dev/null assp
}
src_unpack() {
unpack ${A}
cd "${S}"
local FILES="
assp.pl
rebuildspamdb.pl
stat.pl
"
# just being safe
for file in ${FILES}; do
edos2unix ${file}
done
# portable changes via sed vs patch
sed -i -e 's|file:files/|file:/etc/assp/|' \
-e 's|$base/images|/usr/share/assp/images|' \
-e 's|logs/maillog.txt|/var/log/assp/maillog.txt|' \
-e 's|PID File'\'',40,textinput,'\''pid'\''|PID File'\'',40,textinput,'\''asspd.pid'\''|' \
-e 's|Daemon\*\*'\'',0,checkbox,0|Daemon\*\*'\'',0,checkbox,1|' \
-e 's|UID\*\*'\'',20,textinput,'\'''\''|UID\*\*'\'',20,textinput,'\''assp'\''|' \
-e 's|GID\*\*'\'',20,textinput,'\'''\''|GID\*\*'\'',20,textinput,'\''assp'\''|' \
-e 's|popFileEditor'\('\\'\''pb/pbdb\.\([^\.]*\)\.db\\'\'',|popFileEditor(\\'\''/var/lib/assp/pb/pbdb.\1.db\\'\'',|g' \
-e 's|$base/assp.cfg|/etc/assp/assp.cfg|g' \
-e 's|$base/$pidfile|/var/run/assp/asspd.pid|' \
-e 's|mkdir "$base/$logdir",0700 if $logdir;||' \
-e 's|mkdir "$base/$logdir",0700;||' \
-e 's|$base/$logfile|$logfile|' \
-e 's|$base/$logdir|$logdir|' \
-e 's|"maillog.log"|"/var/log/assp/maillog.log"|' \
-e 's|-d "$base/logs" or mkdir "$base/logs",0700;||' \
-e 's|-d "$base/notes" or mkdir "$base/notes",0700;||' \
-e 's|-d "$base/docs" or mkdir "$base/docs",0777;||' \
-e 's|$base/$archivelogfile|$archivelogfile|' \
-e 's|"$base/$file",$sub,"$this|"/etc/assp/$file",$sub,"$this|' \
-e 's|"$base/$file",'\'''\'',"$this|"/etc/assp/$file",'\'''\'',"$this|' \
-e 's|my $fil=$1; $fil="$base/$fil" if $fil!~/^\\Q$base\\E/i;|my $fil=$1;|' \
-e 's|$fil="$base/$fil" if $fil!~/^\\Q$base\\E/i;|$fil="/etc/assp/$fil" if $fil!~/^\\/etc\\/assp\\/\|\\/var\\/lib\\/assp\\/\/i;|' \
-e 's|$fil="$base/$fil" if $fil!~/^((\[a-z\]:)?\[\\/\\\\\]\|\\Q$base\\E)/;||' \
-e 's|if ($fil !~ /^\\Q$base\\E/i) {|if ($fil !~ /^\\/usr\\/share\\/assp\\//i) {|' \
-e 's|$fil = "$base/$fil";|$fil = "/usr/share/assp/$fil";|' \
-e 's|Q$base\\E|Q\\/etc\\/assp\\/\\E|' \
-e 's|$fil="$base/$fil"|$fil="/etc/assp/$fil"|' \
-e 's|$base/$bf|/etc/assp/$bf|g' \
-e 's|rebuildrun.txt|/var/lib/assp/rebuildrun.txt|' \
assp.pl || die
# sed rebuildspamdb.pl
sed -i -e 's|assp.cfg|/etc/assp/assp.cfg|' \
-e 's|} && "$Config{base}/$Config{logfile}" \|\| '\''maillog.txt'\'';|};|' \
-e 's|tmaxtick('\''rebuild'\'');|tmaxtick('\''/var/lib/assp/rebuild'\'');|' \
-e 's|goodhosts|/var/lib/assp/goodhosts|g' \
-e 's|rebuildrun.txt|/var/lib/assp/rebuildrun.txt|' \
-e 's|$base/$DropList|$DropList|' \
-e 's|&fixPath($base) . "/|"|' \
-e 's|= "/var/lib/assp/rebuildrun.txt";|= "/var/lib/assp/rebuildrun.txt";\n $RebuildLog = "/var/lib/assp/rebuild.log";|' \
-e 's|"$base//|"/|g' \
rebuildspamdb.pl || die
# remove windows stuff
rm "${S}/addservice.pl" || die "Could not remove ${S}/addservice.pl"
rm -f "${S}/Win32-quickstart-guide.txt" || die "Could not remove ${S}/Win32-quickstart-guide.txt"
}
src_install() {
# Configuration directory
dodir /etc/assp/notes
insinto /etc/assp
# Installs files that are used by assp for black/gray lists,
# and domain country lookup. To be changed by admin as needed.
doins files/*.txt || die
fowners assp:assp /etc/assp -R
fperms 770 /etc/assp /etc/assp/notes
# Setup directories for mail to be stored for filter
keepdir /var/lib/assp/spam /var/lib/assp/notspam
keepdir /var/lib/assp/errors/spam /var/lib/assp/errors/notspam
# Logs directory
keepdir /var/log/assp
fowners assp:assp -R /var/log/assp
fperms 770 /var/log/assp
# Install the app
exeinto /usr/share/assp
doexe *.pl *.sh || die
insinto /usr/share/assp
doins -r images/ || die
# Lock down the files/data
fowners assp:assp -R /usr/share/assp
fperms 770 /usr/share/assp
# Data storage
fowners assp:assp -R /var/lib/assp
fperms 770 /var/lib/assp
# PID directory
dodir /var/run/assp
keepdir /var/run/assp
fowners assp:assp -R /var/run/assp
fperms 770 /var/run/assp
# Install the init.d script to listen
newinitd "${FILESDIR}/asspd.init" asspd
dohtml docs/*.htm || die "Failed to install html docs"
}
pkg_postinst() {
elog
elog "To configure ASSP, start /etc/init.d/asspd then point"
elog "your browser to http://localhost:55555"
elog "Username: admin Password: nospam4me (CHANGE ASAP!)"
elog
elog "File permissions have been set to use assp:assp"
elog "with mode 770 on directories. When you configure"
elog "ASSP, make sure and use the user assp."
elog
elog "Don't change any path related options."
elog
elog "See the on-line docs for a complete tutorial."
elog "http://assp.sourceforge.net/docs.html"
elog
elog "If upgrading, please update your old config to set both"
elog "redre.txt and nodelay.txt path of /etc/assp. There are"
elog "also many new options that you should review."
elog
}

View file

@ -1,178 +0,0 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/mail-filter/assp/assp-1.9.3.5.ebuild,v 1.3 2012/06/04 23:37:01 zmedico Exp $
inherit eutils user
DESCRIPTION="Anti-Spam SMTP Proxy written in Perl."
HOMEPAGE="http://assp.sourceforge.net/"
MY_PN=ASSP_${PV}-Install
SRC_URI="mirror://sourceforge/${PN}/${MY_PN}.zip"
LICENSE="GPL-2"
SLOT="0"
# this is a pre-release, so no keywords for now
KEYWORDS="~amd64 ~x86"
IUSE="ipv6 ldap sasl spf srs ssl syslog"
DEPEND="app-arch/unzip"
RDEPEND="dev-lang/perl
dev-perl/Net-DNS
dev-perl/File-ReadBackwards
virtual/perl-IO-Compress
dev-perl/Email-MIME
dev-perl/Email-Send
dev-perl/Email-Valid
dev-perl/libwww-perl
dev-perl/mime-construct
dev-perl/Net-CIDR-Lite
virtual/perl-Digest-MD5
virtual/perl-Time-HiRes
ipv6? ( dev-perl/IO-Socket-INET6 )
sasl? ( dev-perl/Authen-SASL )
spf? ( dev-perl/Mail-SPF )
srs? ( dev-perl/Mail-SRS )
ssl? ( dev-perl/IO-Socket-SSL )
syslog? ( perl-core/Sys-Syslog )
ldap? ( dev-perl/perl-ldap )"
S=${WORKDIR}/${MY_PN}/ASSP
pkg_setup() {
enewgroup assp
enewuser assp -1 -1 /dev/null assp
}
src_unpack() {
unpack ${A}
cd "${S}"
local FILES="
assp.pl
rebuildspamdb.pl
stat.pl
"
# just being safe
for file in ${FILES}; do
edos2unix ${file}
done
# portable changes via sed vs patch
sed -i -e 's|file:files/|file:/etc/assp/|' \
-e 's|$base/images|/usr/share/assp/images|' \
-e 's|logs/maillog.txt|/var/log/assp/maillog.txt|' \
-e 's|PID File'\'',40,textinput,'\''pid'\''|PID File'\'',40,textinput,'\''asspd.pid'\''|' \
-e 's|Daemon\*\*'\'',0,checkbox,0|Daemon\*\*'\'',0,checkbox,1|' \
-e 's|UID\*\*'\'',20,textinput,'\'''\''|UID\*\*'\'',20,textinput,'\''assp'\''|' \
-e 's|GID\*\*'\'',20,textinput,'\'''\''|GID\*\*'\'',20,textinput,'\''assp'\''|' \
-e 's|popFileEditor'\('\\'\''pb/pbdb\.\([^\.]*\)\.db\\'\'',|popFileEditor(\\'\''/var/lib/assp/pb/pbdb.\1.db\\'\'',|g' \
-e 's|$base/assp.cfg|/etc/assp/assp.cfg|g' \
-e 's|$base/$pidfile|/var/run/assp/asspd.pid|' \
-e 's|mkdir "$base/$logdir",0700 if $logdir;||' \
-e 's|mkdir "$base/$logdir",0700;||' \
-e 's|$base/$logfile|$logfile|' \
-e 's|$base/$logdir|$logdir|' \
-e 's|"maillog.log"|"/var/log/assp/maillog.log"|' \
-e 's|-d "$base/logs" or mkdir "$base/logs",0700;||' \
-e 's|-d "$base/notes" or mkdir "$base/notes",0700;||' \
-e 's|-d "$base/docs" or mkdir "$base/docs",0777;||' \
-e 's|$base/$archivelogfile|$archivelogfile|' \
-e 's|"$base/$file",$sub,"$this|"/etc/assp/$file",$sub,"$this|' \
-e 's|"$base/$file",'\'''\'',"$this|"/etc/assp/$file",'\'''\'',"$this|' \
-e 's|my $fil=$1; $fil="$base/$fil" if $fil!~/^\\Q$base\\E/i;|my $fil=$1;|' \
-e 's|$fil="$base/$fil" if $fil!~/^\\Q$base\\E/i;|$fil="/etc/assp/$fil" if $fil!~/^\\/etc\\/assp\\/\|\\/var\\/lib\\/assp\\/\/i;|' \
-e 's|$fil="$base/$fil" if $fil!~/^((\[a-z\]:)?\[\\/\\\\\]\|\\Q$base\\E)/;||' \
-e 's|if ($fil !~ /^\\Q$base\\E/i) {|if ($fil !~ /^\\/usr\\/share\\/assp\\//i) {|' \
-e 's|$fil = "$base/$fil";|$fil = "/usr/share/assp/$fil";|' \
-e 's|Q$base\\E|Q\\/etc\\/assp\\/\\E|' \
-e 's|$fil="$base/$fil"|$fil="/etc/assp/$fil"|' \
-e 's|$base/$bf|/etc/assp/$bf|g' \
-e 's|rebuildrun.txt|/var/lib/assp/rebuildrun.txt|' \
assp.pl || die
# sed rebuildspamdb.pl
sed -i -e 's|assp.cfg|/etc/assp/assp.cfg|' \
-e 's|} && "$Config{base}/$Config{logfile}" \|\| '\''maillog.txt'\'';|};|' \
-e 's|tmaxtick('\''rebuild'\'');|tmaxtick('\''/var/lib/assp/rebuild'\'');|' \
-e 's|goodhosts|/var/lib/assp/goodhosts|g' \
-e 's|rebuildrun.txt|/var/lib/assp/rebuildrun.txt|' \
-e 's|$base/$DropList|$DropList|' \
-e 's|&fixPath($base) . "/|"|' \
-e 's|= "/var/lib/assp/rebuildrun.txt";|= "/var/lib/assp/rebuildrun.txt";\n $RebuildLog = "/var/lib/assp/rebuild.log";|' \
-e 's|"$base//|"/|g' \
rebuildspamdb.pl || die
# remove windows stuff
rm "${S}/addservice.pl" || die "Could not remove ${S}/addservice.pl"
rm -f "${S}/Win32-quickstart-guide.txt" || die "Could not remove ${S}/Win32-quickstart-guide.txt"
}
src_install() {
# Configuration directory
dodir /etc/assp/notes
insinto /etc/assp
# Installs files that are used by assp for black/gray lists,
# and domain country lookup. To be changed by admin as needed.
doins files/*.txt || die
fowners assp:assp /etc/assp -R
fperms 770 /etc/assp /etc/assp/notes
# Setup directories for mail to be stored for filter
keepdir /var/lib/assp/spam /var/lib/assp/notspam
keepdir /var/lib/assp/errors/spam /var/lib/assp/errors/notspam
# Logs directory
keepdir /var/log/assp
fowners assp:assp -R /var/log/assp
fperms 770 /var/log/assp
# Install the app
exeinto /usr/share/assp
doexe *.pl *.sh || die
insinto /usr/share/assp
doins -r images/ || die
# Lock down the files/data
fowners assp:assp -R /usr/share/assp
fperms 770 /usr/share/assp
# Data storage
fowners assp:assp -R /var/lib/assp
fperms 770 /var/lib/assp
# PID directory
dodir /var/run/assp
keepdir /var/run/assp
fowners assp:assp -R /var/run/assp
fperms 770 /var/run/assp
# Install the init.d script to listen
newinitd "${FILESDIR}/asspd.init" asspd
dohtml docs/*.htm || die "Failed to install html docs"
}
pkg_postinst() {
elog
elog "To configure ASSP, start /etc/init.d/asspd then point"
elog "your browser to http://localhost:55555"
elog "Username: admin Password: nospam4me (CHANGE ASAP!)"
elog
elog "File permissions have been set to use assp:assp"
elog "with mode 770 on directories. When you configure"
elog "ASSP, make sure and use the user assp."
elog
elog "Don't change any path related options."
elog
elog "See the on-line docs for a complete tutorial."
elog "http://assp.sourceforge.net/docs.html"
elog
elog "If upgrading, please update your old config to set both"
elog "redre.txt and nodelay.txt path of /etc/assp. There are"
elog "also many new options that you should review."
elog
}

View file

@ -1,178 +0,0 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/mail-filter/assp/assp-1.9.3.7.ebuild,v 1.1 2012/07/04 02:35:19 patrick Exp $
inherit eutils user
DESCRIPTION="Anti-Spam SMTP Proxy written in Perl."
HOMEPAGE="http://assp.sourceforge.net/"
MY_PN=ASSP_${PV}-Install
SRC_URI="mirror://sourceforge/${PN}/${MY_PN}.zip"
LICENSE="GPL-2"
SLOT="0"
# this is a pre-release, so no keywords for now
KEYWORDS="~amd64 ~x86"
IUSE="ipv6 ldap sasl spf srs ssl syslog"
DEPEND="app-arch/unzip"
RDEPEND="dev-lang/perl
dev-perl/Net-DNS
dev-perl/File-ReadBackwards
virtual/perl-IO-Compress
dev-perl/Email-MIME
dev-perl/Email-Send
dev-perl/Email-Valid
dev-perl/libwww-perl
dev-perl/mime-construct
dev-perl/Net-CIDR-Lite
virtual/perl-Digest-MD5
virtual/perl-Time-HiRes
ipv6? ( dev-perl/IO-Socket-INET6 )
sasl? ( dev-perl/Authen-SASL )
spf? ( dev-perl/Mail-SPF )
srs? ( dev-perl/Mail-SRS )
ssl? ( dev-perl/IO-Socket-SSL )
syslog? ( perl-core/Sys-Syslog )
ldap? ( dev-perl/perl-ldap )"
S=${WORKDIR}/${MY_PN}/ASSP
pkg_setup() {
enewgroup assp
enewuser assp -1 -1 /dev/null assp
}
src_unpack() {
unpack ${A}
cd "${S}"
local FILES="
assp.pl
rebuildspamdb.pl
stat.pl
"
# just being safe
for file in ${FILES}; do
edos2unix ${file}
done
# portable changes via sed vs patch
sed -i -e 's|file:files/|file:/etc/assp/|' \
-e 's|$base/images|/usr/share/assp/images|' \
-e 's|logs/maillog.txt|/var/log/assp/maillog.txt|' \
-e 's|PID File'\'',40,textinput,'\''pid'\''|PID File'\'',40,textinput,'\''asspd.pid'\''|' \
-e 's|Daemon\*\*'\'',0,checkbox,0|Daemon\*\*'\'',0,checkbox,1|' \
-e 's|UID\*\*'\'',20,textinput,'\'''\''|UID\*\*'\'',20,textinput,'\''assp'\''|' \
-e 's|GID\*\*'\'',20,textinput,'\'''\''|GID\*\*'\'',20,textinput,'\''assp'\''|' \
-e 's|popFileEditor'\('\\'\''pb/pbdb\.\([^\.]*\)\.db\\'\'',|popFileEditor(\\'\''/var/lib/assp/pb/pbdb.\1.db\\'\'',|g' \
-e 's|$base/assp.cfg|/etc/assp/assp.cfg|g' \
-e 's|$base/$pidfile|/var/run/assp/asspd.pid|' \
-e 's|mkdir "$base/$logdir",0700 if $logdir;||' \
-e 's|mkdir "$base/$logdir",0700;||' \
-e 's|$base/$logfile|$logfile|' \
-e 's|$base/$logdir|$logdir|' \
-e 's|"maillog.log"|"/var/log/assp/maillog.log"|' \
-e 's|-d "$base/logs" or mkdir "$base/logs",0700;||' \
-e 's|-d "$base/notes" or mkdir "$base/notes",0700;||' \
-e 's|-d "$base/docs" or mkdir "$base/docs",0777;||' \
-e 's|$base/$archivelogfile|$archivelogfile|' \
-e 's|"$base/$file",$sub,"$this|"/etc/assp/$file",$sub,"$this|' \
-e 's|"$base/$file",'\'''\'',"$this|"/etc/assp/$file",'\'''\'',"$this|' \
-e 's|my $fil=$1; $fil="$base/$fil" if $fil!~/^\\Q$base\\E/i;|my $fil=$1;|' \
-e 's|$fil="$base/$fil" if $fil!~/^\\Q$base\\E/i;|$fil="/etc/assp/$fil" if $fil!~/^\\/etc\\/assp\\/\|\\/var\\/lib\\/assp\\/\/i;|' \
-e 's|$fil="$base/$fil" if $fil!~/^((\[a-z\]:)?\[\\/\\\\\]\|\\Q$base\\E)/;||' \
-e 's|if ($fil !~ /^\\Q$base\\E/i) {|if ($fil !~ /^\\/usr\\/share\\/assp\\//i) {|' \
-e 's|$fil = "$base/$fil";|$fil = "/usr/share/assp/$fil";|' \
-e 's|Q$base\\E|Q\\/etc\\/assp\\/\\E|' \
-e 's|$fil="$base/$fil"|$fil="/etc/assp/$fil"|' \
-e 's|$base/$bf|/etc/assp/$bf|g' \
-e 's|rebuildrun.txt|/var/lib/assp/rebuildrun.txt|' \
assp.pl || die
# sed rebuildspamdb.pl
sed -i -e 's|assp.cfg|/etc/assp/assp.cfg|' \
-e 's|} && "$Config{base}/$Config{logfile}" \|\| '\''maillog.txt'\'';|};|' \
-e 's|tmaxtick('\''rebuild'\'');|tmaxtick('\''/var/lib/assp/rebuild'\'');|' \
-e 's|goodhosts|/var/lib/assp/goodhosts|g' \
-e 's|rebuildrun.txt|/var/lib/assp/rebuildrun.txt|' \
-e 's|$base/$DropList|$DropList|' \
-e 's|&fixPath($base) . "/|"|' \
-e 's|= "/var/lib/assp/rebuildrun.txt";|= "/var/lib/assp/rebuildrun.txt";\n $RebuildLog = "/var/lib/assp/rebuild.log";|' \
-e 's|"$base//|"/|g' \
rebuildspamdb.pl || die
# remove windows stuff
rm "${S}/addservice.pl" || die "Could not remove ${S}/addservice.pl"
rm -f "${S}/Win32-quickstart-guide.txt" || die "Could not remove ${S}/Win32-quickstart-guide.txt"
}
src_install() {
# Configuration directory
dodir /etc/assp/notes
insinto /etc/assp
# Installs files that are used by assp for black/gray lists,
# and domain country lookup. To be changed by admin as needed.
doins files/*.txt || die
fowners assp:assp /etc/assp -R
fperms 770 /etc/assp /etc/assp/notes
# Setup directories for mail to be stored for filter
keepdir /var/lib/assp/spam /var/lib/assp/notspam
keepdir /var/lib/assp/errors/spam /var/lib/assp/errors/notspam
# Logs directory
keepdir /var/log/assp
fowners assp:assp -R /var/log/assp
fperms 770 /var/log/assp
# Install the app
exeinto /usr/share/assp
doexe *.pl *.sh || die
insinto /usr/share/assp
doins -r images/ || die
# Lock down the files/data
fowners assp:assp -R /usr/share/assp
fperms 770 /usr/share/assp
# Data storage
fowners assp:assp -R /var/lib/assp
fperms 770 /var/lib/assp
# PID directory
dodir /var/run/assp
keepdir /var/run/assp
fowners assp:assp -R /var/run/assp
fperms 770 /var/run/assp
# Install the init.d script to listen
newinitd "${FILESDIR}/asspd.init" asspd
dohtml docs/*.htm || die "Failed to install html docs"
}
pkg_postinst() {
elog
elog "To configure ASSP, start /etc/init.d/asspd then point"
elog "your browser to http://localhost:55555"
elog "Username: admin Password: nospam4me (CHANGE ASAP!)"
elog
elog "File permissions have been set to use assp:assp"
elog "with mode 770 on directories. When you configure"
elog "ASSP, make sure and use the user assp."
elog
elog "Don't change any path related options."
elog
elog "See the on-line docs for a complete tutorial."
elog "http://assp.sourceforge.net/docs.html"
elog
elog "If upgrading, please update your old config to set both"
elog "redre.txt and nodelay.txt path of /etc/assp. There are"
elog "also many new options that you should review."
elog
}

View file

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/mail-filter/assp/assp-1.9.3.6.ebuild,v 1.1 2012/06/18 07:16:28 patrick Exp $
# $Header: /var/cvsroot/gentoo-x86/mail-filter/assp/assp-1.9.4.0.ebuild,v 1.1 2012/08/23 04:48:56 patrick Exp $
inherit eutils user

View file

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/mail-filter/imapfilter/imapfilter-2.5.2.ebuild,v 1.4 2012/08/11 12:57:08 maekke Exp $
# $Header: /var/cvsroot/gentoo-x86/mail-filter/imapfilter/imapfilter-2.5.2.ebuild,v 1.5 2012/08/23 05:49:30 xmw Exp $
EAPI=4
@ -12,7 +12,7 @@ SRC_URI="mirror://github/lefcha/imapfilter/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 ~ppc x86"
KEYWORDS="amd64 ppc x86"
IUSE=""
RDEPEND="dev-libs/openssl

View file

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/ladspa-cmt/ladspa-cmt-1.16.ebuild,v 1.11 2012/08/11 13:14:04 maekke Exp $
# $Header: /var/cvsroot/gentoo-x86/media-libs/ladspa-cmt/ladspa-cmt-1.16.ebuild,v 1.12 2012/08/23 05:52:52 xmw Exp $
inherit eutils multilib toolchain-funcs
@ -13,7 +13,7 @@ DESCRIPTION="CMT (computer music toolkit) Lasdpa library plugins"
HOMEPAGE="http://www.ladspa.org/"
SRC_URI="http://www.ladspa.org/download/${MY_P}.tgz"
KEYWORDS="alpha amd64 hppa ~ppc ppc64 ~sparc x86 ~x86-fbsd"
KEYWORDS="alpha amd64 hppa ppc ppc64 ~sparc x86 ~x86-fbsd"
LICENSE="LGPL-2.1"
SLOT="0"

View file

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/vamp-plugin-sdk/vamp-plugin-sdk-2.3.ebuild,v 1.8 2012/08/11 14:05:28 maekke Exp $
# $Header: /var/cvsroot/gentoo-x86/media-libs/vamp-plugin-sdk/vamp-plugin-sdk-2.3.ebuild,v 1.9 2012/08/23 05:54:41 xmw Exp $
inherit toolchain-funcs eutils multilib
@ -10,7 +10,7 @@ SRC_URI="http://code.soundsoftware.ac.uk/attachments/download/224/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="amd64 ~arm hppa ~mips ~ppc ppc64 x86"
KEYWORDS="amd64 ~arm hppa ~mips ppc ppc64 x86"
IUSE="doc"
RDEPEND="media-libs/libsndfile"

View file

@ -1,3 +1,2 @@
DIST amarok-2.4.3.tar.bz2 17468203 SHA256 6ce448ecd30cc3d45211617636904e3662c2082441b79ca1e36685c8b0be8208 SHA512 68a06a92f354b6ecd9e888c57f0d3dccf29d1029f4d877a80853daf9846863ad9e5195cce2335a3fca46ebed49e8d767c09211a1661a331a53a59fbab518b6cb WHIRLPOOL 692610428f5a1db37bd430e38f9efd49f5b061c2e19d49d6545b016d4e54a69bb82721b2a200ade3bf35da1aa46e05e8d355d49879056a7125ea0f8c99b3d81a
DIST amarok-2.5.0.tar.bz2 46607238 SHA256 1ed191db290fdede7c910c322cff2aba8ecfc1c4af891508d9ee410db3768849 SHA512 ac195f627ed0b1daba4b3a2896048d445caa85310b3373b373cabc76c36f424a60f2a3a439012363f3022c0ddb85a6770f2debd5b1a6e009e067bc5329d284c6 WHIRLPOOL e2256ae5dc941016afc9c3798b8f4ee4275dd23085b520067d6f24fa682ce465254d251c3494208a679441058771226668d5b500cb84851ccdd5b48584bb73bc
DIST amarok-2.6.0.tar.bz2 42331208 SHA256 a91280e588181cf9363d7146f339ef527220fe0c8057f26f010f592b01fdd2c0 SHA512 da67876dfc41dcc3e1f3087698d36dabb43a339cef1669ca0518de191e2d9dd2e3e72122ffe76ecfd763e83547e46c55bba8606c095d35c85058df77bf35fb4a WHIRLPOOL 70fadaff2565fc2e9d8cb628942ec8107c6f4fcea0bd3e898f4ba6a72231ebaca8cb1d924f1413ced7c82940790438c9dcbe2fba7760e356b100eb832d8a2edc

View file

@ -1,119 +0,0 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/amarok/amarok-2.4.3-r1.ebuild,v 1.7 2012/07/19 15:56:45 kensington Exp $
EAPI=4
KDE_LINGUAS="bg ca cs da de en_GB es et eu fi fr it ja km nb nds nl pa
pl pt pt_BR ru sl sr sr@latin sv th tr uk wa zh_TW"
KDE_SCM="git"
KDE_REQUIRED="never"
inherit flag-o-matic kde4-base
DESCRIPTION="Advanced audio player based on KDE framework."
HOMEPAGE="http://amarok.kde.org/"
if [[ ${PV} != *9999* ]]; then
SRC_URI="mirror://kde/stable/${PN}/${PV}/src/${P}.tar.bz2"
KEYWORDS="amd64 ppc x86"
else
KEYWORDS=""
fi
LICENSE="GPL-2"
SLOT="4"
IUSE="cdda daap debug +embedded ipod lastfm mp3tunes mtp opengl semantic-desktop +utils"
# Tests require gmock - http://code.google.com/p/gmock/
# It's not in the tree yet
RESTRICT="test"
# ipod requires gdk enabled and also gtk compiled in libgpod
COMMONDEPEND="
app-crypt/qca:2
>=app-misc/strigi-0.5.7
$(add_kdebase_dep kdelibs 'opengl?,semantic-desktop?')
$(add_kdebase_dep kdebase-kioslaves)
>=media-libs/taglib-1.6.1[asf,mp4]
>=media-libs/taglib-extras-1.0.1
sys-libs/zlib
>=virtual/mysql-5.1[embedded?]
x11-libs/qt-script:4
>=x11-libs/qtscriptgenerator-0.1.0
cdda? (
$(add_kdebase_dep libkcddb)
$(add_kdebase_dep libkcompactdisc)
$(add_kdebase_dep kdemultimedia-kioslaves)
)
ipod? ( >=media-libs/libgpod-0.7.0[gtk] )
lastfm? ( =media-libs/liblastfm-0.3* )
mp3tunes? (
dev-libs/glib:2
dev-libs/libxml2
dev-libs/openssl
net-libs/loudmouth
net-misc/curl
x11-libs/qt-core:4[glib]
)
mtp? ( >=media-libs/libmtp-1.0.0 )
opengl? ( virtual/opengl )
"
DEPEND="${COMMONDEPEND}
dev-util/automoc
virtual/pkgconfig
"
RDEPEND="${COMMONDEPEND}
$(add_kdebase_dep phonon-kde)
!media-sound/amarok-utils
"
src_configure() {
# Append minimal-toc cflag for ppc64, see bug 280552 and 292707
use ppc64 && append-flags -mminimal-toc
local mycmakeargs
mycmakeargs=(
-DWITH_PLAYER=ON
-DWITH_Libgcrypt=OFF
$(cmake-utils_use embedded WITH_MYSQL_EMBEDDED)
$(cmake-utils_use_with ipod)
$(cmake-utils_use_with ipod Gdk)
$(cmake-utils_use_with lastfm LibLastFm)
$(cmake-utils_use_with mtp)
$(cmake-utils_use_with mp3tunes MP3Tunes)
)
mycmakeargs+=(
$(cmake-utils_use_with utils UTILITIES)
)
# $(cmake-utils_use_with semantic-desktop Nepomuk)
# $(cmake-utils_use_with semantic-desktop Soprano)
kde4-base_src_configure
}
pkg_postinst() {
kde4-base_pkg_postinst
if use daap; then
echo
elog "You have installed amarok with daap support."
elog "You may be interested in installing www-servers/mongrel as well."
echo
fi
if ! use embedded; then
echo
elog "You've disabled the amarok support for embedded mysql DBs."
elog "You'll have to configure amarok to use an external db server."
echo
elog "Please read http://amarok.kde.org/wiki/MySQL_Server for details on how"
elog "to configure the external db and migrate your data from the embedded database."
echo
if has_version "virtual/mysql[minimal]"; then
elog "You built mysql with the minimal use flag, so it doesn't include the server."
elog "You won't be able to use the local mysql installation to store your amarok collection."
echo
fi
fi
}

View file

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/amarok/amarok-2.5.0-r4.ebuild,v 1.4 2012/07/19 15:56:45 kensington Exp $
# $Header: /var/cvsroot/gentoo-x86/media-sound/amarok/amarok-2.5.0-r4.ebuild,v 1.5 2012/08/22 22:59:15 xmw Exp $
EAPI=4
@ -16,7 +16,7 @@ DESCRIPTION="Advanced audio player based on KDE framework."
HOMEPAGE="http://amarok.kde.org/"
if [[ ${PV} != *9999* ]]; then
SRC_URI="mirror://kde/unstable/${PN}/${PV}/src/${P}.tar.bz2"
KEYWORDS="amd64 ~ppc ~ppc64 x86"
KEYWORDS="amd64 ppc ~ppc64 x86"
else
KEYWORDS=""
fi

View file

@ -1,83 +0,0 @@
From 79d86829294ac54132c01153660e70e30c15c378 Mon Sep 17 00:00:00 2001
From: Jeff Mitchell <mitchell@kde.org>
Date: Wed, 22 Sep 2010 18:15:17 -0400
Subject: [PATCH] Re-add some tests for unprintable but also invalid chars. Apparently Qt's XML classes don't properly check for invalid chars when writing XML, even if you tell them to.
Also switch to QXmlStreamWriter, as apparently going forward it is the more supported class.
BUG: 251762
---
utilities/collectionscanner/CollectionScanner.cpp | 27 +++++++++++++-------
1 files changed, 17 insertions(+), 10 deletions(-)
diff --git a/utilities/collectionscanner/CollectionScanner.cpp b/utilities/collectionscanner/CollectionScanner.cpp
index 0a23a53..28c554b 100644
--- a/utilities/collectionscanner/CollectionScanner.cpp
+++ b/utilities/collectionscanner/CollectionScanner.cpp
@@ -37,13 +37,13 @@
#include <QByteArray>
#include <QDBusReply>
#include <QDir>
-#include <QDomDocument>
#include <QFile>
#include <QtDebug>
#include <QTextCodec>
#include <QTextStream>
#include <QTimer>
#include <QThread>
+#include <QXmlStreamWriter>
//Taglib:
#include <apetag.h>
@@ -814,8 +814,10 @@ CollectionScanner::readTags( const QString &path, TagLib::AudioProperties::ReadS
void
CollectionScanner::writeElement( const QString &name, const AttributeHash &attributes )
{
- QDomDocument doc; // A dummy. We don't really use DOM, but SAX2
- QDomElement element = doc.createElement( name );
+ QString text;
+ QXmlStreamWriter writer( &text );
+
+ writer.writeStartElement( name );
QHashIterator<QString, QString> it( attributes );
while( it.hasNext() )
@@ -829,7 +831,15 @@ CollectionScanner::writeElement( const QString &name, const AttributeHash &attri
bool noCategory = false;
for( unsigned i = 0; i < len; i++ )
{
- if( data[i].category() == QChar::NoCategory )
+ if( data[i].category() == QChar::NoCategory ||
+ data[i].category() == QChar::Other_Surrogate ||
+ (
+ data[i].unicode() < 20 &&
+ data[i].unicode() != 9 &&
+ data[i].unicode() != 10 &&
+ data[i].unicode() != 13
+ )
+ )
{
noCategory = true;
break;
@@ -838,15 +848,12 @@ CollectionScanner::writeElement( const QString &name, const AttributeHash &attri
if( noCategory )
continue;
-
- element.setAttribute( it.key(), it.value() );
+ writer.writeAttribute( it.key(), it.value() );
}
- QString text;
- QTextStream stream( &text, QIODevice::WriteOnly );
- element.save( stream, 0 );
+ writer.writeEndElement();
- std::cout << text.toUtf8().data() << std::endl;
+ std::cout << text.toUtf8().data() << std::endl << std::endl;
}
// taken verbatim from Qt's sources, since it's stupidly in the QtGui module
--
1.7.0.4

View file

@ -1,21 +0,0 @@
commit ce57e4264d0395b15e7253e3cdef48e36a8b129c
Author: Jeff Mitchell <mitchell@kde.org>
Date: Fri Sep 17 13:02:38 2010 -0400
FLAC BPM tags could be read in incorrectly.
BUG: 234166
diff --git a/utilities/collectionscanner/CollectionScanner.cpp b/utilities/collectionscanner/CollectionScanner.cpp
index a9d6755..0a23a53 100644
--- a/utilities/collectionscanner/CollectionScanner.cpp
+++ b/utilities/collectionscanner/CollectionScanner.cpp
@@ -701,7 +701,7 @@ CollectionScanner::readTags( const QString &path, TagLib::AudioProperties::ReadS
attributes["composer"] = TStringToQString( file->xiphComment()->fieldListMap()["COMPOSER"].front() ).trimmed();
if ( !file->xiphComment()->fieldListMap()[ "BPM" ].isEmpty() )
- attributes["bpm"] = TStringToQString( file->xiphComment()->fieldListMap()["BPM"].front() ).trimmed().toFloat();
+ attributes["bpm"] = TStringToQString( file->xiphComment()->fieldListMap()["BPM"].front() ).trimmed();
if ( !file->xiphComment()->fieldListMap()[ "DISCNUMBER" ].isEmpty() )
disc = TStringToQString( file->xiphComment()->fieldListMap()["DISCNUMBER"].front() ).trimmed();

View file

@ -1,19 +0,0 @@
commit 37eda947bd8181a73ad0fffc88e66c25ddd69f28
Author: Rick W. Chen <stuffcorpse@archlinux.us>
Date: Thu Mar 17 18:38:19 2011 +1300
Fix plugin loading and bump_plugin_version.rb script
diff --git a/src/PluginManager.cpp b/src/PluginManager.cpp
index ff52646..1e34510 100644
--- a/src/PluginManager.cpp
+++ b/src/PluginManager.cpp
@@ -32,7 +32,7 @@
#include <QFile>
#include <QMetaEnum>
-const int Plugins::PluginManager::s_pluginFrameworkVersion = 60;
+const int Plugins::PluginManager::s_pluginFrameworkVersion = 61;
Plugins::PluginManager* Plugins::PluginManager::s_instance = 0;
Plugins::PluginManager*

View file

@ -1,37 +0,0 @@
diff -urN amarok-2.4.0.90.orig/CMakeLists.txt amarok-2.4.0.90/CMakeLists.txt
--- amarok-2.4.0.90.orig/CMakeLists.txt 2011-04-19 00:03:27.910000016 +0000
+++ amarok-2.4.0.90/CMakeLists.txt 2011-04-19 00:06:17.466666683 +0000
@@ -105,6 +105,10 @@
macro_optional_find_package(QJSON)
macro_log_feature( QJSON_FOUND "QJson" "Qt JSON Parser used for the Playdar Collection" "http://qjson.sourceforge.net/" FALSE "" "" )
+ # HUpnp is required for the upnp plugin
+ macro_optional_find_package(HUpnp)
+ macro_log_feature ( HUPNP_FOUND "HUpnp" "HUpnp is an universal Plug and Play Library" "http://herqq.org/" FALSE "" "" )
+
# macro_optional_find_package(Strigi)
# macro_log_feature( STRIGI_FOUND "strigi" "Index metadata of files" "http://strigi.sourceforge.net" FALSE "" "" )
diff -urN amarok-2.4.0.90.orig/src/core-impl/collections/CMakeLists.txt amarok-2.4.0.90/src/core-impl/collections/CMakeLists.txt
--- amarok-2.4.0.90.orig/src/core-impl/collections/CMakeLists.txt 2011-04-19 00:03:27.940000015 +0000
+++ amarok-2.4.0.90/src/core-impl/collections/CMakeLists.txt 2011-04-19 00:07:06.753333348 +0000
@@ -25,4 +25,6 @@
if( QJSON_FOUND )
add_subdirectory( playdarcollection )
endif( QJSON_FOUND )
-add_subdirectory( upnpcollection )
+if( HUPNP_FOUND )
+ add_subdirectory( upnpcollection )
+endif( HUPNP_FOUND )
diff -urN amarok-2.4.0.90.orig/cmake/modules/FindHUpnp.cmake amarok-2.4.0.90/cmake/modules/FindHUpnp.cmake
--- amarok-2.4.0.90.orig/cmake/modules/FindHUpnp.cmake 2011-04-19 01:59:14.313333349 +0000
+++ amarok-2.4.0.90/cmake/modules/FindHUpnp.cmake 2011-04-19 02:14:13.670000016 +0000
@@ -6,7 +6,7 @@
# HUPNP_LIBRARIES
# HUPNP_FOUND
-find_path(HUPNP_INCLUDE_DIR HUpnp HINTS ${KDE4_INCLUDE_DIR})
+find_path(HUPNP_INCLUDE_DIR HUpnp HINTS ${KDE4_INCLUDE_DIR} /usr/include/HUpnpCore)
find_library(HUPNP_LIBRARIES HUpnp PATHS ${KDE4_LIB_DIR})

View file

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/mp3blaster/mp3blaster-3.2.5-r1.ebuild,v 1.8 2012/08/11 14:12:31 maekke Exp $
# $Header: /var/cvsroot/gentoo-x86/media-sound/mp3blaster/mp3blaster-3.2.5-r1.ebuild,v 1.9 2012/08/23 05:55:42 xmw Exp $
EAPI=4
inherit eutils
@ -12,7 +12,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha amd64 arm ~ppc ppc64 ~sparc x86 ~x86-fbsd"
KEYWORDS="~alpha amd64 arm ppc ppc64 ~sparc x86 ~x86-fbsd"
IUSE="lirc oss sdl sid vorbis"
RDEPEND=">=sys-libs/ncurses-5.7-r7

View file

@ -1,3 +1,4 @@
DIST parole-0.2.0.6.tar.bz2 652946 SHA256 1bfcb6ca34eb496bc08ce3ac803a20b4fea566bddca4ce4400d3edf7b25804b6 SHA512 7cfa55f6044416df86628f44fe0696c1753d4bce04b42ad44963d3d6387c6a239f3055f7ae2bdb2e2b37ed737558ff2ba386cba32f9cbe0903ccfbee7e61e30e WHIRLPOOL 455fa0179c715499c63f895c42508c3296ef8e54435aa14d5ed281d3be3acaba28bc24340c3a2022908dba2d2e7026719427d4b374dc2ba17a7a8bc7a987ecfb
DIST parole-0.2.90_pre20120720.tar.bz2 605272 SHA256 2498f8d2b9613923bbafedcb870f828d33796118e7f1776ec00135f365142927 SHA512 6315f9c05d2e10ec198c49d4e208cc5f0c49752daf9a4781201108cb48a906bce3bbe827c1423e4b373a0b4ef384b52d3c859b729f4cac7e906e982ceaff07c3 WHIRLPOOL 77c0ca901d7dc5b272c356f1ad98d75ca8b3e30495d7e2633a269df334d4b0cffbdf922245806cd973f4f38cfb0ddb88864977e93bbbb7c6a8a219f71e1ddd63
DIST parole-0.3.0.3.tar.bz2 622735 SHA256 e02925a51321f6e413d608d36aa1a886d78938967664c178386c4c618e883661 SHA512 ea079a07f5ae713d0dcf0b0d00fb62383db05983650192891bf767fe5dda0d76f808ae763e795978da68e4981cc34bf772fc1aaf6c4f940f484de296a4b11438 WHIRLPOOL 5f940a00cfb3037b18e93b80a255d7f7d132b6e7d4bc2b52191296b5d78a762ca1c7f06cb5815ba896915daff2b80d4e30c7da5bb8294c6229b625cfc6db9674
DIST parole-0.3.0.tar.bz2 620227 SHA256 4e96524bfbfaa8f81f3a6e655edb0ce58d62543531609ba10cffdf2dc894a840 SHA512 13cb9158b8dddc391a943bc09f99c45d3d5e0f665cc8963e3a013b145b0b06668ca05d1d0ad43ad4bfeca95f7de553038a00accaafe7077d9fbf768a60800118 WHIRLPOOL 9fad273888a92951a84ec343f20ac8c8b4bdb54b6f7c0aa3786a60fcd88771ff6362ed4720d8c01d3852a68d34d62d8cc277a9a0b10606b8005ac6386197a0e4

View file

@ -0,0 +1,41 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-video/parole/parole-0.3.0.3.ebuild,v 1.1 2012/08/23 03:12:12 ssuominen Exp $
EAPI=4
inherit xfconf
DESCRIPTION="a simple media player based on the GStreamer framework for the Xfce4 desktop"
HOMEPAGE="http://goodies.xfce.org/projects/applications/parole/"
SRC_URI="mirror://xfce/src/apps/${PN}/0.3/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~mips ~x86"
IUSE="debug libnotify taglib"
COMMON_DEPEND=">=x11-libs/gtk+-2.20:2
>=dev-libs/glib-2.24:2
>=xfce-base/libxfce4util-4.8
>=xfce-base/libxfce4ui-4.8
>=dev-libs/dbus-glib-0.88
>=media-libs/gstreamer-0.10.11:0.10
>=media-libs/gst-plugins-base-0.10.11:0.10
libnotify? ( >=x11-libs/libnotify-0.4.5 )
taglib? ( >=media-libs/taglib-1.4 )"
RDEPEND="${COMMON_DEPEND}
media-plugins/gst-plugins-meta:0.10"
DEPEND="${COMMON_DEPEND}
dev-util/intltool
virtual/pkgconfig
x11-proto/xproto"
pkg_setup() {
XFCONF=(
$(use_enable libnotify)
$(use_enable taglib)
$(xfconf_use_debug)
)
DOCS=( AUTHORS ChangeLog README THANKS TODO )
}

View file

@ -1 +1 @@
Wed, 22 Aug 2012 18:07:30 +0000
Thu, 23 Aug 2012 06:07:32 +0000

View file

@ -1 +1 @@
Wed, 22 Aug 2012 18:07:31 +0000
Thu, 23 Aug 2012 06:07:33 +0000

View file

@ -3,10 +3,10 @@ DEPEND=>=dev-lang/ghc-6.12.1
DESCRIPTION=Rebuild Haskell dependencies in Gentoo
EAPI=4
HOMEPAGE=http://haskell.org/haskellwiki/Gentoo#haskell-updater
KEYWORDS=~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~ppc-macos ~x86-macos ~sparc-solaris ~x86-solaris
KEYWORDS=~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris
LICENSE=GPL-2
RDEPEND=|| ( >=sys-apps/portage-2.1.6 sys-apps/pkgcore sys-apps/paludis )
SLOT=0
SRC_URI=http://hackage.haskell.org/packages/archive/haskell-updater/1.2.0.6/haskell-updater-1.2.0.6.tar.gz
_eclasses_=eutils b8eb29e3c9c4e94c65da9ebec37902a9 ghc-package f39fadb76cd4747582996e6b0d44479c haskell-cabal 10f63c8efa3135a67f680571f1956a97 multilib 564d80d2026ae9f1910d8da4ea211e91 toolchain-funcs d3b5812eeab360bc41aa48b6cdbbc142 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4
_md5_=b849e01e78082a2ef5fa0072ecda4b68
_md5_=51b70a0f610844335dd6bc5e9f1d1cd3

View file

@ -4,10 +4,10 @@ DESCRIPTION=A vi/ex clone
EAPI=3
HOMEPAGE=ftp://ftp.cs.pdx.edu/pub/elvis/
IUSE=X
KEYWORDS=~alpha amd64 ~ppc ppc64 ~sparc x86 ~x86-interix ~ppc-macos ~x86-macos ~m68k-mint ~sparc-solaris
KEYWORDS=~alpha amd64 ppc ppc64 ~sparc x86 ~x86-interix ~ppc-macos ~x86-macos ~m68k-mint ~sparc-solaris
LICENSE=Artistic
RDEPEND=>=sys-libs/ncurses-5.2 X? ( >=x11-proto/xproto-7.0.4 >=x11-libs/libX11-1.0.0 >=x11-libs/libXt-1.0.0 >=x11-libs/libXpm-3.5.4.2 >=x11-libs/libXft-2.1.8.2 ) app-admin/eselect-vi
SLOT=0
SRC_URI=ftp://ftp.cs.pdx.edu/pub/elvis/elvis-2.2_0.tar.gz
_eclasses_=eutils b8eb29e3c9c4e94c65da9ebec37902a9 multilib 564d80d2026ae9f1910d8da4ea211e91 toolchain-funcs d3b5812eeab360bc41aa48b6cdbbc142 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4
_md5_=a584cfc46600792353c9cf9305da167f
_md5_=f22d54d470f2b46f23246028f221297e

View file

@ -12,4 +12,4 @@ REQUIRED_USE=java? ( sdk ) python? ( sdk ) vboxwebsrv? ( java )
SLOT=0
SRC_URI=http://download.virtualbox.org/virtualbox/4.1.12/VirtualBox-4.1.12.tar.bz2
_eclasses_=base d40e074a6349af3ea5e937210630bdc1 eutils b8eb29e3c9c4e94c65da9ebec37902a9 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic 2c938a1fe61ea9899a2b97ea1e065f5f java-pkg-opt-2 f9bbbe5092225a2059aa9e6a3a2b52f1 java-utils-2 2d9eb3508fa5d6759e39354b74545567 linux-info 0b7adf68a2edb4e5a32b07bb6e68121c multilib 564d80d2026ae9f1910d8da4ea211e91 pax-utils 0ace932c4045349c7fc1af0fe7091acf python a0b470c1fca4658ffc97f0df0f25dcdc qt4-r2 3f724d1082a722cce69ce795371b81a3 toolchain-funcs d3b5812eeab360bc41aa48b6cdbbc142 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4
_md5_=0a6693a17ec854e35f06be69e97fea81
_md5_=49699ca450e914a6316d64bd69bf370a

View file

@ -12,4 +12,4 @@ REQUIRED_USE=java? ( sdk ) python? ( sdk ) vboxwebsrv? ( java )
SLOT=0
SRC_URI=http://download.virtualbox.org/virtualbox/4.1.18/VirtualBox-4.1.18.tar.bz2
_eclasses_=base d40e074a6349af3ea5e937210630bdc1 eutils b8eb29e3c9c4e94c65da9ebec37902a9 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic 2c938a1fe61ea9899a2b97ea1e065f5f java-pkg-opt-2 f9bbbe5092225a2059aa9e6a3a2b52f1 java-utils-2 2d9eb3508fa5d6759e39354b74545567 linux-info 0b7adf68a2edb4e5a32b07bb6e68121c multilib 564d80d2026ae9f1910d8da4ea211e91 pax-utils 0ace932c4045349c7fc1af0fe7091acf python a0b470c1fca4658ffc97f0df0f25dcdc qt4-r2 3f724d1082a722cce69ce795371b81a3 toolchain-funcs d3b5812eeab360bc41aa48b6cdbbc142 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4
_md5_=a2b0f39e69eba5c6f15db7b719e3c951
_md5_=e30df6a8077ac7b1db25de3f1c6c7c2c

View file

@ -12,4 +12,4 @@ REQUIRED_USE=java? ( sdk ) python? ( sdk ) vboxwebsrv? ( java )
SLOT=0
SRC_URI=http://download.virtualbox.org/virtualbox/4.1.20/VirtualBox-4.1.20.tar.bz2
_eclasses_=base d40e074a6349af3ea5e937210630bdc1 eutils b8eb29e3c9c4e94c65da9ebec37902a9 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic 2c938a1fe61ea9899a2b97ea1e065f5f java-pkg-opt-2 f9bbbe5092225a2059aa9e6a3a2b52f1 java-utils-2 2d9eb3508fa5d6759e39354b74545567 linux-info 0b7adf68a2edb4e5a32b07bb6e68121c multilib 564d80d2026ae9f1910d8da4ea211e91 pax-utils 0ace932c4045349c7fc1af0fe7091acf python a0b470c1fca4658ffc97f0df0f25dcdc qt4-r2 3f724d1082a722cce69ce795371b81a3 toolchain-funcs d3b5812eeab360bc41aa48b6cdbbc142 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4
_md5_=e6425cd4eee3897939277cc087ed303b
_md5_=406d8275d6d7aa82c87cd8bb26e42223

View file

@ -4,10 +4,10 @@ DESCRIPTION=Console file manager with vi(m)-like keybindings
EAPI=4
HOMEPAGE=http://vifm.sourceforge.net/
IUSE=+compatibility +extended-keys +magic vim-plugin vim-syntax
KEYWORDS=amd64 ~ppc ~s390 ~x86
KEYWORDS=amd64 ppc ~s390 ~x86
LICENSE=GPL-2
RDEPEND=>=sys-libs/ncurses-5.7-r7 magic? ( sys-apps/file ) vim-plugin? ( >=app-editors/vim-7.3 ) vim-syntax? ( || ( app-editors/vim app-editors/gvim ) )
SLOT=0
SRC_URI=mirror://sourceforge/vifm/vifm-0.7.2.tar.bz2
_eclasses_=base d40e074a6349af3ea5e937210630bdc1 eutils b8eb29e3c9c4e94c65da9ebec37902a9 multilib 564d80d2026ae9f1910d8da4ea211e91 toolchain-funcs d3b5812eeab360bc41aa48b6cdbbc142 user d0a4d0735a6c0183d707ca919bd72f28
_md5_=d7735fd76a950f485e60c242a5f84e43
_md5_=601c6c415895f5422e4cb71657773c8a

View file

@ -0,0 +1,13 @@
DEFINED_PHASES=-
DEPEND=sys-libs/ncurses test? ( sys-libs/libfaketime )
DESCRIPTION=a text-based personal organizer
EAPI=4
HOMEPAGE=http://calcurse.org
IUSE=linguas_en linguas_fr linguas_de linguas_es linguas_nl linguas_ru linguas_de linguas_en linguas_es linguas_fr linguas_nl linguas_pt_BR linguas_ru
KEYWORDS=~amd64 ~x86
LICENSE=GPL-2
RDEPEND=sys-libs/ncurses
SLOT=0
SRC_URI=http://calcurse.org/files/calcurse-3.0.0.tar.gz
_eclasses_=eutils b8eb29e3c9c4e94c65da9ebec37902a9 multilib 564d80d2026ae9f1910d8da4ea211e91 toolchain-funcs d3b5812eeab360bc41aa48b6cdbbc142 user d0a4d0735a6c0183d707ca919bd72f28
_md5_=2ab62840cb2bfef19a92e8fca0d3c4e4

View file

@ -9,4 +9,4 @@ RDEPEND=sys-apps/portage >=dev-lang/python-2.6[xml] !>=dev-lang/python-2.6[-xml]
SLOT=0
SRC_URI=mirror://gentoo/gentoolkit-0.3.0.6.tar.gz
_eclasses_=distutils 15ae23f6f8219a009bfcfff7724fe727 eutils b8eb29e3c9c4e94c65da9ebec37902a9 multilib 564d80d2026ae9f1910d8da4ea211e91 python a0b470c1fca4658ffc97f0df0f25dcdc toolchain-funcs d3b5812eeab360bc41aa48b6cdbbc142 user d0a4d0735a6c0183d707ca919bd72f28
_md5_=8d242f22222e4394847b61f09f6067e9
_md5_=d0863ed6d668b61d1cad066e53b3abce

View file

@ -8,4 +8,4 @@ LICENSE=GPL-2
RDEPEND=sys-apps/portage >=dev-lang/python-2.6[xml] !>=dev-lang/python-2.6[-xml] !<=app-portage/gentoolkit-dev-0.2.7 dev-python/argparse || ( >=sys-apps/coreutils-8.15 app-misc/realpath sys-freebsd/freebsd-bin ) sys-apps/gawk sys-apps/grep !minimal? ( app-admin/eclean-kernel app-portage/diffmask app-portage/flaggie app-portage/install-mask app-portage/smart-live-rebuild ) dev-lang/python[xml] dev-lang/python
SLOT=0
_eclasses_=distutils 15ae23f6f8219a009bfcfff7724fe727 git-2 15733ab6a6feb34af9837b41623c2bad multilib 564d80d2026ae9f1910d8da4ea211e91 python a0b470c1fca4658ffc97f0df0f25dcdc toolchain-funcs d3b5812eeab360bc41aa48b6cdbbc142
_md5_=73d34202ab2d6ff47f7526b7782f23ab
_md5_=0121c374d98ebd596e24373fe3b91ecf

View file

@ -10,4 +10,4 @@ RDEPEND=>=sys-libs/ncurses-5.2-r2 readline? ( >=sys-libs/readline-6.2 ) nls? ( v
SLOT=0
SRC_URI=mirror://gnu/bash/bash-4.2.tar.gz ftp://ftp.cwru.edu/pub/bash/bash-4.2-patches/bash42-001 ftp://ftp.cwru.edu/pub/bash/bash-4.2-patches/bash42-002 ftp://ftp.cwru.edu/pub/bash/bash-4.2-patches/bash42-003 ftp://ftp.cwru.edu/pub/bash/bash-4.2-patches/bash42-004 ftp://ftp.cwru.edu/pub/bash/bash-4.2-patches/bash42-005 ftp://ftp.cwru.edu/pub/bash/bash-4.2-patches/bash42-006 ftp://ftp.cwru.edu/pub/bash/bash-4.2-patches/bash42-007 ftp://ftp.cwru.edu/pub/bash/bash-4.2-patches/bash42-008 ftp://ftp.cwru.edu/pub/bash/bash-4.2-patches/bash42-009 ftp://ftp.cwru.edu/pub/bash/bash-4.2-patches/bash42-010 ftp://ftp.cwru.edu/pub/bash/bash-4.2-patches/bash42-011 ftp://ftp.cwru.edu/pub/bash/bash-4.2-patches/bash42-012 ftp://ftp.cwru.edu/pub/bash/bash-4.2-patches/bash42-013 ftp://ftp.cwru.edu/pub/bash/bash-4.2-patches/bash42-014 ftp://ftp.cwru.edu/pub/bash/bash-4.2-patches/bash42-015 ftp://ftp.cwru.edu/pub/bash/bash-4.2-patches/bash42-016 ftp://ftp.cwru.edu/pub/bash/bash-4.2-patches/bash42-017 ftp://ftp.cwru.edu/pub/bash/bash-4.2-patches/bash42-018 ftp://ftp.cwru.edu/pub/bash/bash-4.2-patches/bash42-019 ftp://ftp.cwru.edu/pub/bash/bash-4.2-patches/bash42-020 ftp://ftp.cwru.edu/pub/bash/bash-4.2-patches/bash42-021 ftp://ftp.cwru.edu/pub/bash/bash-4.2-patches/bash42-022 ftp://ftp.cwru.edu/pub/bash/bash-4.2-patches/bash42-023 ftp://ftp.cwru.edu/pub/bash/bash-4.2-patches/bash42-024 ftp://ftp.cwru.edu/pub/bash/bash-4.2-patches/bash42-025 ftp://ftp.cwru.edu/pub/bash/bash-4.2-patches/bash42-026 ftp://ftp.cwru.edu/pub/bash/bash-4.2-patches/bash42-027 ftp://ftp.cwru.edu/pub/bash/bash-4.2-patches/bash42-028 ftp://ftp.cwru.edu/pub/bash/bash-4.2-patches/bash42-029 ftp://ftp.cwru.edu/pub/bash/bash-4.2-patches/bash42-030 ftp://ftp.cwru.edu/pub/bash/bash-4.2-patches/bash42-031 ftp://ftp.cwru.edu/pub/bash/bash-4.2-patches/bash42-032 ftp://ftp.cwru.edu/pub/bash/bash-4.2-patches/bash42-033 ftp://ftp.cwru.edu/pub/bash/bash-4.2-patches/bash42-034 ftp://ftp.cwru.edu/pub/bash/bash-4.2-patches/bash42-035 ftp://ftp.cwru.edu/pub/bash/bash-4.2-patches/bash42-036 ftp://ftp.cwru.edu/pub/bash/bash-4.2-patches/bash42-037 mirror://gnu/bash/bash-4.2-patches/bash42-001 mirror://gnu/bash/bash-4.2-patches/bash42-002 mirror://gnu/bash/bash-4.2-patches/bash42-003 mirror://gnu/bash/bash-4.2-patches/bash42-004 mirror://gnu/bash/bash-4.2-patches/bash42-005 mirror://gnu/bash/bash-4.2-patches/bash42-006 mirror://gnu/bash/bash-4.2-patches/bash42-007 mirror://gnu/bash/bash-4.2-patches/bash42-008 mirror://gnu/bash/bash-4.2-patches/bash42-009 mirror://gnu/bash/bash-4.2-patches/bash42-010 mirror://gnu/bash/bash-4.2-patches/bash42-011 mirror://gnu/bash/bash-4.2-patches/bash42-012 mirror://gnu/bash/bash-4.2-patches/bash42-013 mirror://gnu/bash/bash-4.2-patches/bash42-014 mirror://gnu/bash/bash-4.2-patches/bash42-015 mirror://gnu/bash/bash-4.2-patches/bash42-016 mirror://gnu/bash/bash-4.2-patches/bash42-017 mirror://gnu/bash/bash-4.2-patches/bash42-018 mirror://gnu/bash/bash-4.2-patches/bash42-019 mirror://gnu/bash/bash-4.2-patches/bash42-020 mirror://gnu/bash/bash-4.2-patches/bash42-021 mirror://gnu/bash/bash-4.2-patches/bash42-022 mirror://gnu/bash/bash-4.2-patches/bash42-023 mirror://gnu/bash/bash-4.2-patches/bash42-024 mirror://gnu/bash/bash-4.2-patches/bash42-025 mirror://gnu/bash/bash-4.2-patches/bash42-026 mirror://gnu/bash/bash-4.2-patches/bash42-027 mirror://gnu/bash/bash-4.2-patches/bash42-028 mirror://gnu/bash/bash-4.2-patches/bash42-029 mirror://gnu/bash/bash-4.2-patches/bash42-030 mirror://gnu/bash/bash-4.2-patches/bash42-031 mirror://gnu/bash/bash-4.2-patches/bash42-032 mirror://gnu/bash/bash-4.2-patches/bash42-033 mirror://gnu/bash/bash-4.2-patches/bash42-034 mirror://gnu/bash/bash-4.2-patches/bash42-035 mirror://gnu/bash/bash-4.2-patches/bash42-036 mirror://gnu/bash/bash-4.2-patches/bash42-037
_eclasses_=eutils b8eb29e3c9c4e94c65da9ebec37902a9 flag-o-matic 2c938a1fe61ea9899a2b97ea1e065f5f multilib 564d80d2026ae9f1910d8da4ea211e91 toolchain-funcs d3b5812eeab360bc41aa48b6cdbbc142 user d0a4d0735a6c0183d707ca919bd72f28
_md5_=b26112a7cd6532fbe655df15059874b3
_md5_=7d32f9493b336e133f8b7a8581641ad2

View file

@ -4,9 +4,9 @@ DESCRIPTION=A command-line program that does structural, content-preserving tran
EAPI=4
HOMEPAGE=http://qpdf.sourceforge.net/
IUSE=doc examples static-libs test
KEYWORDS=~amd64 ~x86
KEYWORDS=~amd64 ~hppa ~x86
LICENSE=Artistic-2
RDEPEND=dev-libs/libpcre sys-libs/zlib >=dev-lang/perl-5.8
SLOT=0
SRC_URI=mirror://sourceforge/qpdf/qpdf-3.0.1.tar.gz
_md5_=55c852908fd207b4ac26fdc6715b75a6
_md5_=cb1336a6cf8453565d3aed1554a17707

View file

@ -0,0 +1,13 @@
DEFINED_PHASES=configure install prepare test
DEPEND=sys-libs/zlib app-arch/bzip2 || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool
DESCRIPTION=A library of routines for managing a database
EAPI=2
HOMEPAGE=http://fallabs.com/tokyocabinet/
IUSE=debug doc examples
KEYWORDS=~alpha ~amd64 ~hppa ~ppc ~ppc64 ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris
LICENSE=LGPL-2.1
RDEPEND=sys-libs/zlib app-arch/bzip2
SLOT=0
SRC_URI=http://fallabs.com/tokyocabinet/tokyocabinet-1.4.48.tar.gz
_eclasses_=autotools d89996a2048bc6d1ae72bfa4c04517fe eutils b8eb29e3c9c4e94c65da9ebec37902a9 libtool a83de71c2123161fc5a8323cb275f8e5 multilib 564d80d2026ae9f1910d8da4ea211e91 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs d3b5812eeab360bc41aa48b6cdbbc142 user d0a4d0735a6c0183d707ca919bd72f28
_md5_=a840aa59def484feb77ef2184d9d0ed4

View file

@ -0,0 +1,13 @@
DEFINED_PHASES=compile configure install prepare test
DEPEND=dev-lang/perl[doc?] sys-libs/readline opengl? ( media-libs/freeglut ) nls? ( sys-devel/gettext ) unicode? ( >=dev-libs/icu-2.6 ) gdbm? ( >=sys-libs/gdbm-1.8.3-r1 ) gmp? ( >=dev-libs/gmp-4.1.4 ) ssl? ( dev-libs/openssl ) pcre? ( dev-libs/libpcre )
DESCRIPTION=Virtual machine designed to efficiently compile and execute bytecode for dynamic languages
EAPI=3
HOMEPAGE=http://www.parrot.org/
IUSE=opengl nls doc examples gdbm gmp ssl +unicode pcre
KEYWORDS=~amd64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos
LICENSE=Artistic-2
RDEPEND=sys-libs/readline opengl? ( media-libs/freeglut ) nls? ( sys-devel/gettext ) unicode? ( >=dev-libs/icu-2.6 ) gdbm? ( >=sys-libs/gdbm-1.8.3-r1 ) gmp? ( >=dev-libs/gmp-4.1.4 ) ssl? ( dev-libs/openssl ) pcre? ( dev-libs/libpcre )
SLOT=0
SRC_URI=ftp://ftp.parrot.org/pub/parrot/releases/devel/4.7.0/parrot-4.7.0.tar.bz2
_eclasses_=eutils b8eb29e3c9c4e94c65da9ebec37902a9 multilib 564d80d2026ae9f1910d8da4ea211e91 toolchain-funcs d3b5812eeab360bc41aa48b6cdbbc142 user d0a4d0735a6c0183d707ca919bd72f28
_md5_=da52d5c6e86ae7e553b0cc745557328d

View file

@ -4,11 +4,11 @@ DESCRIPTION=ECL is an embeddable Common Lisp implementation.
EAPI=4
HOMEPAGE=http://ecls.sourceforge.net/
IUSE=debug emacs gengc precisegc threads +unicode X
KEYWORDS=~amd64 ~ppc ~sparc ~x86
KEYWORDS=~amd64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux
LICENSE=BSD LGPL-2
PDEPEND=dev-lisp/gentoo-init
RDEPEND=dev-libs/gmp virtual/libffi >=dev-libs/boehm-gc-7.1[threads?]
SLOT=0
SRC_URI=mirror://sourceforge/ecls/ecl-12.7.1.tar.gz
_eclasses_=eutils b8eb29e3c9c4e94c65da9ebec37902a9 multilib 564d80d2026ae9f1910d8da4ea211e91 toolchain-funcs d3b5812eeab360bc41aa48b6cdbbc142 user d0a4d0735a6c0183d707ca919bd72f28
_md5_=9d2dc0e9768f72de8eda63ffc5fb3093
_md5_=8e4c76ea2e8b4a2c0e64008abbb925c0

View file

@ -4,11 +4,11 @@ DESCRIPTION=An image manipulation library for ocaml
EAPI=4
HOMEPAGE=http://gallium.inria.fr/camlimages/
IUSE=doc gif gtk jpeg png postscript tiff truetype X xpm zlib
KEYWORDS=~amd64 ~ppc x86
KEYWORDS=~amd64 ppc x86
LICENSE=LGPL-2.1
RDEPEND=>=dev-lang/ocaml-3.10.2[X?,ocamlopt] gif? ( media-libs/giflib ) gtk? ( dev-ml/lablgtk ) jpeg? ( virtual/jpeg ) tiff? ( media-libs/tiff ) png? ( >=media-libs/libpng-1.4:0 ) postscript? ( app-text/ghostscript-gpl ) truetype? ( >=media-libs/freetype-2 ) xpm? ( x11-libs/libXpm ) X? ( x11-apps/rgb ) zlib? ( sys-libs/zlib )
REQUIRED_USE=png? ( zlib )
SLOT=0
SRC_URI=http://bitbucket.org/camlspotter/camlimages/get/v4.0.1.tar.bz2 -> camlimages-4.0.1.tar.bz2
_eclasses_=eutils b8eb29e3c9c4e94c65da9ebec37902a9 findlib 9cf6020ee5481f39f1aa566a323f9868 multilib 564d80d2026ae9f1910d8da4ea211e91 toolchain-funcs d3b5812eeab360bc41aa48b6cdbbc142 user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 07df4a337a309c0aa605525027917677
_md5_=faee1334c62d8fd98a606356d1ff2b57
_md5_=669248e0b30f9bc71066492619ab9ad5

View file

@ -4,10 +4,10 @@ DESCRIPTION=Enthought Tool Suite: Explicitly typed attributes for Python
EAPI=4
HOMEPAGE=http://code.enthought.com/projects/traits/ http://pypi.python.org/pypi/traits
IUSE=doc examples test test test
KEYWORDS=amd64 ~ppc ~ppc64 ~x86
KEYWORDS=amd64 ppc ~ppc64 ~x86
LICENSE=BSD
RDEPEND=dev-python/numpy dev-lang/python
SLOT=0
SRC_URI=http://www.enthought.com/repo/ETS/traits-4.1.0.tar.gz
_eclasses_=distutils 15ae23f6f8219a009bfcfff7724fe727 multilib 564d80d2026ae9f1910d8da4ea211e91 python a0b470c1fca4658ffc97f0df0f25dcdc toolchain-funcs d3b5812eeab360bc41aa48b6cdbbc142 virtualx 0c41ff55e46b959d9457dde69e7a09d9
_md5_=4ca40a8056ff4ea62f7017878dca605f
_md5_=add2e044e86d54932ee355db1da5eeb0

View file

@ -4,10 +4,10 @@ DESCRIPTION=A graphical interface to the GNU debugger
EAPI=4
HOMEPAGE=http://sourceware.org/insight/
IUSE=nls
KEYWORDS=amd64 ~ppc x86
KEYWORDS=amd64 ppc x86
LICENSE=GPL-2 LGPL-2
RDEPEND=dev-libs/expat dev-tcltk/iwidgets sys-libs/ncurses sys-libs/readline x11-libs/libX11
SLOT=0
SRC_URI=ftp://sources.redhat.com/pub/insight/releases/insight-6.8-1a.tar.bz2 http://dev.gentooexperimental.org/~scarabeus/insight-6.8.1-patchset-01.tar.xz
_eclasses_=autotools d89996a2048bc6d1ae72bfa4c04517fe eutils b8eb29e3c9c4e94c65da9ebec37902a9 libtool a83de71c2123161fc5a8323cb275f8e5 multilib 564d80d2026ae9f1910d8da4ea211e91 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs d3b5812eeab360bc41aa48b6cdbbc142 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4
_md5_=57af4ff50823072aa6941544e57f57f0
_md5_=070cdce9e9f6a50f7fa46adeb62c27dc

View file

@ -4,11 +4,11 @@ DESCRIPTION=Make replacement
EAPI=2
HOMEPAGE=http://omake.metaprl.org/
IUSE=doc fam ncurses +ocamlopt readline
KEYWORDS=~amd64 ~ppc x86
KEYWORDS=~amd64 ppc x86
LICENSE=GPL-2
RDEPEND=>=dev-lang/ocaml-3.10.2[ocamlopt?] ncurses? ( >=sys-libs/ncurses-5.3 ) fam? ( virtual/fam ) readline? ( >=sys-libs/readline-4.3 )
RESTRICT=installsources
SLOT=0
SRC_URI=http://omake.metaprl.org/downloads/omake-0.9.8.6-0.rc1.tar.gz
_eclasses_=eutils b8eb29e3c9c4e94c65da9ebec37902a9 multilib 564d80d2026ae9f1910d8da4ea211e91 toolchain-funcs d3b5812eeab360bc41aa48b6cdbbc142 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4
_md5_=945d3a56283409b4fe030b13b75b10f2
_md5_=d4073bf9fa3f00ef8a4bee8d3fbadc4f

View file

@ -4,10 +4,10 @@ DESCRIPTION=A Java data mining package
EAPI=3
HOMEPAGE=http://www.cs.waikato.ac.nz/ml/weka/
IUSE=elibc_FreeBSD doc source elibc_FreeBSD
KEYWORDS=amd64 ~ppc x86
KEYWORDS=amd64 ppc x86
LICENSE=GPL-2
RDEPEND=>=virtual/jre-1.5 >=dev-java/javacup-0.11a_beta20060608:0 >=dev-java/java-config-2.1.9-r1 source? ( app-arch/zip )
SLOT=0
SRC_URI=mirror://sourceforge/weka/weka-3-6-6.zip
_eclasses_=eutils b8eb29e3c9c4e94c65da9ebec37902a9 java-ant-2 05b1e5a708f4dd372a85c9c6424fecbe java-pkg-2 65bbb59987d777c1106ae8aa4bf36e7b java-utils-2 2d9eb3508fa5d6759e39354b74545567 multilib 564d80d2026ae9f1910d8da4ea211e91 toolchain-funcs d3b5812eeab360bc41aa48b6cdbbc142 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4
_md5_=c790aa1adabc5cf0e7bb64c92641f7cf
_md5_=bcc10da5e9c6d3dcebd1fb3d3722f324

View file

@ -0,0 +1,14 @@
DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack
DEPEND=dev-libs/openssl sys-libs/zlib pcre? ( dev-libs/libpcre ) perl? ( dev-lang/perl[-build] ) tk? ( dev-lang/tk ) curl? ( net-misc/curl webdav? ( dev-libs/expat ) ) emacs? ( virtual/emacs ) app-arch/cpio doc? ( app-text/asciidoc app-text/docbook2X sys-apps/texinfo ) test? ( app-crypt/gnupg ) python? ( =dev-lang/python-2* )
DESCRIPTION=GIT - the stupid content tracker, the revision control system heavily used by the Linux kernel team
EAPI=4
HOMEPAGE=http://www.git-scm.com/
IUSE=+blksha1 +curl cgi doc emacs +gpg gtk +iconv +nls +pcre +perl +python ppcsha1 tk +threads +webdav xinetd cvs subversion test
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~ia64-hpux ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris
LICENSE=GPL-2
RDEPEND=dev-libs/openssl sys-libs/zlib pcre? ( dev-libs/libpcre ) perl? ( dev-lang/perl[-build] ) tk? ( dev-lang/tk ) curl? ( net-misc/curl webdav? ( dev-libs/expat ) ) emacs? ( virtual/emacs ) gpg? ( app-crypt/gnupg ) perl? ( dev-perl/Error dev-perl/Net-SMTP-SSL dev-perl/Authen-SASL cgi? ( virtual/perl-CGI app-text/highlight ) cvs? ( >=dev-vcs/cvsps-2.1 dev-perl/DBI dev-perl/DBD-SQLite ) subversion? ( dev-vcs/subversion[-dso,perl] dev-perl/libwww-perl dev-perl/TermReadKey ) ) python? ( gtk? ( >=dev-python/pygtk-2.8 dev-python/pygtksourceview:2 ) ) python? ( =dev-lang/python-2* )
REQUIRED_USE=cgi? ( perl ) cvs? ( perl ) subversion? ( perl ) webdav? ( curl )
SLOT=0
SRC_URI=http://git-core.googlecode.com/files/git-1.7.12.tar.gz mirror://kernel/software/scm/git/git-1.7.12.tar.gz http://git-core.googlecode.com/files/git-manpages-1.7.12.tar.gz mirror://kernel/software/scm/git/git-manpages-1.7.12.tar.gz doc? ( mirror://kernel/software/scm/git/git-htmldocs-1.7.12.tar.gz http://git-core.googlecode.com/files/git-htmldocs-1.7.12.tar.gz )
_eclasses_=base d40e074a6349af3ea5e937210630bdc1 bash-completion-r1 3480f8385cb9e31797e7b659e366e2d2 elisp-common 5785babccf9fc9be868981620c7940d3 eutils b8eb29e3c9c4e94c65da9ebec37902a9 multilib 564d80d2026ae9f1910d8da4ea211e91 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 perl-module 1c5ba5b92574108992a6758f863da534 python a0b470c1fca4658ffc97f0df0f25dcdc toolchain-funcs d3b5812eeab360bc41aa48b6cdbbc142 user d0a4d0735a6c0183d707ca919bd72f28
_md5_=2d36774f54e4b511d2e426940048b512

View file

@ -1,13 +1,13 @@
DEFINED_PHASES=compile install postinst postrm prepare
DEFINED_PHASES=compile install postinst postrm prepare setup
DEPEND=dev-python/docutils dev-python/egenix-mx-base dev-python/PyQt4[X] dev-python/qscintilla-python dev-vcs/mercurial doc? ( app-text/asciidoc ) || ( =dev-lang/python-2.7* =dev-lang/python-2.6* =dev-lang/python-2.5* )
DESCRIPTION=PyQt4-based Mercurial log navigator
EAPI=3
HOMEPAGE=http://www.logilab.org/project/hgview http://pypi.python.org/pypi/hgview
EAPI=4
HOMEPAGE=http://www.logilab.org/project/hgview
IUSE=doc
KEYWORDS=~amd64 ~x86
LICENSE=GPL-2
RDEPEND=dev-python/docutils dev-python/egenix-mx-base dev-python/PyQt4[X] dev-python/qscintilla-python dev-vcs/mercurial doc? ( app-text/asciidoc ) || ( =dev-lang/python-2.7* =dev-lang/python-2.6* =dev-lang/python-2.5* )
SLOT=0
SRC_URI=http://ftp.logilab.org/pub/hgview/hgview-1.2.1.tar.gz
SRC_URI=http://ftp.logilab.org/pub/hgview/hgview-1.6.2.tar.gz
_eclasses_=distutils 15ae23f6f8219a009bfcfff7724fe727 multilib 564d80d2026ae9f1910d8da4ea211e91 python a0b470c1fca4658ffc97f0df0f25dcdc toolchain-funcs d3b5812eeab360bc41aa48b6cdbbc142
_md5_=c0716c89f45b3edf4ab570cf2cc05acc
_md5_=2d0e648f859c5d2a4e3bdb350be4bf21

View file

@ -10,4 +10,4 @@ RDEPEND=>=dev-db/sqlite-3.4 >=dev-libs/apr-1.3:1 >=dev-libs/apr-util-1.3:1 dev-l
SLOT=0
SRC_URI=http://www.apache.org/dist/subversion/subversion-1.7.6.tar.bz2
_eclasses_=autotools d89996a2048bc6d1ae72bfa4c04517fe base d40e074a6349af3ea5e937210630bdc1 bash-completion-r1 3480f8385cb9e31797e7b659e366e2d2 db-use 2f5d6a2718559b90a51648d8ff58be83 depend.apache 1a38534d3f755d1ab1d92ce120bd7dbd elisp-common 5785babccf9fc9be868981620c7940d3 eutils b8eb29e3c9c4e94c65da9ebec37902a9 flag-o-matic 2c938a1fe61ea9899a2b97ea1e065f5f java-pkg-opt-2 f9bbbe5092225a2059aa9e6a3a2b52f1 java-utils-2 2d9eb3508fa5d6759e39354b74545567 libtool a83de71c2123161fc5a8323cb275f8e5 multilib 564d80d2026ae9f1910d8da4ea211e91 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 perl-module 1c5ba5b92574108992a6758f863da534 python a0b470c1fca4658ffc97f0df0f25dcdc toolchain-funcs d3b5812eeab360bc41aa48b6cdbbc142 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4
_md5_=2f605675cb09b96cb2279b14bb669f67
_md5_=246615742e2f7329f285780969f87fe2

View file

@ -1,12 +1,12 @@
DEFINED_PHASES=compile configure install postinst preinst prepare setup unpack
DEPEND=virtual/opengl dev-lang/tcl virtual/glu media-libs/libsdl[X] media-libs/sdl-mixer[mikmod] >=media-libs/freetype-2 media-libs/libpng x11-libs/libXmu x11-libs/libXi virtual/pkgconfig
DEPEND=virtual/opengl dev-lang/tcl virtual/glu media-libs/libsdl[X] media-libs/sdl-mixer[mod] >=media-libs/freetype-2 media-libs/libpng x11-libs/libXmu x11-libs/libXi virtual/pkgconfig
DESCRIPTION=High speed arctic racing game based on Tux Racer
EAPI=2
HOMEPAGE=http://www.extremetuxracer.com/
KEYWORDS=amd64 x86
LICENSE=GPL-2
RDEPEND=virtual/opengl dev-lang/tcl virtual/glu media-libs/libsdl[X] media-libs/sdl-mixer[mikmod] >=media-libs/freetype-2 media-libs/libpng x11-libs/libXmu x11-libs/libXi
RDEPEND=virtual/opengl dev-lang/tcl virtual/glu media-libs/libsdl[X] media-libs/sdl-mixer[mod] >=media-libs/freetype-2 media-libs/libpng x11-libs/libXmu x11-libs/libXi
SLOT=0
SRC_URI=mirror://sourceforge/extremetuxracer/extremetuxracer-0.4.tar.gz
_eclasses_=base d40e074a6349af3ea5e937210630bdc1 eutils b8eb29e3c9c4e94c65da9ebec37902a9 games 024161bb840ff1c7b424696877dbb18b multilib 564d80d2026ae9f1910d8da4ea211e91 toolchain-funcs d3b5812eeab360bc41aa48b6cdbbc142 user d0a4d0735a6c0183d707ca919bd72f28
_md5_=a8bb88016f5a3174e4f837a094158a6a
_md5_=15345012fad1a98f3428ebc3e8fa3800

View file

@ -1,13 +1,13 @@
DEFINED_PHASES=compile configure install postinst preinst prepare setup unpack
DEPEND=virtual/opengl virtual/glu dev-lang/tcl media-libs/libsdl[X,audio,video] media-libs/sdl-mixer[mikmod,vorbis] media-libs/freetype:2 media-libs/libpng x11-libs/libXmu x11-libs/libXi virtual/libintl nls? ( sys-devel/gettext ) virtual/pkgconfig
DEPEND=virtual/opengl virtual/glu dev-lang/tcl media-libs/libsdl[X,audio,video] media-libs/sdl-mixer[mod,vorbis] media-libs/freetype:2 media-libs/libpng x11-libs/libXmu x11-libs/libXi virtual/libintl nls? ( sys-devel/gettext ) virtual/pkgconfig
DESCRIPTION=High speed arctic racing game based on Tux Racer
EAPI=2
HOMEPAGE=http://www.extremetuxracer.com/
IUSE=nls
KEYWORDS=amd64 x86
LICENSE=GPL-2
RDEPEND=virtual/opengl virtual/glu dev-lang/tcl media-libs/libsdl[X,audio,video] media-libs/sdl-mixer[mikmod,vorbis] media-libs/freetype:2 media-libs/libpng x11-libs/libXmu x11-libs/libXi virtual/libintl
RDEPEND=virtual/opengl virtual/glu dev-lang/tcl media-libs/libsdl[X,audio,video] media-libs/sdl-mixer[mod,vorbis] media-libs/freetype:2 media-libs/libpng x11-libs/libXmu x11-libs/libXi virtual/libintl
SLOT=0
SRC_URI=mirror://sourceforge/extremetuxracer/extremetuxracer-0.5beta.tar.gz
_eclasses_=base d40e074a6349af3ea5e937210630bdc1 eutils b8eb29e3c9c4e94c65da9ebec37902a9 games 024161bb840ff1c7b424696877dbb18b multilib 564d80d2026ae9f1910d8da4ea211e91 toolchain-funcs d3b5812eeab360bc41aa48b6cdbbc142 user d0a4d0735a6c0183d707ca919bd72f28
_md5_=111bafac5e93c258db322cafab7d12ed
_md5_=ea3bb825774e2acb2d99e0d63ca0ad7c

View file

@ -3,10 +3,10 @@ DEPEND=>=media-fonts/libertine-ttf-5 media-fonts/liberation-fonts media-libs/fre
DESCRIPTION=An Interactive Fiction (IF) player supporting all major formats
EAPI=4
HOMEPAGE=http://ccxvii.net/gargoyle/
KEYWORDS=~amd64 ~x86
KEYWORDS=amd64 ~x86
LICENSE=BSD GPL-2 MIT Hugo Glulxe
RDEPEND=>=media-fonts/libertine-ttf-5 media-fonts/liberation-fonts media-libs/freetype:2 media-libs/libpng:0 media-libs/sdl-mixer media-libs/sdl-sound[modplug,mp3,vorbis] sys-libs/zlib virtual/jpeg x11-libs/gtk+:2
SLOT=0
SRC_URI=http://garglk.googlecode.com/files/gargoyle-2011.1-sources.zip
_eclasses_=base d40e074a6349af3ea5e937210630bdc1 eutils b8eb29e3c9c4e94c65da9ebec37902a9 games 024161bb840ff1c7b424696877dbb18b gnome2-utils e0a2e141b421d38788b23422dfbe4f82 multilib 564d80d2026ae9f1910d8da4ea211e91 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs d3b5812eeab360bc41aa48b6cdbbc142 user d0a4d0735a6c0183d707ca919bd72f28
_md5_=890ecb365c6814f6a657f2d6682b9902
_md5_=b8c3b7ba21f6e2c46ffdff375147f0f8

View file

@ -10,4 +10,4 @@ RDEPEND=gnome-base/nautilus dev-libs/glib:2 dev-python/pygtk:2 net-misc/dropbox
SLOT=0
SRC_URI=http://www.dropbox.com/download?dl=packages/nautilus-dropbox-1.4.0.tar.bz2
_eclasses_=autotools d89996a2048bc6d1ae72bfa4c04517fe eutils b8eb29e3c9c4e94c65da9ebec37902a9 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 b6186c6d7990c0c8aafb64c553f3625b gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool a83de71c2123161fc5a8323cb275f8e5 linux-info 0b7adf68a2edb4e5a32b07bb6e68121c multilib 564d80d2026ae9f1910d8da4ea211e91 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python a0b470c1fca4658ffc97f0df0f25dcdc toolchain-funcs d3b5812eeab360bc41aa48b6cdbbc142 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4
_md5_=f22561e41b34f178bb924b7e18a59203
_md5_=b5a854caf847535222ff85077a1f31a3

View file

@ -0,0 +1,13 @@
DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test unpack
DEPEND=>=net-print/cups-1.6.0[dbus] >=sys-apps/sed-4 >=dev-util/cmake-2.8.4 userland_GNU? ( >=sys-apps/findutils-4.4.0 ) dev-util/automoc virtual/pkgconfig !aqua? ( >=x11-libs/libXtst-1.1.0 x11-proto/xf86vidmodeproto ) dev-lang/perl >=x11-libs/qt-core-4.7.4:4[qt3support,ssl] >=x11-libs/qt-dbus-4.7.4:4 >=x11-libs/qt-gui-4.7.4:4[accessibility,dbus] >=x11-libs/qt-qt3support-4.7.4:4[accessibility] >=x11-libs/qt-script-4.7.4:4 >=x11-libs/qt-sql-4.7.4:4[qt3support] >=x11-libs/qt-svg-4.7.4:4 >=x11-libs/qt-test-4.7.4:4 >=x11-libs/qt-webkit-4.7.4:4 !aqua? ( x11-libs/libXext x11-libs/libXt x11-libs/libXxf86vm x11-libs/libXcomposite x11-libs/libxkbfile ) >=kde-base/kdelibs-4.4:4[aqua=]
DESCRIPTION=Manage print jobs and printers in KDE
EAPI=4
HOMEPAGE=https://projects.kde.org/projects/playground/base/print-manager
IUSE=debug linguas_cs linguas_da linguas_de linguas_et linguas_hu linguas_km linguas_nl linguas_pl linguas_pt linguas_pt_BR linguas_sk linguas_sv linguas_uk aqua
KEYWORDS=~amd64 ~x86
LICENSE=GPL-2
RDEPEND=>=net-print/cups-1.6.0[dbus] >=kde-base/oxygen-icons-4.4:4[aqua=] linguas_cs? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_cs(+)] ) linguas_da? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_da(+)] ) linguas_de? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_de(+)] ) linguas_et? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_et(+)] ) linguas_hu? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_hu(+)] ) linguas_km? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_km(+)] ) linguas_nl? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_nl(+)] ) linguas_pl? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_pl(+)] ) linguas_pt? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_pt(+)] ) linguas_pt_BR? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_pt_BR(+)] ) linguas_sk? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_sk(+)] ) linguas_sv? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_sv(+)] ) linguas_uk? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_uk(+)] ) dev-lang/perl >=x11-libs/qt-core-4.7.4:4[qt3support,ssl] >=x11-libs/qt-dbus-4.7.4:4 >=x11-libs/qt-gui-4.7.4:4[accessibility,dbus] >=x11-libs/qt-qt3support-4.7.4:4[accessibility] >=x11-libs/qt-script-4.7.4:4 >=x11-libs/qt-sql-4.7.4:4[qt3support] >=x11-libs/qt-svg-4.7.4:4 >=x11-libs/qt-test-4.7.4:4 >=x11-libs/qt-webkit-4.7.4:4 !aqua? ( x11-libs/libXext x11-libs/libXt x11-libs/libXxf86vm x11-libs/libXcomposite x11-libs/libxkbfile ) >=kde-base/kdelibs-4.4:4[aqua=]
SLOT=4
SRC_URI=mirror://kde/stable/print-manager/0.2.0/src/print-manager-0.2.0.tar.bz2
_eclasses_=base d40e074a6349af3ea5e937210630bdc1 cmake-utils de2b6743eb0bffee798e01b913aec936 eutils b8eb29e3c9c4e94c65da9ebec37902a9 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic 2c938a1fe61ea9899a2b97ea1e065f5f gnome2-utils e0a2e141b421d38788b23422dfbe4f82 kde4-base 6e4e3fc3a36f43b71c84ad615e804a83 kde4-functions df82ee2da839042995eb204cf576da49 multilib 564d80d2026ae9f1910d8da4ea211e91 toolchain-funcs d3b5812eeab360bc41aa48b6cdbbc142 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 virtualx 0c41ff55e46b959d9457dde69e7a09d9
_md5_=546a4f31e2eb9ddc3bdfb118b7b2c135

View file

@ -1,11 +0,0 @@
DEFINED_PHASES=install postinst setup unpack
DEPEND=app-arch/unzip
DESCRIPTION=Anti-Spam SMTP Proxy written in Perl.
HOMEPAGE=http://assp.sourceforge.net/
IUSE=ipv6 ldap sasl spf srs ssl syslog
LICENSE=GPL-2
RDEPEND=dev-lang/perl dev-perl/Net-DNS dev-perl/File-ReadBackwards virtual/perl-IO-Compress dev-perl/Email-MIME dev-perl/Email-Send dev-perl/Email-Valid dev-perl/libwww-perl dev-perl/mime-construct dev-perl/Net-CIDR-Lite virtual/perl-Digest-MD5 virtual/perl-Time-HiRes ipv6? ( dev-perl/IO-Socket-INET6 ) sasl? ( dev-perl/Authen-SASL ) spf? ( dev-perl/Mail-SPF ) srs? ( dev-perl/Mail-SRS ) ssl? ( dev-perl/IO-Socket-SSL ) syslog? ( perl-core/Sys-Syslog ) ldap? ( dev-perl/perl-ldap )
SLOT=0
SRC_URI=mirror://sourceforge/assp/ASSP_1.9.1.3-Install.zip
_eclasses_=eutils b8eb29e3c9c4e94c65da9ebec37902a9 multilib 564d80d2026ae9f1910d8da4ea211e91 toolchain-funcs d3b5812eeab360bc41aa48b6cdbbc142 user d0a4d0735a6c0183d707ca919bd72f28
_md5_=aba0d941753fc3bb34648a0a0b03d6c3

View file

@ -1,11 +0,0 @@
DEFINED_PHASES=install postinst setup unpack
DEPEND=app-arch/unzip
DESCRIPTION=Anti-Spam SMTP Proxy written in Perl.
HOMEPAGE=http://assp.sourceforge.net/
IUSE=ipv6 ldap sasl spf srs ssl syslog
LICENSE=GPL-2
RDEPEND=dev-lang/perl dev-perl/Net-DNS dev-perl/File-ReadBackwards virtual/perl-IO-Compress dev-perl/Email-MIME dev-perl/Email-Send dev-perl/Email-Valid dev-perl/libwww-perl dev-perl/mime-construct dev-perl/Net-CIDR-Lite virtual/perl-Digest-MD5 virtual/perl-Time-HiRes ipv6? ( dev-perl/IO-Socket-INET6 ) sasl? ( dev-perl/Authen-SASL ) spf? ( dev-perl/Mail-SPF ) srs? ( dev-perl/Mail-SRS ) ssl? ( dev-perl/IO-Socket-SSL ) syslog? ( perl-core/Sys-Syslog ) ldap? ( dev-perl/perl-ldap )
SLOT=0
SRC_URI=mirror://sourceforge/assp/ASSP_1.9.2.0-Install.zip
_eclasses_=eutils b8eb29e3c9c4e94c65da9ebec37902a9 multilib 564d80d2026ae9f1910d8da4ea211e91 toolchain-funcs d3b5812eeab360bc41aa48b6cdbbc142 user d0a4d0735a6c0183d707ca919bd72f28
_md5_=01506faf3b0642b941e253f1d90cb2fa

View file

@ -1,12 +0,0 @@
DEFINED_PHASES=install postinst setup unpack
DEPEND=app-arch/unzip
DESCRIPTION=Anti-Spam SMTP Proxy written in Perl.
HOMEPAGE=http://assp.sourceforge.net/
IUSE=ipv6 ldap sasl spf srs ssl syslog
KEYWORDS=~amd64 ~x86
LICENSE=GPL-2
RDEPEND=dev-lang/perl dev-perl/Net-DNS dev-perl/File-ReadBackwards virtual/perl-IO-Compress dev-perl/Email-MIME dev-perl/Email-Send dev-perl/Email-Valid dev-perl/libwww-perl dev-perl/mime-construct dev-perl/Net-CIDR-Lite virtual/perl-Digest-MD5 virtual/perl-Time-HiRes ipv6? ( dev-perl/IO-Socket-INET6 ) sasl? ( dev-perl/Authen-SASL ) spf? ( dev-perl/Mail-SPF ) srs? ( dev-perl/Mail-SRS ) ssl? ( dev-perl/IO-Socket-SSL ) syslog? ( perl-core/Sys-Syslog ) ldap? ( dev-perl/perl-ldap )
SLOT=0
SRC_URI=mirror://sourceforge/assp/ASSP_1.9.3.5-Install.zip
_eclasses_=eutils b8eb29e3c9c4e94c65da9ebec37902a9 multilib 564d80d2026ae9f1910d8da4ea211e91 toolchain-funcs d3b5812eeab360bc41aa48b6cdbbc142 user d0a4d0735a6c0183d707ca919bd72f28
_md5_=7fe7b2aea78dc3196c3ac2cf703828b0

View file

@ -1,12 +0,0 @@
DEFINED_PHASES=install postinst setup unpack
DEPEND=app-arch/unzip
DESCRIPTION=Anti-Spam SMTP Proxy written in Perl.
HOMEPAGE=http://assp.sourceforge.net/
IUSE=ipv6 ldap sasl spf srs ssl syslog
KEYWORDS=~amd64 ~x86
LICENSE=GPL-2
RDEPEND=dev-lang/perl dev-perl/Net-DNS dev-perl/File-ReadBackwards virtual/perl-IO-Compress dev-perl/Email-MIME dev-perl/Email-Send dev-perl/Email-Valid dev-perl/libwww-perl dev-perl/mime-construct dev-perl/Net-CIDR-Lite virtual/perl-Digest-MD5 virtual/perl-Time-HiRes ipv6? ( dev-perl/IO-Socket-INET6 ) sasl? ( dev-perl/Authen-SASL ) spf? ( dev-perl/Mail-SPF ) srs? ( dev-perl/Mail-SRS ) ssl? ( dev-perl/IO-Socket-SSL ) syslog? ( perl-core/Sys-Syslog ) ldap? ( dev-perl/perl-ldap )
SLOT=0
SRC_URI=mirror://sourceforge/assp/ASSP_1.9.3.7-Install.zip
_eclasses_=eutils b8eb29e3c9c4e94c65da9ebec37902a9 multilib 564d80d2026ae9f1910d8da4ea211e91 toolchain-funcs d3b5812eeab360bc41aa48b6cdbbc142 user d0a4d0735a6c0183d707ca919bd72f28
_md5_=98066b131472657d41d7e3d1cba2615b

View file

@ -7,6 +7,6 @@ KEYWORDS=~amd64 ~x86
LICENSE=GPL-2
RDEPEND=dev-lang/perl dev-perl/Net-DNS dev-perl/File-ReadBackwards virtual/perl-IO-Compress dev-perl/Email-MIME dev-perl/Email-Send dev-perl/Email-Valid dev-perl/libwww-perl dev-perl/mime-construct dev-perl/Net-CIDR-Lite virtual/perl-Digest-MD5 virtual/perl-Time-HiRes ipv6? ( dev-perl/IO-Socket-INET6 ) sasl? ( dev-perl/Authen-SASL ) spf? ( dev-perl/Mail-SPF ) srs? ( dev-perl/Mail-SRS ) ssl? ( dev-perl/IO-Socket-SSL ) syslog? ( perl-core/Sys-Syslog ) ldap? ( dev-perl/perl-ldap )
SLOT=0
SRC_URI=mirror://sourceforge/assp/ASSP_1.9.3.6-Install.zip
SRC_URI=mirror://sourceforge/assp/ASSP_1.9.4.0-Install.zip
_eclasses_=eutils b8eb29e3c9c4e94c65da9ebec37902a9 multilib 564d80d2026ae9f1910d8da4ea211e91 toolchain-funcs d3b5812eeab360bc41aa48b6cdbbc142 user d0a4d0735a6c0183d707ca919bd72f28
_md5_=aa7576dd2f8a34d77d401acb67d6d4d9
_md5_=b61c63424719853ca1a288bfdb9ccf84

View file

@ -3,10 +3,10 @@ DEPEND=dev-libs/openssl dev-libs/libpcre >=dev-lang/lua-5.1
DESCRIPTION=An IMAP mail filtering utility
EAPI=4
HOMEPAGE=http://imapfilter.hellug.gr
KEYWORDS=amd64 ~ppc x86
KEYWORDS=amd64 ppc x86
LICENSE=MIT
RDEPEND=dev-libs/openssl dev-libs/libpcre >=dev-lang/lua-5.1
SLOT=0
SRC_URI=mirror://github/lefcha/imapfilter/imapfilter-2.5.2.tar.gz
_eclasses_=multilib 564d80d2026ae9f1910d8da4ea211e91 toolchain-funcs d3b5812eeab360bc41aa48b6cdbbc142
_md5_=0e9c8bb2d1a081a6893aca4be8597028
_md5_=c6cdafd7a62c07b2658cab16b6c6cb71

View file

@ -2,10 +2,10 @@ DEFINED_PHASES=compile install unpack
DEPEND=media-libs/ladspa-sdk >=sys-apps/sed-4
DESCRIPTION=CMT (computer music toolkit) Lasdpa library plugins
HOMEPAGE=http://www.ladspa.org/
KEYWORDS=alpha amd64 hppa ~ppc ppc64 ~sparc x86 ~x86-fbsd
KEYWORDS=alpha amd64 hppa ppc ppc64 ~sparc x86 ~x86-fbsd
LICENSE=LGPL-2.1
RDEPEND=media-libs/ladspa-sdk >=sys-apps/sed-4
SLOT=0
SRC_URI=http://www.ladspa.org/download/cmt_src_1.16.tgz
_eclasses_=eutils b8eb29e3c9c4e94c65da9ebec37902a9 multilib 564d80d2026ae9f1910d8da4ea211e91 toolchain-funcs d3b5812eeab360bc41aa48b6cdbbc142 user d0a4d0735a6c0183d707ca919bd72f28
_md5_=6a84cd236c5ae9ee11b9439dde9c501d
_md5_=bd60945f3afcb3ee38af1d950a72e840

View file

@ -3,10 +3,10 @@ DEPEND=media-libs/libsndfile doc? ( app-doc/doxygen )
DESCRIPTION=Audio processing plugin system for plugins that extract descriptive information from audio data
HOMEPAGE=http://www.vamp-plugins.org
IUSE=doc
KEYWORDS=amd64 ~arm hppa ~mips ~ppc ppc64 x86
KEYWORDS=amd64 ~arm hppa ~mips ppc ppc64 x86
LICENSE=BSD
RDEPEND=media-libs/libsndfile
SLOT=0
SRC_URI=http://code.soundsoftware.ac.uk/attachments/download/224/vamp-plugin-sdk-2.3.tar.gz
_eclasses_=eutils b8eb29e3c9c4e94c65da9ebec37902a9 multilib 564d80d2026ae9f1910d8da4ea211e91 toolchain-funcs d3b5812eeab360bc41aa48b6cdbbc142 user d0a4d0735a6c0183d707ca919bd72f28
_md5_=78fdc4b65aa37c4b9eaa3423f33cd8e2
_md5_=50bdd76a4aa28de919cf24a0dd07ecd5

View file

@ -1,14 +0,0 @@
DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test unpack
DEPEND=app-crypt/qca:2 >=app-misc/strigi-0.5.7 >=kde-base/kdelibs-4.4:4[aqua=,opengl?,semantic-desktop?] >=kde-base/kdebase-kioslaves-4.4:4[aqua=] >=media-libs/taglib-1.6.1[asf,mp4] >=media-libs/taglib-extras-1.0.1 sys-libs/zlib >=virtual/mysql-5.1[embedded?] x11-libs/qt-script:4 >=x11-libs/qtscriptgenerator-0.1.0 cdda? ( >=kde-base/libkcddb-4.4:4[aqua=] >=kde-base/libkcompactdisc-4.4:4[aqua=] >=kde-base/kdemultimedia-kioslaves-4.4:4[aqua=] ) ipod? ( >=media-libs/libgpod-0.7.0[gtk] ) lastfm? ( =media-libs/liblastfm-0.3* ) mp3tunes? ( dev-libs/glib:2 dev-libs/libxml2 dev-libs/openssl net-libs/loudmouth net-misc/curl x11-libs/qt-core:4[glib] ) mtp? ( >=media-libs/libmtp-1.0.0 ) opengl? ( virtual/opengl ) dev-util/automoc virtual/pkgconfig >=sys-apps/sed-4 >=dev-util/cmake-2.8.4 userland_GNU? ( >=sys-apps/findutils-4.4.0 )
DESCRIPTION=Advanced audio player based on KDE framework.
EAPI=4
HOMEPAGE=http://amarok.kde.org/
IUSE=cdda daap debug +embedded ipod lastfm mp3tunes mtp opengl semantic-desktop +utils linguas_bg linguas_ca linguas_cs linguas_da linguas_de linguas_en_GB linguas_es linguas_et linguas_eu linguas_fi linguas_fr linguas_it linguas_ja linguas_km linguas_nb linguas_nds linguas_nl linguas_pa linguas_pl linguas_pt linguas_pt_BR linguas_ru linguas_sl linguas_sr linguas_sr@latin linguas_sv linguas_th linguas_tr linguas_uk linguas_wa linguas_zh_TW
KEYWORDS=amd64 ppc x86
LICENSE=GPL-2
RDEPEND=app-crypt/qca:2 >=app-misc/strigi-0.5.7 >=kde-base/kdelibs-4.4:4[aqua=,opengl?,semantic-desktop?] >=kde-base/kdebase-kioslaves-4.4:4[aqua=] >=media-libs/taglib-1.6.1[asf,mp4] >=media-libs/taglib-extras-1.0.1 sys-libs/zlib >=virtual/mysql-5.1[embedded?] x11-libs/qt-script:4 >=x11-libs/qtscriptgenerator-0.1.0 cdda? ( >=kde-base/libkcddb-4.4:4[aqua=] >=kde-base/libkcompactdisc-4.4:4[aqua=] >=kde-base/kdemultimedia-kioslaves-4.4:4[aqua=] ) ipod? ( >=media-libs/libgpod-0.7.0[gtk] ) lastfm? ( =media-libs/liblastfm-0.3* ) mp3tunes? ( dev-libs/glib:2 dev-libs/libxml2 dev-libs/openssl net-libs/loudmouth net-misc/curl x11-libs/qt-core:4[glib] ) mtp? ( >=media-libs/libmtp-1.0.0 ) opengl? ( virtual/opengl ) >=kde-base/phonon-kde-4.4:4[aqua=] !media-sound/amarok-utils
RESTRICT=test
SLOT=4
SRC_URI=mirror://kde/stable/amarok/2.4.3/src/amarok-2.4.3.tar.bz2
_eclasses_=base d40e074a6349af3ea5e937210630bdc1 cmake-utils de2b6743eb0bffee798e01b913aec936 eutils b8eb29e3c9c4e94c65da9ebec37902a9 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic 2c938a1fe61ea9899a2b97ea1e065f5f gnome2-utils e0a2e141b421d38788b23422dfbe4f82 kde4-base 6e4e3fc3a36f43b71c84ad615e804a83 kde4-functions df82ee2da839042995eb204cf576da49 multilib 564d80d2026ae9f1910d8da4ea211e91 toolchain-funcs d3b5812eeab360bc41aa48b6cdbbc142 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 virtualx 0c41ff55e46b959d9457dde69e7a09d9
_md5_=e355b8c88b0d104b53d9dd93f8eba68a

View file

@ -4,11 +4,11 @@ DESCRIPTION=Advanced audio player based on KDE framework.
EAPI=4
HOMEPAGE=http://amarok.kde.org/
IUSE=cdda daap debug +embedded ipod lastfm mp3tunes mtp ofa opengl semantic-desktop +utils linguas_af linguas_ar linguas_ast linguas_be linguas_bg linguas_bs linguas_ca linguas_ca@valencia linguas_cs linguas_csb linguas_da linguas_de linguas_el linguas_en_GB linguas_eo linguas_es linguas_et linguas_eu linguas_fa linguas_fi linguas_fr linguas_ga linguas_gl linguas_he linguas_hr linguas_hu linguas_is linguas_it linguas_ja linguas_km linguas_ko linguas_ku linguas_lt linguas_lv linguas_mai linguas_ml linguas_ms linguas_nb linguas_nds linguas_ne linguas_nl linguas_nn linguas_oc linguas_pa linguas_pl linguas_pt linguas_pt_BR linguas_ro linguas_ru linguas_se linguas_si linguas_sk linguas_sl linguas_sq linguas_sr linguas_sr@ijekavian linguas_sr@ijekavianlatin linguas_sr@Latn linguas_sv linguas_tg linguas_th linguas_tr linguas_ug linguas_uk linguas_wa linguas_zh_CN linguas_zh_TW
KEYWORDS=amd64 ~ppc ~ppc64 x86
KEYWORDS=amd64 ppc ~ppc64 x86
LICENSE=GPL-2
RDEPEND=app-crypt/qca:2 >=app-misc/strigi-0.5.7 >=kde-base/kdelibs-4.4:4[aqua=,opengl?,semantic-desktop?] >=kde-base/kdebase-kioslaves-4.4:4[aqua=] >=media-libs/taglib-1.6.1[asf,mp4] >=media-libs/taglib-extras-1.0.1 sys-libs/zlib >=virtual/mysql-5.1[embedded?] x11-libs/qt-core:4 x11-libs/qt-dbus:4 x11-libs/qt-script:4 >=x11-libs/qtscriptgenerator-0.1.0 cdda? ( >=kde-base/libkcddb-4.4:4[aqua=] >=kde-base/libkcompactdisc-4.4:4[aqua=] || ( >=kde-base/audiocd-kio-4.4:4[aqua=] >=kde-base/kdemultimedia-kioslaves-4.4:4[aqua=] ) ) ipod? ( >=media-libs/libgpod-0.7.0[gtk] ) lastfm? ( =media-libs/liblastfm-0.3* ) mp3tunes? ( dev-libs/glib:2 dev-libs/libxml2 dev-libs/openssl net-libs/loudmouth net-misc/curl x11-libs/qt-core:4[glib] ) mtp? ( >=media-libs/libmtp-1.0.0 ) ofa? ( >=media-libs/libofa-0.9.0 ) opengl? ( virtual/opengl ) !media-sound/amarok-utils >=kde-base/phonon-kde-4.4:4[aqua=]
RESTRICT=test
SLOT=4
SRC_URI=mirror://kde/unstable/amarok/2.5.0/src/amarok-2.5.0.tar.bz2
_eclasses_=base d40e074a6349af3ea5e937210630bdc1 cmake-utils de2b6743eb0bffee798e01b913aec936 eutils b8eb29e3c9c4e94c65da9ebec37902a9 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic 2c938a1fe61ea9899a2b97ea1e065f5f gnome2-utils e0a2e141b421d38788b23422dfbe4f82 kde4-base 6e4e3fc3a36f43b71c84ad615e804a83 kde4-functions df82ee2da839042995eb204cf576da49 multilib 564d80d2026ae9f1910d8da4ea211e91 toolchain-funcs d3b5812eeab360bc41aa48b6cdbbc142 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 virtualx 0c41ff55e46b959d9457dde69e7a09d9
_md5_=09f90d69185b51828d0d2c04cb74eec6
_md5_=ea2c2b81aff53c3f5d3149a16baebb77

View file

@ -4,11 +4,11 @@ DESCRIPTION=Text console based program for playing audio files
EAPI=4
HOMEPAGE=http://mp3blaster.sourceforge.net/
IUSE=lirc oss sdl sid vorbis
KEYWORDS=~alpha amd64 arm ~ppc ppc64 ~sparc x86 ~x86-fbsd
KEYWORDS=~alpha amd64 arm ppc ppc64 ~sparc x86 ~x86-fbsd
LICENSE=GPL-2
RDEPEND=>=sys-libs/ncurses-5.7-r7 lirc? ( app-misc/lirc ) sdl? ( media-libs/libsdl ) sid? ( =media-libs/libsidplay-1* ) vorbis? ( >=media-libs/libvorbis-1 )
REQUIRED_USE=|| ( oss sdl )
SLOT=0
SRC_URI=mirror://sourceforge/mp3blaster/mp3blaster-3.2.5.tar.gz mirror://debian/pool/main/m/mp3blaster/mp3blaster_3.2.5-3.debian.tar.gz
_eclasses_=eutils b8eb29e3c9c4e94c65da9ebec37902a9 multilib 564d80d2026ae9f1910d8da4ea211e91 toolchain-funcs d3b5812eeab360bc41aa48b6cdbbc142 user d0a4d0735a6c0183d707ca919bd72f28
_md5_=273666c8bf1e12250368ac9f7106b791
_md5_=66ac51615a212b1acecde41da447b017

View file

@ -0,0 +1,13 @@
DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup unpack
DEPEND=>=x11-libs/gtk+-2.20:2 >=dev-libs/glib-2.24:2 >=xfce-base/libxfce4util-4.8 >=xfce-base/libxfce4ui-4.8 >=dev-libs/dbus-glib-0.88 >=media-libs/gstreamer-0.10.11:0.10 >=media-libs/gst-plugins-base-0.10.11:0.10 libnotify? ( >=x11-libs/libnotify-0.4.5 ) taglib? ( >=media-libs/taglib-1.4 ) dev-util/intltool virtual/pkgconfig x11-proto/xproto >=sys-apps/sed-4
DESCRIPTION=a simple media player based on the GStreamer framework for the Xfce4 desktop
EAPI=4
HOMEPAGE=http://goodies.xfce.org/projects/applications/parole/
IUSE=debug libnotify taglib
KEYWORDS=~amd64 ~mips ~x86
LICENSE=GPL-2
RDEPEND=>=x11-libs/gtk+-2.20:2 >=dev-libs/glib-2.24:2 >=xfce-base/libxfce4util-4.8 >=xfce-base/libxfce4ui-4.8 >=dev-libs/dbus-glib-0.88 >=media-libs/gstreamer-0.10.11:0.10 >=media-libs/gst-plugins-base-0.10.11:0.10 libnotify? ( >=x11-libs/libnotify-0.4.5 ) taglib? ( >=media-libs/taglib-1.4 ) media-plugins/gst-plugins-meta:0.10
SLOT=0
SRC_URI=mirror://xfce/src/apps/parole/0.3/parole-0.3.0.3.tar.bz2
_eclasses_=autotools d89996a2048bc6d1ae72bfa4c04517fe base d40e074a6349af3ea5e937210630bdc1 eutils b8eb29e3c9c4e94c65da9ebec37902a9 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool a83de71c2123161fc5a8323cb275f8e5 multilib 564d80d2026ae9f1910d8da4ea211e91 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs d3b5812eeab360bc41aa48b6cdbbc142 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba
_md5_=8b87bb984298c0fd367e3ec06a0658a3

Some files were not shown because too many files have changed in this diff Show more