39 lines
903 B
Makefile
39 lines
903 B
Makefile
# $OpenBSD: Makefile,v 1.4 2015/04/13 13:44:25 naddy Exp $
|
|
|
|
BROKEN = unreliable build, frequently hangs after compiling translations
|
|
|
|
V = 1.6
|
|
COMMENT = open source drawing/editing program modeled after Paint.NET
|
|
DISTNAME = pinta-${V}
|
|
CATEGORIES = graphics x11
|
|
REVISION = 0
|
|
|
|
HOMEPAGE = http://pinta-project.com/
|
|
MAINTAINER = Brian Callahan <bcallah@openbsd.org>
|
|
|
|
# MIT
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
|
|
# These tarballs have a proper configure. GH checkout does not...
|
|
MASTER_SITES = https://github.com/PintaProject/Pinta/releases/download/${V}/
|
|
|
|
MODULES = devel/gettext \
|
|
lang/mono \
|
|
textproc/intltool
|
|
|
|
BUILD_DEPENDS = devel/mono-addins \
|
|
x11/mono-gtk2
|
|
|
|
RUN_DEPENDS = devel/mono-addins \
|
|
devel/desktop-file-utils \
|
|
x11/gtk+3,-guic \
|
|
x11/mono-gtk2
|
|
|
|
CONFIGURE_STYLE = gnu
|
|
CONFIGURE_ENV = CPPFLAGS="-I${LOCALBASE}/include" \
|
|
LDFLAGS="-L${LOCALBASE}/lib"
|
|
|
|
USE_GMAKE = Yes
|
|
|
|
.include <bsd.port.mk>
|