819f25b36d
The conflict checks compare the patterns first against the package names without version (as reported by "pkg query "%n"), then - if there was no match - agsinst the full package names including the version (as reported by "pkg query "%n-%v"). Many CONFLICTS definitions used patterns like "bash-[0-9]*" to filter for the bash package in any version. But that pattern is functionally identical with just "bash". Approved by: portmgr (blanket)
31 lines
635 B
Makefile
31 lines
635 B
Makefile
# Created by: Laurent Courty
|
|
|
|
PORTNAME= gpsbabel
|
|
PORTVERSION= 1.4.4
|
|
PORTREVISION= 1
|
|
CATEGORIES= astro geography
|
|
MASTER_SITES= https://secure.ohos.nl/downloads/ \
|
|
LOCAL/beech
|
|
PKGNAMESUFFIX= 14
|
|
|
|
MAINTAINER= dev2@heesakkers.info
|
|
COMMENT= GPS file translating tool (pre-qt version)
|
|
|
|
LICENSE= GPLv2+
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
LIB_DEPENDS= libexpat.so:textproc/expat2
|
|
|
|
USES= autoreconf
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --with-expathdr=${LOCALBASE}/include \
|
|
--with-libexpat=${LOCALBASE}/lib
|
|
|
|
PLIST_FILES= bin/gpsbabel
|
|
|
|
CONFLICTS= gpsbabel
|
|
|
|
post-install:
|
|
@${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/gpsbabel
|
|
|
|
.include <bsd.port.mk>
|