diff options
author | Florent Thoumie <flz@FreeBSD.org> | 2005-03-13 22:42:39 +0000 |
---|---|---|
committer | Florent Thoumie <flz@FreeBSD.org> | 2005-03-13 22:42:39 +0000 |
commit | 635fffd86aaad0cb196e6de1f6f5cf66395d59a0 (patch) | |
tree | b650c836c842022c0ef0aab5d7c901778bac0c65 /devel/dumb/files | |
parent | Implement Adam Weinbergers idea of an overridable bsd.sites.mk: (diff) |
- Add dumb 0.9.2, an IT, XM, S3M and MOD player library
PR: ports/78118
Submitted by: Andreas Kohn <andreas@syndrom23.de>
Notes
Notes:
svn path=/head/; revision=131137
Diffstat (limited to 'devel/dumb/files')
-rw-r--r-- | devel/dumb/files/config.txt | 4 | ||||
-rw-r--r-- | devel/dumb/files/patch-Makefile | 16 |
2 files changed, 20 insertions, 0 deletions
diff --git a/devel/dumb/files/config.txt b/devel/dumb/files/config.txt new file mode 100644 index 000000000000..3dc79747974c --- /dev/null +++ b/devel/dumb/files/config.txt @@ -0,0 +1,4 @@ +include make/unix.inc +ALL_TARGETS := core core-examples core-headers +@ALLEGRO@ ALL_TARGETS += allegro allegro-examples allegro-headers +PREFIX := @LOCALBASE@ diff --git a/devel/dumb/files/patch-Makefile b/devel/dumb/files/patch-Makefile new file mode 100644 index 000000000000..7cf93017e641 --- /dev/null +++ b/devel/dumb/files/patch-Makefile @@ -0,0 +1,16 @@ +--- Makefile.orig Sat Feb 26 15:24:14 2005 ++++ Makefile Sat Feb 26 15:25:07 2005 +@@ -186,10 +186,10 @@ + OFLAGS := -O2 -ffast-math -fomit-frame-pointer + DBGFLAGS := -DDEBUGMODE=1 -g3 + +-CFLAGS_RELEASE := -Iinclude $(WFLAGS) $(OFLAGS) +-CFLAGS_DEBUG := -Iinclude $(WFLAGS) $(DBGFLAGS) ++CFLAGS_RELEASE := -Iinclude -I$(PREFIX)/include $(WFLAGS) $(OFLAGS) ++CFLAGS_DEBUG := -Iinclude -I$(PREFIX)/include $(WFLAGS) $(DBGFLAGS) + +-LDFLAGS := -s ++LDFLAGS := -s -L$(PREFIX)/lib + + + CORE_EXAMPLES_OBJ := $(addprefix examples/, $(notdir $(patsubst %.c, %.o, $(CORE_EXAMPLES)))) |