More cosmetics. Mainly improved SUMMARY/DESCRIPTION and re-ordered blocks

This commit is contained in:
Humdinger
2015-08-27 18:18:02 +02:00
parent f1a311192e
commit ae085c6b97
6 changed files with 80 additions and 93 deletions

View File

@@ -1,29 +1,13 @@
SUMMARY="An tool to download/delete pictures from digital cameras"
DESCRIPTION="The first version of PhotoGrabber was called 'BeCam' and \
started out as a small cli based application which could connect to your \
camera and download the pictures to the computer. It was available for R5 \
together with the experimental USB stack. Although it ran well, it was not \
that stable due to the crappy USB stack. Haiku had no USB stack back then. \
Over the time you could define the place where the pictures should be saved.
SUMMARY="A tool to download/delete pictures from digital cameras"
DESCRIPTION="Photograbber has a plugin system which is based on the BDCP2 \
API created by Graham Wharton (Creator of 'Exposure!'). With this system \
it is possible to add support to more cameras. If you have developed a \
BCDP2 compatible plugin for your camera (or just found one somewhere), \
just copy it into the 'plugins' folder and PhotoGrabber will detect \
and use it.
'BeCam' grew from a cli application to a GUI app and was able to use all \
default BDCP plugins of 'Exposure!'. After some time the development of \
'BeCam' moved to ZETA. 'BeCam' grew out to become 'BeDiGiCam'and after that \
'PhotoGrabber'. 'PhotoGrabber' was a good name which didn't refer to BeOS. \
Time went by and 'PhotoGrabber'became part of ZETA. Sources where still owned \
by Jixt over the whole period. 'PhotoGrabber' started to use the locale kit \
in ZETA and is since then translated into 14 different languages. After the \
demise of ZETA, Jixt desided to opensource 'PhotoGrabber'. This because he \
had less time to do the development and he didn't want 'PhotoGrabber' to end \
together with ZETA.
As of version 2.x, 'PhotoGrabber' went opensource! Although Jixt had less \
time to develop for it, he rewrote 'PhotoGrabber'. He broke up the \
application into multiple parts (application core, interface, plugins \
and extensions). With this step it was easier for other developers to \
write their own plugins and extensions (add-ons) for the application. \
After he was done with the main parts he opensourced the project and \
attracted a small crew to help out with the developping."
At this moment PhotoGrabber only supports PTP (Picture Transfer Protocol) \
cameras. In the future Mass Storage and Bluethooth support may be added."
HOMEPAGE="https://github.com/HaikuArchives/PhotoGrabber"
COPYRIGHT="2010 Jan-Rixt Van Hoye (Jixt)"
LICENSE="MIT"
@@ -37,16 +21,16 @@ PROVIDES="
app:PhotoGrabber = $portVersion
"
REQUIRES="
haiku$secondaryArchSuffix
lib:libiconv$secondaryArchSuffix
haiku
lib:libiconv
"
BUILD_REQUIRES="
haiku${secondaryArchSuffix}_devel
devel:libiconv$secondaryArchSuffix
haiku_devel
devel:libiconv
"
BUILD_PREREQUIRES="
cmd:gcc$secondaryArchSuffix
cmd:g++
cmd:make
makefile_engine
"

View File

