diff options
author | kevlo <kevlo@FreeBSD.org> | 2012-09-18 10:09:45 +0800 |
---|---|---|
committer | kevlo <kevlo@FreeBSD.org> | 2012-09-18 10:09:45 +0800 |
commit | bdd8eeb901faac6cc685312d6e6c261197480975 (patch) | |
tree | a7d70cb0785ece2cb52430295dc02cedd85d133a | |
parent | 3041940bf655348bba7d61f34462dead63456501 (diff) | |
download | freebsd-ports-gnome-bdd8eeb901faac6cc685312d6e6c261197480975.tar.gz freebsd-ports-gnome-bdd8eeb901faac6cc685312d6e6c261197480975.tar.zst freebsd-ports-gnome-bdd8eeb901faac6cc685312d6e6c261197480975.zip |
Use PLIST_FILES instead of pkg-plist; no functional change.
PR: ports/171706
Submitted by: nemysis <nemysis at gmx dot ch>
-rw-r--r-- | devel/iniparser/Makefile | 8 | ||||
-rw-r--r-- | devel/iniparser/pkg-plist | 5 |
2 files changed, 5 insertions, 8 deletions
diff --git a/devel/iniparser/Makefile b/devel/iniparser/Makefile index 0a4fb45a55a4..75bfc76c62a4 100644 --- a/devel/iniparser/Makefile +++ b/devel/iniparser/Makefile @@ -11,15 +11,17 @@ CATEGORIES= devel MASTER_SITES= http://ndevilla.free.fr/iniparser/ MAINTAINER= kevlo@FreeBSD.org -COMMENT= A free stand-alone ini file parsing library - -USE_LDCONFIG= yes +COMMENT= Free stand-alone ini file parsing library LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE +USE_LDCONFIG= yes WRKSRC= ${WRKDIR}/${PORTNAME} +PLIST_FILES= include/dictionary.h include/iniparser.h lib/libiniparser.a \ + lib/libiniparser.so lib/libiniparser.so.0 + do-build: cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE} diff --git a/devel/iniparser/pkg-plist b/devel/iniparser/pkg-plist deleted file mode 100644 index eb7b3defdaba..000000000000 --- a/devel/iniparser/pkg-plist +++ /dev/null @@ -1,5 +0,0 @@ -include/dictionary.h -include/iniparser.h -lib/libiniparser.a -lib/libiniparser.so -lib/libiniparser.so.0 |