diff options
author | adamw <adamw@FreeBSD.org> | 2014-09-03 06:21:37 +0800 |
---|---|---|
committer | adamw <adamw@FreeBSD.org> | 2014-09-03 06:21:37 +0800 |
commit | f4caf0cc33eeb0fdf265d54d75d5fc8558878fd8 (patch) | |
tree | 966e68a7764d04e29bc1210a66d5c34d4bcff02c /audio | |
parent | 2f5570f41a9f4ac318e5703984e16146cd1c93ab (diff) | |
download | freebsd-ports-gnome-f4caf0cc33eeb0fdf265d54d75d5fc8558878fd8.tar.gz freebsd-ports-gnome-f4caf0cc33eeb0fdf265d54d75d5fc8558878fd8.tar.zst freebsd-ports-gnome-f4caf0cc33eeb0fdf265d54d75d5fc8558878fd8.zip |
Remove MASTER_SITE_AFTERSTEP from MASTER_SITES. The tarball on that server
does not pass checksum. The tigr.net copy still has the correct checksum,
so leave that in as the sole master_site.
All the files within each tarball had identical checksums.
While here, simplify do-install a bit.
Diffstat (limited to 'audio')
-rw-r--r-- | audio/asmixer/Makefile | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/audio/asmixer/Makefile b/audio/asmixer/Makefile index db549e2c0c8f..48bcbdcb1af4 100644 --- a/audio/asmixer/Makefile +++ b/audio/asmixer/Makefile @@ -5,8 +5,7 @@ PORTNAME= asmixer PORTVERSION= 0.5 PORTREVISION= 3 CATEGORIES= audio afterstep -MASTER_SITES= AFTERSTEP/apps/asmix/ \ - http://tigr.net/afterstep/download/asmixer/ +MASTER_SITES= http://tigr.net/afterstep/download/asmixer/ MAINTAINER= ports@FreeBSD.org COMMENT= Mixer control for AfterStep window manager @@ -29,13 +28,9 @@ post-patch: /sys\/syslimits.h/d' ${WRKSRC}/${i} .endfor -post-build: - @${LN} -sf asmixer.man ${WRKSRC}/asmixer.1 - do-install: - (cd ${WRKSRC} && ${INSTALL_PROGRAM} asmixer \ - ${STAGEDIR}${PREFIX}/bin) - (cd ${WRKSRC} && ${INSTALL_MAN} asmixer.1 \ - ${STAGEDIR}${MANPREFIX}/man/man1) + ${INSTALL_PROGRAM} ${WRKSRC}/asmixer ${STAGEDIR}${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/asmixer.man \ + ${STAGEDIR}${MANPREFIX}/man/man1/asmixer.1 .include <bsd.port.mk> |