@@ -1,27 +1,36 @@
SUMMARY="A simple weather application"
DESCRIPTION="A small weather application built for GCI."
DESCRIPTION="This simple weather app was a project for the Google Code-In \
2014/2015.
After supplying a location it will gather data over the internet to display \
a constantly updated forecast for the next days as icons (sunshine, clouds, \
rain, etc.). As a Replicant, the app can be neatly integrated into the \
Desktop."
HOMEPAGE="https://github.com/HaikuArchives/Weather"
SOURCE_URI="git+https://github.com/HaikuArchives/Weather.git#a337ad1"
ARCHITECTURES="x86 x86_gcc2 x86_64"
REVISION="1"
LICENSE="MIT"
COPYRIGHT="
2014 George White
COPYRIGHT="2014 George White
2015 Przemysław Buczkowski
2015 Janus
"
2015 Janus"
LICENSE="MIT"
REVISION="1"
SOURCE_URI="git+https://github.com/HaikuArchives/Weather.git#a337ad1"
BUILD_PREREQUIRES="
cmd:make
cmd:gcc
makefile_engine
haiku_devel
"
ARCHITECTURES="x86 x86_gcc2 x86_64"
PROVIDES="
weather
app:Weather = $portVersion
"
REQUIRES="
haiku
"
BUILD_REQUIRES="
haiku_devel
"
BUILD_PREREQUIRES="
cmd:make
cmd:g++
makefile_engine
"
BUILD()
{

View File

@@ -1,22 +1,21 @@
SUMMARY="QR Code encoding library"
DESCRIPTION="
Libqrencode is a library for encoding data in a QR Code symbol, a kind of 2D \
symbology that can be scanned by handy terminals such as a mobile phone with \
CCD. The capacity of QR Code is up to 7000 digits or 4000 characters, and has \
high robustness.
DESCRIPTION="Libqrencode is a library for encoding data in a QR Code symbol, \
a kind of 2D symbology that can be scanned by handy terminals such as a \
mobile phone with a camera. The capacity of QR Code is up to 7000 digits or \
4000 characters, and has high robustness.
Libqrencode accepts a string or a list of data chunks then encodes in a QR Code \
symbol as a bitmap array. While other QR Code applications generate an image \
file, using libqrencode allows applications to render QR Code symbols from raw \
bitmap data directly. This library also contains a command-line utility outputs \
a QR Code symbol as a PNG image. It will help light-weight CGI programs.
"
bitmap data directly. This library also contains a command-line utility to \
output a QR Code symbol as PNG image. This helps light-weight CGI programs."
HOMEPAGE="http://fukuchi.org/works/qrencode/"
COPYRIGHT="2006-2012 Kentaro Fukuchi"
LICENSE="GNU LGPL v2.1"
REVISION="1"
SOURCE_URI="http://fukuchi.org/works/qrencode/qrencode-$portVersion.tar.gz"
CHECKSUM_SHA256="e794e26a96019013c0e3665cb06b18992668f352c5553d0a553f5d144f7f2a72"
REVISION="1"
ARCHITECTURES="x86_gcc2 x86 x86_64"
SECONDARY_ARCHITECTURES="x86_gcc2 x86"
@@ -30,12 +29,21 @@ REQUIRES="
lib:libpng16$secondaryArchSuffix
lib:libz$secondaryArchSuffix
"
PROVIDES_devel="
qrencode${secondaryArchSuffix}_devel = $portVersion compat >= 3
devel:libqrencode$secondaryArchSuffix = 3.4.4 compat >= 3
"
REQUIRES_devel="
qrencode$secondaryArchSuffix == $portVersion
"
BUILD_REQUIRES="
haiku${secondaryArchSuffix}_devel
devel:libpng16$secondaryArchSuffix
devel:libz$secondaryArchSuffix
"
BUILD_PREREQUIRES="
haiku${secondaryArchSuffix}_devel
cmd:gcc$secondaryArchSuffix
cmd:ld$secondaryArchSuffix
cmd:make
@@ -61,13 +69,3 @@ INSTALL()
packageEntries devel \
$developDir
}
# ----- devel package -------------------------------------------------------
PROVIDES_devel="
qrencode${secondaryArchSuffix}_devel = $portVersion compat >= 3
devel:libqrencode$secondaryArchSuffix = 3.4.4 compat >= 3
"
REQUIRES_devel="
qrencode$secondaryArchSuffix == $portVersion
"

View File

