diff options
author | Dmitry Marakasov <amdmi3@FreeBSD.org> | 2009-10-14 20:30:47 +0000 |
---|---|---|
committer | Dmitry Marakasov <amdmi3@FreeBSD.org> | 2009-10-14 20:30:47 +0000 |
commit | 1d6926c818c6aae0489b558f900b4b440a983e7a (patch) | |
tree | 246fd7481c7f9884f64a3e9c1dd2560ac492204f | |
parent | 52de8be6331bbc799f35492e1944b30e3e45b954 (diff) | |
download | ports-1d6926c818c6aae0489b558f900b4b440a983e7a.tar.gz ports-1d6926c818c6aae0489b558f900b4b440a983e7a.zip |
Notes
-rw-r--r-- | audio/Makefile | 1 | ||||
-rw-r--r-- | audio/dumb-allegro/Makefile | 11 | ||||
-rw-r--r-- | audio/dumb/Makefile | 5 |
3 files changed, 16 insertions, 1 deletions
diff --git a/audio/Makefile b/audio/Makefile index 46a01fe4a530..464ff9cc2906 100644 --- a/audio/Makefile +++ b/audio/Makefile @@ -127,6 +127,7 @@ SUBDIR += dssi SUBDIR += dtmfdial SUBDIR += dumb + SUBDIR += dumb-allegro SUBDIR += dvda-author SUBDIR += easytag SUBDIR += easytag-devel diff --git a/audio/dumb-allegro/Makefile b/audio/dumb-allegro/Makefile new file mode 100644 index 000000000000..89fd2bf1b1be --- /dev/null +++ b/audio/dumb-allegro/Makefile @@ -0,0 +1,11 @@ +# New ports collection makefile for: audio/dumb-allegro +# Date created: 13 Oct 2009 +# Whom: Stas Timokhin <stast@bsdportal.ru> +# +# $FreeBSD$ +# + +WITH_ALLEGRO= yes +MASTERDIR= ${.CURDIR}/../dumb + +.include "${MASTERDIR}/Makefile" diff --git a/audio/dumb/Makefile b/audio/dumb/Makefile index 6ad8459ef2b4..cd5d03dbd18f 100644 --- a/audio/dumb/Makefile +++ b/audio/dumb/Makefile @@ -7,7 +7,7 @@ PORTNAME= dumb PORTVERSION= 0.9.3 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= audio MASTER_SITES= SF @@ -22,9 +22,12 @@ USE_GMAKE= yes LIB_DEPENDS+= alleg.42:${PORTSDIR}/devel/allegro PLIST_SUB+= ALLEGRO="" MAKE_ARGS= _PORT_ALLEGRO_CFLAGS="`allegro-config --cflags`" +PKGNAMESUFFIX= -allegro +CONFLICTS= dumb-[0-9]* .else PLIST_SUB+= ALLEGRO="@comment " MAKE_ARGS= _PORT_ALLEGRO_CFLAGS= +CONFLICTS= dumb-allegro-[0-9]* .endif .if ${ARCH} == "amd64" || ${ARCH} == "ia64" || ${ARCH} == "sparc64" |