mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-05 06:28:55 +02:00
* subversion Smuggled in a "svn" as people do search for that * mercurial Smuggled in a "hg" as people do search for that * vision Improved DESCRIPTION
60 lines
1.2 KiB
Bash
60 lines
1.2 KiB
Bash
SUMMARY="An IRC client"
|
|
DESCRIPTION="Vision is an IRC (Internet Relay Chat) client, originally for \
|
|
BeOS, now for Haiku. The goal of this project is to provide the BeOS/Haiku \
|
|
community with an elegant, fast, and--most importantly--stable client to \
|
|
communicate with other users and make new friends around the world."
|
|
COPYRIGHT="1999-2010 The Vision Team"
|
|
LICENSE="MPL v1.1"
|
|
REVISION="3"
|
|
HOMEPAGE="http://vision.sourceforge.net/"
|
|
SOURCE_URI="http://haiku-files.org/distfiles/vision-0.9.7.r949.tar.gz"
|
|
CHECKSUM_SHA256="9718be3a3b374ae280728e6fc2257d5e5430574c4c81b8b1dabeee14eadee638"
|
|
if [ $targetArchitecture != x86_gcc2 ]; then
|
|
PATCHES="vision-0.9.7-gcc4.patch"
|
|
fi
|
|
ADDITIONAL_FILES="InitialSettings"
|
|
|
|
ARCHITECTURES="x86_gcc2 x86 x86_64"
|
|
|
|
PROVIDES="
|
|
vision = $portVersion
|
|
app:Vision = $portVersion
|
|
"
|
|
REQUIRES="
|
|
haiku
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku_devel
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
cmd:find
|
|
cmd:gcc
|
|
cmd:ld
|
|
cmd:make
|
|
"
|
|
|
|
USER_SETTINGS_FILES="
|
|
settings/Vision directory
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
make
|
|
# multi-job build not supported
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
visionDir=$appsDir/Vision
|
|
mkdir -p $visionDir
|
|
|
|
cp Vision $visionDir
|
|
cp -a $portDir/additional-files/InitialSettings $visionDir
|
|
|
|
cd data
|
|
cp -a * $visionDir
|
|
|
|
addAppDeskbarSymlink $visionDir/Vision
|
|
}
|