Merge remote-tracking branch 'upstream/master' into intel-extreme

This commit is contained in:
Alexander von Gluck IV
2015-12-23 16:41:23 -06:00
1600 changed files with 263536 additions and 9658 deletions
+5 -5
View File
@@ -9,10 +9,10 @@
# #
netcat=netcat netcat=nc
report_site=fake.haikuware.com report_site=fake.haikuware.com
report_cgi=http://haikuware.com/hwreport.php report_cgi=http://haikuware.com/hwreport.php
packages="dmidecode" packages="dmidecode netcat"
do_notify () do_notify ()
{ {
@@ -373,12 +373,12 @@ check_all ()
tf=/tmp/hw_checker_$$.html tf=/tmp/hw_checker_$$.html
do_notify 0.0 "Checking for network..."
detect_network
do_notify 0.0 "Checking for needed packages..." do_notify 0.0 "Checking for needed packages..."
try_install_packages try_install_packages
do_notify 0.0 "Checking for network..."
detect_network
check_all > "$tf" check_all > "$tf"
open "$tf" open "$tf"
Vendored Regular → Executable
View File
+5715
View File
File diff suppressed because it is too large Load Diff
+1
View File
@@ -69,6 +69,7 @@ The following ports need to be installed:
* `mpfr` * `mpfr`
* `gmp` * `gmp`
* `libmpc` * `libmpc`
* `bison` (updated to the latest version)
More information about individual distributions of Linux and BSD can be found More information about individual distributions of Linux and BSD can be found
at <https://haiku-os.org/guides/building/pre-reqs>. at <https://haiku-os.org/guides/building/pre-reqs>.
+4 -2
View File
@@ -43,8 +43,10 @@ rule ArchitectureSetup architecture
local cpu = $(HAIKU_CPU_$(architecture)) ; local cpu = $(HAIKU_CPU_$(architecture)) ;
if $(cpu) = arm { if $(cpu) = arm {
# For stackcrawls if $(HAIKU_CC_IS_CLANG_$(architecture)) != 1 {
gccBaseFlags += -mapcs-frame ; # For stackcrawls - not supported by Clang
gccBaseFlags += -mapcs-frame ;
}
} }
# activating graphite optimizations # activating graphite optimizations
+1 -1
View File
@@ -145,5 +145,5 @@ rule BuildMBR binary : source
actions BuildMBR actions BuildMBR
{ {
$(RM) $(1) $(RM) $(1)
$(HAIKU_CC_$(HAIKU_PACKAGING_ARCH)) $(2) -o $(1) $(MBRFLAGS) -nostdlib -Xlinker --oformat=binary -Xlinker -S -Xlinker -N -Xlinker "-e start" -Xlinker "-Ttext=0x600" $(HAIKU_CC_$(HAIKU_PACKAGING_ARCH)) $(2) -o $(1) $(MBRFLAGS) -nostdlib -Xlinker --oformat=binary -Xlinker -S -Xlinker -N -Xlinker --entry=start -Xlinker -Ttext=0x600
} }
+1 -1
View File
@@ -238,7 +238,7 @@ if [ IsPackageAvailable mesa_devel ] {
# FFmpeg # FFmpeg
if [ IsPackageAvailable ffmpeg_devel ] { if [ IsPackageAvailable ffmpeg_devel ] {
local ffmpegLibs = libavformat.so libavcodec.so libavdevice.so local ffmpegLibs = libavformat.so libavcodec.so libavdevice.so
libavfilter.so libswscale.so libavutil.so ; libavfilter.so libswscale.so libavutil.so libswresample.so ;
ExtractBuildFeatureArchives ffmpeg : ExtractBuildFeatureArchives ffmpeg :
file: base ffmpeg file: base ffmpeg
+1 -1
View File
@@ -139,7 +139,7 @@ rule KernelAddon
# compile and link # compile and link
SetupKernel $(sources) : : false ; SetupKernel $(sources) : : false ;
local linkFlags = -nostdlib -Xlinker --no-undefined local linkFlags = -shared -nostdlib -Xlinker --no-undefined
-Xlinker -soname=\"$(target:G=)\" $(TARGET_KERNEL_ADDON_LINKFLAGS) ; -Xlinker -soname=\"$(target:G=)\" $(TARGET_KERNEL_ADDON_LINKFLAGS) ;
LINKFLAGS on $(target) = [ on $(target) return $(LINKFLAGS) ] $(linkFlags) ; LINKFLAGS on $(target) = [ on $(target) return $(LINKFLAGS) ] $(linkFlags) ;
Main $(target) : $(sources) ; Main $(target) : $(sources) ;
+5 -1
View File
@@ -353,6 +353,10 @@ rule CreateAsmStructOffsetsHeader header : source
flags += -Wno-invalid-offsetof ; flags += -Wno-invalid-offsetof ;
# TODO: Rather get rid of the respective offsetof() instances. # TODO: Rather get rid of the respective offsetof() instances.
if $(HAIKU_CC_IS_CLANG_$(TARGET_PACKAGING_ARCH)) = 1 {
flags += -no-integrated-as ;
}
# locate object, search for source, and set on target variables # locate object, search for source, and set on target variables
Depends $(header) : $(source) $(PLATFORM) ; Depends $(header) : $(source) $(PLATFORM) ;
@@ -377,7 +381,7 @@ rule CreateAsmStructOffsetsHeader header : source
actions CreateAsmStructOffsetsHeader1 actions CreateAsmStructOffsetsHeader1
{ {
$(C++) -S "$(2)" $(C++FLAGS) $(CCDEFS) $(CCHDRS) -o - \ $(C++) -S "$(2)" $(C++FLAGS) $(CCDEFS) $(CCHDRS) -o - \
| grep "#define" | sed -e 's/[\$\#]\([0-9]\)/\1/' > "$(1)" | grep "#define" | $(SED) -e 's/[\$\#]\([0-9]\)/\1/' > "$(1)"
} }
rule MergeObjectFromObjects rule MergeObjectFromObjects
+35 -2
View File
@@ -195,7 +195,7 @@ if [ IsOptionalHaikuImagePackageAdded WebPositive ] {
AddPackageFilesToHaikuImage system : webpositive.hpkg AddPackageFilesToHaikuImage system : webpositive.hpkg
: nameFromMetaInfo ; : nameFromMetaInfo ;
InstallOptionalHaikuImagePackage InstallOptionalHaikuImagePackage
$(baseURL)/WebPositiveBookmarks-2015-09-05.zip $(baseURL)/WebPositiveBookmarks-2015-10-25.zip
: home config settings WebPositive ; : home config settings WebPositive ;
break ; break ;
} }
@@ -206,8 +206,41 @@ if [ IsOptionalHaikuImagePackageAdded WebPositive ] {
# Welcome # Welcome
if [ IsOptionalHaikuImagePackageAdded Welcome ] { if [ IsOptionalHaikuImagePackageAdded Welcome ] {
AddPackageFilesToHaikuImage system : haiku_userguide.hpkg AddPackageFilesToHaikuImage system : haiku_userguide_ca.hpkg
: nameFromMetaInfo ; : nameFromMetaInfo ;
AddPackageFilesToHaikuImage system : haiku_userguide_de.hpkg
: nameFromMetaInfo ;
AddPackageFilesToHaikuImage system : haiku_userguide_en.hpkg
: nameFromMetaInfo ;
AddPackageFilesToHaikuImage system : haiku_userguide_es.hpkg
: nameFromMetaInfo ;
AddPackageFilesToHaikuImage system : haiku_userguide_fi.hpkg
: nameFromMetaInfo ;
AddPackageFilesToHaikuImage system : haiku_userguide_fr.hpkg
: nameFromMetaInfo ;
AddPackageFilesToHaikuImage system : haiku_userguide_hu.hpkg
: nameFromMetaInfo ;
AddPackageFilesToHaikuImage system : haiku_userguide_it.hpkg
: nameFromMetaInfo ;
AddPackageFilesToHaikuImage system : haiku_userguide_jp.hpkg
: nameFromMetaInfo ;
AddPackageFilesToHaikuImage system : haiku_userguide_pl.hpkg
: nameFromMetaInfo ;
AddPackageFilesToHaikuImage system : haiku_userguide_pt_BR.hpkg
: nameFromMetaInfo ;
AddPackageFilesToHaikuImage system : haiku_userguide_pt_PT.hpkg
: nameFromMetaInfo ;
AddPackageFilesToHaikuImage system : haiku_userguide_ru.hpkg
: nameFromMetaInfo ;
AddPackageFilesToHaikuImage system : haiku_userguide_sk.hpkg
: nameFromMetaInfo ;
AddPackageFilesToHaikuImage system : haiku_userguide_sv_SE.hpkg
: nameFromMetaInfo ;
AddPackageFilesToHaikuImage system : haiku_userguide_uk.hpkg
: nameFromMetaInfo ;
AddPackageFilesToHaikuImage system : haiku_userguide_zh_CN.hpkg
: nameFromMetaInfo ;
AddPackageFilesToHaikuImage system : haiku_welcome.hpkg : nameFromMetaInfo ; AddPackageFilesToHaikuImage system : haiku_welcome.hpkg : nameFromMetaInfo ;
AddSymlinkToHaikuImage home Desktop : /boot/system/bin/welcome AddSymlinkToHaikuImage home Desktop : /boot/system/bin/welcome
+4
View File
@@ -107,6 +107,10 @@ rule PreprocessPackageOrRepositoryInfo target : source : architecture
sedReplacements sedReplacements
+= %HAIKU_SECONDARY_PACKAGING_ARCH_SUFFIX%, ; += %HAIKU_SECONDARY_PACKAGING_ARCH_SUFFIX%, ;
} }
for feature in $(HAIKU_BUILD_FEATURES) {
local featureSplit = [ FSplitString $(feature) : ":" ] ;
defines += HAIKU_BUILD_FEATURE_$(featureSplit:UJ=_)_ENABLED ;
}
local revisionFile = [ DetermineEffectiveHaikuRevision ] ; local revisionFile = [ DetermineEffectiveHaikuRevision ] ;
Depends $(target) : $(source) $(revisionFile) ; Depends $(target) : $(source) $(revisionFile) ;
+8 -2
View File
@@ -1,6 +1,12 @@
# unit test pseudo target # unit test pseudo target
NotFile unittests ; NotFile unittests ;
rule UnitTestDependency
{
Depends unittests : $(1) ;
}
rule UnitTestLib rule UnitTestLib
{ {
# UnitTestLib <lib> : <sources> : <libraries> ; # UnitTestLib <lib> : <sources> : <libraries> ;
@@ -30,7 +36,7 @@ rule UnitTestLib
MakeLocate $(lib) : $(TARGET_UNIT_TEST_LIB_DIR) ; MakeLocate $(lib) : $(TARGET_UNIT_TEST_LIB_DIR) ;
SharedLibrary $(lib) : $(sources) : $(libraries) libcppunit.so ; SharedLibrary $(lib) : $(sources) : $(libraries) libcppunit.so ;
Depends unittests : $(lib) ; UnitTestDependency $(lib) ;
} }
@@ -60,7 +66,7 @@ rule UnitTest
SimpleTest $(target) : $(sources) : $(libraries) libcppunit.so SimpleTest $(target) : $(sources) : $(libraries) libcppunit.so
: $(resources) ; : $(resources) ;
Depends unittests : $(target) ; UnitTestDependency $(target) ;
} }
+1 -1
View File
@@ -58,7 +58,7 @@ HAIKU_BOARD_SDIMAGE_SIZE = 128 ;
# gcc flags for the specific cpu # gcc flags for the specific cpu
# #
local flags = -mtune=arm1176jzf-s -march=armv7-a ; local flags = -march=armv7-a -mfloat-abi=hard ;
HAIKU_ASFLAGS_$(HAIKU_PACKAGING_ARCH) += $(flags) ; HAIKU_ASFLAGS_$(HAIKU_PACKAGING_ARCH) += $(flags) ;
HAIKU_CCFLAGS_$(HAIKU_PACKAGING_ARCH) += $(flags) ; HAIKU_CCFLAGS_$(HAIKU_PACKAGING_ARCH) += $(flags) ;
+1 -1
View File
@@ -13,7 +13,7 @@ SYSTEM_BIN = [ FFilterByBuildFeatures
hd hey hd hey
ideinfo@ide idestatus@ide ifconfig iroster isvolume ideinfo@ide idestatus@ide ifconfig iroster isvolume
kernel_debugger keymap keystore kernel_debugger keymap keystore
linkcatkeys listarea listattr listimage listdev launch_roster linkcatkeys listarea listattr listimage listdev
listport listres listsem listusb locale logger login lsindex listport listres listsem listusb locale logger login lsindex
makebootable message mimeset mkfs mkindex makebootable message mimeset mkfs mkindex
modifiers mount mountvolume modifiers mount mountvolume
+5 -3
View File
@@ -40,7 +40,8 @@ if $(HAIKU_ATA_STACK) = 1 {
AddFilesToPackage add-ons kernel busses random : virtio_rng ; AddFilesToPackage add-ons kernel busses random : virtio_rng ;
AddFilesToPackage add-ons kernel busses scsi : ahci virtio_scsi ; AddFilesToPackage add-ons kernel busses scsi : ahci virtio_scsi ;
AddFilesToPackage add-ons kernel busses usb : <usb>uhci <usb>ohci <usb>ehci ; AddFilesToPackage add-ons kernel busses usb : <usb>uhci <usb>ohci <usb>ehci
<usb>xhci ;
AddFilesToPackage add-ons kernel busses virtio : virtio_pci ; AddFilesToPackage add-ons kernel busses virtio : virtio_pci ;
AddFilesToPackage add-ons kernel console : vga_text ; AddFilesToPackage add-ons kernel console : vga_text ;
AddFilesToPackage add-ons kernel debugger AddFilesToPackage add-ons kernel debugger
@@ -205,7 +206,7 @@ AddBootModuleSymlinksToPackage
openpic@ppc openpic@ppc
packagefs pci packagefs pci
scsi scsi_cd scsi_disk scsi_periph silicon_image_3112 scsi scsi_cd scsi_disk scsi_periph silicon_image_3112
usb usb_disk <usb>ehci <usb>ohci <usb>uhci usb usb_disk <usb>ehci <usb>ohci <usb>uhci <usb>xhci
virtio virtio_block virtio_pci virtio_scsi virtio virtio_block virtio_pci virtio_scsi
; ;
@@ -259,7 +260,8 @@ AddFilesToPackage add-ons Print transport
AddFilesToPackage add-ons Screen\ Savers : $(SYSTEM_ADD_ONS_SCREENSAVERS) ; AddFilesToPackage add-ons Screen\ Savers : $(SYSTEM_ADD_ONS_SCREENSAVERS) ;
AddFilesToPackage add-ons disk_systems AddFilesToPackage add-ons disk_systems
: <disk_system>intel <disk_system>gpt <disk_system>bfs <disk_system>ntfs ; : <disk_system>fat <disk_system>intel <disk_system>gpt <disk_system>bfs
<disk_system>ntfs ;
# the MIME DB # the MIME DB
+250 -5
View File
@@ -1,9 +1,254 @@
local haikuUserGuidePackage = haiku_userguide.hpkg ; # CA
HaikuPackage $(haikuUserGuidePackage) ; local haikuUserGuidePackageCA = haiku_userguide_ca.hpkg ;
HaikuPackage $(haikuUserGuidePackageCA) ;
CopyDirectoryToPackage documentation : [ FDirName $(HAIKU_TOP) docs userguide ] CopyDirectoryToPackage documentation userguide : [ FDirName $(HAIKU_TOP) docs userguide ca ]
: userguide ; : ca ;
CopyDirectoryToPackage documentation userguide : [ FDirName $(HAIKU_TOP) docs userguide images ]
: images ;
AddFilesToPackage documentation userguide : [ FDirName $(HAIKU_TOP) docs userguide Haiku-doc.css ]
: Haiku-doc.css ;
SEARCH on userguide = [ FDirName $(HAIKU_TOP) data bin ] ; SEARCH on userguide = [ FDirName $(HAIKU_TOP) data bin ] ;
AddFilesToPackage bin : userguide ; AddFilesToPackage bin : userguide ;
BuildHaikuPackage $(haikuUserGuidePackage) : haiku_userguide ; BuildHaikuPackage $(haikuUserGuidePackageCA) : haiku_userguide_ca ;
# DE
local haikuUserGuidePackageDE = haiku_userguide_de.hpkg ;
HaikuPackage $(haikuUserGuidePackageDE) ;
CopyDirectoryToPackage documentation userguide : [ FDirName $(HAIKU_TOP) docs userguide de ]
: de ;
CopyDirectoryToPackage documentation userguide : [ FDirName $(HAIKU_TOP) docs userguide images ]
: images ;
AddFilesToPackage documentation userguide : [ FDirName $(HAIKU_TOP) docs userguide Haiku-doc.css ]
: Haiku-doc.css ;
SEARCH on userguide = [ FDirName $(HAIKU_TOP) data bin ] ;
AddFilesToPackage bin : userguide ;
BuildHaikuPackage $(haikuUserGuidePackageDE) : haiku_userguide_de ;
# EN
local haikuUserGuidePackageEN = haiku_userguide_en.hpkg ;
HaikuPackage $(haikuUserGuidePackageEN) ;
CopyDirectoryToPackage documentation userguide : [ FDirName $(HAIKU_TOP) docs userguide en ]
: en ;
CopyDirectoryToPackage documentation userguide : [ FDirName $(HAIKU_TOP) docs userguide images ]
: images ;
AddFilesToPackage documentation userguide : [ FDirName $(HAIKU_TOP) docs userguide Haiku-doc.css ]
: Haiku-doc.css ;
SEARCH on userguide = [ FDirName $(HAIKU_TOP) data bin ] ;
AddFilesToPackage bin : userguide ;
BuildHaikuPackage $(haikuUserGuidePackageEN) : haiku_userguide_en ;
# ES
local haikuUserGuidePackageES = haiku_userguide_es.hpkg ;
HaikuPackage $(haikuUserGuidePackageES) ;
CopyDirectoryToPackage documentation userguide : [ FDirName $(HAIKU_TOP) docs userguide es ]
: es ;
CopyDirectoryToPackage documentation userguide : [ FDirName $(HAIKU_TOP) docs userguide images ]
: images ;
AddFilesToPackage documentation userguide : [ FDirName $(HAIKU_TOP) docs userguide Haiku-doc.css ]
: Haiku-doc.css ;
SEARCH on userguide = [ FDirName $(HAIKU_TOP) data bin ] ;
AddFilesToPackage bin : userguide ;
BuildHaikuPackage $(haikuUserGuidePackageES) : haiku_userguide_es ;
# FI
local haikuUserGuidePackageFI = haiku_userguide_fi.hpkg ;
HaikuPackage $(haikuUserGuidePackageFI) ;
CopyDirectoryToPackage documentation userguide : [ FDirName $(HAIKU_TOP) docs userguide fi ]
: fi ;
CopyDirectoryToPackage documentation userguide : [ FDirName $(HAIKU_TOP) docs userguide images ]
: images ;
AddFilesToPackage documentation userguide : [ FDirName $(HAIKU_TOP) docs userguide Haiku-doc.css ]
: Haiku-doc.css ;
SEARCH on userguide = [ FDirName $(HAIKU_TOP) data bin ] ;
AddFilesToPackage bin : userguide ;
BuildHaikuPackage $(haikuUserGuidePackageFI) : haiku_userguide_fi ;
# FR
local haikuUserGuidePackageFR = haiku_userguide_fr.hpkg ;
HaikuPackage $(haikuUserGuidePackageFR) ;
CopyDirectoryToPackage documentation userguide : [ FDirName $(HAIKU_TOP) docs userguide fr ]
: fr ;
CopyDirectoryToPackage documentation userguide : [ FDirName $(HAIKU_TOP) docs userguide images ]
: images ;
AddFilesToPackage documentation userguide : [ FDirName $(HAIKU_TOP) docs userguide Haiku-doc.css ]
: Haiku-doc.css ;
SEARCH on userguide = [ FDirName $(HAIKU_TOP) data bin ] ;
AddFilesToPackage bin : userguide ;
BuildHaikuPackage $(haikuUserGuidePackageFR) : haiku_userguide_fr ;
# HU
local haikuUserGuidePackageHU = haiku_userguide_hu.hpkg ;
HaikuPackage $(haikuUserGuidePackageHU) ;
CopyDirectoryToPackage documentation userguide : [ FDirName $(HAIKU_TOP) docs userguide hu ]
: hu ;
CopyDirectoryToPackage documentation userguide : [ FDirName $(HAIKU_TOP) docs userguide images ]
: images ;
AddFilesToPackage documentation userguide : [ FDirName $(HAIKU_TOP) docs userguide Haiku-doc.css ]
: Haiku-doc.css ;
SEARCH on userguide = [ FDirName $(HAIKU_TOP) data bin ] ;
AddFilesToPackage bin : userguide ;
BuildHaikuPackage $(haikuUserGuidePackageHU) : haiku_userguide_hu ;
# IT
local haikuUserGuidePackageIT = haiku_userguide_it.hpkg ;
HaikuPackage $(haikuUserGuidePackageIT) ;
CopyDirectoryToPackage documentation userguide : [ FDirName $(HAIKU_TOP) docs userguide it ]
: it ;
CopyDirectoryToPackage documentation userguide : [ FDirName $(HAIKU_TOP) docs userguide images ]
: images ;
AddFilesToPackage documentation userguide : [ FDirName $(HAIKU_TOP) docs userguide Haiku-doc.css ]
: Haiku-doc.css ;
SEARCH on userguide = [ FDirName $(HAIKU_TOP) data bin ] ;
AddFilesToPackage bin : userguide ;
BuildHaikuPackage $(haikuUserGuidePackageIT) : haiku_userguide_it ;
# JP
local haikuUserGuidePackageJP = haiku_userguide_jp.hpkg ;
HaikuPackage $(haikuUserGuidePackageJP) ;
CopyDirectoryToPackage documentation userguide : [ FDirName $(HAIKU_TOP) docs userguide jp ]
: jp ;
CopyDirectoryToPackage documentation userguide : [ FDirName $(HAIKU_TOP) docs userguide images ]
: images ;
AddFilesToPackage documentation userguide : [ FDirName $(HAIKU_TOP) docs userguide Haiku-doc.css ]
: Haiku-doc.css ;
SEARCH on userguide = [ FDirName $(HAIKU_TOP) data bin ] ;
AddFilesToPackage bin : userguide ;
BuildHaikuPackage $(haikuUserGuidePackageJP) : haiku_userguide_jp ;
# PL
local haikuUserGuidePackagePL = haiku_userguide_pl.hpkg ;
HaikuPackage $(haikuUserGuidePackagePL) ;
CopyDirectoryToPackage documentation userguide : [ FDirName $(HAIKU_TOP) docs userguide pl ]
: pl ;
CopyDirectoryToPackage documentation userguide : [ FDirName $(HAIKU_TOP) docs userguide images ]
: images ;
AddFilesToPackage documentation userguide : [ FDirName $(HAIKU_TOP) docs userguide Haiku-doc.css ]
: Haiku-doc.css ;
SEARCH on userguide = [ FDirName $(HAIKU_TOP) data bin ] ;
AddFilesToPackage bin : userguide ;
BuildHaikuPackage $(haikuUserGuidePackagePL) : haiku_userguide_pl ;
# PT_BR
local haikuUserGuidePackagePT_BR = haiku_userguide_pt_BR.hpkg ;
HaikuPackage $(haikuUserGuidePackagePT_BR) ;
CopyDirectoryToPackage documentation userguide : [ FDirName $(HAIKU_TOP) docs userguide pt_BR ]
: pt_BR ;
CopyDirectoryToPackage documentation userguide : [ FDirName $(HAIKU_TOP) docs userguide images ]
: images ;
AddFilesToPackage documentation userguide : [ FDirName $(HAIKU_TOP) docs userguide Haiku-doc.css ]
: Haiku-doc.css ;
SEARCH on userguide = [ FDirName $(HAIKU_TOP) data bin ] ;
AddFilesToPackage bin : userguide ;
BuildHaikuPackage $(haikuUserGuidePackagePT_BR) : haiku_userguide_pt_BR ;
# PT_PT
local haikuUserGuidePackagePT_PT = haiku_userguide_pt_PT.hpkg ;
HaikuPackage $(haikuUserGuidePackagePT_PT) ;
CopyDirectoryToPackage documentation userguide : [ FDirName $(HAIKU_TOP) docs userguide pt_PT ]
: pt_PT ;
CopyDirectoryToPackage documentation userguide : [ FDirName $(HAIKU_TOP) docs userguide images ]
: images ;
AddFilesToPackage documentation userguide : [ FDirName $(HAIKU_TOP) docs userguide Haiku-doc.css ]
: Haiku-doc.css ;
SEARCH on userguide = [ FDirName $(HAIKU_TOP) data bin ] ;
AddFilesToPackage bin : userguide ;
BuildHaikuPackage $(haikuUserGuidePackagePT_PT) : haiku_userguide_pt_PT ;
# RU
local haikuUserGuidePackageRU = haiku_userguide_ru.hpkg ;
HaikuPackage $(haikuUserGuidePackageRU) ;
CopyDirectoryToPackage documentation userguide : [ FDirName $(HAIKU_TOP) docs userguide ru ]
: ru ;
CopyDirectoryToPackage documentation userguide : [ FDirName $(HAIKU_TOP) docs userguide images ]
: images ;
AddFilesToPackage documentation userguide : [ FDirName $(HAIKU_TOP) docs userguide Haiku-doc.css ]
: Haiku-doc.css ;
SEARCH on userguide = [ FDirName $(HAIKU_TOP) data bin ] ;
AddFilesToPackage bin : userguide ;
BuildHaikuPackage $(haikuUserGuidePackageRU) : haiku_userguide_ru ;
# SK
local haikuUserGuidePackageSK = haiku_userguide_sk.hpkg ;
HaikuPackage $(haikuUserGuidePackageSK) ;
CopyDirectoryToPackage documentation userguide : [ FDirName $(HAIKU_TOP) docs userguide sk ]
: sk ;
CopyDirectoryToPackage documentation userguide : [ FDirName $(HAIKU_TOP) docs userguide images ]
: images ;
AddFilesToPackage documentation userguide : [ FDirName $(HAIKU_TOP) docs userguide Haiku-doc.css ]
: Haiku-doc.css ;
SEARCH on userguide = [ FDirName $(HAIKU_TOP) data bin ] ;
AddFilesToPackage bin : userguide ;
BuildHaikuPackage $(haikuUserGuidePackageSK) : haiku_userguide_sk ;
# SV_SE
local haikuUserGuidePackageSV_SE = haiku_userguide_sv_SE.hpkg ;
HaikuPackage $(haikuUserGuidePackageSV_SE) ;
CopyDirectoryToPackage documentation userguide : [ FDirName $(HAIKU_TOP) docs userguide sv_SE ]
: sv_SE ;
CopyDirectoryToPackage documentation userguide : [ FDirName $(HAIKU_TOP) docs userguide images ]
: images ;
AddFilesToPackage documentation userguide : [ FDirName $(HAIKU_TOP) docs userguide Haiku-doc.css ]
: Haiku-doc.css ;
SEARCH on userguide = [ FDirName $(HAIKU_TOP) data bin ] ;
AddFilesToPackage bin : userguide ;
BuildHaikuPackage $(haikuUserGuidePackageSV_SE) : haiku_userguide_sv_SE ;
# UK
local haikuUserGuidePackageUK = haiku_userguide_uk.hpkg ;
HaikuPackage $(haikuUserGuidePackageUK) ;
CopyDirectoryToPackage documentation userguide : [ FDirName $(HAIKU_TOP) docs userguide uk ]
: uk ;
CopyDirectoryToPackage documentation userguide : [ FDirName $(HAIKU_TOP) docs userguide images ]
: images ;
AddFilesToPackage documentation userguide : [ FDirName $(HAIKU_TOP) docs userguide Haiku-doc.css ]
: Haiku-doc.css ;
SEARCH on userguide = [ FDirName $(HAIKU_TOP) data bin ] ;
AddFilesToPackage bin : userguide ;
BuildHaikuPackage $(haikuUserGuidePackageUK) : haiku_userguide_uk ;
# ZH_CN
local haikuUserGuidePackageZH_CN = haiku_userguide_zh_CN.hpkg ;
HaikuPackage $(haikuUserGuidePackageZH_CN) ;
CopyDirectoryToPackage documentation userguide : [ FDirName $(HAIKU_TOP) docs userguide zh_CN ]
: zh_CN ;
CopyDirectoryToPackage documentation userguide : [ FDirName $(HAIKU_TOP) docs userguide images ]
: images ;
AddFilesToPackage documentation userguide : [ FDirName $(HAIKU_TOP) docs userguide Haiku-doc.css ]
: Haiku-doc.css ;
SEARCH on userguide = [ FDirName $(HAIKU_TOP) data bin ] ;
AddFilesToPackage bin : userguide ;
BuildHaikuPackage $(haikuUserGuidePackageZH_CN) : haiku_userguide_zh_CN ;
+17 -1
View File
@@ -12,7 +12,23 @@ local packages = [ FFilterByBuildFeatures
haiku haiku
haiku_devel haiku_devel
haiku_loader haiku_loader
haiku_userguide haiku_userguide_ca
haiku_userguide_de
haiku_userguide_en
haiku_userguide_es
haiku_userguide_fi
haiku_userguide_fr
haiku_userguide_hu
haiku_userguide_it
haiku_userguide_jp
haiku_userguide_pl
haiku_userguide_pt_BR
haiku_userguide_pt_PT
haiku_userguide_ru
haiku_userguide_sk
haiku_userguide_sv_SE
haiku_userguide_uk
haiku_userguide_zh_CN
haiku_welcome haiku_welcome
makefile_engine makefile_engine
netfs@!x86_64 netfs@!x86_64
+96 -66
View File
@@ -4,28 +4,30 @@ RemotePackageRepository HaikuPorts
: :
# architecture "any" packages # architecture "any" packages
be_book-2008_10_26-1 be_book-2008_10_26-1
ca_root_certificates-2014_08_13-1 ca_root_certificates-2015_10_28-1
caladea-20130214-3 caladea-20130214-3
carlito-20130920-1 carlito-20130920-1
dejavu-2.34-1 dejavu-2.34-1
texi2html-1.82-2 texi2html-1.82-2
timgmsoundfont-fixed-5 timgmsoundfont-fixed-5
unknown_horizons-2014.1-1
vl_gothic-20141206-1 vl_gothic-20141206-1
wqy_microhei-0.2.0~beta-3 wqy_microhei-0.2.0~beta-3
: :
# repository architecture packages # repository architecture packages
# primary architecture (x86) # primary architecture (x86)
ale-0.9.1-2 ale-0.9.1-2
apr-1.4.6-7 apr-1.5.2-1
apr_devel-1.4.6-7 apr_devel-1.5.2-1
apr_util-1.4.1-4 apr_util-1.5.4-1
apr_util_devel-1.4.1-4 apr_util_devel-1.5.4-1
aspell-0.60.6.1-1 aspell-0.60.6.1-1
aspell_devel-0.60.6.1-1 aspell_devel-0.60.6.1-1
autoconf-2.69-6 autoconf-2.69-6
automake-1.13.1-4 automake-1.15.0-1
automake113-1.13.1-1
bash-4.3.42-1 bash-4.3.42-1
beam-1.2-1 beam-1.2-2
bepdf-1.2.0-1 bepdf-1.2.0-1
bescreencapture-1.9.4-1 bescreencapture-1.9.4-1
binutils-2.25_12015_07_31-1 binutils-2.25_12015_07_31-1
@@ -67,10 +69,11 @@ RemotePackageRepository HaikuPorts
coreutils-8.24-1 coreutils-8.24-1
cpio-2.10-1 cpio-2.10-1
ctags-5.8-3 ctags-5.8-3
curl-7.44.0-1 curl-7.45.0-2
curl_devel-7.44.0-1 curl_devel-7.45.0-2
cvs-1.12.13.1-6 cvs-1.12.13.1-6
cvsps-2.2b1-1 cvsps-2.2b1-1
cython-0.23.4-1
dbus-1.8.6-1 dbus-1.8.6-1
dbus_devel-1.8.6-1 dbus_devel-1.8.6-1
diffutils-3.3-2 diffutils-3.3-2
@@ -79,34 +82,40 @@ RemotePackageRepository HaikuPorts
dtc-1.4.1-1 dtc-1.4.1-1
expat-2.1.0-1 expat-2.1.0-1
expat_devel-2.1.0-1 expat_devel-2.1.0-1
fife-0.4.0~20150801-1
fifechan-0.1.2-2
fifechan_devel-0.1.2-2
file-5.15-1 file-5.15-1
file_devel-5.15-1 file_devel-5.15-1
findutils-4.4.2-3 findutils-4.4.2-3
ffmpeg-0.10.2-4 ffmpeg-2.8.2-2
ffmpeg_devel-0.10.2-4 ffmpeg_devel-2.8.2-2
flac-1.3.1-1 flac-1.3.1-1
flac_devel-1.3.1-1 flac_devel-1.3.1-1
flex-2.5.39-2 flex-2.5.39-2
fossil-1.33-1 fossil-1.34-2
freetype-2.6-1 freetype-2.6-1
freetype_devel-2.6-1 freetype_devel-2.6-1
gawk-4.1.3-1 gawk-4.1.3-1
gcc-4.8.5_2015_07_11-2 gcc-4.8.5_2015_07_11-2
gcc_syslibs-4.8.5_2015_07_11-2 gcc_syslibs-4.8.5_2015_07_11-2
gcc_syslibs_devel-4.8.5_2015_07_11-2 gcc_syslibs_devel-4.8.5_2015_07_11-2
gcc5-5.3.0_2015_07_27-1
gcc5_syslibs-5.3.0_2015_07_27-1
gcc5_syslibs_devel-5.3.0_2015_07_27-1
gettext-0.19.4-1 gettext-0.19.4-1
gettext_libintl-0.19.4-1 gettext_libintl-0.19.4-1
giflib-5.1.1-1 giflib-5.1.1-1
giflib_devel-5.1.1-1 giflib_devel-5.1.1-1
giflib6-5.0.5-2 giflib6-5.0.5-2
giflib6_devel-5.0.5-2 giflib6_devel-5.0.5-2
git-2.2.2-1 git-2.2.2-3
git_arch-2.2.2-1 git_arch-2.2.2-3
git_cvs-2.2.2-1 git_cvs-2.2.2-3
git_daemon-2.2.2-1 git_daemon-2.2.2-3
git_email-2.2.2-1 git_email-2.2.2-3
git_remote_helpers-1.8.3.4-4 git_remote_helpers-1.8.3.4-4
git_svn-2.2.2-1 git_svn-2.2.2-3
glew-1.11.0-1 glew-1.11.0-1
glew_devel-1.11.0-1 glew_devel-1.11.0-1
glew_util-1.11.0-1 glew_util-1.11.0-1
@@ -114,20 +123,20 @@ RemotePackageRepository HaikuPorts
glib2_devel-2.38.1-5 glib2_devel-2.38.1-5
glu-9.0.0-3 glu-9.0.0-3
glu_devel-9.0.0-3 glu_devel-9.0.0-3
gmp-6.0.0-1 gmp-6.1.0-1
gmp_devel-6.0.0-1 gmp_devel-6.1.0-1
gperf-3.0.4-1 gperf-3.0.4-1
grep-2.21-1 grep-2.21-1
groff-1.20.1-3 groff-1.20.1-3
gutenprint-5.2.10-1 gutenprint-5.2.10-1
gutenprint_devel-5.2.10-1 gutenprint_devel-5.2.10-1
gzip-1.6-2 gzip-1.6-2
haikuwebkit-1.4.12-1 haikuwebkit-1.5.1-1
haikuwebkit_devel-1.4.12-1 haikuwebkit_devel-1.5.1-1
help2man-1.46.6-1 help2man-1.46.6-1
htmldoc-1.8.27-3 htmldoc-1.8.27-3
icu-55.1-5 icu-55.1-6
icu_devel-55.1-5 icu_devel-55.1-6
icu54-54.1-1 icu54-54.1-1
icu54_devel-54.1-1 icu54_devel-54.1-1
intltool-0.40.6-4 intltool-0.40.6-4
@@ -142,8 +151,8 @@ RemotePackageRepository HaikuPorts
less-458-1 less-458-1
libedit-2015_03_21_3.1-2 libedit-2015_03_21_3.1-2
libedit_devel-2015_03_21_3.1-2 libedit_devel-2015_03_21_3.1-2
libevent-2.0.21-7 libevent-2.0.21-8
libevent_devel-2.0.21-7 libevent_devel-2.0.21-8
libexecinfo-1.1-1 libexecinfo-1.1-1
libexecinfo_devel-1.1-1 libexecinfo_devel-1.1-1
libffi-3.2.1-2 libffi-3.2.1-2
@@ -166,21 +175,23 @@ RemotePackageRepository HaikuPorts
libogg_devel-1.3.0-2 libogg_devel-1.3.0-2
libpcap-1.7.4-1 libpcap-1.7.4-1
libpcap_devel-1.7.4-1 libpcap_devel-1.7.4-1
libpcre-8.37-1 libpcre-8.38-1
libpcre_devel-8.37-1 libpcre_devel-8.38-1
libpcre0-8.21-6 libpcre0-8.21-6
libpng-1.5.22-1 libpng-1.5.25-1
libpng_devel-1.5.22-1 libpng_devel-1.5.25-1
libpng16-1.6.18-1 libpng16-1.6.20-1
libpng16_devel-1.6.18-1 libpng16_devel-1.6.20-1
libqt4-4.8.7-2 libqt4-4.8.7-5
libqt4_devel-4.8.7-2 libqt4_devel-4.8.7-5
libsanta-3.0.1-1 libsanta-3.0.1-1
libsanta_devel-3.0.1-1 libsanta_devel-3.0.1-1
libsdl-1.2.15-6 libsdl-1.2.15-9
libsdl_devel-1.2.15-6 libsdl_devel-1.2.15-9
libssh2-1.5.0-1 libsndfile-1.0.26-1
libssh2_devel-1.5.0-1 libsndfile_devel-1.0.26-1
libssh2-1.5.0-2
libssh2_devel-1.5.0-2
libsolv-0.3.0_haiku_2014_12_22-1 libsolv-0.3.0_haiku_2014_12_22-1
libsolv_devel-0.3.0_haiku_2014_12_22-1 libsolv_devel-0.3.0_haiku_2014_12_22-1
libtheora-1.1.1-2 libtheora-1.1.1-2
@@ -195,9 +206,9 @@ RemotePackageRepository HaikuPorts
libvpx_devel-1.0.0-2 libvpx_devel-1.0.0-2
libwebp-0.4.1-2 libwebp-0.4.1-2
libwebp_devel-0.4.1-2 libwebp_devel-0.4.1-2
libxml2-2.9.2-1 libxml2-2.9.3-2
libxml2_devel-2.9.2-1 libxml2_devel-2.9.3-2
libxml2_python-2.9.2-1 libxml2_python-2.9.3-2
libxslt-1.1.28-2 libxslt-1.1.28-2
libxslt_devel-1.1.28-2 libxslt_devel-1.1.28-2
llvm-3.5.2-1 llvm-3.5.2-1
@@ -226,35 +237,40 @@ RemotePackageRepository HaikuPorts
ncurses_devel-5.9-10 ncurses_devel-5.9-10
ncurses6-6.0-1 ncurses6-6.0-1
ncurses6_devel-6.0-1 ncurses6_devel-6.0-1
neon-0.29.6-7 neon-0.30.1-2
neon_devel-0.29.6-7 neon_devel-0.30.1-2
netcat-1.10-1 netcat-1.10-1
ninja-1.5.1-2 ninja-1.5.1-2
openal-1.13.0-2
openal_devel-1.13.0-2
openjdk-1.7_2013_11_08-2 openjdk-1.7_2013_11_08-2
openssh-6.9p1-1 openssh-7.1p1-3
# sync openssl with secondary architecture (x86_gcc2) openssl-1.0.2e-1
openssl-1.0.0s-2 openssl_devel-1.0.2e-1
openssl_devel-1.0.0s-2
p7zip-9.20.1-4 p7zip-9.20.1-4
patch-2.7.5-1 patch-2.7.5-1
pe-2.4.5-2 pe-2.4.5-2
perl-5.18.2-2 perl-5.18.2-2
pixman-0.32.6-1 pixman-0.32.6-1
pkgconfig-0.27.1-2 pkgconfig-0.27.1-2
python-2.7.10-1 pyenet-20141025-1
python-2.7.11-1
python_mako-1.0.1-1 python_mako-1.0.1-1
python_setuptools-5.3-2 python_setuptools-5.3-2
python_twisted-13.2.0-1 python_twisted-13.2.0-1
python_zope.interface-4.1.1-2 python_zope.interface-4.1.1-2
python3-3.5.1-1
pyyaml-3.11-1
qca2-2.0.3-1 qca2-2.0.3-1
qca2_devel-2.0.3-1 qca2_devel-2.0.3-1
qemu-2.1.2-1 qemu-2.1.2-1
qrencode-3.4.4-1 qrencode-3.4.4-1
qrencode_devel-3.4.4-1 qrencode_devel-3.4.4-1
qsystray-0.1-3
readline-6.3.8-1 readline-6.3.8-1
readline_devel-6.3.8-1 readline_devel-6.3.8-1
ruby-2.2.2-1 ruby-2.2.2-4
ruby_devel-2.2.2-1 ruby_devel-2.2.2-4
scons-2.3.1-4 scons-2.3.1-4
sdl_gfx-2.0.25-2 sdl_gfx-2.0.25-2
sdl_gfx_devel-2.0.25-2 sdl_gfx_devel-2.0.25-2
@@ -269,6 +285,8 @@ RemotePackageRepository HaikuPorts
sdl_ttf-2.0.11-2 sdl_ttf-2.0.11-2
sdl_ttf_devel-2.0.11-2 sdl_ttf_devel-2.0.11-2
sed-4.2.1-6 sed-4.2.1-6
serf-1.3.8-2
serf_devel-1.3.8-2
sharutils-4.14-1 sharutils-4.14-1
smpeg-0.4.5-4 smpeg-0.4.5-4
smpeg_devel-0.4.5-4 smpeg_devel-0.4.5-4
@@ -276,8 +294,8 @@ RemotePackageRepository HaikuPorts
speex_devel-1.2~rc1-2 speex_devel-1.2~rc1-2
sqlite-3.8.11.1-1 sqlite-3.8.11.1-1
sqlite_devel-3.8.11.1-1 sqlite_devel-3.8.11.1-1
subversion-1.6.18-6 subversion-1.8.11-8
subversion_devel-1.6.18-6 subversion_devel-1.8.11-8
tar-1.27.1-2 tar-1.27.1-2
tcpdump-4.7.4-2 tcpdump-4.7.4-2
texinfo-4.13a-7 texinfo-4.13a-7
@@ -289,14 +307,14 @@ RemotePackageRepository HaikuPorts
tiff4_tools-4.0.6-1 tiff4_tools-4.0.6-1
tinyxml-2.6.2-1 tinyxml-2.6.2-1
tinyxml_devel-2.6.2-1 tinyxml_devel-2.6.2-1
transmission-2.84-3 transmission-2.84-4
unrar-5.3.2-1 unrar-5.3.2-1
unzip-6.0-2 unzip-6.0-2
vision-0.9.7.r949-3 vision-0.9.7.r949-3
vim-7.4-1 vim-7.4-1
wget-1.16.3-1 wget-1.17.1-1
which-2.21-1 which-2.21-1
wpa_supplicant-2.0-3 wpa_supplicant-2.0-4
xml_parser-2.36-1 xml_parser-2.36-1
xz_utils-5.0.8-2 xz_utils-5.0.8-2
xz_utils_devel-5.0.8-2 xz_utils_devel-5.0.8-2
@@ -309,8 +327,8 @@ RemotePackageRepository HaikuPorts
binutils_x86_gcc2-2.17_2013_04_21-2 binutils_x86_gcc2-2.17_2013_04_21-2
bzip2_x86_gcc2-1.0.6-5 bzip2_x86_gcc2-1.0.6-5
bzip2_x86_gcc2_devel-1.0.6-5 bzip2_x86_gcc2_devel-1.0.6-5
curl_x86_gcc2-7.44.0-1 curl_x86_gcc2-7.45.0-2
curl_x86_gcc2_devel-7.44.0-1 curl_x86_gcc2_devel-7.45.0-2
expat_x86_gcc2-2.1.0-1 expat_x86_gcc2-2.1.0-1
expat_x86_gcc2_devel-2.1.0-1 expat_x86_gcc2_devel-2.1.0-1
ffmpeg_x86_gcc2-0.10.2-4 ffmpeg_x86_gcc2-0.10.2-4
@@ -330,8 +348,8 @@ RemotePackageRepository HaikuPorts
glib2_x86_gcc2_devel-2.38.1-4 glib2_x86_gcc2_devel-2.38.1-4
glu_x86_gcc2-9.0.0-2 glu_x86_gcc2-9.0.0-2
glu_x86_gcc2_devel-9.0.0-2 glu_x86_gcc2_devel-9.0.0-2
icu_x86_gcc2-55.1-4 icu_x86_gcc2-55.1-6
icu_x86_gcc2_devel-55.1-4 icu_x86_gcc2_devel-55.1-6
icu54_x86_gcc2-54.1-1 icu54_x86_gcc2-54.1-1
icu54_x86_gcc2_devel-54.1-1 icu54_x86_gcc2_devel-54.1-1
jasper_x86_gcc2-1.900.1-4 jasper_x86_gcc2-1.900.1-4
@@ -346,10 +364,10 @@ RemotePackageRepository HaikuPorts
libiconv_x86_gcc2_devel-1.13.1-6 libiconv_x86_gcc2_devel-1.13.1-6
libogg_x86_gcc2-1.3.0-2 libogg_x86_gcc2-1.3.0-2
libogg_x86_gcc2_devel-1.3.0-2 libogg_x86_gcc2_devel-1.3.0-2
libpng_x86_gcc2-1.5.22-1 libpng_x86_gcc2-1.5.25-1
libpng_x86_gcc2_devel-1.5.22-1 libpng_x86_gcc2_devel-1.5.25-1
libpng16_x86_gcc2-1.6.18-1 libpng16_x86_gcc2-1.6.20-1
libpng16_x86_gcc2_devel-1.6.18-1 libpng16_x86_gcc2_devel-1.6.20-1
libsolv_x86_gcc2-0.3.0_haiku_2014_12_22-1 libsolv_x86_gcc2-0.3.0_haiku_2014_12_22-1
libsolv_x86_gcc2_devel-0.3.0_haiku_2014_12_22-1 libsolv_x86_gcc2_devel-0.3.0_haiku_2014_12_22-1
libtheora_x86_gcc2-1.1.1-2 libtheora_x86_gcc2-1.1.1-2
@@ -369,8 +387,8 @@ RemotePackageRepository HaikuPorts
ncurses_x86_gcc2_devel-5.9-10 ncurses_x86_gcc2_devel-5.9-10
ncurses6_x86_gcc2-6.0-1 ncurses6_x86_gcc2-6.0-1
ncurses6_x86_gcc2_devel-6.0-1 ncurses6_x86_gcc2_devel-6.0-1
openssl_x86_gcc2-1.0.0s-2 openssl_x86_gcc2-1.0.2e-1
openssl_x86_gcc2_devel-1.0.0s-2 openssl_x86_gcc2_devel-1.0.2e-1
pkgconfig_x86_gcc2-0.27.1-2 pkgconfig_x86_gcc2-0.27.1-2
speex_x86_gcc2-1.2~rc1-2 speex_x86_gcc2-1.2~rc1-2
speex_x86_gcc2_devel-1.2~rc1-2 speex_x86_gcc2_devel-1.2~rc1-2
@@ -392,6 +410,7 @@ RemotePackageRepository HaikuPorts
aspell aspell
autoconf autoconf
automake automake
automake113
bash bash
beam beam
bepdf bepdf
@@ -412,12 +431,15 @@ RemotePackageRepository HaikuPorts
curl curl
cvs cvs
cvsps cvsps
cython
dbus dbus
diffutils diffutils
dos2unix dos2unix
doxygen doxygen
dtc dtc
expat expat
fife
fifechan
file file
findutils findutils
ffmpeg ffmpeg
@@ -427,6 +449,7 @@ RemotePackageRepository HaikuPorts
freetype freetype
gawk gawk
gcc gcc
gcc5
gcc_x86_gcc2 gcc_x86_gcc2
gettext gettext
giflib giflib
@@ -449,7 +472,7 @@ RemotePackageRepository HaikuPorts
jam jam
jasper jasper
jpeg jpeg
haikuwebkit # haikuwebkit
help2man help2man
keymapswitcher keymapswitcher
less less
@@ -472,6 +495,7 @@ RemotePackageRepository HaikuPorts
libpng16 libpng16
libsanta libsanta
libsdl libsdl
libsndfile
libssh2 libssh2
libsolv libsolv
libtheora libtheora
@@ -501,6 +525,7 @@ RemotePackageRepository HaikuPorts
ncurses6 ncurses6
neon neon
netcat netcat
openal
openssh openssh
openssl openssl
p7zip p7zip
@@ -510,11 +535,14 @@ RemotePackageRepository HaikuPorts
pixman pixman
pkgconfig pkgconfig
pkgconfig_x86_gcc2 pkgconfig_x86_gcc2
pyenet
python python
python_mako python_mako
python_setuptools python_setuptools
python_twisted python_twisted
python_zope.interface python_zope.interface
python3
pyyaml
qca2 qca2
qemu qemu
qrencode qrencode
@@ -528,6 +556,7 @@ RemotePackageRepository HaikuPorts
sdl_sound sdl_sound
sdl_ttf sdl_ttf
sed sed
serf
sharutils sharutils
smpeg smpeg
speex speex
@@ -541,6 +570,7 @@ RemotePackageRepository HaikuPorts
tiff4 tiff4
tinyxml tinyxml
transmission transmission
unknown_horizons
unrar unrar
unzip unzip
vim vim
+128 -89
View File
@@ -4,7 +4,7 @@ RemotePackageRepository HaikuPorts
: :
# architecture "any" packages # architecture "any" packages
be_book-2008_10_26-1 be_book-2008_10_26-1
ca_root_certificates-2014_08_13-1 ca_root_certificates-2015_10_28-1
caladea-20130214-3 caladea-20130214-3
carlito-20130920-1 carlito-20130920-1
dejavu-2.34-2 dejavu-2.34-2
@@ -13,7 +13,9 @@ RemotePackageRepository HaikuPorts
droid-113-2 droid-113-2
texi2html-1.82-2 texi2html-1.82-2
timgmsoundfont-fixed-5 timgmsoundfont-fixed-5
unknown_horizons-2014.1-1
vl_gothic-20141206-1 vl_gothic-20141206-1
youtube_dl-2015.06.15-1
wqy_microhei-0.2.0~beta-3 wqy_microhei-0.2.0~beta-3
: :
# repository architecture packages # repository architecture packages
@@ -24,11 +26,12 @@ RemotePackageRepository HaikuPorts
apr_devel-1.5.2-1 apr_devel-1.5.2-1
apr_util-1.5.4-1 apr_util-1.5.4-1
apr_util_devel-1.5.4-1 apr_util_devel-1.5.4-1
aspell-0.60.6.1-1 aspell-0.60.6.1-2
aspell_devel-0.60.6.1-1 aspell_devel-0.60.6.1-2
autoconf-2.69-6 autoconf-2.69-6
automake-1.13.1-4 automake-1.15.0-1
bash-4.3.42-1 automake113-1.13.1-1
bash-4.3.42-2
# bepdf-1.1.1~beta5_2013_04_28-1 # bepdf-1.1.1~beta5_2013_04_28-1
binutils-2.25_12015_07_31-1 binutils-2.25_12015_07_31-1
bison-2.6.5-1 bison-2.6.5-1
@@ -59,21 +62,22 @@ RemotePackageRepository HaikuPorts
buildbot_slave-0.8.8-2 buildbot_slave-0.8.8-2
bzip2-1.0.6-5 bzip2-1.0.6-5
bzip2_devel-1.0.6-5 bzip2_devel-1.0.6-5
cdrtools-3.01~a29-1 cdrtools-3.02~a04-1
cdrtools_devel-3.01~a29-1 cdrtools_devel-3.02~a04-1
clang-3.5.1-1 clang-3.5.1-1
clang_analysis-3.5.1-1 clang_analysis-3.5.1-1
clipdinger-0.4-1 clipdinger-0.4-1
cmake-3.3.2-1 cmake-3.3.2-3
coreutils-8.24-1 coreutils-8.24-1
cpio-2.12-1 cpio-2.12-1
cppunit-1.12.1-2 cppunit-1.12.1-2
cppunit_devel-1.12.1-2 cppunit_devel-1.12.1-2
ctags-5.8-3 ctags-5.8-3
curl-7.45.0-1 curl-7.45.0-2
curl_devel-7.45.0-1 curl_devel-7.45.0-2
cvs-1.12.13.1-7 cvs-1.12.13.1-7
cvsps-2.2b1-1 cvsps-2.2b1-1
cython-0.23.4-1
dbus-1.8.6-1 dbus-1.8.6-1
dbus_devel-1.8.6-1 dbus_devel-1.8.6-1
diffutils-3.3-2 diffutils-3.3-2
@@ -84,47 +88,51 @@ RemotePackageRepository HaikuPorts
enca_devel-1.15-1 enca_devel-1.15-1
expat-2.1.0-1 expat-2.1.0-1
expat_devel-2.1.0-1 expat_devel-2.1.0-1
fife-0.4.0~20150801-1
fifechan-0.1.2-2
fifechan_devel-0.1.2-2
file-5.25-1 file-5.25-1
file_devel-5.25-1 file_devel-5.25-1
findutils-4.4.2-1 findutils-4.4.2-1
ffmpeg-0.11.5-2 ffmpeg-2.8.3-1
ffmpeg_devel-0.11.5-2 ffmpeg_devel-2.8.3-1
ffmpeg26-2.6.3-1 flac-1.3.1-1
ffmpeg26_devel-2.6.3-1 flac_devel-1.3.1-1
flac-1.3.0-3
flac_devel-1.3.0-3
flex-2.5.39-1 flex-2.5.39-1
fontconfig-2.11.94-1 fontconfig-2.11.94-1
fontconfig_devel-2.11.94-1 fontconfig_devel-2.11.94-1
fossil-1.33-1 fossil-1.34-2
freeciv-2.5.1-1 freeciv-2.5.1-2
freetype-2.6.1-1 freetype-2.6.2-1
freetype_devel-2.6.1-1 freetype_devel-2.6.2-1
fribidi-0.19.6-2 fribidi-0.19.6-2
fribidi_devel-0.19.6-2 fribidi_devel-0.19.6-2
gawk-4.1.0-2 gawk-4.1.0-2
gcc-4.8.5_2015_07_11-1 gcc-4.8.5_2015_07_11-1
gcc_syslibs-4.8.5_2015_07_11-1 gcc_syslibs-4.8.5_2015_07_11-1
gcc_syslibs_devel-4.8.5_2015_07_11-1 gcc_syslibs_devel-4.8.5_2015_07_11-1
gettext-0.19.6-1 gcc5-5.3.0_2015_07_27-1
gettext_libintl-0.19.6-1 gcc5_syslibs-5.3.0_2015_07_27-1
gcc5_syslibs_devel-5.3.0_2015_07_27-1
gettext-0.19.6-2
gettext_libintl-0.19.6-2
giflib-5.1.0-1 giflib-5.1.0-1
giflib_devel-5.1.0-1 giflib_devel-5.1.0-1
git-2.2.2-1 git-2.2.2-2
git_arch-2.2.2-1 git_arch-2.2.2-2
git_cvs-2.2.2-1 git_cvs-2.2.2-2
git_daemon-2.2.2-1 git_daemon-2.2.2-2
git_email-2.2.2-1 git_email-2.2.2-2
git_svn-2.2.2-1 git_svn-2.2.2-2
glew-1.13.0-1 glew-1.13.0-1
glew_devel-1.13.0-1 glew_devel-1.13.0-1
glew_util-1.13.0-1 glew_util-1.13.0-1
glib2-2.38.1-6 glib2-2.46.2-1
glib2_devel-2.38.1-6 glib2_devel-2.46.2-1
glu-9.0.0-3 glu-9.0.0-3
glu_devel-9.0.0-3 glu_devel-9.0.0-3
gmp-6.0.0-1 gmp-6.1.0-1
gmp_devel-6.0.0-1 gmp_devel-6.1.0-1
gnupg-1.4.16-1 gnupg-1.4.16-1
gperf-3.0.4-1 gperf-3.0.4-1
gpgme-1.5.4-1 gpgme-1.5.4-1
@@ -138,15 +146,15 @@ RemotePackageRepository HaikuPorts
gutenprint-5.2.10-1 gutenprint-5.2.10-1
gutenprint_devel-5.2.10-1 gutenprint_devel-5.2.10-1
gzip-1.6-2 gzip-1.6-2
haikuwebkit-1.4.12-1 haikuwebkit-1.5.1-1
haikuwebkit_devel-1.4.12-1 haikuwebkit_devel-1.5.1-1
handbrake-0.10.1-1 handbrake-0.10.1-1
harfbuzz-1.0.5-1 harfbuzz-1.1.1-1
harfbuzz_devel-1.0.5-1 harfbuzz_devel-1.1.1-1
help2man-1.46.6-1 help2man-1.46.6-1
htmldoc-1.8.27-3 htmldoc-1.8.27-3
icu-55.1-5 icu-55.1-6
icu_devel-55.1-5 icu_devel-55.1-6
icu54-54.1-2 icu54-54.1-2
icu54_devel-54.1-2 icu54_devel-54.1-2
intltool-0.40.6-4 intltool-0.40.6-4
@@ -159,31 +167,37 @@ RemotePackageRepository HaikuPorts
jpeg_devel-9a-1 jpeg_devel-9a-1
jpeg_tools-9a-1 jpeg_tools-9a-1
keymapswitcher-1.2.7.11-1 keymapswitcher-1.2.7.11-1
lame-3.99.5-5 lame-3.99.5-6
lame_devel-3.99.5-5 lame_devel-3.99.5-6
lcms-2.7-1 lcms-2.7-1
lcms_devel-2.7-1 lcms_devel-2.7-1
less-458-1 lensfun-0.3.2-1
libasr-1.0.2-1 lensfun_devel-0.3.2-1
libasr_devel-1.0.2-1 less-458-2
libaacs-0.8.1-1
libaacs_devel-0.8.1-1
libasr-1.0.2-2
libasr_devel-1.0.2-2
libass-0.13.0-1 libass-0.13.0-1
libass_devel-0.13.0-1 libass_devel-0.13.0-1
libassuan-2.2.0-1 libassuan-2.2.0-1
libassuan_devel-2.2.0-1 libassuan_devel-2.2.0-1
libbluray-0.8.1-1 libbluray-0.9.2-1
libbluray_devel-0.8.1-1 libbluray_devel-0.9.2-1
libdvdread-5.0.3-2 libdvdread-5.0.3-2
libdvdread_devel-5.0.3-2 libdvdread_devel-5.0.3-2
libdvdnav-5.0.3-3 libdvdnav-5.0.3-3
libdvdnav_devel-5.0.3-3 libdvdnav_devel-5.0.3-3
libedit-2015_03_21_3.1-2 libedit-2015_03_21_3.1-3
libedit_devel-2015_03_21_3.1-2 libedit_devel-2015_03_21_3.1-3
libevent-2.0.21-7 libevent-2.0.21-8
libevent_devel-2.0.21-7 libevent_devel-2.0.21-8
libexecinfo-1.1-2 libexecinfo-1.1-2
libexecinfo_devel-1.1-2 libexecinfo_devel-1.1-2
libffi-3.2.1-2 libffi-3.2.1-2
libffi_devel-3.2.1-2 libffi_devel-3.2.1-2
libgcrypt-1.6.4-1
libgcrypt_devel-1.6.4-1
libgsasl-1.8.0-1 libgsasl-1.8.0-1
libgsasl_devel-1.8.0-1 libgsasl_devel-1.8.0-1
libgpg_error-1.20-1 libgpg_error-1.20-1
@@ -192,6 +206,8 @@ RemotePackageRepository HaikuPorts
libicns_devel-0.8.1-3 libicns_devel-0.8.1-3
libiconv-1.13.1-6 libiconv-1.13.1-6
libiconv_devel-1.13.1-6 libiconv_devel-1.13.1-6
libidl-0.8.14-1
libidl_devel-0.8.14-1
libidn-1.32-1 libidn-1.32-1
libidn_devel-1.32-1 libidn_devel-1.32-1
libmad-0.15.1b-2 libmad-0.15.1b-2
@@ -211,26 +227,26 @@ RemotePackageRepository HaikuPorts
libpcap-1.7.4-1 libpcap-1.7.4-1
libpcap_devel-1.7.4-1 libpcap_devel-1.7.4-1
libpcre0-8.21-6 libpcre0-8.21-6
libpcre-8.37-1 libpcre-8.38-1
libpcre_devel-8.37-1 libpcre_devel-8.38-1
libpng-1.5.22-1 libpng-1.5.25-1
libpng_devel-1.5.22-1 libpng_devel-1.5.25-1
libpng16-1.6.18-1 libpng16-1.6.20-1
libpng16_devel-1.6.18-1 libpng16_devel-1.6.20-1
libqt4-4.8.7-2 libqt4-4.8.7-4
libqt4_devel-4.8.7-2 libqt4_devel-4.8.7-4
librevenge-0.0.1-1 librevenge-0.0.1-1
librevenge_devel-0.0.1-1 librevenge_devel-0.0.1-1
libsamplerate-0.1.8-2 libsamplerate-0.1.8-2
libsamplerate_devel-0.1.8-2 libsamplerate_devel-0.1.8-2
libsndfile-1.0.25-3 libsndfile-1.0.26-1
libsndfile_devel-1.0.25-3 libsndfile_devel-1.0.26-1
libsdl-1.2.15-6 libsdl-1.2.15-9
libsdl_devel-1.2.15-6 libsdl_devel-1.2.15-9
libsdl2-2.0.3-1 libsdl2-2.0.3-1
libsdl2_devel-2.0.3-1 libsdl2_devel-2.0.3-1
libssh2-1.5.0-1 libssh2-1.5.0-2
libssh2_devel-1.5.0-1 libssh2_devel-1.5.0-2
libsolv-0.3.0_haiku_2014_12_22-1 libsolv-0.3.0_haiku_2014_12_22-1
libsolv_devel-0.3.0_haiku_2014_12_22-1 libsolv_devel-0.3.0_haiku_2014_12_22-1
libtasn1-4.7-1 libtasn1-4.7-1
@@ -251,9 +267,9 @@ RemotePackageRepository HaikuPorts
libvpx_devel-1.0.0-2 libvpx_devel-1.0.0-2
libwebp-0.4.1-2 libwebp-0.4.1-2
libwebp_devel-0.4.1-2 libwebp_devel-0.4.1-2
libxml2-2.9.2-2 libxml2-2.9.3-1
libxml2_devel-2.9.2-2 libxml2_devel-2.9.3-1
libxml2_python-2.9.2-2 libxml2_python-2.9.3-1
libxslt-1.1.28-2 libxslt-1.1.28-2
libxslt_devel-1.1.28-2 libxslt_devel-1.1.28-2
llvm-3.5.2-1 llvm-3.5.2-1
@@ -278,14 +294,14 @@ RemotePackageRepository HaikuPorts
mpfr_devel-3.1.3-1 mpfr_devel-3.1.3-1
mpg123-1.22.4-1 mpg123-1.22.4-1
mpg123_devel-1.22.4-1 mpg123_devel-1.22.4-1
nano-2.4.2-1 nano-2.4.2-2
nasm-2.11.08-1 nasm-2.11.08-1
ncurses-5.9-10 ncurses-5.9-10
ncurses_devel-5.9-10 ncurses_devel-5.9-10
ncurses6-6.0-1 ncurses6-6.0-1
ncurses6_devel-6.0-1 ncurses6_devel-6.0-1
neon-0.29.6-7 neon-0.30.1-2
neon_devel-0.29.6-7 neon_devel-0.30.1-2
netcat-1.10-1 netcat-1.10-1
netpulse-0.2.3-5 netpulse-0.2.3-5
ninja-1.5.1-2 ninja-1.5.1-2
@@ -293,31 +309,38 @@ RemotePackageRepository HaikuPorts
nspr_devel-4.10.9-1 nspr_devel-4.10.9-1
nss-3.20-1 nss-3.20-1
nss_devel-3.20-1 nss_devel-3.20-1
openssh-7.1p1-1 openal-1.13.0-2
openssl-1.0.0s-2 openal_devel-1.13.0-2
openssl_devel-1.0.0s-2 openssh-7.1p1-3
openssl-1.0.2e-1
openssl_devel-1.0.2e-1
p7zip-9.20.1-5 p7zip-9.20.1-5
patch-2.7.5-1 patch-2.7.5-1
pe-2.4.5-2 pe-2.4.5-2
perl-5.18.2-2 perl-5.18.2-2
pixman-0.32.6-1 pixman-0.32.6-1
pixman_devel-0.32.6-1 pixman_devel-0.32.6-1
pkgconfig-0.27.1-2 pkgconfig-0.29-1
python-2.7.10-1 pyenet-20141025-1
python-2.7.11-1
python_setuptools-5.3-2
python_twisted-13.2.0-1 python_twisted-13.2.0-1
python_zope.interface-4.1.1-2 python_zope.interface-4.1.1-2
python3-3.5.1-1
pyyaml-3.11-1
qca2-2.0.3-1 qca2-2.0.3-1
qca2_devel-2.0.3-1 qca2_devel-2.0.3-1
qemu-2.1.2-2 qemu-2.1.2-2
qrencode-3.4.4-1 qrencode-3.4.4-1
qrencode_devel-3.4.4-1 qrencode_devel-3.4.4-1
qsystray-0.1-3
quicklaunch-0.9.12-1 quicklaunch-0.9.12-1
qupzilla-1.8.6-1 qupzilla-1.8.6-1
qutim-0.3.3-1 qutim-0.3.3-1
readline-6.3.8-1 readline-6.3.8-2
readline_devel-6.3.8-1 readline_devel-6.3.8-2
ruby-2.2.2-1 ruby-2.2.2-3
ruby_devel-2.2.2-1 ruby_devel-2.2.2-3
scons-2.3.1-4 scons-2.3.1-4
sdl_gfx-2.0.25-2 sdl_gfx-2.0.25-2
sdl_gfx_devel-2.0.25-2 sdl_gfx_devel-2.0.25-2
@@ -328,8 +351,8 @@ RemotePackageRepository HaikuPorts
sdl_ttf-2.0.11-2 sdl_ttf-2.0.11-2
sdl_ttf_devel-2.0.11-2 sdl_ttf_devel-2.0.11-2
sed-4.2.1-6 sed-4.2.1-6
serf-1.3.7-1 serf-1.3.8-1
serf_devel-1.3.7-1 serf_devel-1.3.8-1
sharutils-4.15.2-1 sharutils-4.15.2-1
smpeg-0.4.5-4 smpeg-0.4.5-4
smpeg_devel-0.4.5-4 smpeg_devel-0.4.5-4
@@ -339,12 +362,12 @@ RemotePackageRepository HaikuPorts
speex_devel-1.2~rc1-2 speex_devel-1.2~rc1-2
sqlite-3.9.0.0-1 sqlite-3.9.0.0-1
sqlite_devel-3.9.0.0-1 sqlite_devel-3.9.0.0-1
subversion-1.8.11-1 subversion-1.8.11-6
subversion_devel-1.8.11-1 subversion_devel-1.8.11-6
tar-1.28-1 tar-1.28-1
tar_debuginfo-1.28-1 tar_debuginfo-1.28-1
tcpdump-4.7.4-2 tcpdump-4.7.4-2
texinfo-4.13a-7 texinfo-4.13a-8
tiff-3.9.6-2 tiff-3.9.6-2
tiff_devel-3.9.6-2 tiff_devel-3.9.6-2
tiff_tools-3.9.6-2 tiff_tools-3.9.6-2
@@ -353,14 +376,15 @@ RemotePackageRepository HaikuPorts
tiff4_tools-4.0.6-1 tiff4_tools-4.0.6-1
tinyxml-2.6.2-1 tinyxml-2.6.2-1
tinyxml_devel-2.6.2-1 tinyxml_devel-2.6.2-1
transmission-2.84-3 transmission-2.84-4
ubertuber-0.9.11-1
unrar-5.3.4-1 unrar-5.3.4-1
unzip-6.0-2 unzip-6.0-2
vim-7.4-2 vim-7.4-3
vision-0.9.7.r949-3 vision-0.9.7.r949-3
wget-1.16.3-1 wget-1.17.1-1
which-2.21-1 which-2.21-1
wpa_supplicant-2.0-3 wpa_supplicant-2.0-4
xml_parser-2.36-1 xml_parser-2.36-1
x264-20140308-1 x264-20140308-1
x264_devel-20140308-1 x264_devel-20140308-1
@@ -379,6 +403,7 @@ RemotePackageRepository HaikuPorts
aspell aspell
autoconf autoconf
automake automake
automake113
bash bash
# bepdf # bepdf
binutils binutils
@@ -395,6 +420,7 @@ RemotePackageRepository HaikuPorts
curl curl
cvs cvs
cvsps cvsps
cython
dbus dbus
diffutils diffutils
dos2unix dos2unix
@@ -402,10 +428,11 @@ RemotePackageRepository HaikuPorts
dtc dtc
enca enca
expat expat
fife
fifechan
file file
findutils findutils
ffmpeg ffmpeg
ffmpeg26
flac flac
flex flex
fontconfig fontconfig
@@ -415,6 +442,7 @@ RemotePackageRepository HaikuPorts
fribidi fribidi
gawk gawk
gcc gcc
gcc5
gettext gettext
giflib giflib
git git
@@ -431,7 +459,7 @@ RemotePackageRepository HaikuPorts
gtk_doc gtk_doc
gutenprint gutenprint
gzip gzip
haikuwebkit # haikuwebkit
handbrake handbrake
harfbuzz harfbuzz
htmldoc htmldoc
@@ -446,7 +474,9 @@ RemotePackageRepository HaikuPorts
keymapswitcher keymapswitcher
lame lame
lcms lcms
lensfun
less less
libaacs
libasr libasr
libass libass
libassuan libassuan
@@ -457,10 +487,12 @@ RemotePackageRepository HaikuPorts
libevent libevent
libexecinfo libexecinfo
libffi libffi
libgcrypt
libgsasl libgsasl
libgpg_error libgpg_error
libicns libicns
libiconv libiconv
libidl
libidn libidn
libmad libmad
libmikmod libmikmod
@@ -515,6 +547,7 @@ RemotePackageRepository HaikuPorts
ninja ninja
nspr nspr
nss nss
openal
openssh openssh
openssl openssl
p7zip p7zip
@@ -523,9 +556,13 @@ RemotePackageRepository HaikuPorts
perl perl
pixman pixman
pkgconfig pkgconfig
pyenet
python python
python_setuptools
python_twisted python_twisted
python_zope.interface python_zope.interface
python3
pyyaml
qca2 qca2
qemu qemu
qrencode qrencode
@@ -553,6 +590,7 @@ RemotePackageRepository HaikuPorts
tiff4 tiff4
tinyxml tinyxml
transmission transmission
ubertuber
unrar unrar
unzip unzip
vim vim
@@ -564,6 +602,7 @@ RemotePackageRepository HaikuPorts
xml_parser xml_parser
x264 x264
xz_utils xz_utils
youtube_dl
zip zip
zlib zlib
: :
+147 -97
View File
@@ -5,9 +5,10 @@ RemotePackageRepository HaikuPorts
# architecture "any" packages # architecture "any" packages
avr_libc_x86-1.8.0-2 avr_libc_x86-1.8.0-2
be_book-2008_10_26-1 be_book-2008_10_26-1
ca_root_certificates-2014_08_13-1 ca_root_certificates-2015_10_28-1
caladea-20130214-3 caladea-20130214-3
carlito-20130920-1 carlito-20130920-1
colormake-0.9.20140503-1
dejavu-2.34-2 dejavu-2.34-2
docbook_xml_dtd-4.5-2 docbook_xml_dtd-4.5-2
docbook_xsl_stylesheets-1.78.1-1 docbook_xsl_stylesheets-1.78.1-1
@@ -16,7 +17,7 @@ RemotePackageRepository HaikuPorts
freedroidrpg_x86_data-0.15.1-1 freedroidrpg_x86_data-0.15.1-1
gws-0.1.8-1 gws-0.1.8-1
haikuporter-1.0.0-1 haikuporter-1.0.0-1
hub-1.12.4-1 hub-1.12.4-2
openttd_gfx-0.4.7-1 openttd_gfx-0.4.7-1
openttd_msx-0.3.1-1 openttd_msx-0.3.1-1
openttd_sfx-0.2.3-1 openttd_sfx-0.2.3-1
@@ -33,21 +34,21 @@ RemotePackageRepository HaikuPorts
a52dec-0.7.4-2 a52dec-0.7.4-2
a52dec_devel-0.7.4-2 a52dec_devel-0.7.4-2
acr-0.9.9_git-1 acr-0.9.9_git-1
album-0.9.4-1 album-0.9.4-2
ale-0.9.1-2 ale-0.9.1-2
app2png-1.0.0-1 app2png-1.0.0-1
apr-1.5.2-1 apr-1.5.2-1
apr_devel-1.5.2-1 apr_devel-1.5.2-1
apr_util-1.5.3-1 apr_util-1.5.4-1
apr_util_devel-1.5.3-1 apr_util_devel-1.5.4-1
armyknife-4.3.0-3 armyknife-4.3.0-3
asciidoc-8.6.8-2 asciidoc-8.6.8-2
autoconf-2.69-5 autoconf-2.69-5
automake-1.13.1-4 automake-1.15.0-1
avra-1.3.0-1 avra-1.3.0-1
bash-4.3.42-1 bash-4.3.42-1
beae-1.2-3 beae-1.2-3
beam-1.2-1 beam-1.2-2
becjk-1.0.1-1 becjk-1.0.1-1
beezer-0.99.hg-4 beezer-0.99.hg-4
befar-4.2_beta-3 befar-4.2_beta-3
@@ -55,7 +56,9 @@ RemotePackageRepository HaikuPorts
bemines-1.0b2-1 bemines-1.0b2-1
bepdf-1.2.0-1 bepdf-1.2.0-1
bepodder-1.3.0-2 bepodder-1.3.0-2
bescreencapture-1.9.4-1 bescreencapture-2.0-2
bescreencapture_inputfilter-2.0-2
bevexed-20141224-2
bezilla-2.0.0.22-1 bezilla-2.0.0.22-1
binutils-2.17_2013_04_21-2 binutils-2.17_2013_04_21-2
bison-2.4.3-6 bison-2.4.3-6
@@ -69,20 +72,20 @@ RemotePackageRepository HaikuPorts
canna-1.0.1-1 canna-1.0.1-1
capitalbe-1.0-2 capitalbe-1.0-2
catkeyseditor-0.1.1-1 catkeyseditor-0.1.1-1
caya-2013.10.12-2 caya-0.0.3-3
ccache-3.1.9-1 ccache-3.1.9-1
cdrtools-3.01~a30-1 cdrtools-3.02~a04-1
cdrtools_devel-3.01~a30-1 cdrtools_devel-3.02~a04-1
chat-20100903-2 chat-20100903-2
clipdinger-0.4-2 clipdinger-0.4-2
clockwerk-git-3 clockwerk-git-3
cpctools-0.3.0-2 cpctools-0.3.0-2
criticalmass-2.2-1 criticalmass-2.2-1
ctags-5.8-3 ctags-5.8-3
colors-2.3-1 colors-2.3-2
coreutils-8.24-1 coreutils-8.24-1
curl-7.44.0-1 curl-7.45.0-2
curl_devel-7.44.0-1 curl_devel-7.45.0-2
cvs-1.12.13.1-6 cvs-1.12.13.1-6
d52-3.4.1-1 d52-3.4.1-1
desknotes-1.1-4 desknotes-1.1-4
@@ -109,7 +112,7 @@ RemotePackageRepository HaikuPorts
faad2-2.7-1 faad2-2.7-1
faad2_devel-2.7-1 faad2_devel-2.7-1
fasm-1.71.39-1 fasm-1.71.39-1
f1spirit-0.rc9.1615-1 f1spirit-0.rc9.1615-2
file-5.15-1 file-5.15-1
file_devel-5.15-1 file_devel-5.15-1
filwip-1.0.0-5 filwip-1.0.0-5
@@ -126,7 +129,7 @@ RemotePackageRepository HaikuPorts
fontboy-0.9.7-3 fontboy-0.9.7-3
fontconfig-2.11.1-3 fontconfig-2.11.1-3
fontconfig_devel-2.11.1-3 fontconfig_devel-2.11.1-3
fossil-1.33-1 fossil-1.34-2
freetype-2.6-1 freetype-2.6-1
freetype_devel-2.6-1 freetype_devel-2.6-1
fribidi-0.19.6-2 fribidi-0.19.6-2
@@ -145,12 +148,12 @@ RemotePackageRepository HaikuPorts
giddy3-1.4-1 giddy3-1.4-1
giflib-5.0.5-2 giflib-5.0.5-2
giflib_devel-5.0.5-2 giflib_devel-5.0.5-2
git-2.2.2-1 git-2.2.2-2
git_arch-2.2.2-1 git_arch-2.2.2-2
git_cvs-2.2.2-1 git_cvs-2.2.2-2
git_daemon-2.2.2-1 git_daemon-2.2.2-2
git_email-2.2.2-1 git_email-2.2.2-2
git_svn-2.2.2-1 git_svn-2.2.2-2
glew-1.11.0-1 glew-1.11.0-1
glew_devel-1.11.0-1 glew_devel-1.11.0-1
glew_util-1.11.0-1 glew_util-1.11.0-1
@@ -176,6 +179,7 @@ RemotePackageRepository HaikuPorts
gutenprint_devel-5.2.10-1 gutenprint_devel-5.2.10-1
gyp-r1948-2 gyp-r1948-2
gzip-1.6-2 gzip-1.6-2
hdialog-0.2-2
help2man-1.46.6-1 help2man-1.46.6-1
htmldoc-1.8.27-3 htmldoc-1.8.27-3
html_parser-3.71-1 html_parser-3.71-1
@@ -187,7 +191,7 @@ RemotePackageRepository HaikuPorts
imagemagick_devel-6.8.9_8-1 imagemagick_devel-6.8.9_8-1
intltool-0.40.6-4 intltool-0.40.6-4
itstool-2.0.2-1 itstool-2.0.2-1
jabber4haiku-1.2.1-1 jabber4haiku-1.2.1-2
jam-2.5_2012_10_12-2 jam-2.5_2012_10_12-2
jasper-1.900.1-4 jasper-1.900.1-4
jasper_devel-1.900.1-4 jasper_devel-1.900.1-4
@@ -200,7 +204,7 @@ RemotePackageRepository HaikuPorts
keymapswitcher-1.2.7.11-1 keymapswitcher-1.2.7.11-1
lame-3.99.5-3 lame-3.99.5-3
lame_devel-3.99.5-3 lame_devel-3.99.5-3
lbreakout2-2.6.4-1 lbreakout2-2.6.4-2
lcms-2.5-1 lcms-2.5-1
lcms_devel-2.5-1 lcms_devel-2.5-1
less-451-4 less-451-4
@@ -238,8 +242,8 @@ RemotePackageRepository HaikuPorts
libffi_devel-3.0.13-2 libffi_devel-3.0.13-2
libgcrypt-1.6.3-1 libgcrypt-1.6.3-1
libgcrypt_devel-1.6.3-1 libgcrypt_devel-1.6.3-1
libgpg_error-1.15-1 libgpg_error-1.21-1
libgpg_error_devel-1.15-1 libgpg_error_devel-1.21-1
libicns-0.8.1-3 libicns-0.8.1-3
libicns_devel-0.8.1-3 libicns_devel-0.8.1-3
libiconv-1.13.1-6 libiconv-1.13.1-6
@@ -270,17 +274,17 @@ RemotePackageRepository HaikuPorts
libpcap_devel-1.7.4-1 libpcap_devel-1.7.4-1
libpcre-8.21-5 libpcre-8.21-5
libpcre_devel-8.21-5 libpcre_devel-8.21-5
libpng-1.5.22-1 libpng-1.5.25-1
libpng_devel-1.5.22-1 libpng_devel-1.5.25-1
libpng16-1.6.18-1 libpng16-1.6.20-1
libpng16_devel-1.6.18-1 libpng16_devel-1.6.20-1
libpthread_stubs-0.3-2 libpthread_stubs-0.3-2
libreplaygain-r475-1 libreplaygain-r475-1
libreplaygain_devel-r475-1 libreplaygain_devel-r475-1
libsanta-3.0.0-3 libsanta-3.0.0-3
libsanta_devel-3.0.0-3 libsanta_devel-3.0.0-3
libsdl-1.2.15-6 libsdl-1.2.15-9
libsdl_devel-1.2.15-6 libsdl_devel-1.2.15-9
libsdl2-2.0.3-2 libsdl2-2.0.3-2
libsdl2_devel-2.0.3-2 libsdl2_devel-2.0.3-2
libsigc++-1.2.7-1 libsigc++-1.2.7-1
@@ -295,14 +299,16 @@ RemotePackageRepository HaikuPorts
libtheora_devel-1.1.1-2 libtheora_devel-1.1.1-2
libtool-2.4.2-1 libtool-2.4.2-1
libtool_libltdl-2.4.2-1 libtool_libltdl-2.4.2-1
libusb-1.0.19-2
libusb_devel-1.0.19-2
libusb_compat-0.1.5-2
libusb_compat_devel-0.1.5-2
libuuid-1.0.3-2
libuuid_devel-1.0.3-2
libunistring-0.9.6-1 libunistring-0.9.6-1
libunistring_devel-0.9.6-1 libunistring_devel-0.9.6-1
libusb-1.0.20-2
libusb_devel-1.0.20-2
libusb_compat-0.1.5-2
libusb_compat_devel-0.1.5-2
libutf8proc-1.1.6-1
libutf8proc_devel-1.1.6-1
libuuid-1.0.3-2
libuuid_devel-1.0.3-2
libvorbis-1.3.5-1 libvorbis-1.3.5-1
libvorbis_devel-1.3.5-1 libvorbis_devel-1.3.5-1
libvpx-1.0.0-2 libvpx-1.0.0-2
@@ -318,11 +324,11 @@ RemotePackageRepository HaikuPorts
libxslt_devel-1.1.28-5 libxslt_devel-1.1.28-5
libzip-0.11.2-1 libzip-0.11.2-1
libzip_devel-0.11.2-1 libzip_devel-0.11.2-1
lighttpd-1.4.35-2 lighttpd-1.4.35-3
lighttpd_devel-1.4.35-2 lighttpd_devel-1.4.35-3
links-2.8-1 links-2.8-1
lmarbles-1.0.8-2 lmarbles-1.0.8-2
lnlauncher-1.1.2-4 lnlauncher-1.1.2-5
ltris-1.0.19-1 ltris-1.0.19-1
lua-5.2.1-6 lua-5.2.1-6
lua_devel-5.2.1-6 lua_devel-5.2.1-6
@@ -335,7 +341,7 @@ RemotePackageRepository HaikuPorts
mailnews-2.0.0.25-1 mailnews-2.0.0.25-1
make-3.82-5 make-3.82-5
man-1.6g-4 man-1.6g-4
mc-4.8.13-1 mc-4.8.15-1
mda_vst-20100214-1 mda_vst-20100214-1
mercurial-2.9.2-1 mercurial-2.9.2-1
mesa-7.9.2-10 mesa-7.9.2-10
@@ -368,17 +374,21 @@ RemotePackageRepository HaikuPorts
neon_devel-0.29.6-6 neon_devel-0.29.6-6
netcat-1.10-1 netcat-1.10-1
netpulse-0.2.3-5 netpulse-0.2.3-5
netsurf-3.2-1 netsurf-3.3-2
ocaml-4.02.1-1 ocaml-4.02.1-1
openjpeg-2.1.0-2 openjpeg-2.1.0-2
openjpeg_devel-2.1.0-2 openjpeg_devel-2.1.0-2
opensound-4.2_git-2 opensound-4.2_git-2
openssh-6.9p1-1 openssh-7.1p1-1
# sync openssl with secondary architecture (x86) openssl-1.0.2e-1
openssl-1.0.0s-1 openssl_devel-1.0.2e-1
openssl_devel-1.0.0s-1 opus-1.1.1-1
opus_devel-1.1.1-1
opusfile-0.6-1
opusfile_devel-0.6-1
opus_tools-0.1.9-1
p7zip-9.20.1-4 p7zip-9.20.1-4
paladin-git-5 paladin-git-6
paragui-1.1.8-1 paragui-1.1.8-1
paragui_devel-1.1.8-1 paragui_devel-1.1.8-1
patch-2.7.5-1 patch-2.7.5-1
@@ -389,7 +399,7 @@ RemotePackageRepository HaikuPorts
pecorename-1.5-3 pecorename-1.5-3
perl-5.18.2-2 perl-5.18.2-2
photograbber-2.2-1 photograbber-2.2-1
php-5.6.4-3 php-5.6.4-4
physfs-2.0.3-2 physfs-2.0.3-2
physfs_devel-2.0.3-2 physfs_devel-2.0.3-2
pipepanic-0.1.3-3 pipepanic-0.1.3-3
@@ -402,8 +412,9 @@ RemotePackageRepository HaikuPorts
psiconv_devel-0.9.8-1 psiconv_devel-0.9.8-1
psqlodbc-09.03.0400-1 psqlodbc-09.03.0400-1
psqlodbc_devel-09.03.0400-1 psqlodbc_devel-09.03.0400-1
python-2.7.9-1 python-2.7.11-1
python_dateutil-1.5-2 python_dateutil-1.5-2
python_imaging-1.1.7-2
python_lxml-3.3.5-2 python_lxml-3.3.5-2
python_mechanize-0.2.5-2 python_mechanize-0.2.5-2
python_requests-2.3.0-2 python_requests-2.3.0-2
@@ -415,13 +426,16 @@ RemotePackageRepository HaikuPorts
qrencode_devel-3.3.0-1 qrencode_devel-3.3.0-1
# the non-devel package isn't useful # the non-devel package isn't useful
qrencode_kdl_devel-3.3.0-2 qrencode_kdl_devel-3.3.0-2
qsystray-0.1-3
quickres-20011026-2
rdesktop-1.8.0-2 rdesktop-1.8.0-2
readline-6.3.8-1 readline-6.3.8-1
readline_devel-6.3.8-1 readline_devel-6.3.8-1
roadfighter-1.0.1269-1 roadfighter-1.0.1269-1
rsync-3.1.0-1 rsync-3.1.0-1
ruby-1.9.1-2 sane_backends-1.0.25-1
ruby_devel-1.9.1-2 sane_backends_devel-1.0.25-1
sanity-0.5a-1
samba-3.6.25-1 samba-3.6.25-1
samba_devel-3.6.25-1 samba_devel-3.6.25-1
sawteeth-1.3-3 sawteeth-1.3-3
@@ -432,8 +446,8 @@ RemotePackageRepository HaikuPorts
sdl_image_devel-1.2.12-4 sdl_image_devel-1.2.12-4
sdl_mixer-1.2.12-3 sdl_mixer-1.2.12-3
sdl_mixer_devel-1.2.12-3 sdl_mixer_devel-1.2.12-3
sdl_net-1.2.8-4 sdl_net-1.2.8-5
sdl_net_devel-1.2.8-4 sdl_net_devel-1.2.8-5
sdl_sound-1.0.3-2 sdl_sound-1.0.3-2
sdl_sound_devel-1.0.3-2 sdl_sound_devel-1.0.3-2
sdl_ttf-2.0.11-1 sdl_ttf-2.0.11-1
@@ -444,10 +458,10 @@ RemotePackageRepository HaikuPorts
sdl2_ttf_devel-2.0.12-3 sdl2_ttf_devel-2.0.12-3
sdllopan-10-2 sdllopan-10-2
sed-4.2.1-6 sed-4.2.1-6
seeker-1.0-2 seeker-1.0-3
sequitur-2.1.2-3 sequitur-2.1.2-3
serf-1.3.7-1 serf-1.3.8-1
serf_devel-1.3.7-1 serf_devel-1.3.8-1
sge-030809-2 sge-030809-2
sge_devel-030809-2 sge_devel-030809-2
sharutils-4.14-1 sharutils-4.14-1
@@ -465,8 +479,8 @@ RemotePackageRepository HaikuPorts
sqlite_devel-3.8.11.1-1 sqlite_devel-3.8.11.1-1
srm-1.2.12-1 srm-1.2.12-1
substrate-1.0b-1 substrate-1.0b-1
subversion-1.8.11-1 subversion-1.8.11-6
subversion_devel-1.8.11-1 subversion_devel-1.8.11-6
sum_it-0.2beta-3 sum_it-0.2beta-3
super_transball-2.1.5-1 super_transball-2.1.5-1
taglib-1.7.2-1 taglib-1.7.2-1
@@ -477,6 +491,7 @@ RemotePackageRepository HaikuPorts
tcl_devel-8.5.18-1 tcl_devel-8.5.18-1
tcpdump-4.7.4-2 tcpdump-4.7.4-2
texinfo-4.13a-7 texinfo-4.13a-7
thememanager-1.0_git-3
tiff-3.9.6-2 tiff-3.9.6-2
tiff_devel-3.9.6-2 tiff_devel-3.9.6-2
tiff_tools-3.9.6-2 tiff_tools-3.9.6-2
@@ -495,18 +510,18 @@ RemotePackageRepository HaikuPorts
vcdimager-0.7.24-2 vcdimager-0.7.24-2
vcdimager_devel-0.7.24-2 vcdimager_devel-0.7.24-2
vim-7.4-3 vim-7.4-3
virtualbox_guest_additions-4.3.53_svn-1 virtualbox_guest_additions-4.3.53_svn-7
vision-0.9.7.r949-2 vision-0.9.7.r949-2
vlc-0.8.6i-1 vlc-0.8.6i-1
vlc_devel-0.8.6i-1 vlc_devel-0.8.6i-1
vlink-0.15-1 vlink-0.15-1
vmware_addons-1.1.1-3 vmware_addons-1.1.1-3
vncserver-1.26-1 vncserver-1.27-1
weather-0.1.1_git-1 weather-0.1.1_git-1
wget-1.16.3-1 wget-1.17.1-1
which-2.21-1 which-2.21-1
wonderbrush-2.1.2-4 wonderbrush-2.1.2-4
wpa_supplicant-2.0-3 wpa_supplicant-2.0-4
xcb_proto-1.6-2 xcb_proto-1.6-2
xmlto-0.0.26-1 xmlto-0.0.26-1
xml_parser-2.36-1 xml_parser-2.36-1
@@ -572,8 +587,8 @@ RemotePackageRepository HaikuPorts
confuse_x86-2.7-2 confuse_x86-2.7-2
confuse_x86_devel-2.7-2 confuse_x86_devel-2.7-2
copynametoclipboard-1.0.1-2 copynametoclipboard-1.0.1-2
curl_x86-7.44.0-1 curl_x86-7.45.0-2
curl_x86_devel-7.44.0-1 curl_x86_devel-7.45.0-2
cvsps_x86-2.2b1-1 cvsps_x86-2.2b1-1
dbus_x86-1.8.6-1 dbus_x86-1.8.6-1
dbus_x86_devel-1.8.6-1 dbus_x86_devel-1.8.6-1
@@ -583,7 +598,7 @@ RemotePackageRepository HaikuPorts
djvulibre_x86-3.5.25-1 djvulibre_x86-3.5.25-1
djvulibre_x86_devel-3.5.25-1 djvulibre_x86_devel-3.5.25-1
documentviewer_x86-0.3_git-7 documentviewer_x86-0.3_git-7
dosbox_x86-0.74-1 dosbox_x86-0.74-2
dtc_x86-1.4.1-1 dtc_x86-1.4.1-1
enca_x86-1.15-1 enca_x86-1.15-1
enca_x86_devel-1.15-1 enca_x86_devel-1.15-1
@@ -593,9 +608,9 @@ RemotePackageRepository HaikuPorts
faad2_x86_devel-2.7-1 faad2_x86_devel-2.7-1
file_x86-5.15-1 file_x86-5.15-1
file_x86_devel-5.15-1 file_x86_devel-5.15-1
fish_x86-1.23.1_git-1 fish_x86-2.2.0-2
ffmpeg_x86-0.11.5-2 ffmpeg_x86-2.8.1-1
ffmpeg_x86_devel-0.11.5-2 ffmpeg_x86_devel-2.8.1-1
fftw_x86-3.3.4-6 fftw_x86-3.3.4-6
fftw_x86_devel-3.3.4-6 fftw_x86_devel-3.3.4-6
flac_x86-1.3.0-1 flac_x86-1.3.0-1
@@ -613,6 +628,9 @@ RemotePackageRepository HaikuPorts
gcc_x86-4.8.5_2015_07_11-2 gcc_x86-4.8.5_2015_07_11-2
gcc_x86_syslibs-4.8.5_2015_07_11-2 gcc_x86_syslibs-4.8.5_2015_07_11-2
gcc_x86_syslibs_devel-4.8.5_2015_07_11-2 gcc_x86_syslibs_devel-4.8.5_2015_07_11-2
gcc5_x86-5.3.0_2015_07_27-1
gcc5_x86_syslibs-5.3.0_2015_07_27-1
gcc5_x86_syslibs_devel-5.3.0_2015_07_27-1
gcc6809_x86-4.6.1-2 gcc6809_x86-4.6.1-2
gdk_pixbuf_x86-2.31.5-1 gdk_pixbuf_x86-2.31.5-1
gdk_pixbuf_x86_devel-2.31.5-1 gdk_pixbuf_x86_devel-2.31.5-1
@@ -627,18 +645,19 @@ RemotePackageRepository HaikuPorts
glib2_x86_devel-2.38.1-4 glib2_x86_devel-2.38.1-4
glu_x86-9.0.0-4 glu_x86-9.0.0-4
glu_x86_devel-9.0.0-4 glu_x86_devel-9.0.0-4
gmp_x86-6.0.0-1 gmp_x86-6.1.0-1
gmp_x86_devel-6.0.0-1 gmp_x86_devel-6.1.0-1
golang_x86-1.3-2 golang_x86-1.3-2
goonies_x86-1.4.1528-2 goonies_x86-1.4.1528-2
gpgme_x86-1.5.2-2 gpgme_x86-1.5.2-2
gpgme_x86_devel-1.5.2-2 gpgme_x86_devel-1.5.2-2
gphoto2_x86-2.5.8-1
graphite2_x86-1.2.4-1 graphite2_x86-1.2.4-1
graphite2_x86_devel-1.2.4-1 graphite2_x86_devel-1.2.4-1
guilib_x86-1.2.1-1 guilib_x86-1.2.1-1
guilib_x86_devel-1.2.1-1 guilib_x86_devel-1.2.1-1
haikuwebkit_x86-1.4.12-1 haikuwebkit_x86-1.5.1-1
haikuwebkit_x86_devel-1.4.12-1 haikuwebkit_x86_devel-1.5.1-1
harfbuzz_x86-0.9.39-1 harfbuzz_x86-0.9.39-1
harfbuzz_x86_devel-0.9.39-1 harfbuzz_x86_devel-0.9.39-1
icu_x86-55.1-1 icu_x86-55.1-1
@@ -695,8 +714,12 @@ RemotePackageRepository HaikuPorts
libffi_x86_devel-3.0.13-1 libffi_x86_devel-3.0.13-1
libftdi_x86-1.0-2 libftdi_x86-1.0-2
libftdi_x86_devel-1.0-2 libftdi_x86_devel-1.0-2
libgpg_error_x86-1.15-1 libgcrypt_x86-1.6.3-1
libgpg_error_x86_devel-1.15-1 libgcrypt_x86_devel-1.6.3-1
libgpg_error_x86-1.21-1
libgpg_error_x86_devel-1.21-1
libgphoto2_x86-2.5.8-1
libgphoto2_x86_devel-2.5.8-1
libgsasl_x86-1.8.0-1 libgsasl_x86-1.8.0-1
libgsasl_x86_devel-1.8.0-1 libgsasl_x86_devel-1.8.0-1
libicns_x86-0.8.1-3 libicns_x86-0.8.1-3
@@ -715,18 +738,22 @@ RemotePackageRepository HaikuPorts
libmodplug_x86_devel-0.8.8.4-2 libmodplug_x86_devel-0.8.8.4-2
libmpdclient_x86-2.11_git-1 libmpdclient_x86-2.11_git-1
libmpdclient_x86_devel-2.11_git-1 libmpdclient_x86_devel-2.11_git-1
libmpeg2_x86-0.5.1-3
libmpeg2_x86_devel-0.5.1-3
libogg_x86-1.3.0-2 libogg_x86-1.3.0-2
libogg_x86_devel-1.3.0-2 libogg_x86_devel-1.3.0-2
libotr_x86-4.1.0-1
libotr_x86_devel-4.1.0-1
libpaper_x86-1.1.24-1 libpaper_x86-1.1.24-1
libpaper_x86_devel-1.1.24-1 libpaper_x86_devel-1.1.24-1
libpcre_x86-8.33-2 libpcre_x86-8.33-2
libpcre_x86_devel-8.33-2 libpcre_x86_devel-8.33-2
libpng_x86-1.5.22-1 libpng_x86-1.5.25-1
libpng_x86_devel-1.5.22-1 libpng_x86_devel-1.5.25-1
libpng16_x86-1.6.18-1 libpng16_x86-1.6.20-1
libpng16_x86_devel-1.6.18-1 libpng16_x86_devel-1.6.20-1
libqt4_x86-4.8.6.4-4 libqt4_x86-4.8.7-5
libqt4_x86_devel-4.8.6.4-4 libqt4_x86_devel-4.8.7-5
librecad_x86-2.0.7-1 librecad_x86-2.0.7-1
libsamplerate_x86-0.1.8-1 libsamplerate_x86-0.1.8-1
libsamplerate_x86_devel-0.1.8-1 libsamplerate_x86_devel-0.1.8-1
@@ -734,8 +761,8 @@ RemotePackageRepository HaikuPorts
libsanta_x86_devel-3.0.1-1 libsanta_x86_devel-3.0.1-1
libsigc++_x86-2.4.1-1 libsigc++_x86-2.4.1-1
libsigc++_x86_devel-2.4.1-1 libsigc++_x86_devel-2.4.1-1
libsdl_x86-1.2.15-7 libsdl_x86-1.2.15-9
libsdl_x86_devel-1.2.15-7 libsdl_x86_devel-1.2.15-9
libsdl2_x86-2.0.1-3 libsdl2_x86-2.0.1-3
libsdl2_x86_devel-2.0.1-3 libsdl2_x86_devel-2.0.1-3
libsndfile_x86-1.0.25-3 libsndfile_x86-1.0.25-3
@@ -746,10 +773,10 @@ RemotePackageRepository HaikuPorts
libtheora_x86_devel-1.1.1-2 libtheora_x86_devel-1.1.1-2
libtool_x86-2.4.2-1 libtool_x86-2.4.2-1
libtool_x86_libltdl-2.4.2-1 libtool_x86_libltdl-2.4.2-1
libtorrent_rasterbar_x86-1.0.6-1 libtorrent_rasterbar_x86-1.0.6-2
libtorrent_rasterbar_x86_devel-1.0.6-1 libtorrent_rasterbar_x86_devel-1.0.6-2
libusb_x86-1.0.18-1 libusb_x86-1.0.20-2
libusb_x86_devel-1.0.18-1 libusb_x86_devel-1.0.20-2
libuuid_x86-1.0.3-2 libuuid_x86-1.0.3-2
libuuid_x86_devel-1.0.3-2 libuuid_x86_devel-1.0.3-2
libvorbis_x86-1.3.5-2 libvorbis_x86-1.3.5-2
@@ -780,7 +807,7 @@ RemotePackageRepository HaikuPorts
mesa_x86_devel-10.1.0-2 mesa_x86_devel-10.1.0-2
mesa_x86_swrast-10.1.0-2 mesa_x86_swrast-10.1.0-2
mesa_x86_swpipe-10.1.0-2 mesa_x86_swpipe-10.1.0-2
mosh_x86-1.2.4-1 mosh_x86-1.2.4-2
mpc_x86-1.0.3-1 mpc_x86-1.0.3-1
mpc_x86_devel-1.0.3-1 mpc_x86_devel-1.0.3-1
mpd_x86-0.19.10_git-1 mpd_x86-0.19.10_git-1
@@ -807,9 +834,13 @@ RemotePackageRepository HaikuPorts
openjdk_x86_devel-1.7.u80_b32-3 openjdk_x86_devel-1.7.u80_b32-3
openjpeg_x86-2.1.0-2 openjpeg_x86-2.1.0-2
openjpeg_x86_devel-2.1.0-2 openjpeg_x86_devel-2.1.0-2
openssl_x86-1.0.0s-1 openssl_x86-1.0.2e-1
openssl_x86_devel-1.0.0s-1 openssl_x86_devel-1.0.2e-1
openttd_x86-1.3.3-1 openttd_x86-1.3.3-1
opus_x86-1.1.1-1
opus_x86_devel-1.1.1-1
opusfile_x86-0.6-1
opusfile_x86_devel-0.6-1
pango_x86-1.37.0-1 pango_x86-1.37.0-1
pango_x86_devel-1.37.0-1 pango_x86_devel-1.37.0-1
pciutils_x86-3.2.1-1 pciutils_x86-3.2.1-1
@@ -831,8 +862,9 @@ RemotePackageRepository HaikuPorts
qjson_x86-0.8.1-1 qjson_x86-0.8.1-1
qjson_x86_devel-0.8.1-1 qjson_x86_devel-0.8.1-1
qmplay2_x86-15.05.30-2 qmplay2_x86-15.05.30-2
qt5base_x86-5.5.0-2 qt5_x86-5.5.1-2
qt5base_x86_devel-5.5.0-2 qt5_x86_devel-5.5.1-2
qt5_x86_docs-5.5.1-2
quassel_x86-0.10.0-2 quassel_x86-0.10.0-2
quicklaunch-0.9.12-1 quicklaunch-0.9.12-1
qupzilla_x86-1.8.6-1 qupzilla_x86-1.8.6-1
@@ -843,8 +875,9 @@ RemotePackageRepository HaikuPorts
readline_x86-6.3-2 readline_x86-6.3-2
readline_x86_devel-6.3-2 readline_x86_devel-6.3-2
rocksndiamonds_x86-3.3.1.2-2 rocksndiamonds_x86-3.3.1.2-2
ruby_x86-2.2.2-1 ruby_x86-2.2.2-2
ruby_x86_devel-2.2.2-1 ruby_x86_devel-2.2.2-2
scummvm_x86-1.7.0-3
sdcc_x86-3.4.0-1 sdcc_x86-3.4.0-1
sdl_gfx_x86-2.0.24-1 sdl_gfx_x86-2.0.24-1
sdl_gfx_x86_devel-2.0.24-1 sdl_gfx_x86_devel-2.0.24-1
@@ -939,6 +972,7 @@ RemotePackageRepository HaikuPorts
bepodder bepodder
bescreencapture bescreencapture
beshare_x86 beshare_x86
bevexed
blogpositive blogpositive
binutils binutils
binutils_x86 binutils_x86
@@ -1028,6 +1062,7 @@ RemotePackageRepository HaikuPorts
gcal gcal
gcc gcc
gcc_x86 gcc_x86
gcc5_x86
gcc6809_x86 gcc6809_x86
getconf getconf
getopt getopt
@@ -1042,6 +1077,7 @@ RemotePackageRepository HaikuPorts
glib2_x86 glib2_x86
glu glu
gmp gmp
gmp_x86
gnupg gnupg
gnutls gnutls
golang_x86 golang_x86
@@ -1049,6 +1085,7 @@ RemotePackageRepository HaikuPorts
gperf gperf
gpgme gpgme
gpgme_x86 gpgme_x86
gphoto2_x86
grafx2 grafx2
graphite2_x86 graphite2_x86
grep grep
@@ -1059,8 +1096,9 @@ RemotePackageRepository HaikuPorts
gyp gyp
gzip gzip
haikuporter haikuporter
haikuwebkit_x86 # haikuwebkit_x86
harfbuzz_x86 harfbuzz_x86
hdialog
help2man help2man
htmldoc htmldoc
html_parser html_parser
@@ -1117,8 +1155,9 @@ RemotePackageRepository HaikuPorts
libffi_x86 libffi_x86
libftdi_x86 libftdi_x86
libgcrypt libgcrypt
libgcrypt_x86
libgpg_error libgpg_error
libgpg_error_x86 libgphoto2_x86
libgsasl_x86 libgsasl_x86
libicns libicns
libiconv libiconv
@@ -1132,7 +1171,9 @@ RemotePackageRepository HaikuPorts
libmodplug libmodplug
libmpdclient_x86 libmpdclient_x86
libmpeg2 libmpeg2
libmpeg2_x86
libogg libogg
libotr_x86
libpaper libpaper
libpcap libpcap
libpcre libpcre
@@ -1147,6 +1188,7 @@ RemotePackageRepository HaikuPorts
libsanta_x86 libsanta_x86
libsamplerate_x86 libsamplerate_x86
libsdl libsdl
libsdl_x86
libsdl2 libsdl2
libsdl2_x86 libsdl2_x86
libsigc++ libsigc++
@@ -1163,6 +1205,7 @@ RemotePackageRepository HaikuPorts
libusb libusb
libusb_x86 libusb_x86
libusb_compat libusb_compat
libutf8proc
libuuid libuuid
libuuid_x86 libuuid_x86
libvorbis libvorbis
@@ -1241,6 +1284,9 @@ RemotePackageRepository HaikuPorts
openssh openssh
openssl openssl
openttd_x86 openttd_x86
opus
opusfile
opus_tools
p7zip p7zip
paladin paladin
pango_x86 pango_x86
@@ -1266,6 +1312,7 @@ RemotePackageRepository HaikuPorts
psqlodbc psqlodbc
python python
python_dateutil python_dateutil
python_imaging
python_lxml python_lxml
python_mechanize python_mechanize
python_requests python_requests
@@ -1290,9 +1337,11 @@ RemotePackageRepository HaikuPorts
readline_x86 readline_x86
roadfighter roadfighter
rocksndiamonds_x86 rocksndiamonds_x86
ruby ruby_x86
sane_backends
sawteeth sawteeth
scons scons
scummvm_x86
sdcc_x86 sdcc_x86
sdl_gfx sdl_gfx
sdl_image sdl_image
@@ -1338,6 +1387,7 @@ RemotePackageRepository HaikuPorts
tcpdump tcpdump
texi2html texi2html
texinfo texinfo
thememanager
tiff tiff
tiff4 tiff4
tig_x86 tig_x86
Vendored
+14 -22
View File
@@ -2,9 +2,6 @@
# #
# configure [ <options> ] # configure [ <options> ]
# set flag to exit script when exit command is executed
set -e
# usage # usage
# #
# Prints usage. # Prints usage.
@@ -75,11 +72,9 @@ options:
on to the make building the build tools. on to the make building the build tools.
--no-downloads Do not download anything. Useful when trying to --no-downloads Do not download anything. Useful when trying to
bootstrap and build Haiku from source only. bootstrap and build Haiku from source only.
--remote-user <username> Use given username when logging into
git.haiku-os.org (via ssh).
--target=TARGET Select build target platform. --target=TARGET Select build target platform.
[default=${TARGET_PLATFORM}] [default=${TARGET_PLATFORM}]
valid targets=r5,bone,dano,haiku valid targets=r5,bone,dano,haiku,host
--target-arch <arch> Haiku only: Specify the target architecture to --target-arch <arch> Haiku only: Specify the target architecture to
build for. Must be one of the architectures of the build for. Must be one of the architectures of the
host system. The installed build tools for that host system. The installed build tools for that
@@ -90,7 +85,7 @@ options:
ones the secondary architectures. ones the secondary architectures.
--target-board <board> ARM only: Specify the board to build for. Must be --target-board <board> ARM only: Specify the board to build for. Must be
one of beagle,rpi1,rpi2,cubieboard4,verdex,overo. one of beagle,rpi1,rpi2,cubieboard4,verdex,overo.
--update re-runs last configure invocation [cubieboard4must be given --update re-runs last configure invocation [must be given
as first option!] as first option!]
--use-clang Build with host Clang instead of GCC cross --use-clang Build with host Clang instead of GCC cross
compiler compiler
@@ -312,16 +307,7 @@ standard_gcc_settings()
set_variable HAIKU_CPU_$targetArch $targetCpu set_variable HAIKU_CPU_$targetArch $targetCpu
get_build_tool_path CC_$targetArch "$gcc" get_build_tool_path CC_$targetArch "$gcc"
if [ $useClang = 1 ]; then set_variable HAIKU_CC_IS_CLANG_$targetArch $useClang
# The get_build_tool_path above is needed to get the path to the rest
# of the build tools
local path=`dirname $(get_variable HAIKU_CC_$targetArch)`
set_variable HAIKU_CC_$targetArch \
"PATH=\\\"$path:\\\$PATH\\\" clang -target $gccMachine"
set_variable HAIKU_CC_IS_CLANG_$targetArch 1
else
set_variable HAIKU_CC_IS_CLANG_$targetArch 0
fi
set_variable HAIKU_GCC_RAW_VERSION_$targetArch $gccRawVersion set_variable HAIKU_GCC_RAW_VERSION_$targetArch $gccRawVersion
set_variable HAIKU_GCC_MACHINE_$targetArch $gccMachine set_variable HAIKU_GCC_MACHINE_$targetArch $gccMachine
set_variable HAIKU_GCC_LIB_DIR_$targetArch $gccdir set_variable HAIKU_GCC_LIB_DIR_$targetArch $gccdir
@@ -367,7 +353,8 @@ set_default_value()
get_build_tool_path() get_build_tool_path()
{ {
local var="HAIKU_$1" local var="HAIKU_$1"
local path=$2 local cmd=$2
local path=${2%% *}
if [ -f "$path" ]; then if [ -f "$path" ]; then
# get absolute path # get absolute path
@@ -382,7 +369,7 @@ get_build_tool_path()
} }
fi fi
eval "$var=$path" eval "$var=\"$path ${cmd#${2%% *}}\""
} }
is_in_list() is_in_list()
@@ -660,8 +647,7 @@ rmdir haikuCaseTest haikucasetest 2>/dev/null
if [ $caseInsensitive != 0 ]; then if [ $caseInsensitive != 0 ]; then
echo "You need a case-sensitive file-system to build Haiku." echo "You need a case-sensitive file-system to build Haiku."
if [ $HOST_PLATFORM = "darwin" ]; then if [ $HOST_PLATFORM = "darwin" ]; then
echo "You can create a case-sensitive disk image using Disk Utility and use" echo "You can create a case-sensitive disk image using Disk Utility."
echo "it to store the Haiku sources on."
fi fi
exit 1 exit 1
fi fi
@@ -798,7 +784,13 @@ else
fi fi
# prepare gcc settings and get the actual target architecture # prepare gcc settings and get the actual target architecture
gcc="${crossToolsPrefix}gcc" if [ $useClang = 1 ]; then
target=${crossToolsPrefix##*/}
target=${target%-}
gcc="clang -target ${target} -no-integrated-as"
else
gcc="${crossToolsPrefix}gcc"
fi
if [ -z "${crossToolsPrefix}" ]; then if [ -z "${crossToolsPrefix}" ]; then
gcc=`get_variable HAIKU_CC_$targetArch` gcc=`get_variable HAIKU_CC_$targetArch`
fi fi
Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.
Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1,8 +1,8 @@
1 polish x-vnd.Haiku-BFSAddOn 1074880496 1 polish x-vnd.Haiku-BFSAddOn 1074880496
Enable query support BFS_Initialize_Parameter Włącz obsługę zapytań Enable query support BFS_Initialize_Parameter Włącz obsługę zapytań
2048 (Recommended) BFS_Initialize_Parameter 2048 (zalecane) 2048 (Recommended) BFS_Initialize_Parameter 2048 (zalecane)
8192 (Mostly large files) BFS_Initialize_Parameter 8192 (do dużych plików) 8192 (Mostly large files) BFS_Initialize_Parameter 8192 (głównie duże pliki)
Disabling query support may speed up certain file system operations, but should only be used if one is absolutely certain that one will not need queries.\nAny volume that is intended for booting Haiku must have query support enabled. BFS_Initialize_Parameter Wyłączenie obsługi zapytań może przyspieszyć niektóre operacje na plikach, ale powinno być stosowane tylko jeśli jest absolutnie pewne, że nie będzie potrzeby użycia zapytań.\nKażdy wolumin, który jest przeznaczony do uruchamiania Haiku musi mieć włączoną obsługę zapytań. Disabling query support may speed up certain file system operations, but should only be used if one is absolutely certain that one will not need queries.\nAny volume that is intended for booting Haiku must have query support enabled. BFS_Initialize_Parameter Wyłączenie obsługi zapytań może przyspieszyć niektóre operacje na plikach, ale powinno być stosowane tylko jeśli jest absolutnie pewne, że nie będzie potrzeby użycia zapytań.\nKażdy wolumin, który jest przeznaczony do uruchamiania Haiku musi mieć włączoną obsługę zapytań.
1024 (Mostly small files) BFS_Initialize_Parameter 1024 (do małych plików) 1024 (Mostly small files) BFS_Initialize_Parameter 1024 (głównie małe pliki)
Blocksize: BFS_Initialize_Parameter Rozmiar bloku: Blocksize: BFS_Initialize_Parameter Rozmiar bloku:
Name: BFS_Initialize_Parameter Nazwa: Name: BFS_Initialize_Parameter Nazwa:
@@ -3,6 +3,6 @@ Enable query support BFS_Initialize_Parameter Включить поддержк
2048 (Recommended) BFS_Initialize_Parameter 2048 (Рекомендуемый) 2048 (Recommended) BFS_Initialize_Parameter 2048 (Рекомендуемый)
8192 (Mostly large files) BFS_Initialize_Parameter 8192 (Подходит для больших файлов) 8192 (Mostly large files) BFS_Initialize_Parameter 8192 (Подходит для больших файлов)
Disabling query support may speed up certain file system operations, but should only be used if one is absolutely certain that one will not need queries.\nAny volume that is intended for booting Haiku must have query support enabled. BFS_Initialize_Parameter Отключение поддержки запросов может ускорить определенные операции файловой системы.\nНо ее следует отключать только если вы уверены, что запросы на этом разделе вам не понадобятся.\nДля загрузочных разделов поддержка запросов обязательна. Disabling query support may speed up certain file system operations, but should only be used if one is absolutely certain that one will not need queries.\nAny volume that is intended for booting Haiku must have query support enabled. BFS_Initialize_Parameter Отключение поддержки запросов может ускорить определенные операции файловой системы.\nНо ее следует отключать только если вы уверены, что запросы на этом разделе вам не понадобятся.\nДля загрузочных разделов поддержка запросов обязательна.
1024 (Mostly small files) BFS_Initialize_Parameter 1024 (Подходит для маленьких файлов) 1024 (Mostly small files) BFS_Initialize_Parameter 1024 (Подходит для небольших файлов)
Blocksize: BFS_Initialize_Parameter Размер блока: Blocksize: BFS_Initialize_Parameter Размер блока:
Name: BFS_Initialize_Parameter Имя раздела: Name: BFS_Initialize_Parameter Имя раздела:
@@ -1,8 +1,9 @@
1 croatian x-vnd.Haiku-KeyboardInputServerDevice 2361247758 1 croatian x-vnd.Haiku-KeyboardInputServerDevice 2745442621
Kill application Team monitor Uništi program Kill application Team monitor Uništi program
Quit application Team monitor Isključi program Quit application Team monitor Isključi program
Select an application from the list above and click one of the buttons 'Kill application' and 'Quit application' in order to close it.\n\nHold CONTROL+ALT+DELETE for %ld seconds to reboot. Team monitor Odaberite program sa gornje liste i kliknite na jedno od dugmeta 'Uništi program' i 'Isključi program' da biste ga zatvorili.\n\nDržite CONTROL+ALT+DELETE %d sekunda za ponovno podizanje sustava. Select an application from the list above and click one of the buttons 'Kill application' and 'Quit application' in order to close it.\n\nHold CONTROL+ALT+DELETE for %ld seconds to reboot. Team monitor Odaberite program sa gornje liste i kliknite njedno od dugmeta 'Uništi program' i 'Isključi program' da biste ga zatvorili.\n\nDržite CONTROL+ALT+DELETE %d sekunda za ponovno podizanje sustava.
If the application will not quit you may have to kill it. Team monitor ako se program ne isključi možda ćete ga trebati uništiti. If the application will not quit you may have to kill it. Team monitor ako se program ne isključi možda ćete ga trebati uništiti.
Force reboot Team monitor Prisili ponovno podizanje sustava Force reboot Team monitor Prisili ponovno podizanje sustava
(This team is a system component) Team monitor (Ovaj tim je komponenta sustava)
Restart the desktop Team monitor Ponovno pokreni radnu površinu Restart the desktop Team monitor Ponovno pokreni radnu površinu
Cancel Team monitor Otkaži Cancel Team monitor Otkaži
@@ -1,7 +1,7 @@
1 romanian x-vnd.Haiku-KeyboardInputServerDevice 2536418998 1 romanian x-vnd.Haiku-KeyboardInputServerDevice 2536418998
Kill application Team monitor Termină aplicația Kill application Team monitor Termină aplicația
Quit application Team monitor Părăsește aplicația Quit application Team monitor Închide aplicația
Select an application from the list above and click one of the buttons 'Kill application' and 'Quit application' in order to close it.\n\nHold CONTROL+ALT+DELETE for %ld seconds to reboot. Team monitor Selectează o aplicație din lista de mai sus și apasă pe „Termină aplicația” sau „Părăsește aplicația” pentru a o închide.\n\nȚine apăsat CONTROL+ALT+DELETE timp de %ld secunde pentru a reporni. Select an application from the list above and click one of the buttons 'Kill application' and 'Quit application' in order to close it.\n\nHold CONTROL+ALT+DELETE for %ld seconds to reboot. Team monitor Selectează o aplicație din lista de mai sus și apasă pe „Termină aplicația” sau „Închide aplicația” pentru a o închide.\n\nȚine apăsat CONTROL+ALT+DELETE timp de %ld secunde pentru a reporni.
If the application will not quit you may have to kill it. Team monitor Dacă aplicația nu se închide va trebui să o termini forțat. If the application will not quit you may have to kill it. Team monitor Dacă aplicația nu se închide va trebui să o termini forțat.
Force reboot Team monitor Forțează repornirea Force reboot Team monitor Forțează repornirea
Team monitor Team monitor Monitor echipe Team monitor Team monitor Monitor echipe
@@ -1,6 +1,7 @@
1 croatian x-vnd.Haiku-MatchHeader 2152544282 1 croatian x-vnd.Haiku-MatchHeader 1346302573
<Choose action> ConfigView <Odaberi radnju> <Choose action> ConfigView <Odaberi radnju>
Move to ConfigView Premjesti u Move to ConfigView Premjesti u
this field is based on the action ConfigView ovo polje je bazirano na radnji
Delete message ConfigView Izbriši poruku Delete message ConfigView Izbriši poruku
<Choose account> ConfigView <Odaberi račun> <Choose account> ConfigView <Odaberi račun>
Reply with ConfigView Odgovori pomoću Reply with ConfigView Odgovori pomoću
@@ -1,14 +1,16 @@
1 romanian x-vnd.Haiku-MatchHeader 86843817 1 romanian x-vnd.Haiku-MatchHeader 3405428083
<Choose action> ConfigView <Selectează acțiunea> <Choose action> ConfigView <Selectează acțiunea>
has ConfigView are has ConfigView are
Move to ConfigView Mută la Move to ConfigView Mută la
Then ConfigView Atunci Then ConfigView Atunci
this field is based on the action ConfigView acest câmp este bazat pe acțiunea this field is based on the action ConfigView acest câmp este bazat pe acțiunea
Delete message ConfigView Șterge mesajul Delete message ConfigView Șterge mesajul
value (use REGEX: in front of regular expressions like *spam*) ConfigView valoare (folosește REGEX: înaintea expresiilor regulate precum *spam*)
<Choose account> ConfigView <Selectează contul> <Choose account> ConfigView <Selectează contul>
Set flags to ConfigView Stabilește indicatorii la Set flags to ConfigView Stabilește indicatorii la
Set as read ConfigView Marchează ca citit Set as read ConfigView Marchează ca citit
Match header RuleFilter Potrivește antet Match header RuleFilter Potrivește antet
Reply with ConfigView Răspunde cu Reply with ConfigView Răspunde cu
If ConfigView Dacă If ConfigView Dacă
Match \"%attribute\" against \"%regex\" RuleFilter Găsește \"%attribute\" în \"%regex\"
header (e.g. Subject) ConfigView antet (ex. Subiect) header (e.g. Subject) ConfigView antet (ex. Subiect)
@@ -1,10 +1,10 @@
1 croatian x-vnd.Haiku-NewMailNotification 3368431998 1 croatian x-vnd.Haiku-NewMailNotification 1178245429
{0, plural, one{# new message} other{# new messages}} filter {0, množina, jedna{# nova poruka} ostalo{# nove poruke}} You have {0, plural, one{One new message} other{# new messages}} for %account. NotifierFilter Imate {0, množina, jednu{Jedna nova poruka} ostalo{# nove poruke}} za %račun.
Log window ConfigView Prozor prijave none NotifierConfigView nijedan
Method: ConfigView Metoda: Method: NotifierConfigView Metoda:
Alert ConfigView Upozorenje {0, plural, one{One new message} other{# new messages}} NotifierFilter {0, množina, jedna{Jedna nova poruka} ostalo{# nove poruke}}
none ConfigView nijedan New mails notification NotifierFilter Obavijest o novim porukama
You have {0, plural, one{# new message} other{# new messages}} for %account. filter Imate {0, množina, jedna{# nova poruka} ostalo{# nove poruke}} za %račun. OK NotifierFilter U redu
New messages filter Nove poruke New messages NotifierFilter Nove poruke
New mails notification ConfigView Obavijest o novim porukama Log window NotifierConfigView Prozor prijave
OK filter U redu Alert NotifierConfigView Upozorenje
@@ -1,14 +1,14 @@
1 romanian x-vnd.Haiku-NewMailNotification 4243490201 1 romanian x-vnd.Haiku-NewMailNotification 73789504
{0, plural, one{# new message} other{# new messages}} filter {0, plural, one{# mesaj nou} other{# mesaje noi}} You have {0, plural, one{One new message} other{# new messages}} for %account. NotifierFilter Aveți {0, plural, one{Un mesaj nou} other{# mesaje noi}} pentru %account.
Keyboard LEDs ConfigView LEDuri tastatură none NotifierConfigView nimic
Log window ConfigView Fereastră istoric Method: NotifierConfigView Metodă:
Central beep ConfigView Bip central Beep NotifierConfigView Bip
Beep ConfigView Bip {0, plural, one{One new message} other{# new messages}} NotifierFilter {0, plural, one{Un mesaj nou} other{# mesaje noi}}
Method: ConfigView Metodă: New mails notification NotifierFilter Înștiințare mailuri noi
Central alert ConfigView Alertă centrală Central alert NotifierConfigView Alertă centrală
Alert ConfigView Alertă OK NotifierFilter OK
none ConfigView nimic New messages NotifierFilter Mesaje noi
You have {0, plural, one{# new message} other{# new messages}} for %account. filter Aveți {0, plural, one{# mesaj nou} other{# mesaje noi}} pentru %account. Log window NotifierConfigView Fereastră istoric
New messages filter Mesaje noi Keyboard LEDs NotifierConfigView LEDuri tastatură
New mails notification ConfigView Înștiințare mailuri noi Central beep NotifierConfigView Bip central
OK filter OK Alert NotifierConfigView Alertă
@@ -1,7 +1,11 @@
1 croatian x-vnd.Haiku-IMAP 3950045582 1 croatian x-vnd.Haiku-IMAP 3684721562
Destination: imap_config Odredište: Destination: imap_config Odredište:
Ok IMAPFolderConfig U redu
status IMAPFolderConfig stanje status IMAPFolderConfig stanje
Configure IMAP Folders imap_config Konfiguriraj IMAP mape
Cancel IMAPFolderConfig Otkaži
Apply IMAPFolderConfig Primjeni Apply IMAPFolderConfig Primjeni
Fetching IMAP folders, have patience... IMAPFolderConfig Dohvaćam IMAP mape,budite strpljivi... Fetching IMAP folders, have patience... IMAPFolderConfig Dohvaćam IMAP mape,budite strpljivi...
Could not connect to server \"%server%\":\n%error% IMAPFolderConfig Ne mogu se spojiti na poslužitelj \"%poslužitelj%\":\n%greška%
IMAP Folders IMAPFolderConfig IMAP mape IMAP Folders IMAPFolderConfig IMAP mape
Failed to fetch available storage. IMAPFolderConfig Nisam uspio dohvatiti dostupnu pohranu. Failed to fetch available storage. IMAPFolderConfig Nisam uspio dohvatiti dostupnu pohranu.
@@ -1,4 +1,4 @@
1 romanian x-vnd.Haiku-IMAP 4272388921 1 romanian x-vnd.Haiku-IMAP 354143849
Destination: imap_config Destinație: Destination: imap_config Destinație:
Ok IMAPFolderConfig Ok Ok IMAPFolderConfig Ok
status IMAPFolderConfig stare status IMAPFolderConfig stare
@@ -6,5 +6,7 @@ Configure IMAP Folders imap_config Configurează dosare IMAP
Cancel IMAPFolderConfig Anulează Cancel IMAPFolderConfig Anulează
Apply IMAPFolderConfig Aplică Apply IMAPFolderConfig Aplică
Fetching IMAP folders, have patience... IMAPFolderConfig Se aduc dosarele IMAP, aveți răbdare... Fetching IMAP folders, have patience... IMAPFolderConfig Se aduc dosarele IMAP, aveți răbdare...
Could not connect to server \"%server%\":\n%error% IMAPFolderConfig Nu s-a putut conecta la server \"%server%\":\n%error%
IMAP Folders IMAPFolderConfig Dosare IMAP IMAP Folders IMAPFolderConfig Dosare IMAP
Update subcription of IMAP folders, have patience... IMAPFolderConfig Actualizare abonament al dosarelor IMAP, aveți răbdare...
Failed to fetch available storage. IMAPFolderConfig Nu s-a putut aduce depozitul disponibil. Failed to fetch available storage. IMAPFolderConfig Nu s-a putut aduce depozitul disponibil.
@@ -1,10 +1,11 @@
1 romanian x-vnd.Haiku-POP3 108318991 1 romanian x-vnd.Haiku-POP3 924806949
Plain text ConfigView Text simplu Plain text ConfigView Text simplu
Sending APOP authentication… pop3 Trimitere autentificare APOP... Sending APOP authentication… pop3 Trimitere autentificare APOP...
Sending username… pop3 Trimitere nume utilizator... Sending username… pop3 Trimitere nume utilizator...
: The server does not support APOP. pop3 : Serverul nu suportă APOP. : The server does not support APOP. pop3 : Serverul nu suportă APOP.
Getting mailbox size… pop3 Se obține dimensiunea căsuței de mail... Getting mailbox size… pop3 Se obține dimensiunea căsuței de mail...
Connecting to POP3 server… pop3 Conectare la serverul POP3... Connecting to POP3 server… pop3 Conectare la serverul POP3...
Getting UniqueIDs… pop3 Se obțin UniqueIDs...
: No reply.\n pop3 : Niciun răspuns.\n : No reply.\n pop3 : Niciun răspuns.\n
Error while connecting to server %serv pop3 Eroare în timpul conectării la serverul %serv Error while connecting to server %serv pop3 Eroare în timpul conectării la serverul %serv
Error while authenticating user %user pop3 Eroare în timpul autentificării utilizatorului %user Error while authenticating user %user pop3 Eroare în timpul autentificării utilizatorului %user
@@ -1,3 +1,4 @@
1 croatian x-vnd.Haiku-Fortune 3795320632 1 croatian x-vnd.Haiku-Fortune 2555619563
Fortune FortuneFilter Sreća
Fortune file: ConfigView Srećka: Fortune file: ConfigView Srećka:
Fortune cookie says:\n\n ConfigView Kolačić sudbine kaže:\n\n Fortune cookie says:\n\n ConfigView Kolačić sudbine kaže:\n\n
@@ -1,4 +1,5 @@
1 romanian x-vnd.Haiku-Fortune 1292458430 1 romanian x-vnd.Haiku-Fortune 52757361
Fortune FortuneFilter Avere
Fortune file: ConfigView Fișier zicală: Fortune file: ConfigView Fișier zicală:
Fortune cookie says:\n\n ConfigView Prăjitura cu răvaș spune:\n\n Fortune cookie says:\n\n ConfigView Prăjitura cu răvaș spune:\n\n
Tag line: ConfigView Motto: Tag line: ConfigView Motto:
@@ -1,6 +1,7 @@
1 romanian x-vnd.Haiku-SMTP 988031659 1 romanian x-vnd.Haiku-SMTP 2740407895
SMTP server: ConfigView Server SMTP: SMTP server: ConfigView Server SMTP:
STARTTLS ConfigView STARTTLS STARTTLS ConfigView STARTTLS
Error while logging in to %serv smtp Eroare la autentificare la %serv
Unencrypted ConfigView Necriptat Unencrypted ConfigView Necriptat
. The server says:\n smtp . Serverul spune:\n . The server says:\n smtp . Serverul spune:\n
ESMTP ConfigView ESMTP ESMTP ConfigView ESMTP
@@ -1,4 +1,4 @@
1 croatian x-vnd.Haiku-mixer.media_addon 2857021456 1 croatian x-vnd.Haiku-mixer.media_addon 526355835
Virtual output channels AudioMixer Virtualni izlazni kanali Virtual output channels AudioMixer Virtualni izlazni kanali
Refuse output format changes AudioMixer Odbij promjene izlaznog formata Refuse output format changes AudioMixer Odbij promjene izlaznog formata
not connected AudioMixer nije spojeno not connected AudioMixer nije spojeno
@@ -7,5 +7,6 @@ Output channel sources AudioMixer Izvori izlaznog kanala
dB AudioMixer dB dB AudioMixer dB
Mute AudioMixer Utišaj Mute AudioMixer Utišaj
Input channel destinations AudioMixer Odredišta ulaznog kanala Input channel destinations AudioMixer Odredišta ulaznog kanala
Master output AudioMixer Glavni izlaz
Setup AudioMixer Postavi Setup AudioMixer Postavi
Physical input channels AudioMixer Fizički ulazni kanali Physical input channels AudioMixer Fizički ulazni kanali
@@ -1,18 +1,26 @@
1 romanian x-vnd.Haiku-hmulti_audio.media_addon 573962835 1 romanian x-vnd.Haiku-hmulti_audio.media_addon 451057402
Master MultiAudio Stăpân Master MultiAudio Stăpân
SPDIF MultiAudio SPDIF SPDIF MultiAudio SPDIF
Gain MultiAudio Câștig Gain MultiAudio Câștig
Output 3D center MultiAudio Ieșire 3D centru
Extended Setup MultiAudio Configurare Extinsă Extended Setup MultiAudio Configurare Extinsă
CD MultiAudio CD CD MultiAudio CD
Tone control MultiAudio Control Ton Tone control MultiAudio Control Ton
Phone MultiAudio Telefon Phone MultiAudio Telefon
Aux MultiAudio Aux Aux MultiAudio Aux
Output bass MultiAudio Ieșire bas
Headphones MultiAudio Căști Headphones MultiAudio Căști
Beep MultiAudio Bip Beep MultiAudio Bip
Output mono mix MultiAudio Ieșire mix mono
Output stereo mix MultiAudio Ieșire mix stereo
Input MultiAudio Intrare Input MultiAudio Intrare
Output treble MultiAudio Ieșire sopran
Mono mix MultiAudio Mix mono
General MultiAudio General General MultiAudio General
Input & Output MultiAudio Intrare & Ieșire Input & Output MultiAudio Intrare & Ieșire
Enhanced Setup MultiAudio Configurare îmbunătățită Enhanced Setup MultiAudio Configurare îmbunătățită
Stereo mix MultiAudio Mix stereo
Output 3D depth MultiAudio Ieșire 3D adâncime
Volume MultiAudio Volum Volume MultiAudio Volum
Output MultiAudio Ieșire Output MultiAudio Ieșire
Video MultiAudio Video Video MultiAudio Video
@@ -0,0 +1,10 @@
1 croatian x-vnd.Haiku-DNSClientService 2825577357
DNS settings DNSClientServiceAddOn DNS postavke
Move down DNSSettingsView Pomaknite dolje
DNS settings DNSSettingsView DNS postavke
Remove DNSSettingsView Ukloni
Domain: DNSSettingsView Domena:
Add DNSSettingsView Dodaj
Server: DNSSettingsView Poslužitelj:
Move up DNSSettingsView Pomaknite gore
Apply DNSSettingsView Primjeni
@@ -0,0 +1,10 @@
1 romanian x-vnd.Haiku-DNSClientService 2825577357
DNS settings DNSClientServiceAddOn Setări DNS
Move down DNSSettingsView Mută în jos
DNS settings DNSSettingsView Setări DNS
Remove DNSSettingsView Elimină
Domain: DNSSettingsView Domeniu:
Add DNSSettingsView Adaugă
Server: DNSSettingsView Server:
Move up DNSSettingsView Mută în sus
Apply DNSSettingsView Aplică
@@ -0,0 +1,10 @@
1 ukrainian x-vnd.Haiku-DNSClientService 2825577357
DNS settings DNSClientServiceAddOn Параметри DNS
Move down DNSSettingsView Пересунути вниз
DNS settings DNSSettingsView Параметри DNS
Remove DNSSettingsView Видалити
Domain: DNSSettingsView Домен:
Add DNSSettingsView Додати
Server: DNSSettingsView Сервер:
Move up DNSSettingsView Вверх
Apply DNSSettingsView Застосувати
@@ -0,0 +1,10 @@
1 english x-vnd.Haiku-DNSClientService 2825577357
DNS settings DNSClientServiceAddOn DNS 设置
Move down DNSSettingsView 下移
DNS settings DNSSettingsView DNS 设置
Remove DNSSettingsView 移除
Domain: DNSSettingsView 域名:
Add DNSSettingsView 添加
Server: DNSSettingsView 服务器:
Move up DNSSettingsView 上移
Apply DNSSettingsView 应用
@@ -0,0 +1,3 @@
1 croatian x-vnd.Haiku-FTPService 4086152171
FTP server FTPServiceAddOn FTP poslužitelj
The FTP server allows you to remotely access the files on your machine using the FTP protocol.\n\nPlease note that it is an insecure and unencrypted connection. FTPServiceAddOn FTP poslužitelj vam dopušta udaljeni pristup datotekama na vašem stroju koristeći FTP protokol.\n\nMolim primjetite da je je to nesigurna i nešifrirana veza.
@@ -0,0 +1,3 @@
1 romanian x-vnd.Haiku-FTPService 4086152171
FTP server FTPServiceAddOn Server FTP
The FTP server allows you to remotely access the files on your machine using the FTP protocol.\n\nPlease note that it is an insecure and unencrypted connection. FTPServiceAddOn Serverul FTP vă permite să accesați de la distanță fișierele de pe calculatorul vostru utilizând protocolul FTP.\n\nNotați că este o conexiune nesiguă și necriptată.
@@ -0,0 +1,3 @@
1 ukrainian x-vnd.Haiku-FTPService 4086152171
FTP server FTPServiceAddOn Сервер FTP
The FTP server allows you to remotely access the files on your machine using the FTP protocol.\n\nPlease note that it is an insecure and unencrypted connection. FTPServiceAddOn FTP сервер надає Вам можливість віддаленого доступу до файлів на Вашій машині за допомогою FTP протоколу.\n\nЗауважте що це є небезпечне інезахищене під'єднання.
@@ -0,0 +1,3 @@
1 english x-vnd.Haiku-FTPService 4086152171
FTP server FTPServiceAddOn FTP 服务器
The FTP server allows you to remotely access the files on your machine using the FTP protocol.\n\nPlease note that it is an insecure and unencrypted connection. FTPServiceAddOn FTP 服务器允许您在您的设备上通过 FTP 协议来远程访问文件。\n\n请注意这是一种不安全、未加密的连接。
@@ -0,0 +1,2 @@
1 croatian x-vnd.Haiku-IPv4Interface 2854844856
IPv4 IPv4InterfaceAddOn IPv4
@@ -0,0 +1,2 @@
1 romanian x-vnd.Haiku-IPv4Interface 2854844856
IPv4 IPv4InterfaceAddOn IPv4
@@ -0,0 +1,2 @@
1 ukrainian x-vnd.Haiku-IPv4Interface 2854844856
IPv4 IPv4InterfaceAddOn IPv4
@@ -0,0 +1,2 @@
1 english x-vnd.Haiku-IPv4Interface 2854844856
IPv4 IPv4InterfaceAddOn IPv4
@@ -0,0 +1,2 @@
1 croatian x-vnd.Haiku-IPv6Interface 1391114020
IPv6 IPv6InterfaceAddOn IPv6
@@ -0,0 +1,2 @@
1 romanian x-vnd.Haiku-IPv6Interface 1391114020
IPv6 IPv6InterfaceAddOn IPv6
@@ -0,0 +1,2 @@
1 english x-vnd.Haiku-IPv6Interface 1391114020
IPv6 IPv6InterfaceAddOn IPv6
@@ -0,0 +1,3 @@
1 croatian x-vnd.Haiku-SSHService 770129055
The SSH server allows you to remotely access your machine with a terminal session, as well as file access using the SCP and SFTP protocols. SSHServiceAddOn SSH poslužitelj vam dopušta udaljeni pristup datotekama na vašem stroju pomoću sesije terminala, kao i pristup datotekama koristeći SCP i SFTP protokole.
SSH server SSHServiceAddOn SSH poslužitelj
@@ -0,0 +1,3 @@
1 romanian x-vnd.Haiku-SSHService 770129055
The SSH server allows you to remotely access your machine with a terminal session, as well as file access using the SCP and SFTP protocols. SSHServiceAddOn Serverul SSH vă permite să accesați de la distanță computerul vostru cu o sesiune de terminal, precum și acces la fișiere folosing protocoalele SCP și SFTP.
SSH server SSHServiceAddOn Server SSH
@@ -1,3 +1,3 @@
1 russian x-vnd.Haiku-SSHService 770129055 1 russian x-vnd.Haiku-SSHService 770129055
The SSH server allows you to remotely access your machine with a terminal session, as well as file access using the SCP and SFTP protocols. SSHServiceAddOn Сервер SSH позволяет вам удаленно получить доступ к вашему компьютеру через терминальную сессию, а также использовать SCP и SFTP протоколы. The SSH server allows you to remotely access your machine with a terminal session, as well as file access using the SCP and SFTP protocols. SSHServiceAddOn SSH cервер позволяет вам удаленно получить доступ к вашему компьютеру через терминальную сессию, а также использовать SCP и SFTP протоколы.
SSH server SSHServiceAddOn Сервер SSH SSH server SSHServiceAddOn SSH сервер
@@ -0,0 +1,3 @@
1 english x-vnd.Haiku-SSHService 770129055
The SSH server allows you to remotely access your machine with a terminal session, as well as file access using the SCP and SFTP protocols. SSHServiceAddOn SSH 服务器允许您通过终端会话远程访问您的机器,并且可以通过 SCP 及 SFTP 协议来访问文件。
SSH server SSHServiceAddOn SSH 服务器
@@ -0,0 +1,3 @@
1 croatian x-vnd.Haiku-TelnetService 1209067113
Telnet server TelnetServiceAddOn Telnet poslužitelj
The Telnet server allows you to remotely access your machine with a terminal session using the telnet protocol.\n\nPlease note that it is an insecure and unencrypted connection. TelnetServiceAddOn Telnet poslužitelj vam dopušta udaljeni pristup datotekama na vašem stroju pomoću sesije terminala koristeći telnet protokol.\n\nMolim primjetite da je je to nesigurna i nešifrirana veza.
@@ -0,0 +1,3 @@
1 romanian x-vnd.Haiku-TelnetService 1209067113
Telnet server TelnetServiceAddOn Server Telnet
The Telnet server allows you to remotely access your machine with a terminal session using the telnet protocol.\n\nPlease note that it is an insecure and unencrypted connection. TelnetServiceAddOn Serverul Telnet vă permite să accesați de la distanță calculatorul vostru cu o sesiune de terminal utilizând protocolul telnet.\n\nNotați că este o conexiune nesigură și necriptată.
@@ -1,3 +1,3 @@
1 russian x-vnd.Haiku-TelnetService 1209067113 1 russian x-vnd.Haiku-TelnetService 1209067113
Telnet server TelnetServiceAddOn Сервер Telnet Telnet server TelnetServiceAddOn Telnet cервер
The Telnet server allows you to remotely access your machine with a terminal session using the telnet protocol.\n\nPlease note that it is an insecure and unencrypted connection. TelnetServiceAddOn Сервер Telnet позволяет вам удаленно получить доступ к вашему компьютеру используя telnet протокол.\n\nПожалуйста, имейте ввиду, что это небезопасное и нешифрованное соединение. The Telnet server allows you to remotely access your machine with a terminal session using the telnet protocol.\n\nPlease note that it is an insecure and unencrypted connection. TelnetServiceAddOn Telnet cервер позволяет вам удаленно получить доступ к вашему компьютеру используя telnet протокол.\n\nПожалуйста, имейте ввиду, что это небезопасное и нешифрованное соединение.
@@ -0,0 +1,3 @@
1 english x-vnd.Haiku-TelnetService 1209067113
Telnet server TelnetServiceAddOn Telnet 服务器
The Telnet server allows you to remotely access your machine with a terminal session using the telnet protocol.\n\nPlease note that it is an insecure and unencrypted connection. TelnetServiceAddOn Telnet 服务器允许您使用终端会话通过 Telnet 协议远程访问您的机器。\n\n请注意这是一种不安全、未加密的连接。
@@ -1,4 +1,4 @@
1 croatian x-vnd.Haiku-GLifeScreensaver 1165837842 1 croatian x-vnd.Haiku-GLifeScreensaver 1482741810
Grid Border: %li GLife ScreenSaver Granica rešetke: %li Grid Border: %li GLife ScreenSaver Granica rešetke: %li
Grid Width: GLife ScreenSaver Širina rešetke: Grid Width: GLife ScreenSaver Širina rešetke:
none GLife ScreenSaver nijedan none GLife ScreenSaver nijedan
@@ -9,3 +9,4 @@ None GLife ScreenSaver Nijedan
Grid Width: %li GLife ScreenSaver Širina rešetke: %li Grid Width: %li GLife ScreenSaver Širina rešetke: %li
Grid Height: %li GLife ScreenSaver Visina rešetke: %li Grid Height: %li GLife ScreenSaver Visina rešetke: %li
Grid Border: GLife ScreenSaver Granica rešetke: Grid Border: GLife ScreenSaver Granica rešetke:
by Aaron Hill GLife ScreenSaver izradio Aaron Hill
@@ -1,4 +1,4 @@
1 romanian x-vnd.Haiku-GLifeScreensaver 5818164 1 romanian x-vnd.Haiku-GLifeScreensaver 1707534289
Grid Border: %li GLife ScreenSaver Margine grilă: %li Grid Border: %li GLife ScreenSaver Margine grilă: %li
Grid Width: GLife ScreenSaver Lățime grilă: Grid Width: GLife ScreenSaver Lățime grilă:
none GLife ScreenSaver nimic none GLife ScreenSaver nimic
@@ -8,5 +8,8 @@ None GLife ScreenSaver Nimic
4x GLife ScreenSaver This is a factor: the x represents 'times' 4x 4x GLife ScreenSaver This is a factor: the x represents 'times' 4x
Grid Width: %li GLife ScreenSaver Lățime grilă: %li Grid Width: %li GLife ScreenSaver Lățime grilă: %li
Grid Height: %li GLife ScreenSaver Înălțime grilă: %li Grid Height: %li GLife ScreenSaver Înălțime grilă: %li
Grid Life Delay: GLife ScreenSaver Întârziere durată grilă:
OpenGL \"Game of Life\" GLife ScreenSaver OpenGL \"Jocul Vieții\" OpenGL \"Game of Life\" GLife ScreenSaver OpenGL \"Jocul Vieții\"
Grid Life Delay: %s GLife ScreenSaver Întârziere durată grilă: %s
Grid Border: GLife ScreenSaver Margine grilă:
by Aaron Hill GLife ScreenSaver de Aaron Hill by Aaron Hill GLife ScreenSaver de Aaron Hill
@@ -1,4 +1,5 @@
1 romanian x-vnd.Haiku-IFSScreensaver 2521075139 1 romanian x-vnd.Haiku-IFSScreensaver 2018309174
Iterated Function System Screensaver IFS Sistem Funcție Iterată
Morphing speed: Screensaver IFS Viteză de transformare: Morphing speed: Screensaver IFS Viteză de transformare:
%screenSaverName%\n\n© 1997 Massimino Pascal\n\nxscreensaver port by Stephan Aßmus\n<[email protected]> Screensaver IFS %screenSaverName%\n\n© 1997 Massimino Pascal\n\nport xscreensaver de Stephan Aßmus\n<[email protected]> %screenSaverName%\n\n© 1997 Massimino Pascal\n\nxscreensaver port by Stephan Aßmus\n<[email protected]> Screensaver IFS %screenSaverName%\n\n© 1997 Massimino Pascal\n\nport xscreensaver de Stephan Aßmus\n<[email protected]>
Render dots additive Screensaver IFS Redă punctele aditiv Render dots additive Screensaver IFS Redă punctele aditiv
@@ -1,2 +1,4 @@
1 croatian x-vnd.Haiku-LeavesScreensaver 2411927985 1 croatian x-vnd.Haiku-LeavesScreensaver 316636639
Size variation: Leaves Varijacija veličine: Size variation: Leaves Varijacija veličine:
Leaf size: Leaves Veličina lista:
by Deyan Genovski, Geoffry Song Leaves izradili Deyan Genovski, Geoffry Song
@@ -0,0 +1,2 @@
1 croatian x-vnd.Haiku-MessageScreensaver 2745194642
by Ryan Leavengood Screensaver Message izradio Ryan Leavengood
@@ -1,11 +1,14 @@
1 romanian x-vnd.Haiku-SpiderScreensaver 324972259 1 romanian x-vnd.Haiku-SpiderScreensaver 1499771850
Max. polygon count Screensaver Spider Număr maxim poligoane
Gray Screensaver Spider Gri Gray Screensaver Spider Gri
Purple Screensaver Spider Violet Purple Screensaver Spider Violet
Red Screensaver Spider Roșu Red Screensaver Spider Roșu
Trail depth Screensaver Spider Adâncime urmă
Color Screensaver Spider Culoare Color Screensaver Spider Culoare
Blue Screensaver Spider Albastru Blue Screensaver Spider Albastru
for bonefish Screensaver Spider pentru bonefish for bonefish Screensaver Spider pentru bonefish
Spider by stippi Screensaver Spider Păianjen de stippi Spider by stippi Screensaver Spider Păianjen de stippi
Green Screensaver Spider Verde Green Screensaver Spider Verde
Cyan Screensaver Spider Cyan Cyan Screensaver Spider Cyan
Max. points per polygon Screensaver Spider Număr maxim de puncte per poligon
Yellow Screensaver Spider Galben Yellow Screensaver Spider Galben
@@ -1,4 +1,4 @@
1 croatian x-vnd.haiku.zip-o-matic 1573273374 1 croatian x-vnd.haiku.zip-o-matic 2255868945
Stop file:ZipOMaticWindow.cpp Stani Stop file:ZipOMaticWindow.cpp Stani
Creating archive: %s file:ZipOMaticWindow.cpp Stvaranje arhive: %s Creating archive: %s file:ZipOMaticWindow.cpp Stvaranje arhive: %s
Continue file:ZipOMaticWindow.cpp Nastavi Continue file:ZipOMaticWindow.cpp Nastavi
@@ -11,5 +11,6 @@ Are you sure you want to stop creating this archive? file:ZipOMaticWindow.cpp J
Stopped file:ZipOMaticWindow.cpp Zaustavljeno Stopped file:ZipOMaticWindow.cpp Zaustavljeno
Archive file:ZipperThread.cpp Arhiva Archive file:ZipperThread.cpp Arhiva
Error creating archive file:ZipOMaticWindow.cpp Greška pri stvaranju arhive Error creating archive file:ZipOMaticWindow.cpp Greška pri stvaranju arhive
{0, plural, one{# file added.} other{# files added.}} file:ZipOMaticWindow.cpp {0, množina, jedna{# datoteka dodana.} ostale{# datoteke dodane.}}
Archive created OK file:ZipOMaticWindow.cpp Arhiva kreirana u redu Archive created OK file:ZipOMaticWindow.cpp Arhiva kreirana u redu
Stop them file:ZipOMatic.cpp Zaustavi ih Stop them file:ZipOMatic.cpp Zaustavi ih
@@ -1,15 +1,17 @@
1 romanian x-vnd.haiku.zip-o-matic 1573273374 1 romanian x-vnd.haiku.zip-o-matic 2032806096
Stop file:ZipOMaticWindow.cpp Oprește Stop file:ZipOMaticWindow.cpp Oprește
Creating archive: %s file:ZipOMaticWindow.cpp Se creează arhiva: %s Creating archive: %s file:ZipOMaticWindow.cpp Se creează arhiva: %s
Continue file:ZipOMaticWindow.cpp Continuă Continue file:ZipOMaticWindow.cpp Continuă
Preparing to archive file:ZipperThread.cpp Se pregătește de arhivare Preparing to archive file:ZipperThread.cpp Se pregătește de arhivare
Drop files here. file:ZipOMaticWindow.cpp Plasează fișiere aici. Drop files here. file:ZipOMaticWindow.cpp Plasează fișiere aici.
Filename: %s file:ZipOMaticWindow.cpp Nume fișier: %s Filename: %s file:ZipOMaticWindow.cpp Nume fișier: %s
You have {0, plural, one{# Zip-O-Matic} other{# Zip-O-Matics}} running.\n\n file:ZipOMatic.cpp Aveți {0, plural, one{# Zip-O-Matic} other{# Zip-O-Matic}} funționale.\n\n
Let them continue file:ZipOMatic.cpp Lasă-le să continue Let them continue file:ZipOMatic.cpp Lasă-le să continue
Do you want to stop them? file:ZipOMatic.cpp Dorești să le oprești? Do you want to stop them? file:ZipOMatic.cpp Dorești să le oprești?
Are you sure you want to stop creating this archive? file:ZipOMaticWindow.cpp Dorești să oprești crearea acestei arhive? Are you sure you want to stop creating this archive? file:ZipOMaticWindow.cpp Dorești să oprești crearea acestei arhive?
Stopped file:ZipOMaticWindow.cpp Oprit Stopped file:ZipOMaticWindow.cpp Oprit
Archive file:ZipperThread.cpp Arhivă Archive file:ZipperThread.cpp Arhivă
Error creating archive file:ZipOMaticWindow.cpp Eroare la crearea arhivei Error creating archive file:ZipOMaticWindow.cpp Eroare la crearea arhivei
{0, plural, one{# file added.} other{# files added.}} file:ZipOMaticWindow.cpp {0, plural, one{# fișier adăugat.} other{# fișiere adăugate.}}
Archive created OK file:ZipOMaticWindow.cpp Arhivă creată OK Archive created OK file:ZipOMaticWindow.cpp Arhivă creată OK
Stop them file:ZipOMatic.cpp Oprește-le Stop them file:ZipOMatic.cpp Oprește-le
@@ -1,8 +1,9 @@
1 croatian x-vnd.Haiku-EXRTranslator 3953083423 1 croatian x-vnd.Haiku-EXRTranslator 106859695
Version %d.%d.%d, %s ConfigView Verzija %d.%d.%d, %s Version %d.%d.%d, %s ConfigView Verzija %d.%d.%d, %s
EXR image translator EXRTranslator EXR prevoditelj slika EXR image translator EXRTranslator EXR prevoditelj slika
Based on OpenEXR (http://www.openexr.com) ConfigView Bazirano na OpenEXR-u (http://www.openexr.com) Based on OpenEXR (http://www.openexr.com) ConfigView Bazirano na OpenEXR-u (http://www.openexr.com)
EXR Settings main EXR postavke EXR Settings main EXR postavke
EXR images EXRTranslator EXR slike EXR images EXRTranslator EXR slike
a division of Lucasfilm Entertainment Company Ltd ConfigView odjel Lucasfilm Entertainment Company Ltd
EXR image EXRTranslator EXR slika EXR image EXRTranslator EXR slika
EXR image translator ConfigView EXR prevoditelj slika EXR image translator ConfigView EXR prevoditelj slika
@@ -1,9 +1,11 @@
1 croatian x-vnd.Haiku-GIFTranslator 2890300355 1 croatian x-vnd.Haiku-GIFTranslator 2353264164
Optimal GIFView Optimalno Optimal GIFView Optimalno
Greyscale GIFView Sivi tonovi Greyscale GIFView Sivi tonovi
Colors: GIFView Boje:
Palette: GIFView Paleta: Palette: GIFView Paleta:
GIF image GIFTranslator GIF slika GIF image GIFTranslator GIF slika
GIF images GIFTranslator GIF slike GIF images GIFTranslator GIF slike
Version %d.%d.%d, %s GIFView Verzija %d.%d.%d, %s
Use RGB color GIFView Koristi RGB boju Use RGB color GIFView Koristi RGB boju
GIF Settings GIFTranslator GIF postavke GIF Settings GIFTranslator GIF postavke
BeOS system GIFView BeOS sustav BeOS system GIFView BeOS sustav
@@ -1,14 +1,17 @@
1 romanian x-vnd.Haiku-GIFTranslator 4084262487 1 romanian x-vnd.Haiku-GIFTranslator 2201651797
Websafe GIFView Web în siguranță Websafe GIFView Web în siguranță
Write interlaced images GIFView Scrie imagini îmbinate Write interlaced images GIFView Scrie imagini îmbinate
Optimal GIFView Optim Optimal GIFView Optim
Greyscale GIFView Scală de gri Greyscale GIFView Scală de gri
Colors: GIFView Culori: Colors: GIFView Culori:
GIF image translator GIFTranslator Traducător imagine GIF
Be Bitmap Format (GIFTranslator) GIFTranslator Format imagine Be (TraducătorGIF) Be Bitmap Format (GIFTranslator) GIFTranslator Format imagine Be (TraducătorGIF)
GIF image translator GIFView Traducător imagine GIF
Palette: GIFView Paletă: Palette: GIFView Paletă:
GIF image GIFTranslator Imagine GIF GIF image GIFTranslator Imagine GIF
Write transparent images GIFView Scrie imagini transparente Write transparent images GIFView Scrie imagini transparente
GIF images GIFTranslator Imagini GIF GIF images GIFTranslator Imagini GIF
Version %d.%d.%d, %s GIFView Versiune %d.%d.%d, %s
Use RGB color GIFView Utilizează culoare RGB Use RGB color GIFView Utilizează culoare RGB
Use dithering GIFView Utilizează vibrație Use dithering GIFView Utilizează vibrație
GIF Settings GIFTranslator Configurări GIF GIF Settings GIFTranslator Configurări GIF
@@ -1,4 +1,4 @@
1 english x-vnd.Haiku-GIFTranslator 2626723192 1 english x-vnd.Haiku-GIFTranslator 2201651797
Websafe GIFView 网络安全色 Websafe GIFView 网络安全色
Write interlaced images GIFView 写入隔行图像 Write interlaced images GIFView 写入隔行图像
Optimal GIFView 最佳效果 Optimal GIFView 最佳效果
@@ -11,6 +11,7 @@ Palette: GIFView 调色板:
GIF image GIFTranslator GIF 图像 GIF image GIFTranslator GIF 图像
Write transparent images GIFView 写入透明图像 Write transparent images GIFView 写入透明图像
GIF images GIFTranslator GIF 图像 GIF images GIFTranslator GIF 图像
Version %d.%d.%d, %s GIFView 版本 %d.%d.%d %s
Use RGB color GIFView 启用 RGB 颜色 Use RGB color GIFView 启用 RGB 颜色
Use dithering GIFView 启用抖动 Use dithering GIFView 启用抖动
GIF Settings GIFTranslator GIF 设置 GIF Settings GIFTranslator GIF 设置
@@ -1,6 +1,8 @@
1 romanian x-vnd.Haiku-HVIFTranslator 2227623652 1 romanian x-vnd.Haiku-HVIFTranslator 249304797
Haiku vector icon translator HVIFTranslator Traducător pictogramă vectorială Haiku
HVIF icons HVIFTranslator Pictograme HVIF HVIF icons HVIFTranslator Pictograme HVIF
Render size: HVIFView Dimensiune de randat: Render size: HVIFView Dimensiune de randat:
HVIFTranslator Settings HVIFTranslator Configurări TraducătorHVIF HVIFTranslator Settings HVIFTranslator Configurări TraducătorHVIF
Haiku vector icon translator HVIFView Traducător pictogramă vectorială Haiku
HVIF Settings HVIFMain Configurări HVIF HVIF Settings HVIFMain Configurări HVIF
Version %d.%d.%d, %s HVIFView Versiune %d.%d.%d, %s Version %d.%d.%d, %s HVIFView Versiune %d.%d.%d, %s
@@ -1,2 +1,5 @@
1 romanian x-vnd.Haiku-ICNSTranslator 2751404179 1 romanian x-vnd.Haiku-ICNSTranslator 2416672857
Version %d.%d.%d, %s ICNSConfig Versiunea %d.%d.%d, %s Version %d.%d.%d, %s ICNSConfig Versiunea %d.%d.%d, %s
Apple icons ICNSTranslator Pictograme Apple
Apple icon translator ICNSTranslator Traducător pictogramă Apple
Apple icon translator ICNSConfig Traducător pictogramă Apple
@@ -1,8 +1,9 @@
1 romanian x-vnd.Haiku-ICOTranslator 1211895126 1 romanian x-vnd.Haiku-ICOTranslator 3916328565
Cursor ICOTranslator Cursor Cursor ICOTranslator Cursor
Version %d.%d.%d, %s ConfigView Versiune %d.%d.%d, %s Version %d.%d.%d, %s ConfigView Versiune %d.%d.%d, %s
Windows %s %ld bit image ICOTranslator Imagine Windows %s %ld bit Windows %s %ld bit image ICOTranslator Imagine Windows %s %ld bit
Valid icon sizes are 16, 32, or 48 ConfigView Dimensiunile valide de pictogramă sunt 16, 32, sau 48 Valid icon sizes are 16, 32, or 48 ConfigView Dimensiunile valide de pictogramă sunt 16, 32, sau 48
Windows icons ICOTranslator Pictograme Windows
Enforce valid icon sizes ConfigView Aplică dimensiunile valide de pictogramă Enforce valid icon sizes ConfigView Aplică dimensiunile valide de pictogramă
ICO Settings main Configurări ICO ICO Settings main Configurări ICO
Windows icon translator ICOTranslator Traducător pictogramă Windows Windows icon translator ICOTranslator Traducător pictogramă Windows
@@ -1,4 +1,4 @@
1 romanian x-vnd.Haiku-JPEGTranslator 965709535 1 romanian x-vnd.Haiku-JPEGTranslator 3788699631
Output quality JPEGTranslator Calitatea rezultatului Output quality JPEGTranslator Calitatea rezultatului
JPEG images JPEGTranslator Imagini JPEG JPEG images JPEGTranslator Imagini JPEG
Prevent colors 'washing out' JPEGTranslator Previne „spălarea” culorilor Prevent colors 'washing out' JPEGTranslator Previne „spălarea” culorilor
@@ -15,6 +15,7 @@ Output smoothing strength JPEGTranslator Produce putere de netezire
High JPEGTranslator Sus High JPEGTranslator Sus
Write JPEGTranslator Scrie Write JPEGTranslator Scrie
Write black-and-white images as RGB24 JPEGTranslator Scrie imaginile alb-negru ca RGB24 Write black-and-white images as RGB24 JPEGTranslator Scrie imaginile alb-negru ca RGB24
Version %d.%d.%d JPEGTranslator Versiune %d.%d.%d
Read greyscale images as RGB32 JPEGTranslator Citește imaginile cu scală de gri ca RGB32 Read greyscale images as RGB32 JPEGTranslator Citește imaginile cu scală de gri ca RGB32
Read JPEGTranslator Citește Read JPEGTranslator Citește
JPEG Library Warning: %s\n be_jerror Avertisment bibliotecă JPEG: %s\n JPEG Library Warning: %s\n be_jerror Avertisment bibliotecă JPEG: %s\n
@@ -1,4 +1,4 @@
1 english x-vnd.Haiku-JPEGTranslator 965709535 1 english x-vnd.Haiku-JPEGTranslator 3788699631
Output quality JPEGTranslator 输出质量 Output quality JPEGTranslator 输出质量
JPEG images JPEGTranslator JPEG 图像 JPEG images JPEGTranslator JPEG 图像
Prevent colors 'washing out' JPEGTranslator 防止颜色 '消退' Prevent colors 'washing out' JPEGTranslator 防止颜色 '消退'
@@ -15,6 +15,7 @@ Output smoothing strength JPEGTranslator 输出平滑力量
High JPEGTranslator 高 High JPEGTranslator 高
Write JPEGTranslator 写入 Write JPEGTranslator 写入
Write black-and-white images as RGB24 JPEGTranslator 以 RGB24 写入黑白图像 Write black-and-white images as RGB24 JPEGTranslator 以 RGB24 写入黑白图像
Version %d.%d.%d JPEGTranslator 版本 %d.%d.%d
Read greyscale images as RGB32 JPEGTranslator 以 RGB32 读取灰度图像 Read greyscale images as RGB32 JPEGTranslator 以 RGB32 读取灰度图像
Read JPEGTranslator 读取 Read JPEGTranslator 读取
JPEG Library Warning: %s\n be_jerror JPEG 二进制警告:%s\n JPEG Library Warning: %s\n be_jerror JPEG 二进制警告:%s\n
@@ -1,6 +1,7 @@
1 croatian x-vnd.Haiku-JPEG2000Translator 2432784737 1 croatian x-vnd.Haiku-JPEG2000Translator 855817675
Write JPEG2000Translator Piši Write JPEG2000Translator Piši
JPEG2000 images JPEG2000Translator JPEG2000 slike JPEG2000 images JPEG2000Translator JPEG2000 slike
Version %d.%d.%d JPEG2000Translator Verzija %d.%d.%d
Write black-and-white images as RGB24 JPEG2000Translator Piši crno-bijele slike kao RGB24 Write black-and-white images as RGB24 JPEG2000Translator Piši crno-bijele slike kao RGB24
Output quality JPEG2000Translator Kvaliteta izlaza Output quality JPEG2000Translator Kvaliteta izlaza
Read JPEG2000Translator Čitaj Read JPEG2000Translator Čitaj
@@ -1,6 +1,7 @@
1 romanian x-vnd.Haiku-JPEG2000Translator 547915409 1 romanian x-vnd.Haiku-JPEG2000Translator 3265915643
Write JPEG2000Translator Scrie Write JPEG2000Translator Scrie
JPEG2000 images JPEG2000Translator Imagini JPEG2000 JPEG2000 images JPEG2000Translator Imagini JPEG2000
Version %d.%d.%d JPEG2000Translator Versiune %d.%d.%d
Output only codestream (.jpc) JPEG2000Translator Produce doar flux de cod (.jpc) Output only codestream (.jpc) JPEG2000Translator Produce doar flux de cod (.jpc)
Write black-and-white images as RGB24 JPEG2000Translator Scrie imaginile alb-negru ca RGB24 Write black-and-white images as RGB24 JPEG2000Translator Scrie imaginile alb-negru ca RGB24
Output quality JPEG2000Translator Calitatea rezultatului Output quality JPEG2000Translator Calitatea rezultatului
@@ -1,6 +1,7 @@
1 english x-vnd.Haiku-JPEG2000Translator 547915409 1 english x-vnd.Haiku-JPEG2000Translator 3265915643
Write JPEG2000Translator 写入 Write JPEG2000Translator 写入
JPEG2000 images JPEG2000Translator JPEG2000 图像 JPEG2000 images JPEG2000Translator JPEG2000 图像
Version %d.%d.%d JPEG2000Translator 版本 %d.%d.%d
Output only codestream (.jpc) JPEG2000Translator 输出仅 (.jpc) Output only codestream (.jpc) JPEG2000Translator 输出仅 (.jpc)
Write black-and-white images as RGB24 JPEG2000Translator 以 RGB24 格式写入黑白图像 Write black-and-white images as RGB24 JPEG2000Translator 以 RGB24 格式写入黑白图像
Output quality JPEG2000Translator 输出质量 Output quality JPEG2000Translator 输出质量
@@ -1,6 +1,8 @@
1 romanian x-vnd.Haiku-PCXTranslator 2307793683 1 romanian x-vnd.Haiku-PCXTranslator 938242683
PCX Settings main Configurări PCX PCX Settings main Configurări PCX
Version %d.%d.%d, %s ConfigView Versiune %d.%d.%d, %s Version %d.%d.%d, %s ConfigView Versiune %d.%d.%d, %s
PCXTranslator Settings ConfigView Configurări TraducătorPCX PCXTranslator Settings ConfigView Configurări TraducătorPCX
PCX image translator PCXTranslator Traducător imagine PCX
PCX %lu bit image PCXTranslator Imagine PCX %lu biți PCX %lu bit image PCXTranslator Imagine PCX %lu biți
PCX images PCXTranslator Imagini PCX PCX images PCXTranslator Imagini PCX
PCX image translator ConfigView Traducător imagine PCX
@@ -1,4 +1,5 @@
1 croatian x-vnd.Haiku-PPMTranslator 231047584 1 croatian x-vnd.Haiku-PPMTranslator 1666693390
Version %d.%d.%d, %s PPMTranslator Verzija %d.%d.%d %s
PPM Settings PPMMain PPM postavke PPM Settings PPMMain PPM postavke
OK PPMMain OK OK PPMMain OK
Grayscale 8 bits PPMTranslator Sivo 8 bit-a Grayscale 8 bits PPMTranslator Sivo 8 bit-a
@@ -7,6 +8,7 @@ PPM image PPMTranslator PPM slika
RGBA 5:5:5:1 16 bits PPMTranslator RGBA 5:5:5:1 16 bit-a RGBA 5:5:5:1 16 bits PPMTranslator RGBA 5:5:5:1 16 bit-a
Be Bitmap Format (PPMTranslator) PPMTranslator Be Bitmap Format (PPM prevoditelj) Be Bitmap Format (PPMTranslator) PPMTranslator Be Bitmap Format (PPM prevoditelj)
CMYA 8:8:8:8 32 bits PPMTranslator CMYA 8:8:8:8 32 bit-a CMYA 8:8:8:8 32 bits PPMTranslator CMYA 8:8:8:8 32 bit-a
Input color space: PPMTranslator Prostor za unešenu boju:
CMYK 8:8:8:8 32 bits PPMTranslator CMYK 8:8:8:8 32 bit-a CMYK 8:8:8:8 32 bits PPMTranslator CMYK 8:8:8:8 32 bit-a
PPM image translator PPMTranslator PPM prevoditelj slika PPM image translator PPMTranslator PPM prevoditelj slika
bits/space PPMTranslator bit-a/prostor bits/space PPMTranslator bit-a/prostor
@@ -1,17 +1,31 @@
1 romanian x-vnd.Haiku-PPMTranslator 2999213283 1 romanian x-vnd.Haiku-PPMTranslator 2233502290
Version %d.%d.%d, %s PPMTranslator Versiune %d.%d.%d, %s
PPM Settings PPMMain Configurări PPM PPM Settings PPMMain Configurări PPM
Based on PPMTranslator sample code PPMTranslator Bazat pe cod mostră PPMTranslator
OK PPMMain OK OK PPMMain OK
Grayscale 8 bits PPMTranslator Scală de gri 8 biți Grayscale 8 bits PPMTranslator Scală de gri 8 biți
CMY 8:8:8 32 bits PPMTranslator CMY 8:8:8 32 biți CMY 8:8:8 32 bits PPMTranslator CMY 8:8:8 32 biți
PPM image PPMTranslator Imagine PPM PPM image PPMTranslator Imagine PPM
RGBA 5:5:5:1 16 bits PPMTranslator RGBA 5:5:5:1 16 bițî RGBA 5:5:5:1 16 bits PPMTranslator RGBA 5:5:5:1 16 bițî
Be Bitmap Format (PPMTranslator) PPMTranslator Format Bitmap Be (PPMTranslator)
CMYA 8:8:8:8 32 bits PPMTranslator CMYA 8:8:8:8 32 biți CMYA 8:8:8:8 32 bits PPMTranslator CMYA 8:8:8:8 32 biți
Input color space: PPMTranslator Intrare spațiu culoare:
CMYK 8:8:8:8 32 bits PPMTranslator CMYK 8:8:8:8 32 biți CMYK 8:8:8:8 32 bits PPMTranslator CMYK 8:8:8:8 32 biți
PPM image translator PPMTranslator Traducător imagine PPM
bits/space PPMTranslator biți/spațiu bits/space PPMTranslator biți/spațiu
RGB 8:8:8 32 bits big-endian PPMTranslator RGB 8:8:8 32 biți big-endian
RGB 5:6:5 16 bits big-endian PPMTranslator RGB 5:6:5 16 biți big-endian
RGB 5:5:5 16 bits big-endian PPMTranslator RGB 5:5:5 16 biți big-endian
RGB 5:6:5 16 bits PPMTranslator RGB 5:6:5 16 biți RGB 5:6:5 16 bits PPMTranslator RGB 5:6:5 16 biți
Write ASCII PPMTranslator Scrie ASCII Write ASCII PPMTranslator Scrie ASCII
RGBA 8:8:8:8 32 bits PPMTranslator RGBA 8:8:8:8 32 biți RGBA 8:8:8:8 32 bits PPMTranslator RGBA 8:8:8:8 32 biți
None PPMTranslator Nimic None PPMTranslator Nimic
RGBA 5:5:5:1 16 bits big-endian PPMTranslator RGBA 5:5:5:1 16 biți big-endian
RGB 5:5:5 16 bits PPMTranslator RGB 5:5:5 16 biți RGB 5:5:5 16 bits PPMTranslator RGB 5:5:5 16 biți
Bitmap 1 bit PPMTranslator Bitmap 1 bit
RGBA 8:8:8:8 32 bits big-endian PPMTranslator RGBA 8:8:8:8 32 biți big-endian
RGB 8:8:8 32 bits PPMTranslator RGB 8:8:8 32 biți RGB 8:8:8 32 bits PPMTranslator RGB 8:8:8 32 biți
Sample code copyright 1999, Be Incorporated PPMTranslator Cod mostră drepturi de autor 1999, Be Incorporated
PPMTranslator Settings PPMTranslator Configurări PPMTranslator
Something is wrong with the PPMTranslator! PPMMain Ceva nu e în regulă cu PPMTranslator!
System palette 8 bits PPMTranslator Paletă de sistem 8 biți System palette 8 bits PPMTranslator Paletă de sistem 8 biți
@@ -1,4 +1,5 @@
1 english x-vnd.Haiku-PPMTranslator 797856484 1 english x-vnd.Haiku-PPMTranslator 2233502290
Version %d.%d.%d, %s PPMTranslator 版本 %d.%d.%d %s
PPM Settings PPMMain PPM 设置 PPM Settings PPMMain PPM 设置
Based on PPMTranslator sample code PPMTranslator 基于 PPM转换器 示例代码 Based on PPMTranslator sample code PPMTranslator 基于 PPM转换器 示例代码
OK PPMMain 确定 OK PPMMain 确定
@@ -8,6 +9,7 @@ PPM image PPMTranslator PPM 图像
RGBA 5:5:5:1 16 bits PPMTranslator RGBA 5:5:5:1 16 bits RGBA 5:5:5:1 16 bits PPMTranslator RGBA 5:5:5:1 16 bits
Be Bitmap Format (PPMTranslator) PPMTranslator Be 位图格式(PPM 转换器) Be Bitmap Format (PPMTranslator) PPMTranslator Be 位图格式(PPM 转换器)
CMYA 8:8:8:8 32 bits PPMTranslator CMYA 8:8:8:8 32 bits CMYA 8:8:8:8 32 bits PPMTranslator CMYA 8:8:8:8 32 bits
Input color space: PPMTranslator 输入颜色空间:
CMYK 8:8:8:8 32 bits PPMTranslator CMYK 8:8:8:8 32 bits CMYK 8:8:8:8 32 bits PPMTranslator CMYK 8:8:8:8 32 bits
PPM image translator PPMTranslator PPM 图像转换器 PPM image translator PPMTranslator PPM 图像转换器
bits/space PPMTranslator bits/space bits/space PPMTranslator bits/space
@@ -1,10 +1,12 @@
1 croatian x-vnd.Haiku-PSDTranslator 2592909520 1 croatian x-vnd.Haiku-PSDTranslator 245378338
Uncompressed PSDConfig Nesabijeno Uncompressed PSDConfig Nesabijeno
Indexed PSDLoader Indeksirano Indexed PSDLoader Indeksirano
Grayscale PSDLoader Sivi tonovi Grayscale PSDLoader Sivi tonovi
Version %d.%d.%d, %s PSDConfig Verzija %d.%d.%d, %s Version %d.%d.%d, %s PSDConfig Verzija %d.%d.%d, %s
Photoshop Document (PSD file) PSDConfig Photoshop dokument (PSD datoteka)
Photoshop image PSDTranslator Photoshop slika Photoshop image PSDTranslator Photoshop slika
RLE PSDConfig RLE RLE PSDConfig RLE
Photoshop Big Document (PSB file) PSDConfig Photoshop veliki dokument (PSB datoteka)
RGBA PSDLoader RGBA RGBA PSDLoader RGBA
Photoshop image (%s) PSDTranslator Photoshop slika (%s) Photoshop image (%s) PSDTranslator Photoshop slika (%s)
RGB PSDLoader RGB RGB PSDLoader RGB
@@ -1,14 +1,20 @@
1 romanian x-vnd.Haiku-PSDTranslator 1948761734 1 romanian x-vnd.Haiku-PSDTranslator 3654055550
Lab PSDLoader Laborator Lab PSDLoader Laborator
Uncompressed PSDConfig Necomprimat Uncompressed PSDConfig Necomprimat
Indexed PSDLoader Indexat Indexed PSDLoader Indexat
Grayscale PSDLoader Scală de gri Grayscale PSDLoader Scală de gri
Photoshop image translator PSDConfig Traducător imagine Photoshop
Photoshop image translator PSDTranslator Traducător imagine Photoshop
Version %d.%d.%d, %s PSDConfig Versiunea %d.%d.%d, %s Version %d.%d.%d, %s PSDConfig Versiunea %d.%d.%d, %s
Photoshop Document (PSD file) PSDConfig Document Photoshop (Fișier PSD)
Photoshop image PSDTranslator Imagine Photoshop Photoshop image PSDTranslator Imagine Photoshop
RLE PSDConfig RLE RLE PSDConfig RLE
Photoshop Big Document (PSB file) PSDConfig Document Photoshop (Fișier PSB)
RGBA PSDLoader RGBA RGBA PSDLoader RGBA
Photoshop image (%s) PSDTranslator Imagine Photoshop (%s) Photoshop image (%s) PSDTranslator Imagine Photoshop (%s)
PSDTranslator Settings PSDConfig Configurări PSDTranslator
RGB PSDLoader RGB RGB PSDLoader RGB
Bitmap PSDLoader Bitmap
CMYK PSDLoader CMYK CMYK PSDLoader CMYK
Compression: PSDConfig Comprimare: Compression: PSDConfig Comprimare:
Format: PSDConfig Format: Format: PSDConfig Format:
@@ -1,4 +1,4 @@
1 english x-vnd.Haiku-PSDTranslator 1706619436 1 english x-vnd.Haiku-PSDTranslator 3654055550
Lab PSDLoader Lab 色彩模式 Lab PSDLoader Lab 色彩模式
Uncompressed PSDConfig 未压缩 Uncompressed PSDConfig 未压缩
Indexed PSDLoader 索引色彩模式 Indexed PSDLoader 索引色彩模式
@@ -6,8 +6,10 @@ Grayscale PSDLoader 灰度色彩模式
Photoshop image translator PSDConfig Photoshop图像转换器 Photoshop image translator PSDConfig Photoshop图像转换器
Photoshop image translator PSDTranslator Photoshop图像转换器 Photoshop image translator PSDTranslator Photoshop图像转换器
Version %d.%d.%d, %s PSDConfig 版本 %d.%d.%d, %s Version %d.%d.%d, %s PSDConfig 版本 %d.%d.%d, %s
Photoshop Document (PSD file) PSDConfig Photoshop文档 (PSD文件)
Photoshop image PSDTranslator Photoshop图像 Photoshop image PSDTranslator Photoshop图像
RLE PSDConfig 变长度编码(RLE)压缩 RLE PSDConfig 变长度编码(RLE)压缩
Photoshop Big Document (PSB file) PSDConfig Photoshop大文档 (PSB文件)
RGBA PSDLoader RGBA色彩模式 RGBA PSDLoader RGBA色彩模式
Photoshop image (%s) PSDTranslator Photoshop图像 (%s) Photoshop image (%s) PSDTranslator Photoshop图像 (%s)
PSDTranslator Settings PSDConfig PSD文件转换器配置 PSDTranslator Settings PSDConfig PSD文件转换器配置
@@ -1,4 +1,9 @@
1 romanian x-vnd.Haiku-RAWTranslator 3589052383 1 romanian x-vnd.Haiku-RAWTranslator 2975919330
RAWTranslator Settings ConfigView Configurări RAWTranslator
Version %d.%d.%d, %s ConfigView Versiunea %d.%d.%d, %s Version %d.%d.%d, %s ConfigView Versiunea %d.%d.%d, %s
RAW image translator RAWTranslator Traducător imagine RAW
RAW Settings RAWTranslator main Configurări RAW RAW Settings RAWTranslator main Configurări RAW
RAW images RAWTranslator Imagini RAW RAW images RAWTranslator Imagini RAW
RAW image translator ConfigView Traducător imagine RAW
%s RAW image RAWTranslator Parameter (%s) is the name of the manufacturer (like 'Canon') Imagine RAW %s
Based on Dave Coffin's dcraw 8.63 ConfigView Bazat pe dcraw 8.63 al lui Dave Coffin
@@ -1,4 +1,11 @@
1 romanian x-vnd.Haiku-RTFTranslator 1333860607 1 romanian x-vnd.Haiku-RTFTranslator 334451110
Version %d.%d.%d, %s ConfigView Versiunea %d.%d.%d, %s Version %d.%d.%d, %s ConfigView Versiunea %d.%d.%d, %s
RTF text files RTFTranslator Fișiere text RTF RTF text files RTFTranslator Fișiere text RTF
RTF-Translator Settings ConfigView Configurări Traducător-RTF
Rich Text Format (RTF) translator ConfigView Traducător Rich Text Format (RTF)
RTF Settings main Configurări RTF RTF Settings main Configurări RTF
RichTextFormat file RTFTranslator Fișier RichTextFormat
Be style text file RTFTranslator Fișier text stil Be
Plain text file RTFTranslator Fișier text simplu
Rich Text Format translator RTFTranslator Traducător Rich Text Format
Rich Text Format translator v%d.%d.%d %s RTFTranslator Traducător Rich Text Format v%d.%d.%d %s

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