@@ -1,18 +1,20 @@
SUMMARY="A ATSC A/52 decoding library used on streams in DVD's"
DESCRIPTION="
A library for decoding ATSC A/52 streams used in DVD's.
"
SUMMARY="An ATSC A/52 decoding library"
DESCRIPTION="The A/52 standard is used in a variety of applications, \
including digital television and DVD. It is also known as AC-3 or AC3.
a52dec is a test program for liba52. It decodes ATSC A/52 streams, and also \
includes a demultiplexer for MPEG-1 and MPEG-2 program streams."
HOMEPAGE="http://liba52.sourceforge.net/"
COPYRIGHT="1999-2002 Aaron Holtzman & Michel Lespinasse"
LICENSE="GNU GPL v2"
REVISION="2"
SOURCE_URI="http://liba52.sourceforge.net/files/a52dec-0.7.4.tar.gz"
CHECKSUM_SHA256="a21d724ab3b3933330194353687df82c475b5dfb997513eef4c25de6c865ec33"
REVISION="2"
LICENSE="GNU GPL v2"
COPYRIGHT="1999-2002 Aaron Holtzman & Michel Lespinasse"
PATCHES="a52dec-$portVersion.patch"
ARCHITECTURES="x86_gcc2 x86 x86_64"
SECONDARY_ARCHITECTURES="x86_gcc2 x86"
PATCHES="a52dec-$portVersion.patch"
PROVIDES="
a52dec$secondaryArchSuffix = $portVersion
lib:liba52$secondaryArchSuffix = 0.0.0 compat >= 0
@@ -28,11 +30,18 @@ REQUIRES="
haiku$secondaryArchSuffix
"
BUILD_REQUIRES="
PROVIDES_devel="
a52dec${secondaryArchSuffix}_devel = $portVersion
devel:liba52$secondaryArchSuffix = 0.0.0 compat >= 0
"
REQUIRES_devel="
a52dec$secondaryArchSuffix == $portVersion base
"
BUILD_PREREQUIRES="
BUILD_REQUIRES="
haiku${secondaryArchSuffix}_devel
"
BUILD_PREREQUIRES="
cmd:gcc$secondaryArchSuffix
cmd:ld$secondaryArchSuffix
cmd:make
@@ -64,13 +73,3 @@ INSTALL()
packageEntries devel \
$developDir
}
# ----- devel package -------------------------------------------------------
PROVIDES_devel="
a52dec${secondaryArchSuffix}_devel = $portVersion
devel:liba52$secondaryArchSuffix = 0.0.0 compat >= 0
"
REQUIRES_devel="
a52dec$secondaryArchSuffix == $portVersion base
"

View File

@@ -3,11 +3,11 @@ DESCRIPTION="This package contains C software to implement JPEG image \
encoding, decoding, and transcoding. JPEG is a standardized compression \
method for full-color and gray-scale images.
The distributed programs provide conversion between JPEG "JFIF" format and \
The distributed programs provide conversion between JPEG 'JFIF' format and \
image files in PBMPLUS PPM/PGM, GIF, BMP, and Targa file formats. The core \
compression and decompression library can easily be reused in other programs, \
such as image viewers. The package is highly portable C code; we have tested \
it on many machines ranging from PCs to Crays."
such as image viewers. The package is highly portable C code; it was tested \
on many machines ranging from PCs to Crays."
HOMEPAGE="http://www.ijg.org"
COPYRIGHT="1991-2014, Thomas G. Lane, Guido Vollbeding"
LICENSE="JPEG"

View File

@@ -1,10 +1,7 @@
SUMMARY="A free DTS Coherent Acoustics decoder"
DESCRIPTION="libdca is a free library for decoding DTS Coherent Acoustics \
streams. The code is written by Gildas Bazin and was based on the a52dec \
project. It is released under the terms of the GPL license.
The DTS Coherent Acoustics standard (ETSI 102 114 v1.2.1), as published by the \
ETSI, is available here (look for DTS Coherent Acoustics)."
project."
HOMEPAGE="http://www.videolan.org/developers/libdca.html"
COPYRIGHT="2004 Gildas Bazin
2000-2003 Michel Lespinasse