view xfce/orage/orage.sh @ 727:16af61228ed9

xfce/orage: initial import, closes #1613
author David Demelier <markand@malikania.fr>
date Tue, 06 Aug 2019 20:05:00 +0200
parents
children
line wrap: on
line source

#!/bin/sh
#
# Copyright (c) 2019 David Demelier <markand@malikania.fr>
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
# copyright notice and this permission notice appear in all copies.
#
# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
#

# TODO: add libical dependency.

PKGNAME=orage
PKGVERSION=4.12.1
PKGREVISION=1
PKGLICENSE="GPLv2"
PKGSUMMARY="Xfce time-managing application"
PKGDOWNLOAD="http://archive.xfce.org/src/apps/$PKGNAME/${PKGVERSION%.*}/$PKGNAME-$PKGVERSION.tar.bz2"
PKGDEPENDS="graphics/gtk2 lib/popt perl/perl"
PKGOPTIONS="DBUS NLS NOTIFICATIONS XFCE"

: ${CHOST:=$(uname -m)-linux-musl}
: ${CBUILD:=$(uname -m)-linux-musl}
: ${CC:=clang}
: ${CFLAGS:=-O2}
: ${LDFLAGS:=}
: ${LIBS:=}
: ${DBUS:=yes}
: ${NLS:=yes}
: ${NOTIFICATIONS:=yes}
: ${XFCE:=yes}

if [ "$DBUS" = "yes" ]; then
	PKGDEPENDS="lib/dbus-glib $PKGDEPENDS"
	with_dbus="--enable-dbus"
else
	with_dbus="--disable-dbus"
fi

if [ "$NLS" = "yes" ]; then
	PKGDEPENDS="core/gettext:build $PKGDEPENDS"
	with_nls="--enable-nls"
else
	with_nls="--disable-nls"
fi

if [ "$NOTIFICATIONS" = "yes" ]; then
	PKGDEPENDS="desktop/libnotify $PKGDEPENDS"
	with_notifications="--enable-libnotify"
else
	with_notifications="--disable-libnotify"
fi

if [ "$XFCE" = "yes" ]; then
	PKGDEPENDS="xfce/xfce4-panel $PKGDEPENDS"
	with_xfce="--enable-xfce4panel"
else
	with_xfce="--disable-xfce4panel"
fi

build()
{
	rm -rf $PKGNAME-$PKGVERSION
	tar xvf $PKGNAME-$PKGVERSION.tar.bz2
	cd $PKGNAME-$PKGVERSION

	CC="$CC" \
	CFLAGS="$CFLAGS" \
	LDFLAGS="$LDFLAGS" \
	LIBS="$LIBS" \
	./configure \
		--build=$CBUILD \
		--host=$CHOST \
		--prefix= \
		--localedir=/share/locale \
		$with_dbus \
		$with_nls \
		$with_notifications \
		$with_xfce
	make
	make install itlocaledir=/share/locale DESTDIR=$DESTDIR
	rm -f $DESTDIR/lib/xfce4/panel/plugins/liborageclock.la

	cd ..
	rm -rf $PKGNAME-$PKGVERSION
}