diff options
author | Pav Lucistnik <pav@FreeBSD.org> | 2003-12-13 01:41:30 +0000 |
---|---|---|
committer | Pav Lucistnik <pav@FreeBSD.org> | 2003-12-13 01:41:30 +0000 |
commit | 24a534b4578363c43981d545f3ece1cc428217bc (patch) | |
tree | f37f3e7f3caf7db9f1ea3e0b004047955ccc116f /devel/allegro/Makefile | |
parent | 2ea5de4d680ab90136ef22e19ab46398b8e58c7e (diff) |
Notes
Diffstat (limited to 'devel/allegro/Makefile')
-rw-r--r-- | devel/allegro/Makefile | 18 |
1 files changed, 16 insertions, 2 deletions
diff --git a/devel/allegro/Makefile b/devel/allegro/Makefile index 7e813351de65..c3d6f91d9a64 100644 --- a/devel/allegro/Makefile +++ b/devel/allegro/Makefile @@ -6,7 +6,7 @@ # PORTNAME= allegro -PORTVERSION= 4.1.4 +PORTVERSION= 4.1.12 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= alleg @@ -18,17 +18,20 @@ USE_XLIB= yes WANT_GNOME= yes USE_REINPLACE= yes USE_GMAKE= yes -USE_AUTOCONF_VER= 213 +USE_AUTOCONF_VER= 253 CONFIGURE_ENV= CPPFLAGS="${PTHREAD_CFLAGS} -DHAVE_LIBPTHREAD" \ LDFLAGS="${PTHREAD_LIBS}" CONFIGURE_ARGS= --enable-vga=no MAKEFILE= makefile +ALL_TARGET= full-build INSTALLS_SHLIB= yes SHLIB_VER= 41 PLIST_SUB= SHLIB_VER="${SHLIB_VER}" DEMO= demo.c demo.dat demo.h music.txt ../readme.txt +INFO= allegro + .include <bsd.port.pre.mk> .if ${HAVE_GNOME:Mesound}!="" @@ -40,6 +43,17 @@ CONFIGURE_ARGS+= --enable-esddigi=no PLIST_SUB+= ESOUND="@comment " .endif +.if exists(${LOCALBASE}/lib/libartsc.so.0) +WITH_ARTS= yes +.endif +.if defined(WITH_ARTS) +LIB_DEPENDS+= artsc.0:${PORTSDIR}/audio/arts +PLIST_SUB+= ARTS="" +.else +CONFIGURE_ARGS+= --disable-artsdigi +PLIST_SUB+= ARTS="@comment " +.endif + .if defined(WITHOUT_DEVEL) INSTALL_TARGET= mini-install install-man install-info PLIST_SUB+= FULL="@comment " |