The Ace of Penguins is a set of Unix/X solitaire games based on the ones available for Windows but with a number of enhancements. The latest version includes clones of Freecell, Golf, Mastermind, Merlin, Minesweeper, Pegged, Solitaire, Taipei (with editor!), and Thornq. ok juanfra@
28 lines
531 B
Makefile
28 lines
531 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2016/08/05 05:38:56 bentley Exp $
|
|
|
|
COMMENT = solitaire games
|
|
|
|
DISTNAME = ace-1.4
|
|
|
|
SHARED_LIBS += cards 0.0 # 1.0
|
|
|
|
CATEGORIES = games
|
|
|
|
HOMEPAGE = http://www.delorie.com/store/ace/
|
|
|
|
# GPLv2+
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
|
|
WANTLIB += X11 c m png xcb z
|
|
|
|
MASTER_SITES = http://www.delorie.com/store/ace/
|
|
|
|
LIB_DEPENDS = graphics/png
|
|
|
|
USE_GMAKE = Yes
|
|
CONFIGURE_STYLE = gnu
|
|
CONFIGURE_ENV = CPPFLAGS="-I${LOCALBASE}/include" \
|
|
LDFLAGS="-L${LOCALBASE}/lib"
|
|
|
|
.include <bsd.port.mk>
|