com_err: add TODO entry -- installed file contains references to build dir. libuuid: add patch so that binary finds shlibs. e2fsprogs: many fixes to make compile on NetBSD; compile_et doesn't like --build-dir (because that changes path to point to com_err's build dir); add dependency on gettext since the .po files use msginit; add missing program and locale files to PLIST (also there on Linux?). Use COMPILE_DIRS and INSTALL_TARGETS et al. instead of adding post-* or do-* targets.
27 lines
886 B
Makefile
27 lines
886 B
Makefile
# $NetBSD: Makefile,v 1.3 2004/05/12 12:39:45 thomasklausner Exp $
|
|
# $Id: Makefile,v 1.3 2004/05/12 12:39:45 thomasklausner Exp $
|
|
|
|
DISTNAME= ${E2FSPROGS_DISTNAME}
|
|
PKGNAME= libuuid-${E2FSPROGS_VERSION}
|
|
WRKSRC= ${WRKDIR}/${DISTNAME}/lib/uuid/
|
|
CATEGORIES= devel
|
|
MASTER_SITES= ${E2FSPROGS_MASTER_SITES}
|
|
|
|
MAINTAINER= dotz@irc.pl
|
|
HOMEPAGE= http://e2fsprogs.sourceforge.net/
|
|
COMMENT= Standalone libuuid from e2fsprogs package
|
|
|
|
CONFLICTS= e2fsprogs-1.32
|
|
CONFIGURE_DIRS= ${WRKSRC}/../..
|
|
|
|
post-build:
|
|
cd ${WRKSRC}/../../misc && ${SETENV} ${MAKE_ENV} ${MAKE} \
|
|
${MAKE_FLAGS} uuidgen uuidgen.1
|
|
|
|
post-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/../../misc/uuidgen ${PREFIX}/bin/uuidgen
|
|
${INSTALL_MAN} ${WRKSRC}/../../misc/uuidgen.1 ${PREFIX}/man/man1/uuidgen.1
|
|
|
|
.include "../../devel/gettext-lib/buildlink3.mk"
|
|
.include "../../wip/e2fsprogs/Makefile.common"
|
|
.include "../../mk/bsd.pkg.mk"
|