diff options
author | knu <knu@FreeBSD.org> | 2001-09-18 15:02:14 +0800 |
---|---|---|
committer | knu <knu@FreeBSD.org> | 2001-09-18 15:02:14 +0800 |
commit | 23640c491a8f42dd31b8b8348e4971375b7133e3 (patch) | |
tree | 4ef18f2781446111e5012082fe8bbc8d5d71ca4f /graphics/p5-ming/files | |
parent | da09979b85de2132cfdf43aa592f8bfea8736a34 (diff) | |
download | freebsd-ports-gnome-23640c491a8f42dd31b8b8348e4971375b7133e3.tar.gz freebsd-ports-gnome-23640c491a8f42dd31b8b8348e4971375b7133e3.tar.zst freebsd-ports-gnome-23640c491a8f42dd31b8b8348e4971375b7133e3.zip |
Add p5-ming, a Perl5 module for Ming which allows you to create Flash
4/5 movies.
Diffstat (limited to 'graphics/p5-ming/files')
-rw-r--r-- | graphics/p5-ming/files/patch-Makefile.PL | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/graphics/p5-ming/files/patch-Makefile.PL b/graphics/p5-ming/files/patch-Makefile.PL new file mode 100644 index 000000000000..76d6e0264de9 --- /dev/null +++ b/graphics/p5-ming/files/patch-Makefile.PL @@ -0,0 +1,20 @@ +--- Makefile.PL.orig Sat Aug 18 02:05:50 2001 ++++ Makefile.PL Tue Sep 18 15:09:21 2001 +@@ -37,14 +37,14 @@ + WriteMakefile( + 'NAME' => 'SWF', + 'VERSION_FROM' => 'SWF.pm', # finds $VERSION +- 'LIBS' => [''], # e.g., '-lm' ++ 'LIBS' => ["-L$ENV{LOCALBASE}/lib -lming"], # e.g., '-lm' + 'DEFINE' => '', # e.g., '-DHAVE_SOMETHING' + 'INC' => '', # e.g., '-I/usr/include/other' +- 'MYEXTLIB' => $MING_DIR . '/libming.a', ++# 'MYEXTLIB' => $MING_DIR . '/libming.a', + ); + + sub ming_is_compiled{ +- return undef unless (-e "$MING_DIR/libming.a"); ++# return undef unless (-e "$MING_DIR/libming.a"); + return 1; + } + |