diff options
author | hoek <hoek@FreeBSD.org> | 1998-08-24 11:13:47 +0800 |
---|---|---|
committer | hoek <hoek@FreeBSD.org> | 1998-08-24 11:13:47 +0800 |
commit | c89387f68afc8359ddc596c917eb81fd06b20340 (patch) | |
tree | 37cb7cffd388c91fd07ac52afe2440640a5b205b /multimedia/mplex/Makefile | |
parent | 548f6ed65054e0c738425be336f1a6c9e56a2dd6 (diff) | |
download | freebsd-ports-gnome-c89387f68afc8359ddc596c917eb81fd06b20340.tar.gz freebsd-ports-gnome-c89387f68afc8359ddc596c917eb81fd06b20340.tar.zst freebsd-ports-gnome-c89387f68afc8359ddc596c917eb81fd06b20340.zip |
- Use a do-install: target instead of patching one into the source
Makefile. A do-install: target is preferrable if one does not plan
on submitting patches to the author. Doing it this way has the
nice side-advantages that we now respect MANOWN and BINOWN.
- Respect CFLAGS
- move patches/patch-ab to files/mplex.1
Diffstat (limited to 'multimedia/mplex/Makefile')
-rw-r--r-- | multimedia/mplex/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/multimedia/mplex/Makefile b/multimedia/mplex/Makefile index 3dcf848123cc..cc9cf233b3be 100644 --- a/multimedia/mplex/Makefile +++ b/multimedia/mplex/Makefile @@ -3,7 +3,7 @@ # Date created: Wed Jul 31 20:54:54 CDT 1996 # Whom: erich@FreeBSD.org # -# $Id: Makefile,v 1.2 1996/11/18 11:28:52 asami Exp $ +# $Id: Makefile,v 1.3 1998/08/23 07:34:43 hoek Exp $ # DISTNAME= mplex-1.1 @@ -14,6 +14,9 @@ MASTER_SITES= ftp://ftp.informatik.tu-muenchen.de/pub/comp/graphics/mpeg/mplex/ MAINTAINER= erich@FreeBSD.org MAN1= mplex.1 -MANCOMPRESSED= yes + +do-install: + @${INSTALL_PROGRAM} ${WRKSRC}/mplex ${PREFIX}/bin + @${INSTALL_MAN} ${FILESDIR}/mplex.1 ${PREFIX}/man/man1 .include <bsd.port.mk> |