diff options
author | Satoshi Asami <asami@FreeBSD.org> | 1998-11-14 09:43:39 +0000 |
---|---|---|
committer | Satoshi Asami <asami@FreeBSD.org> | 1998-11-14 09:43:39 +0000 |
commit | 96bc8048c3217bb231f2f30eadeb628134b557f5 (patch) | |
tree | c75d5bd5a6faba5d6ec73da367e4bfe5b0d4285d /audio/mpg123 | |
parent | 637c4e8f19438274164c0673ec85af739aba205b (diff) | |
download | ports-96bc8048c3217bb231f2f30eadeb628134b557f5.tar.gz ports-96bc8048c3217bb231f2f30eadeb628134b557f5.zip |
Use bsd.port.{pre,post}.mk to move PORTOBJFORMAT to front, or change
shell loops to make loops. Use EXTRA_PKG_FLAGS to add install scripts
instead of adding it to PKG_FLAGS after bsd.port.mk.
Notes
Notes:
svn path=/head/; revision=14512
Diffstat (limited to 'audio/mpg123')
-rw-r--r-- | audio/mpg123/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/audio/mpg123/Makefile b/audio/mpg123/Makefile index 01cf7b24fe71..cd36ce45dd08 100644 --- a/audio/mpg123/Makefile +++ b/audio/mpg123/Makefile @@ -3,7 +3,7 @@ # Date created: 25 June 1997 # Whom: Carey Jones <mcj@acquiesce.org> # -# $Id: Makefile,v 1.7 1998/09/28 01:50:59 steve Exp $ +# $Id: Makefile,v 1.8 1998/10/03 12:09:54 jkoshy Exp $ # DISTNAME= mpg123-0.59o @@ -15,10 +15,12 @@ MAINTAINER= jkoshy@freebsd.org MAN1= mpg123.1 -.include <bsd.port.mk> +.include <bsd.port.pre.mk> .if ${PORTOBJFORMAT} == "elf" ALL_TARGET= freebsd-elf .else ALL_TARGET= freebsd .endif + +.include <bsd.port.post.mk> |