diff options
author | dinoex <dinoex@FreeBSD.org> | 2003-01-04 20:40:18 +0000 |
---|---|---|
committer | dinoex <dinoex@FreeBSD.org> | 2003-01-04 20:40:18 +0000 |
commit | 0594b30ad3ece8edfcad499b729765d5098b8d22 (patch) | |
tree | 0beb04467c286e2c86b94f1e4a8266cb9fbcfaad /emulators/vice | |
parent | c4d20300fc98f19a28997ea8d823ab72bcc1696b (diff) | |
download | FreeBSD-ports-0594b30ad3ece8edfcad499b729765d5098b8d22.zip FreeBSD-ports-0594b30ad3ece8edfcad499b729765d5098b8d22.tar.gz |
- New option VICE_WITH_GNOME
- USE_GNOMENG
- Drop dynamic detection
- Make portlint happer
Diffstat (limited to 'emulators/vice')
-rw-r--r-- | emulators/vice/Makefile | 25 |
1 files changed, 16 insertions, 9 deletions
diff --git a/emulators/vice/Makefile b/emulators/vice/Makefile index 1149ce7..bc93c6e 100644 --- a/emulators/vice/Makefile +++ b/emulators/vice/Makefile @@ -6,19 +6,34 @@ PORTNAME= vice PORTVERSION= 1.10 +PORTREVISION= 1 CATEGORIES= emulators MASTER_SITES= ftp://ftp.funet.fi/pub/cbm/crossplatform/emulators/VICE/ +.if defined(VICE_WITH_GNOME) +PKGNAMESUFFIX= -gnome +.endif MAINTAINER= dinoex@FreeBSD.org +.if !defined(VICE_WITH_GNOME) +LIB_DEPENDS= Xaw3d.${XAWVER}:${PORTSDIR}/x11-toolkits/Xaw3d +.endif + RESTRICTED= ROMs are copyrighted by Commodore Business Machines NO_CDROM= ${RESTRICTED} NO_PACKAGE= ${RESTRICTED} USE_XPM= yes -WANT_GNOME= yes GNU_CONFIGURE= yes +.if defined(VICE_WITH_GNOME) +USE_GNOMENG= yes +USE_GNOME= gnomelibs +CONFIGURE_ARGS= --enable-gnomeui +.else +CONFIGURE_ARGS= --with-xaw3d +.endif + MAN1= vice.1 c1541.1 petcat.1 MLINKS= vice.1 x64.1 \ vice.1 x128.1 \ @@ -29,14 +44,6 @@ MLINKS= vice.1 x64.1 \ .include <bsd.port.pre.mk> -.if defined(HAVE_GNOME) -USE_GNOME= yes -CONFIGURE_ARGS= --enable-gnomeui -.else -LIB_DEPENDS= Xaw3d.${XAWVER}:${PORTSDIR}/x11-toolkits/Xaw3d -CONFIGURE_ARGS= --with-xaw3d -.endif - .if ${XFREE86_VERSION} == 4 BUILD_DEPENDS+= bdftopcf:${PORTSDIR}/x11/XFree86-4-clients .endif |