diff options
author | danfe <danfe@FreeBSD.org> | 2009-03-30 17:33:56 +0800 |
---|---|---|
committer | danfe <danfe@FreeBSD.org> | 2009-03-30 17:33:56 +0800 |
commit | d6f96d1b34cf81adf98780ec004aa4264e33af3e (patch) | |
tree | a2cb062a208b700ab0aea2861b2ee258989d3525 /archivers | |
parent | d3a7148e02c5f0fcd093ce05476a92b86b11d659 (diff) | |
download | freebsd-ports-gnome-d6f96d1b34cf81adf98780ec004aa4264e33af3e.tar.gz freebsd-ports-gnome-d6f96d1b34cf81adf98780ec004aa4264e33af3e.tar.zst freebsd-ports-gnome-d6f96d1b34cf81adf98780ec004aa4264e33af3e.zip |
- Fix files/Makefile and mark the port as MAKE_JOBS_SAFE
- Cleanup Makefile
- Drop maintainership
Diffstat (limited to 'archivers')
-rw-r--r-- | archivers/bicom/Makefile | 7 | ||||
-rw-r--r-- | archivers/bicom/files/Makefile | 4 |
2 files changed, 6 insertions, 5 deletions
diff --git a/archivers/bicom/Makefile b/archivers/bicom/Makefile index 4b258837a221..e472e69fa473 100644 --- a/archivers/bicom/Makefile +++ b/archivers/bicom/Makefile @@ -1,4 +1,4 @@ -# New ports collection makefile for: bicom +# New ports collection makefile for: BIjective COMpressor # Date created: 09 May 2003 # Whom: Alexey Dokuchaev <danfe@regency.nsu.ru> # @@ -10,15 +10,16 @@ PORTVERSION= 1.01 CATEGORIES= archivers MASTER_SITES= http://www3.sympatico.ca/mt0000/bicom/ \ http://freebsd.nsu.ru/distfiles/ -DISTNAME= ${PORTNAME}101 +DISTNAME= ${PORTNAME}${PORTVERSION:S/.//g} -MAINTAINER= danfe@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Data compressor in the PPM family RESTRICTED= Contact author personally regarding commercial use NO_WRKSUBDIR= yes MAKEFILE= ${FILESDIR}/Makefile +MAKE_JOBS_SAFE= YES PLIST_FILES= bin/bicom USE_ZIP= yes diff --git a/archivers/bicom/files/Makefile b/archivers/bicom/files/Makefile index c3513cefdd53..6c5cdb2994c2 100644 --- a/archivers/bicom/files/Makefile +++ b/archivers/bicom/files/Makefile @@ -16,10 +16,10 @@ OBJS = bialib/mtstream.o \ bicom/bicom.o .cpp.o: - ${CXX} ${CXXFLAGS} ${IDIR} -c $< -o $*.o + ${CXX} ${CXXFLAGS} ${IDIR} -o $@ -c $< all: ${OBJS} - ${CXX} ${CXXFLAGS} -o bicom/bicom ${OBJS} + ${CXX} ${CXXFLAGS} -o bicom/bicom $> clean: rm -f bicom/bicom bicom/*.o bialib/*.o core |