diff options
author | araujo <araujo@FreeBSD.org> | 2012-12-14 15:07:51 +0800 |
---|---|---|
committer | araujo <araujo@FreeBSD.org> | 2012-12-14 15:07:51 +0800 |
commit | 15b666bbe68c23fb6157252a59f81aa35f33ca9e (patch) | |
tree | 884baf1aa5cb93daeee0a71a97f1b992926e66d8 | |
parent | 8929bd2c28acd41aef467b5f5f80855d39933fd7 (diff) | |
download | freebsd-ports-gnome-15b666bbe68c23fb6157252a59f81aa35f33ca9e.tar.gz freebsd-ports-gnome-15b666bbe68c23fb6157252a59f81aa35f33ca9e.tar.zst freebsd-ports-gnome-15b666bbe68c23fb6157252a59f81aa35f33ca9e.zip |
- Add LICENSE.
- Add MAKE_JOBS_SAFE.
- Fix build.
PR: ports/172003
Submitted by: KATO Tsuguru <tkato432@yahoo.com>
-rw-r--r-- | games/kbilliards/Makefile | 19 |
1 files changed, 8 insertions, 11 deletions
diff --git a/games/kbilliards/Makefile b/games/kbilliards/Makefile index 1f73eeb02caf..d14ac89391d8 100644 --- a/games/kbilliards/Makefile +++ b/games/kbilliards/Makefile @@ -1,7 +1,4 @@ -# New ports collection makefile for: kbilliards -# Date created: 15 May 2003 -# Whom: Kirill Ponomarew <ponomarew@oberon.net> -# +# Created by: Kirill Ponomarew <ponomarew@oberon.net> # $FreeBSD$ PORTNAME= kbilliards @@ -9,27 +6,27 @@ PORTVERSION= 0.8.7b PORTREVISION= 6 CATEGORIES= games kde MASTER_SITES= http://www.hostnotfound.it/kbilliards/ \ - ${MASTER_SITE_LOCAL} -MASTER_SITE_SUBDIR= arved + LOCAL/arved MAINTAINER= ports@FreeBSD.org COMMENT= Funny billiards simulator game for KDE +LICENSE= GPLv2 # (or later) + EXTRA_PATCHES= ${.CURDIR}/../../x11/kde3/files/extrapatch-old_configure USE_BZIP2= yes -USE_GETTEXT= yes USE_KDELIBS_VER=3 USE_PERL5_BUILD=yes +USE_GETTEXT= yes USE_GMAKE= yes USE_AUTOTOOLS= libtool - -CFLAGS+= -Dsqrtl=sqrt +MAKE_JOBS_SAFE= yes .include <bsd.port.pre.mk> -.if ${OSVERSION} >= 800024 -BROKEN= does not compile +.if ${OSVERSION} < 800024 +CFLAGS+= -Dsqrtl=sqrt .endif pre-configure: |