diff options
author | grant <grant> | 2003-02-17 13:50:25 +0000 |
---|---|---|
committer | grant <grant> | 2003-02-17 13:50:25 +0000 |
commit | f3ac67518e3d8ee56bbdc79be527ccd59f4a5241 (patch) | |
tree | b3d9ae12f7b077f50a6e5b2f207f7727295a29a1 | |
parent | c415f73ee98c659ae3217aa95b71eda17c2f08f3 (diff) | |
download | pkgsrc-f3ac67518e3d8ee56bbdc79be527ccd59f4a5241.tar.gz |
- generate PKGNAME from DISTNAME.
- sort .c files.
-rw-r--r-- | www/ap-mp3/Makefile | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/www/ap-mp3/Makefile b/www/ap-mp3/Makefile index 05247fc3629..4f5aac34835 100644 --- a/www/ap-mp3/Makefile +++ b/www/ap-mp3/Makefile @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.2 2002/07/24 19:45:30 jlam Exp $ +# $NetBSD: Makefile,v 1.3 2003/02/17 13:50:25 grant Exp $ # DISTNAME= mod_mp3-0.35 -PKGNAME= ap-mp3-0.35 +PKGNAME= ${DISTNAME:C|mod_|ap-|} CATEGORIES= www MASTER_SITES= ftp://ftp.tangent.org/pub/apache/ \ http://software.tangent.org/download/ @@ -18,18 +18,18 @@ DOC_DIR= ${PREFIX}/share/httpd/htdocs/manual/mod/mod_mp3 do-build: @cd ${WRKSRC}/src && ${PREFIX}/sbin/apxs -c -o mod_mp3.so \ + common.c \ directives.c \ encode.c \ ice.c \ + id3.c \ + internal_dispatch.c \ load.c \ + log.c \ mod_mp3.c \ - shout.c \ - utility.c \ ogg.c \ - common.c \ - id3.c \ - log.c \ - internal_dispatch.c + shout.c \ + utility.c do-install: @cd ${WRKSRC}/src && ${PREFIX}/sbin/apxs -i mod_mp3.so |