2014-05-23 12:23:05 +00:00
|
|
|
# $OpenBSD: Makefile,v 1.15 2014/05/23 12:23:05 sthen Exp $
|
2011-03-17 14:38:42 +00:00
|
|
|
|
|
|
|
COMMENT = music system for hackathons
|
2012-03-21 17:44:41 +00:00
|
|
|
DISTNAME = hgd-0.5.3
|
2014-05-23 12:23:05 +00:00
|
|
|
REVISION = 1
|
2011-03-17 14:38:42 +00:00
|
|
|
|
|
|
|
CATEGORIES = audio net
|
|
|
|
HOMEPAGE = https://github.com/vext01/hgd/
|
|
|
|
|
|
|
|
MAINTAINER = Edd Barrett <edd@openbsd.org>
|
|
|
|
|
2011-07-25 23:07:49 +00:00
|
|
|
# python flavor is not linked yet
|
|
|
|
FLAVORS = python
|
|
|
|
FLAVOR ?=
|
|
|
|
|
2011-03-17 14:38:42 +00:00
|
|
|
# ISC
|
|
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
|
|
|
2011-07-25 23:07:49 +00:00
|
|
|
WANTLIB = c config crypto ssl sqlite3 tag tag_c
|
2011-03-17 14:38:42 +00:00
|
|
|
|
|
|
|
MASTER_SITES = https://github.com/downloads/vext01/hgd/
|
|
|
|
|
2011-07-25 23:07:49 +00:00
|
|
|
CONFIGURE_STYLE = gnu
|
|
|
|
|
2011-03-17 14:38:42 +00:00
|
|
|
RUN_DEPENDS = x11/mplayer
|
2012-04-23 17:15:17 +00:00
|
|
|
LIB_DEPENDS = devel/libconfig \
|
2011-07-25 23:07:49 +00:00
|
|
|
audio/taglib
|
|
|
|
|
2011-10-17 12:40:44 +00:00
|
|
|
.if ${FLAVOR:Mpython}
|
2011-07-25 23:07:49 +00:00
|
|
|
LIB_DEPENDS += ${MODPY_LIB_DEPENDS}
|
|
|
|
WANTLIB += ${MODPY_WANTLIB}
|
|
|
|
WANTLIB += m pthread util
|
|
|
|
MODULES = lang/python
|
|
|
|
CONFIGURE_ARGS += --with-python=${MODPY_VERSION}
|
|
|
|
PKG_ARGS += -Dpython=1
|
|
|
|
.else
|
|
|
|
CONFIGURE_ARGS += --without-python
|
|
|
|
PKG_ARGS += -Dpython=0
|
|
|
|
.endif
|
2011-03-17 14:38:42 +00:00
|
|
|
|
2013-03-10 22:55:01 +00:00
|
|
|
NO_TEST = Yes
|
2011-03-17 14:38:42 +00:00
|
|
|
|
|
|
|
.include <bsd.port.mk>
|