diff options
author | Marcus Alves Grando <mnag@FreeBSD.org> | 2006-01-27 09:24:41 +0800 |
---|---|---|
committer | Marcus Alves Grando <mnag@FreeBSD.org> | 2006-01-27 09:24:41 +0800 |
commit | 47f9d8fd4663f9c3c71462af7c4b3275bde2e31a (patch) | |
tree | 46fc8d91d267324c4c6a8d84d37e354e6ac2ccb2 /misc | |
parent | e9e59493e4b2d017ee2828e33f5ff60e1138bdc2 (diff) | |
download | freebsd-ports-gnome-47f9d8fd4663f9c3c71462af7c4b3275bde2e31a.tar.gz freebsd-ports-gnome-47f9d8fd4663f9c3c71462af7c4b3275bde2e31a.tar.zst freebsd-ports-gnome-47f9d8fd4663f9c3c71462af7c4b3275bde2e31a.zip |
* audio/marlin, devel/upnp, devel/upnp104
Update dependency to misc/e2fsprogs-libuuid
Bump PORTREVISION
* misc/e2fsprogs-libuuid
Add new port:
UUID library from the e2fsprogs package
* misc/Makefile
Add entry to misc/e2fsprogs-libuuid
* misc/ossp-uuid
Add CONFLICTS to misc/e2fsprogs-libuuid
* sysutils/e2fsprogs
Change to a master port
Remove conflict with misc/ossp-uuid
Remove uuid part
Bump PORTREVISION
PR: 92356
Submitted by: Matthias Andree <matthias.andree@gmx.de>
Diffstat (limited to 'misc')
-rw-r--r-- | misc/Makefile | 1 | ||||
-rw-r--r-- | misc/e2fsprogs-libuuid/Makefile | 37 | ||||
-rw-r--r-- | misc/e2fsprogs-libuuid/pkg-descr | 3 | ||||
-rw-r--r-- | misc/e2fsprogs-libuuid/pkg-plist | 7 | ||||
-rw-r--r-- | misc/ossp-uuid/Makefile | 3 |
5 files changed, 49 insertions, 2 deletions
diff --git a/misc/Makefile b/misc/Makefile index 9afe38b38f4a..2e15e5f9a9d1 100644 --- a/misc/Makefile +++ b/misc/Makefile @@ -68,6 +68,7 @@ SUBDIR += dtach SUBDIR += dvorak7min SUBDIR += dvorakng + SUBDIR += e2fsprogs-libuuid SUBDIR += earthview SUBDIR += ed2k SUBDIR += edonkey-tool-hash diff --git a/misc/e2fsprogs-libuuid/Makefile b/misc/e2fsprogs-libuuid/Makefile new file mode 100644 index 000000000000..54b902581b81 --- /dev/null +++ b/misc/e2fsprogs-libuuid/Makefile @@ -0,0 +1,37 @@ +# New ports collection makefile for: e2fsprogs-libuuid +# Date created: 26 Jan 2006 +# Whom: Matthias Andree <matthias.andree@gmx.de> +# +# $FreeBSD$ +# + +PORTREVISION= 0 +CATEGORIES= misc devel +PKGNAMESUFFIX= -libuuid + +MAINTAINER= matthias.andree@gmx.de +COMMENT= UUID library from e2fsprogs package + +CONFIGURE_ARGS= --enable-elf-shlibs --disable-fsck --disable-e2initrd-helper + +CONFLICTS= ossp-uuid-[0-9]* + +WITHOUT_NLS= yes +MASTERDIR= ${.CURDIR}/../../sysutils/e2fsprogs +MAKE_ARGS= LIB_SUBDIRS=lib/uuid +INSTALLS_SHLIB= yes +NO_FILTER_SHLIBS= yes +ALL_TARGET= libs +INSTALL_TARGET= install install-shlibs +INSTALL_WRKSRC= ${WRKSRC}/lib/uuid + +MAN3= uuid.3 uuid_clear.3 uuid_compare.3 uuid_copy.3 uuid_generate.3 \ + uuid_is_null.3 uuid_parse.3 uuid_time.3 uuid_unparse.3 \ + uuid_generate_random.3 uuid_generate_time.3 + +PKGDIR= ${.CURDIR} + +pre-build: + ${MKDIR} ${WRKSRC}/lib/uuid/elfshared + +.include "${MASTERDIR}/Makefile" diff --git a/misc/e2fsprogs-libuuid/pkg-descr b/misc/e2fsprogs-libuuid/pkg-descr new file mode 100644 index 000000000000..391fb95a2a52 --- /dev/null +++ b/misc/e2fsprogs-libuuid/pkg-descr @@ -0,0 +1,3 @@ +UUID library from the e2fsprogs package. + +WWW: http://e2fsprogs.sourceforge.net/ diff --git a/misc/e2fsprogs-libuuid/pkg-plist b/misc/e2fsprogs-libuuid/pkg-plist new file mode 100644 index 000000000000..8b1f4010bea3 --- /dev/null +++ b/misc/e2fsprogs-libuuid/pkg-plist @@ -0,0 +1,7 @@ +include/uuid/uuid.h +lib/libuuid.so.1.2 +lib/libuuid.so.1 +lib/libuuid.so +lib/libuuid.a +libdata/pkgconfig/uuid.pc +@dirrm include/uuid diff --git a/misc/ossp-uuid/Makefile b/misc/ossp-uuid/Makefile index 881d114b34e6..f2d4368f7b63 100644 --- a/misc/ossp-uuid/Makefile +++ b/misc/ossp-uuid/Makefile @@ -15,9 +15,8 @@ PKGNAMEPREFIX= ossp- MAINTAINER= mnag@FreeBSD.org COMMENT= ISO-C & Perl API and CLI for generating Universally Unique Identifiers -CONFLICTS= e2fsprogs-[0-9]* +CONFLICTS= e2fsprogs-libuuid-[0-9]* -USE_REINPLACE= yes USE_GCC= 3.2+ USE_AUTOTOOLS= libtool:15 INSTALLS_SHLIB= yes |