2016-09-05 09:55:56 +00:00
|
|
|
# Copyright 2016 Julian Ospald <hasufell@posteo.de>
|
2014-11-25 01:40:31 +00:00
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
|
2016-04-22 14:10:55 +00:00
|
|
|
require sourceforge [ project=pio suffix=tar.gz ]
|
2016-05-24 19:15:25 +00:00
|
|
|
require gtk-icon-cache
|
2016-04-22 14:10:55 +00:00
|
|
|
|
2014-11-25 01:40:31 +00:00
|
|
|
SUMMARY="A clone of the popular board game The Settlers of Catan"
|
|
|
|
|
2016-02-17 01:53:28 +00:00
|
|
|
LICENCES="GPL-2 CCPL-Attribution-ShareAlike-4.0"
|
2014-11-25 01:40:31 +00:00
|
|
|
SLOT="0"
|
|
|
|
PLATFORMS="~amd64 ~x86"
|
|
|
|
|
|
|
|
DEPENDENCIES="
|
|
|
|
build:
|
|
|
|
dev-util/gob2
|
2016-05-24 19:14:14 +00:00
|
|
|
dev-util/intltool
|
2014-11-25 01:40:31 +00:00
|
|
|
sys-devel/gettext
|
|
|
|
virtual/pkg-config
|
|
|
|
build+run:
|
|
|
|
x11-libs/gtk+:3
|
|
|
|
x11-libs/libnotify
|
|
|
|
"
|
|
|
|
|
|
|
|
DEFAULT_SRC_CONFIGURE_PARAMS=(
|
|
|
|
--enable-nls
|
|
|
|
--disable-help
|
2016-04-22 13:16:54 +00:00
|
|
|
--includedir=/usr/$(exhost --target)/include
|
2014-11-25 01:40:31 +00:00
|
|
|
--with-gtk
|
|
|
|
)
|
|
|
|
|
2016-05-24 19:14:14 +00:00
|
|
|
src_prepare() {
|
|
|
|
edo intltoolize --force --automake
|
|
|
|
default
|
|
|
|
}
|
|
|
|
|