diff options
author | thierry <thierry@FreeBSD.org> | 2008-04-20 03:32:57 +0800 |
---|---|---|
committer | thierry <thierry@FreeBSD.org> | 2008-04-20 03:32:57 +0800 |
commit | c2db81ddae0e1a18bef0aa65bc3453bb1b584e6b (patch) | |
tree | 38ecf036cb953f7103a6db46d838a0871de2093a /archivers | |
parent | 7a01391340eb229287a080c6bef8ab46ce39dbc2 (diff) | |
download | freebsd-ports-gnome-c2db81ddae0e1a18bef0aa65bc3453bb1b584e6b.tar.gz freebsd-ports-gnome-c2db81ddae0e1a18bef0aa65bc3453bb1b584e6b.tar.zst freebsd-ports-gnome-c2db81ddae0e1a18bef0aa65bc3453bb1b584e6b.zip |
- Fix the "Main packet not found" error;
- Register a conflict with par2cmdline-tbb;
- Take maintainership.
PR: ports/119860
Submitted by: Åke Wallebom <ake (at) ake.nu>
Completed by: Ganaël Laplanche <ganael.laplanche (at) martymac.com>
Approved by: Jonathan Stewart <jonathan (at) kc8onw.net> (former maintainer)
Diffstat (limited to 'archivers')
-rw-r--r-- | archivers/par2cmdline/Makefile | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/archivers/par2cmdline/Makefile b/archivers/par2cmdline/Makefile index da32ba91aa91..fcd8fd838cd1 100644 --- a/archivers/par2cmdline/Makefile +++ b/archivers/par2cmdline/Makefile @@ -7,27 +7,22 @@ PORTNAME= par2cmdline PORTVERSION= 0.4 +PORTREVISION= 1 CATEGORIES= archivers MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= parchive DISTNAME= ${PORTNAME}-${PORTVERSION} -MAINTAINER= jonathan@kc8onw.net +MAINTAINER= ganael.laplanche@martymac.com COMMENT= Tools for using Parity v2 Archive files -WRKSRC= ${WRKDIR}/${DISTNAME} - GNU_CONFIGURE= yes CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL} PORTDOCS= README +CONFLICTS= par2cmdline-tbb-[0-9]* PLIST_FILES= bin/par2 bin/par2create bin/par2repair bin/par2verify -post-patch: - @${REINPLACE_CMD} -e 's| -lstdc++||g' ${WRKSRC}/Makefile.in - @${REINPLACE_CMD} -e 's|#define PACKED __attribute__ ((packed))|#define PACKED|' ${WRKSRC}/par1fileformat.h - @${REINPLACE_CMD} -e 's|#define PACKED __attribute__ ((packed))|#define PACKED|' ${WRKSRC}/par2fileformat.h - post-install: .if !defined(NOPORTDOCS) @${MKDIR} ${DOCSDIR} |