diff options
author | Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org> | 2001-01-07 14:06:56 +0000 |
---|---|---|
committer | Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org> | 2001-01-07 14:06:56 +0000 |
commit | 94e97f31226463eda41f687dd0db90d7338c1ed6 (patch) | |
tree | 5b3a1d53ac306f3e79a875d22bd85210f3733e91 /audio/lame/files | |
parent | 76f676a1dea4b73e5969785b5bc5787969063372 (diff) | |
download | ports-94e97f31226463eda41f687dd0db90d7338c1ed6.tar.gz ports-94e97f31226463eda41f687dd0db90d7338c1ed6.zip |
1) Add shared library build support. A Good Thing(TM)
2) Install both shared and static library. Numbering .1 according
to handbook rules for newly added libraries. Also, install header
file.
3) PORTREVISION bump.
4) Add provisions for easier update of library version:
- internal Makefile variable
- patch template
- PLIST_SUB
5) patch-aa superseeded by new patch template
Approved by: maintainer
Notes
Notes:
svn path=/head/; revision=36884
Diffstat (limited to 'audio/lame/files')
-rw-r--r-- | audio/lame/files/patch-aa | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/audio/lame/files/patch-aa b/audio/lame/files/patch-aa deleted file mode 100644 index e04f0d348fed..000000000000 --- a/audio/lame/files/patch-aa +++ /dev/null @@ -1,26 +0,0 @@ ---- Makefile.orig Sat Jul 1 15:31:35 2000 -+++ Makefile Sat Jul 1 15:36:07 2000 -@@ -11,8 +11,8 @@ - - # defaults: - PGM = lame --CC = gcc --CC_OPTS = -O -+CC ?= gcc -+CC_OPTS = ${CFLAGS} - GTK = - GTKLIBS = - SNDLIB = -DLAMESNDFILE -@@ -136,8 +136,10 @@ - ########################################################################## - ifeq ($(UNAME),FreeBSD) - # remove if you do not have GTK or do not want the GTK frame analyzer -- GTK = -DHAVEGTK `gtk12-config --cflags` -- GTKLIBS = `gtk12-config --libs` -+ifdef HAVE_GTK -+ GTK = -DHAVEGTK `$(GTK_CONFIG) --cflags` -+ GTKLIBS = `$(GTK_CONFIG) --libs` -+endif - # Comment out next 2 lines if you want to remove VBR histogram capability - BRHIST_SWITCH = -DBRHIST - LIBTERMCAP = -lncurses |